:root {
  --border-radius: 16px;
  --boggler-blue: #1fa5ba;
  --heading-color: #293636;
  --body-font: 'Montserrat'
}

@font-face {
  font-family: 'lato';
  src: url('./fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'lucky';
  src: url('./fonts/LuckiestGuy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  letter-spacing: 1px;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-Regular.ttf') format('truetype');
  src: url('./fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon, 
.goog-te-gadget-simple, 
.goog-te-balloon-frame, 
#goog-gt-tt, 
.goog-tooltip, 
.goog-tooltip:hover, 
.goog-text-highlight, 
.goog-te-menu-value {
  display: none !important;
}

html, body {
  margin: 0;
  font-family: 'lato', Arial, Helvetica, sans-serif;
  background-color: #fdf6e3; /* light beige/custard */
  background: radial-gradient(circle at center, #fbf5e3 10%, #fff4d0);
  color: #2f3e3e;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

.main-body-section {
  min-height: calc(100dvh - 62px - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  overflow-y: scroll;
  padding-top: 120px;
}

.checkout-body-section {
  min-height: calc(100vh - 137px - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 115px;
}

.contributor-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contributor-form * {
  margin: 10px auto;
}


h1, h2, h3 {
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #555;
}

h1.title {
  font-size: 3rem;
  letter-spacing: -0.5px;
  text-align: center;
  color: #555;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease both;
}

video::-webkit-media-controls-panel {
  border-radius: 0 0 12px 12px;
}

video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}

video::-webkit-media-controls-timeline {
  height: 6px;
  border-radius: 3px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.front-page-subtitle {
  text-align: center;
  color: #2d2d2d;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  font-size: 2rem;
}

p {
  font-family: 'lato', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
}
strong {
  color: #153b38;
}

.goog-te-banner-frame {
  display: none !important;
}

#checkout {
  width: 100vw;
}

.hidden {
  display: none;
}

#root {
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  position: relative;
}

#checkout-element {
  max-width: 100vw;
  max-height: 920px;
  background-color: #fdf6e3;
  overflow-y: scroll;
}

iframe[name="embedded-checkout"] {
  min-width: 100vw;
  max-width: 100vw;
  min-height: 100vh !important;
}

.lucky-font {
    font-family: 'lucky', Arial, Helvetica, sans-serif;
}

.lato-font {
    font-family: 'lato', Arial, Helvetica, sans-serif;
}

.cta {
  color: #333;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
  font-size: 32px;
}

.header-row {
  justify-content: flex-start;
  gap: 1.5rem;
}

.header-button {
  padding: 0.9rem 1.3rem;
  cursor: pointer;
  font-family: var(--body-font);
  line-height: 30px;
  font-size: 16px;
  color: var(--heading-color);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.header-button:hover {
  background-color: #24afc2;
  color: #fff;
}

.applicant-profile-picture {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 150px;
  height: auto;
}

.signup-as-guide-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.signup-as-guide-form-survey-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.signup-as-guide-form-survey-section > .signup-as-guide-basic-info-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.signup-as-guide-header {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
}

.signup-as-guide-form-sections-navigation {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 20px;
}

.guide-signup-form-section-button.active {
  background-color: #fe9628;
}

.guide-signup-form-section-button {
  display: flex;
  justify-content: center;
  width: auto;
  height: auto;
  margin-top: 20px;
  background-color: #24afc2;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px;
}

.center-form-button {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-top: 20px;
  background-color: #24afc2;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  padding: 5px 0;
}
.guide-type-item.selected {
  background-color: #ffefc4;
}
.header-button.header-button-sinhala {
  cursor: url(elephant.cur), pointer;
}
.boggler-on-phone-image {
  height: auto;
  width: 100%;
  max-width: 300px;
}
.learn-more-button {
  cursor: url(elephant.cur), pointer;
  background: #24afc2;
  border: #fe9628 3px solid;
  font-size: 2.3rem;
  color: #fff;
  border-radius: 10px;
  padding: 16px;
}
.hamburger {
  display: none;
}
.site-title {
  text-align: left;
  font-size: 1.5rem;
  margin: 0 0 0 60px;
}

.mobile-header {
  padding: 0 1rem;
  background: #fff;
  display: flex;
  margin: 0 0 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 10000;
}
.mobile-remove-bottom-margin {
  margin-bottom: auto;
}
.header-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: -10px;
}
.header-logo {
  width: 35px;
  height: 35px;
  transform: scale(2) translate(0.5rem);
  transition: all 0.3s ease;
}
.header-logo:hover {
  cursor: pointer;
  transform: scale(2.1) translate(0.5rem);
}
.guide-signup-heading-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  justify-content: center;
}
.guide-signup-image {
  display: flex;
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  margin-right: 20px;
  justify-self: center;
}
#signup-as-guide-form-intro-title {
  display: inline;
  font-size: 2.5rem;
  text-align: left;
  margin: 0;
}
.desktop-left-mobile-center {
  text-align: left;
}
#signup-as-guide-form-intro-subtitle {
  display: inline;
  font-size: 1.5rem;
  text-align: left;
  margin: 0;
}
.loader-container {
  position: relative;
  display: block;
  text-align: center;
  min-height: 100vh;
  width: 100vw;
}
.loader-container .absolute-wrapper {
  position: absolute;
  width: 200px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader-container .absolute-wrapper img {
  animation: pulse .9s infinite;
  width: 100%;
  height: auto;
}
.guide-signup-inputs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
.main-nav {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  align-items: center;
  width: fit-content;
  min-width: 70%;
  transform: translateX(-35px);
}
.main-nav.open {
  display: flex;
}
.form-select {
  font-size: 24px;
  padding: 10px;
  width: 274px;
  text-align: center;
}
.gender-radio {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  cursor: pointer;
}

.cta-button {
  background: #24afc2;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  margin: 0.2em 0;
  font-weight: 600;
  transition: background 0.2s;
}
.cta-button:hover {
  background: #444;
}
.payment-return-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.cta-button.lets-begin {
  margin-top: 20px;
  font-size: 1.5rem;
  min-width: 250px;
  width: auto;
  min-height: 75px;
  cursor: url(./elephant.cur), pointer;
}
h1 {
  font-family: 'lucky', serif;
  font-size: 2.5rem;
  margin: 0.5rem 0;
  text-align: center;
  color: #1e3c3a; /* dark green */
}
h2, p {
    display: block;
}
nav {
  display: flex;
  justify-content: center;
  background-color: transparent;
}
nav a {
    color: #1e3c3a;
    text-decoration: none;
    font-weight: 600;
}
.flex-column {
      display: flex;
      flex-direction: column;
    }
.read-paragraph {
  font-size: 1.2rem;
  line-height: 1.6;
}
.paragraph-read {
  animation-name: textGrow;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.hero-cta {
  margin-top: 2rem;
}
.bogglerman-and-boggler-woman {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.bogglerman {
  display: flex;
  width: 30%;
  height: auto;
}
.bogglerwoman {
  display: flex;
  width: 30%;
  height: auto;
}
#apex-app-icon-small {
  width: 100px;
  height: 100px;
}
section {
  padding: 1rem 1rem;
  padding-top: 0;
  max-width: 1400px;
  margin: auto;
}
#about-founder {
  display: flex;
  flex-direction: row;
}
#about-founder div {
  text-align: left;
  flex-direction: column;
  padding: 1rem;
  margin: 0 auto;  
}
#about-founder div.written-content {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #2f3e3e;
  background-color: #fff8e1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px; 
}
#about-apex-in-buckish .flex-column div#apex-in-buckish {
      display: flex;
      flex-direction: row;
    }
#about-apex-in-buckish .flex-column div#apex-in-buckish div {
  display: flex;
  text-align: left;
  padding: 1rem;
  margin: 0 auto;  
}
.apex-in-buckish-inner-container {
  display: flex;
  flex-direction: row;
}

