@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --shadow-color: hsla(210, 40%, 52%, .4);
    --btn-color: hsl(210, 80%, 42%);
    --bg-btn-color: #141218;
    --tw-border-opacity: 1;
    --color-muted-50: 248 250 252;
    --color-muted-100: 241 245 249;
    --color-muted-200: 226 232 240;
    --color-muted-300: 203 213 225;
    --color-muted-400: 148 163 184;
    --color-muted-500: 100 116 139;
    --color-muted-600: 71 85 105;
    --color-muted-700: 51 65 85;
    --color-muted-800: 30 41 59;
    --color-muted-900: 15 23 42;
    --color-muted-950: 2 6 23;
    --vc-clr-primary: #000;
    --vc-clr-secondary: #090f207f;
    --vc-clr-white: #ffffff;
    --vc-icn-width: 1.2em;
    --vc-nav-width: 30px;
    --title-color: #000000;
    --text-color: #31373D;
    --sub-text-color: #5F6975;
    --placeholder-color: #BEC1CC;
    --background-color: #F6F7FA;
    --standard-color: #FFFFFF;
    --shadow-color: #EAECF3;
    --page-shadow: linear-gradient(to right, #DADDE6, rgba(218, 221, 230, 0));
    --autofill-color: #31373d;
    --yellow-color: #FFAD00;
    --primary-color: #3BC117;
    --border-radius: .25rem
}

html {
    overscroll-behavior: contain;
    scrollbar-width: thin;
    touch-action: manipulation;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
}
canvas {
    -webkit-user-select: none;
    user-select: none
}
@media screen and (min-width: 621px) {
    body {
        scrollbar-width:none
    }

    body::-webkit-scrollbar {
        margin-right: 5px;
        width: 0
    }

    ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        background-color: transparent;
        border-radius: var(--border-radius)
    }

    ::-webkit-scrollbar-thumb {
        background-color: var(--placeholder-color);
        transition: all .5s;
        border-radius: var(--border-radius)
    }

    ::-webkit-scrollbar-button {
        display: none
    }

    ::-webkit-scrollbar-button:vertical:end:increment {
        display: block;
        height: 20px;
        background-color: transparent
    }

    ::-webkit-scrollbar-button:vertical:start:increment {
        display: block;
        height: 20px;
        background-color: transparent
    }

    * {
        scrollbar-color: var(--shadow-color) transparent;
        scrollbar-width: thin;
        scrollbar-width: none
    }
}
code {
    display: inline-block;
    line-height: 1.4;
    padding: 0 .375rem;
    color: var(--primary-color);
    border-radius: var(--border-radius)
}

.body{
    font-size: 12px;
    line-height: 1.3;
}

@layer components {
    .label {
        @apply block mb-1 text-gray-500 dark:text-gray-300 font-medium
    }
    .btn-primary {
        @apply transition duration-700 ease-in-out text-white focus:ring-4 focus:ring-blue-300 font-medium text-sm px-8 py-3 focus:outline-none rounded
    }
    .input {
        @apply dark:focus:ring-blue-500 dark:focus:border-blue-500 border-gray-300 text-gray-600 hover:border-blue-500 placeholder:text-gray-300 dark:border-gray-800 dark:bg-gray-900 dark:text-gray-200 dark:placeholder:text-gray-500 w-full border bg-white font-sans transition-all duration-300 disabled:cursor-not-allowed disabled:opacity-75 px-3 h-12 py-3 text-sm leading-5 rounded
    }
    .input-group {
        @apply bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 p-2.5  dark:bg-[var(--ci-gray-over)] dark:border-[var(--ci-gray-over)] dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500
    }
}

/* .bg-primary-500{
    background-color: var(--ci-background);
} */
:is(.dark .bg-primary) {
    background-color: var(--ci-background-dark);
}
.bg-primary-opacity{
    background-color: var(--ci-background);
    opacity: 0.5;
}

.bg-card {
    background: rgb(247,247,247);
    background: radial-gradient(circle, rgba(247,247,247,1) 0%, rgba(255,255,255,1) 25%, rgba(246,246,246,1) 48%, rgba(255,255,255,1) 68%, rgba(255,255,255,1) 100%);
}

