@font-face {
    font-family: 'Mosvita';
    src: url('/static/fonts/mosvita.regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Root */

:root {
    --default-color: #fed800;
}

html,
body {
    font-family: 'Mosvita', sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    /* background-color: var(--default-color-body, rgba(15, 15, 15, 0.589)); */
    color: #ffffff;
    scroll-behavior: smooth;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.336), rgba(0, 0, 0, 0.336)),
        url(/static/img/background/background-body.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    height: auto;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin !important;
    scrollbar-color: #fed800 #000000 !important;
}

.grecaptcha-badge {
    /* bottom: 10px !important; */
    /* right: 10px !important; */
    visibility: hidden;
    /* z-index: 999999; */
}




main {
    padding-top: calc(var(--bs-navbar-height, 70px) + 20px);
}


/* Navbar */
.navbar {
    padding: 1rem 1rem;
    background-color: rgba(0, 0, 0, 0.62);
    border-bottom: 1px solid #fed800;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 600;
    position: relative;
}

.nav-link:hover {
    color: #ffc107 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled {
    background-color: #000000 !important;
    transition: background-color 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar {
        background-color: #000000 !important;
        transition: background-color 0.3s ease;
    }
}

.navbar-brand .logo {
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



/* .navbar-brand .logo-3d {
    width: 150px !important;
    perspective: 800px !important;

    margin: 0 auto !important;
}

.navbar-brand .logo-3d img {
    width: 100% !important;
    transition: transform 0.6s ease !important;
    transform-style: preserve-3d !important;
}

.navbar-brand .logo-3d:hover img {
    transform: rotateY(25deg) rotateX(10deg) scale(1.05) !important;
} */
.logo-icon {
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.logo-icon:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo-icon-spin {
    width: 150px;
    margin: 0 auto;
    perspective: 800px;
}

.logo-icon-spin img {
    width: 100%;
    animation: iconspin 5s linear infinite;
    transform-style: preserve-3d;
}

/* Animação contínua */
@keyframes iconspin {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }

    25% {
        transform: rotateY(90deg) rotateX(10deg);
    }

    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }

    75% {
        transform: rotateY(270deg) rotateX(-10deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}



/* Footer */
.main-footer {
    background-color: rgba(0, 0, 0, 0.62);
    border-top: 2px solid #fed800;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffd700;
}

.footer-text {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 5px;
}


.bg-section {
    /* background: url('/static/img/background/11740843_4826101.jpg') no-repeat center center/cover; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 10px;
}

@media (max-width: 768px) {
    .bg-section {
        background-position: center top;
        padding: 20px;
    }
}

@media(max-width: 400px) {
    .bg-section {
        flex-direction: column;
        text-align: center;
    }
}

.border-line-top {
    border-top: 0.1rem solid #fed800;
    padding-top: 10px;
}

.border-line-bottom {
    border-bottom: 0.1rem solid #fed800;
    padding-bottom: 10px;
}

.border-line-tb {
    border-bottom: 0.1rem solid #fed800;
    border-top: 0.1rem solid #fed800;
    padding-bottom: 5px;
    padding-top: 5px;
}

.border-elite {
    border: 0.1rem solid #fed800;
}

.shadow-elite {
    box-shadow: 0 5px 10px -3px rgba(254, 216, 0, 0.308),
        0 4px 6px -2px rgba(254, 216, 0, 0.267);
}

.badge-elite {
    display: inline-block;
    vertical-align: top;
    font-family: 'Mosvita', sans-serif;
    color: #ffffff;
    letter-spacing: 0.02em;
    border-radius: 5px;
    padding: 0.1rem 0.2rem 0.1rem;
    text-transform: uppercase;
    border: 0.1rem solid var(--default-color);
    font-size: 10px;
}

.b-discount {
    color: #50C878;
    border-color: #39af61;
}

.b-new {
    color: #FF7F50;
    border-color: #e65f2e;
}

.b-promo {
    color: #87CEEB;
    border-color: #54bbe4;
}


.py-10 {
    padding-top: 1rem !important;
}

.py-15 {
    padding-top: 5rem !important;
}

.py-50 {
    padding-top: 10rem !important;
}

.py-80 {
    padding-top: 10rem !important;
}

.py-100 {
    padding-top: 15rem !important;
}

.bg-card {
    background-color: #caac03fa !important;
}

.bg-table {
    background-color: #b8a01cd8 !important;
}

.bg-container {
    background-color: #b8a01cd8 !important;
}

.bg-elite {
    background-color: #b8a01cd8 !important;
    border-bottom: 2px solid #fed800 !important;
}

.bg-elite-2 {
    background-color: #b8a01cd8 !important;
    border-top: 1px solid #fff !important;
    border-bottom: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
    border-left: 1px solid #fff !important;
    border-radius: 50px;
}

.text-elite {
    color: #ffffff !important;
}

.btn-elite {
    background-color: #cc8c14bb;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #fed800;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.btn-elite:hover {
    background-color: var(--default-nav-footer);
    color: #2b2828;
    border-color: #fed800;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.btn-elite:focus {
    outline: 2px solid var(--default-nav-footer);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

/* BTN-TEUS */
.btn-teus {
    background-color: #fed800;
    color: #fff;
    padding: 5px 10px;
    font-weight: 600;
    border: 1px solid #fed800;
    border-radius: 5px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-teus:hover {
    background-color: #fff;
    font-weight: bold;
    color: #fed800;
    border-color: #fed800;
    transform: scale(1.1);
}

.btn-teus:focus {
    outline: 2px solid #fed800;
    outline-offset: 2px;
}

.text-teus {
    font-size: 1.5rem;
    color: #ffffff;
}

.text-teus-muted {
    color: #f00;
    opacity: 0.6;
}

/* BTN-TEUS END */

.text-btn {
    font-size: 1.2rem !important;
}

.btn-new {
    background-color: #cc8c14bb;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #cc8c14bb;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.btn-new:hover {
    background-color: var(--default-color);
    color: #ffffff;
    border-color: #fed800;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.btn-new:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

.alert-elite {
    background-color: #b8a01cd8;
}

.dropdown-elite {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-elite.show {
    opacity: 1;
    transform: translateY(0);
}

.table {
    width: 100% !important;
}

.text-alternate-muted {
    color: #ffffff;
    opacity: 0.6;
}

.text-muted-new {
    color: var(--default-color) !important;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-elite .tooltiptext {
    visibility: hidden;
    max-width: 300px;
    background-color: #383838ea;
    color: #ffffff;
    text-align: center;
    border-radius: 4px;
    padding: 4px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 120%;
    margin-left: -220px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-elite:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.hero-review {
    height: 20vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.200), rgba(0, 0, 0, 0.200));
    /* background-image: 
             linear-gradient(#fed800, var(--default-color-elite0-rgba));  */
    /* url(/static/img/background/331255811_82d826c9-3a63-4b1a-a9bb-5cb1a66f3855.jpg); */
    /* background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center center; */

    border-bottom: 1px solid #b8a11c;
}




.banner-cookies-wrapper {
    background-color: #fed800;
    border-radius: 8px;
    position: fixed;
    z-index: 1000;
    bottom: 0;
    width: 1100px;
    animation-iteration-count: 1;
    left: 0;
    right: 0;
    margin: auto;
    animation-name: transitionDown;
    box-sizing: border-box;
    box-shadow: 0 3px 9px 0 rgb(0 0 0 / 41%);
    display: none;
    margin-bottom: 10px;
    padding: 7px 10px;
    z-index: 5000000;
}

.banner-cookies-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.banner-cookies-content p {
    line-height: 1.5;
    font-size: 13px;
    margin: 0;
    color: #000000;
}

.banner-cookies-content a {
    color: #2467e4;
    text-decoration: underline;
}

.banner-cookies-content button {
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    border: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    background: #000;
    padding: 0px 30px;
    cursor: pointer;
    height: 30px;
    color: #ffffff;
}

.banner-cookies-content button:hover {
    background: #00000085;
}

@media (max-width: 1300px) {
    .banner-cookies-wrapper {
        width: 90%;
    }

    .banner-cookies-content {
        flex-direction: column;
    }

    .banner-cookies-content p {
        text-align: center;
    }
}



#countdown .text-center {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#countdown .text-center:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#countdown h3 {
    font-size: 3rem;
    margin-bottom: 5px;
    font-weight: bold;
}

#countdown small {
    font-size: 0.8rem;
}

.carousel-slide {
    object-fit: cover;
    max-height: 330px;
}


.carousel-inner {
    position: relative;
    max-height: 500px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
}

.carousel-item a {
    border-radius: 10px;
    overflow: hidden;
}

.container .strengthMeter {
    position: relative;
    width: 100%;
    height: 5px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.container .strengthMeter::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #f00;
    transition: width 0.5s ease, background 0.5s ease;
    border-radius: 5px;
}

.container .strengthMeter::after {
    content: attr(data-strength);
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    transition: color 0.5s ease;
}

/* Estilos para força fraca */
.container.weak .strengthMeter::before {
    width: 30%;
    background: #f00;
    filter: drop-shadow(0 0 5px #f00) drop-shadow(0 0 10px #f00);
}

.container.weak .strengthMeter::after {
    content: "Fraca";
    color: #f00;
    filter: drop-shadow(0 0 5px #f00);
}

/* Estilos para força moderada */
.container.moderate .strengthMeter::before {
    width: 70%;
    background: #ffcc00;
    filter: drop-shadow(0 0 5px #ffcc00) drop-shadow(0 0 10px #ffcc00);
}

.container.moderate .strengthMeter::after {
    content: "Moderada";
    color: #ffcc00;
    filter: drop-shadow(0 0 5px #ffcc00);
}

/* Estilos para força forte */
.container.strong .strengthMeter::before {
    width: 100%;
    background: #18e605;
    filter: drop-shadow(0 0 5px #18e605) drop-shadow(0 0 10px #18e605);
}

.container.strong .strengthMeter::after {
    content: "Forte";
    color: #18e605;
    filter: drop-shadow(0 0 5px #18e605);
}

.show-password {
    /* background: #272101f2; */
    cursor: pointer;
}

.table-elite {
    background-color: var(--default-color) !important;
    color: #ffffff;
    border-color: #fed800 !important;
}

.table-elite th {
    background-color: var(--default-color) !important;
    color: #ffffff;
}

.table-elite td {
    border-top: 1px solid #fed800 !important;
}

.countCart {
    font-size: 0.8rem;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-container {
    border-top: 1px solid #fed800;
    border-bottom: 1px solid #fed800;
    padding: 20px;
    color: #ffffff;
    font-family: 'Mosvita', sans-serif;
    background-image: linear-gradient(to right, #b8a11c, #635506c4);
}

.coins {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('/static/img/favicon/favicon-16x16.png');
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    animation: fall 5s linear infinite;
    will-change: transform;
    top: -50px;
    z-index: 0;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.btn-payment.disabled,
.btn-payment:disabled {
    background-color: #d10a0a !important;
    border-color: #e90f0f !important;
    color: white !important;
    cursor: not-allowed;
    opacity: 1;
}

.btn-checkout.disabled,
.btn-checkout:disabled {
    background-color: #d10a0a !important;
    border-color: #e90f0f !important;
    color: white !important;
    cursor: not-allowed;
    opacity: 1;
}

.payment-icon-checkout {
    width: 25%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.payment-icon-checkout:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.payment-icon {
    width: 10%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}


.payment-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}


.form-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgb(254, 216, 0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* .form-card:hover {
            border-top: 0.1rem solid #fed800;
            border-bottom: 0.1rem solid #fed800;
        } */


.dataTables_paginate .paginate_button {
    background-color: #fed800 !important;
    color: #000 !important;
    border-radius: 5px !important;
    padding: 6px 12px !important;
    margin: 2px;
}

.dataTables_paginate .paginate_button:hover {
    background-color: #fed800b2 !important;
    color: #000 !important;
}

.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: gray;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

.divider::before {
    margin-right: 1.5rem;
}

.divider::after {
    margin-left: 1.5rem;
}

.form-control-new {
    background: rgba(10, 10, 20, 0.5) !important;
    color: rgb(245, 245, 245) !important;
    padding: 0.85rem 1.25rem;
    border-radius: 10px !important;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-control-new::placeholder {
    color: #ffc107 !important;
    opacity: 0.8;
}

.form-control-new:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25) !important;
    border-color: #ffc107 !important;
    background: rgba(15, 15, 25, 0.7) !important;
    color: lightgray !important;
}

.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc107;
    font-size: 1.1rem;
}

/* SweetAlert */
.swal-modern {
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
    animation: fadeInPop 0.25s ease-out;
    color: #f1f1f1;
}

.swal-custom-border {
    border: 1px solid #ffc107;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.35);
}

@keyframes fadeInPop {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.swal-toast {
    max-width: 500px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px !important;
}

.swal-toast-title {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: black !important;
}

.swal-toast-message {
    font-size: 14px !important;
    color: black !important;
    margin-top: 4px;
}

/* Section */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-weight: bold;
    font-size: 2.2rem;
    background: linear-gradient(to right, #FFD700, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

/* Discord */
.discord-badge {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 248px;
    height: 60px;
    background: #FFD700;
    border-radius: 4px;
    box-shadow: 0 0 5px gray;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: right 0.3s;
    font-family: sans-serif;
    overflow: hidden;
}

.discord-badge a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    width: 100%;
    padding: 10px;
}

.discord-badge img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.discord-badge span {
    font-size: 14px;
    font-weight: bold;
}

.discord-badge {
    right: -186px;
}

.discord-badge:hover {
    right: 14px;
}


/*New*/

.normal-since {
    border: #FFD700 1px solid;
    border-radius: 5%;
    border-color: #FFD700;
    color: #FFD700;
    background-color: #ffd90052;
    text-decoration: none;
    font-weight: bold;
    padding: .35rem;
}

.profile-overlay-header {
    position: absolute;
    top: -0px;
    left: 0px;
    width: 30px;
    height: 30px;
    z-index: 3;
    pointer-events: none;
}


.normal-since:hover {
    background-color: #ffd90075;
}

.premium-since {
    border-color: #F47FFF !important;
    color: #F47FFF !important;
    background-color: #f47fff2c !important;
    animation: avatarGlow 4s infinite ease-in-out;
}

.premium-since:hover {
    background-color: #f47fff70 !important;
    color: #ffffff !important;
}

@keyframes avatarGlow {
    0% {
        box-shadow: 0 0 2px #F47FFF, 0 0 5px #F47FFF;
    }

    50% {
        box-shadow: 0 0 5px #F47FFF, 0 0 10px #F47FFF;
    }

    100% {
        box-shadow: 0 0 5px #F47FFF, 0 0 10px #F47FFF;
    }
}

.e-coins {
    display: none;
    border: #FFD700 1px solid;
    border-radius: 5%;
    border-color: #FFD700;
    color: #FFD700;
    background-color: #ffd90052;
    text-decoration: none;
    font-weight: bold;
    padding: .35rem;
}

.e-coins:hover {
    background-color: #ffd90075;
}

@media (max-width: 576px) {

    .normal-since,
    .e-coins {
        width: 100%;
    }
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: #111;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1055;
    /* Maior que o Discord Badge */
}

.cart-sidebar.show {
    transform: translateX(0);
}

.cart-header,
.cart-footer {
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.cart-footer {
    border-top: 1px solid #333;
    border-bottom: none;
}

.cart-body {
    padding: 1rem;
    height: calc(100% - 160px);
    overflow-y: auto;
}

/* .spoiler {
    background-color: #444;
    color: transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.spoiler:hover {
    color: #fff;
} */


.btn-lr {
    padding: 1rem;
    border-radius: 10px;
    width: 100%;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-lr:not(:first-child) {
    margin-top: 1rem;
}