@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&amp;display=swap');


:root {
    --white: #FFFFFF;
    --dark-gray: #1F1F1F;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --green: #10B981;
    --amber: #F59E0B;
    --coral: #FF6B6B;
    --purple: #7C3AED;
    --border-color: #E5E7EB;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --header-height: 70px;
    --container-width: 1140px;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    --accent: #7C3AED;
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --ok: #16a34a;
    --warn: #ca8a04;
    --danger: #ef4444;
    --shadow: 0 10px 30px rgba(2, 6, 23, .15);
    --radius: 16px;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

a {
    color: var(--purple);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}


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


.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn--primary {
    background-color: var(--purple);
    color: var(--white);
}

.btn--primary:hover {
    background-color: #6d28d9;
    color: var(--white);
    text-decoration: none;
}

.btn--secondary {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.btn--secondary:hover {
    background-color: #E5E7EB;
    text-decoration: none;
}

.btn--outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--dark-gray);
}

.btn--outline:hover {
    background-color: var(--light-gray);
    text-decoration: none;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn--full-width {
    width: 100%;
    text-align: center;
}

.btn:disabled {
    background-color: var(--gray);
    cursor: not-allowed;
    opacity: 0.7;
}


.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.form-group--checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group--checkbox input {
    width: auto;
}

.error-message {
    color: var(--coral);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

input.error,
textarea.error,
select.error {
    border-color: var(--coral);
}

input.error:focus,
textarea.error:focus,
select.error:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.error-message.show {
    display: block;
}

#form-status {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    display: none;
}

#form-status.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

#form-status.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}


.header {
    background-color: var(--white);
    padding: 0 1rem;
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__logo .logo-icon {
    color: var(--purple);
}

.nav__list {
    display: flex;
    gap: 1.5rem;
}

.nav__link {
    color: var(--gray);
    font-weight: 500;
    position: relative;
}

.nav__link.active,
.nav__link:hover {
    color: var(--dark-gray);
    text-decoration: none;
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--purple);
}

.header__actions {
    display: flex;
    gap: 1rem;
}

.header__burger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
}


.footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 3rem 0 1.5rem;
}

.footer a {
    color: var(--white);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 2rem;
}

.footer__title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__title i {
    color: var(--purple);
}

.footer__links ul li {
    margin-bottom: 0.5rem;
}

.footer__contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer__disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
}

.footer__disclaimer p {
    margin-bottom: 0.5rem;
}


.section {
    padding: 4rem 0;
}

.section--light-gray {
    background-color: var(--light-gray);
}

.section--highlight {
    background-color: var(--amber);
    color: var(--dark-gray);
}

.section--highlight .section__title {
    color: var(--dark-gray);
}

.section__title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.page-header {
    background-color: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.25rem;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
}


.hero {
    background-color: #1F1F1F;
    background: linear-gradient(rgba(31, 31, 31, 0.8), rgba(31, 31, 31, 0.8)), url('../img/hero.png') no-repeat center center/cover;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--light-gray);
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


.draw-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.draw-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.draw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.draw-card__icon-wrapper {
    width: 100%;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.draw-card__icon-wrapper i {
    font-size: 1.75rem;
}

.draw-card__title {
    margin-bottom: 0.75rem;
}

.draw-card__description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}


.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step-card {
    position: relative;
}

.step-card__number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--purple);
    color: var(--white);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-card__icon {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.step-card__title {
    margin-bottom: 0.5rem;
}


.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
}

.feature-card__icon {
    font-size: 2.5rem;
    color: var(--amber);
    margin-bottom: 1rem;
}


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

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item__question {
    padding: 1.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.2s ease;
}

.faq-item[open]>.faq-item__question::after {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 1rem 1.5rem;
    color: var(--gray);
}

.faq-item__answer p {
    margin: 0;
}



.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.25rem;
    color: var(--purple);
    margin-top: 5px;
}

.contact-map-img {
    margin-top: 2rem;
    border-radius: var(--border-radius);
}