.blog-article-outer-container {
  display: flex;
  flex-direction: row;
  width: 90vw;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.blog-article-writing-container {
  display: flex;
  width: 60%;
  max-width: 70vw;
  overflow-y: auto;
  height: auto;
  max-height: 600px;
  flex-direction: column;
  align-items: left;
  padding: 20px;
  justify-content: flex-start;
  text-align: left;
}

.blog-article-image-container {
  display: flex;
  width: 50%;
  max-width: 300px;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.blog-article-image {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.boggler-about-section-one {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.boggler-image-and-text-icons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.message-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.message-buttons-outer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: space-evenly;
}

.buckish-about-section {
  display: flex;
  flex-direction: column;
}
.buckish-about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.buckish-about-h1 {
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 20px;
}
.buckish-whofor-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.buckish-whofor-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.buckish-whofor-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.messaging-apps-icon-container-boggler {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: space-evenly;
  min-height: 100px;
}
.messaging-apps-icon-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: space-evenly;
  width: 100%;
}
.messaging-icon-outer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
.guide-item {
  height: 270px;
}

.messaging-icon-outer-container span {
    font-family: Arial, Helvetica, sans-serif;
    padding: 6px;
    font-size: .8rem;
    color: #000;
    text-align: center;
    text-shadow:rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.sms-icon-container, .whatsapp-icon-container {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20%;
  background-color: #fff8e1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  height: 75px;
  width: 75px;
}
.sms-icon-container img, .whatsapp-icon-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 100px;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
}

/* Hide default controls */
video {
  display: block;
  cursor: pointer;
}

/* Custom play button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.8);
  color: #153b38;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

#pick-a-topic {
  font-size: 1rem;
  padding: 10px;
  width: 274px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.play-button:hover {
  background: rgba(255,255,255,0.95);
  transform: translate(-50%, -50%) scale(1.05);
}

.time-urgency-button, .select-timeframe-button {
  background: #24afc2;
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  backdrop-filter: blur(3px);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.caption button.time-urgency-button:hover, .caption button .select-timeframe-button:hover {
  background: #24afc2;
  transform: scale(1.05);
}
.caption button.time-urgency-button.selected, .caption button.select-timeframe-button.selected {
  background-color: #ffb84d;
  color: #2a1f14;
}

/**
*  Landing Section 1 BASE
**/

section.main-body-section.home {
  min-height: fit-content;
  max-height: calc(100dvh - 100px);
  position: relative;
  overflow: hidden;
  max-height: 700px;
}
.mobile-header-globe {
  display: none;
}
#hero-map {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  max-height: 730px;
  width: 100%;
  display: flex;
  pointer-events: none;
  max-width: 50%;
  z-index: -1;
}
.guide-pop {
  background-color: #fff;
  border-radius: 100%;
  width: auto;
  height: auto;
  position: absolute;
  transform: scale(0);
  filter: contrast(0.8) brightness(1.2);
  animation: guidePop 0.7s ease-in-out forwards;
}

.s1 {
  right: calc(55dvw * 0.5);
  top: 120px;
  animation-delay: 0.6s;
}
.s2 {
  right: calc(45dvw * 0.5);
  top: 350px;
  animation-delay: 1.2s;
}
.s3 {
  right: calc(calc(50dvw * 0.1));
  top: 150px;
  animation-delay: 1.5s;
}

.guide-pop.s1 img {
  width: 115px;
}
.guide-pop.s2 img {
  width: 145px;
}
.guide-pop.s3 img {
  width: 180px;
}
.guide-pop img {
  width: 160px;
  height: auto;
}
@keyframes guidePop {
  0% { transform: scale(0);}
  40% { transform: scale(1.1);}
  100% { transform: scale(1);}
}

.mapboxgl-control-container {
  display: none;
}
.boggler-hero-section {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  min-height: 550px;
  z-index: 10;
  max-width: 1200px;
  margin: auto;
}

.boggler-hero-section p {
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: normal;
  margin-top: 0;

}

.hero-title {
  font-size: 50px;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  text-align: left;
  letter-spacing: 1px;
}

.cloud1 {
  width: 90px;
  height: 30px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
}
.cloud2 {
  width: 90px;
  height: 30px;
  position: absolute;
  bottom: 90px;
  right: 20px;
  z-index: -1;
}

.the-boggler-intro {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  width: 100%;
  max-width: 50%;
}

.the-boggler-intro p span {
  display: inline-flex;
  font-weight: bold;
  font-size: inherit;
  justify-content: center;
  align-content: center;
  text-align: center;
  height: "100%";
  transform: translateY(2px);
}

.the-boggler-intro p span .words-container {
  transition: transform 0.6s ease-in-out;
}

.the-boggler-intro p span .words-slider {
  height: 19px;
  overflow: hidden;
  position: relative;
}

.the-boggler-intro p span .words-word {
  height: 19px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  position: relative;
  bottom: 1px;
}

.the-boggler-intro p span .phrases-container {
  transition: transform 0.6s ease-in-out;
}

.the-boggler-intro p span .phrases-slider {
  height: 19px;
  overflow: hidden;
  position: relative;
}

.the-boggler-intro p span .phrases-phrase {
  height: 19px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  position: relative;
  bottom: 1px;
}

.boggler-cta-container {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 1.8rem 2rem;
  width: 100%;
  max-width: 300px;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  z-index: 100;
  margin: 1.5rem 0 1rem;
}

.boggler-cta-container p {
  font-size: 16px;
  text-align: center;
  margin: 1rem auto 0;
}

.boggler-cta-container button {
  background: radial-gradient(circle at center,#00d900, #00d700);
  padding: 1rem 1.3rem;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: 0.3px;
  border: none;
  outline: none;
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 0 5px #00f909;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.boggler-cta-container button:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 0px #00f909;
}
.boggler-cta-container button:active {
  cursor: pointer;
  box-shadow: inset 0 0 0 0px #00f909;
  background: radial-gradient(circle at center,#00f909, #00f909);
}
.boggler-cta-container button img {
  width: 30px;
  height: auto;
  fill: #fff;
  color: #fff;
  filter: invert(1);
  padding: 0 0.5rem 0 0;
}
.ocean {
  width: 100%;
  position: absolute;
  bottom: -80px;
  left: -20px;
  background: #015871;
  z-index: 1;
}

.wave2,
.wave {
  background: url(img/booggler-wave.svg) repeat-x;
  position: absolute;
  width: 6400px;
  top: -198px;
  left: 0;
  height: 198px;
  animation: wave 30s ease-in-out infinite;
}
.wave.wave2 {
  top: -198px;
  left: -800;
  animation-delay: 10s;
}

.wave:nth-of-type(2) {
  top: -168px;
  animation: swell 29s ease infinite;
  opacity: 1;
}

@keyframes wave {
  0% { margin-left: 0; }
  100% { margin-left: -1600px;}
}
@keyframes swell {
  0%, 100% {
    transform: translate(0, -30px);
  }
  50% {
    transform: translate(0, 5px);
  }
}
/**
*  Landing Section 1 MOBILE
**/
  @media screen and (max-width: 768px) {
    .guide-pop {
      display: initial;
    }
    .hero-title {
      font-size: 35px;
      font-family: 'lucky', Arial, Helvetica, sans-serif;
      text-align: center;
      margin-top: 120px;
    }
    .the-boggler-intro {
      padding: 5dvh 0 2rem;
      max-width: 100%; 
    }
    .boggler-hero-section {
      flex-direction: column-reverse;
    }
    .boggler-hero-section p {
      text-align: center;
      font-size: 16px;
      max-width: 200px;
      margin: 0.5rem auto;
    }
    .boggler-hero-section .boggler-cta-container p {
      font-size: 14px;
    }
    .the-boggler-intro p span .words-word {
      align-items: center;
    }
    #hero-map {
      display: none;
    }
    .the-boggler-intro .boggler-cta-container {
      width: initial;
      min-width: 260px;
      margin-bottom: initial;
      margin-left: auto;
      margin-right: auto;
    }
    .the-boggler-intro .cloud1 {
      top: 239px;
      left: -40px;
    }
    .the-boggler-intro .cloud2 {
      bottom: 241px;
      right: -39px;
    }
    .mobile-header-globe {
      position: absolute;
      top: -50%;
      width: 500px;
      height: 500px;
      background-image: url('img/footer-globe.png');
      background-size: 102%;
      background-repeat: no-repeat;
      z-index: 0;
      box-shadow: 0 0 50px 0px #fff;
      border-radius: 100%;
      background-position: center;
      transform: rotate(15deg);
      display: flex;
    }
    .mobile-header-globe img {
      width: 100px;
      height: 100px;
      position: relative;
      z-index: 10;
      display: flex;
      background: #fff;
      border-radius: 100%;
      padding: 5px;
      transform: rotate(-15deg);
    }
    .mobile-header-globe img:nth-of-type(1) {
      width: 60px;
      height: 60px;
      left: 24%;
      top: 88%;
    }
    .mobile-header-globe img:nth-of-type(2) {
      left: 61%;
      top: 62%;
    }
  }
/**
*  Landing Section 2 BASE
**/
section.hero-how-it-works,
section.main-body-section.home {
  max-width: none;
}
section.footer-cta,
section.archetypes,
section.hero-how-it-works {
  background-color: #186c80;
  color: #fff;
  position: relative;
  z-index: 1000;
  min-height: fit-content;
  max-width: unset;
  overflow: hidden;
}
section.hero-how-it-works {
  background: linear-gradient(to top,#186c80 92%,#4d939d)
}

.main-body-section.archetypes h2,
.hero-how-it-works h2,
.footer-cta-container h2 { 
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
}

.cloud3 {
  width: 90px;
  height: 30px;
  position: absolute;
  top: 80px;
  right: 15%;
  z-index: -1;
  filter: brightness(2);
}

.cloud4 {
  width: 90px;
  height: 30px;
  position: absolute;
  bottom: 20px;
  left: 10%;
  z-index: -1;
  filter: saturate(0) brightness(2);
}

.the-steps {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  margin: 2rem auto 10dvh;
  max-width: 1200px;
  align-items: center;
}

.the-steps .step {
  display: flex;
  flex-direction: column;
  text-align: center;  
  position: relative;
}
.the-steps.fade > * {
  animation: stepUp 0.6s ease-in-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.the-steps.fade *:nth-of-type(2) {
  animation-delay: 0.4s;
}
.the-steps.fade *:nth-of-type(3) {
  animation-delay: 0.6s;
}
.the-steps.fade *:nth-of-type(4) {
  animation-delay: 0.7s;
}
.the-steps.fade *:nth-of-type(5) {
  animation-delay: 0.9s;
}

@keyframes stepUp {
  0% {bottom: -40px; opacity: 0;}
  100% {bottom: 0px; opacity: 1;}
}

.the-steps .step strong {
  font-family: 'lucky';
  color: #f6ab17;
  margin: 0 0 1rem;
  font-size: 30px;
  letter-spacing: 1px;
}
.the-steps .step .card {
  display: flex;
  background-color: #fff;
  flex-direction: column;
  text-align: center;
  color: #000;
  padding: 1rem;
  border-radius: var(--border-radius);
  width: 200px;
  box-shadow: 0 0 0 8px #ef983b;
}
.the-steps .step .card p {
  font-size: 18px;
  margin: 1rem 0;
}

.the-steps .step-arrow {
  display: flex;
  content: '';
  background-image: url('img/up-arrow.svg');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 65px;
  height: 35px;
  transform: rotate(90deg) translateY(50%);
  transform-origin: bottom;
}
.the-steps .step .icon {
  background-color: var(--boggler-blue);
  padding: 1.5rem;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  margin: auto;
  color: #fff;
  display: flex;
  justify-content: center;
  align-content: center;
}
.the-steps .step .icon:last-of-type {
  padding: 1rem;
  width: 50px;
  height: 50px;
}

.the-steps .step .icon img {
  width: 60px;
  height: auto;
  filter: invert(1);
}
/**
*  Landing Section 2 MOBILE
**/
@media screen and (max-width: 768px) {
  .hero-how-it-works .the-steps {
    flex-direction: column;
  }
  .hero-how-it-works .the-steps .step .card {
    width: calc(100% - 4rem);
    margin: 1rem auto;
  }
  .hero-how-it-works .the-steps .step {
    margin-top: 1rem;
    width: 100%;
    max-width: 250px;
  }
  .hero-how-it-works .the-steps .step-arrow {
    display: none;
  }
}
/**
*  Landing Section 3 BASE
**/
.main-body-section.archetypes {
  background-color: #186c80;
  position: relative;
  padding: 2rem; 
  position: relative;
  overflow: inherit;
  padding-bottom: 4rem;
}

.archetypes-banner-container h2 {
  color: #333;
}

.archetypes-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: var(--border-radius);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: radial-gradient(circle at center, #ea9841 10%, #fe9628);
  z-index: -1;
}

.archetypes-banner-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 450px;
  margin-top: 3rem;
  position: relative;
}

.slider-nav-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.arrow-svg {
  width: 50px;
  height: 30px;
  background-image: url("img/up-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  filter: hue-rotate(169deg) saturate(0.9);
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.arrow-svg-left {
  transform: rotate(-90deg);
}

.slider-arrow {
  background: none;
  border: medium;
  cursor: pointer;
  padding: 0px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  position: absolute;
  z-index: 10;
}
.slider-arrow:hover {
  transform: scale(1.1);
}

.slider-arrow.left-arrow {
  left: 1dvw;
}
.slider-arrow.right-arrow {
  right: 1dvw;
}

.guide-slider {
  display: flex;
  scrollbar-width: none;
}

.guide-slider.show-three {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: unset;
  height: 420px;
  max-height: 420px;
  overflow: visible;
  transform: none;
  position: relative;
}
.guide-slider.show-three .guide {
  opacity: 0.5;
  filter: blur(1px) grayscale(30%);
  z-index: 1;
  width: 220px;
  height: 340px;
  margin: 0 0.5rem;
  pointer-events: none;
  position: relative;
}
.guide-slider.show-three .guide.center {
  transition: transform 0.3s, opacity 0.3s, filter 0.3s;
  transform: scale(1.18);
  opacity: 1;
  filter: none;
  z-index: 3;
  width: 320px;
  height: 420px;
  pointer-events: auto;
}
.guide-slider.show-three .guide.center .img {
  box-shadow: 0 0 21px -5px #fff;
}
.guide-slider.show-three .guide.center p {
  opacity: 1;
}
.guide-slider.show-three .guide.left,
.guide-slider.show-three .guide.right {
  transform: scale(0.85);
  opacity: 0.7;
  filter: blur(0.5px) grayscale(10%);
  z-index: 2;
  pointer-events: auto;
}
.guide-slider.show-three .guide.hidden {
  display: none;
}
.guide-slider .guide img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  padding: 8px;
  overflow: hidden;
  display: flex;
  opacity: 0;
}
.guide-slider .guide .img {
  background-position: center;
  background-size: cover;
  border-radius: 100%;
  background-color: #fff;
  border: 10px solid white;
}
.guide-slider .guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  width: 380px;
  /* height: 600px; */
  scroll-snap-align: center;
  /* transform: rotate(90deg); */
}
.guide-slider .guide strong,
.guide-slider .guide p {
  font-family: 'Montserrat';
  color: #fff;
}
.guide-slider .guide strong {
  margin: 1.5rem 0 0.5rem;
  font-weight: bold;
  font-size: 18px;
}
.guide-slider .guide p {
  font-weight: 100;
  font-size: 15px;
  margin-top: 0;
  max-width: 300px;
  opacity: 0;
}
/**
*  Landing Section 3 MOBILE
**/
@media screen and (max-width: 768px) {
  .main-body-section.archetypes {
    padding-left: 0;
    padding-right: 0;
  }
  .guide-slider .guide {
    padding: 0 1rem;
  }
  .archetypes-banner {
    top: 50%;
    border-radius: 0;
  }
  .slider-arrow.left-arrow {
    left: 10px;
  }
  .slider-arrow.right-arrow {
    right: 10px;
  }
}

/**
*  Landing Section 4 BASE
**/
.phrase-container {
  transition: transform 0.6s ease-in-out;
}

.phrase-slider {
  height: 26px;
  overflow: hidden;
  position: relative;
}

.phrase {
  height: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: -4px;
}

.footer-cta h2,
.footer-cta p {
  color: #fff;
}

.footer-cta p {
  font-family: var(--body-font);
  margin: 0;
}

.footer-cta .footer-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.footer-cta .footer-cta-container h2 {
  font-size: 30px;
  z-index: 10;
}
.footer-cta-container p i {
  font-style: normal;
  font-size: 18px;
}
.footer-cta-container.fade p i {
  animation: slideLeft 1s ease-in-out forwards;
  opacity: 0;
  position: relative;
}
.footer-cta-container.fade p i:nth-of-type(1) {
  animation-delay: 2s;
}
.footer-cta-container.fade p i:nth-of-type(2) {
  animation-delay: 2.5s;
}
.footer-cta-container.fade p i:nth-of-type(3) {
  animation-delay: 3s;
}
@keyframes slideLeft {
  0% { left: 20px; opacity: 0;}
  100% { left: 0px; opacity: 1;}
}
.boggler-cta-container {
  margin-bottom: 100px;
}
.boggler-cta-container ul {
  list-style: none;
}
.boggler-cta-container ul li {
  color: #555;
  padding: 0.3rem;
  position: relative;
}
.boggler-cta-container ul li::before {
  content: '';
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('img/check.svg');
  position: absolute;
  left: -20px;
  top: 7px;
}
.footer-cta-container.fade .boggler-cta-container li {
  animation: listUp 0.5s ease-in-out 1s forwards;
  opacity: 0;
}
.footer-cta-container.fade .boggler-cta-container li:nth-of-type(2) {
  animation-delay: 1.5s;
}
.footer-cta-container.fade .boggler-cta-container li:nth-of-type(3) {
  animation-delay: 1.7s;
}
.footer-cta-container.fade .boggler-cta-container li:nth-of-type(4) {
  animation-delay: 1.9s;
}
@keyframes listUp {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cloud5 {
  width: 90px;
  height: 30px;
  position: absolute;
  top: 2%;
  left: 8%;
  z-index: -1;
  filter: brightness(2);
}
.cloud6 {
  width: 90px;
  height: 30px;
  position: absolute;
  top: 75%;
  right: 1%;
  z-index: -1;
  filter: brightness(2);
}
.footer-globe {
  position: absolute;
  bottom: -17dvw;
  width: 500px;
  height: 500px;
  background-image: url('img/footer-globe.png');
  background-size: 102%;
  background-repeat: no-repeat;
  z-index: -1;
  box-shadow: 0 0 50px 0px #fff;
  border-radius: 100%;
  background-position: center;
  transform: rotate(15deg);
}
/**
*  Landing Section 4 MOBILE
**/
@media screen and (max-width: 768px) {
  .phrase-slider,
  .phrase {
    height: 56px;
  }
  .footer-cta .footer-cta-container h2 {
    text-align: center; 
    margin-top: 2rem; 
  }
  section.main-body-section.footer-cta {
    z-index: 0;
    padding-top: 4rem;
  }
  .cloud5 {
    top: 5%;
  }
  .cloud6 {
    top: 37%;
  }
  .footer-globe {
    bottom: -400px;
  }
}
/**
* ABOUT SECTION
**/
.fixed-cloud-1 {
  position: fixed;
  top: 11%;
  right: 6%;
  z-index: 1;
}
.fixed-cloud-2 {
  position: fixed;
  bottom: 11%;
  left: 2%;
  z-index: 1;
}
section.main-body-section.about {
  min-height: unset;
  text-align: initial;
  align-items: baseline;
  overflow: hidden;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--body-font);
  padding-left: 2rem;
  padding-right: 2rem;
  z-index: 10;
}
section.main-body-section.about h1 {
  text-align: left;
}
section.main-body-section.about p {
  font-size: 16px;
  margin: 0.3rem 0;
}
section.main-body-section.about:not(:first-of-type) {
  padding-top: 1rem;
}
section.main-body-section.about:last-of-type {
  padding-bottom: 9rem;
}
section.main-body-section.about .footer-globe {
  bottom: -300px;
  z-index: 0;
  left: 0;
  transform: translateX(50%);
}
section.main-body-section.about .boggler-cta-container {
  max-width: 350px;
  margin: 2rem auto;
}
@media screen and (max-width: 786px ) {
  section.main-body-section.about .boggler-cta-container {
    max-width: calc(100% - 4rem)
  }
  section.main-body-section.about .footer-globe {
      bottom: -300px;
      z-index: 0;
      left: -60px;
      transform: translateX(0);
  }
}

.buckish-about-text-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.buckish-about-text-buttons img {
  width: 150px;
  height: 150px;
}
.about-the-app {
  display: flex;
  flex-direction: row;
}
.about-the-app div {
  text-align: left;
  flex-direction: column;
  padding: 1rem;
  margin: 0 auto;  
}
#about-the-app {
    display: flex;
    flex-direction: row;
}
#about-the-app div {
  display: flex;
  text-align: left;
  flex-direction: column;
  padding: 1rem;
  margin: 0 auto;  
}
.about-the-app div.written-content {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    color: #2f3e3e;
    background-color: #fff8e1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px; 
}
.app-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.ghosted-explanation {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 30px;
}
.text-boggler-headings-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.text-boggler-heading-subtitle {
  font-size: 55px;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #24afc2;
  text-align: center;
  max-width: 600px;
}
.app-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: unset;
}
.app-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #2f3e3e;
  background-color: #fff8e1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 1rem;
  border: 1px solid #ddd;
}
.profile-pic {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: auto;
}

