/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */
.announcement-bar {
    background-color: #1c1d1d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 38px;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 101;
}

.announcement-bar-marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.header-container {
    height: 60px !important;
}

/* ==========================================================================
   HERO SECTION 
   ========================================================================== */.hero-section {
    position: relative;
    width: 100%;
    /* 调整了高度比例使其更接近参考网站 */
    aspect-ratio: 1920 / 720;
    min-height: 480px;
    max-height: 720px;
    height: auto !important; /* 覆盖原有的 100vh */
    background-color: #D1D5DB; /* Light gray to blend with the image better than black */
    overflow: hidden;
    display: block !important;  /* 覆盖原 style.css 的 display:flex */
}

.hero-bg-placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 2;
}

/* 鍏ㄥ缁濆瀹氫綅锛岃礋璐ｅ瀭鐩村竷灞€ */
.hero-body {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;       /* 鍨傜洿灞呬腑 */
    /* 绉婚櫎浜嗗悜涓婂亸绉荤殑 padding-bottom锛ofSeconds璁舵洿鎺ヨ繎瀹樼綉鐨勫瀭鐩村眳涓亸涓嬩綅缃?*/
}

/* 鏂囨鍖猴細宸︿晶锛屾渶澶у绾﹀乏鍗婂睆 */
.hero-body .hero-content {
    text-align: left !important;
    max-width: 48% !important;
    margin: 0 !important;
    padding-bottom: 0 !important;
    transform: translateY(-20%) !important;
    text-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-body .hero-content .eyebrow {
    display: block !important;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px !important;
    text-shadow: none;
    text-align: left !important;
}

.hero-body .hero-content h1 {
    font-size: clamp(32px, 3.5vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 32px !important;
    letter-spacing: -0.01em;
    text-align: left !important;
}

.hero-body .hero-copy {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
    color: #4B5563;
    margin-top: 0 !important;
    margin-bottom: 36px !important;
    margin-left: 0 !important;       /* 寮哄埗瑕嗙洊 style.css 鐨?margin-left: auto */
    margin-right: 0 !important;      /* 寮哄埗瑕嗙洊 style.css 鐨?margin-right: auto */
    max-width: 440px;
    text-shadow: none;
    text-align: left !important;
}

.hero-body .hero-actions {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 !important;
}

.hero-body .btn-primary {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border: none;
}
.hero-body .btn-primary.btn-pill {
    border-radius: 999px !important;
    padding: 12px 32px !important;
    font-size: 15px !important;
    font-weight: 600;
}
.hero-body .btn-primary:hover {
    background-color: #374151 !important;
}

.hero-body .btn-ghost {
    color: #111827 !important;
    border: 1px solid rgba(17, 24, 39, 0.2) !important;
}
.hero-body .btn-ghost:hover {
    background-color: rgba(17, 24, 39, 0.05) !important;
}

/* Mobile */
@media (max-width: 900px) {
    .hero-section {
        aspect-ratio: auto;
        min-height: 500px;
        height: 500px;
    }
    .hero-body .hero-content {
        max-width: 100% !important;
        transform: translateY(-10%) !important;
    }
    .hero-body .hero-content h1 {
        font-size: 34px !important;
    }
}

@media (max-width: 600px) {
    .hero-section {
        height: 420px;
    }
    .hero-body .hero-content h1 {
        font-size: 28px !important;
    }
    .hero-body .hero-copy {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   Placeholder Image Style
   ========================================================================== */
.placeholder-img {
    background: linear-gradient(135deg, #181818 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
}

.placeholder-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 2px, transparent 2px, transparent 8px);
}

/* Double Product Entry (Oura Ring Style) */
.product-entry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.product-card-immersive {
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
}

.product-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.product-card-immersive:hover .product-card-bg {
    transform: scale(1.05);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
    pointer-events: none;
}

.product-card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-card-text {
    flex: 1;
    min-width: 0;
    color: #FFF;
    padding-right: 24px;
}

.badge-tag {
    display: inline-block;
    background: #FFF2E0; /* Accurate presale .badge-new background */
    color: #936729; /* Accurate presale .badge-new text */
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px; /* Increased from 12px to space out text */
}

.product-card-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px; /* Increased from 6px */
    color: #FFF;
    letter-spacing: 0;
    white-space: nowrap; /* Prevent wrapping */
    transition: color 0.3s ease; /* Ensure smooth transition back when mouse leaves */
}



.product-card-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6; /* Better readability */
}

.product-card-actions {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
    margin-left: auto;
}

.btn-black,
.btn-light-gray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600; /* Bold text matching Image 2 */
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.btn-black {
    background: #000000;
    color: #FFFFFF;
}

.btn-black:hover {
    background: #1C1C1E;
    transform: translateY(-1px);
}

.btn-light-gray {
    background: #E5E5EA; /* Apple-style light gray */
    color: #000000;
}

.btn-light-gray:hover {
    background: #D1D1D6;
    transform: translateY(-1px);
}


/* Workflow list overrides for Benefits left section */
.workflow-steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.workflow-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.workflow-step-item .b-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EEF4FC;
    color: #2277FF;
}

.workflow-step-item h3 {
    margin-bottom: 4px;
    font-size: 18px;
}
.workflow-step-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}


/* App Features Grid */
.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.app-feature-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(25, 28, 29, 0.06);
}

.large-feature {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
}

.app-visual {
    height: 280px;
    width: 100%;
}

.large-feature .app-visual {
    width: 55%;
    height: 380px;
}

.app-text {
    padding: 32px;
}

.large-feature .app-text {
    width: 45%;
    padding: 48px;
}

.app-text h3 {
    margin-bottom: 12px;
}

.app-text p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}


/* ==========================================================================
   TESTIMONIALS (KOL) SECTION
   ========================================================================== */
.kol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.kol-card {
    position: relative;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
}

.kol-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kol-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.kol-card:hover .kol-bg {
    transform: scale(1.05);
}

.kol-top-bar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.kol-tag {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 6px 14px 6px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
}

.kol-tag img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.kol-plus-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111827;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.kol-card:hover .kol-plus-btn {
    transform: scale(1.05);
}

.kol-plus-btn i, .kol-plus-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    stroke: none;
}

.kol-bottom-content {
    position: relative;
    z-index: 2;
}

.kol-bottom-content h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    
    /* Hover color magic */
    color: #FFFFFF;
    background-image: linear-gradient(90deg, #00C9A7 0%, #2563EB 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.kol-card:hover .kol-bottom-content h3 {
    color: transparent;
    text-shadow: none;
}

@media (max-width: 900px) {
    .kol-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .kol-grid {
        grid-template-columns: 1fr;
    }
}




/* Responsive adjustments */
@media (max-width: 992px) {
    .product-entry-grid,
    .app-features-grid {
        grid-template-columns: 1fr;
    }
    .large-feature {
        flex-direction: column;
    }
    .large-feature .app-visual,
    .large-feature .app-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section .hero-content h1 {
        font-size: 40px;
    }
    .hero-section .hero-content {
        padding-bottom: 100px;
    }
    
    /* Reduce gap between section title and subtitle by half */
    .section-heading h2 {
        margin-bottom: 5px;
    }
    
    /* Make product cards same ratio as image on mobile and fix text wrapping */
    .product-card-immersive {
        height: auto;
        aspect-ratio: 23 / 20;
    }
    .product-card-content {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 20px;
        gap: 12px;
    }
    .product-card-text {
        flex: 1;
        min-width: 0;
        padding-right: 0;
    }
    .product-card-actions {
        flex: 0 0 auto;
        gap: 6px !important; /* closer buttons */
    }
    .product-card-actions .btn-light-gray,
    .product-card-actions .btn-black {
        height: 30px !important;
        font-size: 13px !important;
        padding: 0 16px !important;
        min-width: auto !important; /* Override the 130px inline style */
        width: 100%;
    }
    .product-card-title-row {
        flex-wrap: wrap;
        gap: 6px;
        position: relative;
        top: 0;
    }
    .product-card-text h3 {
        font-size: 16px;
        white-space: normal;
    }
    .product-card-price {
        font-size: 14px;
        white-space: nowrap;
        font-weight: 600;
        color: #E65A00; /* or keep default */
    }
    .product-card-text p {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 6px;
        margin-bottom: 0;
    }
}

.product-card-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.product-card-price {
    color: #FF5A00;
    font-size: 20px;
    font-weight: 700;
}

/* End of custom CSS */

/* ==========================================================================
   INTERACTIVE DEMO (WORKFLOW) PLAYER
   ========================================================================== */
.demo-tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    background: transparent;
    border: none;
    padding: 0;
}
.demo-tab {
    display: inline-flex;
    align-items: center;
    background-color: #F3F4F6;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}
.demo-tab:hover {
    background-color: #E5E7EB;
}
.demo-tab.active {
    background-color: #F0F9FF;
    border-color: #3B82F6;
    color: #2563EB;
    box-shadow: none;
}

.demo-player-box {
    background-color: #E2F3F7;
    background-image: 
        radial-gradient(100% 120% at top left, #D1F4F9 0%, transparent 70%),
        radial-gradient(120% 120% at top right, #B2D4FC 0%, transparent 70%),
        radial-gradient(80% 100% at bottom left, #EAFBFD 0%, transparent 60%),
        radial-gradient(100% 100% at bottom right, #D8EAFC 0%, transparent 60%);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    gap: 48px;
    align-items: center;
    border: none;
    overflow: hidden;
    position: relative;
}

.demo-player-left {
    flex: 0 0 320px;
    transform: translateX(70px);
}

.apple-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.apple-feature-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    width: 100%;
}

.apple-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFFFFF;
    padding: 10px 20px 10px 10px;
    border-radius: 999px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.pill-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #D2D2D7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D1D1F;
}
.pill-icon svg {
    width: 14px;
    height: 14px;
}

.pill-text {
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1F;
}

.apple-feature-desc {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #1D1D1F;
    margin-top: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
    border: none;
    box-shadow: none;
}

.demo-feature-item.active .apple-feature-desc {
    opacity: 1;
    max-height: 200px;
    padding: 16px 20px;
    margin-top: 12px;
    transform: translateY(0);
}

.demo-player-right {
    flex: 1;
    position: relative;
    max-width: 600px;
    transform: translateX(70px);
}
.phone-mockup {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: none;
    border: 2px solid #FFFFFF;
    overflow: hidden;
    width: 280px;
    height: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}
.phone-notch {
    display: none;
}

.phone-screen {
    flex: 1;
    position: relative;
    background: linear-gradient(180deg, #E0F2FE 0%, #F8FAFC 100%);
    padding: 12px 16px 24px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
}

.ios-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}
.ios-status-bar .icons {
    display: flex;
    align-items: center;
    gap: 4px;
}
.status-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
}

.demo-play-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111827;
    z-index: 10;
    transition: all 0.2s ease;
}
.demo-play-btn:hover {
    background: #F9FAFB;
    transform: scale(1.05);
}
.demo-play-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    stroke: none;
}

/* Animations inside mac-body */
.demo-scene {
    position: absolute;
    inset: 0;
    padding: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.demo-scene.active {
    opacity: 1;
}

/* Scene 1: Recording */
.record-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34, 119, 255, 0.1);
    border: 2px solid #2277FF;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-scene.active .record-circle {
    animation: pulse 2s infinite;
}
.record-circle i {
    color: #111827;
    width: 32px;
    height: 32px;
}
.waveform {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    height: 40px;
}
.waveform span {
    width: 4px;
    background: #2277FF;
    border-radius: 2px;
}
.demo-scene.active .waveform span {
    animation: wave 1s infinite ease-in-out;
}
.waveform span:nth-child(1) { height: 12px; animation-delay: 0.0s; }
.waveform span:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 16px; animation-delay: 0.4s; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 119, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(34, 119, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 119, 255, 0); }
}
@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* Scene 2: Transcribe */
.chat-line {
    background: #FFFFFF;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    margin-bottom: 12px;
    max-width: 80%;
    transform: translateY(10px);
    opacity: 0;
    font-size: 14px;
}
.demo-scene.active .chat-line {
    animation: slideUp 0.4s forwards;
}
.chat-line:nth-child(1) { animation-delay: 0.2s; }
.chat-line:nth-child(2) { animation-delay: 1.2s; margin-left: auto; background: #2277FF; color: white; }
.chat-line:nth-child(3) { animation-delay: 2.2s; }
@keyframes slideUp {
    to { transform: translateY(0); opacity: 1; }
}

/* Scene 3: Summarize */
.search-mock {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.typing-text {
    border-right: 2px solid #2277FF;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    color: #111827;
    font-size: 14px;
}
.demo-scene.active .typing-text {
    animation: typing 1.5s steps(30, end) forwards, blink 0.75s step-end infinite;
    animation-delay: 0.5s;
}
.plan-header-icon.bg-gold {
    animation: float-icon 2.5s ease-in-out infinite alternate;
}

/* ==========================================================================
   VIDEO MODAL
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.video-modal.active {
    opacity: 1;
    visibility: visible;
}
.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}
.video-modal.active .video-modal-content {
    transform: scale(1);
}
.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.video-modal-close:hover {
    background: rgba(255,255,255,0.4);
}
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-container video, .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-content.is-vertical {
    max-width: 450px;
    margin: 0 auto;
}
.video-modal-content.is-vertical .video-container {
    padding-top: 177.77%; /* 16:9 vertical aspect ratio */
}
.video-modal-content.is-vertical .video-container video {
    object-fit: cover;
}

/* ==========================================================================
   MEGAMENU DROPDOWN
   ========================================================================== */
.nav-dropdown-wrapper {
    position: static;
}
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 14px;
    font-weight: 600;
}
.nav-backdrop {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: none;
    pointer-events: none;
}
.nav-dropdown-wrapper:hover .nav-backdrop {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    padding: 48px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: none;
    z-index: 999;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}
.nav-dropdown-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.megamenu-header {
    margin-bottom: 24px;
    text-align: left;
}
.site-nav a.megamenu-subtitle {
    padding: 0;
    background-color: transparent;
    color: #6B7280;
}
.site-nav a.megamenu-subtitle:hover {
    background-color: transparent !important;
    color: #111827 !important;
}
.megamenu-grid {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}
.megamenu-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 32px 24px;
    width: 300px;
    flex-shrink: 0;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}
.megamenu-card:hover {
    background: #F1F3F5;
}
.megamenu-img-wrap img {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.megamenu-card:hover .megamenu-img-wrap img {
    transform: scale(1.15);
}
.color-swatches {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 0 1px #E5E7EB;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}
.color-swatch:hover {
    transform: scale(1.1);
}
.color-swatch.active {
    box-shadow: 0 0 0 1.5px #111827;
}
@media (max-width: 900px) {
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 16px 0;
        display: none;
    }
    .nav-dropdown-wrapper:hover .nav-dropdown-menu {
        display: block;
        transform: none;
    }
    .megamenu-grid {
        flex-direction: column;
    }
}
@keyframes typing {
    to { width: 100%; }
}
@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: #2277FF; }
}
.result-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateY(10px);
}
.demo-scene.active .result-card {
    animation: slideUp 0.4s forwards;
    animation-delay: 2.2s;
}
.skeleton-line {
    height: 12px;
    background: #E5E7EB;
    border-radius: 6px;
    margin-bottom: 8px;
}
.skeleton-line:last-child { margin-bottom: 0; width: 60%; }

@media (max-width: 900px) {
    .demo-player-box { flex-direction: column; padding: 24px; gap: 24px; }
    .demo-player-left { flex: none; width: 100%; display: flex; gap: 16px; justify-content: center; }
    .demo-feature-item { padding: 12px 0; font-size: 16px; }
}
@media (max-width: 600px) {
    .demo-tabs-container { flex-direction: column; }
    .demo-player-left { flex-wrap: wrap; }
}

/* ==========================================================================
   USER STORIES SECTION (CAROUSEL)
   ========================================================================== */
.user-stories-carousel-wrapper {
    width: 100%;
    margin-top: 32px;
}

.user-stories-track {
    display: flex;
    gap: 24px;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 40px; /* Space for shadow */
}

.user-stories-track::-webkit-scrollbar {
    display: none;
}

.user-story-block {
    flex: 0 0 400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    height: 420px !important;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
}

.story-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    background: #F3F4F6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.story-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.story-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    justify-content: flex-start;
}

.story-rating .star-icon {
    width: 20px;
    height: 20px;
    fill: #936729;
    color: #936729;
}

.story-large-quote {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #111827;
    margin-bottom: 24px;
}

.story-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.profile-title {
    font-size: 14px;
    color: #6B7280;
}

.story-rating .star-icon {
    width: 16px;
    height: 16px;
    fill: #FACC15;
    color: #FACC15;
    stroke: none; /* Make it look like solid SVG */
}

.story-author-name {
    font-size: 14px;
    color: #111827;
    margin-bottom: 16px;
}

.story-title {
    font-size: 15px;
    font-weight: 700;
    color: #4B5563;
    margin: 0 0 8px 0;
}

.story-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.author-info-inline {
    display: flex;
    flex-direction: column;
}

.author-info-inline strong {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.author-info-inline span {
    font-size: 13px;
    color: #6B7280;
}

/* Adjust card width for smaller screens */
@media (max-width: 900px) {
    .user-story-card {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 600px) {
    .user-story-card {
        flex: 0 0 calc(85% - 12px);
        min-width: 280px;
    }
}

/* ==========================================================================
   STICKY GRADIENT TITLES (APPLE STYLE SWEEP)
   ========================================================================== */
.sticky-gradient-title {
    background-image: linear-gradient(
        90deg, 
        #00C9A7 0%,     /* Greener Teal/Cyan */
        #2563EB 33%,    /* Deepened Blue */
        currentColor 66%, 
        currentColor 100%
    );
    background-size: 300% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-gradient-title.gradient-locked {
    background-position: 0% 0;
}

/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */
.guarantee-section {
    background-color: #FFFFFF;
    padding-top: 64px;
    padding-bottom: 64px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    color: #111827;
}

.guarantee-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5px;
}

.guarantee-item h4 {
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 12px;
}

.guarantee-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #4B5563;
}

@media (max-width: 900px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
}
@media (max-width: 600px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SCENARIOS (APPLE-STYLE GRID)
   ========================================================================== */
.scenario-grid-new {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    overflow-x: auto;
    padding-bottom: 21px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    
    /* Left side aligns naturally with container. 
       Right side uses negative margin to break out to the edge of the screen. */
    margin-right: calc(50% - 50vw);
    padding-right: max(24px, calc(50vw - 50%));
}

.scenario-grid-new::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.scenario-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 21px;
}

.nav-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F3F4F6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #111827;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

.nav-arrow:hover {
    background: #E5E7EB;
}

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

.scenario-card-new {
    flex: 0 0 min(85vw, 340px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 600px) {
    #scenarios .scenario-card-new {
        flex: 0 0 min(74vw, 289px);
    }
}

.scenario-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background: #F3F4F6;
    transform: translateZ(0); /* Hardware acceleration for smoother scrolling/hover */
}

.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scenario-card-new:hover .scenario-image img {
    transform: scale(1.05);
}

.scenario-text-new {
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    padding: 0 8px;
}

