/* components/SpecialOffersView.css */

.special-offers-view {
    /* background: #FC466B;
    background: -webkit-linear-gradient(to right, #3F5EFB, #FC466B);
    background: linear-gradient(to right, #3F5EFB, #FC466B);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    -webkit-overflow-scrolling: touch; */

    /* background-image: url('/assets/images/offer-background.png'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* overflow: hidden; */
    /* background-color: red; */
    /* border-radius: 16px; */
    padding: 0 20px;
    position: relative;
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-coin {
    position: absolute;
    font-size: 16px;
    opacity: 0.6;
    animation: float-rotate 6s ease-in-out infinite;
}

.floating-coin-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-coin-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-coin-3 {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
}

.floating-coin-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.floating-coin-5 {
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

.floating-coin-6 {
    bottom: 40%;
    left: 20%;
    animation-delay: 5s;
}

.floating-coin-7 {
    top: 70%;
    right: 20%;
    animation-delay: 0.5s;
}

.floating-coin-8 {
    top: 30%;
    right: 25%;
    animation-delay: 1.5s;
}

.floating-coin-9 {
    bottom: 60%;
    left: 30%;
    animation-delay: 2.5s;
}

.floating-coin-10 {
    top: 80%;
    right: 30%;
    animation-delay: 3.5s;
}

.floating-coin-11 {
    top: 15%;
    left: 40%;
    animation-delay: 4.5s;
}

.floating-coin-12 {
    bottom: 30%;
    right: 5%;
    animation-delay: 0.3s;
}

.floating-coin-13 {
    top: 50%;
    left: 50%;
    animation-delay: 1.8s;
}

.floating-coin-14 {
    bottom: 70%;
    right: 40%;
    animation-delay: 2.3s;
}

.floating-coin-15 {
    top: 90%;
    left: 60%;
    animation-delay: 3.8s;
}

.special-offers-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.special-offers-header h2 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.special-offers-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.special-coin-packages-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.special-coin-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.special-packages-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(30px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 2;
    /* padding-bottom: 300px; */
    overflow-y: auto;
}

.special-package {
    background: rgba(0, 0, 0, 0.4);
    /* border: 2px solid rgba(255, 255, 255, 0.2); */
    border-radius: 16px;
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 120px;
}

/* .special-package:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
} */

.special-package.popular {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.2);
}

/* .special-package.popular:hover {
    border-color: #059669;
    background: rgba(16, 185, 129, 0.3);
} */

.special-package.processing {
    pointer-events: none;
    opacity: 0.7;
}

.special-label {
    position: absolute;
    top: -1px;
    right: -1px;
    padding: 6px 12px;
    border-radius: 0 16px 0 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.special-label.popular {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.special-label.hot {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.package-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.package-icon .coin-icon {
    font-size: 28px;
}

.package-icon .coin-amount {
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.coin-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.coin-burst {
    position: relative;
    width: 60px;
    height: 60px;
}

.coin-burst .burst-coin {
    position: absolute;
    font-size: 12px;
    opacity: 0;
    animation: burst 2s ease-out infinite;
}

.coin-burst .burst-coin:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.coin-burst .burst-coin:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.3s;
}

.coin-burst .burst-coin:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.6s;
}

.special-pricing {
    text-align: center;
}

.special-price {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
}

.special-original-price {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.package-processing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.processing-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.special-processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.special-processing-content {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.special-processing-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.special-processing-content p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.special-error {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(254, 242, 242, 0.9);
    border: 1px solid rgba(254, 202, 202, 0.8);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.special-error .error-icon {
    font-size: 18px;
}

.special-error .error-text {
    flex: 1;
    font-size: 14px;
    color: #dc2626;
    font-weight: 500;
}

.error-retry-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.error-retry-btn:hover {
    background: #b91c1c;
}

.special-package.special-package-skeleton {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: default;
    animation: shimmer 1.5s infinite;
}

.special-package.special-package-skeleton:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.package-icon-skeleton {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    animation: shimmer 1.5s infinite;
    margin-bottom: 12px;
}

.special-pricing-skeleton {
    text-align: center;
}

.price-skeleton {
    width: 60px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
    margin: 0 auto 4px;
}

.original-price-skeleton {
    width: 50px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
    margin: 0 auto;
}

.extra-coins-small {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    margin-left: 4px;
}

.no-special-packages {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 3;
}

.no-special-packages .no-packages-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.no-special-packages h4 {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: white;
}

.no-special-packages p {
    font-size: 14px;
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.8);
}

.no-special-packages .retry-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.no-special-packages .retry-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes float-rotate {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(90deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    75% {
        transform: translateY(-10px) rotate(270deg);
    }
}

@keyframes burst {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }

    20% {
        opacity: 1;
        transform: scale(1) translateY(-10px);
    }

    80% {
        opacity: 1;
        transform: scale(1) translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: scale(0.5) translateY(-30px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
/* components/styles/GiftBottomSheet.module.css */

.GiftBottomSheet_giftSheetContent__vA9IT {
    padding: 20px 16px 0 16px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;

    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

    color: #ffffff;
}

.GiftBottomSheet_sheetDynamicBackground__UjEt2 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    transition: opacity 0.5s ease-in;
    z-index: 0;
}

.GiftBottomSheet_giftSheetContent__vA9IT > *:not(.GiftBottomSheet_sheetDynamicBackground__UjEt2) {
    position: relative;
    z-index: 1;
}

.GiftBottomSheet_giftSheetHeader__Rb4ze {
    position: relative;
    z-index: 10;
    /* backdrop-filter: blur(12px); */
    /* -webkit-backdrop-filter: blur(12px); */
    background-color: transparent;
    background: transparent;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.GiftBottomSheet_sheetTitle__2dHMf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    background: transparent;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
}

.GiftBottomSheet_sheetTitle__2dHMf h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
    text-align: center;
}

.GiftBottomSheet_backBtn__3H3qy {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    margin-right: 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    display: flex;
    align-items: center;
    justify-content: center;
}


.GiftBottomSheet_backBtn__3H3qy:active {
    background-color: rgba(255, 255, 255, 0.15);
}

.GiftBottomSheet_backBtn__3H3qy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.GiftBottomSheet_closeBtn__kH5PE {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}


.GiftBottomSheet_closeBtn__kH5PE:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.GiftBottomSheet_headerCloseBtn__Mfhek {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.GiftBottomSheet_headerCloseBtn__Mfhek:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.GiftBottomSheet_headerCloseBtn__Mfhek:active {
    background-color: rgba(255, 255, 255, 0.15);
}

.GiftBottomSheet_headerCloseBtn__Mfhek:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.GiftBottomSheet_viewContent__kpZPg {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    padding-top: 16px;
}

.GiftBottomSheet_viewContainer__JizQx {
    height: auto;
    min-height: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.GiftBottomSheet_viewContainer__JizQx.GiftBottomSheet_animatingBackward__jfpbY {
    animation: GiftBottomSheet_slideInFromLeft__y5mKz 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Gifts View Wrapper */
.GiftBottomSheet_giftsView__HFlM6 {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.GiftBottomSheet_coinBalanceContainer__714XH {
    position: sticky;
    top: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    padding: 20px 16px;
    margin-bottom: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);

    background: #FC466B;
    background: -webkit-linear-gradient(to right, #3F5EFB, #FC466B);
    background: linear-gradient(to right, #3F5EFB, #FC466B);
}

.GiftBottomSheet_coinBalance__6I3cW {
    display: flex;
    align-items: center;
    gap: 8px;
}

.GiftBottomSheet_balanceIcon__0RSw_ {
    font-size: 20px;
}

.GiftBottomSheet_balanceText__D_tOX {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.GiftBottomSheet_balanceLabel__dE8WM {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.GiftBottomSheet_balanceSkeleton__hWO1R {
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    animation: GiftBottomSheet_shimmer__RSRAm 1.5s infinite;
}

.GiftBottomSheet_rechargeBtn__8TMO1 {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.GiftBottomSheet_rechargeBtn__8TMO1:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.GiftBottomSheet_rechargeBtn__8TMO1:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.GiftBottomSheet_rechargeIcon__LvaPh {
    font-size: 16px;
}

.GiftBottomSheet_giftError__SEXgv {
    position: sticky;
    top: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.1);
}

.GiftBottomSheet_errorIcon__pxtiU {
    font-size: 16px;
}

.GiftBottomSheet_errorText__nImuj {
    flex: 1;
    font-size: 14px;
    color: #dc2626;
}

.GiftBottomSheet_errorDismiss__2A3Lz {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
}

.GiftBottomSheet_errorDismiss__2A3Lz:hover {
    background: rgba(220, 38, 38, 0.1);
}

.GiftBottomSheet_giftsContainer__Aq05d {
    flex: 1;
    padding-bottom: 20px;
}

.GiftBottomSheet_giftsGrid__6cXF1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
    padding-bottom: 20px;
}

.GiftBottomSheet_giftItem__f9VJQ {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.GiftBottomSheet_giftItemDisabled__7WYm5 {
    opacity: 0.6;
    cursor: not-allowed;
}


.GiftBottomSheet_giftItemSending__5_Voc {
    pointer-events: none;
}

.GiftBottomSheet_giftItemNoInteraction__0ljEj {
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}


.GiftBottomSheet_giftItemNoInteraction__0ljEj:active {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transform: none;
}

.GiftBottomSheet_giftImageContainer__NWGcA {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.GiftBottomSheet_giftImage__F73HZ {
    border-radius: 6px;
}

.GiftBottomSheet_insufficientCoinsOverlay__gSQbY {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.GiftBottomSheet_sendingOverlay__2OUtR {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.8);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.GiftBottomSheet_sendingSpinner__a4VTq {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: GiftBottomSheet_spin__9E3fC 1s linear infinite;
}

.GiftBottomSheet_giftPrice__7pXlE {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 0 6px;
    color: white;
}

.GiftBottomSheet_coinIcon__NYYMu {
    font-size: 12px;
}

.GiftBottomSheet_priceText__slGMN {
    font-size: 16px;
    color: white;
}

.GiftBottomSheet_giftSkeleton__Lni_r {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    cursor: default;
}


.GiftBottomSheet_giftImageSkeleton__fMaCj {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    animation: GiftBottomSheet_shimmer__RSRAm 1.5s infinite;
}

.GiftBottomSheet_giftPriceSkeleton__lIEmV {
    width: 30px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    animation: GiftBottomSheet_shimmer__RSRAm 1.5s infinite;
}

.GiftBottomSheet_noGifts__JxhFF {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.GiftBottomSheet_noGiftsIcon__nQo2Z {
    font-size: 48px;
    margin-bottom: 16px;
}

.GiftBottomSheet_noGifts__JxhFF h4 {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: white;
}

.GiftBottomSheet_noGifts__JxhFF p {
    font-size: 14px;
    margin: 0 0 20px 0;
}

.GiftBottomSheet_retryBtn__hjL_e {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.GiftBottomSheet_retryBtn__hjL_e:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.GiftBottomSheet_sheetBottomSpacing__NOWpV {
    height: 20px;
}

@keyframes GiftBottomSheet_spin__9E3fC {
    to {
        transform: rotate(360deg);
    }
}

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

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes GiftBottomSheet_slideInFromRight__Fp9sv {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes GiftBottomSheet_slideInFromLeft__y5mKz {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