.guide-public-profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.scheduled-call-message-from-guide {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  max-width: 600px;
  max-height: 400px;
  overflow-y: auto;
  width: 85%;
  margin-top: 20px;
  margin: 0 auto;
} 

.scheduler-action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.scheduler-action-buttons button {
  background-color: #24afc2;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.guide-profile-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.profile-links-section-profile {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  justify-items: center;    
  align-items: start;
  align-content: start;
  width: fit-content;       
  margin: 0 auto;    
}

.suggest-archetype-modal-body .guide-profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: unset;
}

.guide-signup-phone-input {
    font-size: 22px;
    padding: 10px;
    width: 274px;
    text-align: center;
  }

.guide-signup-email-input {
    font-size: 22px;
    padding: 10px;
    width: 274px;
    text-align: center;
  }

.profile-motivation {
  font-size: 1rem;
  color: #555;
  text-align: left;
  margin-top: 10px;
  max-width: 400px;
}

.profile-subtext {
  font-size: .8rem;
  color: #555;
}

.guide-profile-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #153b38;
  margin-bottom: 0;
}

.profile-photo-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  justify-self: center;
  align-self: center;
}

.profile-photo-section {
  position: relative;
  display: inline-block;
}

/* Profile photo style */
.profile-photo {
  width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
  border-radius: 12px;
}

.guide-signup-profile-photo {
  width: 300px;
  height: auto;
  max-height: 400px;
  display: block;
  border-radius: 12px;
}

.guide-type-profile-photo {
  width: 100%;
  height: auto;
  max-height: 300px;
  max-width: 300px;
  display: block;
  border-radius: 12px;
}

.add-guide-type-image {
  display: flex;
  align-items: center;
  flex-direction: row;
  position: relative;
  background: linear-gradient(135deg, #ffcc7a, #ff8c42);
  color: #3b2e20;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  backdrop-filter: blur(3px);
  white-space: nowrap;
  letter-spacing: 0.5px;
  max-width: 150px;
}

.review-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  max-width: 600px;
  width: 85%;
  margin-top: 20px;
}

