:root {
    --bg-main: #0A0A0B;
    --bg-surface: #141416;
    --bg-elevated: #1C1C1F;
    --primary-neon: #00F3FF;
    --secondary-neon: #7000FF;
    --accent-hot: #FF0055;
    --text-primary: #F4F4F5;
    --text-secondary: #A1A1AA;
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-muted {
    color: #A1A1AA !important;
}

* {
    box-sizing: border-box;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    scroll-behavior: smooth;
}

.clip-path-polygon {
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.rajdhani {
    font-family: 'Rajdhani', sans-serif;
}

/* ===== header ===== */
.jaskiron-header {
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.jaskiron-header .jaskiron-nav-link {
    position: relative;
}

.jaskiron-header .jaskiron-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00F3FF;
    transition: width 0.3s ease;
}

.jaskiron-header .jaskiron-nav-link:hover::after {
    width: 100%;
}

.jaskiron-header .js-mobile-menu {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.jaskiron-header .js-menu-toggle:focus {
    outline: none;
}

@media (max-width: 767px) {
    .jaskiron-header .js-mobile-menu:not(.hidden) {
        display: block;
    }
}

/* ===== hero ===== */
.hero-block .hero-btn-primary {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 92% 100%, 0 100%);
}

.hero-block .hero-btn-ghost {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 30%);
}

.hero-block .hero-btn-primary:hover {
    background-color: #F4F4F5;
    shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.hero-block h1 {
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.hero-block .hero-bg-container img {
    filter: brightness(0.4) contrast(1.1);
}

@keyframes heroPulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.hero-block .animate-pulse {
    animation: heroPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== featured_reviews ===== */
.jaskiron-featured-reviews {
    background-color: #0A0A0B;
    padding: clamp(4rem, 10vh, 8rem) 0;
    overflow: hidden;
}

.jaskiron-featured-reviews .review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.jaskiron-featured-reviews .aspect-video {
    aspect-ratio: 16 / 9;
}

.jaskiron-featured-reviews .clip-path-polygon {
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

@media (max-width: 767px) {
    .jaskiron-featured-reviews h2 {
        font-size: 16px;
    }

    .jaskiron-featured-reviews h3 {
        font-size: 14px;
    }
}

.jaskiron-featured-reviews article {
    opacity: 0;
    transform: translateY(20px);
}

.jaskiron-featured-reviews article.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== latest_news ===== */
.latest-news-block .latest-news-block__card {
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
}

.latest-news-block .latest-news-block__card img {
    filter: brightness(0.85) contrast(1.1);
}

.latest-news-block .latest-news-block__card:hover img {
    filter: brightness(1) contrast(1.1);
}

.latest-news-block .latest-news-block__view-all {
    position: relative;
}

.latest-news-block .latest-news-block__view-all::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00F3FF;
    transition: width 0.3s ease;
}

.latest-news-block .latest-news-block__view-all:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .latest-news-block .latest-news-block__card {
        margin-bottom: 1rem;
    }
}

/* ===== expert_guides ===== */
.expert-guides-block .js-filter-btn.active {
    background-color: #00F3FF;
    color: #0A0A0B;
    border-color: #00F3FF;
}

.expert-guides-block .js-guide-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.expert-guides-block .js-guide-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00F3FF, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.expert-guides-block .js-guide-card:hover::before {
    transform: scaleX(1);
}

.expert-guides-block .js-guide-card:hover {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.08);
    transform: translateY(-8px);
}

@media (max-width: 767px) {
    .expert-guides-block .js-filter-container {
        flex-direction: column;
    }

    .expert-guides-block .js-filter-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== newsletter ===== */
.jaskiron-newsletter .newsletter-heading {
    font-family: 'Rajdhani', sans-serif;
}

.jaskiron-newsletter .newsletter-text {
    font-family: 'Inter', sans-serif;
}

.jaskiron-newsletter .newsletter-button {
    clip-path: polygon(8% 0, 100% 0, 100% 70%, 92% 100%, 0 100%, 0 30%);
}

.jaskiron-newsletter .newsletter-input:focus {
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

/* ===== footer ===== */
.jaskiron-footer {
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.jaskiron-footer h3 {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
    position: relative;
}

.jaskiron-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #00F3FF;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.jaskiron-footer .js-footer-link {
    position: relative;
    display: inline-block;
}

.jaskiron-footer .js-footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00F3FF;
    transition: width 0.3s ease;
}

.jaskiron-footer .js-footer-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .jaskiron-footer {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .jaskiron-footer .grid {
        text-align: left;
    }
}

/* ===== PAGE: privacy ===== */
.policy-content-wrapper {
  background-color: #0A0A0B;
  padding: clamp(2rem, 5vh, 4rem) 1rem;
  color: #A1A1AA;
  overflow-x: hidden;
}

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

.policy-body h2 {
  color: #F4F4F5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.policy-body p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  hyphens: auto;
}

.policy-list {
  list-style: none;
  padding-left: 0;
}

.policy-body strong {
  color: #00F3FF;
  font-weight: 600;
}

.policy-body section {
  margin-bottom: 4rem;
  position: relative;
}

@media (max-width: 768px) {
  .policy-body p {
    font-size: 14px;
  }
  .policy-body h2 {
    font-size: 16px;
  }
  .policy-body h3 {
    font-size: 14px;
  }
}

/* ===== PAGE: terms ===== */
.policy-content-wrapper { background-color: #0A0A0B; color: #F4F4F5; font-family: 'Inter', sans-serif; padding: clamp(2rem, 10vh, 8rem) 1.25rem; line-height: 1.8; overflow-x: hidden; } .policy-content-wrapper .policy-inner-container { max-width: 800px; margin: 0 auto; position: relative; } .policy-content-wrapper .protocol-block { margin-bottom: 3rem; } .policy-content-wrapper h2 { color: #00F3FF; font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; display: flex; align-items: center; border-left: 4px solid #7000FF; padding-left: 1rem; font-size: 16px; } @media (min-width: 768px) { .policy-content-wrapper h2 { font-size: 32px; } } .policy-content-wrapper p { color: #A1A1AA; font-size: 14px; margin-bottom: 1.25rem; } @media (min-width: 768px) { .policy-content-wrapper p { font-size: 16px; } } .policy-content-wrapper .protocol-list { list-style: none; padding: 0; margin-left: 0.5rem; } .policy-content-wrapper .protocol-item { display: flex; align-items: flex-start; gap: 0.75rem; color: #A1A1AA; margin-bottom: 1rem; font-size: 14px; } @media (min-width: 768px) { .policy-content-wrapper .protocol-item { font-size: 16px; } } .policy-content-wrapper .protocol-item i { color: #00F3FF; font-size: 1.2rem; margin-top: 0.2rem; flex-shrink: 0; } .policy-content-wrapper .protocol-block:last-child { margin-bottom: 0; }

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper {
  background-color: #0A0A0B;
  color: #F4F4F5;
  padding: clamp(2rem, 5vh, 4rem) clamp(1rem, 5vw, 2rem);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

.js-disclaimer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.js-disclaimer-header {
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  margin-bottom: clamp(2rem, 4vh, 3rem);
  padding-bottom: 1.5rem;
}

.js-legal-title {
  font-family: 'Rajdhani', sans-serif;
  color: #00F3FF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 18px;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .js-legal-title {
    font-size: 42px;
  }
}

.js-last-updated {
  color: #A1A1AA;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}

.js-legal-section {
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.js-section-heading {
  font-family: 'Rajdhani', sans-serif;
  color: #7000FF;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 16px;
}

@media (min-width: 768px) {
  .js-section-heading {
    font-size: 32px;
  }
}

.js-legal-text {
  color: #D4D4D8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-align: justify;
  hyphens: auto;
}

.js-legal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.js-legal-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #D4D4D8;
  font-size: 0.95rem;
}

.js-legal-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #FF0055;
  font-family: 'Rajdhani', sans-serif;
  font-weight: bold;
}

.js-legal-section h3 {
  font-size: 14px;
  color: #00F3FF;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
}

@media (min-width: 768px) {
  .js-legal-section h3 {
    font-size: 26px;
  }
}

.js-legal-text strong {
  color: #F4F4F5;
  font-weight: 600;
}

/* ===== PAGE: cookies ===== */
.cookies-content-container { font-family: 'Inter', sans-serif; }.cookies-content-container h2, .cookies-content-container h3 { font-family: 'Rajdhani', sans-serif; }.cookies-content-container .cookie-card { position: relative; overflow: hidden; }.cookies-content-container .cookie-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent); opacity: 0; transition: opacity 0.3s ease; }.cookies-content-container .cookie-card:hover::before { opacity: 1; }.cookies-content-container .management-block { position: relative; background: linear-gradient(135deg, rgba(28, 28, 31, 1) 0%, rgba(20, 20, 22, 1) 100%); }.cookies-content-container a { color: #00F3FF; text-decoration: none; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }.cookies-content-container a:hover { color: #F4F4F5; text-shadow: 0 0 8px rgba(0, 243, 255, 0.5); }

/* ===== PAGE: reviews ===== */
.reviews-list-section .js-filter-btn.active { background-color: #00F3FF; color: #0A0A0B; border-color: transparent; } .reviews-list-section .js-filter-btn { clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px); } .reviews-list-section .js-review-card { position: relative; } .reviews-list-section .js-review-card::before { content: ''; position: absolute; inset: 0; pointer-events: none; border: 1px solid transparent; transition: all 0.3s; z-index: 1; } .reviews-list-section .js-review-card:hover::before { border-color: rgba(0, 243, 255, 0.3); box-shadow: 0 0 15px rgba(0, 243, 255, 0.05); } .reviews-list-section .js-search-input::placeholder { color: #52525B; opacity: 1; }

/* ===== PAGE: guides ===== */
.guides-section .active-filter {
  background-color: rgba(0, 243, 255, 0.1) !important;
  border-color: #00F3FF !important;
  color: #00F3FF !important;
}

.guides-section input::placeholder {
  color: #52525B;
  opacity: 1;
}

.guides-section .clip-path-polygon {
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

@media (max-width: 767px) {
  .guides-section h2 {
    font-size: 16px !important;
  }
  .guides-section h3 {
    font-size: 14px !important;
  }
  .guides-section .js-guide-title {
    font-size: 18px !important;
  }
}

/* ===== PAGE: news ===== */
.news-archive-section .news-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.news-archive-section .js-filter-btn.active {
  background: rgba(0, 243, 255, 0.1);
  border-color: rgba(0, 243, 255, 0.5);
  color: #00F3FF;
}
.news-archive-section article {
  height: 100%;
}
.news-archive-section h2 {
  hyphens: auto;
}
@media (max-width: 767px) {
  .news-archive-section .news-filters-wrapper {
    flex-direction: column;
  }
  .news-archive-section .filter-tabs {
    overflow-x: auto;
    padding-bottom: 8px;
    width: 100%;
    flex-wrap: nowrap;
  }
  .news-archive-section .js-filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 12px;
  }
}

/* ===== PAGE: about ===== */
.jask-about-content { position: relative; overflow: hidden; } .jask-about-content::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.03) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.03) 0%, transparent 40%); pointer-events: none; } .jask-contact-section .clip-path-polygon { clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); } .jask-contact-section input:focus, .jask-contact-section textarea:focus { box-shadow: 0 0 10px rgba(0, 243, 255, 0.1); }