.auth-page {
    background-color: var(--light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    min-height: calc(100vh - var(--header-height) - 200px);
}

.auth-container {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 450px;
}

.auth-title {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
}


.buy-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.draw-selection-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.draw-tab {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    cursor: pointer;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.draw-tab:hover {
    background-color: var(--light-gray);
}

.draw-tab.active {
    background-color: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

#number-picker-container .placeholder-text {
    padding: 2rem;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--gray);
}

.number-picker {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.picker-header {
    margin-bottom: 1rem;
}

.picker-title {
    font-size: 1.5rem;
    margin: 0;
}

.picker-instructions {
    color: var(--gray);
}

.picker-status {
    background-color: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.number-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.number-btn:hover {
    background-color: var(--light-gray);
}

.number-btn.selected {
    background-color: var(--amber);
    color: var(--dark-gray);
    border-color: var(--amber);
}

.number-btn.grand-selected {
    background-color: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.picker-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.grand-number-picker {
    margin-top: 2rem;
}

.grand-number-picker h4 {
    margin-bottom: 0.75rem;
}

.order-summary-wrapper {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

#cart-items {
    margin-bottom: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

#cart-items p {
    color: var(--gray);
}

.cart-item {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item__info {
    font-size: 0.9rem;
}

.cart-item__name {
    font-weight: 700;
}

.cart-item__numbers {
    color: var(--gray);
    word-break: break-all;
}

.cart-item__remove {
    background: none;
    border: none;
    color: var(--coral);
    cursor: pointer;
    font-size: 1.2rem;
}

.order-total {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.responsible-play-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #fef3c7;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #92400e;
}

.responsible-play-box strong {
    color: #b45309;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 31, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
}

#confirmation-view {
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 1rem;
}



@media (max-width: 992px) {

    .contact-grid,
    .buy-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .header__nav,
    .header__actions {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .header__nav.nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem;
        box-shadow: var(--box-shadow);
    }

    .header__nav.nav-open .nav__list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .header__nav.nav-open .nav__item {
        padding: 0.5rem 0;
    }

    .footer__grid {
        text-align: center;
    }

    .footer__contact p {
        justify-content: center;
    }

    .number-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 480px) {
    .number-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .draw-selection-tabs {
        justify-content: center;
    }

    .picker-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero__actions {
        flex-direction: column;
    }
}

.footer-imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-imgs img {
    height: 65px;
    background: white;
    padding: 8px;
    margin: 8px;
    border-radius: 15px;
}

.page-header {
    background-color: var(--primary-color);
    color: black;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.8;
    margin-bottom: 0;
}

.content-section {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 5px;
}

.content-section h3 {
    color: var(--text-color);
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 10px;
}

.content-section p {
    margin-bottom: 20px;
}

.content-section ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 30px;
}

.content-section ul li {
    margin-bottom: 10px;
}

.content-section ul li strong {
    font-weight: 600;
}


a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.content-section p strong {
    display: block;
    margin-top: 10px;
}


@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2em;
    }

    .page-header p {
        font-size: 1em;
    }

    .content-section h2 {
        font-size: 1.7em;
        margin-top: 30px;
    }

    .content-section ul {
        padding-left: 20px;
    }
}

 .cxb-hidden{display:none !important;}

  /* Общая оболочка баннера */
  .cxb-banner{
    position:fixed; inset-inline:0; bottom:16px; z-index:999999;
    display:flex; justify-content:center; pointer-events:none;
  }
  .cxb-card{
    width:min(920px, calc(100% - 24px));
    background:var(--bg); color:var(--text); border:1px solid var(--border);
    border-radius:var(--radius); box-shadow:var(--shadow);
    padding:18px 18px 14px; pointer-events:auto;
  }
  .cxb-row{display:flex; gap:16px; align-items:flex-start; flex-wrap:wrap;}
  .cxb-icon{
    flex:0 0 40px; height:40px; width:40px; border-radius:50%;
    display:grid; place-items:center; background:rgba(124,58,237,.1);
    color:var(--accent); font-weight:700;
  }
  .cxb-body{flex:1 1 360px; min-width:260px;}
  .cxb-title{font-size:18px; font-weight:700; margin:0 0 6px;}
  .cxb-text{font-size:14px; line-height:1.45; color:var(--muted); margin:0;}
  .cxb-links a{color:var(--accent); text-decoration:underline; text-underline-offset:2px;}
  .cxb-actions{display:flex; gap:10px; flex-wrap:wrap;}
  .cxb-btn{
    border:1px solid var(--border); background:#fafafa; color:var(--text);
    padding:10px 14px; border-radius:12px; font-weight:600; cursor:pointer;
  }
  .cxb-btn--accent{background:var(--accent); color:#fff; border-color:var(--accent);}
  .cxb-btn--ghost{background:transparent;}
  .cxb-btn:focus{outline:3px solid rgba(124,58,237,.35); outline-offset:2px;}
  .cxb-note{font-size:12px; color:var(--muted); margin-top:6px;}

  /* Модал настроек */
  .cxb-backdrop{
    position:fixed; inset:0; background:rgba(15,23,42,.45); z-index:1000000;
    display:grid; place-items:center; padding:20px;
  }
  .cxb-modal{
    width:min(780px,100%); background:var(--bg); color:var(--text);
    border-radius:var(--radius); border:1px solid var(--border); box-shadow:var(--shadow);
  }
  .cxb-modal header, .cxb-modal footer{padding:16px 18px; border-bottom:1px solid var(--border);}
  .cxb-modal footer{border-top:1px solid var(--border); border-bottom:0; display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;}
  .cxb-modal h2{margin:0; font-size:18px;}
  .cxb-modal .cxb-content{padding:14px 18px; display:grid; gap:12px; max-height:min(66vh, 520px); overflow:auto;}
  .cxb-switch{
    display:flex; align-items:center; justify-content:space-between; gap:18px;
    border:1px solid var(--border); border-radius:12px; padding:12px 14px;
  }
  .cxb-switch .info{flex:1;}
  .cxb-switch .info .name{font-weight:700;}
  .cxb-switch .info .desc{color:var(--muted); font-size:13px; margin-top:2px;}
  .cxb-toggle{
    position:relative; width:46px; height:28px; border-radius:999px; background:#e5e7eb; transition:.2s;
  }
  .cxb-toggle input{opacity:0; width:0; height:0; position:absolute;}
  .cxb-toggle .dot{
    position:absolute; top:3px; left:3px; width:22px; height:22px; border-radius:50%;
    background:#fff; box-shadow:0 1px 2px rgba(0,0,0,.2); transition:.2s;
  }
  .cxb-toggle input:checked + .dot{left:21px;}
  .cxb-toggle input:checked ~ .track{background:var(--accent);}
  .cxb-toggle .track{position:absolute; inset:0; border-radius:999px; background:#e5e7eb; transition:.2s;}

  /* Кнопка "Manage preferences" */
  .cxb-manage{
    position:fixed; right:14px; bottom:14px; z-index:999998;
  }
  .cxb-manage button{
    background:var(--bg); color:var(--accent); border:1px solid var(--border);
    padding:10px 12px; border-radius:12px; box-shadow:var(--shadow); font-weight:700; cursor:pointer;
  }

  /* Модал +19 */
  .cxb-age{
    position:fixed; inset:0; z-index:1000001; background:rgba(15,23,42,.7);
    display:grid; place-items:center; padding:20px;
  }
  .cxb-age .box{
    width:min(560px,100%); background:var(--bg); color:var(--text);
    border-radius:var(--radius); border:1px solid var(--border); box-shadow:var(--shadow); padding:20px;
    text-align:center;
  }
  .cxb-age .badge{
    display:inline-flex; align-items:center; justify-content:center;
    width:64px; height:64px; border-radius:50%; background:rgba(124,58,237,.1); color:var(--accent);
    font-size:20px; font-weight:800; margin-bottom:10px;
  }
  .cxb-age h3{margin:6px 0 6px; font-size:22px;}
  .cxb-age p{margin:0 0 14px; color:var(--muted);}
  .cxb-age .btns{display:flex; gap:10px; justify-content:center; flex-wrap:wrap;}
  @media (prefers-reduced-motion:no-preference){
    .cxb-backdrop,.cxb-age{animation:fade .18s ease-out;}
    @keyframes fade{from{opacity:0; transform:scale(.98)} to{opacity:1; transform:scale(1)}}
  }