/* style.css */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
    url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2'),
    url('../fonts/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

/* Logo */
.logo {
  text-align: center;
  margin: 30px 0 20px;
}

.logo img {
  width: 100%;
  max-width: 358px;
  height: 56px;
}

/* Login Card */
.login-wrapper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 1px;
  overflow: hidden;
  padding: 32px 16px 24px 16px;
  background: #FFFFFF;
}

.login-card {
  background: #F3F4F6;
  color: #000;
  padding: 20px;
  padding-top: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 12px 12px;
  box-shadow: none;
}

.login-card h2 {
  margin-bottom: 40px;
  font-size: 24px;
}

.login-card label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.login-card input {
  width: 100%;
  height: 54px;
  padding: 10px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid #E1E4F2;
  font-size: 16px;
}

.login-card button {
  width: 50%;
  padding: 16px;
  background: #004ADD;
  border: none;
  border-radius: 24px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  font-weight: medium;
}

.login-card button:hover {
  background: #276ffd;
}

.card-image-container {
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
}

.register-text {
  margin-top: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
}

.register-text a {
  color: #004ADD;
  text-decoration: none;
}

/* Footer */
footer {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 500;
  padding: 32px 16px;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  background-color: #231F20;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

/* Copyright text floats left */
footer p:first-child {
  text-align: left;
  display: block;
}

footer p {
  line-height: 1.4;
}

/* Powered by text floats right */
footer p:last-child {
  text-align: left;
  display: block;
}

/* --- Global Styles & Layout --- */
:root {
  --primary-green: #00c4b3;
  --dark-green-bg: #112128;
  --text-color: #ffffff;
  --card-hover-bg: #2b4550;
  --card-gradient-start: #0AA6A1;
  --card-gradient-end: #14EDE6;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* --- Header Styling: Solid Background --- */
header {
  width: 100%;
  height: 72px;
  background-color: #231F20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  color: white;
  position: relative;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url('/media/Mask\ group.png');
  background-color: var(--primary-green);
  background-size: cover;
  background-position: center;
  border: 2px solid white;
  margin-right: 10px;
}

.user-id {
  display: flex;
  flex-direction: row;
  font-size: 16px;
  line-height: 1;
  gap: 6px;
}

.user-label {
  font-weight: 500;
  color: #ffffff;
}

.user-value {
  font-weight: medium;
  font-size: 16px;
}

.icon-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 5px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.icon-button:hover {
  opacity: 1;
}

/* --- Main Content & Grid --- */
.main-content {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  padding: 24px 16px 24px 16px;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -2;
}

.content-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #000000;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-bottom: 20px;
}

.tile-card {
  border: none;
  cursor: pointer;
  text-align: left;
  background: #F3F4F6;
  border-radius: 8px;
  padding: 12px;
  height: 115px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: background-color 0.2s, transform 0.1s;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.tile-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #004ADD;
}

.card-description {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #000000;
  font-weight: 500;
  margin: 0;
}

.menu-content {
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #052423;
  color: white;
  display: flex;
  justify-content: center;
  padding: 24px 16px 0px 16px;
}

.menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.menu-item a {
  width: 100%;
  max-width: 358px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 1;
  transition: background-color 0.2s;
  list-style: none;
  color: #000000;
  text-decoration: none;
}

.menu-item a:hover {
  color: #004ADD;
}

.menu-icon {
  width: 20px;
  height: 20px;
}

.logout-button {
  background: #F3F4F6;
  color: black;
  border: none;
  padding: 18px 24px 18px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.logout-button:hover {
  background: #004ADD;
}

.spacer {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #707070;
  padding-top: 12px;
  gap: 4px;
}

.logo-menu {
  text-align: center;
  gap: 12px;
}

.logo-menu img {
  width: 100%;
  max-width: 358px;
  height: auto;
}

/* --- Responsive Media Queries --- */
@media (min-width: 768px) {
  header {
    padding: 0 32px;
  }

  .content-wrapper {
    padding: 0 30px;
  }
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-content {
    max-width: 600px;
  }
}

.QR-profile-container {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  padding: 24px 16px 24px 16px;
  gap: 24px;
}

.QR-profile-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -2;
}

.QR-profile-content {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  z-index: 1;
}

@media (min-width: 700px) {
  .QR-profile-content {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 700px) {
  .QR-profile-container {
    margin-left: auto;
    margin-right: auto;
  }
}

.ticket-image-container {
  width: 342px;
  height: 500px;
  background-image: url('/media/Subtract.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}

.ticket-top {
  position: relative;
  padding-bottom: 50px;
}

.ticket-top,
.ticket-bottom {
  padding: 34px 50px;
  text-align: center;
}

.ticket-bottom {
  padding-top: 45px;
}

.user-name {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: calc();
  -webkit-line-clamp: 1;
  white-space: normal;
}

.user-company {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.table-number-qr,
.seat-number {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
  /* width: 29px;
  height: 29px; */
}

.hide {
  display: none !important;
}

.whitebg {
  background-image: url('/media/white.jpg');
  /* background: #FFFFFF; */
  padding: 15px;
  border-radius: 20px;
}

#qrCode {
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: 100%;
}

.fakeQr {
  position: relative;
  text-align: center;
}

.show {
  display: block;
}

.centeredText {
  color: #000000;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.QR-profile-title {
  font-size: 24px;
  font-style: bold;
  margin-bottom: 24px;
  color: #000000;
}

.QR-profile-content img {
  opacity: 1;
  border-radius: 2.31px;
  object-fit: contain;
  max-width: 100%;
  width: 358px;
  display: block;
}

.check-in-status.initial-status,
.redeem-status.initial-status {
  /* Use a light gray color */
  color: #F4443E;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}

/* Style applied after scanning (Checked-In) */
.check-in-status.checked,
.redeem-status.checked {
  /* Use a black color */
  color: #43B332;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}

.agenda-container {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  padding: 24px 16px 24px 16px;
  gap: 24px;
}

.agenda-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -2;
}

.agenda-title {
  font-size: 24px;
  font-style: bold;
  margin-bottom: 24px;
  color: #000000;
}

.agenda-content {
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  gap: 24px;
  background-color: #F3F4F6;
  padding: 24px;
  border-radius: 16px;
  border: #E1E4F2 solid 1px;
  color: #000000;
}

@media (min-width: 600px) {
  .agenda-content {
    max-width: 480px;
  }
}

.agenda-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.agenda-item:last-child {
  margin-bottom: 0;
}

.agenda-time {
  font-size: 16px;
  font-weight: 500;
  font-style: medium;
  color: #000000;
  width: 88px;
  line-height: 1.4;
  flex-shrink: 0;
}

.agenda-desc {
  font-size: 16px;
  font-weight: 500;
  font-style: medium;
  color: #000000;
  line-height: 1.4;
  flex-grow: 1;
  width: 214px;
}

.table-container {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  gap: 24px;
  padding: 24px 16px 24px 16px;
}

.table-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -2;
}

.table-title {
  font-size: 24px;
  font-style: bold;
  margin-bottom: 24px;
  color: #000000;
}

.table-number-container {
  max-width: 358px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px 16px 24px 16px;
  background: #F3F4F6;
  border-radius: 8px;
  box-sizing: border-box;
  align-items: center;
  /* gap: 115px; */
}

.table-desc {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 100%;
  width: 159px;
}

.table-number {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  /* width: 29px;
  height: 29px; */
}

.table-content {
  max-width: 358px;
  width: 100%;
  padding: 16px;
  margin-top: 24px;
  position: relative;
  gap: 24px;
}

.table-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (max-width: 700px) {

  .agenda-container::before,
  .table-container::before,
  .QR-profile-container::before,
  .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -2;
  }
}

/* ios system */
@supports (-webkit-touch-callout: none) {

  .feedback-container::before,
  .agenda-container::before,
  .table-container::before,
  .lucky-draw-container::before,
  .QR-profile-container::before,
  .main-content::before {
    background-attachment: scroll;
  }
}

/* --- Sticky Sidebar Styles --- */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  color: black;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transform: translateX(0);
  transition: transform 0.3s ease;
  border-right: 1px solid #707070;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 72px 16px 24px 16px;
  gap: 24px;
}

.sidebar .logo-menu {
  text-align: center;
  padding-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid #707070;
  height: 92px;
  margin-bottom: 16px;
}

.sidebar .logo-menu img {
  max-width: 100px;
  height: auto;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  padding: 0;
  margin: 0;
}

.sidebar-menu .menu-item {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #000000;
  text-decoration: none;
  list-style: none;
}

/* .sidebar-menu .menu-item:hover {
  background: rgba(0, 188, 182, 0.3);
  color: #00BCB6;
} */

.sidebar-menu .menu-item.active a {
  background: #004ADD;
  color: #FFFFFF;
}

.sidebar-menu .menu-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar-menu .menu-item span {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.sidebar .logout-button {
  background: #F3F4F6;
  color: black;
  border: none;
  padding: 18px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: auto;
  transition: background-color 0.2s;
}

.sidebar .logout-button:hover {
  background: #004ADD;
}

.main-content-with-sidebar {
  margin-left: 280px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #052423;
}

.main-content-with-sidebar header {
  width: calc(100% - 280px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  background-color: #052423;
}

#content-area {
  flex-grow: 1;
  margin-top: 116px;
  padding: 24px 16px;
}

@media (max-width: 1000px) {
  .sidebar {
    transform: translateX(-100%);
    width: 300px;
    transition: transform 0.3s ease;
  }

  .sidebar.sidebar-open {
    transform: translateX(0);
  }

  .main-content-with-sidebar {
    margin-left: 0;
    width: 100%;
  }

  .main-content-with-sidebar header {
    width: 100%;
  }

  .main-content-with-sidebar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .sidebar-open+.main-content-with-sidebar::after {
    opacity: 1;
    visibility: visible;
  }
}

#menuToggle {
  display: block;
}

@media (min-width: 1000px) {
  #menuToggle {
    display: none;
  }

}

.app-container {
  margin-left: 280px;
  width: calc(100% - 280px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1000px) {

  header {
    border-bottom: 1px solid #707070;
    padding: 0 32px;
  }

  footer {
    border-top: 1px solid #707070;
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }

  footer p {
    text-align: left;
    margin: 0;
    float: none;
    padding: 0 32px;
  }

  footer p:last-child {
    text-align: right;
    margin: 0;
    float: none;
  }

  .main-content {
    padding: 24px 32px;
    min-height: calc(100vh - 116px - 120px);
  }

  .content-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .tile-card {
    height: 140px;
    padding: 20px;
  }
}

@media (max-width: 1000px) {
  .app-container {
    margin-left: 0;
    width: 100%;
  }
}

@media (min-width: 1000px) {
  header {
    border-bottom: 1px solid #707070;
  }

  footer {
    border-top: 1px solid #707070;
    padding: 32px;
  }
}

.best-dressed-container {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  padding: 24px 16px 24px 16px;
  gap: 24px;
}

.best-dressed-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -2;
}

.best-dressed-title {
  font-size: 24px;
  font-style: bold;
  margin-bottom: 24px;
  color: #000000;
}

.best-dressed-desc {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.best-dressed-content {
  max-width: 100%;
  width: 100%;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  gap: 24px;
  background-color: #F3F4F6;
  padding: 24px;
  border-radius: 16px;
  border: #E1E4F2 solid 1px;
  color: #000000;
  margin-top: 24px;
}

@media (min-width: 600px) {
  .best-dressed-content {
    max-width: 50%;
  }

}

.section-header {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #000000;
}

.section-choices {
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 16px;
  color: #000000;
}

/* Ranking Dropzone Area */
.ranking-dropzone {
  min-height: 52px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

/* Empty State (The white box with text) */
.ranking-dropzone.empty {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.ranking-dropzone.drag-over {
  background-color: #f3f4f6;
  border: 2px dashed #9ca3af;
}

.placeholder-text {
  color: #9ca3af;
  font-size: 14px;
  pointer-events: none;
}

/* Ranked Items List */
.ranking-list {
  display: flex;
  flex-direction: column;
}

.ranked-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #E1E4F2;
}

.ranked-item.over-top {
  border-top: 2px solid #0056b3;
}

.ranked-item.over-bottom {
  border-bottom: 2px solid #0056b3;
}

.ranked-item:last-child {
  border-bottom: none;
}

.rank-info {
  display: flex;
  align-items: center;
  flex: 1;
}

.rank-num {
  font-weight: 500;
  font-size: 14px;
  margin-right: 16px;
}

.rank-name {
  font-weight: 500;
  color: #000;
  font-size: 14px;
  line-height: 100%;
}

/* Arrow Controls */
.rank-actions {
  display: flex;
  gap: 12px;
}

.arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.arrow-btn:hover {
  color: #000;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.arrow-btn.disabled {
  color: #ccc;
  pointer-events: none;
}

/* Choices List */
.choices-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice-card {
  background-color: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 14px;
  cursor: grab;
  transition: transform 0.1s, box-shadow 0.1s;
}

.choice-card:hover {
  border-color: #e5e7eb;
}

.choice-card:active {
  cursor: grabbing;
  transform: scale(0.98);
}

.submit-button {
  width: 100%;
  max-width: 358px;
  height: 48px;
  background: #004ADD;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 24px;
  transition: background-color 0.2s;
}

.submit-button.back-small {
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 8px;
  max-width: 200px;
  min-width: 160px;
  cursor: pointer;
}

.back-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
    width: fit-content;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.back-nav:hover {
    opacity: 0.7;
}

.back-nav svg {
    display: block;
}

.dragging-clone {
  position: fixed;
  pointer-events: none;
  /* Crucial: allows checking what is underneath the finger */
  z-index: 1000;
  opacity: 0.9;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 80%;
  /* Adjust width for mobile look */
  max-width: 300px;
  background: white;
  border-radius: 12px;
  padding: 16px;
  list-style: none;
}

.tile-card.disabled {
  background-color: #f3f4f6;
  border-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
  box-shadow: none;
}

/* Add to style.css */
.thank-you-message {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.5s ease-in;
}

.thank-you-message h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.thank-you-message p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 10px;
}

/* Simple animation keyframe */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}