﻿/* 패널 오버레이 */
.mypage-info-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    .mypage-info-panel-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* 프로필 패널 */
.mypage-info-profile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

    .mypage-info-profile-panel.active {
        transform: translateX(0);
    }

/* 패널 헤더 */
.mypage-info-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .mypage-info-panel-header h3 {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin-top:15px;
    }

.mypage-info-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mypage-info-close-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

/* 패널 내용 */
.mypage-info-panel-content {
    padding: 24px;
    height: calc(100vh - 84px);
    overflow-y: auto;
}

    .mypage-info-panel-content::-webkit-scrollbar {
        width: 6px;
    }

    .mypage-info-panel-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .mypage-info-panel-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

/* 탭 내용 */
.mypage-info-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .mypage-info-tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 내정보 탭 스타일 */
.mypage-info-user-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mypage-info-user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fa4646, #e03e3e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
    position: relative;
    overflow: hidden;
}

    .mypage-info-user-avatar::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: rotate 3s linear infinite;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mypage-info-user-info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .mypage-info-user-info-item:last-child {
        border-bottom: none;
    }

    .mypage-info-user-info-item i {
        width: 20px;
        margin-right: 12px;
        color: #fff;
    }

.mypage-info-user-info-label {
    font-size: 14px;
    color: #888;
    margin-right: 8px;
}

.mypage-info-user-info-value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-left: auto;
}

/* 주문 탭 스타일 */
.order-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.order-id {
    font-size: 14px;
    color: #4CAF50;
    font-weight: 500;
}

.order-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.order-details {
    font-size: 14px;
    color: #ccc;
}

/* 설정 탭 스타일 */
.settings-section {
    margin-bottom: 24px;
}

.settings-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

    .settings-title i {
        margin-right: 8px;
        color: #4CAF50;
    }

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .settings-item:last-child {
        border-bottom: none;
    }

.settings-label {
    font-size: 14px;
    color: #ccc;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .toggle-switch.active {
        background: #4CAF50;
    }

    .toggle-switch::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: #fff;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .toggle-switch.active::after {
        transform: translateX(20px);
    }

/* 데모용 컨테이너 */
.demo-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.demo-dropdown {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    backdrop-filter: blur(10px);
}

.mypage-info-user-info-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    object-fit: contain; 
}

.mypage-info-user-info-item img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #4CAF50; 
}

