:root {
    --black: #030405;
    --bg: #030405;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-strong: rgba(255, 255, 255, 0.1);
    --text: #f4f1ea;
    --muted: rgba(244, 241, 234, 0.58);
    --line: rgba(255, 255, 255, 0.14);
    --cyan: #9fe7df;
    --steel: #a8b2b8;
    --signal: #ff4f4f;
    --success: #4ade80;
    --primary: #3b82f6;
    
    --slow: 900ms;
    --medium: 520ms;
    --fast: 220ms;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--black);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Background Effects */
.ambient-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(159, 231, 223, 0.05);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
}

/* Animations */
@keyframes slideDown {
    to { opacity: 1; transform: translateY(0); }
}

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

/* Global Navigation Styles */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(12, 14, 16, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    animation: slideDown var(--slow) var(--ease) forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    height: 24px;
    filter: brightness(0) invert(1) opacity(0.9);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--fast) var(--ease);
}

.nav-link:hover {
    color: var(--text);
}

/* Buttons */
.btn-outline {
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 4px;
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--fast) var(--ease);
    background: transparent;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--panel-strong);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: var(--text);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--fast) var(--ease);
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 14px;
    border-radius: 2px;
}

/* Language Dropdown */
.lang-dropdown-wrapper {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background: rgba(12, 14, 16, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    display: none;
    flex-direction: column;
    z-index: 200;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lang-dropdown-wrapper:hover .lang-dropdown {
    display: flex;
    animation: fadeUp 0.3s ease forwards;
}

.lang-dropdown a {
    color: var(--muted);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 13px;
    transition: all var(--fast) var(--ease);
    white-space: nowrap;
}

.lang-dropdown a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

/* Bottom Navigation (Mobile) */
.bottom-nav {
    display: block; /* ensure it displays */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0B0B0B; /* solid dark background */
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 65px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    gap: 6px;
    width: 20%;
    height: auto; /* Changed from 100% to auto to prevent flex shrinking contents vertically */
    padding-top: 10px;
    white-space: nowrap; /* prevent text wrapping */
    transition: all var(--fast) var(--ease);
}

.bottom-nav-item.active {
    color: #FFFFFF;
}

.bottom-nav-item i {
    font-size: 20px;
}

.bottom-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

.bottom-nav-item.action-btn {
    position: relative;
    top: -20px;
    height: auto;
}

.bottom-nav-item.action-btn .icon-wrapper {
    background: #FFFFFF;
    color: #000000;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 6px;
}

.bottom-nav-item.action-btn.active .icon-wrapper {
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* Top Navigation Area (Standardized) */
.top-nav {
    padding: 20px 24px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 9999;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1C1C1E;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    padding: 8px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.greeting {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.username {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

/* Language Selector in App */
.app-lang-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.app-lang-btn:hover {
    background: rgba(59, 130, 246, 0.1);
}

.bottom-nav-item.action-btn i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .glass-nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .bottom-nav { display: block; }
}

/* Sub-page Header Styles */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 100;
    background: rgba(12, 14, 16, 0.58);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header .back-btn {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.page-header .page-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
  .dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10002;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .dialog-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10003;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1.5;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
  }
  .dialog-content * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    font-family: Helvetica;
    font-size: 15px;
  }
  
  .dialog-btn, .dialog-btn-hl {
    position: relative;
    display: inline-block;
    height: 44px;
    color: #007aff;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
  }
  .dialog-btn:hover, .dialog-btn:active, .dialog-btn-hl:hover, .dialog-btn-hl:active {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .dialog-content-hd {
    position: relative;
    padding: 20px 20px 10px;
    margin-bottom: -25px;
    text-align: center;
  }
  .dialog-content-hd .dialog-content-title {
    font-size: 18px;
    font-weight: 400;
    color: #333;
  }
  .dialog-content-hd .dialog-btn-close {
    display: block;
    width: 26px;
    height: 26px;
    overflow: hidden;
    position: absolute;
    top: 18px;
    right: 15px;
    cursor: pointer;
    background-color: transparent;
  }
  .dialog-content-hd .dialog-btn-close span {
    display: none;
  }
  .dialog-content-hd .dialog-btn-close:before, .dialog-content-hd .dialog-btn-close:after {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background-color: #808080;
    position: absolute;
    top: 13px;
    right: 3px;
  }
  .dialog-content-hd .dialog-btn-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .dialog-content-hd .dialog-btn-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .dialog-content-bd {
    margin: 25px 20px;
    color: #666;
    text-align: center;
  }
  .dialog-content-bd p {
    padding: 5px 0;
  }
  
  .dialog-content-ft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-size: 0;
  }
  .dialog-content-ft:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid #d5d5d5;
    color: #d5d5d5;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
  }
  .dialog-content-ft .dialog-btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
  }
  .dialog-content-ft .dialog-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    border-left: 1px solid #d5d5d5;
    color: #d5d5d5;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
  }
  .dialog-content-ft .dialog-btn:first-child {
    border-bottom-left-radius: 8px;
  }
  .dialog-content-ft .dialog-btn:first-child:after {
    border-left: none;
  }
  .dialog-content-ft .dialog-btn:last-child {
    border-bottom-right-radius: 8px;
  }
  
  .dialog-content-ft.stacked {
    -ms-flex-flow: column;
        flex-flow: column;
    display: block;
  }
  .dialog-content-ft.stacked:after {
    border: none;
  }
  .dialog-content-ft.stacked .dialog-btn {
    position: relative;
    display: block;
    width: 100%;
  }
  .dialog-content-ft.stacked .dialog-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid #d5d5d5;
    color: #d5d5d5;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
  }
  
  .dialog-open .dialog-content,
  .dialog-open .dialog-overlay,
  .dialog-close .dialog-content,
  .dialog-close .dialog-overlay {
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  .dialog-open .dialog-content {
    -webkit-animation-name: zoom-in;
    animation-name: zoom-in;
  }
  .dialog-open .dialog-overlay {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
  }
  
  .dialog-close .dialog-content {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
  }
  .dialog-close .dialog-overlay {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
  }
  
  /**-------------------------
   *  android style
   **------------------------*/
  [data-style=android] .dialog-content {
    box-sizing: content-box;
    border-radius: 0;
    background-color: white;
  }
  [data-style=android] .dialog-content-hd {
    text-align: left;
    padding: 20px 20px 0;
    margin-bottom: -10px;
  }
  [data-style=android] .dialog-content-hd .dialog-btn-close {
    top: 15px;
    right: 15px;
  }
  [data-style=android] .dialog-content-bd {
    margin: 25px 20px;
    text-align: left;
  }
  [data-style=android] .dialog-content-ft {
    display: block;
    padding: 8px;
    margin-top: -10px;
    text-align: right;
  }
  [data-style=android] .dialog-content-ft:after {
    border: none;
  }
  [data-style=android] .dialog-content-ft .dialog-btn {
    display: inline-block;
    min-width: 60px;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    padding: 0 13px;
    font-size: 16px;
    color: #808080;
    text-align: center;
    border-radius: 2px;
  }
  [data-style=android] .dialog-content-ft .dialog-btn:after {
    border: none;
  }
  [data-style=android] .dialog-content-ft .dialog-btn-confirm, [data-style=android] .dialog-content-ft .dialog-btn-hl {
    color: #00bbd3;
  }
  [data-style=android] .dialog-content-ft.stacked .dialog-btn {
    display: block;
    text-align: right;
    width: 100%;
  }
  
  [data-style=android].dialog-open .dialog-content {
    -webkit-animation-name: bounce-in-down;
    animation-name: bounce-in-down;
  }
  [data-style=android].dialog-open .dialog-overlay {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
  }
  
  [data-style=android].dialog-close .dialog-content {
    -webkit-animation-name: bounce-out-up;
    animation-name: bounce-out-up;
  }
  [data-style=android].dialog-close .dialog-overlay {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
  }
  
  /* toast */
  .dialog-toast .dialog-overlay {
    background-color: transparent;
  }
  .dialog-toast .dialog-content {
    width: 148px;
    height: 148px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    display: table;
  }
  .dialog-toast .dialog-content-bd {
    margin: 0;
    padding: 0;
    font-size: 0;
    position: relative;
    width: 100%;
    height: 100%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }
  .dialog-toast .dialog-content-bd p {
    margin: 0;
    padding: 0;
  }
  .dialog-toast .info-icon {
    width: 56px;
    max-width: 56px;
  }
  .dialog-toast .info-text {
    display: block;
    width: 90%;
    margin: 12px auto 0;
    font-size: 16px;
    color: #fff;
  }
  
  .dialog-toast.dialog-open .dialog-content,
  .dialog-toast.dialog-open .dialog-overlay {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  .dialog-toast.dialog-close .dialog-content,
  .dialog-toast.dialog-close .dialog-overlay {
    -webkit-animation-duration: 0.35s;
    animation-duration: 0.35s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  .dialog-toast.dialog-open .dialog-content {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
  }
  .dialog-toast.dialog-open .dialog-overlay {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
  }
  
  .dialog-toast.dialog-close .dialog-content {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
  }
  .dialog-toast.dialog-close .dialog-overlay {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
  }
  
  /* notice */
  .dialog-notice .dialog-overlay {
    background-color: transparent;
  }
  .dialog-notice .dialog-content {
    display: table;
    width: auto;
    max-width: 85%;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .dialog-notice .dialog-content-bd {
    margin: 0;
    font-size: 0;
    padding: 10px 15px;
    line-height: normal;
  }
  .dialog-notice .info-icon {
    width: 16px;
    max-width: 16px;
    margin: 0 2px;
    vertical-align: middle;
    position: relative;
    top: -1px;
  }
  .dialog-notice .info-text {
    margin: 0 2px;
    font-size: 14px;
    color: #fff;
    line-height: 1.3;
    vertical-align: middle;
  }
  
  .dialog-notice.dialog-open .dialog-content,
  .dialog-notice.dialog-open .dialog-overlay {
    -webkit-animation-duration: 0.1s;
    animation-duration: 0.1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  .dialog-notice.dialog-close .dialog-content,
  .dialog-notice.dialog-close .dialog-overlay {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  .dialog-notice.dialog-open .dialog-content {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
  }
  .dialog-notice.dialog-open .dialog-overlay {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
  }
  
  .dialog-notice.dialog-close .dialog-content {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
  }
  .dialog-notice.dialog-close .dialog-overlay {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
  }
  
  .dialog-notice-bottom .dialog-content {
    top: auto;
    bottom: 0;
    -webkit-transform: translate(-50%, -20px);
    transform: translate(-50%, -20px);
  }
  
  .dialog-notice-bottom.dialog-open .dialog-content,
  .dialog-notice-bottom.dialog-open .dialog-overlay,
  .dialog-notice-bottom.dialog-close .dialog-content,
  .dialog-notice-bottom.dialog-close .dialog-overlay {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  .dialog-notice-bottom.dialog-open .dialog-content {
    -webkit-animation-name: bounce-in-up;
    animation-name: bounce-in-up;
  }
  
  .dialog-notice-bottom.dialog-close .dialog-content {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
  }
  
  /**-------------------------
   *  meida query
   **------------------------*/
  @media screen and (min-width: 1023px) {
    .dialog-content {
      max-width: 40%;
    }
  }
  @media screen and (min-width: 767px) {
    .dialog-content {
      max-width: 60%;
    }
  }
  /**-------------------------
   *  animate library
   **------------------------*/
  @-webkit-keyframes zoom-in {
    0% {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(1.2, 1.2);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%) scale(1, 1);
    }
  }
  @keyframes zoom-in {
    0% {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(1.2, 1.2);
      transform: translate(-50%, -50%) scale(1.2, 1.2);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%) scale(1, 1);
      transform: translate(-50%, -50%) scale(1, 1);
    }
  }
  @-webkit-keyframes zoom-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(0.8, 0.8);
    }
  }
  @keyframes zoom-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(0.8, 0.8);
      transform: translate(-50%, -50%) scale(0.8, 0.8);
    }
  }
  @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes bounce-in-down {
    0% {
      opacity: 0;
      -webkit-transform: translate(-50%, -75%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%);
    }
  }
  @keyframes bounce-in-down {
    0% {
      opacity: 0;
      -webkit-transform: translate(-50%, -75%);
      transform: translate(-50%, -75%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }
  }
  @-webkit-keyframes bounce-out-up {
    0% {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%);
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, -75%);
    }
  }
  @keyframes bounce-out-up {
    0% {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, -75%);
      transform: translate(-50%, -75%);
    }
  }
  @-webkit-keyframes bounce-in-up {
    0% {
      opacity: 0;
      -webkit-transform: translate(-50%, 0);
    }
    80% {
      opacity: 1;
      -webkit-transform: translate(-50%, -24px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(-50%, -20px);
    }
  }
  @keyframes bounce-in-up {
    0% {
      opacity: 0;
      -webkit-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }
    80% {
      opacity: 1;
      -webkit-transform: translate(-50%, -24px);
      transform: translate(-50%, -24px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(-50%, -20px);
      transform: translate(-50%, -20px);
    }
  }
  @-webkit-keyframes bounce-out-down {
    0% {
      opacity: 1;
      -webkit-transform: translate(-50%, -20px);
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, 0);
    }
  }
  @keyframes bounce-out-down {
    0% {
      opacity: 1;
      -webkit-transform: translate(-50%, -20px);
      transform: translate(-50%, -20px);
    }
    100% {
      opacity: 0;
      -webkit-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
    }
  }
  