/* Age badge style */
#guideCredential {
  display: flex;
  align-items: center;
  flex-direction: row;
  position: absolute;
  bottom: 40px;
  right: -10px;
  background: linear-gradient(135deg, #ffcc7a, #ff8c42);
  color: #3b2e20;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  backdrop-filter: blur(3px);
  white-space: nowrap;
  letter-spacing: 0.5px;
  max-width: 150px;
  overflow-x: scroll;
  z-index: 10;
}

/* Optional hover glow */
.profile-photo-wrapper:hover #guideCredential {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(255, 140, 66, 0.6);
  transition: 0.2s ease;
}

/* Age badge style */
.guide-age-badge {
  display: flex;
  align-items: center;
  flex-direction: row;
  position: absolute;
  bottom: 10px;
  right: -10px;
  background: linear-gradient(135deg, #ffcc7a, #ff8c42);
  color: #3b2e20;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  backdrop-filter: blur(3px);
  white-space: nowrap;
  letter-spacing: 0.5px;
  max-width: 150px;
}

/* Optional hover glow */
.profile-photo-wrapper:hover .guide-age-badge {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(255, 140, 66, 0.6);
  transition: 0.2s ease;
}

.profile-country-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
  background-color: #999;
  color:#fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 1rem;
}

.cta-button,
.pick-time-slot-button,
.pick-day-button {
  background-color: #4a9fc5;
  background: linear-gradient(45deg, #24afc2 0%, #23adc0 30%);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  letter-spacing: 1.2pt;
  font-weight: bold;
  cursor: pointer;
  width: auto;
  height: 50px;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 0px 5px #34d5ec;
  transition: all 0.3s ease;
}

.cta-button:hover,
.pick-time-slot-button:hover,
.pick-day-button:hover {
  background: linear-gradient(45deg, #24afc2 0%, #23adc0 30%);
  box-shadow: inset 0 0 0px 0px #34d5ec;
}

.cta-button:disabled,
.pick-time-slot-button:disabled,
.pick-day-button:disabled {
  background: linear-gradient(45deg, #81cfcf 0%, #86ccd5 30%);
  box-shadow: inset 0 0 0px 5px #b2b2b2;
}

.cta-button:active,
.pick-time-slot-button:active,
.pick-day-button:active {
  background: linear-gradient(45deg, #4f8080 0%, #2e95a2 30%);
  box-shadow: inset 0 0 0px 5px #a6f2fc;
}

.pick-time-slot-button {
  font-size: 14px;
}

.pick-time-slot-button.active {
  background: linear-gradient(45deg, #fe9628 0%, #ffb84d 30%);
  box-shadow: inset 0 0 0px 5px #ffb84d;
}

.dummy-loader-contaner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
  gap: 5px;
}

.dummy-loader-contaner .loading-bar {
  display: flex;
  flex-grow: 1;
  width: auto;
  min-height: 40px;
  background: linear-gradient(90deg,#0001 33%,#0005 50%,#0001 66%) #f2f2f2;
  background-size:300% 100%;
  animation: loadingBar 2s infinite linear;
  border-radius: 14px;
  margin: 0.5rem 0;
}

.dummy-loader-contaner .loading-bar.w50 {
  width: 100%;
  max-width: 49%;
}

@keyframes loadingBar {
  0% {
    background-position: right;
  }
}

.guide-availability-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.guide-availability-container strong {
  margin-top: 1rem;
}

.guide-availability-container .pick-day-container {
  display: flex;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
  justify-content: center;
}

.guide-availability-container .pick-day-container .picked-day {
  cursor: pointer;
  font-size: 2rem;
  text-align: center;
  position: relative;
}

.guide-availability-container .picked-timezone-container,
.guide-availability-container .picked-country-container {
  position: relative;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.guide-availability-container #timezone-select {
  padding: 0.5rem 1rem;
  font-size: 16px;
  margin-top: 5px;
  background-color: white;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.guide-availability-container .availability-button-cluster {
  display: flex;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
  justify-content: center;
  margin-top: 0.3rem;
}

.guide-availability-container .picked-country::after,
.picked-time-slot-container span::after,
.guide-availability-container .pick-day-container .picked-day::after {
  content: '×';
  position: absolute;
  top: -10px;
  right: -15px;
  font-family: initial;
  font-size: 15px;
}

.picked-time-slot-container {
  border: 2px solid #fe9628;
  border-radius: 8px;
  padding: 5px;
  background-color: #fdf6e3;
  width: 100%;
  margin: 10px auto;
  cursor: pointer;
  position: relative;
}
.picked-time-slot-container span {
  width: 100%;
}

.polaroid-container-container {
  position: relative;
  display: flex;
  flex-direction: column;
  top: 20px;
  left: 0;
  max-width: 300px;
}

.checkout-country-banner h2 {
  font-size: 18px;
  transform: rotate(-4deg)
}

.checkout-country-banner span {
  font-size: 75px;
  margin-top: -30px;
  display: block;
}

.prior-guides-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: start;
  align-content: start;
  gap: 1rem;
  margin-top: 1rem;
  max-height: 50vh;
  overflow-y: auto;
  justify-content: center;
}

.polaroid-image-container {
  padding: 1rem;
  background: linear-gradient(90deg, #26f0de 0%, #fe9628 100%);
  border-radius: 6px;
  box-shadow: -2px -2px 10px 0px rgba(0,0,0,0.3);
  transform: scale(1) rotate(-4deg) translate(-30px);
}

.polaroid-image-container img {
  width: 100%;
  height: auto;
  max-width: 250px;
}

.polaroid-image-container.reveal {
  animation: revealPolaroid 1s ease forwards;
}
.polaroid-image-container span {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #1e3c3a;
  font-size: 20px;
  font-family: "lucky";
}

  @keyframes revealPolaroid {
    0% { 
      box-shadow: -14px -10px 20px 0px rgba(0,0,0,0.3);
      transform: scale(1.2) rotate(-6deg) translate(0px); 
      opacity: 0;
    }
    100% { 
      box-shadow: -2px -2px 10px 0px rgba(0,0,0,0.3);
      transform: scale(1) rotate(-4deg) translate(-30px); 
      opacity: 1;
    }
  }

@media screen and ( max-width: 800px ) {
  .polaroid-image-container.reveal {
    transform: scale(1) rotate(-4deg) translate(0);
  }
  @keyframes revealPolaroid {
    0% { 
      box-shadow: -14px -10px 20px 0px rgba(0,0,0,0.3);
      transform: scale(1.2) rotate(-6deg) translate(0); 
      opacity: 0;
    }
    100% { 
      box-shadow: -2px -2px 10px 0px rgba(0,0,0,0.3);
      transform: scale(1) rotate(-4deg) translate(0); 
      opacity: 1;
    }
  }
}


.prior-guides-polaroid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: radial-gradient(#fdfbf7 50%,#fcc890 300%);
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: auto;
  position: relative;
}

.prior-guides-polaroid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fffdf8;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 0.75rem 0.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 200px;
}

.pick-subscription-option-button {
  background-color: #4a9fc5;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
}

.polaroid-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  gap: 15px;
}
.polaroid-caption h2 {
  text-align: center;
  max-width: 90%;
}

.polaroid {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background: #fffdf8;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 0.75rem 0.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 900px;
  justify-content: space-around;
}

.guide-signup-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
}

.guide-signup-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0 20px;
}

.polaroid > div.profile-photo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  max-width: 300px;
  max-height: 500px;
} 

.polaroid div.profile-photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  min-width: 300px;
} 

.polaroid.conversation {
  max-width: 300px;
}

.polaroid div.profile-photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  max-width: 300px;
} 

.polaroid:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.polaroid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.polaroid .guide-profile-image {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.caption {
  margin-top: 0.75rem;
}

.caption h3, .guide-signup-form h3 {
  margin: 0.5rem 0;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

.caption button, .guide-signup-form button {
  background-color: #4a9fc5;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.guide-signup-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.caption button:hover {
  background-color: #3c8aac;
}

.descriptor-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto;
  }
section h2 {
  font-family: 'lucky', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.signup-as-guide-form-work-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.willusewhatsappoption-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.willusewhatsappoption {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 16px;
  background-color: #fff8e1;
  padding: 10px;
  height: 15px;
  width: 15px;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #333;
}

.willusewhatsappoption.selected {
  border: 2px solid #24afc2;
  background-color: #e0f7fa;
}

.toggle-tab-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 1rem;
}
.toggle-tab-button {
  background: #0a9396;
  border: #24afc2 6px solid;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 8px;
}
.toggle-tab-button:hover {
  background: #fe9628;
  border: #24afc2 6px solid;
}
.toggle-tab-button.active {
  background: #24afc2;
  border: #fe9628 6px solid;
}
section p {
  font-size: 1.2rem;
  line-height: 1.6;
}
section h2 {
  font-family: 'lucky', serif;
  color: #1e3c3a;
}
#about {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#about .images-container {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  margin-top: 20px;
}
#about .images-container img {
  display: flex;
  margin: 10px auto;
  width: 250px;
}

.add-timeslot-to-schedule-button {
  background-color: #4a9fc5;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  width: auto;
  transition: background-color 0.2s ease;
}
.add-timeslot-to-schedule-button:hover {
  background-color: #3c8aac;
}

.how-it-works-paragraphs-container {
  max-height: 400px;
  overflow-y: auto;
}

.available-days-flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
 }

 .available-days-flex-grid-profile {
    display: flex;
    max-width: inherit;
    justify-content: center;
    max-height: 400px;
    overflow-y: scroll;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
 }

.availability-selection-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
}

.set-availability-day {
  display: flex;
  flex-direction: row;
  font-size: 30px;
  margin: 5px;
  padding-left: 10px;
  border: 2px solid #24afc2;
  border-radius: 8px;
  cursor: pointer;
}

.time-slot-inputs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
}

.time-slot-inputs label:nth-child(2) {
  font-size: 16px;
  margin-left: 20px;
}

.time-slot-inputs input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.set-availability-button {
  background: #24afc2;
  border: #24afc2 6px solid;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 8px;
}

.social-stuff-profilepic-and-socials-links-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 20px;
  padding: 0px;
}

.available-days-flex-item {
    background: #24afc2;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
 }

.messaing-icon-heading {
  display: flex;
  font-size: 2rem;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #555;
  text-align: center;
  margin-top: 20px;
}

