:root {
  --white900: #fff;
  --blueGray100: #edf0f2;
  --gray50: #f8f9fa;
  --green400: #8a0;
  --blue400: #2096bc;
  --blue800: #083c79;
  --gray100: lightgray;
  --blue60: #f0f6ff;
  --blue70: #dfebfb;
  --blue100: #768f97;
  --green100: #747964;
  --blue50: #f0fffc;
  --blue80: #dffbf7;
  --aqua100: #a0f8e9;
  --aqua400: #14b89c;
  --aqua450: #4dbeba;
  --aqua500: #009393;
  --aqua800: #235d50;
  --aqua900: #093e35;
  --purple500: purple;
  --yellow500: #fc0;
  --s: 30px;
  --c1: #f0fffc;
  --c2: #dffbf7;
  --red500: #6d0000;
  --green200Tr: #d9ffdce6;
  --red200tr: #ffcfcce6;
  --orange200tr: #ffe4cce6;
  --blue200Tr: #abdcffe6;
  --white700tr: #eee9;
  --_s: 37.5% 12.5% at 62.5%;
  --_g: 34% 99%, #0000 101%;
  --g1: radial-gradient(var(--_s) 100%, #0000 32%, var(--c1) var(--_g));
  --g2: radial-gradient(var(--_s) 0, #0000 32%, var(--c1) var(--_g));
  --g3: radial-gradient(var(--_s) 100%, #0000 32%, var(--c2) var(--_g));
  --g4: radial-gradient(var(--_s) 0, #0000 32%, var(--c2) var(--_g));
}

body {
  background: var(--white900);
  color: #000000de;
  margin: 0;
  padding: 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.blue-50-bkg {
  background-color: var(--blue50);
  color: var(--aqua900);
  border-radius: 40px;
  padding: 20px;
}

.blue-50 {
  background-color: var(--blue50);
}

.blue-80-bkg {
  background-color: var(--blue80);
  color: var(--aqua900);
  border-radius: 40px;
  padding: 20px;
}

.bkg-aqua-80 {
  background-color: var(--blue80);
}

.bkg-aqua-900 {
  background-color: var(--aqua900);
  color: var(--white900);
}

.bkg-gray-50 {
  background-color: var(--gray50);
}

.aqua-100-bkg {
  background-color: var(--aqua100);
  border-radius: 40px;
  padding: 8px;
}

.no-decor {
  font-size: inherit;
  text-decoration: none;
}

.gray-100 {
  color: var(--gray100);
}

.txt-center {
  text-align: center;
}

.txt-xs {
  font-size: .25em;
}

.font-small {
  font-size: .5em;
}

.h-flex {
  flex-direction: row;
  display: flex;
}

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

.fill {
  flex: 1;
}

.ov-none {
  overflow: hidden;
}

.ov-auto {
  overflow: auto;
}

.bold {
  font-weight: bold;
}

header {
  background-color: var(--white900);
  z-index: 11;
  padding: 8px;
}

.header-menu a, .dropdown {
  color: var(--aqua500);
  border-radius: 20px;
  margin-right: 10px;
  padding: 8px;
  text-decoration: none;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-50 {
  margin-bottom: 50px;
}

.header-menu a.selected, .dropdown:hover {
  background-color: var(--blue80);
  color: var(--aqua900);
  border-radius: 20px;
  padding: 8px;
  text-decoration: none;
}

.header-menu, .v-center {
  align-items: center;
}

a:hover {
  text-decoration: solid var(--blueGray100);
  cursor: pointer;
  background-color: var(--blueGray100);
}

.align-end {
  justify-content: end;
}

.self-end {
  align-self: end;
}

.margin-10 {
  margin: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.btn-blue {
  background-color: var(--aqua400);
  font-size: inherit;
  border: none;
  border-radius: 20px;
  padding: 12px;
  text-decoration: none;
  color: var(--white900) !important;
}

.btn-gray {
  background-color: var(--gray100);
  font-size: inherit;
  border: none;
  border-radius: 20px;
  padding: 12px;
  text-decoration: none;
  color: var(--white900) !important;
}

.btn-green {
  background-color: var(--aqua800);
  font-size: inherit;
  border: none;
  border-radius: 20px;
  padding: 12px;
  text-decoration: none;
  color: var(--white900) !important;
}

.btn-blue:hover {
  background-color: var(--blueGray100);
  color: var(--blue400) !important;
}

.btn-u-blue {
  background-color: var(--white900);
  border: 1px solid var(--blue400);
  color: var(--blue400);
  font-size: inherit;
  border-radius: 20px;
  padding: 12px;
  text-decoration: none;
}

.btn-u-purple {
  background-color: var(--white900);
  border: 1px solid var(--purple500);
  color: var(--purple500);
  font-size: inherit;
  border-radius: 20px;
  padding: 12px;
  text-decoration: none;
}

.btn-u-yellow {
  background-color: var(--white900);
  border: 1px solid var(--yellow500);
  color: var(--yellow500);
  font-size: inherit;
  border-radius: 20px;
  padding: 12px;
  text-decoration: none;
}

.btn-u-red {
  background-color: var(--white900);
  border: 1px solid var(--red500);
  color: var(--red500);
  font-size: inherit;
  border-radius: 20px;
  padding: 12px;
  text-decoration: none;
}

.btn-u-green {
  background-color: var(--white900);
  border: 1px solid var(--aqua800);
  color: var(--aqua900);
  font-size: inherit;
  border-radius: 20px;
  padding: 12px;
}

.btn-u-blue:hover {
  background-color: var(--blueGray100);
  border: none;
  color: var(--blue400) !important;
}

.light-text {
  color: #0009;
}

button:hover {
  cursor: pointer;
}

.pos-rel {
  position: relative;
}

.stick-top {
  position: sticky;
  top: 0;
}

.self-center {
  align-self: center;
}

#p1mm {
  width: 50%;
  padding: 20px;
}

.margin-right-10 {
  margin-right: 10px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  background-color: #f9f9f9;
  min-width: 130px;
  padding: 12px 16px;
  display: none;
  position: absolute;
  box-shadow: 0 8px 16px #0003;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.blur-bkg {
  backdrop-filter: blur(20px);
  background-color: color(srgb .992157 .984314 .956863 / .5);
  border-radius: 20px;
}

.h-center {
  justify-content: center;
}

.v-self-center {
  align-self: center;
}

.h-self-center {
  justify-self: center;
}

.sm-font {
  font-size: .8em;
}

.b-center {
  margin: auto;
}

.dropdown-content {
  right: 0;
}

footer {
  font-size: initial;
  background: #f0f8ff;
  background-image: linear-gradient(to right, var(--blue100), var(--green100));
  color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 20px;
}

.blue800 {
  color: var(--blue800);
}

#aToggle {
  margin-left: 10px;
}

.pad-10 {
  padding: 10px;
}

.bkg-100-blue {
  background-color: var(--blue60);
  border-radius: 20px 20px 0 0;
  padding: 20px;
}

.img-center-responsive {
  border-radius: 20px 20px 0 0;
  width: 30%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.img-container {
  border-radius: 50px;
  justify-content: center;
  width: 100%;
  height: 600px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.img-container:before {
  content: "";
  filter: blur(10px);
  z-index: -1;
  background-color: #ffffff4d;
  background-image: url("kids.cc416b31.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.img-container img {
  object-fit: cover;
  max-width: 100%;
  height: 100%;
}

.stories img {
  object-fit: cover;
  border-radius: 80px;
  height: 600px;
}

.stories h1 {
  color: var(--blue800) !important;
}

.stories h2 {
  color: var(--blue400);
}

.mt-50 {
  margin-top: 50px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.green900 {
  color: #065a29;
}

.h-80 {
  height: 80%;
}

.h-90 {
  height: 90%;
}

.btn-close-right {
  background-color: var(--aqua500);
  color: var(--white900);
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 20px;
}

.overlay-circle {
  align-self: center;
  width: 50%;
  height: 68%;
  position: absolute;
  top: 0;
  bottom: 0;
}

.circle-container {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
}

.img-wrapper {
  opacity: 0;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  animation: 2s forwards fadesIn;
  position: absolute;
  overflow: hidden;
}

.img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@keyframes fadesIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.img-wrapper img {
  animation: 5s ease-in-out infinite zoom;
}

.img-wrapper:first-child {
  animation-delay: .5s;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img-wrapper:nth-child(2) {
  animation-delay: 1.5s;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.img-wrapper:nth-child(3) {
  animation-delay: 2.5s;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.img-wrapper:nth-child(4) {
  animation-delay: 3.5s;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.img-wrapper:nth-child(5) {
  animation-delay: 4s;
  top: 7%;
  left: 18%;
  transform: translate(-50%, -50%);
}

.img-wrapper:nth-child(6) {
  animation-delay: 1s;
  top: 7%;
  left: 82%;
  transform: translate(-50%, -50%);
}

.img-wrapper:nth-child(7) {
  animation-delay: 2s;
  top: 90%;
  left: 82%;
  transform: translate(-50%, -50%);
}

.img-wrapper:nth-child(8) {
  animation-delay: 3s;
  top: 90%;
  left: 18%;
  transform: translate(-50%, -50%);
}

.waves {
  background: var(--g1), var(--g2) 0 calc(3 * var(--s)), var(--g3) var(--s) calc(3 * var(--s)), var(--g4) var(--s) calc(6 * var(--s)), var(--g1) calc(2 * var(--s)) calc(6 * var(--s)), var(--g2) calc(2 * var(--s)) calc(9 * var(--s)), var(--g3) calc(3 * var(--s)) calc(9 * var(--s)), var(--g4) calc(3 * var(--s)) 0, repeating-linear-gradient(var(--c1) 0 25%, var(--c2) 0 50%);
  background-size: calc(4 * var(--s)) calc(12 * var(--s));
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

@media (width >= 600px) {
  body, #message {
    font-size: clamp(1rem, 2vw + 1rem, 2rem);
  }

  .collapse {
    display: flex !important;
  }

  #aToggle {
    display: none;
  }
}

.white-txt {
  color: #fff;
}

.green-txt {
  color: var(--aqua900);
}

.m8 {
  margin: 8px;
}

.blue900 {
  color: #009393;
}

.max-h-200 {
  max-height: 200px;
}

.max-w-380 {
  max-width: 380px;
}

.res-max-w-380 {
  max-width: 575px;
}

.popOverlay {
  z-index: 1000;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.popOverlay .content {
  background-color: var(--white900);
  border-radius: 10px;
  max-width: 80%;
  max-height: 90%;
  padding: 20px;
  font-size: 1.5rem;
  position: relative;
  overflow-y: auto;
}

.popOverlay .content-top {
  background-color: var(--white900);
  border-radius: 10px;
  align-self: flex-start;
  max-width: 80%;
  max-height: 90%;
  padding: 20px;
  font-size: 1.5rem;
  position: relative;
  overflow-y: auto;
}

iframe {
  border: none;
}

iframe .popOverlay {
  align-items: flex-start !important;
}

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

#popUpOverlay {
  z-index: 1000;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

#popUpOverlay .content {
  background-color: var(--white900);
  border-radius: 10px;
  max-width: 80%;
  max-height: 90%;
  padding: 20px;
  font-size: 1.5rem;
  position: relative;
  overflow-y: auto;
}

.btn-close-popup {
  background-color: var(--aqua500);
  color: var(--white900);
  cursor: pointer;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 5px 10px;
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 20px;
}

.pointer {
  cursor: pointer;
}

.mr-10 {
  margin-right: 10px;
}

.single-line {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}

#popUpOverlay .dots {
  display: none;
}

#popUpContent {
  line-height: 2;
}

#popUpContent #dots {
  display: none;
}

.creds a:link, .creds a:visited, .creds a:active {
  color: inherit;
  text-decoration: underline solid var(--blue400) 3px;
}

.pos-abs {
  justify-content: center;
  align-items: top;
  z-index: 10;
  background-color: #161616b3;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

#form img {
  background-color: var(--white900);
  object-fit: contain;
  object-position: top;
  border-radius: 20px;
  margin: 10px;
  padding: 20px;
}

.user-img-top {
  object-fit: contain;
  object-position: top;
  background-color: #f1f3f4;
  border-radius: 20px;
  width: auto;
  min-width: 100px;
  height: 100px;
  padding: 8px;
}

.font-huge {
  font-size: 10rem;
}

.d-empty {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
}

.file-input-hidden {
  opacity: 0;
  z-index: -1;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden;
}

.custom-file-label {
  color: #fff;
  cursor: pointer;
  background-color: #28a745;
  border-radius: 5px;
  padding: 10px 20px;
  transition: background-color .3s;
  display: inline-block;
}

.custom-file-label:hover {
  background-color: #218838;
}

.file-name-display {
  color: #555;
  margin-left: 10px;
  font-style: italic;
}

.user-img {
  background-color: var(--green30);
}

tbody tr:nth-child(odd) {
  background-color: #fff;
}

tbody tr:nth-child(2n) {
  background-color: var(--green30);
}

td, th, .input-cast {
  padding: 10px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], input[type="tel"], .input-cast, textarea, select {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding: 8px;
  font-size: 16px;
}

input:focus, textarea:focus {
  border-color: #008751;
  outline: none;
  box-shadow: 0 0 5px #0087514d;
}

.sp-error {
  color: red;
  font-size: .8em;
  display: none;
}

textarea:invalid, input:invalid {
  border-color: red;
}

input:invalid ~ .sp-error, textarea:invalid ~ .sp-error {
  display: block;
}

td:first-child {
  white-space: nowrap;
  width: 1%;
  padding-right: 15px;
}

label {
  color: var(--aqua900);
  margin-bottom: 8px;
  font-weight: bold;
}

.role-option input[type="radio"] {
  display: none;
}

.role-option label {
  border: 1px solid var(--blue100);
  cursor: pointer;
  border-radius: 20px;
  padding: 10px;
  display: block;
}

.role-option .role-info {
  color: var(--aqua800);
  margin-top: 8px;
  font-size: clamp(1rem, 1vw + 1rem, 1.5rem);
  font-weight: normal;
  display: block;
}

.role-option label img {
  width: 50px;
  height: auto;
  margin: 0 auto 5px;
  display: block;
}

.role-option input[type="radio"]:checked + label {
  background-color: var(--blue50);
  border-color: var(--aqua900);
}

.w-50 {
  width: 50%;
}

.mt-48 {
  margin-top: 48px;
}

.sp-show-pass {
  font-size: small;
}

.btn-no-deco-green {
  text-align: center;
  background-color: #0000;
  border: none;
  border-radius: 20px;
  padding: 12px;
  font-weight: bold;
  text-decoration: none;
  color: var(--aqua500) !important;
}

.btn-no-deco-red {
  text-align: center;
  background-color: #0000;
  border: none;
  border-radius: 20px;
  padding: 12px;
  font-weight: bold;
  text-decoration: none;
  color: var(--red500) !important;
}

.btn-u-c-white {
  font-size: inherit;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px;
  color: #000 !important;
}

.btn-no-deco-blue {
  text-align: center;
  background-color: #0000;
  border: none;
  border-radius: 20px;
  padding: 12px;
  font-weight: bold;
  text-decoration: none;
  color: var(--blue400) !important;
}

.btn-no-deco-gray {
  background-color: var(--gray100);
  text-align: center;
  border: none;
  border-radius: 20px;
  padding: 12px;
  font-weight: bold;
  text-decoration: none;
  color: var(--black700) !important;
}

.h-even-space {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

.gap-5 {
  gap: 5px;
}

.h-even-space > * {
  flex: 1 0 150px;
}

.btn-icon {
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  display: flex;
}

button:hover {
  background-color: var(--gray100);
}

.align-start {
  align-self: start;
}

.w-auto {
  width: auto;
}

.txt-start {
  text-align: left;
}

.res-h-flex, .res-h-flex-reverse {
  flex-direction: row;
  gap: 20px;
  display: flex;
}

.res-txt-right {
  text-align: right;
}

.h-scroll, .res-h-scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--blue400) var(--blueGray100);
  overflow-x: auto;
}

.h-scroll div, .res-h-scroll div {
  flex-direction: column;
  margin-right: 20px;
  display: flex;
}

.h-scroll img, .res-h-scroll img {
  object-fit: cover;
  width: 500px;
  height: 300px;
}

.btn-scroll.prev {
  background-color: var(--aqua400);
  color: var(--white900);
  cursor: pointer;
  z-index: 1;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 48px;
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
}

.btn-scroll.next {
  background-color: var(--aqua400);
  color: var(--white900);
  cursor: pointer;
  z-index: 1;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 48px;
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
}

.img-round {
  background-color: var(--white900);
  object-fit: contain;
  object-position: top;
  border-radius: 20px;
  margin: 10px;
  padding: 20px;
}

.img-circle-gray {
  border: 1px solid var(--green100);
  object-fit: contain;
  object-position: top;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  padding: 10px;
}

.round-white {
  background-color: var(--white900);
  border-radius: 20px;
}

.t-center {
  text-align: center;
}

#loginRequest {
  z-index: 10;
  background-color: #161616b3;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

#loginRequest .content {
  background-color: var(--white900);
  text-align: center;
  border-radius: 10px;
  height: fit-content;
  margin-top: 60px;
  padding: 20px;
}

#dLogin, #inLogin {
  display: none;
}

#toast {
  color: var(--black700);
  visibility: hidden;
  z-index: 2000;
  border-radius: 8px;
  width: fit-content;
  min-width: 150px;
  margin: auto;
  padding: 8px;
  font-weight: bold;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

#toast.success {
  background-color: var(--green200Tr);
}

#toast.warning {
  background-color: var(--orange200tr);
}

#toast.error {
  background-color: var(--red200tr);
}

#toast.info {
  background-color: var(--blue200Tr);
}

#toast.show {
  visibility: visible;
  animation: .5s fadein, .5s 2.5s fadeout;
}

.content-wrapper {
  min-height: 100%;
  position: relative;
}

.cursive {
  font-family: Brush Script MT, Lucida Handwriting, Apple Chancery, cursive;
}

.input-cast {
  min-height: 36px;
}

.btn-u-white {
  background-color: var(--white900);
  border: 1px solid var(--green100);
  border-radius: 10px;
  padding: 10px;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.blurry-text {
  text-shadow: 0 0 5px #00000080;
  color: #0000 !important;
}

.grid-2-2-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: grid;
}

.grid-item {
  background: var(--blue50);
  text-align: center;
  border-radius: 20px;
  padding: 20px;
}

.skeleton-parent {
  background-color: #fff;
  width: 100%;
  padding: 10px;
}

.skeleton {
  background-color: var(--gray100);
  border-radius: 20px;
  width: 100%;
  height: 20px;
  margin-bottom: 10px;
  padding: 15px 0;
  animation: 1.5s infinite pulse;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

.skeleton.skeleton-avatar {
  border-radius: 20%;
  width: 100px;
  height: 100px;
  padding: 20px;
}

.skeleton-label {
  background-color: var(--gray100);
  border-radius: 20px;
  width: 60%;
  height: 20px;
}

.skeleton-input {
  background-color: var(--gray100);
  border-radius: 20px;
  width: 100%;
  height: 20px;
}

.skeleton-row {
  gap: 10px;
  padding: 15px 0;
  display: flex;
}

.w-80 {
  width: 80%;
}

.bkg-black {
  color: var(--white900);
  background-color: #000 !important;
}

.unset-td-space td:first-child {
  white-space: unset !important;
  width: unset !important;
}

@keyframes fadein {
  from {
    opacity: 0;
    bottom: 0;
  }

  to {
    opacity: 1;
    bottom: 30px;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
    bottom: 30px;
  }

  to {
    opacity: 0;
    bottom: 0;
  }
}

@media (width >= 1824px) {
  .w-80 {
    width: 50%;
  }

  .mw-80 {
    align-self: center;
    width: -webkit-fill-available;
    max-width: 80%;
  }
}

@media (width <= 480px) {
  .vertical-table thead {
    display: none;
  }

  tr, th, td:not(.keep-cell) {
    display: block;
  }

  .keep tr, .keep th, .keep td {
    display: revert;
  }

  .user-img .upload-container, .res-h-flex {
    flex-direction: column;
    display: flex;
  }

  .res-h-flex.h-even-space > * {
    flex: unset;
  }

  .res-h-flex-reverse {
    flex-direction: column-reverse;
    display: flex;
  }

  .res-hide {
    display: none;
  }

  .res-h-scroll img, .res-h-scroll img {
    align-self: center;
    width: 400px;
  }

  .res-h-scroll div {
    margin-right: 0;
  }

  .res-txt-right {
    text-align: unset;
  }

  .res-max-w-380 {
    max-width: 380px;
  }
}

@media (width <= 600px) {
  body, #message {
    box-shadow: none;
    background: #fff;
    margin-top: 0;
  }

  #aToggle {
    display: block;
  }

  .collapse {
    background: azure;
    border-radius: 10px;
    padding: 10px;
    display: none;
    position: absolute;
    top: 70px;
    box-shadow: 0 8px 16px #0003;
    flex-direction: column !important;
  }

  .img-container {
    width: 100%;
    height: 300px;
  }

  .stories img {
    border-radius: 40px;
    height: 200px;
  }

  .img-wrapper {
    width: 64px;
    height: 64px;
  }

  .w-80 {
    width: -webkit-fill-available;
  }

  .res-w-90 {
    width: 90%;
  }

  .img-center-responsive {
    border-radius: 0;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .font-huge {
    font-size: 5rem;
  }

  .res-max-w-80-center {
    width: unset;
    align-items: center;
  }
}
/*# sourceMappingURL=public.5d0544c2.css.map */
