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

/* Vercelツールバーを非表示 */
vercel-live-feedback,
[data-vercel-toolbar],
#vercel-live-feedback {
    display: none !important;
}

html {
    background-color: #ffffff;
    touch-action: manipulation;
}

/* ActionBar - iOS PWAステータスバー背景 */
ActionBar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top);
    background-color: white;
    z-index: 10000;
    pointer-events: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 20px;
    /* iOS safe area insets */
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

header h1 {
    color: #667eea;
    font-size: 2.5em;
}

header h1 i {
    margin-right: 10px;
}

.ticket-form, .ticket-list {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.ticket-form h2, .ticket-list h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.ticket-form h2 i, .ticket-list h2 i {
    margin-right: 10px;
    color: #667eea;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.count-badge {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-left: 10px;
}

#ticketsContainer {
    display: grid;
    gap: 20px;
}

.ticket-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
    background: #fafafa;
    cursor: pointer;
    position: relative;
}

.ticket-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.ticket-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #333;
    flex: 1;
}

.ticket-info-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.ticket-info-item {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.ticket-info-item i {
    margin-right: 8px;
    color: #667eea;
    width: 16px;
    text-align: center;
}

.ticket-status-display {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.status-indicator {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
}

.status-indicator.open {
    background: #e0e0e0;
    color: #555;
}

.status-indicator.in-progress {
    background: #667eea;
    color: white;
}

.status-indicator.completed {
    background: #26de81;
    color: white;
}

.status-indicator i {
    margin-right: 8px;
}

.ticket-actions {
    display: flex;
    gap: 10px;
}

.btn-delete {
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-delete:hover {
    background: #e84142;
    transform: translateY(-2px);
}

.btn-delete i {
    margin-right: 5px;
}

.no-tickets {
    text-align: center;
    padding: 60px 20px;
    color: #767676;
}

.no-tickets i {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-tickets p {
    font-size: 1.2em;
}

/* チケット詳細画面（全画面固定） */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal-bg-gif {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.modal.show {
    display: block;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    .ticket-header {
        flex-direction: column;
    }
}

/* ================================================
   Ticket Detail Modal
   ================================================ */

/* Modal Container */
.modal-container {
    max-width: 414px;
    margin: 0 auto;
    background-color: transparent;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Modal Navigation Bar */
.modal-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    padding-top: max(12px, env(safe-area-inset-top));
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    animation: slideDown 0.5s ease-out 0.1s both;
    position: relative;
}

.nav-bar {
    background-color: #424242;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.modal-nav-back {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    color: #000;
}

.modal-nav-back .back-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.modal-nav-back:active {
    transform: scale(0.9);
    opacity: 0.7;
}

.modal-nav-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.modal-nav-spacer {
    width: 24px;
}

/* Stamp Animation */
.stamp-container {
    position: absolute;
    top: 50px;
    right: 25px;
    transform: scale(3);
    transform-origin: center center;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.stamp-container.is-stamped {
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
}

.stamp-image {
    width: 160px;
    height: 160px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Modal Ticket Section */
.modal-ticket-section {
    padding: 16px;
    padding-top: 20px;
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
    position: relative;
}

.modal-ticket-card {
    background-image: url('iphone_4inch.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease-out 0.2s both;
    margin-top: -8px;
    margin-left: -6px;
    margin-right: -5px;
    position: relative;
    will-change: transform, opacity;
    transition: transform 0.3s ease;
    overflow: hidden;
    aspect-ratio: 702 / 1016;
}

/* チケットカードの上部セクション */
.modal-ticket-card-top {
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 57%;
    overflow: hidden;
    z-index: 11;
}

/* チケットカードの下部セクション */
.modal-ticket-card-bottom {
    padding: 20px;
    padding-top: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 43%;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    z-index: 11;
}

/* Artist位置調整 */
.modal-ticket-info.modal-ticket-artist {
    margin-bottom: 10px;
}

/* Venue位置調整 */
.modal-ticket-info.modal-ticket-venue {
    margin-bottom: 10px;
}

/* Date位置調整 */
.modal-ticket-info.modal-ticket-date {
    margin-bottom: 10px;
}

/* Time行位置調整 */
.modal-time-row.modal-ticket-time {
    margin-bottom: 10px;
}

/* Name位置調整 */
.modal-ticket-info.modal-ticket-name {
    margin-bottom: 10px;
}

/* Seat位置調整 */
.modal-ticket-info.modal-ticket-seat {
    margin-bottom: 10px;
}
.modal-event-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 24px;
    color: #000;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.modal-ticket-info {
    margin-bottom: 18px;
    animation: fadeIn 0.5s ease-out both;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.modal-ticket-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.modal-info-label {
    font-size: 11px;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 4px;
}

.modal-info-value {
    font-size: 16px;
    color: #000;
    line-height: 1.4;
    font-weight: 600;
    margin-top: -4px;
}

/* Date - 大きくミディアム */
.modal-ticket-date .modal-info-value {
    font-size: 16px;
    font-weight: 600;
}

/* Name - 大きく通常ウェイト */
.modal-ticket-name .modal-info-value {
    font-size: 16px;
    font-weight: 600;
}

/* Seat - やや大きくミディアム */
.modal-ticket-seat .modal-info-value {
    font-size: 16px;
    font-weight: 600;
}

.modal-time-row {
    display: flex;
    gap: 32px;
    margin-bottom: 18px;
    animation: fadeIn 0.5s ease-out 0.7s both;
}

.modal-time-item {
    flex: 1;
}

.modal-time-item.modal-time-start {
    margin-left: -230px;
}

.modal-time-value {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-top: -8px;
}

/* Page Indicator */
.page-indicator {
    position: fixed;
    bottom: calc(80px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.page-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translateY(-60px);
}

.page-count {
    position: absolute;
    right: -60px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    left: 160px;
    transform: translateY(-60px);
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* Status Actions */
.modal-status-actions {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 414px;
    display: flex;
    padding-bottom: calc(1px + env(safe-area-inset-bottom));
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.modal-status-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #767676;
}

.modal-status-btn:hover {
    color: #ff6b35;
}

.modal-status-btn:active {
    transform: scale(0.95);
}

.modal-status-btn.active {
    color: #ff6b35;
}

.modal-status-btn.active .nav-label {
    color: #000;
}

.modal-status-btn i {
    font-size: 24px;
    margin: 0;
}

.modal-status-btn .nav-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.modal-status-btn:nth-child(1) .nav-icon,
.modal-status-btn:nth-child(3) .nav-icon {
    width: 20px;
    height: 20px;
}

.modal-status-btn .nav-label {
    font-size: 10px;
    font-weight: 400;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 414px) {
    .modal-container {
        width: 100%;
    }
}

/* ================================================
   Entrance Check Modal
   ================================================ */

/* 入場チェックモーダル */
.entrance-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
}

.entrance-modal.show {
    display: block;
    animation: slideInRight 0.3s ease-out;
}

.entrance-modal.closing {
    animation: slideOutRight 0.3s ease-out;
}

.entrance-container {
    max-width: 414px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: white;
}

/* ヘッダー */
.entrance-header {
    background: linear-gradient(135deg, #ff7043 0%, #ff6b35 100%);
    padding: 20px 16px;
    padding-top: max(20px, env(safe-area-inset-top));
    color: white;
}

.entrance-header-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.entrance-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.entrance-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.entrance-close .close-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.entrance-close:active {
    transform: scale(0.9);
}

.entrance-subtitle {
    font-size: 13px;
    margin: 0;
    opacity: 0.95;
    text-align: center;
}

/* メインコンテンツ */
.entrance-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
}

.entrance-user-info {
    text-align: left;
    margin-bottom: 60px;
    align-self: stretch;
}

.entrance-name {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #333;
}

.entrance-seat {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    margin-top: -15px;
    color: #333;
}

/* プログレスサークル */
.entrance-progress {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: none;
}

/* 入場チェック画面のGIFインジケーター */
.entrance-progress-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
}

/* 入場チェック画面のスタンプ */
.entrance-stamp-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

/* プレビュー状態: 押し込み中の振動モーション */
.entrance-stamp-container.stamp-preview {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.3;
    animation: stampVibrate 0.1s linear infinite;
}

/* 確定状態: スタンプ押下完了 */
.entrance-stamp-container.is-stamped {
    transform: translate(-50%, -50%) scale(1) rotate(-15deg);
    opacity: 0.9;
    animation: none;
}

@keyframes stampVibrate {
    0%   { transform: translate(-50%, -50%) scale(1.15) rotate(0deg); }
    25%  { transform: translate(-49%, -51%) scale(1.15) rotate(2deg); }
    50%  { transform: translate(-51%, -49%) scale(1.15) rotate(-1deg); }
    75%  { transform: translate(-50%, -51%) scale(1.15) rotate(1deg); }
    100% { transform: translate(-50%, -50%) scale(1.15) rotate(-2deg); }
}

.entrance-stamp-image {
    width: 160px;
    height: 160px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* 入場チェック画面 Page Dot */
.entrance-page-dot {
    position: fixed;
    bottom: calc(env(safe-area-inset-bottom) + 80px);
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 50%;
    z-index: 99;
}

/* ロックアイコン */
.entrance-lock-icon {
    position: fixed;
    bottom: calc(env(safe-area-inset-bottom) + 20px);
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #767676;
    z-index: 10;
}

.entrance-lock-icon .lock-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

/* ================================================
   MyPage Modal
   ================================================ */

.mypage-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    z-index: 2500;
}

.mypage-modal.show {
    display: block;
    animation: fadeIn 0.15s ease-out;
}

.mypage-modal.closing {
    display: block;
    animation: fadeOut 0.15s ease-out forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.mypage-container {
    max-width: 414px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
}

.mypage-header {
    background: #eee;
    padding: 16px;
    padding-top: max(16px, env(safe-area-inset-top));
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.mypage-header-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.mypage-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
}

/* Plus member ID */
.mypage-id-card {
    display: flex;
    align-items: stretch;
    background: #d9d9d9;
    border-radius: 50px;
    padding: 0;
    margin-bottom: 16px;
}

.mypage-id-label {
    background: #333;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    margin-right: 12px;
    white-space: nowrap;
}

.mypage-id-value {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
    padding: 10px 0;
}

.mypage-id-copy {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 16px 4px 4px;
    margin-left: -8px;
}

/* カード */
.mypage-card {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

/* ユーザー情報 */
.mypage-user-info {
    padding: 16px;
}

.mypage-user-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.mypage-user-email {
    font-size: 14px;
    color: #999;
}

/* メニューアイテム */
.mypage-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    cursor: pointer;
}

.mypage-menu-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mypage-menu-border-top {
    border-top: 1px solid #f0f0f0;
}

.mypage-menu-icon-img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.mypage-external-icon {
    font-size: 12px;
    color: #999;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0 3px;
    line-height: 1.4;
}

.mypage-chevron {
    color: #ccc;
    font-size: 22px;
    font-weight: 300;
}

/* サブ情報（承認済バッジ等） */
.mypage-menu-sub {
    padding: 0 16px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mypage-badge-approved {
    font-size: 12px;
    color: #ff6b35;
    border: 1px solid #ff6b35;
    border-radius: 50px;
    padding: 2px 10px;
}

.mypage-expiry {
    font-size: 12px;
    color: #999;
}

/* セクションタイトル */
.mypage-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

/* ボトムナビ */
.mypage-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 414px;
    display: flex;
    padding-bottom: calc(1px + env(safe-area-inset-bottom));
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.mypage-nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #767676;
}

.mypage-nav-btn.active {
    color: #ff6b35;
}

.mypage-nav-btn.active .nav-label {
    color: #000;
}

.mypage-nav-btn .nav-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.mypage-nav-btn:nth-child(1) .nav-icon,
.mypage-nav-btn:nth-child(3) .nav-icon {
    width: 20px;
    height: 20px;
}

.mypage-nav-btn .nav-label {
    font-size: 10px;
    font-weight: 400;
}

/* Focus visible styles - 非表示 */
:focus-visible {
    outline: none;
}

button:focus-visible {
    outline: none;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .modal-bg-gif,
    .entrance-progress-gif {
        animation: none;
    }
}