.written-content {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    color: #2f3e3e;
    background-color: #fff8e1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px; 
}

.footer {
  position: relative;
  text-align: center;
  background-color: #24afc2;
  color: white;
  width: 100%;
  max-width: 100vw;
  min-height: 30px;
  display: flex;
  width: 100%;
  justify-content: center;
}
.footer p span.pretty-link a {
  color: #fff;
}
.footer p span {
  color: #fff;
  font-size: .8rem;
  font-family: var(--body-font);
  padding: 0.5rem 0.6rem;
}
.footer p span i {
  font-size: 24px;
  position: relative;
  top: 4px;
}
.footer p div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
}
.footer p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: var(--body-font);
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.footer p span.pretty-link a,
.footer p span.pretty-link {
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer p span.pretty-link:hover a,
.footer p span.pretty-link:hover {
  color: #555;
  background-color: #fff;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
}

.desktop-margin-top-120 {
  margin-top: 120px;
}

.link {
  color: #fe9628;
  text-decoration: underline;
  font-weight: bold;
}

.current-availability-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.current-availability-list li {
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}
.container {
  display: flex;
  font-family: var(--body-font);
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  margin: 40px auto;
  padding: 1rem;
  background-color: #fff;
  width: 100%;
  border-radius: var(--border-radius);
}
.container h1 {
  font-size: 40px;
}
.container h2,
.container h3 {
  font-size: 30px;
}
.container strong,
.container ul,
.container p {
 font-size: 12px;
}
@media screen and (max-width: 768px) {
  .container {
    max-width: calc(100dvw - 2rem - 20px);
  }
  section.main-body-section.legal {
  padding-left: 10px;
  padding-right: 10px;
}
}

.break-on-mobile {
  display: none;
}

.buckish-walking-desktop {
  display: inline-block;
}

.buckish-walking {
  display: none;
}

.ex-files-subheader-button {
  background: #0a9396;
  border: #24afc2 6px solid;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 8px;
}

.ex-files-subheader-button:hover {
  background: #fe9628;
  border: #24afc2 6px solid;
}

.ex-files-subheader-button.active {
  background: #24afc2;
  border: #fe9628 6px solid;
}

.subscription-link {
  margin: 10px 0;
  font-size: 1.2rem;
  font-weight: bold;
  height: fit-content;
  padding: 10px;
  background-color: #fff8e1;
}


.sparkle {
  width: 100px;
  color: #000;
  height: auto;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  z-index: 100;
  position: relative;
}

.remove-bottom-margin {
  margin-bottom: 0;
}

.abundance-limits-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
}

.abundance-limits-map div:first-child {
  display: flex;
  flex-direction: column;
  flex-grow: 3;
  height: auto;
  padding: 20px;
}

.abundance-limits-map div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  height: auto;
  justify-content: center;
  align-items: center;
  background-color: #fff8e1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.signup-as-guide-options-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
  min-width: 600px;
}

.hawkins-map {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.spinning-logo {
  width: 50px;
  height: 50px;
  animation: spin 3s linear infinite;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.pretty-link a,
.pretty-link {
  color: #0978d9;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pretty-link a:hover,
.pretty-link:hover {
  color: #065a82;
}
.pretty-link a:active,
.pretty-link:active {
  color: #0a9396;
}
.pretty-link a:visited,
.pretty-link:visited {
  color: #0a9396;
}
.icon {
  object-fit: contain;
}

.alert-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.role-item {
  display: flex;
  align-items: center;
  padding: 5px;
  margin: 10px 0;
  border-radius: 5px;
  cursor: pointer;
  background-color: #24afc2;
}

.role-item:hover {
  background-color: #f0f8fa;
  border-color: #24afc2;
  transform: scale(1.02);
}

.role-item.selected {
  background-color: #fe9628;
  color: #fff;
}

.show-real-role-modal-button {
  color: #24afc2;
  font-size: 18px;
  margin-bottom: 25px;
}

.show-real-role-modal-button.selected {
  color: #fe9628;
}

.select-archetype-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.suggest-archetype-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/**
*  WHATSAPP CTA MODAL CSS
**/

.a-modal { 
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  max-height: 70vh;
  width: 500px;
  justify-content: center;
  position: fixed;
  margin: 0 auto;
  position: absolute;
  padding: 1.5rem 0.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: var(--border-radius);
  z-index: 1000;
}
.a-modal h2.lucky-font {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  height: 10%;
  letter-spacing: 0.5px;
}
.a-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  width: 100%;
  max-height: 60vh;
  overflow-y: auto;
  background-color: #fffdf8;
  max-width: 400px;
  justify-self: center;
  align-self: center;
}
.a-modal-body .whatsapp-btn {
  background: rgb(37, 211, 102);
  background: radial-gradient(circle at center,#00d900, #00d700);
  color: white;
  padding: 0.9rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: inset 0 0 0 5px #00f909;
  transition: all 0.3s ease;
}
.a-modal-body .whatsapp-btn:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 0px #00f909;
}
.a-modal-body .whatsapp-btn img {
  width: 40px;
  height: auto;
  margin: 0.5rem;
  filter: invert(1);
}
.a-modal-body .download-whatsapp-btn {
  background: transparent;
  color: rgb(36, 175, 194);
  padding: 0.9rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 5px var(--boggler-blue);
  transition: all 0.3s ease;
}
.a-modal-body .download-whatsapp-btn:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 1px var(--boggler-blue);
}
.a-modal-body .download-whatsapp-btn span {
  font-size: 30px;
  margin: 0 0 0.8rem;
}
.a-modal-body .number {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9em;
  color: rgb(85, 85, 85);
}
.a-modal-body .number strong {
  background: rgb(240, 240, 240);
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  font-size: 1.3rem;
  font-family: monospace;
  display: inline-block;
  cursor: pointer;
}

.a-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.a-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
} 

.a-modal-body {
  width: 100%;
}

.a-modal-body p {
  font-size: 2rem;
  margin: 0 auto;
  margin-bottom: 20px;
}
.a-modal-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.a-modal-body-close-button {
  /* fe9628 */
  background: #24afc2;
  border: #fe9628 6px solid;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  margin: 2rem auto;
}

.alert-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.select-archetype-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.select-archetype-modal-body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.meme-video-modal__video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  border-radius: 20px;
}

.signup-as-guide-form-intro-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 400px;
  margin: 0 auto;
}

.guide-archetype-signup-selection-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  align-self: flex-start;
}

.guide-archetype-signup-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.select-archetype-modal-body input {
  width: -webkit-fill-available;
  min-width: 280px;
}

.suggest-archetype-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.alert-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  max-height: 70vh;
  width: 400px;
  justify-content: center;
  position: fixed;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  z-index: 1000;
}
.alert-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10%;
}
.alert-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem 0 2rem;
  max-height: 80%;
  overflow-y: scroll;
}

.select-archetype-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  max-height: 70vh;
  width: auto;
  min-width: 300px;
  padding: 30px;
  justify-content: center;
  position: fixed;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  z-index: 100;
}

.suggest-archetype-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  width: auto;
  justify-content: center;
  position: fixed;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border-radius: 20px;
  z-index: 1000;
}

.suggest-archetype-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10%;
}

.suggest-archetype-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  max-height: 500px;
  width: auto;
  overflow-y: scroll;
  padding: 0 2rem 0 2rem;
}

.alert-modal-body p {
  font-size: 2rem;
  margin: 0 auto;
  margin-bottom: 20px;
}
.alert-modal-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.alert-modal-body-close-button {
  /* fe9628 */
  background: #24afc2;
  border: #fe9628 6px solid;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  margin: 2rem auto;
}
.gratitude-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.gratitude-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.gratitude-button-textual {
  display: block;
}
.gratitude-button-visual {
  display: none;
}
.love-map-image {
  width: 100%;
  height: auto;
  max-width: 300px; 
}
.buckish-about-h1 {
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 20px;
}
.sinhala-english-articles {
  display: none;
}

.contributor-form {
  width: 90%;
  height: auto;
}

.contributor-form label {
  font-size: 26px;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #fe9628;
}

.contributor-form input {
  background-color: #fff;
  border: 2px solid #24afc2;
  height: 30px;
  color: #24afc2;
  font-size: 1.2rem;
  padding: 10px;
  width: 300px;
  border-radius: 5px;
}

.contributor-form #amount {
  color: #14d527;
  font-size: 30px;
  padding: 10px;
  text-align: center;
  padding-left: 45px;
  width: 150px;
}

.social-links-input {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}

.contributor-form button {
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #24afc2;
  border-color: #fe9628;
  color: #fff;
  font-size: 40px;
}

.admin-title {
  text-align: center;
  font-size: 36px;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #555;
  margin-top: 20px;
}

.admin-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 20px;
}

.admin-actions button {
  background-color: #fff;
  border-color: #24afc2;
  color: #fe9628;
  font-size: 40px;
}

.manage-applicants-action {
  display: flex;
  background-color: #fff;
  border-color: #24afc2;
  color: #fe9628;
  font-size: 18px;
  margin: 10px;
}

button.button-cancel {
  background-color: #ff4d4d;
  border-color: #ff1a1a;
  color: #fff;
  font-size: 12px;
}

.guide-profile-details {
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  margin: 10px 20px;
  background: #fff;
  box-shadow: 5px 10px #888888
}

.start-call-button {
  background-color: #24afc2;
  border-color: #ff1a1a;
  color: #fff;
  font-size: 21px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 300px;
  text-align: center;
  height: 50px;
}

button.button-reschedule {
  background-color: #24afc2;
  border-color: #ff1a1a;
  color: #fff;
  font-size: 12px;
}

.applicant-item {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  transition: background-color 0.3s;
}

.applicant-item:hover {
  background-color: #f0f0f0;
}

.outer-flex {
  display: flex;
  flex-direction: column;
}

.inner-flex {
  display: flex;
  margin: 0 auto;
}

.inner-flex .contributor-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  min-width: 250px;
}

.inner-flex .contributor-form * {
  display: flex;
  flex-direction: column;
}

.signup-as-guide-form-motivation-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.guide-signup-form-next-back-button {
  background: #24afc2;
  border: #fe9628 6px solid;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  margin: 0 2rem;
  padding: 10px 20px;
  border-radius: 8px;
}