.comment-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(20%);
}

.main-comment-card {
    position: relative;
    overflow: hidden;
}

.main-comment-card:hover {
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.05);
}

.action-btn i {
    transition: transform 0.2s ease;
}

.action-btn:hover i {
    transform: translateY(-1px);
}

.comment-avatar {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reply-avatar-size {
    width: 40px;
    height: 40px;
}

.reply-comment-card {
    position: relative;
}

.reply-comment-card:hover {
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.05);
}


/* ===== PAGE TEMPLATE: reviews ===== */
.jaskiron-header .jaskiron-nav-link {
    position: relative;
}

.jaskiron-header .jaskiron-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00F3FF;
    transition: width 0.3s ease;
}

.jaskiron-header .jaskiron-nav-link:hover::after {
    width: 100%;
}

.hero-block h1 {
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.hero-block .hero-bg-container img {
    filter: brightness(0.4) contrast(1.1);
}

.article-body-wrapper .rich-text-content h2 {
    color: #F4F4F5;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-left: 3px solid #00F3FF;
    padding-left: 1rem;
}

.article-body-wrapper .rich-text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #A1A1AA;
}

.article-body-wrapper .rich-text-content ul {
    list-style: none;
    margin: 2rem 0;
}

.article-body-wrapper .rich-text-content ul:not(.custom-stats-list) li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-body-wrapper .rich-text-content ul:not(.custom-stats-list) li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #00F3FF;
    font-weight: bold;
}