:is(.dark .bg-card) {
    background: rgb(22,24,39);
    background: linear-gradient(90deg, rgba(22,24,39,1) 0%, rgba(22,24,39,1) 25%, rgba(10,11,29,1) 48%, rgba(10,11,29,1) 68%, rgba(23,25,40,1) 100%);
}

/**
 * Bg Card
 */
.bg-card-2 {
    background: rgb(34,43,116);
    background: radial-gradient(circle, rgba(34,43,116,1) 0%, rgba(33,37,115,1) 9%, rgba(8,19,65,1) 42%, rgba(8,13,83,1) 71%, rgba(21,37,105,1) 96%);
}
:is(.dark .bg-card-2) {
    background: rgb(34,43,116);
    background: radial-gradient(circle, rgba(34,43,116,1) 0%, rgba(33,37,115,1) 9%, rgba(8,19,65,1) 42%, rgba(8,13,83,1) 71%, rgba(21,37,105,1) 96%);
}


/**
 * Bg login
 */
.bg-login {
    background: rgb(247,247,247);
    background: radial-gradient(circle, rgba(247,247,247,1) 0%, rgba(255,255,255,1) 25%, rgba(246,246,246,1) 48%, rgba(255,255,255,1) 68%, rgba(255,255,255,1) 100%);
    box-shadow: inset 0px 0px 8px 15px rgba(0, 0, 0, 0);
}
:is(.dark .bg-login) {
    background: rgb(22,24,39);
    background: linear-gradient(90deg, rgba(22,24,39,1) 0%, rgba(22,24,39,1) 25%, rgba(10,11,29,1) 48%, rgba(10,11,29,1) 68%, rgba(23,25,40,1) 100%);
    border: 2px solid #232b37;
}

.change-language{
    background: var(--ci-primary);
    background: linear-gradient(0deg, var(--ci-primary-opacity) 0%, var(--ci-primary) 68%);
}


/**
 * Efeitos Botões
 * Animações de botões
 */
