#mobile-modal-menu .btn-close {
  top: 10px;
  position: relative;
}

.mobile-in {
  color: #4dabf7;
}

.mobile-envelope {
  color: #ffa94d;
}

.mobile-phone {
  color: #63e6be;
}

.menu-li {
  font-size: 34px;
  font-family: "Bai Jamjuree", sans-serif;
  /*border-bottom: 1px solid var(--bs-border-color);*/
  display: flex;
}

.menu-icon {
  display: none;
  color: #ccc;
  opacity: 0.5;
  margin-right: 10px !important;
}

.menu-link {
  text-decoration: none !important;
  color: var(--bs-body-color);
  width: 100%;
  display: flex;
}

.menu-description {
  font-size: 14px;
  opacity: 0.8;
}

.mobile-time {
  font-size: 48px;
  font-family: "Bai Jamjuree", sans-serif;
}

.mobile-name {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.mobile-lname {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 1.2;
}

.mobile-email {
  font-family: "Bai Jamjuree", sans-serif;
  text-decoration: none;
  color: #ccc;
}

.avt-mobile {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.mobile-contact-social {
  font-size: 24px;
  /*color: #000;*/
  margin: 0 5px;
  border: 1px solid var(--bs-border-color);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background-color: var(--bs-body-bg);
}

.modal-body {
  position: relative;
  background-color: var(--bs-body-bg);
  overflow: hidden;
}

.modal-body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'> <circle cx='100' cy='200' r='40' fill='rgba(0,0,0,0.06)' /> <circle cx='700' cy='500' r='25' fill='rgba(0,0,0,0.04)' /> <rect x='400' y='150' width='60' height='60' fill='rgba(0,0,0,0.05)' transform='rotate(15 430 180)' /> <polygon points='200,600 240,660 160,660' fill='rgba(0,0,0,0.05)' /> <polygon points='600,100 650,170 550,170' fill='rgba(0,0,0,0.04)' /> <circle cx='300' cy='700' r='35' fill='rgba(0,0,0,0.05)' /> <rect x='100' y='50' width='50' height='50' fill='rgba(0,0,0,0.03)' transform='rotate(30 125 75)' /> </svg>");
  background-size: cover;
  opacity: 0.8;
  animation: floatShapes 40s linear infinite;
}

[data-bs-theme="dark"] .modal-body::before {
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'> <circle cx='100' cy='200' r='40' fill='rgba(255,255,255,0.12)' /> <circle cx='700' cy='500' r='25' fill='rgba(255,255,255,0.08)' /> <rect x='400' y='150' width='60' height='60' fill='rgba(255,255,255,0.10)' transform='rotate(15 430 180)' /> <polygon points='200,600 240,660 160,660' fill='rgba(255,255,255,0.1)' /> <polygon points='600,100 650,170 550,170' fill='rgba(255,255,255,0.08)' /> <circle cx='300' cy='700' r='35' fill='rgba(255,255,255,0.09)' /> <rect x='100' y='50' width='50' height='50' fill='rgba(255,255,255,0.06)' transform='rotate(30 125 75)' /> </svg>");
  opacity: 0.6;
  animation: floatShapesDark 50s linear infinite;
}

@keyframes floatShapes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 800px 800px;
  }
}

@keyframes floatShapesDark {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -800px -800px;
  }
}

.modal-body > * {
  position: relative;
  z-index: 1;
}