.jaskiron-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #00F3FF;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.jaskiron-footer .js-footer-link {
    position: relative;
    display: inline-block;
}

.jaskiron-footer .js-footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00F3FF;
    transition: width 0.3s ease;
}

.jaskiron-footer .js-footer-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .hero-block {
        min-height: 350px;
    }

    .rich-text-content {
        font-size: 14px;
    }
}

/* ===== PAGE TEMPLATE: guides ===== */
.jaskiron-header {
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.jaskiron-header .jaskiron-nav-link {
    position: relative;
}

.jaskiron-header .jaskiron-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00F3FF;
    transition: width 0.3s ease;
}

.jaskiron-header .jaskiron-nav-link:hover::after {
    width: 100%;
}

.jaskiron-header .js-mobile-menu {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 767px) {
    .jaskiron-header .js-mobile-menu:not(.hidden) {
        display: block;
    }
}

.hero-block .hero-bg-container img {
    filter: brightness(0.4) contrast(1.1);
}

.hero-block h1 {
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.guide-content-wrapper {
    font-family: 'Inter', sans-serif;
}

.guide-content-wrapper h2,
.guide-content-wrapper h3,
.guide-content-wrapper h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #F4F4F5;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.reply-avatar-size {
    width: 32px;
    height: 32px;
}