.center-image {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.center-image img {
  position: relative;
  display: flex;
  margin: 0 auto;
}

.select-group {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.gender-select {
  display: flex;
  flex-direction: row;
  max-width: 300px;
}

.age-group-select {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.been-ghosted-title {
  text-align: center;
  padding-top: 10px;
}

.survey-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.survey-heading span {
  font-size: 32px;
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  text-align: center;
}

.survey-container #customerName, .customer-name-question {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: lighter;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #24afc2;
}

.prior-guides-outer-container {
    display: "flex";
    flex-direction: "column";
    justify-content: "flex-start";
    text-align: "center";
    width: 60%;
    align-self: baseline;
  }

.survey-container label {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: lighter;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
}

.survey-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.survey-option {
  display: flex;
  background-color: #24afc2;
  color: #fdf6e3;
  font-size: 20px;
  margin: 10px 0;
  cursor: pointer;
  width: 100%;
  text-align: center;
  height: 40px;
  border: none;
  justify-self: center;
}

.survey-option.smaller {
  font-size: 14px;
}

.survey-option.selected {
  background-color: #fe9628;
  color: #fff;
  border: 2px solid #24afc2;
}

.survey-option * {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.social-media-link {
  color: #0978d9;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}

.payment-record {
  font-size: 1rem;
  text-align: left;
  margin-top: 10px;
  color: #555;
}

.account-section-conversations-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px;
}

.conversation-item {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  transition: background-color 0.3s;
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
}

.conversation-message {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.account-note-edit-textarea {
  width: 80%;
  max-width: 600px;
  height: 150px;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.delete-message-link, .edit-message-link {
  color: #333;
  font-size: 10px;
  cursor: pointer;
  text-decoration: underline;
  margin-right: 10px;
}

.preview-media-thumbnail {
  width: 100px;
  height: auto;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-search-input {
  width: 80%;
  max-width: 300px;
  padding: 10px;
  font-size: 1.2rem;
}

.autocomplete-dropdown-container {
  background-color: #fdf6e3;
  max-width: 220px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.places-suggestion-item {
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}

.places-suggestion-item:hover {
  background-color: #eee;
}

.survey-option.selected.option-0 {
  background-color: #fe9628;
}

.survey-option.selected.option-1 {
  background-color: #1c865a;
}

.survey-option.selected.option-2 {
  background-color: #3454bf;
}

.survey-option.selected.option-3 {
  background-color: #c73ce3;
}

.survey-option.selected.option-4 {
  background-color: #e34343;
}

.add-credentials-final-option-button.add-another {
  background: #0a9396;
  border: #24afc2 6px solid;
  font-size: .8rem;
  cursor: pointer;
  color: #fff;
  padding: 10px 10px;
  border-radius: 8px;
}

.add-credentials-final-option-button.add-another:hover {
  background: #fe9628;
  border: #24afc2 6px solid;
}

.add-credentials-final-option-button.remove {
  background: #e34343;
  border: #fe9628 6px solid;
  font-size: .8rem;
  cursor: pointer;
  color: #fff;
  padding: 10px 10px;
  border-radius: 8px;
  margin-top: 5px;
}

.add-credentials-final-option-button.remove:hover {
  background: #c73ce3;
  border: #fe9628 6px solid;
}

.state-search-container,
.country-search-container {
  position: relative;
  display: flex;
  width: 100%;
}

input.us-state-selection-input,
input.country-selection-input {
  display: flex;
  background-color: #fff;
  color: #272727;
  font-size: 16px;
  margin: 10px auto;
  cursor: text;
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  outline: none;
  border: 1px solid #ccc;
  height: unset;
}
ul.state-search-list,
ul.country-search-list {
  position: absolute;
  z-index: 10;
  background: white;
  list-style: none;
  width: 100%;
  /* max-width: 284px; */
  max-height: 200px;
  overflow: auto;
  margin-top: 0.25rem;
  padding: 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  bottom: -6px;
  transform: translate(0,100%);
}


ul.state-search-list li,
ul.country-search-list li {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  background: white;
}

/* .country-selection-input::-webkit-input-placeholder {
  color: #fff;
  font-style: italic;
} */

/* For Mozilla Firefox */
/* .country-selection-input::-moz-placeholder {
  color: #fff;
  font-style: italic;
} */

/* For Internet Explorer 10 and 11 */
/* .country-selection-input:-ms-input-placeholder {
  color: #fff;
  font-style: italic;
} */

/* Standard syntax (for future compatibility) */
/* .country-selection-input::placeholder {
  color: #fff;
  font-style: italic;
} */

.link-to-downloads-button {
  background: #0a9396;
  border: #24afc2 6px solid;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
}

.zip-alert-modal-body {
  font-size: 1.5rem;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  max-height: 60vh;
  overflow-y: auto;
}

.text-method-select-btn {
  background: #24afc2;
  border: #fe9628 6px solid;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.text-method-select-btn:hover {
  background: #fe9628;
  border: #24afc2 6px solid;
}

.text-method-select-btn.selected {
  background: #fe9628;
  border: #24afc2 6px solid;
}

.send-message-to-guide-button {
  margin-top: 20px;
  width: 200px;
  height: auto;
  background-color: #24afc2;
  border-color: #fe9628; /* boggler-orange */
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  cursor: pointer;
}

.send-message-to-guide-button:hover {
  background-color: #fe9628;
  border-color: #24afc2;
}

.zip-alert-modal-body p {
  font-size: 1.5rem;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 1rem;
}

.proceed-to-account-button {
  background: #24afc2;
  border: #fe9628 6px solid;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

.choose-account-guide-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-description {
  font-size: 1rem;
  color: #555;
  text-align: left;
  padding: 10px;
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
}

.how-it-works-paragraphs-container p {
  padding-top: 0;
  margin-top: 0;
  font-size: 28px;
  line-height: 1.6;
}

.account-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff8e1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  min-height: 200px;
  justify-content: center;
}

.account-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.account-option.other-guide-type {
  background: linear-gradient(135deg, #24afc2, #fe9628);
  color: white;
  font-weight: bold;
}

.account-option.hidden {
  display: none;
}

.about-section-written-content {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #2f3e3e;
  background-color: #fff8e1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 1rem;
  margin: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px; 
  padding-bottom: 0;
}

.show-more-guides-container {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.show-more-guides-button {
  background: #24afc2;
  border: #fe9628 3px solid;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.show-more-guides-button:hover {
  background: #fe9628;
  border: #24afc2 3px solid;
  transform: scale(1.05);
}

.pagination-controls {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.pagination-button {
  background: #24afc2;
  border: 2px solid #fe9628;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.pagination-button:hover:not(:disabled) {
  background: #fe9628;
  border-color: #24afc2;
}

.pagination-button:disabled {
  background: #ccc;
  border-color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

.pagination-button.active {
  background: #fe9628;
  border-color: #24afc2;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .choose-account-guide-types {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 15px;
  }
  
  .account-option {
    min-height: 150px;
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .choose-account-guide-types {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

 .while-you-wait-for-upload-video {
    width: 90%;
    height: auto;
    max-width: 500px;
  }

  .subscriptions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
  }

  .subscriptions-container button {
    background-color: #24afc2;
    border-color: #fe9628;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
  }

  .talk-to-guide {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100vw;
  }

  .guide-type-info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .guide-type-info-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .subscription-payment-or {
    text-align: center;
    margin: 50px 0;
    font-size: 32px;
    justify-self: flex-start;
    align-self: flex-start;
  }

  /* Hide the default file input */
.profile-picture-input {
    display: none;
}

.about-section-three {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  text-align: left;
  width: 100%;
  margin-top: 20px;
  align-self: end;
  margin-right: 30px;
}

.about-section-three-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0;
  width: 100%;
  margin-left: 0;
}

.confirm-call-more-info-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    width: 50%;
  }

.confirm-call-more-info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

@media screen and (min-width: 1200px) {
  .about-section-three-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 90%;
    margin-left: 23%;
    margin-right: 2%;
  }
}

.how-it-works-heading {
  margin-top: 20px;
  font-size: 38px;
  font-weight: bold;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  text-align: left;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-section-problem-statement {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
}

.about-section-inner {
  display: flex;
  flex-direction: column;
}

/* Style the custom file input label */
.profile-picture-label {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #24afc2, #fe9628);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.profile-picture-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #fe9628, #24afc2);
}

.profile-picture-label:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.send-message-to-guide-info-1-inner-2 {
   padding-top: 50px;
}

.add-button-padding {
  padding: 20px;
}

.prior-guides-outter-container {
  width: 60%;
  max-width: 90%;
}

.review-options-buttons-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.subscribe-to-guide-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

.subscribe-to-guide-container div {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    align-items: center;
    padding: 0 20px;
}

.review-option-button {
  background: #24afc2;
  border: #fe9628 6px solid;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}
.review-option-button:hover {
  background: #fe9628;
  border: #24afc2 6px solid;
}
.review-option-button.selected {
  background: #fe9628;
  border: #24afc2 6px solid;
}

/* Container for the file input section */
.profile-picture-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: fit-content;
    justify-self: center;
}

/* Style for the file input instruction text */
.profile-picture-instruction {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

/* Style for uploaded image preview */
.profile-picture-preview {
    width: 200px;
    height: 200px;
    border-radius: 10%;
    object-fit: cover;
    border: 4px solid #24afc2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.filter-button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20px;
  left: 20px;
  width: fit-content;
  height: 40px;
  background-color: #24afc2;
  border-width: 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  z-index: 10;
}

.about-section-three-image-container {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      background-image: url('https://buckish-ghosted-maps.s3.us-west-1.amazonaws.com/boggler-on-phone-2.webp');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      width: 250px;
      height: 375px;
}

@media screen and (min-width: 1200px) {

  .about-section-three-image-container {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      bottom: 0;
      left: 5%;
      background-image: url('https://buckish-ghosted-maps.s3.us-west-1.amazonaws.com/boggler-on-phone-2.webp');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      width: 250px;
      height: 360px;
    }
}

.profile-picture-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.a-modal {
  max-width: 95vw;
  max-height: 90vh;
  height: auto;
}

.a-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

  /* Remove button styling */
  .remove-picture-button {
      position: absolute;
      background: #fff;
      border: none;
      text-decoration: underline;
      cursor: pointer;
      font-size: 0.9rem;
      padding: 6px 8px;
      transition: color 0.2s ease;
      bottom: -5px;
      left: -10px;
      border: 2px solid #999;
      border-radius: 50%;
  }

  .remove-picture-button:hover {
      transform: scale(1.5);
  }

  /* File input with drag and drop styling */
  .file-drop-zone {
      border: 2px dashed #24afc2;
      border-radius: 8px;
      padding: 40px 20px;
      text-align: center;
      background: rgba(36, 175, 194, 0.05);
      transition: all 0.3s ease;
      cursor: pointer;
      min-width: 300px;
  }

  .blog-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff9ff;
  }

  .file-drop-zone:hover {
      border-color: #fe9628;
      background: rgba(254, 150, 40, 0.05);
  }

  .file-drop-zone.drag-over {
      border-color: #fe9628;
      background: rgba(254, 150, 40, 0.1);
      transform: scale(1.02);
  }

  .fellow-travellers-heading {
    margin: 20px auto;
  }

  /* Icon for file upload */
  .upload-icon {
      font-size: 3rem;
      color: #24afc2;
      margin-bottom: 15px;
  }

  .outer-row-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .inner-flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
  }

  /* Upload text styling */
  .upload-text {
      color: #666;
      font-size: 1rem;
      margin-top: 10px;
  }

  .upload-text-bold {
      font-weight: 600;
      color: #24afc2;
  }

  .before-call-info-add-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .before-call-info-add-section {
    width: 50%;
  }

  .send-message-to-guide-info-container {
    width: 100%;
  }

  .send-message-to-guide-info-1-outer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .send-message-to-guide-info-1-inner-1 {
    width: 50%;
  }

  .send-message-to-guide-info-1-inner-2 {
    width: 50%;
  }

  .flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .send-message-to-guide-customer-profile-picture {
    width: 75px;
    height: auto;
    margin-top: 40px;
    border-radius: 20px;
    object-fit: cover;
    margin-right: 20px;
  }

  .ghosted-message-button {
    width: 75px;
    height: 75px;
  }


@keyframes spin {
  0% {
    transform: translateX(-70%);
  }
  50% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(-70%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes textGrow {
  from {
    font-size: 1.2rem;
  }
  to {
    font-size: 1.5rem;
  }
}


@media screen and (max-width: 1200px) {
  .send-message-to-guide-info-1-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
























/*Responsive Styles */


@media screen and (max-width: 768px) {

  .checkout-body-section,
  .main-body-section {
    min-height: calc(100vh - 158px - 1rem);
    padding-top: 1rem;
  }
  .gratitude-container {
    flex-direction: column;
    align-items: center;
  }
  .gratitude-section {
    width: 100%;
  }
  .gratitude-button-textual {
    display: none;
  }
  .gratitude-button-visual {
    display: block;
  }
  .alert-modal {
    width: 90%;
    height: 80vh;
  }
  .suggest-archetype-modal {
    width: 90vw;
    height: 80vh;
  }
  .hamburger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger .bar {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.2s;
    transform-origin: center;
  }
  .hamburger.open .bar:nth-last-of-type(1) {
    transform: rotate(45deg) translate(-2px,-6px);
  }
  .hamburger.open .bar:nth-last-of-type(2) {
    width: 0px;
  }
  .hamburger.open .bar:nth-last-of-type(3) {
    transform: rotate(-45deg) translate(-3px,8px);
  }
  .site-title {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
  }
  .header-logo-wrapper {
    min-width: 100%;
  }
  .header-logo {
    transform: scale(1) translate(0);
    padding: 0.5rem;
  }
  .header-logo:hover {
    transform: scale(1) translate(0);
  }
  .mobile-header {
    display: flex;
    flex-direction: column;
    margin: 0;
    position: relative;
    width: initial;
  }
  .header-button {
    width: 100%;
    padding: 0.5rem 1.3rem;
  }
  .main-nav {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-left: auto;
    margin: 0 auto;
    align-items: center;
    width: auto;
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
  }
  .header-button {
    font-size: 16px;
  }
  .footer p {
    flex-direction: column-reverse;
  }
  .footer p span {
    padding: 0.1rem 0.5rem;
  }
  .app-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .buckish-about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .buckish-about-text-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .buckish-about-text-buttons img {
    width: 120px;
    height: 120px;
    cursor: pointer;
  }
  .main-nav.closed {
    display: none;
  }
  .main-nav.open {
    display: flex;
  }
  .prior-guides-outter-container {
    width: 90%;
    max-width: 90%;
  }
  #about {
    flex-direction: column;
    align-items: center;
  }
  #about div {
    text-align: center;
    padding: 1rem;
    margin: 0 auto;  
  }
  #about-founder {
    flex-direction: column;
    align-items: center;
  }
  .apex-in-buckish-inner-container {
        flex-direction: column;
        align-items: center;
      }
      #about-apex-in-buckish .flex-column {
        flex-direction: column;
        align-items: center;
      }
      #about-apex-in-buckish .flex-column .written-content {
        display: flex;
        flex-direction: column;
      }
      #about-the-app {
        flex-direction: column;
        align-items: center;
      }
  .about-the-app {
        flex-direction: column;
        align-items: center;
      }
  .ghosted-explanation {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    padding: 0 30px;
  }
  .app-card {
    margin: unset;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .app-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    color: #2f3e3e;
    background-color: #fff8e1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 1rem;
    border: 1px solid #ddd;
  }
  .buckish-hotline-link {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #0978d9;
    text-decoration: underline;
    font-size: 1.7rem;
  }

  .messaging-apps-icon-container-boggler {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: space-evenly;
    width: 100%;
  }

  .prior-guides-polaroid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fffdf8;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 0.75rem 0.75rem 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 95%;
  }
  .availability-selection-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-section-three-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    bottom: unset;
    left: unset;
    margin-bottom: 20px;
  }
  .social-stuff-profilepic-and-socials-links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .subscription-payment-or {
    text-align: center;
    margin: 0 auto;
    font-size: 32px;
    justify-self: center;
    align-self: center;
    margin-top: 30px;
  }
  .icon {
    object-fit: contain;
  }
  .header-logo {
    width: 40px;
    height: 40px;
  }
  .profile-pic {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin: 0 auto;
    height: auto;
  }
  .descriptor-image {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .time-slot-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .time-slot-inputs label:nth-child(2) {
    font-size: 16px;
    margin-left: 0;
  }

  .time-slot-inputs input {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .prior-guides-outer-container {
    display: "flex";
    flex-direction: "column";
    justify-content: "flex-start";
    text-align: "center";
    width: 100%;
    align-self: baseline;
  }
  .pick-time-slot-button {
    font-size: 1rem;
    width: 100%;
  }
  .desktop-margin-top-120 {
    margin-top: unset;
  }
  .mobile-remove-bottom-margin {
    margin-bottom: 0;
  }
  .abundance-limits-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  .buckish-whofor-section {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .subscribe-to-guide-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .guide-signup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .confirm-call-more-info-inner { 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    width: 100%;
  }

  .guide-type-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .how-it-works-paragraphs-container {
    max-height: unset;
  }

  .buckish-whofor-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .break-on-mobile {
    display: block;
  }
  .buckish-walking-desktop {
    display: none;
  }
  .guide-signup-heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
  }

  .outer-row-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .inner-flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
  }

  .guide-signup-image {
    display: flex;
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .guide-signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .signup-as-guide-options-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    min-width: unset;
  }

  .confirm-call-more-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .polaroid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: #fffdf8;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 0.75rem 0.75rem 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 900px;
    justify-content: space-around;
  }

  .a-modal {
    padding: 1.5rem 2rem 2.5rem;
    max-width: calc(100dvw - 5rem);
  }

  .polaroid.polaroid-suggest-archetype {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: #fffdf8;
    padding: 0.75rem 0.75rem 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 900px;
    justify-content: space-around;
    box-shadow: unset;
    border: none;
    width: 100%;
  }

  .how-it-works-paragraphs-container p {
    font-size: 22px;
    line-height: 1.6;
  }

  .about-section-three {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: unset;
    align-self: unset;
    width: 100%;
    margin-right: 0;
  }

  .polaroid > div.profile-photo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
  } 

  .about-section-three-text-container {
    padding: 0;
    width: 100%;
    margin-left: 0;
  }

   .polaroid > div.profile-photo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
  }

  .polaroid > div.caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .boggler-about-section-one {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .guide-signup-phone-input {
    font-size: 22px;
    padding: 10px;
    width: 250px;
    text-align: center;
  }

  .choose-account-guide-types {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    padding-top: 0;
  }

  .choose-account-container h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .account-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff8e1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
  }

  .while-you-wait-for-upload-video {
    width: 95vh;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .talk-to-guide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
  }

  .review-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .signup-as-guide-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    max-width: 90vw;
    padding: 0 5px;
  }

  .signup-as-guide-header {
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }

  .guide-profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  #signup-as-guide-form-intro-title {
    display: block;
    font-size: 2.5rem;
    text-align: center;
    margin: 0;
  }
  #signup-as-guide-form-intro-subtitle {
      display: block;
      font-size: 1.5rem;
      text-align: center;
      margin: 0;
  }

  .signup-as-guide-form-work-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .signup-as-guide-form-survey-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
  }

  .signup-as-guide-form-survey-section > .signup-as-guide-basic-info-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .desktop-left-mobile-center {
    text-align: center;
  }

  .signup-as-guide-form-motivation-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-align: center;
    width: 80vw;
    max-width: 80vw;
  }

  .guide-signup-form-next-back-button {
    margin-bottom: 1rem;
  }

  .signup-as-guide-basic-info-details {
    max-width: 300px;
  }

  .add-custom-archetype-button {
    margin: 1rem auto;
    height: 25px;
  }

  .gender-select {
    display: flex;
    flex-direction: row;
    max-width: 300px;
  }

  .applicant-profile-picture {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 150px;
    height: auto;
  }

  .meme-video {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
  }

  .buckish-about-section {
    display: flex;
    flex-direction: column;
    max-width: 98%;;
  }

  .guide-signup-inputs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .blog-article-outer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .otp-method-button-active {
    font-size: 1rem;
    padding: 8px 12px;
    background-color: #fe9628;
  }

  .otp-method-button-inactive {
    font-size: 1rem;
    padding: 8px 12px;
    background-color: #24afc2;
  }

  .blog-article-writing-container {
    display: flex;
    width: 95%;
    height: auto;
    max-height: unset;
    flex-direction: column;
    align-items: left;
    padding: 10px;
    justify-content: flex-start;
    text-align: left;
  }

  .get-started-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }

  .blog-article-image-container {
    display: flex;
    width: 95%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .send-message-to-guide-info-1-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .send-message-to-guide-info-container {
    width: 100%;
  }

  .before-call-info-add-section {
    width: 100%;
  }

   .send-message-to-guide-info-1-inner-1 {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .send-message-to-guide-info-1-inner-2 {
    width: 100%;
  }

  .profile-picture-container {
    position: relative;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: fit-content;
  }

  .profile-links-section-profile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;    
    align-items: start;
    align-content: start;
    width: fit-content;       
    margin: 0 auto;    
  }

  .fellow-travellers-heading {
    margin: 5px auto;
  }

  .boggler-background {
    margin-top: unset;
    border-bottom: 10px solid #24afc2;
  }

  .about-section-three div:first-child {
    margin-right: 0;
  }

  .about-section-three div.cta-button {
    margin: 20px auto;
  }

  .about-section-problem-statement {
    text-align: center;
    font-size: 27px;
    font-weight: bold;
    font-family: 'lucky', Arial, Helvetica, sans-serif;
    width: 100%;
  }

  .how-it-works-paragraphs-container {
    max-width: 100%
  }

  .prior-guides-container {
    justify-content: flex-start;
    max-height: unset;
  }

  .polaroid-container-container {
    left:unset;
  }
  .polaroid-image-container {
    width: fit-content;
    margin-left: 37px;
  }
  .polaroid-image-container img {
    max-width: 150px;
  }

  .polaroid-caption h2 {
    font-size: 1.8rem;
    margin: 2rem 0 0;
  }

  .prior-guides-polaroid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    margin: 0 auto;
    width: 90%;
    padding-left: 1rem;
  }

}

