@font-face {
    font-family: 'Beaufort for LOL';
    src: url('../font/Beaufort-for-LOL-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apercu';
    src: url('../font/apercu_regular_pro.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

body {
    font-family: 'Apercu', sans-serif;
    background: #031A16;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Beaufort for LOL', sans-serif;
    font-weight: 700;
    background: linear-gradient(180deg, #FFA31A 0%, #FFCF33 68.75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 10px 0;
}

h1 {
    font-size: 42px;
    line-height: 64px;
}

h2 {
    font-size: 36px;
    line-height: 46px;
}

h3 {
    font-size: 30px;
    line-height: 40px;
}

h4 {
    font-size: 26px;
    line-height: 36px;
}

h5 {
    font-size: 22px;
    line-height: 30px;
}

h6 {
    font-size: 18px;
    line-height: 22px;
}

a {
    font-family: 'Apercu', sans-serif;
}

b, strong {
    font-family: 'Apercu', sans-serif;
}

.content b, .content strong,
.content a {
    font-family: 'Apercu', sans-serif;
    color: #ffcf33;
    font-weight: 700;
}
.content a:hover {
    color: #ffcf33;
    text-decoration: underline;
}

.content .container {
    padding: 0 20px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

:root {
    --stb-stroke-color: #085B00;
}

.header {
    position: sticky;
    top: 0;
    background: url(../img/pattern.png) center / cover repeat-x #002921 ;
    z-index: 100;
    padding: 5px 15px;
    box-shadow: 0px 16px 20px 0px #0000001F;
}

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

.header__logo img {
   width: 180px;
   max-width: 100%;
   height: auto;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
    align-items: center;
    z-index: 1001;
}

.hamburger img {
    width: 25px;
    height: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.header__nav {
    display: none;
}

.header__actions {
    display: flex;
    gap: 8px;
}

.btn--register,
.btn--login {
    position: relative;
    animation: pulse-btn 1.5s ease-in-out infinite;
    padding: 12px 35px;
    transition: all 0.5s ease;
}

/* Кнопки LOG IN / REGISTER — фон из трёх частей (head-left, head-center, head-right) */
.btn.btn--secondary {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    height: 45px;
    cursor: pointer;
    transition: transform 0.2s;
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: #fff;
}

.btn.btn--secondary .btn-left {
    width: 20px;
    background: url(../img/head-left.png) no-repeat center left;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}

.btn.btn--secondary .btn-center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/head-center.png) repeat-x center;
    background-size: auto 100%;
    margin: 0 -2px;
    padding: 0 12px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: 'Beaufort for LOL', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 0px 2px 2px #0c1221;
    white-space: nowrap;
}

.btn.btn--secondary .btn-right {
    width: 20px;
    background: url(../img/head-right.png) no-repeat center right;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}

/* Hero button — фон из трёх частей (hb-left, hb-center, hb-right) */
.btn--hero {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    height: auto;
    min-height: 50px;
    cursor: pointer;
    padding: 0;
    gap: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    font-family: 'Beaufort for LOL', sans-serif;
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: hero-btn-pulse 2.5s ease-in-out infinite;
    transition: transform 0.25s ease, filter 0.25s ease;
}

@keyframes hero-btn-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.btn--hero:hover {
    animation: none;
    transform: scale(1.03);
    filter: brightness(1.08);
}

@keyframes hero-inner-glow {
    0% {
        transform: translateX(-100%) skewX(-25deg);
    }
    100% {
        transform: translateX(350%) skewX(-25deg);
    }
}

.btn--hero__left {
    width: 24px;
    min-width: 24px;
    background: url(../img/hb-left.png) no-repeat center left;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
    margin-right: -6px;
}

.btn--hero__center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/hb-center.png) repeat-x center;
    background-size: auto 100%;
    margin: 0 -4px;
    padding: 15px 24px;
    position: relative;
    z-index: 1;
    text-shadow: 0px 2px 2px #0c1221;
    white-space: nowrap;
}

.btn--hero__right {
    width: 24px;
    min-width: 24px;
    background: url(../img/hb-right.png) no-repeat center right;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
    margin-left: -6px;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 200px;
    height: calc(100vh - 90px);
    background: #0c1221;
    border-right: 1px solid #155BA1;
    z-index: 50;
    transition: transform 0.3s ease;
}

.sidebar__close {
    display: none;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    padding: 5px;
    gap: 15px;
    margin-top: 30px;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
    background: radial-gradient(152.78% 253% at -29% 239%, #ffcf33, #002921 88.99%) padding-box, linear-gradient(0deg, #1a1a1a, #1a1a1a) padding-box, linear-gradient(81.51deg, #ffa31a -1.81%, #e5a749 67%) border-box;
    box-sizing: border-box;
}

.sidebar__link::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('../img/Union.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar__link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: radial-gradient(circle at 0% 70%, #30ff361f 0%, transparent 50%), radial-gradient(circle at 100% 90%, #80ff0047 0%, transparent 50%), radial-gradient(circle at 50% 0%, #80ff00 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sidebar__link > * {
    position: relative;
    z-index: 1;
}

.sidebar__link:hover::before {
    opacity: 1;
}

.main {
   margin:  0;
   position: relative;
}

.main::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -58px;
    height: 60px;
    background: linear-gradient(180deg, rgba(3, 26, 22, 0) 0, #031a16 100%);
    pointer-events: none;
    z-index: 1;
    width: 100%;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    background: url(../img/banner.webp) center / cover no-repeat;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 0 30px;
}

.hero__right {
    position: relative;
    flex-shrink: 0;
    width: 55%;
    max-width: 700px;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url(../img/br.webp) left / 70% 100% no-repeat;
    z-index: 0;
}

.hero__queen,
.hero__king {
    position: relative;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    object-position: bottom right;
}

.hero__queen {
    z-index: 0;
    margin-right: -25%;
}

.hero__king {
    z-index: 1;
    margin-right: 2%;
}

.hero__content {
    text-align: left;
    max-width: 550px;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.hero__subtitle {
    background: linear-gradient(180deg, #FFFFFF 45%, #C6BDFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Beaufort for LOL', sans-serif;
    margin-bottom: -15px;
}

.hero__text {
    max-width: 750px;
    text-shadow: 0px 2px 2px #0c1221;
}

.hero__title {
    font-family: 'Beaufort for LOL', sans-serif;
    background: linear-gradient(180deg, #FFA31A 0%, #FFCF33 68.75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 45px;
    font-weight: 900;
    line-height: 1.1;
}

@media (max-width: 1130px) {
    .hero__bg {
        position: absolute;
        inset: 0;
        background: url(../img/hbg-mob.webp) bottom / 100% 50% no-repeat;
        z-index: 1;
    }
    .hero .container {
        position: relative;
        z-index: auto;
        display: flex;
        flex-direction: column-reverse;   
        align-items: center;
        justify-content: center;
        padding: 0 0 20px 0;
    }
    .hero__right {
        position: relative;
        z-index: 0;
        width: 100%;
    }
    .hero__content {
        position: relative;
        z-index: 2;
        justify-content: center;
        align-items: center;
        margin-top: -160px;
    }
    .btn--hero {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 768px) {

    .hero__right {
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 265px;
    }
    .hero__queen, .hero__king {
        position: relative;
        height: auto;
        max-height: 300px;
        object-fit: contain;
        object-position: bottom right;
    }
    .btn--hero__center{
        padding: 5px 24px;
        font-size: 20px;
    }
    .hero__subtitle {
        margin-bottom: -10px;
    }
    .hero__bg {
        background: url(../img/hbg-mob.webp) bottom / 100% 60% no-repeat;
    }
    .hero__content{
        margin-top: -100px;
        gap:10px;
    }
    .hero__queen {
        z-index: 0;
        margin-right: -145px;
    }
    .hero__right{
        justify-content: center;
    }
    .hero__title {
        font-size: 30px;
        text-align: center;
    }
}

.content {
    padding: 0 0 48px;
}

p {
    font-family: 'Apercu', sans-serif;
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 400;
}

ul, ol {
    font-family: 'Apercu', sans-serif;
    font-size: 16px;
    line-height: 20px 35px 10px 35px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 400;
    padding: 28px 40px;
    border: 1px solid #E5A749;
    position: relative;
    box-sizing: border-box;
}

/* Угловые элементы Union.svg для списков */
ul::before,
ol::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 25px;
    height: 25px;
    background: url(../img/Union.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
}

ul::after,
ol::after {
    content: "";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 25px;
    height: 25px;
    background: url(../img/Union.svg) no-repeat center;
    background-size: contain;
    transform: rotate(90deg);
    z-index: 1;
}

ul li:last-child,
ol li:last-child {
    position: relative;
}

ul li:last-child::before,
ol li:last-child::before {
    content: "";
    position: absolute;
    left: -53px;
    bottom: -48px;
    width: 25px;
    height: 25px;
    background: url(../img/Union.svg) no-repeat center;
    background-size: contain;
    transform: rotate(-90deg);
    z-index: 1;
}

ul li:last-child::after,
ol li:last-child::after {
    content: "";
    position: absolute;
    right: -53px;
    bottom: -48px;
    width: 25px;
    height: 25px;
    background: url(../img/Union.svg) no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
    z-index: 1;
}

ul li::marker , ol li::marker {
   color:rgb(255 255 255);
}

ul li, ol li {
    margin-bottom: 8px;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

.table-section {
    padding-bottom: 48px;
}

.lexical-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 0;
}

.lexical-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    overflow: hidden;
    white-space: nowrap;
}

.lexical-table tr {
    border-bottom: 1px solid #E5A749;
}

.lexical-table tr:last-child {
    border-bottom: 1px solid #E5A749;
}

.lexical-table tr:nth-child(even) {
    background: rgb(235 107 246 / 8%);
}

.lexical-table td {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 20px;
    border: none !important;
    padding: 10px!important;
}

.lexical-table td p {
    padding: 0!important;
    margin: 0!important;
}

.table-label {
    color: #fff;
    font-weight: 500;
    width: 50%;
}

.table-value {
    color: #ffcf33;
    font-weight: normal;
    text-align: left;
}

.featured img {
    width: 100%;
    height: auto;
    display: block;
}

.footer {
    padding: 20px 0 50px;
    margin-top: 64px;
    text-align: center;
}

.footer__logo {
    margin-bottom: 32px;
}

.footer__logo img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer__link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Apercu', sans-serif;
    padding: 0 10px;
}

.footer__licenses {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer__licenses img {
   width: 100%;
   max-width: 85px;
   height: 40px;
   object-fit: contain;
}

.footer__payments {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.footer__payments img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer__disclaimer {
    margin-bottom: 16px;
}

.footer__disclaimer p {
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    margin-bottom: 0;
}

.footer__copyright p {
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .header {
        padding: 0;
    }
    .hamburger {
        display: flex;
        order: 3;
    }

    .sidebar {
        position: fixed;
        right: -100%;
        left: auto;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #002921;
        z-index: 1000;
        transition: right 0.3s ease;
    }

    .sidebar.active {
        right: 0;
    }

    .sidebar__close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #ffa31a;
        font-size: 40px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
    }

    .sidebar__close:hover {
        color: #ffa31a;
        transform: rotate(90deg);
    }

    .sidebar__nav {
        margin-top: 80px;
        padding: 20px 10px;
    }

    .sidebar__link {
        font-size: 16px;
        padding: 10px 20px;
    }

    .content {
        padding: 0!important;
    }
    
    .header .container {
        display: flex;
        align-items: center;
        gap: 0px;
        flex-wrap: wrap;
        padding: 5px 16px;
    }

    .header__logo {
        flex: 1;
        display: flex;
        justify-content: center;
        order: 2;
    }

    .header__logo img {
        width: 120px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .header__actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 10px;
        padding: 12px 10px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        background: #000000;
        flex-wrap: wrap;
        background: url(../img/pattern.png) center / cover repeat-x #002921;
        z-index: 999;
    }

    .header__actions .btn {
        flex: 1;
        min-width: 0;
        max-width: calc(50% - 5px);
        justify-content: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 16px;
        width: auto;
        height: auto;
        min-height: 40px;
    }

    .btn.btn--secondary {
        height: 30px;
    }

    .btn.btn--secondary .btn-left,
    .btn.btn--secondary .btn-right {
        width: 28px;
    }

    .btn.btn--secondary .btn-center {
        font-size: 16px;
        padding: 0 8px;
    }

    .btn--login,
    .btn--register {
        padding: 0;
        z-index: 2;
    }

    .lexical-table-container {
        overflow-x: auto;
    }

    .lexical-table {
        min-width: 400px;
        white-space: normal;
    }

    .lexical-table td {
        padding: 6px;
        font-size: 14px;
    }

    .table-label {
        font-size: 14px;
    }

    .table-value {
        font-size: 14px;
    }

    h1 {
        font-size: 32px;
        line-height: 36px;
    }

    h2 {
        font-size: 29px;
        line-height: 34px;
    }

    h3 {
        font-size: 28px;
        line-height: 30px;
    }

    h4 {
        font-size: 24px;
        line-height: 26px;
    }

    h5 {
        font-size: 20px;
        line-height: 24px;
    }

    h6 {
        font-size: 19px;
        line-height: 20px;
    }

    p {
        font-size: 16px;
        line-height: 26px;
    }

    ul, ol {
        font-size: 16px;
        line-height: 26px;
        padding: 28px 40px;
    }

    .footer {
        margin-top: 48px;
    }

    .footer .container {
        padding: 0 16px;
    }

    .footer__logo {
        margin-bottom: 24px;
    }

    .footer__logo img {
        max-width: 160px;
    }

    .footer__nav {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__licenses {
        gap: 16px;
        margin-bottom: 20px;
    }

    .footer__licenses img {
        height: 32px;
        padding: 0;
    }

    .footer__payments {
        gap: 16px;
        margin-bottom: 24px;
    }

    .footer__payments img {
        height: 30px;
        padding: 0;
    }

    .payments {
        padding: 30px 0;
        margin-top: 30px;
    }

    .payments__track {
        gap: 20px;
    }

    .payments__item img {
        height: 50px;
    }

    .footer__disclaimer p,
    .footer__copyright p {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero__title {
        font-size: 40px;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .overlay {
        display: none;
    }

    .sidebar {
        display: none;
    }

    .header .container {
        display: flex;
    }

    .header__logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .header__nav {
        display: flex;
        gap: 20px;
        align-items: center;
        flex: 1;
        justify-content: center;
    }

    .header__link {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        transition: color 0.3s ease;
        position: relative;
        font-family: 'Beaufort for LOL', sans-serif;
    }

    .header__link:hover {
        color: #80FF00;
    }

    .header__actions {
        display: flex;
        gap: 8px;
    }

    .btn {
        padding: 10px 35px;
    }

    .hero {
        min-height: 450px;
        display: flex;
        align-items: center;
    }

   
}

/* RTL-блоке */
[dir="rtl"] [style*="text-align: left"] {
    text-align: inherit !important;
}

[dir="rtl"] .hero .container {
    display: flex;
    justify-content: flex-end;
}

[dir="rtl"]  .hero__content {
    align-items: flex-end;
}

@media (max-width: 768px) {
    [dir="rtl"] .hero .container {
        padding: 0;
    }
    [dir="rtl"] .hero__content {
        align-items: flex-end;
    }
    [dir="rtl"] .hamburger {
       display: flex;
    }

    [dir="rtl"] .hamburger {
        order: 2;
    }

}

/* --- Slots Block Styles --- */
.slots-wrapper {
  margin: 30px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  align-items: start;
}
.slot-card {
  text-align: center;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1;
}
.slot-image {
  border-radius: 6px;
  overflow: hidden;
}
.slot-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.slot-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: calc(100% - 16px);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  background: #450C88;
  color: #FFFFFF;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.slot-card:hover .slot-name{
  opacity: 1;
}
.slot-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
@media (max-width: 600px) {
  .slots-grid {
    gap: 10px;
  }
  .slot-name {
    font-size: 12px;
  }
}
