/* product_detail.css — 課程詳情頁 專屬樣式 */

/* 特價文字顏色 */
.sale-price {
    color: var(--primary-color);
}

/* Video preview */
.video-preview {
    background-color: #000;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-preview img {
    width: 100%;
    transition: opacity 0.3s;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(189, 86, 27, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button i {
    color: white;
    font-size: 32px;
    margin-left: 5px;
}

.play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Course sidebar */
.course-sidebar {
    position: sticky;
    top: 20px;
}

/* Course content accordion */
.course-content-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: white;
}

.course-content-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(189, 86, 27, 0.25);
}

/* Course info items */
.course-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.course-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Course description links */
#course-description a {
    word-break: break-all;
}

#course-description img {
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

/* News items */
.news-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 15px;
}

.news-date {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Star rating */
.star-rating {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Countdown timer */
.countdown-timer {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.countdown-timer span {
    font-weight: 700;
}

/* Course tags */
.course-tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: #e9ecef;
    color: #495057;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Chapter list */
.chapter-list {
    list-style: none;
    padding: 0;
}

.chapter-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chapter-info {
    display: flex;
    flex-direction: column;
}

.chapter-duration {
    font-size: 0.85rem;
    color: #6c757d;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    min-width: 0;
}

.faq-question>div,
.faq-answer>div {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    min-width: 0;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: 700;
}

.question-icon {
    background-color: var(--primary-color);
    color: white;
}

.answer-icon {
    background-color: var(--secondary-color);
    color: white;
}

/* Bundle course */
.bundle-course {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.bundle-course:last-child {
    border-bottom: none;
}

.bundle-course-img {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.bundle-course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-course-info {
    flex-grow: 1;
}

.bundle-course-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.bundle-course-price {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Instructor */
.instructor-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.instructor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.instructor-title {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Course nav tabs */
.course-nav {
    position: sticky;
    top: 56px;
    background-color: white;
    z-index: 100;
    padding: 15px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.course-nav.is-stuck {
    padding: 15px 0 6px 0;
}

.course-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 0;
}

.course-nav .nav-link.active {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

.course-nav .nav-link:hover:not(.active) {
    color: var(--primary-color);
    background-color: rgba(189, 86, 27, 0.1);
}

/* Original price */
.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
}

/* ============================================
   免費上課影片功能
   ============================================ */

/*--- 免費上課角標 ---*/
.preview-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(189, 86, 27, 0.4);
}

/*--- 影片數量提示 ---*/
.preview-count {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
}

/*--- 免費上課影片縮圖列 ---*/
.preview-strip {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.preview-strip::-webkit-scrollbar {
    height: 4px;
}
.preview-strip::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}
.preview-strip-item {
    flex-shrink: 0;
    width: 140px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.preview-strip-item:hover {
    transform: translateY(-2px);
}
.preview-strip-thumb {
    position: relative;
    width: 140px;
    height: 79px;
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a2e;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}
.preview-strip-item:hover .preview-strip-thumb,
.preview-strip-item.active .preview-strip-thumb {
    border-color: var(--primary-color);
}
.preview-strip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.preview-strip-thumb .thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.preview-strip-item:hover .thumb-play-icon {
    opacity: 1;
}
.thumb-play-icon i {
    color: var(--primary-color);
    font-size: 11px;
    margin-left: 2px;
}
.preview-strip-item.active .preview-strip-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}
.preview-strip-title {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.preview-strip-item.active .preview-strip-title {
    color: var(--primary-color);
    font-weight: 600;
}

/*--- LIVE 標記 ---*/
.live-tag {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 2px 6px;
    background: #e74c3c;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.live-tag .live-dot {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: live-pulse 1.5s infinite;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/*--- 播放器 Modal（暖奶油配色） ---*/
.preview-modal .modal-content {
    background: #fff;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}
.preview-modal .modal-header {
    background: #FFF8F0;
    border-bottom: 2px solid var(--primary-color);
    padding: 12px 20px;
}
.preview-modal .modal-title {
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 700;
}
.preview-modal .btn-close {
    opacity: 0.55;
}
.preview-modal .btn-close:hover {
    opacity: 1;
}
.preview-modal .modal-footer {
    background: #FFF8F0;
    border-top: 1px solid rgba(189, 86, 27, 0.2);
    padding: 12px 20px;
}
.player-area {
    background: #000;
}

/*--- 免費上課清單側欄（保留深色強化播放沉浸感，改暖深棕搭橘色系） ---*/
.preview-playlist {
    background: #2A1F14;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.preview-playlist-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.preview-playlist-header h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.preview-playlist-header small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}
.preview-playlist-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}
.preview-playlist-body::-webkit-scrollbar {
    width: 3px;
}
.preview-playlist-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}
.playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-left: 3px solid transparent;
}
.playlist-item:hover {
    background: rgba(255, 255, 255, 0.04);
}
.playlist-item.active {
    background: rgba(189, 86, 27, 0.08);
    border-left-color: var(--primary-color);
}
.playlist-item-num {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 600;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.playlist-item.active .playlist-item-num {
    color: var(--primary-color);
}
.playlist-item-thumb {
    width: 72px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    background: #1a1a2e;
    flex-shrink: 0;
}
.playlist-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.playlist-item-info {
    flex: 1;
    min-width: 0;
}
.playlist-item-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.playlist-item.active .playlist-item-title {
    color: var(--primary-color);
}
.playlist-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
}
.playlist-item-type {
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 600;
}
.type-video {
    background: rgba(59, 89, 152, 0.2);
    color: #7b9ad8;
}
.type-live {
    background: rgba(231, 76, 60, 0.2);
    color: #f08070;
}

/*--- 播放器底部 CTA Bar（橘色漸層 + 白底反白購買鈕） ---*/
.player-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-top: none;
}
.player-cta-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.player-cta-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}
.player-cta-price {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.player-cta-bar .btn-buy {
    background: #fff;
    color: var(--primary-dark);
    border: none;
    padding: 8px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.player-cta-bar .btn-buy:hover {
    background: #FFF8F0;
    color: var(--primary-color);
    transform: translateY(-1px);
}

/*--- 影片結束引導 ---*/
.video-end-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(8px);
}
.video-end-card {
    text-align: center;
    max-width: 380px;
    padding: 32px 24px;
}
.video-end-card .end-thumb {
    width: 200px;
    height: 112px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(189, 86, 27, 0.3);
}
.video-end-card .end-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-end-card .end-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}
.video-end-card .end-price {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.video-end-card .end-price .end-original {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}
.video-end-card .btn-buy-lg {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.video-end-card .btn-buy-lg:hover {
    background: var(--primary-dark);
}
.video-end-card .end-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.video-end-card .end-actions a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}
.video-end-card .end-actions a:hover {
    color: #fff;
}

/*--- 側欄免費上課入口按鈕 ---*/
.sidebar-preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #fff5ed 0%, #fff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 16px;
}
.sidebar-preview-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.sidebar-preview-btn .preview-count-badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
}
.sidebar-preview-btn:hover .preview-count-badge {
    background: #fff;
    color: var(--primary-color);
}

/*--- 手機版免費上課橫幅（跨在購物列上方形成雙層 CTA）---*/
.mobile-preview-btn {
    position: fixed;
    bottom: 64px;
    left: 0;
    right: 0;
    z-index: 1029;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #d4783f 0%, #bd561b 55%, #9d4517 100%);
    border: none;
    border-radius: 16px 16px 0 0;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 -6px 18px rgba(189, 86, 27, 0.28);
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}
.mobile-preview-btn i {
    font-size: 18px;
}
.mobile-preview-btn:hover,
.mobile-preview-btn:focus {
    color: #fff;
    filter: brightness(1.05);
}
.mobile-preview-btn:active {
    transform: translateY(1px);
    filter: brightness(0.95);
}
.mobile-preview-btn .mobile-preview-badge {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
    margin-left: 2px;
}

/*--- 手機版播放器清單收合 ---*/
.mobile-playlist-toggle {
    display: none;
    padding: 10px 16px;
    background: #1a1a35;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.mobile-playlist-toggle i {
    transition: transform 0.2s ease;
    float: right;
    line-height: 1.4;
}
.mobile-playlist-toggle.collapsed i {
    transform: rotate(180deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    footer {
        margin-bottom: 60px;
    }

    .course-nav {
        top: 55px;
        padding: 10px 0;
    }

    .course-nav.is-stuck {
        padding: 15px 0 6px 0;
    }

    .course-nav .nav {
        row-gap: 6px;
    }

    .course-nav .nav-link {
        padding: 6px 8px;
        font-size: 13px;
    }

    /* 手機版主圖幾乎貼邊：僅抵消 col 本身 padding，不觸及 row 負 margin */
    .product-main-img {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

    .product-main-img img {
        border-radius: 0 !important;
        width: 100%;
    }

    .mobile-preview-btn {
        display: flex;
    }

    .mobile-playlist-toggle {
        display: block;
    }

    .player-cta-info .player-cta-name {
        display: none;
    }
}


/*--- 免費上課 Modal：課程介紹區（封面 + 富文本） ---*/
.preview-modal .preview-intro {
    background: #fff;
    overflow: hidden;
    margin-bottom: 14px;
}
.preview-modal .preview-intro-banner {
    position: relative;
    background-color: #1a237e;
    line-height: 0;
}
.preview-modal .preview-intro-banner-img {
    display: block;
    width: 100%;
    height: auto;
}
.preview-modal .preview-intro-banner-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}
.preview-modal .preview-intro-label {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 0px;
}
.preview-modal .preview-intro-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.preview-modal .preview-intro-body {
    padding: 18px 24px;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}
.preview-modal .preview-intro-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}
.preview-modal .preview-intro-body p,
.preview-modal .preview-intro-body ul,
.preview-modal .preview-intro-body ol {
    margin-bottom: 12px;
}

/*--- Modal 整體調整：白色背景、讓介紹區顯示正常 ---*/
.preview-modal .modal-body {
    background: #fff;
    padding: 16px;
}

@media (max-width: 768px) {
    .preview-modal .preview-intro-title {
        font-size: 18px;
    }
    .preview-modal .preview-intro-body {
        padding: 14px 16px;
        font-size: 13px;
    }
    .preview-modal .modal-content,
    .preview-modal .modal-header,
    .preview-modal .modal-footer,
    .preview-modal .preview-intro {
        border-radius: 0;
    }
}

/*--- 免費上課 Modal：無影片時的感謝訊息區 ---*/
.preview-modal .preview-thankyou-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 40px 20px;
}
.preview-modal .preview-thankyou {
    text-align: center;
    max-width: 480px;
}
.preview-modal .preview-thankyou-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1;
}
.preview-modal .preview-thankyou-title {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 12px;
}
.preview-modal .preview-thankyou-text {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

/*--- 免費上課 Modal：主要按鈕（開始免費上課 / 確認報名） ---*/
.preview-modal .preview-primary-btn {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    padding: 8px 28px;
    border: none;
}
.preview-modal .preview-primary-btn:hover,
.preview-modal .preview-primary-btn:focus {
    background: #9d4517;
    color: #fff;
}
.preview-modal .preview-primary-btn:disabled {
    opacity: 0.7;
}

/*--- 免費上課場次選擇 ---*/
.preview-modal .preview-schedule-picker {
    margin-top: 20px;
    padding: 16px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
}
.preview-modal .preview-schedule-picker .schedule-title {
    margin: 0 0 12px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}
.preview-modal .schedule-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.preview-modal .schedule-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: 0;
}
.preview-modal .schedule-option:hover:not(.disabled) {
    border-color: var(--primary-color);
    background: #fff8e1;
}
.preview-modal .schedule-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
}
.preview-modal .schedule-option input[type="radio"]:checked + .schedule-date {
    color: var(--primary-color);
    font-weight: 600;
}
.preview-modal .schedule-option .schedule-date {
    font-size: 15px;
    color: #333;
    min-width: 110px;
}
.preview-modal .schedule-option .schedule-deadline {
    font-size: 12px;
    color: #999;
    flex: 1;
}
.preview-modal .schedule-option .badge {
    font-size: 11px;
}
.preview-modal .schedule-option.disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}
.preview-modal .schedule-option.disabled .schedule-date,
.preview-modal .schedule-option.disabled .schedule-deadline {
    color: #999;
}