.main-body-section.map {
  position: relative;
  overflow: hidden;
  min-height: unset;
  max-height: 725px;
  margin-bottom: 1rem;
  padding: 0;
}

.main-body-section.map::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 150%;
  width: 100%;
  max-width: 500px;
  content: '';
  background: linear-gradient(to right, white, rgba(0,0,0,0));
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  transform: translate(100px, -25%) scale(1.2);
  opacity: 0;
  transition: all 0.3s ease;
}

.main-body-section.map.hover::after {
  opacity: 0.6;
  right:20px;
}

#guide-list-container {
  position: absolute;
  right: 0;
  background-color: transparent;
  min-height: 100%;
  z-index: 10;
  border-radius: 16px;
  top: 0;
  padding: 1rem 1rem 1rem 2rem;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

#guide-list-container .list-item.selected {
  transform: scale(1.1) translate(-10px,0);
}

#guide-list-container .list-item .manage-item-action.boggler {
  position: absolute;
  left: -9px;
  bottom: -9px;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  border: 5px solid #fdf6e3;
}

#guide-list-container .list-item .social-media-container {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: -20px;
  height: 70px;
  z-index: 2;
  align-items: center;
  margin-top: 10px;
  max-width: 185px;
  overflow: scroll hidden;
}
#guide-list-container .list-item .social-media-container img {
  display: flex;
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 10px;
  cursor: pointer;
  border: 5px solid rgb(253, 246, 227);
  border-radius: 20%;
  background: #fdfbf7;
}