.jaskiron-footer {
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.jaskiron-footer h3 {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.1em;
    position: relative;
}

.jaskiron-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #00F3FF;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.jaskiron-footer .js-footer-link {
    position: relative;
    display: inline-block;
}

.jaskiron-footer .js-footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00F3FF;
    transition: width 0.3s ease;
}

.jaskiron-footer .js-footer-link:hover::after {
    width: 100%;
}

.js-accordion-item.active .js-accordion-content {
    display: block;
}

.js-accordion-item.active .ri-add-line {
    transform: rotate(45deg);
}

/* ===== PAGE TEMPLATE: news ===== */
.jaskiron-news-detail .article-content h2 {
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.jaskiron-news-detail .article-content p {
    margin-bottom: 1.5rem;
}

.jaskiron-news-detail .article-content ul:not(.list-none) li {
    position: relative;
    padding-left: 1.5rem;
    color: #A1A1AA;
}

.jaskiron-news-detail .article-content ul:not(.list-none) li::before {
    content: '\eb11';
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    color: #00F3FF;
    font-size: 1rem;
}

.jaskiron-header .jaskiron-nav-link {
    position: relative;
}

.jaskiron-header .jaskiron-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00F3FF;
    transition: width 0.3s ease;
}

.jaskiron-header .jaskiron-nav-link:hover::after {
    width: 100%;
}

.jaskiron-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #00F3FF;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.jaskiron-footer .js-footer-link {
    position: relative;
    display: inline-block;
}

.jaskiron-footer .js-footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00F3FF;
    transition: width 0.3s ease;
}

.jaskiron-footer .js-footer-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .article-content h1 {
        font-size: 18px !important;
    }

    .article-content h2 {
        font-size: 16px !important;
    }

    .article-content h3 {
        font-size: 14px !important;
    }
}