.mypage-info-action-section {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.mypage-info-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .mypage-info-action-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mypage-info-action-btn i {
        margin-right: 8px;
    }

/*비밀번호 변경*/

.mypage-password-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .mypage-password-modal.show {
        opacity: 1;
    }

.mypage-password-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: #2d2d2d;
    border-radius: 12px;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mypage-password-modal.show .mypage-password-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.mypage-password-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .mypage-password-modal-header h3 {
        margin: 0;
        color: #fff;
        font-size: 18px;
    }

.mypage-password-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mypage-password-close-btn:hover {
        color: #ccc;
    }

.mypage-password-input-group {
    padding: 0 24px;
    margin-bottom: 16px;
}

    .mypage-password-input-group:first-child {
        margin-top: 20px;
    }

    .mypage-password-input-group label {
        display: block;
        color: #ccc;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .mypage-password-input-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        font-size: 14px;
    }

        .mypage-password-input-group input:focus {
            outline: none;
            border-color: #fa4646;
        }

.mypage-password-modal-buttons {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .mypage-password-modal-buttons button {
        flex: 1;
        padding: 12px;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .mypage-password-modal-buttons button[type="button"] {
            background: rgba(255, 255, 255, 0.1);
            color: #ccc;
        }

            .mypage-password-modal-buttons button[type="button"]:hover {
                background: rgba(255, 255, 255, 0.2);
            }

        .mypage-password-modal-buttons button[type="submit"] {
            background: #fa4646;
            color: #fff;
        }

            .mypage-password-modal-buttons button[type="submit"]:hover {
                background: #e03e3e;
            }

/*탈퇴하기*/

.mypage-withdraw-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .mypage-withdraw-modal.show {
        opacity: 1;
    }

.mypage-withdraw-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: #2d2d2d;
    border-radius: 12px;
    width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mypage-withdraw-modal.show .mypage-withdraw-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.mypage-withdraw-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .mypage-withdraw-modal-header h3 {
        margin: 0;
        color: #fff;
        font-size: 18px;
    }

.mypage-withdraw-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mypage-withdraw-modal-body {
    padding: 24px;
}

.mypage-withdraw-warning {
    display: flex;
    align-items: center;
    background: rgba(244, 67, 54, 0.1);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

    .mypage-withdraw-warning i {
        color: #f44336;
        font-size: 20px;
        margin-right: 12px;
    }

    .mypage-withdraw-warning p {
        margin: 0;
        color: #f44336;
        font-size: 14px;
    }

.mypage-withdraw-input-group {
    margin-bottom: 20px;
}

    .mypage-withdraw-input-group label {
        display: block;
        color: #ccc;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .mypage-withdraw-input-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        font-size: 14px;
    }

        .mypage-withdraw-input-group input:focus {
            outline: none;
            border-color: #f44336;
        }

.mypage-withdraw-modal-buttons {
    display: flex;
    gap: 12px;
}

    .mypage-withdraw-modal-buttons button {
        flex: 1;
        padding: 12px;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .mypage-withdraw-modal-buttons button[type="button"] {
            background: rgba(255, 255, 255, 0.1);
            color: #ccc;
        }

            .mypage-withdraw-modal-buttons button[type="button"]:hover {
                background: rgba(255, 255, 255, 0.2);
            }

        .mypage-withdraw-modal-buttons button.danger {
            background: #208ef5;
            color: #fff;
        }

            .mypage-withdraw-modal-buttons button.danger:hover {
                background: #1976d2;
            }

/* 공지사항 패널 오버레이 */
.notice-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    .notice-panel-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* 공지사항 패널 */
.notice-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 720px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

    .notice-panel.active {
        transform: translateX(0);
    }

/* 패널 헤더 */
.notice-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .notice-panel-header h3 {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
    }

.notice-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .notice-close-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

/* 패널 내용 */
.notice-panel-content {
    height: calc(100vh - 84px);
    overflow-y: auto;
}

    .notice-panel-content::-webkit-scrollbar {
        width: 6px;
    }

    .notice-panel-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .notice-panel-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

/* 공지사항 목록 */
.notice-list {
    padding: 20px;
}

.notice-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .notice-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

.notice-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f44336;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.notice-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    padding-right: 50px;
}

.notice-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.notice-preview {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 공지사항 상세보기 */
.notice-detail {
    animation: fadeIn 0.5s ease;
}

.notice-detail-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-back-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .notice-back-btn:hover {
        color: #fff;
    }

.notice-detail-content {
    padding: 24px;
}

.notice-detail-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.notice-detail-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 공지사항 상세 내용 추가 스타일 */
.notice-detail-body {
    font-size: 14px;
    color: #ccc;
    
}

    /* 강조 텍스트 */
    .notice-detail-body strong {
        color: #fff;
        font-weight: 600;
    }

    /* 링크 스타일 */
    .notice-detail-body a {
        color: #4a9eff;
        text-decoration: none;
    }

        .notice-detail-body a:hover {
            color: #66b3ff;
            text-decoration: underline;
        }

    /* 테이블 스타일 */
    .notice-detail-body table {
        width: 100%;
        border-collapse: collapse;
        margin: 15px 0;
        font-size: 12px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        overflow: hidden;
    }

        .notice-detail-body table td {
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 12px;
            text-align: left;
            color: #ccc;
        }

        .notice-detail-body table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }

        .notice-detail-body table tr:first-child td {
            background-color: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-weight: 600;
        }

    /* 중앙 정렬 */
    .notice-detail-body center {
        margin: 20px 0;
    }

.scroll-to-top-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #fa4646;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* 기본 상태를 숨김으로 설정 */
    opacity: 0;
    transform: scale(0.8);
    display: block; /* 항상 block으로 유지 */
}

    .scroll-to-top-btn:hover {
        transform: translateY(-2px) scale(1); /* hover시에도 scale 유지 */
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .scroll-to-top-btn:active {
        transform: translateY(0) scale(1);
    }

    /* 나타날 때 효과 */
    .scroll-to-top-btn.show {
        opacity: 1;
        transform: scale(1);
        /* 살짝 바운스 효과 추가 */
        animation: bounceIn 0.5s ease-out;
    }

    /* 사라질 때 효과 */
    .scroll-to-top-btn.hide {
        opacity: 0;
        transform: scale(0.8);
        /* 사라지는 애니메이션 추가 */
        animation: fadeOut 0.3s ease-in;
    }

/* 바운스 인 애니메이션 */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 페이드 아웃 애니메이션 */
@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}


.popup-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-notice {
    background: #2a2a2a;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    max-height: 80vh;
    margin: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    animation: popupSlideIn 0.3s ease-out;
    position: relative;
}

.popup-notice-header {
    padding: 20px 10px;
    font-size:20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
}

.popup-notice-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.popup-notice-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
    margin-bottom:10px;
}

.popup-notice-content * {
    max-width: 100% !important;
    width: auto !important;
}

.popup-notice-content div,
.popup-notice-content h1,
.popup-notice-content h2,
.popup-notice-content h3,
.popup-notice-content h4,
.popup-notice-content h5,
.popup-notice-content h6,
.popup-notice-content p {
    max-width: 100% !important;
    width: auto !important;
    box-sizing: border-box;
}

.popup-notice-content span{
    font-size:18px !important;
}

.popup-notice-content {
    
    padding: 10px;
    max-height: 50vh;
    overflow-x: hidden; 
    overflow-y: auto;
    color: #ccc;
    line-height: 1.6;
    word-wrap: break-word; 
} 
.popup-notice-content img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
}

.popup-notice-content table {
    max-width: 100% !important;
    width: 100% !important;
    table-layout: fixed;
}

    .popup-notice-content a {
        display: block;
        text-decoration: none;
    }

.popup-notice-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    background: #333;
}

.popup-notice-checkbox {
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .popup-notice-checkbox input[type="checkbox"] {
        margin: 0;
        accent-color: #fa4646;
    }

@media (max-width: 768px) {
    .profile-panel {
        width: 100%;
    }

    .notice-panel {
        width: 100%;
    }
    .notice-detail-body table {
        font-size: 11px;
    }

        .notice-detail-body table td {
            padding: 4px;
        }

    .popup-notice {
        max-width: 90%;
        max-height: 90vh;
        margin: 10px;
    }

    .popup-notice-header {
        padding: 16px 20px;
    }

    .popup-notice-title {
        font-size: 16px;
    }

    .popup-notice-footer {
        padding: 12px 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