#guide-list-container .list-item .left span .archetype-badge.badge {
  background: #eeecec;
  font-size: 13px;
  color: #484848;
}
#guide-list-container .list-item .left span.arch-list {
  height: 83px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 10px;
  position: relative;
  left: -10px;
}

#guide-list-container .list-item {
  padding: 1.5rem 1rem 0.5rem 0rem;
  border-radius: 14px;
  margin: 0.5rem 0.5rem 0 2rem;
  background: #fdfbf7;
  background: radial-gradient(#fdfbf7 50%,#fcc890 300%);
  min-height: 230px;
  min-width: 400px;
  scroll-snap-align: center;
  position: relative;
  display: flex;
  margin-top: 25vh;
  margin-bottom: 25vh;
  transition: all 0.3s;
  box-shadow: 0 0 25px 0px rgba(0,0,0,0.3);
}

#guide-list-container .list-item .right span,
#guide-list-container .list-item .left span {
  margin: 0.3rem 0;
  font-size: 14px;
}

#guide-list-container .list-item .right p.name {
  font-weight: bold;
  font-size: 1rem;
  margin: 0.5rem 0;
}
#guide-list-container .list-item .right .form-group {
  padding-top: 1rem;
  justify-content: flex-end;
}
#guide-list-container .list-item .right .form-group button {
  width: 100%;
}

#guide-list-container .list-item .profile-pic-container {
  transform: translate(-10px,-50px);
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 7px #f79d17;
  height: 125px;
  width: 125px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
}

#guide-list-container .list-item .profile-pic-container img {
  width: 0;
  height: 0;
  opacity: 0;
}

#guide-list-container .list-item .archetype {
  width: 50px;
  height: 50px;
  display: none;
  position: absolute;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 0 5px #fdf2e5;
}

#guide-list-container .list-item .archetype.badge-1 {
  display: block;
  top: -60px;
  left: -20px;
}

#guide-list-container .list-item .archetype.badge-2 {
  display: block;
  top: -71px;
  left: 23px;
}

#guide-list-container .list-item .archetype.badge-3 {
  display: block;
  top: -60px;
  left: 67px;
}

#guideProfilesContainer {
  position: relative;
  height: 100%;
  min-height: calc(100vh - 4rem);
  max-height: 741px;
  width: 100%;
  overflow: hidden;
}

#guideProfilesContainer .mapboxgl-control-container {
  display: none;
}

#guideProfilesMap {
  position: absolute;
  left: 0;
  height: 100%;
  max-height: 741px;
  width: 100%;
  display: flex;
  pointer-events: none;
}

#guideProfilesMap .arrow {
  background: url("img/up-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 70px;
  height: 40px;
  display: block;
  position: absolute;
  top: 20px;
  right: 150px;
  z-index: 1;
  opacity: 0;
  animation: upArrow 1.3s ease-in-out infinite;
}
#guideProfilesMap .arrow.active {
  opacity: 1;
}

#guideProfilesMap .arrow.down {
  top: unset;
  bottom: 40px;
  animation: downArrow 1.3s ease-in-out infinite;
  transform: rotate(180deg);
}
#guideProfilesMap .arrow.down.active {
  opacity: 1;
}

@keyframes upArrow {
  0% { top: 100px }
  50% { top: 140px }
  100% { top: 100px }
}

@keyframes downArrow {
  0% { bottom: 40px }
  50% { bottom: 80px }
  100% { bottom: 40px }
}

#guide-list-container .list-item .badge {
  background: linear-gradient(135deg, #fa785e, #fb9526);
  border-radius: 14px;
  padding: 1px 10px;
  display: flex;
  justify-content: center;
  color: white;
  box-shadow: 0 0 0 4px #fdfbf7;
}

#guide-list-container .list-item .country .flag {
  transform: scale(3.8) translate(2px, 0px);
}

#guide-list-container .list-item .country {
  position: relative;
  display: flex;
  overflow: hidden;
  padding-left: 10px;
  background: #eeecec;
  border-radius: 14px;
  margin: 0.3rem 0 !important;
  justify-content: space-around;
  align-self: baseline;
  box-shadow: 0 0 0 4px #fdfbf7;
}

#guide-list-container .list-item .country div:first-of-type {
  padding-right: 10px;
  font-size: 14px;
}

#guide-list-container .list-item .roles {
  display: flex;
  position: relative;
  z-index: 100;
  background: white;
  max-width: 150px;
  padding: 0.5rem;
  border-radius: 16px;
  border-top-left-radius: 0;
  box-shadow: 0 0 0px 3px rgba(0,0,0,0.2);
  margin-top: 1rem !important
}

#guide-list-container .list-item .left {
  width: 100%;
  margin-top: 70px;
  max-width: 130px;
  z-index: 10;
  transform: translateX(-9px);
  padding-left: 10px;
  position: relative;
  left: -10px;
}

#guide-list-container .list-item .right {
  display: flex;
  flex-direction: column;
  padding-left: 1.3rem;
  width: 100%;
}

#guide-list-container .list-item .name .lucky-font {
  font-size: 2rem;
  margin: 0;
  line-height: 2.5rem;
  height: 30px;
}

#guide-list-container .list-item p {
  max-width: 200px;
  font-size: 15px;
  margin: 10px 0 0;
}

#guide-list-container .list-item .right .archetypes {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  margin-top: 1rem;
}

#guide-list-container .list-item .right .archetype {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
}

#guide-list-container .list-item .right .archetype .tip {
  display: block;
  position: relative;
  width: 100px;
  background: #68794a;
  color: white;
  padding: 2px 4px;
  border-radius: 14px;
  text-align: center;
  left: 5px;
  font-weight: 100;
  font-size: 14px;
  box-shadow: inset 0 0 0 3px #b3bd40;
}

#guide-list-container .list-item .right img {
  max-width: 50px;
  height: auto;
}

/* mobile map view */
@media screen and (max-width: 800px) {
  #guideProfilesMap .arrow,
  .main-body-section.map::after {
    display: none;
  }

  #guideProfilesMap {
    width: 100%;
    height: 100%;
  }
  #guide-list-container .list-item text,
  #guide-list-container .list-item p {
    max-width: unset;
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
  }

  #guide-list-container .list-item .manage-item-action.boggler {
    left: 9px;
    bottom: -9px;
    padding: 0.7rem 2rem;
  }

  #guide-list-container {
    position: absolute;
    min-width: calc(50% - 2rem);
    left: 0px;
    top: unset;
    bottom: 50px;
    width: 100%;
    height: 60vh;
    min-height: 430px;
    max-height: 450px;
    display: flex;
    flex-flow: row;
    overflow: auto hidden;
    scroll-snap-type: x mandatory;
    padding: 0px;
    gap: 10px;
    z-index: 3;
    bottom: -25px;
  }
  #guide-list-container .list-item {
    padding: 1.5rem 1.5rem 0.3rem 1.5rem;
    min-height: unset;
    min-width: calc(100% - 4rem);
    scroll-snap-align: center;
    margin-top: 5.5rem;
    margin-bottom: unset;
  }
  #guide-list-container .list-item.selected {
   transform: unset; 
  }

  #guide-list-container .list-item .left,
  #guide-list-container .list-item .right {
    flex-direction: column;
    position: relative;
  }
  #guide-list-container .list-item .right {
    padding-left: 0.5rem;
  }

  #guide-list-container .list-item .archetype.badge-1 {
    display: block;
    top: -60px;
    left: 0;
  }

  #guide-list-container .list-item .archetype.badge-2 {
    display: block;
    top: -75px;
    left: 50px;
  }

  #guide-list-container .list-item .archetype.badge-3 {
    display: block;
    top: -60px;
    left: 100px;
  }
}