.btn-1 {
    background: #e02c26;
    font-weight: 100;
}
.btn-1 svg {
    height: 45px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.btn-1 rect {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
}

.btn-1:hover {
    background: rgba(225, 51, 45, 0);
    font-weight: 900;
    letter-spacing: 1px;
}
.btn-1:hover rect {
    stroke-width: 5;
    stroke-dasharray: 15, 310;
    stroke-dashoffset: 48;
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-2 {
    letter-spacing: 0;
}

.btn-2:hover,
.btn-2:active {
    letter-spacing: 5px;
}

.btn-2:after,
.btn-2:before {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
    bottom: 0px;
    content: " ";
    display: block;
    margin: 0 auto;
    position: relative;
    transition: all 280ms ease-in-out;
    width: 0;
}

.btn-2:hover:after,
.btn-2:hover:before {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-color: #fff;
    transition: width 350ms ease-in-out;
    width: 70%;
}

.btn-2:hover:before {
    bottom: auto;
    top: 0;
    width: 70%;
}

.btn-3 {
    background: #e3403a;
    border: 1px solid #da251f;
    box-shadow: 0px 2px 0 #d6251f, 2px 4px 6px #e02a24;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all 150ms linear;
}

.btn-3:hover {
    background: #e02c26;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
    color: #ec817d;
    text-decoration: none;
    text-shadow: -1px -1px 0 #c2211c;
    transition: all 250ms linear;
}

.btn-4 {
    border: 1px solid;
    overflow: hidden;
    position: relative;
}
.btn-4 span {
    z-index: 20;
}
.btn-4:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
}

.btn-4:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-5 {
    border: 0 solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 255, 255, 0.5);
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-5:hover {
    border: 1px solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #427388;
}

/**
 * Botões
 */
.button-primary{
    background-color: var(--ci-primary);
}
.button-primary:hover{
    background-color: var(--ci-primary-opacity);
}

.btn-primary{
    border: 2px solid var(--ci-primary);
    background-color: var(--ci-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    transition: .1s;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    word-spacing: wr;
    white-space: nowrap;
    font-family: 'Roboto Condensed', sans-serif;
}
.btn-primary:hover,.btn-primary:active{
    background-color: transparent;
    color: var(--ci-primary);
}

.btn-primary-outline{
    border: 2px solid var(--ci-primary);
    background-color: transparent;
    color: var(--ci-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .1s;
    text-decoration: none;
    cursor: pointer;
    word-spacing: wr;
    white-space: nowrap;
    font-family: 'Roboto Condensed', sans-serif;
}
.btn-primary-outline:hover,.btn-primary-outline:active{
    background-color: var(--ci-primary);
    color: white;
}

.btn-gradient{
    background: var(--ci-primary-400);
    background: linear-gradient(185deg, var(--ci-primary-400) 0%, var(--ci-primary-600) 68%);
}
.btn-gradient:hover{
    background: var(--ci-primary-700);
    background: linear-gradient(90deg, var(--ci-primary-700) 0%, var(--ci-primary-500) 68%);
}
.border-primary {
    border: 2px solid var(--ci-primary-400);
}
/**
 * MENU BUTTONS
 */
.link-active .side-btn{
    background: var(--ci-primary-opacity);
    background: linear-gradient(185deg, var(--ci-primary-opacity) 0%, var(--ci-primary) 68%);
}
.link-active .side-btn .side-link{
    background: rgb(11,12,27);
}
.link-active .side-btn{
    color: var(--ci-primary);
}
.link-active .side-btn .side-link i{
    color: var(--ci-primary);
}
.side-btn .side-link:hover i {
    color: var(--ci-primary);
}
.side-btn:hover{
    background: var(--ci-primary-opacity);
    background: linear-gradient(185deg, var(--ci-primary-opacity) 0%, var(--ci-primary) 68%);
}

.side-btn {
    background: rgb(22,24,39);
    background: linear-gradient(185deg, rgba(22,24,39,1) 0%, rgba(43,45,56,1) 68%);
}
.side-link {
    background-color: #090B1A;
}
.side-btn .side-link i{
    color: rgb(40,40,62);
}


.flex-center{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.text-primary{
    color: var(--ci-primary) !important;
}

/**
 * Toast
 */
.Vue-Toastification__toast--success {
    background-color: #4caf5066;
    color: #fff;
    border-left: 5px solid green;
}
.Vue-Toastification__toast--success .Vue-Toastification__close-button {
    background-color: green;
    border-radius: 5px;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    outline: none;
    border: none;
    padding: 3px 8px;
    padding-left: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    align-items: center;
    color: #bdbdbd;
    transition: visibility 0s, opacity 0.2s linear;
    opacity: 1;
}
.Vue-Toastification__toast--success .Vue-Toastification__icon {
    margin: auto 18px auto 0px;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    transition: 0.3s ease;
    align-items: center;
    width: 30px;
    height: 100%;
    color: green;
}

.Vue-Toastification__toast--error {
    background-color: rgba(248, 36, 36, 0.4);
    color: #fff;
    border-left: 5px solid red;
}
.Vue-Toastification__toast--error .Vue-Toastification__close-button {
    background-color: red;
    border-radius: 5px;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    outline: none;
    border: none;
    padding: 3px 8px;
    padding-left: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    align-items: center;
    color: #bdbdbd;
    transition: visibility 0s, opacity 0.2s linear;
    opacity: 1;
}
.Vue-Toastification__toast--error .Vue-Toastification__icon {
    margin: auto 18px auto 0px;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    transition: 0.3s ease;
    align-items: center;
    width: 30px;
    height: 100%;
    color: red;
}

/**
 * Online
 */
.online_icon {
    -webkit-animation: online_live-animation__oO5B- 1.5s infinite;
    animation: online_live-animation__oO5B- 1.5s infinite;
    flex-shrink: 0;
    height: 32px;
    margin-right: 6px;
    width: 32px;
}

@-webkit-keyframes online_live-animation__oO5B- {
    0% {
        opacity: .3
    }

    50% {
        opacity: 1
    }

    to {
        opacity: .3
    }
}

@keyframes online_live-animation__oO5B- {
    0% {
        opacity: .3
    }

    50% {
        opacity: 1
    }

    to {
        opacity: .3
    }
}

.online_online__Bb4j0 {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    margin-left: 30px;
    position: relative
}

@media(max-width: 1550px) {
    .online_online__Bb4j0 {
        display:none
    }
}

@media(max-width: 900px) {
    .online_online__Bb4j0 {
        display:flex;
        flex-grow: 1;
        margin-left: 15px
    }
}

@media(max-width: 599px) {
    .online_online__Bb4j0 {
        margin-left:5px
    }
}

.online_icon__xlNWm {
    -webkit-animation: online_live-animation__oO5B- 1.5s infinite;
    animation: online_live-animation__oO5B- 1.5s infinite;
    flex-shrink: 0;
    height: 32px;
    margin-right: 6px;
    width: 32px
}

@media(max-width: 900px) {
    .online_icon__xlNWm {
        height:25px;
        width: 25px
    }
}

@media(max-width: 599px) {
    .online_icon__xlNWm {
        display:none
    }
}

.online_cnt__g7AXI {
    color: #46b975;
    font-size: 15px;
    font-weight: 700
}

@media(max-width: 900px) {
    .online_cnt__g7AXI {
        font-size:12px
    }
}

@media(max-width: 599px) {
    .online_cnt__g7AXI {
        display:none
    }
}

.online_label__KNBDA {
    color: #95a498;
    font-size: 9px;
    font-weight: 300;
    text-transform: uppercase
}

@media(max-width: 900px) {
    .online_label__KNBDA {
        font-size:9px
    }
}

@media(max-width: 599px) {
    .online_label__KNBDA {
        display:none
    }
}



/**
 * carousel
 */
.carousel__prev i, .carousel__next i{
    color: var(--ci-primary-500);
}
.carousel__pagination {
    position: relative;
    top: -30px;
}
.carousel__pagination-button::after {
    background-color: var(--ci-primary-700);
    opacity: 0.5;
}
.carousel__pagination-button:hover::after, .carousel__pagination-button--active::after {
    background-color: var(--ci-primary-300) !important;
}

.shortcuts {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: .5rem;
    position: relative;
}
.shortcuts:after {
    background-image: linear-gradient(to left, #323637 var(--tw-gradient-from-position), rgba(50, 54, 55, 0) var(--tw-gradient-to-position));
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
    content: "";
    display: block;
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    z-index: 10;
    --tw-gradient-from: #161722 var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(50,54,55,0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.nui-input-wrapper .nui-input {
    border-radius: .375rem;
    border-width: 2px !important;
    height: auto !important;
    max-width: 28rem;
    width: 100%;
    --tw-border-opacity: 1;
    background-color: rgb(var(--color-muted-900) / .75) !important;
    border-color: rgb(var(--color-muted-700) / var(--tw-border-opacity));
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}
.nui-input-wrapper .nui-input-icon {
    align-items: center;
    display: flex;
    inset-inline-start: 0;
    justify-content: center;
    position: absolute;
    top: 0;
    z-index: 10;
    --tw-text-opacity: 1;
    color: rgb(var(--color-muted-400) / var(--tw-text-opacity));
}
.nui-input-wrapper .nui-input-icon {
    align-items: center;
    display: flex;
    inset-inline-start: 0;
    justify-content: center;
    position: absolute;
    top: 0;
    z-index: 10;
    --tw-text-opacity: 1;
    color: rgb(var(--color-muted-400) / var(--tw-text-opacity));
}
.nui-input-icon {
    height: -webkit-fill-available !important;
}
.nui-input-icon {
    max-height: 3.5rem;
}
.nui-input-wrapper .nui-input-icon {
    transition-duration: .3s;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}
/**
 * Button
 */
.nui-button.nui-button-solid.nui-button-default:where([class=dark],[class=dark] *) {
    --tw-bg-opacity: 1;
    background-color: rgb(var(--color-muted-800) / var(--tw-bg-opacity));
}
.nui-button.nui-button-solid.nui-button-default:where([class=dark],[class=dark] *) {
    --tw-text-opacity: 1;
    color: rgb(var(--color-muted-100) / var(--tw-text-opacity));
}

.logout-side {
    background-color: #0a0b1d61;
    border-radius: 10px;
    margin: 10px;
}
.nui-input-wrapper.nui-input-default .nui-input:where([class=dark],[class=dark] *) {
    --tw-border-opacity: 1;
    border-color: rgb(20 27 53);
}

.glass {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/**
 * Footer
 */
footer {
    text-align: left;
    width: 100%;
    min-width: 32rem;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-order: 3
}

.footer {
    background: #0B0E19;
    padding: 5.8rem 0 4rem;
    padding-top: 0
}

.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer-main {
    width: 20%
}

.footer-main__text {
    display: block;
    margin-top: .1rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    color: #6f7489;
    max-width: 19.7rem
}

.footer-logo {
    max-width: 20.5rem;
    margin-top: -2.3rem
}

.footer-logo img {
    width: 100%
}

.footer-nav {
    width: 44rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: auto
}

.footer-nav ul {
    padding: 0;
    width: 50%
}

.footer-nav ul li {
    margin-bottom: 1.6rem
}

.footer-nav ul li:last-of-type {
    margin-bottom: 0
}

.footer-nav ul li a {
    color: #fff;
    font-size: 1.4rem;
    line-height: 100%;
    text-decoration: none;
    display: block
}

.footer-nav ul li a:hover {
    color: #6f7489
}

.footer-apps {
    margin-left: auto
}

.footer-apps__title {
    display: block;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 100%;
    color: #6f7489;
    margin-bottom: .8rem
}

.footer-apps__item {
    margin-bottom: 2rem;
    width: 19rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: .6rem;
    border-radius: .6rem
}

.footer-apps__item img {
    width: 100%;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear
}

.footer-apps__item:last-of-type {
    margin-bottom: 0
}

.footer-apps__item:hover img {
    opacity: .5
}

.footer-options {
    margin-left: 4.3%;
    width: 18.5rem
}

.footer-options ul {
    padding: 0 0 0 1.4rem;
    margin-bottom: 1.7rem
}

.footer-options ul li {
    margin-bottom: 1.6rem
}

.footer-options ul li a {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 100%;
    color: #6f7489;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer-options ul li a .icon {
    font-size: 1.4rem;
    margin-right: 1rem;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    stroke: none;
    fill: currentColor
}

.footer-options ul li a:hover {
    color: #fff
}

.footer-options ul li a:hover .icon {
    stroke: #fff
}

.footer-logos {
    margin: 0;
    margin-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer-logos a {
    display: block
}

.footer-logos a:hover {
    opacity: .7
}

.footer-bottom {
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 125%;
    color: #494e60;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 3.7rem
}
@media screen and (max-width: 1200px) {
    .footer-options {
        margin-left:3%
    }

    .footer-nav {
        padding-left: 3%
    }
}

@media screen and (max-width: 991px) {
    .footer-content {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }

    .footer-main,.footer-nav,.footer-options,.footer-apps {
        width: 50%
    }

    .footer-options,.footer-apps {
        margin-left: 0
    }

    .footer-nav {
        padding-left: 0
    }

    .footer-options {
        -ms-flex-item-align: end;
        align-self: flex-end
    }

    .footer-logos li {
        margin-right: 1.5rem
    }

    .footer-logos li:last-of-type {
        margin-right: 0
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding:1.9rem 0 2rem;
        margin-bottom: 10.4rem
    }

    .footer-main,.footer-nav,.footer-options,.footer-apps {
        width: 100%
    }

    .footer-main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .footer-main__text {
        text-align: center;
        margin-top: .8rem
    }

    .footer-logo {
        max-width: 13.3rem;
        margin-top: 0;
        margin-left: 0
    }

    .footer-nav {
        margin-top: 4rem
    }

    .footer-nav ul {
        width: auto;
        min-width: 50%
    }

    .footer-nav ul li {
        margin-bottom: 1.8rem
    }

    .footer-apps {
        text-align: center;
        margin-top: 2rem;
        border-top: 1px solid #262933;
        padding-top: 2.7rem
    }

    .footer-apps__title {
        margin-bottom: 1.4rem
    }

    .footer-apps__item {
        margin: 0 auto 1rem;
        width: 18rem
    }

    .footer-apps__item:last-of-type {
        margin-bottom: 0
    }

    .footer-options {
        margin-top: 3.2rem;
        display: flex;
        justify-content: space-between;
        text-align: left
    }

    .footer-options ul {
        padding-left: 0;
        margin: 1.3rem 0 0
    }

    .footer-options ul li {
        margin-bottom: 1.8rem
    }

    .footer-options .lang-select {
        max-width: 50%
    }

    .footer-content {
        border-bottom: .1rem solid rgba(255,255,255,.1)
    }

    .footer-logos {
        border: none;
        overflow: auto;
    }

    .footer-logos li {
        margin-right: 4.9rem
    }

    .footer-logos li a {
        width: 5.2rem;
        height: 5.2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer-bottom {
        line-height: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .footer-nav ul {
        width:auto;
        min-width: 40%
    }

    .footer-nav ul:last-of-type {
        min-width: 49%
    }

    .footer-bottom span {
        max-width: 36.8rem
    }
}

@media screen and (max-width: 380px) {
    .footer-nav {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }

    .footer-nav ul {
        width: 100%;
        margin-bottom: 3rem
    }

    .footer-nav ul:last-of-type {
        margin-right: 0;
        margin-bottom: 0
    }

    .footer-nav ul li a {
        text-align: center
    }
}

/* Estilos para a seção de sliders de ganhos */
.gains-slider-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.gains-section {
    width: 300px;
    height: 100px;
    background: linear-gradient(90deg, rgba(255, 172, 75, 0.25) 0%, rgba(255, 172, 75, 0) 100%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.icon-trofeu img {
    width: 90px;
}

.gains-con {
    width: calc(100% - 300px);
    overflow: hidden;
}

.title-gains h1 {
    color: #fff;
    font-weight: 800;
    font-size: 25px;
}

.gains-slider {
    overflow: hidden;
    padding-left: 300px;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.gains-slider:before,
.gains-slider:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.gains-slider:before {
    left: 0;
}

.gains-slider:after {
    right: 0;
}

.gains-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: flex;
    animation: slide 35s infinite linear;
}

.slide-gains {
    background-color: #1e2024;
    margin-right: 15px;
    width: 250px;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-gains .player {
    color: #fff;
    font-weight: 500;
    font-size: 17px;
}

.slide-gains .game {
    font-size: 14px;
}

.slide-gains .valor {
    font-size: 15px;
    color: #ff0;
}

.logos-slide img {
    height: 100px;
}

@keyframes slide {
    0% {
        transform: translate(0);
    }
    to {
        transform: translate(-100%);
    }
}

/* Estilos responsivos para dispositivos móveis */
@media only screen and (max-width: 600px) {
    .gains-section {
        width: 170px;
        height: 85px;
    }

    .icon-trofeu img {
        width: 60px;
    }

    .title-gains h1 {
        font-size: 14px;
    }

    .gains-slider {
        padding-left: 170px;
    }

    .slide-gains {
        height: 85px;
    }

    .gains-con {
        width: calc(100% - 170px);
        overflow: hidden;
    }
}

/* Estilos para o indicador de carregamento */
.is-loading-component {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
}
.game-list .carousel__track{
    /*gap: 0.6em;*/
}
.game-list .carousel__slide {
    max-width: 215px;
}
.icon-form{
    display: flex;
    justify-content: center; /* Centralizar horizontalmente */
    align-items: center; /* Centralizar verticalmente */
    padding: 10px;
    color: rgb(var(--color-muted-400) / 1);
    font-size: 1.4rem;
}
@media only screen and (max-width: 900px) {
    .bg-modal {
        position: absolute;
        overflow-y: auto;
        height: 100vh;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}