.scenario-text-new strong {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

@media (max-width: 900px) {
    /* Optional: adjustments for scenario cards on smaller screens if needed */
}
@media (max-width: 600px) {
    /* Optional: adjustments for scenario cards on smaller screens if needed */
}
/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 0 .   D E S I G N   T O K E N S   &   G E N E R A L   V A R I A B L E S 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 @ i m p o r t   u r l ( ' h t t p s : / / f o n t s . g o o g l e a p i s . c o m / c s s 2 ? f a m i l y = I n t e r : w g h t @ 4 0 0 ; 5 0 0 ; 6 0 0 ; 7 0 0 & d i s p l a y = s w a p ' ) ; 
 
 
 
 : r o o t   { 
 
         / *   B r a n d   C o l o r :   # 2 2 7 7 F F   a s   r e q u e s t e d   * / 
 
         - - c o l o r - p r i m a r y :   # 2 2 7 7 F F ; 
 
         - - c o l o r - p r i m a r y - h o v e r :   # 0 0 5 6 F F ; 
 
         - - c o l o r - s e c o n d a r y :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         - - c o l o r - s e c o n d a r y - h o v e r :   v a r ( - - c o l o r - p r i m a r y - h o v e r ) ; 
 
         
 
         / *   L a y o u t   P a l e t t e   * / 
 
         - - c o l o r - b g - b a s e :   # F F F F F F ; 
 
         - - c o l o r - b g - a l t :   # F 8 F 9 F D ; 
 
         - - c o l o r - b g - b e n e f i t :   # E E F 4 F C ; 
 
         - - c o l o r - t e x t - m a i n :   # 1 9 1 C 1 D ; 
 
         - - c o l o r - t e x t - m u t e d :   # 6 6 7 0 8 5 ; 
 
         - - c o l o r - b o r d e r :   # E 5 E 7 E B ; 
 
         - - c o l o r - b o r d e r - h o v e r :   # D 1 D 5 D B ; 
 
         
 
         / *   H i g h l i g h t   l i n e s   f o r   p r i c i n g   d e c o r a t o r   * / 
 
         - - c o l o r - l i n e - p i n k :   # F F 2 A 8 5 ; 
 
         - - c o l o r - l i n e - b l u e :   # 0 0 A 3 F F ; 
 
         - - c o l o r - l i n e - y e l l o w :   # F F D 6 0 0 ; 
 
         
 
         / *   L a y o u t   &   S p a c i n g   * / 
 
         - - m a x - w i d t h :   1 1 2 8 p x ; 
 
         - - r o u n d e d - b l o c k :   2 0 p x ; 
 
         - - r o u n d e d - p i l l :   9 9 9 p x ; 
 
         - - s h a d o w - s m :   0   2 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 2 ) ; 
 
         - - s h a d o w - m d :   0   1 0 p x   3 0 p x   r g b a ( 1 6 ,   2 4 ,   4 0 ,   0 . 0 5 ) ; 
 
         - - s h a d o w - l g :   0   2 0 p x   4 8 p x   r g b a ( 1 6 ,   2 4 ,   4 0 ,   0 . 0 8 ) ; 
 
         
 
         / *   T r a n s i t i o n s   * / 
 
         - - t r a n s i t i o n - f a s t :   1 6 0 m s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
 
         - - t r a n s i t i o n - n o r m a l :   2 5 0 m s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 1 .   C U S T O M   T Y P O G R A P H Y   T O K E N S   ( I N T E R   O N L Y ) 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 *   { 
 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 
         m a r g i n :   0 ; 
 
         p a d d i n g :   0 ; 
 
 } 
 
 
 
 h t m l   { 
 
         s c r o l l - b e h a v i o r :   s m o o t h ; 
 
         f o n t - f a m i l y :   ' I n t e r ' ,   - a p p l e - s y s t e m ,   B l i n k M a c S y s t e m F o n t ,   s a n s - s e r i f ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - b a s e ) ; 
 
         - w e b k i t - f o n t - s m o o t h i n g :   a n t i a l i a s e d ; 
 
 } 
 
 
 
 b o d y   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - b a s e ) ; 
 
         o v e r f l o w - x :   h i d d e n ; 
 
 } 
 
 
 
 / *   D i s p l a y   ( H e r o ,   R e s u l t   P a g e )   * / 
 
 . f o n t - d i s p l a y ,   h 1   { 
 
         f o n t - s i z e :   3 2 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         l i n e - h e i g h t :   4 0 p x ; 
 
         l e t t e r - s p a c i n g :   - 0 . 0 1 e m ; 
 
 } 
 
 
 
 / *   H 1   ( P a g e   T i t l e )   * / 
 
 . f o n t - h 1   { 
 
         f o n t - s i z e :   2 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         l i n e - h e i g h t :   3 2 p x ; 
 
         l e t t e r - s p a c i n g :   - 0 . 0 1 e m ; 
 
 } 
 
 
 
 / *   H 2   ( S e c t i o n   T i t l e )   * / 
 
 . f o n t - h 2 ,   h 2   { 
 
         f o n t - s i z e :   2 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         l i n e - h e i g h t :   3 2 p x ; 
 
         l e t t e r - s p a c i n g :   0 ; 
 
 } 
 
 
 
 / *   H 3   ( C a r d   T i t l e )   * / 
 
 . f o n t - h 3 ,   h 3   { 
 
         f o n t - s i z e :   1 6 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         l i n e - h e i g h t :   2 4 p x ; 
 
         l e t t e r - s p a c i n g :   0 ; 
 
 } 
 
 
 
 / *   B o d y   L   ( R e a d i n g   t e x t )   * / 
 
 . f o n t - b o d y - l   { 
 
         f o n t - s i z e :   1 6 p x ; 
 
         f o n t - w e i g h t :   4 0 0 ; 
 
         l i n e - h e i g h t :   2 4 p x ; 
 
         l e t t e r - s p a c i n g :   0 ; 
 
 } 
 
 
 
 / *   B o d y   ( R e g u l a r   t e x t )   * / 
 
 . f o n t - b o d y ,   p   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   4 0 0 ; 
 
         l i n e - h e i g h t :   2 3 p x ; 
 
         l e t t e r - s p a c i n g :   0 ; 
 
 } 
 
 
 
 / *   C a p t i o n   ( T a g s ,   a u x i l i a r y   i n f o )   * / 
 
 . f o n t - c a p t i o n   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         l i n e - h e i g h t :   1 8 p x ; 
 
         l e t t e r - s p a c i n g :   0 . 0 1 e m ; 
 
 } 
 
 
 
 / *   M i c r o   ( V e r y   s m a l l   t a g s )   * / 
 
 . f o n t - m i c r o   { 
 
         f o n t - s i z e :   1 0 p x ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         l i n e - h e i g h t :   1 6 p x ; 
 
         l e t t e r - s p a c i n g :   0 . 0 2 e m ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 2 .   U T I L I T I E S   &   S Y S T E M   L A Y O U T S 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . c o n t a i n e r   { 
 
         w i d t h :   m i n ( 1 0 0 %   -   4 8 p x ,   v a r ( - - m a x - w i d t h ) ) ; 
 
         m a r g i n :   0   a u t o ; 
 
 } 
 
 
 
 . s e c t i o n   { 
 
         p a d d i n g :   8 6 . 2 5 p x   0 ; 
 
 } 
 
 
 
 . s e c t i o n . a l t - b g   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
 } 
 
 
 
 . s e c t i o n - h e a d i n g   { 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         m a x - w i d t h :   7 2 0 p x ; 
 
         m a r g i n :   0   a u t o   5 6 p x   a u t o ; 
 
 } 
 
 
 
 . s e c t i o n - h e a d i n g   . e y e b r o w   { 
 
         d i s p l a y :   n o n e ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
 
         m a r g i n - b o t t o m :   1 2 p x ; 
 
 } 
 
 
 
 . s e c t i o n - h e a d i n g   h 2   { 
 
         m a r g i n - b o t t o m :   1 1 p x ; 
 
 } 
 
 
 
 . s e c t i o n - h e a d i n g   p   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       F E A T U R E   M A P   ( 1 : 1   I M A G E ) 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . f e a t u r e - m a p - f i g u r e   { 
 
         w i d t h :   1 0 0 % ; 
 
         m a r g i n :   0   a u t o ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       M E D I A   L O G O   M A R Q U E E 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . m e d i a - m a r q u e e - s e c t i o n   { 
 
         p a d d i n g :   3 6 p x   0 ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         b a c k g r o u n d - c o l o r :   # F F F F F F ; 
 
 } 
 
 
 
 . m e d i a - l o g o - m a r q u e e   { 
 
         w i d t h :   1 0 0 v w ; 
 
         m a r g i n - l e f t :   c a l c ( 5 0 %   -   5 0 v w ) ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         p a d d i n g :   2 4 p x   0 ; 
 
         b a c k g r o u n d - c o l o r :   # F F F F F F ; 
 
 } 
 
 
 
 . m e d i a - l o g o - t r a c k   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         w i d t h :   m a x - c o n t e n t ; 
 
         a n i m a t i o n :   m e d i a L o g o S c r o l l   3 8 s   l i n e a r   i n f i n i t e ; 
 
 } 
 
 
 
 . m e d i a - l o g o - s e t   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   1 4 0 p x ; 
 
         p a d d i n g - r i g h t :   1 4 0 p x ; 
 
         f l e x :   0   0   a u t o ; 
 
 } 
 
 
 
 . m e d i a - l o g o - s e t   i m g   { 
 
         h e i g h t :   1 0 0 p x ; 
 
         w i d t h :   a u t o ; 
 
         f l e x :   0   0   a u t o ; 
 
         f i l t e r :   n o n e ; 
 
         o p a c i t y :   1 ; 
 
 } 
 
 
 
 . m e d i a - l o g o - s e t   i m g [ s r c * = " s l a s h g e a r . p n g " ]   { 
 
         h e i g h t :   4 8 p x ; 
 
 } 
 
 
 
 @ k e y f r a m e s   m e d i a L o g o S c r o l l   { 
 
         f r o m   { 
 
                 t r a n s f o r m :   t r a n s l a t e X ( 0 ) ; 
 
         } 
 
         t o   { 
 
                 t r a n s f o r m :   t r a n s l a t e X ( - 2 0 % ) ; 
 
         } 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
         . m e d i a - l o g o - t r a c k   { 
 
                 a n i m a t i o n :   n o n e ; 
 
         } 
 
 
 
         . a u d i e n c e - i t e m . a c t i v e   . a u d i e n c e - r o l e - p r o g r e s s   r e c t   { 
 
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ; 
 
                 s t r o k e - d a s h o f f s e t :   0 ; 
 
         } 
 
 
 
         . a u d i e n c e - v i s u a l - i m a g e   { 
 
                 t r a n s i t i o n :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . s c e n a r i o - p h o t o   { 
 
                 t r a n s i t i o n :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 / *   B u t t o n s   * / 
 
 . b t n   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         p a d d i n g :   1 0 p x   2 4 p x ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         b o r d e r :   0 ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . b t n - p r i m a r y   { 
 
         b a c k g r o u n d - c o l o r :   # F F F F F F ; 
 
         c o l o r :   # 1 A 1 C 1 D ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 5 ) ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
 } 
 
 
 
 . b t n - p r i m a r y : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   # F 3 F 4 F 6 ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
 
 } 
 
 
 
 . b t n - s e c o n d a r y   { 
 
         b a c k g r o u n d - c o l o r :   # 1 6 1 B 2 8 ; 
 
         c o l o r :   # F F F F F F ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 
 } 
 
 
 
 . b t n - s e c o n d a r y : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   # 0 B 0 E 1 7 ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e   { 
 
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e : h o v e r   { 
 
         b o r d e r - c o l o r :   v a r ( - - c o l o r - b o r d e r - h o v e r ) ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
 } 
 
 
 
 . b t n - g h o s t   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
 
         c o l o r :   # F F F F F F ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 5 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ; 
 
 } 
 
 
 
 . b t n - g h o s t : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
 
         b o r d e r - c o l o r :   # F F F F F F ; 
 
 } 
 
 
 
 . b t n - l a r g e   { 
 
         p a d d i n g :   1 4 p x   3 6 p x ; 
 
         f o n t - s i z e :   1 5 p x ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 3 .   O F F I C I A L   F L A T   S T I C K Y   H E A D E R 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . s i t e - h e a d e r   { 
 
         p o s i t i o n :   s t i c k y ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         r i g h t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         z - i n d e x :   1 0 0 ; 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 5 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 1 2 p x ) ; 
 
         b o r d e r - b o t t o m :   1 p x   d a s h e d   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - n o r m a l ) ; 
 
 } 
 
 
 
 . h e a d e r - c o n t a i n e r   { 
 
         w i d t h :   m i n ( 1 0 0 %   -   4 8 p x ,   v a r ( - - m a x - w i d t h ) ) ; 
 
         m a r g i n :   0   a u t o ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         h e i g h t :   7 2 p x ; 
 
         t r a n s i t i o n :   h e i g h t   v a r ( - - t r a n s i t i o n - n o r m a l ) ; 
 
 } 
 
 
 
 . s i t e - h e a d e r . s c r o l l e d   . h e a d e r - c o n t a i n e r   { 
 
         h e i g h t :   6 0 p x ; 
 
 } 
 
 
 
 . b r a n d   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . b r a n d - l o g o   { 
 
         h e i g h t :   2 2 p x ; 
 
         d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . s i t e - n a v   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   1 2 p x ; 
 
 } 
 
 
 
 . s i t e - n a v   a   { 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         p a d d i n g :   8 p x   1 6 p x ; 
 
         b o r d e r - r a d i u s :   4 p x ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . s i t e - n a v   a : n o t ( . m e n u - i t e m - h i g h l i g h t e d ) : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         c o l o r :   # F F F F F F ; 
 
 } 
 
 
 
 . s i t e - n a v   a . m e n u - i t e m - h i g h l i g h t e d   { 
 
         b a c k g r o u n d - c o l o r :   # 5 4 f 2 f 2 ; 
 
         c o l o r :   # 0 0 0 0 0 0 ; 
 
 } 
 
 
 
 . s i t e - n a v   a . m e n u - i t e m - h i g h l i g h t e d : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   # 0 B 0 E 1 7 ; 
 
         c o l o r :   # F F F F F F ; 
 
 } 
 
 
 
 . n a v - i t e m - n e w   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   6 p x ; 
 
 } 
 
 
 
 . b a d g e - n e w   { 
 
         b a c k g r o u n d - c o l o r :   # F F F 2 E 0 ; 
 
         c o l o r :   # 9 3 6 7 2 9 ; 
 
         f o n t - s i z e :   1 1 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         p a d d i n g :   2 p x   6 p x ; 
 
         b o r d e r - r a d i u s :   4 p x ; 
 
         l i n e - h e i g h t :   1 . 2 ; 
 
 } 
 
 
 
 . h e a d e r - r i g h t   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   1 6 p x ; 
 
 } 
 
 
 
 . h e a d e r - i c o n   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         t r a n s i t i o n :   c o l o r   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . h e a d e r - i c o n : h o v e r   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . h e a d e r - i c o n   s v g   { 
 
         w i d t h :   2 0 p x ; 
 
         h e i g h t :   2 0 p x ; 
 
 } 
 
 
 
 . h e a d e r - c t a   { 
 
         p a d d i n g :   6 p x   2 4 p x ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 
 
 . n a v - t o g g l e   { 
 
         d i s p l a y :   n o n e ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   4 p x ; 
 
         w i d t h :   2 4 p x ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         b o r d e r :   0 ; 
 
         c u r s o r :   p o i n t e r ; 
 
 } 
 
 
 
 . n a v - t o g g l e   s p a n   { 
 
         d i s p l a y :   b l o c k ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   2 p x ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 4 .   H E R O   S E C T I O N   ( O r i g i n a l   V i d e o   B a c k g r o u n d ) 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . h e r o - s e c t i o n   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         h e i g h t :   1 0 0 v h ; 
 
         m i n - h e i g h t :   6 0 0 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   f l e x - e n d ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
 
         t e x t - a l i g n :   l e f t ; 
 
         c o l o r :   # f f f f f f ; 
 
         o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . h e r o - v i d e o   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   5 0 % ; 
 
         l e f t :   5 0 % ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ; 
 
         z - i n d e x :   1 ; 
 
 } 
 
 
 
 . h e r o - s h a d e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         i n s e t :   0 ; 
 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 4 5 ) ; 
 
         z - i n d e x :   2 ; 
 
 } 
 
 
 
 . h e r o - c o n t e n t   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         z - i n d e x :   3 ; 
 
         m a x - w i d t h :   1 0 0 0 p x ; 
 
         m a r g i n - l e f t :   a u t o ; 
 
         m a r g i n - r i g h t :   a u t o ; 
 
         p a d d i n g - b o t t o m :   4 8 0 p x ; 
 
         t r a n s f o r m :   n o n e ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         t e x t - s h a d o w :   0   2 p x   1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 9 0 0 p x )   { 
 
         . h e r o - c o n t e n t   { 
 
                 m a x - w i d t h :   1 4 0 0 p x ; 
 
                 p a d d i n g - b o t t o m :   6 8 0 p x ; 
 
         } 
 
         . h e r o - c o n t e n t   h 1   { 
 
                 w h i t e - s p a c e :   n o w r a p ; 
 
         } 
 
         . h e r o - b r   { 
 
                 d i s p l a y :   n o n e ; 
 
         } 
 
 } 
 
 
 
 . h e r o - c o n t e n t   . e y e b r o w   { 
 
         f o n t - s i z e :   1 6 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 1 5 e m ; 
 
         m a r g i n - b o t t o m :   1 2 p x ; 
 
         c o l o r :   # F F F F F F ; 
 
         o p a c i t y :   0 . 7 ; 
 
 } 
 
 
 
 . h e r o - c o n t e n t   h 1   { 
 
         f o n t - s i z e :   6 2 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         l i n e - h e i g h t :   1 . 1 3 ; 
 
         m a r g i n - b o t t o m :   1 6 p x ; 
 
         c o l o r :   # F F F F F F ; 
 
 } 
 
 
 
 . h e r o - c o p y   { 
 
         f o n t - s i z e :   1 8 p x ; 
 
         l i n e - h e i g h t :   2 8 p x ; 
 
         m a r g i n - b o t t o m :   2 4 p x ; 
 
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 5 ) ; 
 
         m a x - w i d t h :   5 8 0 p x ; 
 
         m a r g i n - l e f t :   a u t o ; 
 
         m a r g i n - r i g h t :   a u t o ; 
 
 } 
 
 
 
 . h e r o - a c t i o n s   { 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         g a p :   1 6 p x ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 5 .   B E N E F I T S   S E C T I O N   ( 3   P r i c e   C o l u m n s   +   O n e - P i e c e   B e n e f i t   B o x ) 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . b e n e f i t s - s h o w c a s e   { 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         b o r d e r :   n o n e ; 
 
         b o r d e r - r a d i u s :   0 ; 
 
         p a d d i n g :   2 4 p x   0   1 9 p x ; 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   1 . 1 f r   0 . 9 f r ; 
 
         g a p :   6 4 p x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( 3 0 p x ) ; 
 
 } 
 
 
 
 # b e n e f i t s . s e c t i o n   { 
 
         p a d d i n g - t o p :   5 2 . 5 p x ; 
 
         p a d d i n g - b o t t o m :   6 0 p x ; 
 
 } 
 
 
 
 # s u b s c r i b e . s e c t i o n   { 
 
         p a d d i n g - t o p :   4 0 . 5 p x ; 
 
         p a d d i n g - b o t t o m :   6 3 p x ; 
 
 } 
 
 
 
 . b e n e f i t s - s h o w c a s e - l e f t   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   3 6 p x ; 
 
 } 
 
 
 
 . b e n e f i t s - s h o w c a s e - l e f t   h 2   { 
 
         f o n t - s i z e :   2 4 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         l i n e - h e i g h t :   3 2 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         m a r g i n :   0 ; 
 
         l e t t e r - s p a c i n g :   0 ; 
 
 } 
 
 
 
 . b e n e f i t s - i c o n s - r o w   { 
 
         d i s p l a y :   f l e x ; 
 
         g a p :   3 2 p x ; 
 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
 
 } 
 
 
 
 . b e n e f i t - i c o n - c o l   { 
 
         f l e x :   1 ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
 
         g a p :   1 2 p x ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . b e n e f i t - i c o n - c o l : n o t ( : l a s t - c h i l d ) : : a f t e r   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         r i g h t :   - 1 6 p x ; 
 
         t o p :   1 5 % ; 
 
         b o t t o m :   1 5 % ; 
 
         w i d t h :   1 p x ; 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 ,   2 8 ,   2 9 ,   0 . 0 8 ) ; 
 
 } 
 
 
 
 . b - i c o n - b o x   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         w i d t h :   5 6 p x ; 
 
         h e i g h t :   5 6 p x ; 
 
 } 
 
 
 
 . b - i c o n - b o x   s v g   { 
 
         w i d t h :   5 2 p x ; 
 
         h e i g h t :   5 2 p x ; 
 
         s t r o k e - w i d t h :   1 . 5 ; 
 
 } 
 
 
 
 . b - i c o n - b o x   i m g   { 
 
         w i d t h :   5 2 p x ; 
 
         h e i g h t :   5 2 p x ; 
 
 } 
 
 
 
 . b e n e f i t - i c o n - c o l   p   { 
 
         f o n t - s i z e :   1 3 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         l i n e - h e i g h t :   1 8 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         m a r g i n :   0 ; 
 
 } 
 
 
 
 . b e n e f i t s - s h o w c a s e - r i g h t   { 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
 
 } 
 
 
 
 . b e n e f i t s - s h o w c a s e - r i g h t   i m g   { 
 
         m a x - h e i g h t :   4 3 0 p x ; 
 
         w i d t h :   1 0 0 % ; 
 
         m a x - w i d t h :   5 0 0 p x ; 
 
         o b j e c t - f i t :   c o n t a i n ; 
 
         d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 6 .   S U B S C R I B E   S E C T I O N 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . s u b s c r i b e - c a r d   { 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # F 3 F 5 F 9   0 % ,   # E 8 E D F 5   1 0 0 % ) ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         p a d d i n g :   4 8 p x   5 6 p x ; 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   1 . 1 f r   0 . 9 f r ; 
 
         g a p :   4 8 p x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 
 
 . s u b s c r i b e - c a r d - l e f t   h 3   { 
 
         f o n t - s i z e :   2 4 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         l i n e - h e i g h t :   3 2 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         m a r g i n :   0 ; 
 
         l e t t e r - s p a c i n g :   - 0 . 0 1 e m ; 
 
 } 
 
 
 
 . s u b s c r i b e - f o r m   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   1 2 p x ; 
 
         w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . s u b s c r i b e - i n p u t - w r a p p e r   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         b a c k g r o u n d - c o l o r :   # F F F F F F ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         p a d d i n g :   6 p x ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 ,   2 8 ,   2 9 ,   0 . 0 8 ) ; 
 
 } 
 
 
 
 . s u b s c r i b e - i n p u t - w r a p p e r   i n p u t   { 
 
         f l e x :   1 ; 
 
         b o r d e r :   n o n e ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         p a d d i n g :   1 0 p x   1 6 p x ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         o u t l i n e :   n o n e ; 
 
 } 
 
 
 
 . s u b s c r i b e - i n p u t - w r a p p e r   i n p u t : : p l a c e h o l d e r   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 . s u b s c r i b e - s u b m i t   { 
 
         d i s p l a y :   g r i d ; 
 
         p l a c e - i t e m s :   c e n t e r ; 
 
         w i d t h :   4 0 p x ; 
 
         h e i g h t :   4 0 p x ; 
 
         b a c k g r o u n d - c o l o r :   # 1 6 1 B 2 8 ; 
 
         c o l o r :   # F F F F F F ; 
 
         b o r d e r :   n o n e ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   b a c k g r o u n d - c o l o r   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . s u b s c r i b e - s u b m i t : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   # 0 B 0 E 1 7 ; 
 
 } 
 
 
 
 . s u b s c r i b e - s u b m i t   s v g   { 
 
         w i d t h :   2 0 p x ; 
 
         h e i g h t :   2 0 p x ; 
 
 } 
 
 
 
 . s u b s c r i b e - c o n s e n t   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
 
         g a p :   8 p x ; 
 
         f o n t - s i z e :   1 1 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         l i n e - h e i g h t :   1 5 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         u s e r - s e l e c t :   n o n e ; 
 
 } 
 
 
 
 . s u b s c r i b e - c o n s e n t   i n p u t [ t y p e = " c h e c k b o x " ]   { 
 
         m a r g i n - t o p :   2 p x ; 
 
         a c c e n t - c o l o r :   # 1 6 1 B 2 8 ; 
 
 } 
 
 
 
 . s u b s c r i b e - c o n s e n t   a   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 7 .   T I M E L I N E   S E C T I O N 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . t i m e l i n e   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         m a x - w i d t h :   1 2 0 0 p x ; 
 
         m a r g i n :   0   a u t o ; 
 
         p a d d i n g - l e f t :   0 ; 
 
         - - t i m e l i n e - n o d e - c e n t e r - y :   9 5 p x ; 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ; 
 
         g a p :   2 0 p x ; 
 
         a l i g n - i t e m s :   s t r e t c h ; 
 
 } 
 
 
 
 . t i m e l i n e : : b e f o r e   { 
 
         d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         m a r g i n - b o t t o m :   0 ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w : : a f t e r   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   v a r ( - - t i m e l i n e - n o d e - c e n t e r - y ) ; 
 
         l e f t :   5 0 % ; 
 
         w i d t h :   c a l c ( 1 0 0 %   +   2 0 p x ) ; 
 
         h e i g h t :   2 p x ; 
 
         b a c k g r o u n d - i m a g e :   r e p e a t i n g - l i n e a r - g r a d i e n t ( 
 
                 t o   r i g h t , 
 
                 r g b a ( 1 0 2 ,   1 1 2 ,   1 3 3 ,   0 . 3 )   0 , 
 
                 r g b a ( 1 0 2 ,   1 1 2 ,   1 3 3 ,   0 . 3 )   6 p x , 
 
                 t r a n s p a r e n t   6 p x , 
 
                 t r a n s p a r e n t   1 4 p x 
 
         ) ; 
 
         z - i n d e x :   0 ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w : l a s t - c h i l d   { 
 
         m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w : l a s t - c h i l d : : a f t e r   { 
 
         d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . t i m e l i n e - d a t e   { 
 
         p o s i t i o n :   s t a t i c ; 
 
         w i d t h :   1 0 0 % ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         p a d d i n g - t o p :   0 ; 
 
         m a r g i n - b o t t o m :   2 4 p x ; 
 
         h e i g h t :   4 8 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
 
 } 
 
 
 
 . t i m e l i n e - d a t e   s p a n   { 
 
         d i s p l a y :   b l o c k ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         l i n e - h e i g h t :   1 8 p x ; 
 
         c o l o r :   # A 0 A A B 5 ;   / *   L i g h t   g r a y   f o r   i n a c t i v e   * / 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         t r a n s i t i o n :   c o l o r   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . t i m e l i n e - d a t e   s t r o n g   { 
 
         d i s p l a y :   b l o c k ; 
 
         f o n t - s i z e :   2 0 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   # 8 C 9 4 A 1 ;   / *   G r a y   f o r   i n a c t i v e   * / 
 
         l i n e - h e i g h t :   2 6 p x ; 
 
         m a r g i n - t o p :   2 p x ; 
 
         t r a n s i t i o n :   c o l o r   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w : h o v e r : n o t ( . a c t i v e )   . t i m e l i n e - d a t e   s t r o n g   { 
 
         c o l o r :   # 5 5 5 E 6 D ;   / *   D a r k e r   g r a y   o n   h o v e r   * / 
 
 } 
 
 
 
 . t i m e l i n e - r o w : h o v e r : n o t ( . a c t i v e )   . t i m e l i n e - d a t e   s p a n   { 
 
         c o l o r :   # 8 C 9 4 A 1 ;   / *   D a r k e r   g r a y   o n   h o v e r   * / 
 
 } 
 
 
 
 . t i m e l i n e - n o d e   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         l e f t :   a u t o ; 
 
         t o p :   a u t o ; 
 
         w i d t h :   4 6 p x ; 
 
         h e i g h t :   4 6 p x ; 
 
         m a r g i n :   0   a u t o   2 4 p x   a u t o ; 
 
         b a c k g r o u n d - c o l o r :   # F F F F F F ; 
 
         b o r d e r :   2 p x   s o l i d   r g b a ( 1 0 2 ,   1 1 2 ,   1 3 3 ,   0 . 3 ) ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         z - i n d e x :   2 ; 
 
         d i s p l a y :   g r i d ; 
 
         p l a c e - i t e m s :   c e n t e r ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - n o r m a l ) ; 
 
 } 
 
 
 
 . t i m e l i n e - n o d e   s v g   { 
 
         w i d t h :   2 0 p x ; 
 
         h e i g h t :   2 0 p x ; 
 
         s t r o k e - w i d t h :   1 . 8 ; 
 
 } 
 
 
 
 . t i m e l i n e - c a r d   { 
 
         m i n - h e i g h t :   7 6 p x ; 
 
         b a c k g r o u n d - c o l o r :   # F 5 F 6 F 8 ; 
 
         b o r d e r :   1 p x   s o l i d   t r a n s p a r e n t ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         p a d d i n g :   1 6 p x   1 8 p x ; 
 
         b o x - s h a d o w :   n o n e ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - n o r m a l ) ; 
 
         t e x t - a l i g n :   l e f t ; 
 
         w i d t h :   1 0 0 % ; 
 
         f l e x - g r o w :   1 ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 
 
 . t i m e l i n e - c a r d   p   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         f o n t - s i z e :   1 1 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t e x t - t r a n s f o r m :   n o n e ; 
 
         l e t t e r - s p a c i n g :   0 ; 
 
         m a r g i n - b o t t o m :   4 p x ; 
 
 } 
 
 
 
 . t i m e l i n e - c a r d   h 3   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         l i n e - h e i g h t :   2 0 p x ; 
 
         m a r g i n - b o t t o m :   4 p x ; 
 
         m i n - h e i g h t :   4 0 p x ; 
 
 } 
 
 
 
 . t i m e l i n e - c a r d   s p a n   { 
 
         d i s p l a y :   b l o c k ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         l i n e - h e i g h t :   1 8 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w . a c t i v e   . t i m e l i n e - n o d e   { 
 
         b a c k g r o u n d - c o l o r :   # 2 2 7 7 F F ; 
 
         b o r d e r - c o l o r :   # 2 2 7 7 F F ; 
 
         c o l o r :   # F F F F F F ; 
 
         b o x - s h a d o w :   0   0   0   4 p x   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 1 5 ) ; 
 
 } 
 
 . t i m e l i n e - r o w . a c t i v e   . t i m e l i n e - c a r d   { 
 
         b o r d e r - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 6 5 ) ; 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 6 ) ; 
 
         b o x - s h a d o w :   0   8 p x   2 2 p x   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 8 ) ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w . a c t i v e   . t i m e l i n e - d a t e   s t r o n g   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w . a c t i v e   . t i m e l i n e - d a t e   s p a n   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         o p a c i t y :   0 . 8 ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w . a c t i v e   . t i m e l i n e - c a r d   p , 
 
 . t i m e l i n e - r o w . a c t i v e   . t i m e l i n e - c a r d   s p a n   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         o p a c i t y :   0 . 8 5 ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w . a c t i v e   . t i m e l i n e - c a r d   h 3   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . t i m e l i n e - c a r d - s p l i t   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 . 2 5 f r ; 
 
         g a p :   2 4 p x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 
 
 . t i m e l i n e - p h a s e   +   . t i m e l i n e - p h a s e   { 
 
         b o r d e r - l e f t :   1 p x   s o l i d   r g b a ( 2 5 ,   2 8 ,   2 9 ,   0 . 0 8 ) ; 
 
         p a d d i n g - l e f t :   2 4 p x ; 
 
 } 
 
 
 
 . t i m e l i n e - r o w . a c t i v e   . t i m e l i n e - p h a s e   +   . t i m e l i n e - p h a s e   { 
 
         b o r d e r - l e f t - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 4 ) ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 8 .   A I   K E Y   M O D U L E 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 : r o o t   { 
 
         - - c k m - i n k :   # 0 5 0 B 1 8 ; 
 
         - - c k m - s o f t :   # 5 F 6 B 7 A ; 
 
         - - c k m - b l u e :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         - - c k m - e a s e :   c u b i c - b e z i e r ( 0 . 2 2 ,   1 ,   0 . 3 6 ,   1 ) ; 
 
 } 
 
 
 
 # w o r k f l o w   . s e c t i o n - h e a d i n g   { 
 
         m a r g i n - b o t t o m :   2 4 p x ; 
 
 } 
 
 
 
 . c k m - m o d u l e , 
 
 . c k m - m o d u l e   *   { 
 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 
 } 
 
 
 
 . c k m - m o d u l e   { 
 
         w i d t h :   1 0 0 % ; 
 
         m a x - w i d t h :   1 4 6 4 p x ; 
 
         h e i g h t :   7 5 0 p x ; 
 
         o v e r f l o w :   v i s i b l e ; 
 
         c l i p - p a t h :   i n s e t ( - 1 5 0 p x   - 1 5 0 p x   0   - 1 5 0 p x ) ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         m a r g i n :   0   a u t o ; 
 
         c o l o r :   v a r ( - - c k m - i n k ) ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         b o x - s h a d o w :   n o n e ; 
 
 } 
 
 
 
 . c k m - t a b s   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   2 0 p x ; 
 
         l e f t :   5 0 % ; 
 
         z - i n d e x :   2 8 ; 
 
         d i s p l a y :   f l e x ; 
 
         g a p :   1 2 p x ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
 
 } 
 
 
 
 . c k m - t a b   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         p a d d i n g :   1 0 p x   2 2 p x ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . c k m - t a b : h o v e r   { 
 
         b o r d e r - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 3 5 ) ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . c k m - t a b . i s - a c t i v e   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 6 ) ; 
 
         b o r d e r - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 6 5 ) ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         b o x - s h a d o w :   0   8 p x   2 2 p x   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 8 ) ; 
 
 } 
 
 
 
 . c k m - c o m m a n d   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   8 2 p x ; 
 
         l e f t :   5 0 % ; 
 
         z - i n d e x :   2 4 ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         g a p :   1 2 p x ; 
 
         m i n - w i d t h :   4 2 0 p x ; 
 
         m a x - w i d t h :   6 8 0 p x ; 
 
         p a d d i n g :   1 4 p x   2 0 p x ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 8 ) ; 
 
         b o x - s h a d o w :   0   1 2 p x   3 5 p x   r g b a ( 2 5 ,   5 4 ,   1 0 5 ,   0 . 0 5 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 2 4 p x ) ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
 
 } 
 
 
 
 . c k m - c o m m a n d - d o t   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         f l e x :   0   0   a u t o ; 
 
         c o l o r :   v a r ( - - c k m - b l u e ) ; 
 
         m a r g i n - r i g h t :   4 p x ; 
 
 } 
 
 
 
 @ k e y f r a m e s   s o u n d w a v e   { 
 
         0 % ,   1 0 0 %   { 
 
                 t r a n s f o r m :   s c a l e Y ( 0 . 7 ) ; 
 
         } 
 
         5 0 %   { 
 
                 t r a n s f o r m :   s c a l e Y ( 1 . 3 ) ; 
 
         } 
 
 } 
 
 
 
 . r e c o r d - i c o n - s v g   { 
 
         o v e r f l o w :   v i s i b l e ; 
 
 } 
 
 
 
 . w a v e - l i n e   { 
 
         t r a n s f o r m - b o x :   f i l l - b o x ; 
 
         t r a n s f o r m - o r i g i n :   c e n t e r ; 
 
         a n i m a t i o n :   s o u n d w a v e   1 s   e a s e - i n - o u t   i n f i n i t e ; 
 
 } 
 
 
 
 . w a v e - 1 ,   . w a v e - 5   {   a n i m a t i o n - d e l a y :   0 s ;   } 
 
 . w a v e - 2 ,   . w a v e - 4   {   a n i m a t i o n - d e l a y :   0 . 2 s ;   } 
 
 . w a v e - 3   {   a n i m a t i o n - d e l a y :   0 . 4 s ;   } 
 
 
 
 . c k m - c o m m a n d   s p a n : l a s t - c h i l d   { 
 
         c o l o r :   # 1 1 1 8 2 7 ; 
 
         f o n t - s i z e :   1 7 p x ; 
 
         f o n t - w e i g h t :   6 8 0 ; 
 
         w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 
 
 . c k m - s t a g e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   1 7 2 p x ; 
 
         l e f t :   5 0 % ; 
 
         z - i n d e x :   1 0 ; 
 
         w i d t h :   1 1 6 0 p x ; 
 
         h e i g h t :   4 0 0 p x ; 
 
         p e r s p e c t i v e :   1 5 0 0 p x ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
 
 } 
 
 
 
 . c k m - s l i d e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         a s p e c t - r a t i o :   1 6   /   9 ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 6 ) ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 8 0 d e g ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 6 ) ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 7 8 ) ) ; 
 
         b o x - s h a d o w :   0   3 0 p x   8 0 p x   r g b a ( 1 7 ,   4 8 ,   9 4 ,   0 . 1 3 ) ,   0   2 p x   1 0 p x   r g b a ( 1 7 ,   4 8 ,   9 4 ,   0 . 0 4 ) ,   i n s e t   0   0   0   1 p x   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 6 ) ; 
 
         o p a c i t y :   0 ; 
 
         f i l t e r :   b l u r ( 1 2 p x ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 2 4 p x ) ; 
 
 } 
 
 
 
 . c k m - s l i d e   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
         o b j e c t - p o s i t i o n :   t o p ; 
 
         d i s p l a y :   b l o c k ; 
 
         b o r d e r - r a d i u s :   i n h e r i t ; 
 
 } 
 
 
 
 . c k m - s l i d e   i m g : n o t ( [ s r c ] ) , 
 
 . c k m - s l i d e   i m g [ s r c = " " ]   { 
 
         o p a c i t y :   0 ; 
 
 } 
 
 
 
 . c k m - s l i d e - m a i n   { 
 
         t o p :   0 ; 
 
         l e f t :   2 7 0 p x ; 
 
         z - i n d e x :   6 ; 
 
         w i d t h :   6 2 0 p x ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( 7 6 p x )   s c a l e ( 0 . 9 6 5 ) ; 
 
         a n i m a t i o n :   c k m - m a i n I n   0 . 8 6 s   v a r ( - - c k m - e a s e )   f o r w a r d s ; 
 
 } 
 
 
 
 . c k m - s l i d e - l e f t   { 
 
         t o p :   8 0 p x ; 
 
         l e f t :   2 0 p x ; 
 
         z - i n d e x :   2 ; 
 
         w i d t h :   4 0 0 p x ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( 8 8 p x )   r o t a t e ( - 7 d e g )   s c a l e ( 0 . 9 5 ) ; 
 
         a n i m a t i o n :   c k m - l e f t I n   0 . 8 6 s   v a r ( - - c k m - e a s e )   0 . 1 2 s   f o r w a r d s ; 
 
 } 
 
 
 
 . c k m - s l i d e - r i g h t   { 
 
         t o p :   8 0 p x ; 
 
         r i g h t :   2 0 p x ; 
 
         z - i n d e x :   2 ; 
 
         w i d t h :   4 0 0 p x ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( 8 8 p x )   r o t a t e ( 7 d e g )   s c a l e ( 0 . 9 5 ) ; 
 
         a n i m a t i o n :   c k m - r i g h t I n   0 . 8 6 s   v a r ( - - c k m - e a s e )   0 . 1 7 s   f o r w a r d s ; 
 
 } 
 
 
 
 
 
 
 
 @ k e y f r a m e s   c k m - m a i n I n   { 
 
         t o   { 
 
                 o p a c i t y :   1 ; 
 
                 f i l t e r :   b l u r ( 0 ) ; 
 
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 )   s c a l e ( 1 ) ; 
 
         } 
 
 } 
 
 
 
 @ k e y f r a m e s   c k m - l e f t I n   { 
 
         t o   { 
 
                 o p a c i t y :   0 . 5 ; 
 
                 f i l t e r :   b l u r ( 0 ) ; 
 
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 )   r o t a t e ( - 7 d e g )   s c a l e ( 1 ) ; 
 
         } 
 
 } 
 
 
 
 @ k e y f r a m e s   c k m - r i g h t I n   { 
 
         t o   { 
 
                 o p a c i t y :   0 . 5 ; 
 
                 f i l t e r :   b l u r ( 0 ) ; 
 
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 )   r o t a t e ( 7 d e g )   s c a l e ( 1 ) ; 
 
         } 
 
 } 
 
 
 
 . c k m - s l i d e - b o d y   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         h e i g h t :   1 0 0 % ; 
 
         p a d d i n g :   3 4 p x   3 8 p x ; 
 
 } 
 
 
 
 . c k m - k i c k e r   { 
 
         c o l o r :   # 7 B 8 7 9 7 ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         f o n t - w e i g h t :   7 6 0 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 1 2 e m ; 
 
 } 
 
 
 
 . c k m - c a r d - t i t l e   { 
 
         m a r g i n :   1 8 p x   0   0 ; 
 
         f o n t - s i z e :   4 8 p x ; 
 
         l i n e - h e i g h t :   0 . 9 8 ; 
 
         f o n t - w e i g h t :   7 9 0 ; 
 
         l e t t e r - s p a c i n g :   0 ; 
 
 } 
 
 
 
 . c k m - c a r d - t i t l e . s m a l l   { 
 
         f o n t - s i z e :   3 8 p x ; 
 
 } 
 
 
 
 . c k m - c a p t i o n   { 
 
         m a r g i n - t o p :   1 6 p x ; 
 
         c o l o r :   # 6 8 7 3 8 6 ; 
 
         f o n t - s i z e :   1 8 p x ; 
 
         l i n e - h e i g h t :   1 . 3 8 ; 
 
 } 
 
 
 
 . c k m - p i l l   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   8 p x ; 
 
         m a r g i n - t o p :   2 4 p x ; 
 
         p a d d i n g :   9 p x   1 3 p x ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         b a c k g r o u n d :   r g b a ( 2 3 4 ,   2 4 2 ,   2 5 5 ,   0 . 9 5 ) ; 
 
         c o l o r :   v a r ( - - c k m - b l u e ) ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         f o n t - w e i g h t :   7 6 0 ; 
 
 } 
 
 
 
 . c k m - o r b   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         r i g h t :   - 5 4 p x ; 
 
         b o t t o m :   - 7 0 p x ; 
 
         w i d t h :   3 4 0 p x ; 
 
         h e i g h t :   2 5 0 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b a c k g r o u n d : 
 
                 r a d i a l - g r a d i e n t ( c i r c l e   a t   3 8 %   2 5 % ,   r g b a ( 2 5 5 ,   2 0 5 ,   2 0 9 ,   0 . 5 6 ) ,   t r a n s p a r e n t   3 5 % ) , 
 
                 r a d i a l - g r a d i e n t ( c i r c l e   a t   5 6 %   5 0 % ,   r g b a ( 7 4 ,   1 3 6 ,   2 5 5 ,   0 . 3 8 ) ,   t r a n s p a r e n t   4 4 % ) , 
 
                 l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 3 3 ,   1 0 9 ,   2 5 5 ,   0 . 0 5 ) ,   r g b a ( 3 3 ,   1 0 9 ,   2 5 5 ,   0 . 1 8 ) ) ; 
 
 } 
 
 
 
 . c k m - o r b : : b e f o r e   { 
 
         c o n t e n t :   " " ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   9 0 p x ; 
 
         l e f t :   - 7 6 p x ; 
 
         w i d t h :   4 2 0 p x ; 
 
         h e i g h t :   1 1 0 p x ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   t r a n s p a r e n t ,   r g b a ( 3 3 ,   1 0 9 ,   2 5 5 ,   0 . 2 2 ) ,   r g b a ( 3 3 ,   1 0 9 ,   2 5 5 ,   0 . 0 6 ) ,   t r a n s p a r e n t ) ; 
 
         c l i p - p a t h :   p o l y g o n ( 0   6 7 % ,   1 8 %   4 4 % ,   3 6 %   6 4 % ,   5 2 %   3 1 % ,   7 4 %   5 9 % ,   1 0 0 %   3 8 % ,   1 0 0 %   1 0 0 % ,   0   1 0 0 % ) ; 
 
 } 
 
 
 
 . c k m - l i s t   { 
 
         d i s p l a y :   g r i d ; 
 
         g a p :   1 8 p x ; 
 
         m a r g i n - t o p :   2 4 p x ; 
 
 } 
 
 
 
 . c k m - r o w   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   1 2 p x ; 
 
         c o l o r :   # 1 7 2 0 3 3 ; 
 
         f o n t - s i z e :   1 6 p x ; 
 
         f o n t - w e i g h t :   7 2 0 ; 
 
 } 
 
 
 
 . c k m - i c o n   { 
 
         d i s p l a y :   g r i d ; 
 
         w i d t h :   3 4 p x ; 
 
         h e i g h t :   3 4 p x ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         p l a c e - i t e m s :   c e n t e r ; 
 
         b a c k g r o u n d :   # E D F 4 F F ; 
 
         c o l o r :   v a r ( - - c k m - b l u e ) ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         f l e x :   0   0   a u t o ; 
 
 } 
 
 
 
 . c k m - c h e c k   { 
 
         d i s p l a y :   i n l i n e - g r i d ; 
 
         w i d t h :   2 0 p x ; 
 
         h e i g h t :   2 0 p x ; 
 
         m a r g i n - r i g h t :   8 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         p l a c e - i t e m s :   c e n t e r ; 
 
         b a c k g r o u n d :   v a r ( - - c k m - b l u e ) ; 
 
         c o l o r :   # F F F F F F ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
 } 
 
 
 
 . c k m - m e t r i c   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         r i g h t :   3 6 p x ; 
 
         b o t t o m :   3 4 p x ; 
 
         d i s p l a y :   g r i d ; 
 
         w i d t h :   1 1 2 p x ; 
 
         h e i g h t :   1 1 2 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         p l a c e - i t e m s :   c e n t e r ; 
 
         b a c k g r o u n d :   c o n i c - g r a d i e n t ( v a r ( - - c k m - b l u e )   0   7 2 % ,   # E 6 E E F B   7 2 %   1 0 0 % ) ; 
 
 } 
 
 
 
 . c k m - m e t r i c : : a f t e r   { 
 
         c o n t e n t :   " 7 2 % " ; 
 
         d i s p l a y :   g r i d ; 
 
         w i d t h :   7 2 p x ; 
 
         h e i g h t :   7 2 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         p l a c e - i t e m s :   c e n t e r ; 
 
         b a c k g r o u n d :   # F F F F F F ; 
 
         f o n t - s i z e :   2 1 p x ; 
 
         f o n t - w e i g h t :   7 8 0 ; 
 
 } 
 
 
 
 . c k m - d e v i c e - z o n e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         r i g h t :   0 ; 
 
         b o t t o m :   - 1 5 p x ; 
 
         l e f t :   0 ; 
 
         z - i n d e x :   9 9 ; 
 
         h e i g h t :   3 2 0 p x ; 
 
         o v e r f l o w :   v i s i b l e ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
         t r a n s f o r m :   t r a n s l a t e Z ( 1 0 p x ) ; 
 
 } 
 
 
 
 . c k m - d e v i c e - s h a d o w   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         b o t t o m :   1 8 p x ; 
 
         l e f t :   5 0 % ; 
 
         w i d t h :   5 6 0 p x ; 
 
         h e i g h t :   6 4 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( e l l i p s e ,   r g b a ( 1 3 ,   2 8 ,   5 0 ,   0 . 2 5 ) ,   t r a n s p a r e n t   6 8 % ) ; 
 
         f i l t e r :   b l u r ( 1 6 p x ) ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
 
 } 
 
 
 
 . c k m - d e v i c e - w r a p   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         b o t t o m :   - 4 0 0 p x ; 
 
         l e f t :   5 0 % ; 
 
         w i d t h :   6 5 0 p x ; 
 
         h e i g h t :   6 5 0 p x ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
 
 } 
 
 
 
 . c k m - d e v i c e - i m g   { 
 
         d i s p l a y :   b l o c k ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         o b j e c t - f i t :   c o n t a i n ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         z - i n d e x :   2 ; 
 
         f i l t e r :   d r o p - s h a d o w ( 0   3 0 p x   4 5 p x   r g b a ( 7 ,   1 8 ,   3 8 ,   0 . 3 5 ) ) ; 
 
 } 
 
 
 
 . c k m - a i - h o t s p o t   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   2 5 p x ; 
 
         l e f t :   4 1 3 p x ; 
 
         z - i n d e x :   5 ; 
 
         w i d t h :   1 0 6 p x ; 
 
         h e i g h t :   6 6 p x ; 
 
 } 
 
 
 
 . c k m - a i - g l o w   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         i n s e t :   - 7 p x   - 7 p x   - 1 3 p x   - 1 3 p x ; 
 
         b o r d e r - r a d i u s :   1 0 0 p x ; 
 
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( e l l i p s e ,   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 8 5 ) ,   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 3 5 )   4 4 % ,   t r a n s p a r e n t   7 2 % ) ; 
 
         a n i m a t i o n :   c k m - b r e a t h   2 s   e a s e - i n - o u t   i n f i n i t e ; 
 
 } 
 
 
 
 @ k e y f r a m e s   c k m - b r e a t h   { 
 
         0 % , 
 
         1 0 0 %   { 
 
                 o p a c i t y :   0 . 5 ; 
 
                 t r a n s f o r m :   s c a l e ( 0 . 9 ) ; 
 
         } 
 
         5 0 %   { 
 
                 o p a c i t y :   1 ; 
 
                 t r a n s f o r m :   s c a l e ( 1 . 3 ) ; 
 
         } 
 
 } 
 
 
 
 . c k m - r i p p l e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   c a l c ( 5 0 %   +   3 p x ) ; 
 
         l e f t :   c a l c ( 5 0 %   -   3 p x ) ; 
 
         w i d t h :   8 0 p x ; 
 
         h e i g h t :   5 0 p x ; 
 
         b o r d e r :   2 p x   s o l i d   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 9 5 ) ; 
 
         b o x - s h a d o w :   0   0   1 2 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 8 ) ,   i n s e t   0   0   1 2 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 . 8 ) ; 
 
         b o r d e r - r a d i u s :   1 0 0 p x ; 
 
         o p a c i t y :   0 ; 
 
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % )   s c a l e ( 0 . 5 ) ; 
 
 } 
 
 
 
 . c k m - r i p p l e - o n e   { 
 
         a n i m a t i o n :   c k m - r i p p l e   1 . 9 s   i n f i n i t e ; 
 
 } 
 
 
 
 . c k m - r i p p l e - t w o   { 
 
         a n i m a t i o n :   c k m - r i p p l e   1 . 9 s   0 . 6 s   i n f i n i t e ; 
 
 } 
 
 
 
 . c k m - r i p p l e - t h r e e   { 
 
         a n i m a t i o n :   c k m - r i p p l e   1 . 9 s   1 . 2 s   i n f i n i t e ; 
 
 } 
 
 
 
 @ k e y f r a m e s   c k m - r i p p l e   { 
 
         0 %   { 
 
                 o p a c i t y :   1 ; 
 
                 b o r d e r - w i d t h :   3 p x ; 
 
                 b o x - s h a d o w :   0   0   2 4 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   1 ) ,   i n s e t   0   0   2 4 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   1 ) ; 
 
                 t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % )   s c a l e ( 0 . 6 ) ; 
 
         } 
 
         1 0 0 %   { 
 
                 o p a c i t y :   0 ; 
 
                 b o r d e r - w i d t h :   0 p x ; 
 
                 b o x - s h a d o w :   0   0   0 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 ) ,   i n s e t   0   0   0 p x   r g b a ( 3 0 ,   1 4 4 ,   2 5 5 ,   0 ) ; 
 
                 t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % )   s c a l e ( 2 . 6 ) ; 
 
         } 
 
 } 
 
 
 
 . c k m - f i n g e r - i m g   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   - 5 . 7 % ; 
 
         l e f t :   5 5 . 1 % ; 
 
         z - i n d e x :   2 0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   a u t o ; 
 
         f i l t e r :   d r o p - s h a d o w ( 0   1 0 p x   1 8 p x   r g b a ( 8 8 ,   4 8 ,   3 0 ,   0 . 1 8 ) ) ; 
 
 } 
 
 
 
 @ k e y f r a m e s   c k m - f i n g e r   { 
 
         0 % , 
 
         1 0 0 %   { 
 
                 t r a n s f o r m :   t r a n s l a t e ( 0 ,   0 ) ; 
 
         } 
 
         5 0 %   { 
 
                 t r a n s f o r m :   t r a n s l a t e ( 1 4 p x ,   1 4 p x ) ; 
 
         } 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       0 9 .   S C E N A R I O S   F O C U S   C A R O U S E L 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 
 
 . s c e n a r i o - f o c u s - g a l l e r y   { 
 
         w i d t h :   1 0 0 % ; 
 
         m a x - w i d t h :   1 2 0 0 p x ; 
 
         m a r g i n :   0   a u t o ; 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         a l i g n - i t e m s :   s t r e t c h ; 
 
         g a p :   c l a m p ( 1 2 p x ,   1 . 4 v w ,   2 2 p x ) ; 
 
         o v e r f l o w :   v i s i b l e ; 
 
         p a d d i n g :   8 p x   0   0 ; 
 
 } 
 
 
 
 . s c e n a r i o - p h o t o   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         f l e x :   1 ; 
 
         h e i g h t :   3 8 0 p x ; 
 
         m i n - w i d t h :   0 ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         b o r d e r :   0 ; 
 
         o p a c i t y :   0 . 6 5 ; 
 
         b o x - s h a d o w :   0   1 0 p x   2 5 p x   r g b a ( 1 6 ,   2 4 ,   4 0 ,   0 . 0 6 ) ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   
 
                 f l e x   8 5 0 m s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) , 
 
                 h e i g h t   8 5 0 m s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) , 
 
                 o p a c i t y   5 0 0 m s   e a s e , 
 
                 b o x - s h a d o w   5 0 0 m s   e a s e ; 
 
 } 
 
 
 
 . s c e n a r i o - p h o t o   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         d i s p l a y :   b l o c k ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
 } 
 
 
 
 . s c e n a r i o - p h o t o . a c t i v e   { 
 
         f l e x :   3 . 2 ; 
 
         b o x - s h a d o w :   0   2 0 p x   4 5 p x   r g b a ( 1 6 ,   2 4 ,   4 0 ,   0 . 1 2 ) ; 
 
         o p a c i t y :   1 ; 
 
         z - i n d e x :   2 ; 
 
 } 
 
 
 
 . s c e n a r i o - o v e r l a y   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         i n s e t :   0 ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   t o p ,   r g b a ( 0 ,   0 ,   0 ,   0 . 7 2 )   0 % ,   r g b a ( 0 ,   0 ,   0 ,   0 . 1 8 )   5 0 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   f l e x - e n d ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
 
         p a d d i n g :   2 4 p x ; 
 
         c o l o r :   # F F F F F F ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
         o p a c i t y :   0 . 8 5 ; 
 
         t e x t - a l i g n :   l e f t ; 
 
         t r a n s i t i o n :   o p a c i t y   0 . 5 s   e a s e ; 
 
 } 
 
 
 
 . s c e n a r i o - p h o t o . a c t i v e   . s c e n a r i o - o v e r l a y   { 
 
         o p a c i t y :   1 ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   t o p ,   r g b a ( 0 ,   0 ,   0 ,   0 . 8 2 )   0 % ,   r g b a ( 0 ,   0 ,   0 ,   0 . 2 8 )   6 0 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
 
 } 
 
 
 
 . s c e n a r i o - m e t a   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 
 
 . s c e n a r i o - m e t a   h 3   { 
 
         m a r g i n :   0 ; 
 
         f o n t - s i z e :   2 0 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   # F F F F F F ; 
 
         l e t t e r - s p a c i n g :   0 . 0 2 e m ; 
 
         t e x t - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 , 0 , 0 , 0 . 1 5 ) ; 
 
         t e x t - a l i g n :   l e f t ; 
 
 } 
 
 
 
 . s c e n a r i o - d e s c   { 
 
         m a r g i n :   0 ; 
 
         f o n t - s i z e :   1 3 . 5 p x ; 
 
         l i n e - h e i g h t :   1 . 4 5 ; 
 
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 2 ) ; 
 
         m a x - w i d t h :   3 2 0 p x ; 
 
         o p a c i t y :   0 ; 
 
         m a x - h e i g h t :   0 ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( 1 0 p x ) ; 
 
         t e x t - a l i g n :   l e f t ; 
 
         t r a n s i t i o n :   
 
                 o p a c i t y   0 . 6 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ,   
 
                 m a x - h e i g h t   0 . 6 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ,   
 
                 m a r g i n - t o p   0 . 6 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) , 
 
                 t r a n s f o r m   0 . 6 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ; 
 
 } 
 
 
 
 . s c e n a r i o - p h o t o . a c t i v e   . s c e n a r i o - d e s c   { 
 
         o p a c i t y :   1 ; 
 
         m a x - h e i g h t :   1 2 0 p x ; 
 
         m a r g i n - t o p :   6 p x ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
 
         t r a n s i t i o n - d e l a y :   0 . 1 2 s ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 0 .   O U T P U T   G A L L E R Y   ( A d d   E y e - C a t c h i n g   E f f e c t s   s t y l e ) 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . e f f e c t s - c o n t a i n e r   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - b l o c k ) ; 
 
         p a d d i n g :   4 0 p x ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   2 4 p x ; 
 
 } 
 
 
 
 . e f f e c t s - p r e v i e w   { 
 
         w i d t h :   1 0 0 % ; 
 
         m a x - w i d t h :   8 0 0 p x ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
 } 
 
 
 
 . e f f e c t s - p r e v i e w   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         d i s p l a y :   b l o c k ; 
 
         t r a n s i t i o n :   o p a c i t y   0 . 2 s   e a s e ; 
 
 } 
 
 
 
 . e f f e c t s - t a b s   { 
 
         d i s p l a y :   f l e x ; 
 
         g a p :   1 2 p x ; 
 
         m a r g i n - t o p :   2 4 p x ; 
 
         w i d t h :   1 0 0 % ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
 } 
 
 
 
 . e f f e c t s - t a b   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         p a d d i n g :   1 0 p x   2 2 p x ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . e f f e c t s - t a b : h o v e r   { 
 
         b o r d e r - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 3 5 ) ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . e f f e c t s - t a b . a c t i v e   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 6 ) ; 
 
         b o r d e r - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 6 5 ) ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         b o x - s h a d o w :   0   8 p x   2 2 p x   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 8 ) ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 1 .   A C C E S S O R Y   E C O S Y S T E M   C A R D   G R I D 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . e c o s y s t e m - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ; 
 
         g a p :   2 4 p x ; 
 
 } 
 
 
 
 . e c o s y s t e m - c a r d   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - c a r d ) ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - b l o c k ) ; 
 
         p a d d i n g :   2 4 p x ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         b o x - s h a d o w :   v a r ( - - s h a d o w - s m ) ; 
 
         t r a n s i t i o n :   t r a n s f o r m   v a r ( - - t r a n s i t i o n - n o r m a l ) ; 
 
 } 
 
 
 
 . e c o s y s t e m - c a r d : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 
 } 
 
 
 
 . e c o s y s t e m - m e d i a   { 
 
         w i d t h :   1 0 0 % ; 
 
         m a r g i n - b o t t o m :   1 6 p x ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         p a d d i n g :   1 6 p x ; 
 
 } 
 
 
 
 . e c o s y s t e m - m e d i a   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . e c o s y s t e m - i n f o   . c o l o r - t a g   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         p a d d i n g :   2 p x   8 p x ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         f o n t - s i z e :   1 0 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
 } 
 
 
 
 . e c o s y s t e m - i n f o   h 3   { 
 
         f o n t - s i z e :   1 5 p x ; 
 
         m a r g i n - b o t t o m :   6 p x ; 
 
 } 
 
 
 
 . e c o s y s t e m - i n f o   . p r i c e   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 2 .   A U D I E N C E   R O T A T O R 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . a u d i e n c e - r o t a t o r   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   m i n m a x ( 0 ,   0 . 8 5 f r )   m i n m a x ( 3 6 0 p x ,   1 . 1 5 f r ) ; 
 
         a l i g n - i t e m s :   s t r e t c h ; 
 
         g a p :   c l a m p ( 4 2 p x ,   5 v w ,   7 6 p x ) ; 
 
         m a r g i n - t o p :   c l a m p ( 2 8 p x ,   4 v w ,   5 6 p x ) ; 
 
 } 
 
 
 
 . a u d i e n c e - v i s u a l   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
         - w e b k i t - m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   b o t t o m ,   t r a n s p a r e n t   0 % ,   # 0 0 0   1 5 % ,   # 0 0 0   8 5 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
 
         m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   b o t t o m ,   t r a n s p a r e n t   0 % ,   # 0 0 0   1 5 % ,   # 0 0 0   8 5 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
 
 } 
 
 
 
 . a u d i e n c e - v i s u a l - i m a g e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         l e f t :   8 % ; 
 
         w i d t h :   8 4 % ; 
 
         h e i g h t :   5 6 % ; 
 
         d i s p l a y :   b l o c k ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         b o x - s h a d o w :   0   8 p x   2 4 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 
         t r a n s i t i o n :   o p a c i t y   4 5 0 m s   c u b i c - b e z i e r ( 0 . 2 5 ,   1 ,   0 . 5 ,   1 ) ,   t r a n s f o r m   4 5 0 m s   c u b i c - b e z i e r ( 0 . 2 5 ,   1 ,   0 . 5 ,   1 ) ,   f i l t e r   4 5 0 m s   c u b i c - b e z i e r ( 0 . 2 5 ,   1 ,   0 . 5 ,   1 ) ; 
 
 } 
 
 
 
 . a u d i e n c e - v i s u a l - i m a g e . a c t i v e   { 
 
         t o p :   5 0 % ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % )   s c a l e ( 1 ) ; 
 
         z - i n d e x :   3 ; 
 
         o p a c i t y :   1 ; 
 
         f i l t e r :   n o n e ; 
 
         / *   S q u a r e   c r o p   * / 
 
         h e i g h t :   a u t o   ! i m p o r t a n t ; 
 
         a s p e c t - r a t i o :   1   /   1 ; 
 
 } 
 
 
 
 . a u d i e n c e - v i s u a l - i m a g e . p r e v   { 
 
         t o p :   0 ; 
 
         t r a n s f o r m :   s c a l e ( 0 . 9 )   t r a n s l a t e Y ( 0 ) ; 
 
         t r a n s f o r m - o r i g i n :   t o p   c e n t e r ; 
 
         z - i n d e x :   1 ; 
 
         o p a c i t y :   0 . 4 ; 
 
         f i l t e r :   b l u r ( 4 p x ) ; 
 
 } 
 
 
 
 . a u d i e n c e - v i s u a l - i m a g e . n e x t   { 
 
         b o t t o m :   0 ; 
 
         t r a n s f o r m :   s c a l e ( 0 . 9 )   t r a n s l a t e Y ( 0 ) ; 
 
         t r a n s f o r m - o r i g i n :   b o t t o m   c e n t e r ; 
 
         z - i n d e x :   2 ; 
 
         o p a c i t y :   0 . 4 ; 
 
         f i l t e r :   b l u r ( 4 p x ) ; 
 
 } 
 
 
 
 . a u d i e n c e - v i s u a l - i m a g e . i s - c h a n g i n g   { 
 
         o p a c i t y :   0 . 1 5 ; 
 
 } 
 
 
 
 . a u d i e n c e - v i s u a l - i m a g e . a c t i v e . i s - c h a n g i n g   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % )   s c a l e ( 0 . 9 2 ) ; 
 
         f i l t e r :   b l u r ( 2 p x ) ; 
 
 } 
 
 
 
 . a u d i e n c e - v i s u a l - i m a g e . p r e v . i s - c h a n g i n g   { 
 
         t r a n s f o r m :   s c a l e ( 0 . 8 5 )   t r a n s l a t e Y ( 1 0 p x ) ; 
 
 } 
 
 
 
 . a u d i e n c e - v i s u a l - i m a g e . n e x t . i s - c h a n g i n g   { 
 
         t r a n s f o r m :   s c a l e ( 0 . 8 5 )   t r a n s l a t e Y ( - 1 0 p x ) ; 
 
 } 
 
 
 
 . a u d i e n c e - l i s t   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   0 ; 
 
         m a x - h e i g h t :   c l a m p ( 4 6 0 p x ,   3 8 v w ,   5 8 0 p x ) ; 
 
         o v e r f l o w - y :   a u t o ; 
 
         p a d d i n g :   9 0 p x   0 ; 
 
         o v e r s c r o l l - b e h a v i o r :   a u t o ; 
 
         s c r o l l b a r - w i d t h :   n o n e ; 
 
         - m s - o v e r f l o w - s t y l e :   n o n e ; 
 
         - w e b k i t - m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   b o t t o m ,   t r a n s p a r e n t   0 ,   # 0 0 0   9 0 p x ,   # 0 0 0   c a l c ( 1 0 0 %   -   9 0 p x ) ,   t r a n s p a r e n t   1 0 0 % ) ; 
 
         m a s k - i m a g e :   l i n e a r - g r a d i e n t ( t o   b o t t o m ,   t r a n s p a r e n t   0 ,   # 0 0 0   9 0 p x ,   # 0 0 0   c a l c ( 1 0 0 %   -   9 0 p x ) ,   t r a n s p a r e n t   1 0 0 % ) ; 
 
 } 
 
 
 
 . a u d i e n c e - l i s t : : - w e b k i t - s c r o l l b a r   { 
 
         d i s p l a y :   n o n e ; 
 
         w i d t h :   0 ; 
 
         h e i g h t :   0 ; 
 
 } 
 
 
 
 . a u d i e n c e - i t e m   { 
 
         d i s p l a y :   b l o c k ; 
 
         f l e x :   0   0   a u t o   ! i m p o r t a n t ; 
 
         w i d t h :   1 0 0 % ; 
 
         m i n - h e i g h t :   a u t o ; 
 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 
         p a d d i n g :   2 2 p x   1 6 p x ; 
 
         b o r d e r :   0 ; 
 
         b o r d e r - b o t t o m :   1 p x   d a s h e d   r g b a ( 2 5 ,   2 8 ,   2 9 ,   0 . 0 8 ) ; 
 
         b o r d e r - r a d i u s :   0 ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         t e x t - a l i g n :   l e f t ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   b a c k g r o u n d - c o l o r   v a r ( - - t r a n s i t i o n - f a s t ) ,   c o l o r   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . a u d i e n c e - i t e m : l a s t - c h i l d   { 
 
         b o r d e r - b o t t o m :   n o n e ; 
 
 } 
 
 
 
 . a u d i e n c e - i t e m : h o v e r , 
 
 . a u d i e n c e - i t e m : f o c u s - v i s i b l e   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 3 5 ) ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
 } 
 
 
 
 . a u d i e n c e - i t e m : f o c u s - v i s i b l e   { 
 
         o u t l i n e :   2 p x   s o l i d   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 3 2 ) ; 
 
         o u t l i n e - o f f s e t :   2 p x ; 
 
 } 
 
 
 
 . a u d i e n c e - c o p y   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
 
         g a p :   6 p x ; 
 
 } 
 
 
 
 . a u d i e n c e - r o l e - b a d g e   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         i s o l a t i o n :   i s o l a t e ; 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         p a d d i n g :   0   0   6 p x   0 ; 
 
         b o r d e r - r a d i u s :   0 ; 
 
         m i n - h e i g h t :   a u t o ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         m a r g i n - b o t t o m :   2 p x ; 
 
 } 
 
 
 
 . a u d i e n c e - r o l e - b a d g e : : a f t e r   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         b o t t o m :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   3 p x ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   # 0 A 6 9 F E ,   # 3 2 E 8 D 6 ) ; 
 
         t r a n s f o r m :   s c a l e X ( 0 ) ; 
 
         t r a n s f o r m - o r i g i n :   l e f t ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         o p a c i t y :   0 ; 
 
         t r a n s i t i o n :   o p a c i t y   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . a u d i e n c e - r o l e   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         z - i n d e x :   1 ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         l i n e - h e i g h t :   1 . 2 ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   i n h e r i t ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 0 4 e m ; 
 
 } 
 
 
 
 . a u d i e n c e - r o l e - p r o g r e s s   { 
 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a u d i e n c e - c o p y   >   s t r o n g   { 
 
         f o n t - s i z e :   2 2 p x ; 
 
         l i n e - h e i g h t :   1 . 3 ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         m a r g i n - t o p :   4 p x ; 
 
 } 
 
 
 
 . a u d i e n c e - c o p y   >   s p a n : l a s t - c h i l d   { 
 
         d i s p l a y :   b l o c k ; 
 
         m a x - w i d t h :   4 4 0 p x ; 
 
         f o n t - s i z e :   1 6 p x ; 
 
         l i n e - h e i g h t :   1 . 6 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         m a r g i n - t o p :   4 p x ; 
 
 } 
 
 
 
 . a u d i e n c e - i t e m . a c t i v e   { 
 
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
 } 
 
 
 
 . a u d i e n c e - i t e m . a c t i v e   . a u d i e n c e - r o l e - b a d g e   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . a u d i e n c e - i t e m . a c t i v e   . a u d i e n c e - r o l e - b a d g e : : a f t e r   { 
 
         o p a c i t y :   1 ; 
 
         a n i m a t i o n :   a u d i e n c e L i n e P r o g r e s s   5 . 4 s   l i n e a r   f o r w a r d s ; 
 
 } 
 
 
 
 @ k e y f r a m e s   a u d i e n c e L i n e P r o g r e s s   { 
 
         f r o m   { 
 
                 t r a n s f o r m :   s c a l e X ( 0 ) ; 
 
         } 
 
         t o   { 
 
                 t r a n s f o r m :   s c a l e X ( 1 ) ; 
 
         } 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 3 .   C O M P L I A N C E   &   C O M P A R I S O N   T A B L E   ( 忡ji? 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . c o m p l i a n c e - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ; 
 
         g a p :   2 4 p x ; 
 
 } 
 
 
 
 . c o m p l i a n c e - c a r d   { 
 
         b a c k g r o u n d - c o l o r :   # F 8 F A F C ; 
 
         b o r d e r :   n o n e ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - b l o c k ) ; 
 
         p a d d i n g :   4 8 p x   2 4 p x ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         b o x - s h a d o w :   n o n e ; 
 
 } 
 
 
 
 . c o m p l i a n c e - c a r d   i m g   { 
 
         h e i g h t :   1 0 8 p x ; 
 
         m a r g i n :   0   a u t o   2 0 p x   a u t o ; 
 
 } 
 
 
 
 . c o m p l i a n c e - c a r d   h 3   { 
 
         m a r g i n - b o t t o m :   4 p x ; 
 
         f o n t - s i z e :   2 0 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
 } 
 
 
 
 . c o m p l i a n c e - c a r d   p   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
 } 
 
 
 
 . c o m p l i a n c e - c a r d   s p a n   { 
 
         f o n t - s i z e :   1 3 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 . c o m p a r i s o n - s c r o l l - w r a p p e r   { 
 
         w i d t h :   1 0 0 % ; 
 
         o v e r f l o w - x :   a u t o ; 
 
         s c r o l l b a r - w i d t h :   t h i n ; 
 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
 
         m a r g i n - b o t t o m :   2 0 p x ; 
 
         p a d d i n g :   1 0 p x   4 p x ; 
 
 } 
 
 . c o m p a r i s o n - s c r o l l - w r a p p e r : : - w e b k i t - s c r o l l b a r   { 
 
         - w e b k i t - a p p e a r a n c e :   n o n e ; 
 
         h e i g h t :   8 p x ; 
 
 } 
 
 . c o m p a r i s o n - s c r o l l - w r a p p e r : : - w e b k i t - s c r o l l b a r - t r a c k   { 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
 } 
 
 . c o m p a r i s o n - s c r o l l - w r a p p e r : : - w e b k i t - s c r o l l b a r - t h u m b   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 
         b o r d e r - r a d i u s :   1 0 p x ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d s - c o n t a i n e r   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   1 . 2 5 f r   1 f r   1 f r   1 f r ; 
 
         g a p :   1 6 p x ; 
 
         a l i g n - i t e m s :   s t r e t c h ; 
 
         w i d t h :   1 0 0 % ; 
 
         m i n - w i d t h :   9 5 0 p x ; 
 
 } 
 
 
 
 . c o m p a r i s o n - f e a t u r e s - c o l   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 
 
 . c o m p - f e a t u r e - h e a d e r   { 
 
         h e i g h t :   1 4 0 p x ; 
 
         m a r g i n - t o p :   2 p x ; 
 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   f l e x - e n d ; 
 
         p a d d i n g - b o t t o m :   2 4 p x ; 
 
         f o n t - s i z e :   1 5 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         b o r d e r - b o t t o m :   2 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
 } 
 
 
 
 . c o m p - f e a t u r e - c e l l   { 
 
         h e i g h t :   4 0 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
 
         p a d d i n g - r i g h t :   1 2 p x ; 
 
 } 
 
 
 
 . c o m p - f e a t u r e - c e l l : n t h - c h i l d ( e v e n )   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 1 5 ) ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - c a r d ) ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         b o x - s h a d o w :   0   4 p x   1 8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 3 ) ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
 
         b o x - s h a d o w :   0   1 2 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 7 ) ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d . f e a t u r e d   { 
 
         b o r d e r :   2 p x   s o l i d   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         b o x - s h a d o w :   0   8 p x   3 0 p x   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 8 ) ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d . f e a t u r e d : h o v e r   { 
 
         b o x - s h a d o w :   0   1 6 p x   4 5 p x   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 1 6 ) ; 
 
 } 
 
 
 
 . c o m p - c a r d - h e a d e r   { 
 
         h e i g h t :   1 4 0 p x ; 
 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 
         p a d d i n g :   2 0 p x   1 2 p x   1 6 p x   1 2 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         g a p :   8 p x ; 
 
         b o r d e r - b o t t o m :   2 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d . f e a t u r e d   . c o m p - c a r d - h e a d e r   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 3 ) ; 
 
         b o r d e r - b o t t o m - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 1 5 ) ; 
 
 } 
 
 
 
 . c o m p - b a d g e   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         f o n t - s i z e :   1 0 p x ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 8 p x ; 
 
         p a d d i n g :   4 p x   1 0 p x ; 
 
         b o r d e r - r a d i u s :   1 0 0 p x ; 
 
         l i n e - h e i g h t :   1 ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d . f e a t u r e d   . c o m p - b a d g e   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         c o l o r :   # F F F F F F ; 
 
 } 
 
 
 
 . c o m p - b a d g e . c o m p e t i t o r   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 . c o m p - c a r d - i c o n   { 
 
         h e i g h t :   4 8 p x ; 
 
         w i d t h :   4 8 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
         c o l o r :   # 0 0 0 0 0 0 ; 
 
 } 
 
 
 
 . c o m p - c a r d - i c o n   s v g   { 
 
         w i d t h :   4 8 p x ; 
 
         h e i g h t :   4 8 p x ; 
 
 } 
 
 
 
 . c o m p - c a r d - t i t l e   { 
 
         f o n t - s i z e :   1 3 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         m a r g i n :   0 ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d . f e a t u r e d   . c o m p - c a r d - t i t l e   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . c o m p - v a l - c e l l   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         h e i g h t :   4 0 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . c o m p - v a l - c e l l : l a s t - c h i l d   { 
 
         b o r d e r - b o t t o m :   0 ; 
 
 } 
 
 
 
 . c o m p - v a l - c e l l : n t h - c h i l d ( e v e n )   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 1 5 ) ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d . f e a t u r e d   . c o m p - v a l - c e l l . y e s   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 1 5 ) ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d . f e a t u r e d   . c o m p - v a l - c e l l : n t h - c h i l d ( e v e n ) . y e s   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 3 5 ) ; 
 
 } 
 
 
 
 . c o m p a r i s o n - c a r d . f e a t u r e d   . c o m p - v a l - c e l l   { 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
 } 
 
 
 
 / *   C h e c k   /   C r o s s   i c o n   s p a n s   u s e d   i n   b o t h   c o m p a r i s o n   t a b l e s   * / 
 
 . c h e c k - i c o n , 
 
 . c r o s s - i c o n   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         w i d t h :   1 8 p x ; 
 
         h e i g h t :   1 8 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         v e r t i c a l - a l i g n :   m i d d l e ; 
 
 } 
 
 
 
 . c h e c k - i c o n   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 C s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' 0   0   2 4   2 4 '   f i l l = ' n o n e '   s t r o k e = ' w h i t e '   s t r o k e - w i d t h = ' 3 '   s t r o k e - l i n e c a p = ' r o u n d '   s t r o k e - l i n e j o i n = ' r o u n d ' % 3 E % 3 C p o l y l i n e   p o i n t s = ' 2 0   6   9   1 7   4   1 2 ' / % 3 E % 3 C / s v g % 3 E " ) ; 
 
         b a c k g r o u n d - s i z e :   1 1 p x   1 1 p x ; 
 
         b a c k g r o u n d - r e p e a t :   n o - r e p e a t ; 
 
         b a c k g r o u n d - p o s i t i o n :   c e n t e r ; 
 
 } 
 
 
 
 . c r o s s - i c o n : : a f t e r   { 
 
         c o n t e n t :   ' A? ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         c o l o r :   # 8 C 9 4 A 1 ; 
 
         l i n e - h e i g h t :   1 ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
 } 
 
 
 
 / *   C e n t e r   a l l   n o n - f i r s t   c o l u m n s   i n   c o m p a r i s o n   t a b l e s   * / 
 
 . c o m p a r i s o n - t a b l e   t h : n o t ( : f i r s t - c h i l d )   t d , 
 
 . p l a n - t a b l e   t h : n o t ( : f i r s t - c h i l d ) , 
 
 . p l a n - t a b l e   t d : n o t ( : f i r s t - c h i l d )   { 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 4 .   I N T E R A C T I V E   P R E - S A L E   D E P O S I T   C O N F I G U R A T O R 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . c o n f i g u r a t o r - c a r d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   1 . 1 f r   0 . 9 f r ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - c a r d ) ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - b l o c k ) ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
 
 } 
 
 
 
 . c o n f i g u r a t o r - v i s u a l s   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         p a d d i n g :   4 8 p x ; 
 
         b o r d e r - r i g h t :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
 } 
 
 
 
 . c o n f i g u r a t o r - v i s u a l - w r a p p e r   { 
 
         w i d t h :   1 0 0 % ; 
 
         m a x - w i d t h :   3 8 0 p x ; 
 
 } 
 
 
 
 . c o n f i g u r a t o r - v i s u a l - w r a p p e r   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         d i s p l a y :   b l o c k ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ; 
 
 } 
 
 
 
 . c o n f i g u r a t o r - w i d g e t   { 
 
         p a d d i n g :   4 0 p x ; 
 
 } 
 
 
 
 . w i d g e t - b l o c k   { 
 
         m a r g i n - b o t t o m :   2 4 p x ; 
 
 } 
 
 
 
 . w i d g e t - b l o c k : l a s t - o f - t y p e   { 
 
         m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . b l o c k - l a b e l   { 
 
         d i s p l a y :   b l o c k ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
 
         m a r g i n - b o t t o m :   1 2 p x ; 
 
 } 
 
 
 
 / *   C o l o r   O p t i o n s   * / 
 
 . c o l o r - p i c k e r   { 
 
         d i s p l a y :   f l e x ; 
 
         g a p :   1 2 p x ; 
 
 } 
 
 
 
 . c o l o r - o p t i o n - b t n   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         w i d t h :   3 6 p x ; 
 
         h e i g h t :   3 6 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b o r d e r :   2 p x   s o l i d   t r a n s p a r e n t ; 
 
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   b o r d e r - c o l o r   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . c o l o r - o p t i o n - b t n . a c t i v e   { 
 
         b o r d e r - c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
 } 
 
 
 
 . c o l o r - c i r c l e   { 
 
         w i d t h :   2 6 p x ; 
 
         h e i g h t :   2 6 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b o x - s h a d o w :   i n s e t   0   2 p x   4 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
 
 } 
 
 
 
 . c o l o r - c i r c l e . b l a c k   {   b a c k g r o u n d - c o l o r :   # 1 a 1 c 1 e ;   } 
 
 . c o l o r - c i r c l e . b u r g u n d y   {   b a c k g r o u n d - c o l o r :   # 7 b 1 2 2 7 ;   } 
 
 . c o l o r - c i r c l e . s i l v e r   {   b a c k g r o u n d - c o l o r :   # d 1 d 5 d b ;   } 
 
 
 
 / *   P a c k a g e   S e l e c t o r   * / 
 
 . p a c k - c h o i c e s   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   1 2 p x ; 
 
 } 
 
 
 
 . p a c k - c h o i c e - c a r d   { 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         p a d d i n g :   1 6 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . p a c k - c h o i c e - c a r d : h o v e r   { 
 
         b o r d e r - c o l o r :   v a r ( - - c o l o r - b o r d e r - h o v e r ) ; 
 
 } 
 
 
 
 . p a c k - c h o i c e - c a r d . a c t i v e   { 
 
         b o r d e r - c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 2 ) ; 
 
 } 
 
 
 
 . p a c k - c h o i c e - c a r d   i n p u t [ t y p e = " r a d i o " ]   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         o p a c i t y :   0 ; 
 
 } 
 
 
 
 . p a c k - c h o i c e - l a b e l   { 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . p a c k - l e f t - s i d e   { 
 
         d i s p l a y :   f l e x ; 
 
         g a p :   1 2 p x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 
 
 . p a c k - r a d i o - i n d i c a t o r   { 
 
         w i d t h :   1 8 p x ; 
 
         h e i g h t :   1 8 p x ; 
 
         b o r d e r :   2 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . p a c k - c h o i c e - c a r d . a c t i v e   . p a c k - r a d i o - i n d i c a t o r   { 
 
         b o r d e r - c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . p a c k - c h o i c e - c a r d . a c t i v e   . p a c k - r a d i o - i n d i c a t o r : : a f t e r   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         i n s e t :   3 p x ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
 } 
 
 
 
 . p a c k - i n f o - b l o c k   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 
 
 . p a c k - t i t l e   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
 } 
 
 
 
 . p a c k - s a v e - b a d g e   { 
 
         a l i g n - s e l f :   f l e x - s t a r t ; 
 
         p a d d i n g :   2 p x   8 p x ; 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 4 8 ,   5 8 ,   5 8 ,   0 . 1 ) ; 
 
         c o l o r :   # F 8 3 A 3 A ; 
 
         f o n t - s i z e :   1 0 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         m a r g i n - b o t t o m :   4 p x ; 
 
 } 
 
 
 
 . p a c k - r i g h t - s i d e   { 
 
         t e x t - a l i g n :   r i g h t ; 
 
 } 
 
 
 
 . p a c k - t a g   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         p a d d i n g :   2 p x   8 p x ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         c o l o r :   # F F F F F F ; 
 
         f o n t - s i z e :   1 0 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         m a r g i n - b o t t o m :   4 p x ; 
 
 } 
 
 
 
 . p a c k - p r i c e   { 
 
         f o n t - s i z e :   1 6 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . p a c k - o r i g i n a l   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         t e x t - d e c o r a t i o n :   l i n e - t h r o u g h ; 
 
 } 
 
 
 
 . p a c k - c o l o r - d e t a i l   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 / *   S t e p p e r   a d j u s t m e n t s   * / 
 
 . q u a n t i t y - s e l e c t o r - b l o c k   { 
 
         d i s p l a y :   f l e x ; 
 
         g a p :   1 6 p x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         p a d d i n g - t o p :   2 0 p x ; 
 
 } 
 
 
 
 . q t y - s t e p p e r - i n n e r   { 
 
         d i s p l a y :   f l e x ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - p i l l ) ; 
 
         o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . q t y - b t n   { 
 
         w i d t h :   3 6 p x ; 
 
         h e i g h t :   3 6 p x ; 
 
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
         b o r d e r :   0 ; 
 
         c u r s o r :   p o i n t e r ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
 } 
 
 
 
 . q t y - b t n : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
 } 
 
 
 
 . q t y - i n p u t   { 
 
         w i d t h :   4 4 p x ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         b o r d e r :   0 ; 
 
         b o r d e r - l e f t :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r i g h t :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         o u t l i n e :   0 ; 
 
 } 
 
 
 
 . q t y - c o u p o n - b a d g e   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
 } 
 
 
 
 / *   P r i c e   s u m m a r y   * / 
 
 . p r i c e - s u m m a r y - b l o c k   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         p a d d i n g :   2 0 p x ; 
 
 } 
 
 
 
 . s u m m a r y - t o t a l - r o w   { 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         a l i g n - i t e m s :   b a s e l i n e ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
 } 
 
 
 
 . t o t a l - l a b e l   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
 } 
 
 
 
 . t o t a l - p r i c e s   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   b a s e l i n e ; 
 
         g a p :   8 p x ; 
 
 } 
 
 
 
 . t o t a l - v a l u e   { 
 
         f o n t - s i z e :   2 4 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . t o t a l - o r i g i n a l   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         t e x t - d e c o r a t i o n :   l i n e - t h r o u g h ; 
 
 } 
 
 
 
 . s u m m a r y - b a n n e r - r o w   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   8 p x ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
 } 
 
 
 
 . p e r - u n i t - b a d g e   { 
 
         p a d d i n g :   2 p x   6 p x ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         c o l o r :   # F F F F F F ; 
 
         f o n t - s i z e :   9 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         b o r d e r - r a d i u s :   4 p x ; 
 
 } 
 
 
 
 . p e r - u n i t - c a l c u l a t i o n   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
 } 
 
 
 
 . s u m m a r y - b u l k - i n f o   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 . w i d g e t - a c t i o n s   { 
 
         d i s p l a y :   f l e x ; 
 
         g a p :   1 6 p x ; 
 
         m a r g i n - t o p :   2 4 p x ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 5 .   P L A N S   T A B L E   S E C T I O N   ( 脫籸0墾弾X灇]嶸梇? 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . p l a n - t a b l e - w r a p   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - c a r d ) ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - b l o c k ) ; 
 
         o v e r f l o w - x :   a u t o ; 
 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
 
         s c r o l l b a r - w i d t h :   t h i n ; 
 
         p a d d i n g - b o t t o m :   1 0 p x ; 
 
 } 
 
 . p l a n - t a b l e - w r a p : : - w e b k i t - s c r o l l b a r   { 
 
         - w e b k i t - a p p e a r a n c e :   n o n e ; 
 
         h e i g h t :   8 p x ; 
 
 } 
 
 . p l a n - t a b l e - w r a p : : - w e b k i t - s c r o l l b a r - t r a c k   { 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
 } 
 
 . p l a n - t a b l e - w r a p : : - w e b k i t - s c r o l l b a r - t h u m b   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 
         b o r d e r - r a d i u s :   1 0 p x ; 
 
 } 
 
 
 
 . p l a n - t a b l e   { 
 
         w i d t h :   1 0 0 % ; 
 
         m i n - w i d t h :   9 0 0 p x ; 
 
         b o r d e r - c o l l a p s e :   c o l l a p s e ; 
 
         t e x t - a l i g n :   l e f t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h , 
 
 . p l a n - t a b l e   t d   { 
 
         p a d d i n g :   1 6 p x ; 
 
         b o r d e r - b o t t o m :   1 p x   d a s h e d   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         v e r t i c a l - a l i g n :   t o p ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h   s p a n   { 
 
         d i s p l a y :   b l o c k ; 
 
         f o n t - s i z e :   1 1 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         f o n t - w e i g h t :   4 0 0 ; 
 
         m a r g i n - t o p :   4 p x ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h . e l i t e   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 5 ) ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h . e l i t e   s m a l l   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         p a d d i n g :   2 p x   6 p x ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         c o l o r :   # F F F F F F ; 
 
         f o n t - s i z e :   9 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         b o r d e r - r a d i u s :   4 p x ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t d   s m a l l   { 
 
         d i s p l a y :   b l o c k ; 
 
         f o n t - s i z e :   1 1 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         m a r g i n - t o p :   2 p x ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t d   s p a n   { 
 
         f o n t - s i z e :   1 1 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 . p r i c e - v a l   { 
 
         f o n t - s i z e :   1 6 p x ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
 } 
 
 
 
 . p r i c e - v a l . t e x t - g o l d   { 
 
         c o l o r :   # 1 9 1 c 1 d ; 
 
 } 
 
 
 
 . t e x t - g o l d   { 
 
         c o l o r :   # a 3 7 a 2 8 ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . g r o u p - r o w   t d   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         f o n t - s i z e :   1 1 p x ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
 
         p a d d i n g :   6 p x   1 6 p x ; 
 
 } 
 
 
 
 @ k e y f r a m e s   h i g h l i g h t P u l s e   { 
 
         0 %   {   b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 6 ) ;   } 
 
         5 0 %   {   b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 1 6 ) ;   } 
 
         1 0 0 %   {   b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 0 6 ) ;   } 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . h i g h l i g h t - r o w   t d   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 1 2 ) ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 2 ) ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 2 ) ; 
 
         a n i m a t i o n :   h i g h l i g h t P u l s e   2 . 5 s   i n f i n i t e   e a s e - i n - o u t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . h i g h l i g h t - r o w   t d : f i r s t - c h i l d   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         b o x - s h a d o w :   i n s e t   6 p x   0   0   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . p l a n - f o o t n o t e   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         m a r g i n - t o p :   1 6 p x ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 6 .   F A Q   S E C T I O N   &   A C C O R D I O N S   ( 脫籸0墿弾V梇? 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . f a q - l i s t   { 
 
         m a x - w i d t h :   1 0 0 % ; 
 
         m a r g i n :   0   a u t o ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   1 6 p x ; 
 
 } 
 
 
 
 . f a q - i t e m   { 
 
         b o r d e r - b o t t o m :   1 p x   d a s h e d   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 
         p a d d i n g - b o t t o m :   1 6 p x ; 
 
 } 
 
 
 
 . f a q - i t e m   b u t t o n   { 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         w i d t h :   1 0 0 % ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         b o r d e r :   0 ; 
 
         p a d d i n g :   8 p x   0 ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t e x t - a l i g n :   l e f t ; 
 
         c o l o r :   # 6 6 7 0 8 5 ; 
 
         f o n t - s i z e :   1 5 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t r a n s i t i o n :   c o l o r   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . f a q - i t e m   b u t t o n : h o v e r , 
 
 . f a q - i t e m . o p e n   b u t t o n   { 
 
         c o l o r :   # 1 6 1 B 2 8 ; 
 
 } 
 
 
 
 . f a q - i t e m   b u t t o n   s v g   { 
 
         w i d t h :   1 8 p x ; 
 
         h e i g h t :   1 8 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         t r a n s i t i o n :   t r a n s f o r m   v a r ( - - t r a n s i t i o n - n o r m a l ) ; 
 
 } 
 
 
 
 . f a q - a n s w e r   { 
 
         p a d d i n g - t o p :   8 p x ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
         l i n e - h e i g h t :   2 2 p x ; 
 
         d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . f a q - i t e m . o p e n   b u t t o n   s v g   { 
 
         t r a n s f o r m :   r o t a t e ( 1 8 0 d e g ) ; 
 
         c o l o r :   # 1 6 1 B 2 8 ; 
 
 } 
 
 
 
 . f a q - i t e m . o p e n   . f a q - a n s w e r   { 
 
         d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 7 .   S I T E   F O O T E R 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . s i t e - f o o t e r   { 
 
         b a c k g r o u n d - c o l o r :   # 1 2 1 2 1 2 ; 
 
         b o r d e r - t o p :   1 p x   s o l i d   # 1 f 1 f 1 f ; 
 
         p a d d i n g :   8 0 p x   0   4 0 p x   0 ; 
 
         c o l o r :   # a 3 a 3 a 3 ; 
 
         f o n t - f a m i l y :   i n h e r i t ; 
 
 } 
 
 
 
 . f o o t e r - c o n t e n t - w r a p   { 
 
         m a x - w i d t h :   1 2 0 0 p x ; 
 
         m a r g i n :   0   a u t o ; 
 
         p a d d i n g :   0   2 4 p x ; 
 
 } 
 
 
 
 . f o o t e r - t o p - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   2 f r   1 f r   1 f r   1 . 5 f r ; 
 
         g a p :   4 8 p x ; 
 
         m a r g i n - b o t t o m :   4 8 p x ; 
 
 } 
 
 
 
 . f o o t e r - c o l   h 3   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   # f f f f f f ; 
 
         m a r g i n - t o p :   0 ; 
 
         m a r g i n - b o t t o m :   2 4 p x ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 0 8 e m ; 
 
 } 
 
 
 
 . f o o t e r - c o l   u l   { 
 
         l i s t - s t y l e :   n o n e ; 
 
         p a d d i n g :   0 ; 
 
         m a r g i n :   0 ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   1 2 p x ; 
 
 } 
 
 
 
 . f o o t e r - c o l   u l   a   { 
 
         f o n t - s i z e :   1 3 . 5 p x ; 
 
         c o l o r :   # a 3 a 3 a 3 ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   c o l o r   0 . 2 5 s   e a s e ; 
 
 } 
 
 
 
 . f o o t e r - c o l   u l   a : h o v e r   { 
 
         c o l o r :   # f f f f f f ; 
 
 } 
 
 
 
 / *   N e w s l e t t e r   C o l u m n   * / 
 
 . n e w s l e t t e r - c o l   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 
 
 . f o o t e r - n e w s l e t t e r - t i t l e   { 
 
         f o n t - s i z e :   1 5 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   # f f f f f f ; 
 
         m a r g i n - t o p :   0 ; 
 
         m a r g i n - b o t t o m :   1 8 p x ; 
 
         l i n e - h e i g h t :   1 . 4 5 ; 
 
 } 
 
 
 
 . f o o t e r - n e w s l e t t e r - f o r m   { 
 
         d i s p l a y :   f l e x ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         m a x - w i d t h :   3 2 0 p x ; 
 
         m a r g i n - b o t t o m :   2 4 p x ; 
 
 } 
 
 
 
 . f o o t e r - n e w s l e t t e r - f o r m   i n p u t [ t y p e = " e m a i l " ]   { 
 
         w i d t h :   1 0 0 % ; 
 
         p a d d i n g :   1 2 p x   5 2 p x   1 2 p x   1 6 p x ; 
 
         b a c k g r o u n d - c o l o r :   # 1 a 1 a 1 a ; 
 
         b o r d e r :   1 p x   s o l i d   # 2 e 2 e 2 e ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         c o l o r :   # f f f f f f ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         o u t l i n e :   n o n e ; 
 
         t r a n s i t i o n :   b o r d e r - c o l o r   0 . 2 5 s   e a s e ; 
 
 } 
 
 
 
 . f o o t e r - n e w s l e t t e r - f o r m   i n p u t [ t y p e = " e m a i l " ] : f o c u s   { 
 
         b o r d e r - c o l o r :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 6 5 ) ; 
 
 } 
 
 
 
 . f o o t e r - n e w s l e t t e r - f o r m   b u t t o n   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         r i g h t :   6 p x ; 
 
         t o p :   5 0 % ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
 
         w i d t h :   3 2 p x ; 
 
         h e i g h t :   3 2 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b a c k g r o u n d - c o l o r :   # 2 b 2 b 2 b ; 
 
         b o r d e r :   0 ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         c o l o r :   # f f f f f f ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   b a c k g r o u n d - c o l o r   0 . 2 5 s   e a s e ; 
 
 } 
 
 
 
 . f o o t e r - n e w s l e t t e r - f o r m   b u t t o n : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   # 3 b 3 b 3 b ; 
 
 } 
 
 
 
 . f o o t e r - n e w s l e t t e r - f o r m   b u t t o n   s v g   { 
 
         w i d t h :   1 5 p x ; 
 
         h e i g h t :   1 5 p x ; 
 
         s t r o k e - w i d t h :   2 . 5 ; 
 
 } 
 
 
 
 / *   S o c i a l   i c o n s   * / 
 
 . f o o t e r - s o c i a l s   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - w r a p :   w r a p ; 
 
         g a p :   1 6 p x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 
 
 . f o o t e r - s o c i a l s   a   { 
 
         c o l o r :   # a 3 a 3 a 3 ; 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         t r a n s i t i o n :   c o l o r   0 . 2 5 s   e a s e ; 
 
 } 
 
 
 
 . f o o t e r - s o c i a l s   a : h o v e r   { 
 
         c o l o r :   # f f f f f f ; 
 
 } 
 
 
 
 . s o c i a l - s v g   { 
 
         w i d t h :   2 0 p x ; 
 
         h e i g h t :   2 0 p x ; 
 
         f i l l :   c u r r e n t C o l o r ; 
 
 } 
 
 
 
 . f o o t e r - s o c i a l s   a [ a r i a - l a b e l = " I n s t a g r a m " ]   s v g   { 
 
         f i l l :   n o n e ; 
 
 } 
 
 
 
 / *   C u s t o m e r   S e r v i c e   C o l u m n   * / 
 
 . f o o t e r - e m a i l - l a b e l   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   # 6 6 6 6 6 6 ; 
 
         m a r g i n :   0   0   4 p x   0 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
 
 } 
 
 
 
 . f o o t e r - e m a i l - l i n k   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   # a 3 a 3 a 3 ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         b o r d e r - b o t t o m :   1 . 5 p x   d a s h e d   # 4 4 4 4 4 4 ; 
 
         p a d d i n g - b o t t o m :   2 p x ; 
 
         t r a n s i t i o n :   c o l o r   0 . 2 5 s   e a s e ,   b o r d e r - c o l o r   0 . 2 5 s   e a s e ; 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         m a r g i n - b o t t o m :   2 4 p x ; 
 
 } 
 
 
 
 . f o o t e r - e m a i l - l i n k : h o v e r   { 
 
         c o l o r :   # f f f f f f ; 
 
         b o r d e r - c o l o r :   # f f f f f f ; 
 
 } 
 
 
 
 . f o o t e r - f o l l o w - b t n   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   8 p x ; 
 
         p a d d i n g :   1 0 p x   2 0 p x ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         b a c k g r o u n d - c o l o r :   # 5 8 4 4 f f ; 
 
         c o l o r :   # f f f f f f ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   b a c k g r o u n d - c o l o r   0 . 2 5 s   e a s e ,   t r a n s f o r m   0 . 2 s   e a s e ; 
 
         w i d t h :   f i t - c o n t e n t ; 
 
 } 
 
 
 
 . f o o t e r - f o l l o w - b t n : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   # 4 a 3 4 e a ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
 
 } 
 
 
 
 . f o o t e r - f o l l o w - b t n   s v g   { 
 
         w i d t h :   1 4 p x ; 
 
         h e i g h t :   1 4 p x ; 
 
         s t r o k e - w i d t h :   2 . 5 ; 
 
 } 
 
 
 
 / *   D i v i d e r   &   B o t t o m   a r e a   * / 
 
 . f o o t e r - d i v i d e r   { 
 
         b o r d e r :   0 ; 
 
         b o r d e r - t o p :   1 p x   s o l i d   # 1 f 1 f 1 f ; 
 
         m a r g i n :   4 0 p x   0   2 8 p x   0 ; 
 
 } 
 
 
 
 . f o o t e r - b o t t o m - f l e x   { 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         f l e x - w r a p :   w r a p ; 
 
         g a p :   2 4 p x ; 
 
 } 
 
 
 
 . f o o t e r - c o p y r i g h t - a r e a   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   8 p x ; 
 
 } 
 
 
 
 . c o p y r i g h t - t e x t   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   # 6 6 6 6 6 6 ; 
 
         m a r g i n :   0 ; 
 
 } 
 
 
 
 . f o o t e r - p o l i c y - l i n k s   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   8 p x ; 
 
         f l e x - w r a p :   w r a p ; 
 
 } 
 
 
 
 . f o o t e r - p o l i c y - l i n k s   a   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   # 6 6 6 6 6 6 ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   c o l o r   0 . 2 5 s   e a s e ; 
 
 } 
 
 
 
 . f o o t e r - p o l i c y - l i n k s   a : h o v e r   { 
 
         c o l o r :   # a 3 a 3 a 3 ; 
 
 } 
 
 
 
 . f o o t e r - p o l i c y - l i n k s   s p a n   { 
 
         f o n t - s i z e :   1 0 p x ; 
 
         c o l o r :   # 3 3 3 3 3 3 ; 
 
 } 
 
 
 
 / *   P a y m e n t   B a d g e s   * / 
 
 . f o o t e r - p a y m e n t - i c o n s   { 
 
         d i s p l a y :   f l e x ; 
 
         g a p :   6 p x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         f l e x - w r a p :   w r a p ; 
 
 } 
 
 
 
 . p a y m e n t - b a d g e   { 
 
         p a d d i n g :   2 p x   8 p x ; 
 
         b o r d e r - r a d i u s :   4 p x ; 
 
         f o n t - s i z e :   9 p x ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         b o r d e r :   1 p x   s o l i d   # 2 e 2 e 2 e ; 
 
         b a c k g r o u n d - c o l o r :   # 1 a 1 a 1 a ; 
 
         c o l o r :   # 8 8 8 8 8 8 ; 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         h e i g h t :   2 2 p x ; 
 
         m i n - w i d t h :   5 0 p x ; 
 
         u s e r - s e l e c t :   n o n e ; 
 
 } 
 
 
 
 . p a y m e n t - b a d g e . a m a z o n - p a y   {   b a c k g r o u n d - c o l o r :   # f f f f f f ;   c o l o r :   # 0 0 0 0 0 0 ;   b o r d e r - c o l o r :   # e 5 e 5 e 5 ;   } 
 
 . p a y m e n t - b a d g e . a m e x   {   b a c k g r o u n d - c o l o r :   # 1 b 7 5 b c ;   c o l o r :   # f f f f f f ;   b o r d e r - c o l o r :   # 1 b 7 5 b c ;   } 
 
 . p a y m e n t - b a d g e . a p p l e - p a y   {   b a c k g r o u n d - c o l o r :   # f f f f f f ;   c o l o r :   # 0 0 0 0 0 0 ;   b o r d e r - c o l o r :   # e 5 e 5 e 5 ;   } 
 
 . p a y m e n t - b a d g e . d i n e r s   {   b a c k g r o u n d - c o l o r :   # 0 0 7 9 c 1 ;   c o l o r :   # f f f f f f ;   b o r d e r - c o l o r :   # 0 0 7 9 c 1 ;   } 
 
 . p a y m e n t - b a d g e . d i s c o v e r   {   b a c k g r o u n d - c o l o r :   # f 6 8 6 2 0 ;   c o l o r :   # f f f f f f ;   b o r d e r - c o l o r :   # f 6 8 6 2 0 ;   } 
 
 . p a y m e n t - b a d g e . g o o g l e - p a y   {   b a c k g r o u n d - c o l o r :   # f f f f f f ;   c o l o r :   # 4 4 4 4 4 4 ;   b o r d e r - c o l o r :   # e 5 e 5 e 5 ;   } 
 
 . p a y m e n t - b a d g e . m a s t e r c a r d   {   b a c k g r o u n d - c o l o r :   # 1 c 1 c 1 c ;   c o l o r :   # f f 5 f 0 0 ;   b o r d e r - c o l o r :   # 2 e 2 e 2 e ;   } 
 
 . p a y m e n t - b a d g e . p a y p a l   {   b a c k g r o u n d - c o l o r :   # f f f f f f ;   c o l o r :   # 0 0 3 0 8 7 ;   b o r d e r - c o l o r :   # e 5 e 5 e 5 ;   } 
 
 . p a y m e n t - b a d g e . s h o p - p a y   {   b a c k g r o u n d - c o l o r :   # 5 a 3 1 f 4 ;   c o l o r :   # f f f f f f ;   b o r d e r - c o l o r :   # 5 a 3 1 f 4 ;   } 
 
 . p a y m e n t - b a d g e . v i s a   {   b a c k g r o u n d - c o l o r :   # 1 a 1 f 7 1 ;   c o l o r :   # f f f f f f ;   b o r d e r - c o l o r :   # 1 a 1 f 7 1 ;   } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 8 .   B O O K I N G   M O D A L   D I A L O G 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . m o d a l - o v e r l a y   { 
 
         p o s i t i o n :   f i x e d ; 
 
         i n s e t :   0 ; 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 4 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ; 
 
         z - i n d e x :   2 0 0 ; 
 
         d i s p l a y :   g r i d ; 
 
         p l a c e - i t e m s :   c e n t e r ; 
 
         o p a c i t y :   0 ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
         t r a n s i t i o n :   o p a c i t y   v a r ( - - t r a n s i t i o n - n o r m a l ) ; 
 
 } 
 
 
 
 . m o d a l - o v e r l a y . o p e n   { 
 
         o p a c i t y :   1 ; 
 
         p o i n t e r - e v e n t s :   a u t o ; 
 
 } 
 
 
 
 . m o d a l - c a r d   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - c a r d ) ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r o u n d e d - b l o c k ) ; 
 
         p a d d i n g :   3 2 p x ; 
 
         w i d t h :   m i n ( 1 0 0 %   -   3 2 p x ,   4 8 0 p x ) ; 
 
         b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ; 
 
         t r a n s i t i o n :   t r a n s f o r m   v a r ( - - t r a n s i t i o n - n o r m a l ) ; 
 
 } 
 
 
 
 . m o d a l - o v e r l a y . o p e n   . m o d a l - c a r d   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
 
 } 
 
 
 
 . m o d a l - c l o s e - b t n   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   1 6 p x ; 
 
         r i g h t :   1 6 p x ; 
 
         w i d t h :   3 2 p x ; 
 
         h e i g h t :   3 2 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b a c k g r o u n d - c o l o r :   # F F F F F F ; 
 
         c u r s o r :   p o i n t e r ; 
 
         f o n t - s i z e :   1 8 p x ; 
 
         d i s p l a y :   g r i d ; 
 
         p l a c e - i t e m s :   c e n t e r ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 
 } 
 
 
 
 . m o d a l - c l o s e - b t n : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
 } 
 
 
 
 . m o d a l - h e a d e r   { 
 
         m a r g i n - b o t t o m :   2 4 p x ; 
 
 } 
 
 
 
 . m o d a l - h e a d e r   h 2   { 
 
         f o n t - s i z e :   1 8 p x ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
 } 
 
 
 
 . m o d a l - h e a d e r   p   { 
 
         f o n t - s i z e :   1 3 p x ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 . m o d a l - f o r m   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   1 6 p x ; 
 
 } 
 
 
 
 . f o r m - g r o u p   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   6 p x ; 
 
 } 
 
 
 
 . f o r m - g r o u p   l a b e l   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n ) ; 
 
 } 
 
 
 
 . f o r m - g r o u p   i n p u t   { 
 
         p a d d i n g :   1 0 p x   1 4 p x ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         o u t l i n e :   0 ; 
 
 } 
 
 
 
 . f o r m - g r o u p   i n p u t : f o c u s   { 
 
         b o r d e r - c o l o r :   v a r ( - - c o l o r - s e c o n d a r y ) ; 
 
 } 
 
 
 
 . p r i c e - b r e a k d o w n   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t ) ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         p a d d i n g :   1 6 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   8 p x ; 
 
 } 
 
 
 
 . p b - r o w   { 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
 } 
 
 
 
 . p b - r o w   s t r o n g   { 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
 } 
 
 
 
 . p b - r o w . t e x t - s u c c e s s   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . p b - r o w . t e x t - m u t e d   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m u t e d ) ; 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       1 9 .   R E S P O N S I V E   /   M E D I A   Q U E R I E S 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   { 
 
         . s i t e - h e a d e r   { 
 
                 p a d d i n g :   1 2 p x   2 0 p x ; 
 
         } 
 
 
 
         . c k m - m o d u l e   { 
 
                 h e i g h t :   7 5 0 p x ; 
 
         } 
 
 
 
         . c k m - s t a g e   { 
 
                 w i d t h :   9 4 0 p x ; 
 
         } 
 
 
 
         . c k m - s l i d e - m a i n   { 
 
                 l e f t :   2 4 0 p x ; 
 
                 w i d t h :   4 6 0 p x ; 
 
         } 
 
 
 
         . c k m - s l i d e - l e f t   { 
 
                 l e f t :   8 0 p x ; 
 
                 w i d t h :   3 0 0 p x ; 
 
         } 
 
 
 
         . c k m - s l i d e - r i g h t   { 
 
                 r i g h t :   8 0 p x ; 
 
                 w i d t h :   3 0 0 p x ; 
 
         } 
 
 
 
         . c k m - c a r d - t i t l e   { 
 
                 f o n t - s i z e :   3 8 p x ; 
 
         } 
 
 
 
         . c k m - c a r d - t i t l e . s m a l l   { 
 
                 f o n t - s i z e :   3 0 p x ; 
 
         } 
 
 
 
         . a u d i e n c e - r o t a t o r   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   m i n m a x ( 0 ,   1 f r )   m i n m a x ( 3 2 0 p x ,   0 . 8 5 f r ) ; 
 
                 g a p :   4 4 p x ; 
 
         } 
 
 
 
         . a u d i e n c e - c o p y   s t r o n g   { 
 
                 f o n t - s i z e :   1 7 p x ; 
 
         } 
 
 
 
         . a u d i e n c e - c o p y   >   s p a n : l a s t - c h i l d   { 
 
                 f o n t - s i z e :   1 3 p x ; 
 
         } 
 
 
 
         . f o o t e r - t o p - g r i d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
 
                 g a p :   3 6 p x ; 
 
         } 
 
 } 
 
 
 
 
 
 / *   E l i t e   C o l u m n   H i g h l i g h t i n g   * / 
 
 . p l a n - t a b l e   t h : n t h - c h i l d ( 4 ) , 
 
 . p l a n - t a b l e   t d : n t h - c h i l d ( 4 )   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 1 5 )   ! i m p o r t a n t ; 
 
         b o r d e r - l e f t :   1 . 5 p x   s o l i d   # F A E 7 C F   ! i m p o r t a n t ; 
 
         b o r d e r - r i g h t :   1 . 5 p x   s o l i d   # F A E 7 C F   ! i m p o r t a n t ; 
 
 } 
 
 . p l a n - t a b l e   t h : n t h - c h i l d ( 4 )   { 
 
         b o r d e r - t o p :   1 . 5 p x   s o l i d   # F A E 7 C F   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   2 0 p x   2 0 p x   0   0   ! i m p o r t a n t ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 . p l a n - t a b l e   t r : l a s t - c h i l d   t d : n t h - c h i l d ( 4 )   { 
 
         b o r d e r - b o t t o m :   1 . 5 p x   s o l i d   # F A E 7 C F   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   0   0   2 0 p x   2 0 p x   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t d : n t h - c h i l d ( 4 )   s m a l l   { 
 
         c o l o r :   # a 3 7 a 2 8   ! i m p o r t a n t ; 
 
 } 
 
 
 
 
 
 / *   E l i t e   H e a d e r   S p e c i f i c s   * / 
 
 . b e s t - v a l u e - b a d g e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   - 1 6 p x ; 
 
         r i g h t :   1 6 p x ; 
 
         b a c k g r o u n d :   # F A E 7 C F ; 
 
         c o l o r :   # 1 9 1 c 1 d ; 
 
         f o n t - s i z e :   1 3 . 2 p x ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         p a d d i n g :   6 p x   1 5 p x ; 
 
         b o r d e r - r a d i u s :   1 0 0 p x ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 4 ) ; 
 
 } 
 
 . e l i t e - b a d g e s   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   6 p x ; 
 
         m a r g i n - t o p :   1 2 p x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 . e l i t e - p i l l   { 
 
         b a c k g r o u n d :   # F A E 7 C F ; 
 
         c o l o r :   # 1 9 1 c 1 d ; 
 
         f o n t - s i z e :   1 0 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         p a d d i n g :   4 p x   1 0 p x ; 
 
         b o r d e r - r a d i u s :   1 0 0 p x ; 
 
         w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . s e c t i o n   { 
 
                 p a d d i n g :   c a l c ( 8 6 . 2 5 p x   *   0 . 5 2 5 )   0 ; 
 
         } 
 
 
 
         / *   H e a d e r   m o b i l e   n a v i g a t i o n   d r a w e r   * / 
 
         . s i t e - n a v   { 
 
                 p o s i t i o n :   f i x e d ; 
 
                 t o p :   7 2 p x ; 
 
                 l e f t :   1 6 p x ; 
 
                 r i g h t :   1 6 p x ; 
 
                 b a c k g r o u n d - c o l o r :   # F F F F F F ; 
 
                 b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
                 b o r d e r - r a d i u s :   1 2 p x ; 
 
                 p a d d i n g :   2 4 p x ; 
 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
 
                 g a p :   1 6 p x ; 
 
                 a l i g n - i t e m s :   c e n t e r ; 
 
                 b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ; 
 
                 d i s p l a y :   n o n e ; 
 
         } 
 
         
 
         . s i t e - n a v . o p e n   { 
 
                 d i s p l a y :   f l e x ; 
 
         } 
 
         
 
         . n a v - t o g g l e   { 
 
                 d i s p l a y :   f l e x ; 
 
         } 
 
         
 
         . n a v - c t a   { 
 
                 d i s p l a y :   n o n e ; 
 
         } 
 
         
 
         / *   H e r o   v i d e o   s e c t i o n   s p a c i n g   * / 
 
         . h e r o - s e c t i o n   { 
 
                 h e i g h t :   a u t o ; 
 
                 p a d d i n g - t o p :   0 p x ; 
 
                 p a d d i n g - b o t t o m :   8 0 p x ; 
 
                 a l i g n - i t e m s :   c e n t e r ; 
 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
         
 
         . h e r o - c o n t e n t   { 
 
                 m a x - w i d t h :   1 0 0 % ; 
 
                 p a d d i n g - b o t t o m :   0 ; 
 
                 m a r g i n :   - 7 0 p x   a u t o   0   a u t o ; 
 
                 t e x t - s h a d o w :   n o n e ; 
 
                 t r a n s f o r m :   n o n e ; 
 
         } 
 
         
 
         . h e r o - c o n t e n t   h 1   { 
 
                 f o n t - s i z e :   2 8 p x ; 
 
                 l i n e - h e i g h t :   1 . 2 5 ; 
 
         } 
 
         
 
         . h e r o - c o p y   { 
 
                 f o n t - s i z e :   1 3 p x ; 
 
                 l i n e - h e i g h t :   1 . 5 ; 
 
                 m a r g i n - b o t t o m :   2 0 p x ; 
 
                 p a d d i n g :   0   1 0 p x ; 
 
         } 
 
         
 
         . h e r o - a c t i o n s   { 
 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
 
                 g a p :   1 2 p x ; 
 
         } 
 
         
 
         . h e r o - a c t i o n s   . b t n   { 
 
                 p a d d i n g :   1 2 p x   2 0 p x ; 
 
                 f o n t - s i z e :   1 4 p x ; 
 
         } 
 
         
 
         / *   B e n e f i t s   S h o w c a s e   s t a c k   * / 
 
         . b e n e f i t s - s h o w c a s e   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
                 p a d d i n g :   2 4 p x   0 ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
                 g a p :   4 0 p x ; 
 
                 t r a n s f o r m :   n o n e ; 
 
         } 
 
         
 
         . b e n e f i t s - s h o w c a s e - l e f t   { 
 
                 a l i g n - i t e m s :   c e n t e r ; 
 
                 g a p :   2 8 p x ; 
 
         } 
 
         
 
         . b e n e f i t s - i c o n s - r o w   { 
 
                 d i s p l a y :   g r i d ; 
 
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ; 
 
                 g a p :   3 2 p x   1 2 p x ; 
 
                 w i d t h :   1 0 0 % ; 
 
                 a l i g n - i t e m s :   s t a r t ; 
 
         } 
 
         
 
         . b e n e f i t - i c o n - c o l   { 
 
                 a l i g n - i t e m s :   c e n t e r ; 
 
                 w i d t h :   1 0 0 % ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
         
 
         . b e n e f i t - i c o n - c o l : n o t ( : l a s t - c h i l d ) : : a f t e r   { 
 
                 d i s p l a y :   n o n e ; 
 
         } 
 
         
 
         . b e n e f i t s - s h o w c a s e - r i g h t   { 
 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         } 
 
         
 
         . b e n e f i t s - s h o w c a s e - r i g h t   i m g   { 
 
                 m a x - h e i g h t :   2 8 0 p x ; 
 
         } 
 
         
 
         / *   S u b s c r i b e   C a r d   s t a c k   * / 
 
         . s u b s c r i b e - c a r d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
                 p a d d i n g :   3 2 p x   2 4 p x ; 
 
                 g a p :   2 4 p x ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
         
 
         . s u b s c r i b e - c o n s e n t   { 
 
                 t e x t - a l i g n :   l e f t ; 
 
         } 
 
         
 
         / *   C o n f i g u r a t o r   s t a c k   * / 
 
         . c o n f i g u r a t o r - c a r d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
         } 
 
         
 
         . c o n f i g u r a t o r - v i s u a l s   { 
 
                 b o r d e r - r i g h t :   0 ; 
 
                 b o r d e r - b o t t o m :   1 p x   d a s h e d   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 
                 p a d d i n g :   3 2 p x ; 
 
         } 
 
         
 
         . c o n f i g u r a t o r - w i d g e t   { 
 
                 p a d d i n g :   2 4 p x ; 
 
         } 
 
 
 
         / *   A I   k e y   m o d u l e   s t a c k   * / 
 
         . c k m - m o d u l e   { 
 
                 h e i g h t :   5 2 0 p x ; 
 
                 o v e r f l o w :   h i d d e n ; 
 
         } 
 
 
 
         . c k m - t a b s   { 
 
                 t o p :   2 0 p x ; 
 
                 g a p :   8 p x ; 
 
         } 
 
 
 
         . c k m - t a b   { 
 
                 p a d d i n g :   6 p x   2 0 p x ; 
 
                 f o n t - s i z e :   1 2 p x ; 
 
                 h e i g h t :   a u t o ; 
 
                 w h i t e - s p a c e :   n o w r a p ; 
 
         } 
 
 
 
         . c k m - c o m m a n d   { 
 
                 t o p :   7 6 p x ; 
 
                 w i d t h :   m i n ( 8 6 v w ,   5 2 0 p x ) ; 
 
                 m i n - w i d t h :   0 ; 
 
         } 
 
 
 
         . c k m - c o m m a n d   s p a n : l a s t - c h i l d   { 
 
                 f o n t - s i z e :   1 4 p x ; 
 
                 w h i t e - s p a c e :   n o r m a l ; 
 
         } 
 
 
 
         . c k m - s t a g e   { 
 
                 t o p :   1 6 6 p x ; 
 
                 w i d t h :   9 2 % ; 
 
                 h e i g h t :   2 6 0 p x ; 
 
         } 
 
 
 
         . c k m - s l i d e - m a i n   { 
 
                 l e f t :   5 0 % ; 
 
                 w i d t h :   m i n ( 1 0 0 % ,   5 2 0 p x ) ; 
 
                 t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   t r a n s l a t e Y ( 7 6 p x )   s c a l e ( 0 . 9 6 5 ) ; 
 
                 a n i m a t i o n - n a m e :   c k m - m o b i l e M a i n ; 
 
         } 
 
 
 
         @ k e y f r a m e s   c k m - m o b i l e M a i n   { 
 
                 t o   { 
 
                         o p a c i t y :   1 ; 
 
                         f i l t e r :   b l u r ( 0 ) ; 
 
                         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   t r a n s l a t e Y ( 0 )   s c a l e ( 1 ) ; 
 
                 } 
 
         } 
 
 
 
         . c k m - s l i d e - l e f t , 
 
         . c k m - s l i d e - r i g h t   { 
 
                 d i s p l a y :   n o n e ; 
 
         } 
 
 
 
         . c k m - s l i d e - b o d y   { 
 
                 p a d d i n g :   2 8 p x ; 
 
         } 
 
 
 
         . c k m - c a r d - t i t l e   { 
 
                 f o n t - s i z e :   3 4 p x ; 
 
         } 
 
 
 
         . c k m - c a p t i o n   { 
 
                 f o n t - s i z e :   1 5 p x ; 
 
         } 
 
 
 
         . c k m - d e v i c e - w r a p   { 
 
                 b o t t o m :   a u t o ; 
 
                 t o p :   1 0 0 p x ; 
 
                 w i d t h :   1 0 0 v w ; 
 
                 m a x - w i d t h :   5 7 0 p x ; 
 
                 h e i g h t :   1 0 0 v w ; 
 
                 m a x - h e i g h t :   5 7 0 p x ; 
 
         } 
 
 
 
         . c k m - a i - h o t s p o t   { 
 
                 t o p :   3 . 8 6 % ; 
 
                 l e f t :   6 3 . 6 8 % ; 
 
                 w i d t h :   1 6 . 1 4 % ; 
 
                 h e i g h t :   1 0 % ; 
 
         } 
 
 
 
         . c k m - r i p p l e   { 
 
                 w i d t h :   7 6 . 9 2 % ; 
 
                 h e i g h t :   7 6 . 9 2 % ; 
 
         } 
 
         
 
         / *   S c e n a r i o   f o c u s   c a r o u s e l   s t a c k   * / 
 
         . s c e n a r i o - f o c u s - g a l l e r y   { 
 
                 w i d t h :   1 0 0 % ; 
 
                 m a r g i n - l e f t :   0 ; 
 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
 
                 a l i g n - i t e m s :   s t r e t c h ; 
 
                 g a p :   1 2 p x ; 
 
                 p a d d i n g :   0 ; 
 
                 o v e r f l o w :   v i s i b l e ; 
 
                 t r a n s f o r m :   n o n e ; 
 
                 h e i g h t :   5 5 6 p x   ! i m p o r t a n t ;   / *   F i x e s   c o n t a i n e r   h e i g h t   t o   p r e v e n t   l a y o u t   j i t t e r   ( 2 8 0   +   3 * 8 0   +   3 * 1 2 )   * / 
 
         } 
 
 
 
         . s c e n a r i o - p h o t o , 
 
         . s c e n a r i o - p h o t o . s l o t - l e f t , 
 
         . s c e n a r i o - p h o t o . s l o t - r i g h t , 
 
         . s c e n a r i o - p h o t o . s l o t - f a r - r i g h t   { 
 
                 w i d t h :   1 0 0 % ; 
 
                 f l e x :   0   0   a u t o ; 
 
                 h e i g h t :   8 0 p x ; 
 
                 t r a n s f o r m :   n o n e ; 
 
                 o r d e r :   i n i t i a l ; 
 
                 o p a c i t y :   0 . 8 5 ; 
 
                 t r a n s i t i o n :   
 
                         h e i g h t   4 5 0 m s   c u b i c - b e z i e r ( 0 . 2 5 ,   1 ,   0 . 5 ,   1 ) , 
 
                         o p a c i t y   3 0 0 m s   e a s e , 
 
                         b o x - s h a d o w   3 0 0 m s   e a s e ; 
 
         } 
 
 
 
         . s c e n a r i o - p h o t o . a c t i v e   { 
 
                 h e i g h t :   2 8 0 p x ; 
 
                 o p a c i t y :   1 ; 
 
                 o r d e r :   i n i t i a l ; 
 
                 b o x - s h a d o w :   0   1 2 p x   3 0 p x   r g b a ( 1 6 ,   2 4 ,   4 0 ,   0 . 1 2 ) ; 
 
         } 
 
 
 
         / *   M o b i l e   A c c o r d i o n   C o n t e n t   O v e r l a y   &   T r a n s i t i o n s   * / 
 
         . s c e n a r i o - o v e r l a y   { 
 
                 p a d d i n g :   2 0 p x   ! i m p o r t a n t ; 
 
                 a l i g n - i t e m s :   f l e x - e n d   ! i m p o r t a n t ; 
 
                 t r a n s i t i o n :   b a c k g r o u n d - c o l o r   4 0 0 m s   e a s e ; 
 
         } 
 
 
 
         . s c e n a r i o - p h o t o : n o t ( . a c t i v e )   . s c e n a r i o - o v e r l a y   { 
 
                 b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   r g b a ( 0 ,   0 ,   0 ,   0 . 7 2 )   0 % ,   r g b a ( 0 ,   0 ,   0 ,   0 . 3 5 )   1 0 0 % ) ; 
 
         } 
 
 
 
         . s c e n a r i o - p h o t o . a c t i v e   . s c e n a r i o - o v e r l a y   { 
 
                 b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   t o p ,   r g b a ( 0 ,   0 ,   0 ,   0 . 8 2 )   0 % ,   r g b a ( 0 ,   0 ,   0 ,   0 . 2 8 )   6 0 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
 
         } 
 
 
 
         . s c e n a r i o - p h o t o . a c t i v e   . s c e n a r i o - d e s c   { 
 
                 t r a n s i t i o n - d e l a y :   0 s   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . s c e n a r i o - p h o t o   i m g   { 
 
                 t r a n s i t i o n :   f i l t e r   4 0 0 m s   e a s e ; 
 
         } 
 
 
 
         . s c e n a r i o - p h o t o : n o t ( . a c t i v e )   i m g   { 
 
                 f i l t e r :   b r i g h t n e s s ( 0 . 6 5 )   c o n t r a s t ( 0 . 9 5 ) ; 
 
         } 
 
 
 
         . s c e n a r i o - p h o t o . a c t i v e   i m g   { 
 
                 f i l t e r :   b r i g h t n e s s ( 1 )   c o n t r a s t ( 1 ) ; 
 
         } 
 
 
 
         / *   A u d i e n c e   r o t a t o r   s t a c k   * / 
 
         . a u d i e n c e - r o t a t o r   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
                 g a p :   2 8 p x ; 
 
                 m a r g i n - t o p :   2 8 p x ; 
 
         } 
 
 
 
         . a u d i e n c e - v i s u a l   { 
 
                 h e i g h t :   a u t o ; 
 
                 a s p e c t - r a t i o :   1   /   1 ; 
 
                 b o r d e r - r a d i u s :   2 0 p x ; 
 
                 - w e b k i t - m a s k - i m a g e :   n o n e   ! i m p o r t a n t ; 
 
                 m a s k - i m a g e :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
         
 
         . a u d i e n c e - v i s u a l - i m a g e . a c t i v e   { 
 
                 w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
 
                 l e f t :   0   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . a u d i e n c e - v i s u a l - i m a g e . p r e v , 
 
         . a u d i e n c e - v i s u a l - i m a g e . n e x t   { 
 
                 o p a c i t y :   0   ! i m p o r t a n t ; 
 
                 v i s i b i l i t y :   h i d d e n   ! i m p o r t a n t ; 
 
                 p o i n t e r - e v e n t s :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . a u d i e n c e - l i s t   { 
 
                 d i s p l a y :   f l e x ; 
 
                 f l e x - d i r e c t i o n :   r o w ; 
 
                 o v e r f l o w - x :   a u t o ; 
 
                 o v e r f l o w - y :   v i s i b l e ; 
 
                 o v e r s c r o l l - b e h a v i o r :   a u t o ; 
 
                 m a x - h e i g h t :   n o n e ; 
 
                 p a d d i n g :   1 6 p x   4 0 p x   1 6 p x   2 0 p x ; 
 
                 m a r g i n - l e f t :   - 2 0 p x ; 
 
                 m a r g i n - r i g h t :   - 2 0 p x ; 
 
                 g a p :   1 6 p x ; 
 
                 - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
 
                 s c r o l l - s n a p - t y p e :   x   m a n d a t o r y ; 
 
                 - w e b k i t - m a s k - i m a g e :   n o n e ; 
 
                 m a s k - i m a g e :   n o n e ; 
 
                 s c r o l l b a r - w i d t h :   n o n e ; 
 
         } 
 
         . a u d i e n c e - l i s t : : - w e b k i t - s c r o l l b a r   { 
 
                 d i s p l a y :   n o n e ; 
 
         } 
 
 
 
         . a u d i e n c e - i t e m   { 
 
                 f l e x :   0   0   7 0 % ; 
 
                 s c r o l l - s n a p - a l i g n :   c e n t e r ; 
 
                 m i n - h e i g h t :   a u t o ; 
 
                 p a d d i n g :   2 0 p x ; 
 
                 b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 
                 b o r d e r - r a d i u s :   2 0 p x ; 
 
                 b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - c a r d ) ; 
 
         } 
 
 
 
         . a u d i e n c e - r o l e - b a d g e   { 
 
                 m i n - h e i g h t :   a u t o ; 
 
                 p a d d i n g :   0   0   6 p x   0 ; 
 
         } 
 
 
 
         . a u d i e n c e - r o l e   { 
 
                 f o n t - s i z e :   1 1 p x ; 
 
         } 
 
 
 
         . a u d i e n c e - c o p y   { 
 
                 g a p :   6 p x ; 
 
         } 
 
 
 
         . a u d i e n c e - c o p y   s t r o n g   { 
 
                 f o n t - s i z e :   1 6 p x ; 
 
         } 
 
 
 
         . a u d i e n c e - c o p y   >   s p a n : l a s t - c h i l d   { 
 
                 f o n t - s i z e :   1 3 p x ; 
 
                 l i n e - h e i g h t :   1 . 4 5 ; 
 
         } 
 
         
 
         / *   S c e n a r i o   o u t p u t   g r i d   s t a c k   * / 
 
         . s c e n a r i o - l a y o u t , 
 
         . o u t p u t - l a y o u t   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
         } 
 
         
 
         . s c e n - t a b s - b a r , 
 
         . o u t p u t - t a b s   { 
 
                 f l e x - w r a p :   w r a p ; 
 
         } 
 
         
 
         . t i m e l i n e   { 
 
                 p a d d i n g - l e f t :   0 ; 
 
                 m a x - w i d t h :   1 0 0 % ; 
 
                 d i s p l a y :   g r i d ; 
 
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ; 
 
                 g a p :   3 2 p x   1 6 p x ; 
 
         } 
 
         
 
         . t i m e l i n e : : b e f o r e   { 
 
                 d i s p l a y :   n o n e ; 
 
         } 
 
         
 
         . t i m e l i n e - r o w   { 
 
                 d i s p l a y :   f l e x ; 
 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
 
                 a l i g n - i t e m s :   c e n t e r ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
                 m a r g i n - b o t t o m :   0 ; 
 
         } 
 
 
 
         . t i m e l i n e - r o w : : a f t e r   { 
 
                 d i s p l a y :   n o n e ; 
 
         } 
 
         
 
         . t i m e l i n e - d a t e   { 
 
                 w i d t h :   1 0 0 % ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
                 m a r g i n - b o t t o m :   1 2 p x ; 
 
                 h e i g h t :   a u t o ; 
 
         } 
 
 
 
         . t i m e l i n e - d a t e   s t r o n g   { 
 
                 f o n t - s i z e :   1 8 p x ; 
 
                 l i n e - h e i g h t :   1 . 3 ; 
 
         } 
 
         
 
         . t i m e l i n e - n o d e   { 
 
                 d i s p l a y :   f l e x ; 
 
                 a l i g n - i t e m s :   c e n t e r ; 
 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
 
                 w i d t h :   4 4 p x ; 
 
                 h e i g h t :   4 4 p x ; 
 
                 m a r g i n :   0   a u t o   1 6 p x   a u t o ; 
 
         } 
 
 
 
         . t i m e l i n e - n o d e   s v g   { 
 
                 w i d t h :   2 0 p x ; 
 
                 h e i g h t :   2 0 p x ; 
 
         } 
 
 
 
         . t i m e l i n e - c a r d   { 
 
                 p a d d i n g :   1 4 p x   1 6 p x ; 
 
                 w i d t h :   1 0 0 % ; 
 
                 b o x - s i z i n g :   b o r d e r - b o x ; 
 
                 f l e x - g r o w :   1 ; 
 
                 d i s p l a y :   f l e x ; 
 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
 
         } 
 
 
 
         . t i m e l i n e - c a r d - s p l i t   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
                 g a p :   1 4 p x ; 
 
         } 
 
 
 
         . c o m p l i a n c e - g r i d   { 
 
                 d i s p l a y :   f l e x ; 
 
                 f l e x - d i r e c t i o n :   r o w ; 
 
                 o v e r f l o w - x :   a u t o ; 
 
                 o v e r f l o w - y :   v i s i b l e ; 
 
                 s c r o l l - s n a p - t y p e :   x   m a n d a t o r y ; 
 
                 s c r o l l - p a d d i n g - l e f t :   2 4 p x ; 
 
                 - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
 
                 g a p :   1 2 p x ; 
 
                 p a d d i n g :   4 p x   2 4 p x   1 2 p x   2 4 p x ; 
 
                 m a r g i n - l e f t :   - 2 4 p x ; 
 
                 m a r g i n - r i g h t :   - 2 4 p x ; 
 
                 / *   H i d e   s c r o l l b a r   * / 
 
                 s c r o l l b a r - w i d t h :   n o n e ; 
 
                 - m s - o v e r f l o w - s t y l e :   n o n e ; 
 
         } 
 
         . c o m p l i a n c e - g r i d : : - w e b k i t - s c r o l l b a r   { 
 
                 d i s p l a y :   n o n e ; 
 
         } 
 
         . c o m p l i a n c e - g r i d   . c o m p l i a n c e - c a r d   { 
 
                 f l e x :   0   0   c a l c ( 4 7 %   ) ; 
 
                 m i n - w i d t h :   0 ; 
 
                 s c r o l l - s n a p - a l i g n :   s t a r t ; 
 
                 p a d d i n g :   2 8 p x   1 6 p x ; 
 
         } 
 
         . c o m p l i a n c e - c a r d   i m g   { 
 
                 h e i g h t :   7 2 p x ; 
 
         } 
 
 
 
         . t i m e l i n e - p h a s e   +   . t i m e l i n e - p h a s e   { 
 
                 b o r d e r - l e f t :   0 ; 
 
                 b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 4 ) ; 
 
                 p a d d i n g - l e f t :   0 ; 
 
                 p a d d i n g - t o p :   1 4 p x ; 
 
         } 
 
         
 
         . e c o s y s t e m - g r i d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
         } 
 
 
 
         . f o o t e r - t o p - g r i d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
                 g a p :   3 2 p x ; 
 
         } 
 
 
 
         . f o o t e r - b o t t o m - f l e x   { 
 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
 
                 a l i g n - i t e m s :   f l e x - s t a r t ; 
 
                 g a p :   2 0 p x ; 
 
         } 
 
 
 
         / *   C o m p a r i s o n   T a b l e   m o b i l e   o p t i m i z a t i o n s   -   F o r c e   4   c o l u m n s   o n   s c r e e n   * / 
 
         . c o m p a r i s o n - s c r o l l - w r a p p e r   { 
 
                 m a r g i n - l e f t :   0   ! i m p o r t a n t ; 
 
                 m a r g i n - r i g h t :   0   ! i m p o r t a n t ; 
 
                 w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
 
                 o v e r f l o w - x :   h i d d e n   ! i m p o r t a n t ; 
 
                 p a d d i n g - l e f t :   3 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g - r i g h t :   3 p x   ! i m p o r t a n t ; 
 
                 b o x - s i z i n g :   b o r d e r - b o x   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p a r i s o n - c a r d s - c o n t a i n e r   { 
 
                 d i s p l a y :   g r i d   ! i m p o r t a n t ; 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r   1 f r   1 f r   ! i m p o r t a n t ; 
 
                 w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
 
                 m i n - w i d t h :   0   ! i m p o r t a n t ; 
 
                 g a p :   2 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g - l e f t :   0   ! i m p o r t a n t ; 
 
                 p a d d i n g - r i g h t :   0   ! i m p o r t a n t ; 
 
                 b o x - s i z i n g :   b o r d e r - b o x   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p a r i s o n - f e a t u r e s - c o l   { 
 
                 p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
 
                 l e f t :   a u t o   ! i m p o r t a n t ; 
 
                 b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
 
                 w i d t h :   a u t o   ! i m p o r t a n t ; 
 
                 t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - f e a t u r e - h e a d e r   { 
 
                 h e i g h t :   7 0 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g :   4 p x   2 p x   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   1 1 p x   ! i m p o r t a n t ; 
 
                 d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
                 a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
                 j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
                 t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
                 m a r g i n - t o p :   2 p x   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - c a r d - h e a d e r   { 
 
                 h e i g h t :   7 0 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g :   4 p x   2 p x   ! i m p o r t a n t ; 
 
                 g a p :   2 p x   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - c a r d - h e a d e r   i m g   { 
 
                 h e i g h t :   2 4 p x   ! i m p o r t a n t ; 
 
                 m a r g i n - b o t t o m :   2 p x   ! i m p o r t a n t ; 
 
                 w i d t h :   a u t o   ! i m p o r t a n t ; 
 
                 o b j e c t - f i t :   c o n t a i n   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - c a r d - i c o n   { 
 
                 h e i g h t :   2 4 p x   ! i m p o r t a n t ; 
 
                 w i d t h :   2 4 p x   ! i m p o r t a n t ; 
 
                 m a r g i n - b o t t o m :   2 p x   ! i m p o r t a n t ; 
 
                 d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
                 a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
                 j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - c a r d - i c o n   s v g   { 
 
                 w i d t h :   2 4 p x   ! i m p o r t a n t ; 
 
                 h e i g h t :   2 4 p x   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - c a r d - t i t l e   { 
 
                 f o n t - s i z e :   9 p x   ! i m p o r t a n t ; 
 
                 l i n e - h e i g h t :   1 . 1   ! i m p o r t a n t ; 
 
                 t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
                 w o r d - b r e a k :   b r e a k - w o r d   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - b a d g e   { 
 
                 f o n t - s i z e :   8 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g :   2 p x   4 p x   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - f e a t u r e - c e l l   { 
 
                 f o n t - s i z e :   9 p x   ! i m p o r t a n t ; 
 
                 l i n e - h e i g h t :   1 . 2   ! i m p o r t a n t ; 
 
                 p a d d i n g :   4 p x   ! i m p o r t a n t ; 
 
                 t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
 
                 w o r d - b r e a k :   b r e a k - w o r d   ! i m p o r t a n t ; 
 
                 h e i g h t :   5 2 p x   ! i m p o r t a n t ; 
 
                 d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
                 a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
                 b a c k g r o u n d - c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - f e a t u r e - c e l l : n t h - c h i l d ( e v e n )   { 
 
                 b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - b g - a l t )   ! i m p o r t a n t ; 
 
         } 
 
         . c o m p - v a l - c e l l   { 
 
                 h e i g h t :   5 2 p x   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   9 p x   ! i m p o r t a n t ; 
 
                 l i n e - h e i g h t :   1 . 2   ! i m p o r t a n t ; 
 
                 p a d d i n g :   0   4 p x   ! i m p o r t a n t ; 
 
                 t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       P L A N S   T A B L E   S T Y L I N G   -   I m a g e   2   S t y l e   ( C a r d   R o u n d e d   H e a d e r s   &   T h e m e   C o l o r s ) 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . p l a n - t a b l e - w r a p   { 
 
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 
         b o r d e r :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   0   ! i m p o r t a n t ; 
 
         o v e r f l o w :   v i s i b l e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   { 
 
         b o r d e r - c o l l a p s e :   s e p a r a t e   ! i m p o r t a n t ; 
 
         b o r d e r - s p a c i n g :   0   ! i m p o r t a n t ; 
 
         w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h , 
 
 . p l a n - t a b l e   t d   { 
 
         p a d d i n g :   1 2 p x   1 6 p x   ! i m p o r t a n t ; 
 
         b o r d e r - b o t t o m :   1 p x   d a s h e d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 )   ! i m p o r t a n t ; 
 
         f o n t - s i z e :   1 3 p x   ! i m p o r t a n t ; 
 
         v e r t i c a l - a l i g n :   m i d d l e   ! i m p o r t a n t ; 
 
         b o r d e r - t o p :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - l e f t :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - r i g h t :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 / *   H e a d e r   s t y l e   -   W h i t e   b a c k g r o u n d   w i t h   c l e a n   b o r d e r s   * / 
 
 . p l a n - t a b l e   t h   { 
 
         f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
 
         t e x t - t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
 
         b a c k g r o u n d - c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 )   ! i m p o r t a n t ; 
 
         p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
 
         z - i n d e x :   1 0   ! i m p o r t a n t ; 
 
         p a d d i n g :   1 6 p x   1 6 p x   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - t o p :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - l e f t :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - r i g h t :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h : f i r s t - c h i l d   { 
 
         f o n t - s i z e :   1 8 p x   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
 
         c o l o r :   # 1 e 2 9 3 b   ! i m p o r t a n t ; 
 
         v e r t i c a l - a l i g n :   m i d d l e   ! i m p o r t a n t ; 
 
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
 
         w i d t h :   2 6 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h : n t h - c h i l d ( 2 )   { 
 
         w i d t h :   2 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h : n t h - c h i l d ( 3 )   { 
 
         w i d t h :   2 4 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h : n t h - c h i l d ( 4 )   { 
 
         w i d t h :   3 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 / *   H e a d e r   F l e x   L a y o u t   * / 
 
 . p l a n - h e a d e r - f l e x   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   1 2 p x ; 
 
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - i c o n   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         w i d t h :   3 6 p x ; 
 
         h e i g h t :   3 6 p x ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         f l e x - s h r i n k :   0 ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - i c o n . b g - b l u e   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 2 ) ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - i c o n . b g - t e a l   { 
 
         b a c k g r o u n d - c o l o r :   # 3 2 E 8 D 6 ; 
 
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 5 0 ,   2 3 2 ,   2 1 4 ,   0 . 2 ) ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - i c o n . b g - g o l d   { 
 
         b a c k g r o u n d - c o l o r :   # F A E 7 C F ; 
 
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 3 ) ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - i c o n   s v g   { 
 
         w i d t h :   2 0 p x ; 
 
         h e i g h t :   2 0 p x ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - t e x t   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - t e x t   s t r o n g   { 
 
         f o n t - s i z e :   1 6 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - t e x t . t e x t - b l u e   s t r o n g   { 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - t e x t . t e x t - t e a l   s t r o n g   { 
 
         c o l o r :   # 3 2 E 8 D 6 ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - t e x t . t e x t - g o l d   s t r o n g   { 
 
         c o l o r :   # 1 9 1 c 1 d ; 
 
 } 
 
 
 
 . p l a n - h e a d e r - t e x t   s p a n   { 
 
         f o n t - s i z e :   1 1 p x ; 
 
         c o l o r :   # 6 4 7 4 8 b   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   4 0 0 ; 
 
         m a r g i n - t o p :   2 p x ; 
 
         l i n e - h e i g h t :   1 . 3 ; 
 
 } 
 
 
 
 / *   B e s t   V a l u e   B a d g e   * / 
 
 . p l a n - t a b l e   t h . e l i t e   { 
 
         p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t h . e l i t e   s m a l l   { 
 
         p o s i t i o n :   a b s o l u t e   ! i m p o r t a n t ; 
 
         t o p :   - 1 6 p x   ! i m p o r t a n t ; 
 
         r i g h t :   1 6 p x   ! i m p o r t a n t ; 
 
         b a c k g r o u n d - c o l o r :   # F A E 7 C F   ! i m p o r t a n t ; 
 
         c o l o r :   # 1 9 1 c 1 d   ! i m p o r t a n t ; 
 
         f o n t - s i z e :   1 3 . 2 p x   ! i m p o r t a n t ; 
 
         p a d d i n g :   6 p x   1 5 p x   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   1 0 0 p x   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
 
         b o r d e r :   n o n e   ! i m p o r t a n t ; 
 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
 
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 4 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 / *   C o l u m n   b a c k g r o u n d s   m a t c h i n g   t h e m e   * / 
 
 . p l a n - t a b l e   t r : n o t ( . g r o u p - r o w ) : n o t ( . u n i f i e d - h i g h l i g h t - r o w ) : n o t ( . p r o g r e s s i v e - h i g h l i g h t - r o w )   t d : n t h - c h i l d ( 1 )   { 
 
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   6 0 0   ! i m p o r t a n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r : n o t ( . g r o u p - r o w ) : n o t ( . u n i f i e d - h i g h l i g h t - r o w ) : n o t ( . p r o g r e s s i v e - h i g h l i g h t - r o w )   t d : n t h - c h i l d ( 2 )   { 
 
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r : n o t ( . g r o u p - r o w ) : n o t ( . u n i f i e d - h i g h l i g h t - r o w ) : n o t ( . p r o g r e s s i v e - h i g h l i g h t - r o w )   t d : n t h - c h i l d ( 3 )   { 
 
         b a c k g r o u n d - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r : n o t ( . g r o u p - r o w ) : n o t ( . u n i f i e d - h i g h l i g h t - r o w ) : n o t ( . p r o g r e s s i v e - h i g h l i g h t - r o w )   t d : n t h - c h i l d ( 4 )   { 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 1 )   ! i m p o r t a n t ; 
 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   b o l d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 / *   C h e c k   I c o n s   i n s i d e   c o l u m n s   * / 
 
 . p l a n - t a b l e   t d : n t h - c h i l d ( 2 )   . c h e c k - i c o n   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - p r i m a r y )   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   0   2 p x   6 p x   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 2 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t d : n t h - c h i l d ( 3 )   . c h e c k - i c o n   { 
 
         b a c k g r o u n d - c o l o r :   # 3 2 E 8 D 6   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   0   2 p x   6 p x   r g b a ( 5 0 ,   2 3 2 ,   2 1 4 ,   0 . 2 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t d : n t h - c h i l d ( 4 )   . c h e c k - i c o n   { 
 
         b a c k g r o u n d - c o l o r :   # F A E 7 C F   ! i m p o r t a n t ; 
 
         b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 C s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' 0   0   2 4   2 4 '   f i l l = ' n o n e '   s t r o k e = ' % 2 3 1 9 1 c 1 d '   s t r o k e - w i d t h = ' 3 '   s t r o k e - l i n e c a p = ' r o u n d '   s t r o k e - l i n e j o i n = ' r o u n d ' % 3 E % 3 C p o l y l i n e   p o i n t s = ' 2 0   6   9   1 7   4   1 2 ' / % 3 E % 3 C / s v g % 3 E " )   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   0   2 p x   6 p x   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 4 )   ! i m p o r t a n t ; 
 
         c o l o r :   # 1 9 1 c 1 d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 / *   G r o u p   r o w   h e a d e r   s t y l e   * / 
 
 . p l a n - t a b l e   t r . g r o u p - r o w   t d   { 
 
         b a c k g r o u n d - c o l o r :   # f 8 f a f c   ! i m p o r t a n t ; 
 
         c o l o r :   # 4 7 5 5 6 9   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   8 0 0   ! i m p o r t a n t ; 
 
         f o n t - s i z e :   1 1 p x   ! i m p o r t a n t ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e   ! i m p o r t a n t ; 
 
         l e t t e r - s p a c i n g :   0 . 0 8 e m   ! i m p o r t a n t ; 
 
         p a d d i n g :   8 p x   1 6 p x   ! i m p o r t a n t ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 / *   U n i f i e d   H i g h l i g h t   R o w   S t y l e   -   I m a g e   1   S t y l e   * / 
 
 . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d   { 
 
         p a d d i n g :   1 4 p x   1 6 p x   ! i m p o r t a n t ; 
 
         b o r d e r - t o p :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - b o t t o m :   1 p x   d a s h e d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 )   ! i m p o r t a n t ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 
         v e r t i c a l - a l i g n :   m i d d l e   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d : f i r s t - c h i l d   { 
 
         b a c k g r o u n d :   v a r ( - - c o l o r - b g - a l t )   ! i m p o r t a n t ; 
 
         b o r d e r - l e f t :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d : n t h - c h i l d ( 2 )   { 
 
         b a c k g r o u n d :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 1 5 )   ! i m p o r t a n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d : n t h - c h i l d ( 3 )   { 
 
         b a c k g r o u n d :   r g b a ( 5 0 ,   2 3 2 ,   2 1 4 ,   0 . 2 )   ! i m p o r t a n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
         b o r d e r - r i g h t :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d : n t h - c h i l d ( 4 )   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 2 )   ! i m p o r t a n t ; 
 
         b o r d e r - t o p :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - b o t t o m :   1 p x   d a s h e d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 )   ! i m p o r t a n t ; 
 
         b o r d e r - l e f t :   1 . 5 p x   s o l i d   # F A E 7 C F   ! i m p o r t a n t ; 
 
         b o r d e r - r i g h t :   1 . 5 p x   s o l i d   # F A E 7 C F   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   0   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   b o l d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d   s t r o n g , 
 
 . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d   . t e x t - g o l d   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d : n t h - c h i l d ( 4 )   { 
 
                 f o n t - s i z e :   9 p x   ! i m p o r t a n t ; 
 
                 w h i t e - s p a c e :   n o r m a l   ! i m p o r t a n t ; 
 
                 w o r d - b r e a k :   n o r m a l   ! i m p o r t a n t ; 
 
                 p a d d i n g - l e f t :   2 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g - r i g h t :   2 p x   ! i m p o r t a n t ; 
 
                 l i n e - h e i g h t :   1 . 1   ! i m p o r t a n t ; 
 
         } 
 
         
 
         . e l i t e - s p a r k l e s   { 
 
                 d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
         
 
         . c o m p a r i s o n - c a r d   { 
 
                 b o r d e r - r a d i u s :   1 2 p x   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 
 
 . h i g h l i g h t - f e a t u r e - t i t l e   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   1 4 p x ; 
 
 } 
 
 
 
 . m i c - c i r c l e - i c o n   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         w i d t h :   3 8 p x ; 
 
         h e i g h t :   3 8 p x ; 
 
         b a c k g r o u n d - c o l o r :   # f f f f f f ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         f l e x - s h r i n k :   0 ; 
 
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 
 } 
 
 
 
 . m i c - c i r c l e - i c o n   s v g   { 
 
         w i d t h :   1 8 p x ; 
 
         h e i g h t :   1 8 p x ; 
 
 } 
 
 
 
 . h i g h l i g h t - t e x t - s t a c k   { 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   4 p x ; 
 
 } 
 
 
 
 . h i g h l i g h t - f e a t u r e - i t e m   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   6 p x ; 
 
 } 
 
 
 
 . h i g h l i g h t - b u l l e t   { 
 
         d i s p l a y :   b l o c k ; 
 
         w i d t h :   4 p x ; 
 
         h e i g h t :   4 p x ; 
 
         b a c k g r o u n d - c o l o r :   # f f f f f f ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         o p a c i t y :   0 . 8 ; 
 
 } 
 
 
 
 . h i g h l i g h t - t e x t - s t a c k   s t r o n g   { 
 
         f o n t - s i z e :   1 6 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . h i g h l i g h t - v a l   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         g a p :   8 p x ; 
 
 } 
 
 
 
 . h i g h l i g h t - v a l   s t r o n g   { 
 
         f o n t - s i z e :   1 8 p x ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
 
         l e t t e r - s p a c i n g :   0 . 0 2 e m ; 
 
 } 
 
 
 
 . s p a r k l e - i c o n   { 
 
         f o n t - s i z e :   1 4 p x ; 
 
         c o l o r :   # f e f 0 8 a ; 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         a n i m a t i o n :   b o u n c e   1 . 5 s   i n f i n i t e ; 
 
 } 
 
 
 
 @ k e y f r a m e s   b o u n c e   { 
 
         0 % ,   1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 
         5 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ;   } 
 
 } 
 
 
 
 / *   B o t t o m   c o r n e r s   r o u n d e d   * / 
 
 . p l a n - t a b l e   t r : l a s t - c h i l d   t d : n t h - c h i l d ( 1 )   { 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   1 2 p x   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r : l a s t - c h i l d   t d : n t h - c h i l d ( 4 )   { 
 
         b o r d e r - b o t t o m - r i g h t - r a d i u s :   2 0 p x   ! i m p o r t a n t ; 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         / *   P l a n   T a b l e   m o b i l e   o p t i m i z a t i o n s   -   F o r c e   4   c o l u m n s   o n   s c r e e n   * / 
 
         . p l a n - t a b l e - w r a p   { 
 
                 m a r g i n - l e f t :   0   ! i m p o r t a n t ; 
 
                 m a r g i n - r i g h t :   0   ! i m p o r t a n t ; 
 
                 w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
 
                 o v e r f l o w - x :   h i d d e n   ! i m p o r t a n t ; 
 
                 p a d d i n g - l e f t :   0   ! i m p o r t a n t ; 
 
                 p a d d i n g - r i g h t :   0   ! i m p o r t a n t ; 
 
                 p a d d i n g - t o p :   2 0 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g - b o t t o m :   1 5 p x   ! i m p o r t a n t ; 
 
                 m a r g i n - t o p :   0   ! i m p o r t a n t ; 
 
                 m a r g i n - b o t t o m :   2 0 p x   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   { 
 
                 w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
 
                 m i n - w i d t h :   0   ! i m p o r t a n t ; 
 
                 t a b l e - l a y o u t :   f i x e d   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   t r : n o t ( . g r o u p - r o w ) : n o t ( . u n i f i e d - h i g h l i g h t - r o w )   t h : f i r s t - c h i l d , 
 
         . p l a n - t a b l e   t r : n o t ( . g r o u p - r o w ) : n o t ( . u n i f i e d - h i g h l i g h t - r o w )   t d : f i r s t - c h i l d , 
 
         . p l a n - t a b l e   t r : n o t ( . g r o u p - r o w )   t h : f i r s t - c h i l d , 
 
         . p l a n - t a b l e   t r : n o t ( . g r o u p - r o w )   t d : f i r s t - c h i l d   { 
 
                 p o s i t i o n :   s t a t i c   ! i m p o r t a n t ; 
 
                 l e f t :   a u t o   ! i m p o r t a n t ; 
 
                 b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
 
                 p a d d i n g - l e f t :   4 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g - r i g h t :   4 p x   ! i m p o r t a n t ; 
 
                 w i d t h :   2 5 %   ! i m p o r t a n t ; 
 
                 t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   9 p x   ! i m p o r t a n t ; 
 
                 l i n e - h e i g h t :   1 . 2   ! i m p o r t a n t ; 
 
                 w o r d - b r e a k :   b r e a k - w o r d   ! i m p o r t a n t ; 
 
                 w h i t e - s p a c e :   n o r m a l   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . p l a n - t a b l e   t r . g r o u p - r o w   t d   { 
 
                 p a d d i n g - l e f t :   4 p x   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   8 p x   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   t r . g r o u p - r o w   . g r o u p - t i t l e   { 
 
                 p o s i t i o n :   s t a t i c   ! i m p o r t a n t ; 
 
                 l e f t :   a u t o   ! i m p o r t a n t ; 
 
                 d i s p l a y :   i n l i n e - b l o c k   ! i m p o r t a n t ; 
 
                 z - i n d e x :   a u t o   ! i m p o r t a n t ; 
 
                 t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   8 p x   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   t h : n o t ( : f i r s t - c h i l d ) , 
 
         . p l a n - t a b l e   t d : n o t ( : f i r s t - c h i l d )   { 
 
                 w i d t h :   2 5 %   ! i m p o r t a n t ; 
 
                 m i n - w i d t h :   0   ! i m p o r t a n t ; 
 
                 p a d d i n g - l e f t :   2 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g - r i g h t :   2 p x   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   9 p x   ! i m p o r t a n t ; 
 
                 t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
                 w o r d - b r e a k :   b r e a k - w o r d   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - h e a d e r - f l e x   { 
 
                 d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
                 t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - h e a d e r - i c o n   { 
 
                 d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - h e a d e r - t e x t   s p a n   { 
 
                 d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - h e a d e r - t e x t   s t r o n g   { 
 
                 f o n t - s i z e :   1 0 p x   ! i m p o r t a n t ; 
 
                 d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
                 t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   t d   s p a n   { 
 
                 d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   7 p x   ! i m p o r t a n t ; 
 
                 l i n e - h e i g h t :   1 . 1   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   t d   . p r i c e - v a l   { 
 
                 f o n t - s i z e :   1 1 p x   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   t d   s m a l l   { 
 
                 d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   7 p x   ! i m p o r t a n t ; 
 
                 l i n e - h e i g h t :   1 . 1   ! i m p o r t a n t ; 
 
         } 
 
         . m i c - c i r c l e - i c o n   { 
 
                 d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
         . h i g h l i g h t - b u l l e t   { 
 
                 d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
         . h i g h l i g h t - f e a t u r e - i t e m   { 
 
                 p a d d i n g - l e f t :   0   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   8 p x   ! i m p o r t a n t ; 
 
                 l i n e - h e i g h t :   1 . 1   ! i m p o r t a n t ; 
 
         } 
 
         . h i g h l i g h t - f e a t u r e - i t e m   s t r o n g   { 
 
                 f o n t - s i z e :   8 p x   ! i m p o r t a n t ; 
 
                 f o n t - w e i g h t :   6 0 0   ! i m p o r t a n t ; 
 
         } 
 
         . h i g h l i g h t - v a l   s t r o n g   { 
 
                 f o n t - s i z e :   7 . 5 p x   ! i m p o r t a n t ; 
 
                 w h i t e - s p a c e :   n o w r a p   ! i m p o r t a n t ; 
 
                 l e t t e r - s p a c i n g :   - 0 . 0 2 e m   ! i m p o r t a n t ; 
 
         } 
 
         . s p a r k l e - i c o n   { 
 
                 d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
         . h i g h l i g h t - t e x t - s t a c k   { 
 
                 d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
                 f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
                 g a p :   2 p x   ! i m p o r t a n t ; 
 
         } 
 
         . b e s t - v a l u e - b a d g e   { 
 
                 p o s i t i o n :   a b s o l u t e   ! i m p o r t a n t ; 
 
                 t o p :   - 1 2 p x   ! i m p o r t a n t ; 
 
                 l e f t :   5 0 %   ! i m p o r t a n t ; 
 
                 r i g h t :   a u t o   ! i m p o r t a n t ; 
 
                 t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   ! i m p o r t a n t ; 
 
                 w h i t e - s p a c e :   n o w r a p   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   9 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g :   4 p x   1 0 p x   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   t d   . c h e c k - i c o n , 
 
         . p l a n - t a b l e   t d   . c r o s s - i c o n   { 
 
                 d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
                 m a r g i n :   0   a u t o   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d : n o t ( : f i r s t - c h i l d ) , 
 
         . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d : n o t ( : f i r s t - c h i l d )   { 
 
                 f o n t - s i z e :   1 1 p x   ! i m p o r t a n t ; 
 
         } 
 
         . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d : n o t ( : f i r s t - c h i l d )   s t r o n g , 
 
         . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d : n o t ( : f i r s t - c h i l d )   s t r o n g   { 
 
                 f o n t - s i z e :   1 1 p x   ! i m p o r t a n t ; 
 
         } 
 
         . h i g h l i g h t - v a l   s t r o n g   { 
 
                 f o n t - s i z e :   1 0 p x   ! i m p o r t a n t ; 
 
         } 
 
         . h i g h l i g h t - f e a t u r e - i t e m   s t r o n g ,   . h i g h l i g h t - f e a t u r e - i t e m   { 
 
                 f o n t - s i z e :   9 p x   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 / *   P r o g r e s s i v e   H i g h l i g h t   R o w   S t y l e   * / 
 
 . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d   { 
 
         p a d d i n g :   1 4 p x   1 6 p x   ! i m p o r t a n t ; 
 
         v e r t i c a l - a l i g n :   m i d d l e   ! i m p o r t a n t ; 
 
         b o r d e r - t o p :   n o n e   ! i m p o r t a n t ; 
 
         b o r d e r - b o t t o m :   1 p x   d a s h e d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 )   ! i m p o r t a n t ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d : f i r s t - c h i l d   { 
 
         b a c k g r o u n d :   v a r ( - - c o l o r - b g - a l t )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d : n t h - c h i l d ( 2 )   {   / *   S t a r t e r   * / 
 
         b a c k g r o u n d :   r g b a ( 3 4 ,   1 1 9 ,   2 5 5 ,   0 . 1 5 )   ! i m p o r t a n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d : n t h - c h i l d ( 3 )   {   / *   P r e m i u m   * / 
 
         f o n t - w e i g h t :   6 0 0   ! i m p o r t a n t ; 
 
         b a c k g r o u n d :   r g b a ( 5 0 ,   2 3 2 ,   2 1 4 ,   0 . 2 )   ! i m p o r t a n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d : n t h - c h i l d ( 4 )   {   / *   E l i t e   * / 
 
         f o n t - w e i g h t :   8 0 0   ! i m p o r t a n t ; 
 
         f o n t - s i z e :   1 5 p x   ! i m p o r t a n t ; 
 
         b a c k g r o u n d :   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 2 )   ! i m p o r t a n t ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - m a i n )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . u n i f i e d - h i g h l i g h t - r o w   t d : n o t ( : f i r s t - c h i l d ) , 
 
 . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d : n o t ( : f i r s t - c h i l d )   { 
 
         f o n t - s i z e :   1 5 p x   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   b o l d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l a n - t a b l e   t r . p r o g r e s s i v e - h i g h l i g h t - r o w   t d   s m a l l   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - l i g h t )   ! i m p o r t a n t ; 
 
         o p a c i t y :   0 . 8 ; 
 
 } 
 
 
 
 
 
 . e l i t e - s p a r k l e s : : b e f o r e , 
 
 . e l i t e - s p a r k l e s : : a f t e r   { 
 
         c o n t e n t :   " A? ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         c o l o r :   # a 8 5 5 f 7 ; 
 
         f o n t - s i z e :   1 6 p x ; 
 
         o p a c i t y :   0 . 6 ; 
 
         a n i m a t i o n :   f l o a t - s p a r k l e   3 s   e a s e - i n - o u t   i n f i n i t e   a l t e r n a t e ; 
 
 } 
 
 . e l i t e - s p a r k l e s : : b e f o r e   { 
 
         t o p :   2 0 p x ; 
 
         l e f t :   2 0 p x ; 
 
 } 
 
 . e l i t e - s p a r k l e s : : a f t e r   { 
 
         t o p :   4 0 p x ; 
 
         r i g h t :   2 0 p x ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         a n i m a t i o n - d e l a y :   1 . 5 s ; 
 
 } 
 
 @ k e y f r a m e s   f l o a t - s p a r k l e   { 
 
         0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 )   s c a l e ( 1 ) ;   o p a c i t y :   0 . 4 ;   } 
 
         1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x )   s c a l e ( 1 . 2 ) ;   o p a c i t y :   0 . 8 ;   } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 9 p x )   { 
 
         . p l a n - t a b l e   t r . g r o u p - r o w   t d . e l i t e - c o l - g r o u p   { 
 
                 b a c k g r o u n d - c o l o r :   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 1 5 )   ! i m p o r t a n t ; 
 
                 b o r d e r - l e f t :   1 . 5 p x   s o l i d   # F A E 7 C F   ! i m p o r t a n t ; 
 
                 b o r d e r - r i g h t :   1 . 5 p x   s o l i d   # F A E 7 C F   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 @ k e y f r a m e s   f l o a t - i c o n   { 
 
         0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 3 ) ;   } 
 
         1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ;   b o x - s h a d o w :   0   8 p x   1 6 p x   r g b a ( 2 5 0 ,   2 3 1 ,   2 0 7 ,   0 . 5 ) ;   } 
 
 } 
 
 . p l a n - h e a d e r - i c o n . b g - g o l d   { 
 
         a n i m a t i o n :   f l o a t - i c o n   2 . 5 s   e a s e - i n - o u t   i n f i n i t e   a l t e r n a t e ; 
 
 } 
 
 

/* --- New Review Modal and Card Adjustments --- */
.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.story-profile {
    margin-top: 16px !important;
    margin-bottom: 24px !important;
}

.story-expand-icon {
    margin-top: auto;
    align-self: flex-end;
    color: #6B7280;
    transition: color 0.2s ease, transform 0.2s ease;
}

.user-story-block:hover .story-expand-icon {
    color: #111827;
    transform: translate(2px, -2px);
}

.story-review-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
}

.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.review-modal-overlay.active {
    display: flex;
}

.review-modal {
    background-color: #FFFFFF;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 32px;
    box-sizing: border-box;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #9CA3AF;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #111827;
}

.modal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-stars {
    color: #F59E0B;
}

.modal-date {
    color: #6B7280;
    font-size: 14px;
}

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

.modal-avatar {
    width: 32px;
    height: 32px;
    background-color: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
}

.modal-user-info {
    font-weight: 600;
    color: #111827;
    font-size: 15px;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.4;
}

.modal-body-text {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 32px;
}

.modal-body-text p {
    margin-bottom: 16px;
}

.modal-body-text p:last-child {
    margin-bottom: 0;
}

.modal-image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
    display: none;
}

.modal-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

.btn-view-product {
    background-color: #111827;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-view-product:hover {
    background-color: #374151;
}


/* ==========================================================================
   About Us Page Specific Styles
   ========================================================================== */

.about-hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.about-hero-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #F3F4F6;
    aspect-ratio: 4 / 3;
}

.about-hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-badge-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-hero-badge-tag .rec-dot {
    width: 8px;
    height: 8px;
    background-color: #EF4444;
    border-radius: 50%;
    animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.about-bilingual-text {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-top: 12px;
}

/* Split Section Standard */
.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Section 1: Timeline Card */
.timeline-card-wrapper {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 28px;
}

.timeline-step-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-step-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
}

.timeline-step-item.highlight-step {
    border-color: #2277FF;
    background: #F0F6FF;
    box-shadow: 0 4px 12px rgba(34, 119, 255, 0.1);
}

.timeline-step-badge {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    background: #E5E7EB;
    color: #4B5563;
    flex-shrink: 0;
}

.timeline-step-item.highlight-step .timeline-step-badge {
    background: #2277FF;
    color: #FFFFFF;
}

.timeline-step-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.timeline-step-content p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}

/* Section 2: Morph Card */
.morph-card-wrapper {
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    border-radius: 24px;
    padding: 40px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.morph-brand-transition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.morph-old-name {
    font-size: 24px;
    font-weight: 500;
    color: #9CA3AF;
    text-decoration: line-through;
}

.morph-arrow {
    color: #2277FF;
    font-size: 24px;
}

.morph-new-name {
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.morph-icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 119, 255, 0.15);
    border: 1px solid rgba(34, 119, 255, 0.3);
    color: #60A5FA;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

/* Section 4: Comparison Table & Quote */
.quote-highlight-box {
    background: #F3F4F6;
    border-left: 4px solid #2277FF;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0 36px;
    font-size: 17px;
    font-weight: 500;
    color: #1F2937;
    line-height: 1.5;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-table th {
    background: #F9FAFB;
    font-weight: 600;
    color: #111827;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    background: #F0F6FF;
    font-weight: 500;
    color: #1E3A8A;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Section 5: What we believe cards */
.believe-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
}

.believe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.believe-card h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2277FF;
    margin-bottom: 16px;
}

.believe-card .en-heading {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 8px;
}

.believe-card .cn-sub {
    font-size: 14px;
    color: #6B7280;
}

/* Section 6: Who it's for pill tags */
.who-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.who-pill {
    background: #F3F4F6;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 9999px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.who-pill:hover {
    background: #111827;
    color: #FFFFFF;
    border-color: #111827;
}

/* Section 7: Trust Banner */
.trust-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 40px 24px;
}

@media (max-width: 768px) {
    .trust-banner-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.trust-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2277FF;
    line-height: 1.1;
    margin-bottom: 8px;
}

.trust-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.trust-stat-sub {
    font-size: 12px;
    color: #6B7280;
}

/* Enlarge Red Dot logo globally */
.media-logo-set img[src*="PD2026_RD_t.png"] {
    height: 110px !important;
}
@media (max-width: 767px) {
    .media-logo-set img[src*="PD2026_RD_t.png"] {
        height: 98px !important;
    }
}
