/*
:root {
    --color-primary: #98F900;
    --color-secondary: #00332F;
    --color-tertiary: --color-quaternary: #F8F9FA;
    --color-dark: #1F2329;
    --color-dark-2: #363E47;
    --color-dark-3: #4A5461;
    --color-light: #CED4DA;
    --color-light-2: #E9ECEF;
    --color-light-3: #F8F9FA;
    --color-grey: #CED4DA;
    --color-complementarty: #FF2E3F;
    --color-complementarty-2: #6B778C;
}

.dark-theme {
    --color-primary: #98F900;
    --color-secondary: #1F2329;
    --color-tertiary: --color-quaternary: #F8F9FA;
    --color-dark: white;
    --color-dark-2:black;
    --color-dark-3: #4A5461;
    --color-light: #363E47;
    --color-light-2: #1F2329;
    --color-light-3: #F8F9FA;
    --color-grey: #CED4DA;
    --color-complementarty: #FF2E3F;
    --color-complementarty-2: #6B778C;
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    font-size: 100%;
}

.flex-wrap {
    flex-wrap: wrap;
}

.font-dark {
    color: #1F2329;
}

body {
    font-family: "Plus Jakarta Sans", "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: hidden;
    /* reset */
/*
}

body a {
    text-decoration: none;
}

body em,
body dfn {
    font-style: normal;
}

body img {
    max-width: 100%;
    height: auto;
}

body select,
body textarea {
    border-radius: 4px;
    border: 1px solid #CED4DA;
    padding: 0.4em 0.7em;
    width: 100%;
    background-color: white;
    color: #52525B;
}

body input[type=text], body input[type=tel], body input[type=password], body input[type=email], body input[type=number] {
    border-radius: 8px;
    width: 100%;
    background-color: transparent;
    color: #52525B;
}

body select.error,
body textarea.error,
body input.error {
    background-color: #fcebeb;
    border-color: #dc362e;
}

    body select.error + .error,
    body textarea.error + .error,
    body input.error + .error {
        font-size: 0.675rem;
        color: #dc362e;
    }

body #footer, body #header, body #middle {
    min-width: inherit;
}

body #content,
body #middle {
    overflow: inherit;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background-color: #ebebeb;
    border-radius: 8px;
}

body::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(68, 68, 68, 0.2);
    height: 40px;
}

.swiper-button-next, .swiper-button-prev {
color: #495057 !important;
height: 44px !important;
width: 14px !important;
font-size: 14px !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 14px !important;
}

.title {
font-weight: 700;
font-size: 14px;
color: var(--color-secondary);
}

.dark-theme .title {
color: var(--color-primary);
}

@media screen and (min-width: 992px) {
.title {
    font-size: 16px;
}
}

.\!hidden {
display: none !important;
}

@keyframes shimmer {
to {
    transform: translateX(100%);
}
}

@keyframes shake {
0% {
    transform: translate(1px, 1px) rotate(0deg);
}

10% {
    transform: translate(-1px, -2px) rotate(-1deg);
}

20% {
    transform: translate(-3px, 0px) rotate(1deg);
}

30% {
    transform: translate(3px, 2px) rotate(0deg);
}

40% {
    transform: translate(1px, -1px) rotate(1deg);
}

50% {
    transform: translate(-1px, 2px) rotate(-1deg);
}

60% {
    transform: translate(-3px, 1px) rotate(0deg);
}

70% {
    transform: translate(3px, 1px) rotate(-1deg);
}

80% {
    transform: translate(-1px, -1px) rotate(1deg);
}

90% {
    transform: translate(1px, 2px) rotate(0deg);
}

100% {
    transform: translate(1px, -2px) rotate(-1deg);
}
}

@keyframes pulse {
0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
}

70% {
    -moz-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    transform: scale(1.2);
}

100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    transform: scale(1);
}
}

@keyframes rotation {
0% {
    transform: rotate(0deg);
}

100% {
    transform: rotate(360deg);
}
}

button:hover {
color: var(--color-secondary);
background-color: var(--color-primary);
}

.breadcrumbs {
position: relative;
top: 88px;
padding: 0.5rem 0;
}

.breadcrumbs ul {
    display: flex;
    flex-direction: row;
    font-size: 8px;
    gap: 0.25rem;
    padding: 1rem 1rem 0 1rem;
}

    .breadcrumbs ul li {
        color: var(--color-dark-3);
        font-weight: 500;
    }

        .breadcrumbs ul li:last-child {
            color: var(--color-secondary);
        }

.swiper-horizontal > .swiper-pagination {
bottom: 2px;
}

.swiper-horizontal > .swiper-pagination .swiper-pagination-bullet {
    background-color: #FFFFFF;
    opacity: 1;
    height: 2px;
    width: 25px;
}

.swiper-horizontal > .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

@media screen and (min-width: 992px) {
.breadcrumbs {
    top: 97px;
    padding: 0 16px;
    max-width: 1440px;
}

    .breadcrumbs ul {
        font-size: 10px;
    }
}

footer {
background-color: var(--color-secondary);
color: white;
position: relative;
top: 98px;
}

footer .title {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
}

footer .siga {
    padding: 1.5rem 1rem;
}

    footer .siga .socials-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 0.5rem;
        grid-row-gap: 1rem;
    }

        footer .siga .socials-container .social {
            padding: 0.5rem 1rem;
            border: 1px solid #ffffff;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            max-width: 250px;
        }

footer .quem-somos {
    padding: 1.5rem 1rem;
}

    footer .quem-somos .arena-amadores {
        background-color: var(--color-secondary);
    }

        footer .quem-somos .arena-amadores img {
            max-width: 48px;
            max-height: 48px;
        }

        footer .quem-somos .arena-amadores p {
            font-weight: 700;
        }

            footer .quem-somos .arena-amadores p:first-child {
                font-size: 13px;
                color: white;
                line-height: 18px;
            }

            footer .quem-somos .arena-amadores p:last-child {
                font-size: 17px;
                color: var(--color-primary);
                vertical-align: bottom;
            }

    footer .quem-somos .text {
        font-size: 0.75rem;
        font-weight: 500;
    }

    footer .quem-somos .doe p {
        text-align: justify;
    }

    footer .quem-somos .doe img {
        height: 80px;
    }

footer .institucional .title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
}

    footer .institucional .title svg {
        width: 6px;
        height: 12px;
        transform: rotate(90deg);
    }

footer .institucional .active ul {
    display: flex;
}

footer .institucional .active svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

footer .disclaimer {
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 4rem;
}

footer .menu-acesso {
    position: fixed;
    bottom: 0;
    z-index: 1;
    width: 100%;
    background-color: #E9ECEF;
    border: 1px solid #f8f9fa;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.0784313725);
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

    footer .menu-acesso span {
        font-size: 10px;
        color: var(--color-dark);
        font-weight: 500;
    }

        footer .menu-acesso span.active {
            color: var(--color-secondary);
        }

    footer .menu-acesso svg {
        color: var(--color-dark);
    }

        footer .menu-acesso svg.active {
            color: var(--color-secondary);
        }

@media screen and (min-width: 992px) {
footer .siga .socials-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

footer .quem-somos {
    padding: 1.5rem;
    grid-template-columns: 212px 448px 448px;
    display: grid;
}

footer .disclaimer {
    margin: 0;
}
}

body {
background-color: var(--color-light);
font-size: 16px;
color: var(--color-secondary);
}

body #backdrop {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

body.active #backdrop {
    position: fixed;
    z-index: 9;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

body.active header {
    position: fixed;
    z-index: 10;
    width: 100%;
}

#main {
top: 96px;
position: relative;
}

main > .datas {
padding: 1rem;
background-color: var(--color-light-2);
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0784313725);
overflow: hidden;
color: var(--color-dark);
font-weight: 500;
border-radius: 0.5rem;
/*   .swiper-button-next, .swiper-button-prev {
       &::after{
           content: '';
           //background-image: url("http://127.0.0.1:5501/css/Seta%20Direita.png");
           background-repeat: no-repeat;
           width: 12px;
           height: 16px;
           display: block;
       }

   }
   .swiper-button-prev{
       &::after{
           transform: rotate(180deg);
       }
   }
       *//*
}

main > .datas .swiper-slide {
    padding: 0.5rem 1rem;
    border: 1px solid #F8F9FA;
    border-radius: 0.5rem;
    font-size: 12px;
}

    main > .datas .swiper-slide.selected {
        color: var(--color-primary);
        background-color: var(--color-secondary);
    }

main .jogos-hoje {
background-color: var(--color-light-2);
font-size: 10px;
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
}

main .jogos-hoje .swiper-wrapper .swiper-slide {
    background-color: #CED4DA;
    border-radius: 0.5rem;
}

    main .jogos-hoje .swiper-wrapper .swiper-slide .title-time {
        font-size: 12px;
        font-weight: 700;
        color: var(--color-dark);
    }

    main .jogos-hoje .swiper-wrapper .swiper-slide .title-copa {
        font-size: 10px;
        color: var(--color-dark);
        font-weight: 500;
    }

    main .jogos-hoje .swiper-wrapper .swiper-slide .gol {
        font-weight: 700;
        color: var(--color-dark);
        font-size: 14px;
    }

    main .jogos-hoje .swiper-wrapper .swiper-slide .status {
        border: 1px solid #4a5461;
        height: 56px;
        width: 46px;
        border-radius: 0.5rem;
        color: #FF2E3F;
        font-weight: 700;
    }

    main .jogos-hoje .swiper-wrapper .swiper-slide .assitir {
        color: #FF2E3F;
        font-weight: 700;
    }

main .last-news {
background-color: var(--color-light-2);
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
font-size: 10px;
}

main .last-news .info .title {
    font-size: 10px;
    color: var(--color-secondary);
}

main .last-news .info .description {
    font-size: 12px;
    color: var(--color-dark);
}

main .last-news .swiper-button-next, main .last-news .swiper-button-prev {
    border-radius: 0.25rem;
    background-color: rgba(242, 242, 242, 0.5);
    padding: 0.25rem;
}

main .anuncio {
background-color: var(--color-light-2);
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
}

main .salas-bolao {
background-color: var(--color-light-2);
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0784313725);
font-size: 10px;
}

main .salas-bolao .list-game .jogos:nth-child(2n+1) {
    background-color: #CED4DA;
}

main .salas-bolao .list-game .jogos .title-copa {
    font-size: 10px;
    color: var(--color-dark);
    font-weight: 500;
}

main .salas-bolao .list-game .jogos .title-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
}

main .salas-bolao .list-game .jogos .date {
    font-size: 10px;
    color: var(--color-dark);
    font-weight: 500;
}

main .salas-bolao .list-game .jogos .jogar-bolao {
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    background-color: var(--color-secondary);
    padding: 0 1rem;
    border-radius: 0.5rem;
    height: 56px;
    height: 56px;
}

    main .salas-bolao .list-game .jogos .jogar-bolao img {
        width: 20px;
    }

    main .salas-bolao .list-game .jogos .jogar-bolao span {
        line-height: 12px;
    }

main .resultados {
background-color: var(--color-light-2);
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0784313725);
font-size: 10px;
}

main .resultados .jogos {
    border: 1px solid #f8f9fa;
}

    main .resultados .jogos .title-copa {
        font-size: 10px;
        color: var(--color-dark);
        font-weight: 500;
    }

    main .resultados .jogos .font-semibold {
        font-size: 10px;
    }

    main .resultados .jogos .title-time {
        font-size: 12px;
        font-weight: 700;
        color: var(--color-dark);
    }

    main .resultados .jogos .date {
        font-size: 10px;
        color: var(--color-dark);
        font-weight: 500;
    }

    main .resultados .jogos .jogar-bolao {
        color: var(--color-primary);
        font-size: 10px;
        font-weight: 700;
        background-color: var(--color-secondary);
        padding: 0 1rem;
        border-radius: 0.5rem;
        height: 56px;
        height: 56px;
    }

        main .resultados .jogos .jogar-bolao img {
            width: 20px;
        }

        main .resultados .jogos .jogar-bolao span {
            line-height: 12px;
        }

    main .resultados .jogos .avalie {
        background-color: var(--color-secondary);
        color: var(--color-primary);
    }

    main .resultados .jogos .estatisticas {
        border: 1px solid #f8f9fa;
    }

    main .resultados .jogos .gol {
        font-size: 14px;
        font-weight: 700;
        color: var(--color-dark);
    }

main .jogadores-destaque {
background-color: var(--color-light-2);
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0784313725);
font-size: 10px;
}

main .jogadores-destaque .swiper .swiper-slide {
    width: 80%;
}

    main .jogadores-destaque .swiper .swiper-slide .jogos {
        border: 1px solid #F8F9FA;
    }

        main .jogadores-destaque .swiper .swiper-slide .jogos > p {
            font-size: 12px;
            color: var(--color-secondary);
            font-weight: 600;
        }

        main .jogadores-destaque .swiper .swiper-slide .jogos > div {
            border-top: 1px solid #F8F9FA;
            padding: 0.5rem 0 0 0;
        }

            main .jogadores-destaque .swiper .swiper-slide .jogos > div .time > span {
                font-size: 12px;
                font-weight: 700;
                color: var(--color-secondary);
            }

            main .jogadores-destaque .swiper .swiper-slide .jogos > div .time .title-time {
                font-size: 14px;
                font-weight: 700;
                color: var(--color-dark);
            }

            main .jogadores-destaque .swiper .swiper-slide .jogos > div .time .pos {
                font-size: 8px;
                color: var(--color-dark);
                font-weight: 500;
            }

            main .jogadores-destaque .swiper .swiper-slide .jogos > div .time .time {
                font-size: 10px;
                color: var(--color-dark);
                font-weight: 500;
            }

            main .jogadores-destaque .swiper .swiper-slide .jogos > div .time .title-jogador {
                font-size: 14px;
                color: var(--color-dark);
                font-weight: 700;
            }

            main .jogadores-destaque .swiper .swiper-slide .jogos > div .media {
                color: var(--color-primary);
                background-color: var(--color-secondary);
                font-weight: 700;
                font-size: 12px;
                padding: 0.5rem 0.25rem;
            }

                main .jogadores-destaque .swiper .swiper-slide .jogos > div .media > span:first-child {
                    line-height: 15px;
                }

                main .jogadores-destaque .swiper .swiper-slide .jogos > div .media > span:last-child {
                    font-weight: 400;
                    font-size: 8px;
                    line-height: 10px;
                }

main .time-destaque {
background-color: var(--color-light-2);
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0784313725);
font-size: 10px;
}

main .time-destaque .swiper .swiper-slide {
    width: 80%;
}

    main .time-destaque .swiper .swiper-slide .jogos {
        border: 1px solid #F8F9FA;
    }

        main .time-destaque .swiper .swiper-slide .jogos > p {
            font-size: 12px;
            color: var(--color-secondary);
            font-weight: 600;
        }

        main .time-destaque .swiper .swiper-slide .jogos > div {
            border-top: 1px solid #F8F9FA;
            padding: 0.5rem 0 0 0;
        }

            main .time-destaque .swiper .swiper-slide .jogos > div .time > span {
                font-size: 12px;
                font-weight: 700;
                color: var(--color-secondary);
            }

            main .time-destaque .swiper .swiper-slide .jogos > div .time .title-time {
                font-size: 14px;
                font-weight: 700;
                color: var(--color-dark);
            }

            main .time-destaque .swiper .swiper-slide .jogos > div .media {
                color: var(--color-primary);
                background-color: var(--color-secondary);
                font-weight: 700;
                font-size: 12px;
                padding: 0.5rem 0.25rem;
            }

                main .time-destaque .swiper .swiper-slide .jogos > div .media > span:first-child {
                    line-height: 15px;
                }

                main .time-destaque .swiper .swiper-slide .jogos > div .media > span:last-child {
                    font-weight: 400;
                    font-size: 8px;
                    line-height: 10px;
                }

main .videos {
background-color: var(--color-light-2);
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0784313725);
}

.patrocinadores {
position: relative;
top: 96px;
margin-top: 1rem;
}

.patrocinadores .swiper-wrapper {
    align-items: center;
}

@media screen and (min-width: 992px) {
.patrocinadores {
    max-width: -webkit-fill-available;
    border-radius: 1rem;
    position: relative;
    top: 98px;
    max-width: 1392px;
    margin: 0 auto;
    margin-bottom: 12px;
    padding: 1.5rem;
}

#main {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 1440px;
}

    #main .main {
        max-width: 1274px;
        overflow: hidden;
    }

    #main .datas-container, #main .last-news, #main .salas-bolao, #main .resultados, #main .jogadores-destaque, #main .time-destaque, #main .videos, #main .jogos-hoje {
        max-width: -webkit-fill-available;
        border-radius: 1rem;
    }

    #main .jogos-hoje {
        padding-right: 0;
    }

        #main .jogos-hoje .swiper-button-next, #main .jogos-hoje .swiper-button-prev {
            display: none;
        }

    #main .datas {
        display: block;
    }

        #main .datas > .datas {
            width: 90%;
        }

    #main .datas-container {
        background-color: var(--color-light-2);
    }

    #main .last-news .banners {
        display: block;
        width: 660px;
    }

    #main .resultados .grid-jogos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

.container {
    max-width: 1440px !important;
    margin: 0 auto;
}
}

header .navbar {
background-color: var(--color-primary);
}

header .navbar > div > div > div {
    padding: 0.5rem 1rem;
}

    header .navbar > div > div > div.selected {
        background-color: var(--color-secondary);
        color: white;
    }

header .navbar > div > div a {
    line-height: 15px;
    font-weight: 700;
    font-size: 10px;
}

header .arena-bar {
border-bottom: 1px solid #f2f2f2;
background-color: var(--color-secondary);
}

header .arena-bar img {
    max-width: 32px;
    max-height: 32px;
}

header .arena-bar p {
    font-weight: 700;
}

    header .arena-bar p:first-child {
        font-size: 10px;
        color: white;
        letter-spacing: 5px;
        line-height: 16px;
    }

    header .arena-bar p:last-child {
        font-size: 12px;
        color: var(--color-primary);
        line-height: 16px;
    }

header .menu-hamburguer {
display: flex;
flex-direction: column;
justify-content: space-around;
width: 24px;
height: 24px;
cursor: pointer;
}

header .menu-hamburguer span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.4s ease;
}

header .menu-hamburguer.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

header .menu-hamburguer.active span:nth-child(2) {
    opacity: 0;
}

header .menu-hamburguer.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media screen and (min-width: 992px) {
header {
    background-color: var(--color-secondary);
}

    header .menu-hamburguer {
        display: none;
    }

    header .navbar > div > div {
        padding: 0 1.5rem;
    }

        header .navbar > div > div > div {
            padding: 0.25rem 1rem;
        }

    header .search {
        width: 40%;
    }

        header .search form {
            display: flex;
        }

            header .search form input {
                background-color: #FFFFFF;
                box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
                padding: 0.5rem 0.75rem 0.5rem 2.75rem;
                border-radius: 0.5rem;
                height: 36px;
            }

                header .search form input::placeholder {
                    color: #495057;
                    font-weight: 400;
                    font-size: 12px;
                }

            header .search form button {
                position: absolute;
                left: 12px;
                top: 8px;
            }

                header .search form button svg {
                    color: #495057;
                }

    header .arena-bar img {
        max-width: 50px;
        max-height: 50px;
        min-height: 50px;
    }

    header .arena-bar .container .search {
        order: 2;
    }

    header .actions {
        white-space: nowrap;
    }

        header .actions button, header .actions a {
            border-radius: 0.5rem;
            padding: 0.75rem 0.5rem;
            height: 34px;
            font-size: 0.75rem;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
        }

            header .actions button.location, header .actions a.location {
                border: 1px solid #FFFFFF;
            }

        header .actions .torcedor a {
            width: 100%;
            color: var(--color-secondary);
            background-color: var(--color-primary);
            display: flex;
        }
}

.menu-lateral {
position: fixed;
top: 96px;
left: -100%;
z-index: 10;
width: 85%;
height: calc(100vh - 98px);
background-color: var(--color-light-2);
border: 1px solid #f8f9fa;
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.0784313725);
overflow: auto;
transition: left 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-lateral.active {
    left: 0;
}

.menu-lateral .actions button {
    border: 1px solid var(--color-secondary);
    border-radius: 0.5rem;
    padding: 0.75rem 0.5rem;
    width: calc(50% - 0.25rem);
    font-size: 0.75rem;
    align-items: center;
    justify-content: center;
}

.menu-lateral .actions .torcedor button {
    width: 100%;
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.menu-lateral .categories {
    font-size: 0.75rem;
}

    .menu-lateral .categories .nvl-1 {
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        color: var(--color-secondary);
        line-height: 18px;
    }

        .menu-lateral .categories .nvl-1:after {
            content: "";
            background-image: url("http://localhost:5134/images/arrow-down.svg");
            width: 12px;
            height: 12px;
            display: block;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .menu-lateral .categories .nvl-1 img {
            height: 16px;
        }

.menu-lateral .state {
    font-size: 0.75rem;
}

    .menu-lateral .state .nvl-1 {
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        color: var(--color-secondary);
        line-height: 18px;
    }

        .menu-lateral .state .nvl-1:after {
            content: "";
            background-image: url("http://localhost:5134/images/arrow-down.svg");
            width: 12px;
            height: 12px;
            display: block;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .menu-lateral .state .nvl-1 img {
            height: 16px;
        }

@media screen and (min-width: 992px) {
body .menu-lateral {
    position: sticky;
    top: calc(98px + 1.5rem);
    left: 0;
    border-radius: 1rem;
    padding: 1.5rem;
    overflow: hidden;
    transition: width 0.1s ease-out;
    min-width: 94px;
    height: auto;
}

    body .menu-lateral .state, body .menu-lateral .categories {
        font-size: 14px;
        min-width: 24px;
    }

        body .menu-lateral .state ul, body .menu-lateral .categories ul {
            align-items: center;
        }

        body .menu-lateral .state h3, body .menu-lateral .categories h3 {
            display: none;
        }

        body .menu-lateral .state .nvl-1:after, body .menu-lateral .categories .nvl-1:after {
            display: none;
        }

        body .menu-lateral .state .nvl-1 img, body .menu-lateral .state .nvl-1 svg, body .menu-lateral .categories .nvl-1 img, body .menu-lateral .categories .nvl-1 svg {
            height: 24px;
            width: 24px;
        }

    body .menu-lateral .nvl-1 span {
        display: none;
    }

body#Home .menu-lateral {
    width: 330px;
    overflow: visible;
}

    body#Home .menu-lateral .state ul, body#Home .menu-lateral .categories ul {
        align-items: baseline;
    }

    body#Home .menu-lateral .state h3, body#Home .menu-lateral .categories h3 {
        display: block;
    }

    body#Home .menu-lateral .state .nvl-1, body#Home .menu-lateral .categories .nvl-1 {
        width: 100%;
    }

        body#Home .menu-lateral .state .nvl-1:after, body#Home .menu-lateral .categories .nvl-1:after {
            display: block;
            width: 16px;
            height: 16px;
        }

        body#Home .menu-lateral .state .nvl-1 span, body#Home .menu-lateral .categories .nvl-1 span {
            display: block;
        }

        body#Home .menu-lateral .categories .nvl-1:first-child::after {
            position: absolute;
            display: block;
            width: 8px;
            left: -1px;
            height: 24px;
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
            background-color: var(--color-secondary);
        }

body#Home .calendar {
    justify-content: flex-start;
}

    body#Home .calendar svg {
        width: 24px;
        height: 24px;
    }

    body#Home .calendar span {
        display: block;
    }

.calendar {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.0784313725);
    border-radius: 1rem;
    background-color: var(--color-light-2);
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    justify-content: center;
}

    .calendar span {
        display: none;
    }

#aside:hover .menu-lateral {
    width: 330px;
    transition: width 0.05s ease-in-out;
}

    #aside:hover .menu-lateral .state ul, #aside:hover .menu-lateral .categories ul {
        align-items: baseline;
    }

    #aside:hover .menu-lateral .nvl-1 {
        width: 100%;
    }

        #aside:hover .menu-lateral .nvl-1:after {
            display: block;
            width: 16px;
            height: 16px;
        }

        #aside:hover .menu-lateral .nvl-1 span {
            display: block;
        }

    #aside:hover .menu-lateral h3 {
        display: block;
    }

#aside:hover .calendar span {
    display: block;
}
}

body#Bolao .anuncio {
margin-top: 1rem;
}

body .bolao {
position: relative;
}

body .bolao .bolao-header {
    background-color: var(--color-light-2);
}

    body .bolao .bolao-header img {
        width: 24px;
    }

    body .bolao .bolao-header p {
        color: #1F2329;
        font-weight: 700;
        font-size: 14px;
    }

    body .bolao .bolao-header .time-game {
        font-size: 10px;
        color: #1F2329;
        font-weight: 500;
        line-height: 12px;
    }

    body .bolao .bolao-header .time span {
        font-size: 8px;
        color: #4A5461;
        font-weight: 500;
    }

    body .bolao .bolao-header .time img {
        width: 60px;
    }

    body .bolao .bolao-header .time h2 {
        font-size: 10px;
    }

    body .bolao .bolao-header .time .last-games span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #CED4DA;
        display: block;
    }

        body .bolao .bolao-header .time .last-games span.win {
            background-color: #22BF47;
        }

        body .bolao .bolao-header .time .last-games span.lose {
            background-color: #FF2E3F;
        }

body .bolao .banner {
    display: flex;
    justify-content: center;
    margin-top: -0.5rem;
    padding-bottom: 1.5rem;
    background-color: var(--color-light-2);
}

    body .bolao .banner img {
        width: auto;
    }

body .bolao .options {
    position: relative;
    border-top: 1px solid #F8F9FA;
    border-bottom: 1px solid #F8F9FA;
    font-weight: 700;
    font-size: 12px;
    color: #4A5461;
    overflow-x: auto;
    background-color: var(--color-light-2);
    width: 100%;
}

    body .bolao .options .active {
        color: var(--color-secondary);
        border-bottom: 1px solid var(--color-secondary);
    }

        body .bolao .options .active svg {
            color: var(--color-secondary);
        }

    body .bolao .options span {
        display: block;
        min-width: max-content;
    }

body .bolao .bolao-body .palpite {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
    background-color: var(--color-light-2);
}

    body .bolao .bolao-body .palpite .placar {
        background-color: #CED4DA;
        border-radius: 0.5rem;
    }

        body .bolao .bolao-body .palpite .placar .results {
            flex: 0 0 180px;
        }

            body .bolao .bolao-body .palpite .placar .results > span {
                font-size: 10px;
            }

    body .bolao .bolao-body .palpite span {
        font-size: 8px;
        font-weight: 500;
        color: #1F2329;
        line-height: 8px;
    }

        body .bolao .bolao-body .palpite span span {
            font-size: 8px;
            font-weight: 400;
            color: var(--color-secondary);
        }

    body .bolao .bolao-body .palpite img {
        width: 52px;
    }

    body .bolao .bolao-body .palpite svg {
        flex: 0 0 12px;
    }

    body .bolao .bolao-body .palpite select {
        color: #1F2329;
        font-weight: 700;
        font-size: 14px;
        border: 1px solid #1F2329;
        background-color: #CED4DA;
        padding: 10px;
        border-radius: 0.25rem;
    }

        body .bolao .bolao-body .palpite select option {
            color: #1F2329;
            font-weight: 700;
            font-size: 12px;
        }

    body .bolao .bolao-body .palpite .form-palpite {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 1rem;
    }

        body .bolao .bolao-body .palpite .form-palpite > div {
            width: calc(50% - 0.5rem);
        }

        body .bolao .bolao-body .palpite .form-palpite .logo {
            min-width: 60px;
        }

        body .bolao .bolao-body .palpite .form-palpite span {
            font-size: 10px;
            font-weight: 500;
            color: #1F2329;
            line-height: 8px;
        }

            body .bolao .bolao-body .palpite .form-palpite span span {
                font-size: 8px;
                font-weight: 400;
                color: var(--color-secondary);
            }

        body .bolao .bolao-body .palpite .form-palpite .actions {
            border-radius: 0.25rem;
            border: 1px solid #1F2329;
        }

            body .bolao .bolao-body .palpite .form-palpite .actions button, body .bolao .bolao-body .palpite .form-palpite .actions input {
                font-weight: 700;
                font-size: 14px;
                color: #1F2329;
            }

        body .bolao .bolao-body .palpite .form-palpite .buttons {
            width: 100%;
        }

            body .bolao .bolao-body .palpite .form-palpite .buttons > div {
                padding: 0.5rem 1rem;
                border-radius: 0.5rem;
            }

                body .bolao .bolao-body .palpite .form-palpite .buttons > div:first-child {
                    border: 1px solid #CED4DA;
                    color: #CED4DA;
                    font-size: 12px;
                }

                body .bolao .bolao-body .palpite .form-palpite .buttons > div:last-child {
                    background-color: var(--color-secondary);
                    color: var(--color-primary);
                    border: 1px solid var(--color-secondary);
                    padding: 0.5rem 1rem;
                }

                    body .bolao .bolao-body .palpite .form-palpite .buttons > div:last-child > button {
                        font-size: 12px;
                        font-weight: 700;
                    }

                body .bolao .bolao-body .palpite .form-palpite .buttons > div svg {
                    flex: 0 0 20px;
                }

body .bolao .bolao-body aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    body .bolao .bolao-body aside .player-high, body .bolao .bolao-body aside .team-media {
        display: none;
        box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
        background-color: var(--color-light-2);
        color: var(--color-dark);
    }

        body .bolao .bolao-body aside .player-high .position, body .bolao .bolao-body aside .team-media .position {
            font-size: 8px;
            font-weight: 500;
        }

        body .bolao .bolao-body aside .player-high .name, body .bolao .bolao-body aside .team-media .name {
            font-size: 14px;
            font-weight: 700;
        }

        body .bolao .bolao-body aside .player-high .team, body .bolao .bolao-body aside .team-media .team {
            font-size: 10px;
            font-weight: 500;
        }

        body .bolao .bolao-body aside .player-high .media, body .bolao .bolao-body aside .team-media .media {
            background-color: var(--color-secondary);
            color: var(--color-primary);
            font-weight: 400;
            font-size: 8px;
            padding: 0.5rem 0.25rem;
            border-radius: 0.5rem;
        }

            body .bolao .bolao-body aside .player-high .media .note, body .bolao .bolao-body aside .team-media .media .note {
                font-weight: 700;
                font-size: 12px;
                line-height: 12px;
            }

body .bolao .jogar-bolao {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 0.5rem;
    padding: 0.25rem 0.75rem;
}

body .bolao .escalacoes {
    display: none;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
    color: #1F2329;
    background-color: var(--color-light-2);
}

    body .bolao .escalacoes .campo {
        background-image: url("http://localhost:5134/Images/campo.png");
        background-repeat: no-repeat;
        background-size: contain;
        width: 343px;
        height: 712px;
        display: block;
    }

    body .bolao .escalacoes .time01 > div:first-child, body .bolao .escalacoes .time02 > div:first-child {
        background-color: #CED4DA;
        border-radius: 0.5rem;
    }

    body .bolao .escalacoes .time01 .reservas, body .bolao .escalacoes .time02 .reservas {
        font-size: 12px;
        font-weight: 600;
    }

    body .bolao .escalacoes .time01 .tec, body .bolao .escalacoes .time02 .tec {
        font-size: 8px;
        font-weight: 500;
        color: #1F2329;
    }

    body .bolao .escalacoes .time01 .name, body .bolao .escalacoes .time02 .name {
        font-size: 12px;
        font-weight: 700;
        color: #1F2329;
    }

    body .bolao .escalacoes .time02 {
        border-top: 1px solid #F8F9FA;
        padding-top: 1rem;
    }

body .bolao .detalhes {
    display: none;
    background-color: var(--color-light-2);
}

    body .bolao .detalhes .detalhes-content > div {
        flex: 1 1 45%;
    }

    body .bolao .detalhes .detalhes-content span {
        font-size: 12px;
        color: #1F2329;
    }

body .bolao .gold-ball {
    display: none;
    font-size: 10px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
    background-color: var(--color-light-2);
    color: var(--color-dark);
}

    body .bolao .gold-ball .value, body .bolao .gold-ball .subtotal {
        font-weight: 700;
        font-size: 12px;
        color: var(--color-secondary);
    }

    body .bolao .gold-ball .btn {
        border-radius: 0.5rem;
        border: 1px solid var(--color-dark);
        background-color: transparent;
        color: var(--color-dark);
        font-size: 14px;
        font-weight: 500;
        padding: 0.5rem;
        height: 40px;
        flex-grow: 1;
    }

        body .bolao .gold-ball .btn.donate {
            background-color: var(--color-secondary);
            color: var(--color-primary);
            justify-content: center;
        }

    body .bolao .gold-ball .line {
        width: 100%;
        height: 1px;
        background-color: var(--color-light-3);
        display: block;
    }

body .patrocinadores {
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
background-color: var(--color-light-2);
}

body .patrocinadores .swiper img {
    margin: auto;
}

@media screen and (min-width: 992px) {
body .bolao {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: none;
    overflow: hidden;
}

    body .bolao .options {
        display: none;
    }

    body .bolao .bolao-header {
        border-radius: 0.5rem;
    }

        body .bolao .bolao-header .time {
            justify-content: center;
        }

            body .bolao .bolao-header .time > div {
                justify-content: space-around;
            }

                body .bolao .bolao-header .time > div:first-child {
                    flex-direction: row-reverse;
                    flex: 0 0 40%;
                }

                body .bolao .bolao-header .time > div:last-child {
                    flex: 0 0 40%;
                    flex-direction: row;
                }

    body .bolao .bolao-body {
        display: grid;
        grid-template-areas: "banner aside" "palpite aside" "escalacoes aside" "jogos aside" "ads aside";
        grid-template-columns: minmax(0, 1fr) 330px;
        grid-template-rows: auto;
        column-gap: 1.5rem;
        row-gap: 0.75rem;
    }

        body .bolao .bolao-body .palpite {
            grid-area: palpite;
            border-radius: 0.5rem;
        }

            body .bolao .bolao-body .palpite .form-palpite > div {
                width: calc(33% - 0.5rem);
            }

        body .bolao .bolao-body .jogos-hoje {
            grid-area: jogos;
        }

        body .bolao .bolao-body aside {
            grid-area: aside;
        }

            body .bolao .bolao-body aside .player-high, body .bolao .bolao-body aside .team-media, body .bolao .bolao-body aside .gold-ball, body .bolao .bolao-body aside .detalhes {
                display: flex;
                border-radius: 0.5rem;
                padding: 1.5rem;
            }

            body .bolao .bolao-body aside .detalhes-content {
                flex-direction: column;
                flex-wrap: nowrap;
            }

        body .bolao .bolao-body .escalacoes {
            grid-area: escalacoes;
            display: flex;
            border-radius: 1rem;
        }

            body .bolao .bolao-body .escalacoes .campo {
                transform: rotate(90deg);
                transform-origin: right;
            }

            body .bolao .bolao-body .escalacoes .times {
                flex-direction: row;
            }

                body .bolao .bolao-body .escalacoes .times .time02 {
                    padding: 0 0 0 0.5rem;
                    border: none;
                    border-left: 1px solid #F8F9FA;
                    flex-grow: 1;
                }

                body .bolao .bolao-body .escalacoes .times .time01 {
                    flex-grow: 1;
                }

    body .bolao .banner {
        border-radius: 0.5rem;
        padding: 1.5rem;
        margin: 0;
    }

body .anuncio {
    border-radius: 1rem;
}
}

body#Team main {
display: flex;
flex-direction: column;
gap: 1rem;
}

body#Team main .sponsors-team, body#Team main .sponsor, body#Team main .titles-won, body#Team main .ads, body#Team main .number-season, body#Team main .next-match, body#Team main .options, body#Team main .info-team, body#Team main .details-team, body#Team main .players-team, body#Team main .news, body#Team main .movies, body#Team main .results, body#Team main .classification {
    background-color: var(--color-light-2);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0784313725);
}

    body#Team main .titles-won .list .item {
        border: 1px solid #F8F9FA;
        border-radius: 0.5rem;
        padding: 0.5rem;
    }

        body#Team main .titles-won .list .item .year {
            font-weight: 700;
            font-size: 12px;
            color: #1F2329;
        }

        body#Team main .titles-won .list .item .name {
            font-weight: 700;
            font-size: 12px;
            color: var(--color-secondary);
        }

    body#Team main .number-season span {
        color: #4A5461;
        font-weight: 500;
        font-size: 10px;
        line-height: 15px;
    }

        body#Team main .number-season span.value {
            font-size: 1rem;
            font-weight: 700;
            color: #1F2329;
            line-height: 12px;
        }

    body#Team main .number-season select {
        border-radius: 0.5rem;
        border: 1px solid var(--color-light-3);
        background-color: transparent;
        color: var(--color-dark);
        font-size: 12px;
        font-weight: 500;
    }

body#Team main .next-match {
    font-size: 10px;
    color: #1F2329;
}

    body#Team main .next-match .time {
        font-size: 10px;
        color: #4A5461;
        font-weight: 500;
    }

    body#Team main .next-match .title-time {
        font-size: 12px;
        color: #1F2329;
        font-weight: 700;
    }

    body#Team main .next-match .jogar-bolao {
        color: var(--color-primary);
        font-size: 10px;
        font-weight: 700;
        background-color: var(--color-secondary);
        border-radius: 0.5rem;
        padding: 0.25rem 0.75rem;
    }

body#Team main .options {
    margin-top: -1rem;
    margin-bottom: -1rem;
    overflow: auto;
    box-shadow: none;
    border-top: 1px solid #F8F9FA;
    border-bottom: 1px solid #F8F9FA;
    font-weight: 700;
    font-size: 12px;
    color: var(--color-dark);
}

    body#Team main .options svg {
        color: var(--color-dark);
    }

    body#Team main .options > .active {
        border-bottom: 1px solid var(--color-secondary);
        color: var(--color-secondary);
    }

        body#Team main .options > .active svg {
            color: var(--color-secondary);
        }

body#Team main .info-team > div span:first-child {
    color: var(--color-dark-3);
    font-size: 10px;
    font-weight: 500;
}

body#Team main .info-team > div span:last-child {
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 700;
}

body#Team main .info-team[data-type=details] {
    display: grid;
}

body#Team main .details-team .name-team {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-secondary);
}

body#Team main .players-team .players {
    font-size: 12px;
    color: var(--color-dark-3);
}

body#Team main .players-team .number, body#Team main .players-team .position {
    font-weight: 500;
    font-size: 12px;
    color: var(--color-dark);
}

body#Team main .players-team .name {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-dark);
}

body#Team main [data-type] {
    display: none;
}

body#Team main .options [data-type] {
    display: flex;
}

body#Team main [data-type=details] {
    display: flex;
}

body#Team main .movies svg {
    flex: 0 0 16px;
}

body#Team main .movies .description {
    font-size: 10px;
    color: var(--color-dark);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body#Team main .news span.title {
    font-weight: 700;
    font-size: 10px;
    color: var(--color-secondary);
}

body#Team main .news .description {
    font-size: 12px;
    color: var(--color-dark);
    font-weight: 500;
}

body#Team main .last-transfer {
    background-color: var(--color-light-2);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0784313725);
}

    body#Team main .last-transfer .in-transfer, body#Team main .last-transfer .out-transfer {
        font-size: 8px;
        color: var(--color-dark);
        font-weight: 500;
    }

        body#Team main .last-transfer .in-transfer .player, body#Team main .last-transfer .out-transfer .player {
            background-color: var(--color-light);
            border-radius: 0.5rem;
            padding: 0.25rem;
        }

            body#Team main .last-transfer .in-transfer .player .name, body#Team main .last-transfer .out-transfer .player .name {
                font-weight: 700;
                font-size: 14px;
                line-height: 1rem;
            }

            body#Team main .last-transfer .in-transfer .player .in, body#Team main .last-transfer .out-transfer .player .in {
                color: #22BF47;
            }

            body#Team main .last-transfer .in-transfer .player .out, body#Team main .last-transfer .out-transfer .player .out {
                color: var(--color-complementarty);
            }

body#Team main .results {
    font-size: 12px;
    color: var(--color-dark);
    font-weight: 700;
}

    body#Team main .results .header {
        font-size: 10px;
        font-weight: 500;
    }

    body#Team main .results .btn {
        border-radius: 0.5rem;
        border: 1px solid var(--color-light-3);
        background-color: transparent;
        color: var(--color-dark);
        font-size: 12px;
        font-weight: 500;
        padding: 0.5rem;
        height: 56px;
        align-content: center;
    }

    body#Team main .results img {
        width: 24px;
    }

    body#Team main .results .games > div {
        border-bottom: 1px solid var(--color-light-3);
        padding-bottom: 1rem;
    }

        body#Team main .results .games > div:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

@media screen and (min-width: 992px) {
body#Team #main {
    padding-top: 0;
}

body#Team main {
    display: grid;
    grid-template-areas: "details aside" "number-season aside" "next-match aside" "results aside" "classification aside" "news aside" "movies aside" "titles-won aside " "ads aside";
    grid-template-columns: calc(75% - 24px) 25%;
    grid-template-rows: auto;
    overflow: auto;
    column-gap: 24px;
    row-gap: 12px;
}

    body#Team main aside {
        grid-area: aside;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        body#Team main aside .sponsors-team {
            order: 1;
            border-radius: 1rem;
        }

        body#Team main aside .players-team {
            order: 2;
            border-radius: 1rem;
            padding: 1.5rem;
        }

        body#Team main aside .last-transfer {
            order: 3;
            border-radius: 1rem;
            padding: 1.5rem;
        }

    body#Team main .titles-won {
        grid-area: titles-won;
        border-radius: 1rem;
        padding: 1.5rem;
    }

    body#Team main .anuncio {
        grid-area: ads;
        border-radius: 1rem;
        overflow: auto;
    }

    body#Team main .number-season {
        grid-area: number-season;
        border-radius: 1rem;
        padding: 1.5rem;
    }

        body#Team main .number-season .notes {
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }

    body#Team main .next-match {
        grid-area: next-match;
        border-radius: 1rem;
    }

    body#Team main .options {
        display: none;
    }

    body#Team main .details-team {
        grid-area: details;
        border-radius: 1rem;
        padding: 1.5rem;
    }

    body#Team main .news {
        grid-area: news;
        border-radius: 1rem;
        padding: 1.5rem;
    }

    body#Team main .movies {
        grid-area: movies;
        border-radius: 1rem;
        padding: 1.5rem;
    }

    body#Team main .results {
        grid-area: results;
        border-radius: 1rem;
        padding: 1.5rem;
    }

        body#Team main .results .games > div:nth-last-child(2) {
            border-bottom: none;
            padding-bottom: 0;
        }

    body#Team main .classification {
        grid-area: classification;
        border-radius: 1rem;
        padding: 1.5rem;
    }

    body#Team main .patrocinadores {
        grid-area: sponsor;
        border-radius: 1rem;
        padding: 1.5rem;
    }

    body#Team main .info-team[data-type=details] {
        display: none;
        border-radius: 1rem;
        padding: 1.5rem;
    }

    body#Team main [data-type] {
        display: flex;
    }
}

.filter-container {
top: 0;
z-index: 111;
position: fixed;
background-color: var(--color-light-2);
padding: 1.5rem;
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
color: var(--color-dark);
width: 375px;
overflow: auto;
transition: transform 0.4s ease, right 0.4s ease;
right: -100%;
height: 100%;
transform: translateX(100%);
}

.filter-container.active {
    right: 0;
    transform: translateX(0);
}

.filter-container h2 {
    color: var(--color-secondary);
}

.filter-container .filter-section {
    border-bottom: 1px solid var(--color-light-3);
}

    .filter-container .filter-section h3 {
        font-size: 12px;
        font-weight: 700;
    }

    .filter-container .filter-section label {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        font-size: 12px;
        font-weight: 500;
        padding: 0.5rem 0;
        border-top: 1px solid var(--color-light-3);
        cursor: pointer;
    }

    .filter-container .filter-section input[type=radio] {
        margin-right: 10px;
        accent-color: #2c3e50;
    }

.filter-container .filter-actions {
    display: flex;
    gap: 1rem;
}

    .filter-container .filter-actions .btn {
        border: 1px solid var(--color-dark);
        padding: 0.5rem 0.5rem;
        border-radius: 4px;
        font-size: 12px;
        flex-grow: 1;
        font-weight: 700;
        line-height: 15px;
        cursor: pointer;
    }

        .filter-container .filter-actions .btn.close {
            color: #2c3e50;
        }

        .filter-container .filter-actions .btn.done {
            background-color: var(--color-dark);
            color: #fff;
        }

body#Player main .player-header {
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
background-color: var(--color-light-2);
}

body#Player main .options {
background-color: var(--color-light-2);
border-top: 1px solid var(--color-light-3);
border-bottom: 1px solid var(--color-light-3);
font-size: 0.75rem;
font-weight: 700;
color: var(--color-dark-3);
overflow-x: auto;
}

body#Player main .options .active {
    color: var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
}

    body#Player main .options .active svg {
        color: var(--color-secondary);
    }

body#Player main .info-player {
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
background-color: var(--color-light-2);
}

body#Player main .info-player > div span:last-child {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-dark);
}

body#Player main .info-player > div span:first-child {
    color: var(--color-dark-3);
    font-size: 10px;
    font-weight: 500;
}

body#Player main .number-season {
margin-top: 1rem;
background-color: var(--color-light-2);
}

body#Player main .number-season span {
    color: #4A5461;
    font-weight: 500;
    font-size: 10px;
}

body#Player main .number-season select {
    border-radius: 0.5rem;
    border: 1px solid var(--color-light-3);
    background-color: transparent;
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 500;
}

body#Player main .number-season .value {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-dark);
    line-height: 12px;
}

body#Player main .sponsors-player {
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
background-color: var(--color-light-2);
margin-top: 1rem;
}

body#Player main .player-media {
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
background-color: var(--color-light-2);
margin-top: 1rem;
}

body#Player main .movies {
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
background-color: var(--color-light-2);
margin-top: 1rem;
}

body#Player main .movies span {
    font-size: 10px;
    color: var(--color-secondary);
}

body#Player main .movies .swiper-slide .description {
    font-size: 10px;
    color: var(--color-dark);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body#Player main .movies .swiper-slide svg {
    flex: 0 0 16px;
}

body#Player main .titles-player {
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
background-color: var(--color-light-2);
margin-top: 1rem;
}

body#Player main .titles-player .list .item {
    border: 1px solid #F8F9FA;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 12px;
    color: var(--color-dark);
}

    body#Player main .titles-player .list .item .year {
        font-weight: 700;
        font-size: 12px;
    }

    body#Player main .titles-player .list .item .name {
        font-weight: 700;
        font-size: 12px;
        color: var(--color-secondary);
    }

    body#Player main .titles-player .list .item .team {
        font-size: 10px;
        font-weight: 500;
    }

body#Player main .teams-player {
box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
background-color: var(--color-light-2);
}

body#Player main .teams-player .list {
    gap: 0.5rem;
}

    body#Player main .teams-player .list .item > div {
        border-bottom: 1px solid var(--color-dark-3);
        padding-bottom: 0.5rem;
    }

    body#Player main .teams-player .list .item:last-child > div {
        border-bottom: none;
        padding-bottom: 0;
    }

body#Player main .teams-player .media {
    color: var(--color-primary);
    background-color: var(--color-secondary);
    font-weight: 700;
    font-size: 12px;
    padding: 0.5rem 0.25rem;
    border-radius: 0.5rem;
    text-align: center;
}

    body#Player main .teams-player .media > span:first-child {
        line-height: 15px;
    }

    body#Player main .teams-player .media > span:last-child {
        font-weight: 400;
        font-size: 8px;
        line-height: 10px;
    }

@media screen and (min-width: 992px) {
.number-season {
    grid-area: number-season;
    border-radius: 1rem;
    padding: 1.5rem;
}

    .number-season .notes {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

body#Player #main {
    padding-top: 0;
}

body#Player main {
    overflow: auto;
}

    body#Player main .player {
        display: grid;
        grid-template-areas: "details aside" "number-season aside" "movies aside" "titles-won aside " "ads aside";
        grid-template-columns: calc(75% - 24px) 25%;
        grid-template-rows: auto;
        overflow: auto;
        column-gap: 24px;
        row-gap: 12px;
    }

        body#Player main .player aside {
            grid-area: aside;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

            body#Player main .player aside .sponsors-player {
                order: 1;
                border-radius: 1rem;
            }

            body#Player main .player aside .player-media {
                order: 2;
                border-radius: 1rem;
                padding: 1.5rem;
                margin: 0;
            }

            body#Player main .player aside .teams-player {
                order: 3;
                border-radius: 1rem;
                padding: 1.5rem;
            }

                body#Player main .player aside .teams-player .list .item > div {
                    border-bottom: 1px solid #F8F9FA;
                }

                    body#Player main .player aside .teams-player .list .item > div:last-child {
                        border-bottom: none;
                    }

        body#Player main .player .titles-player {
            grid-area: titles-won;
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 0;
        }

        body#Player main .player .anuncio {
            grid-area: ads;
            border-radius: 1rem;
            overflow: auto;
        }

        body#Player main .player .number-season {
            grid-area: number-season;
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 0;
        }

            body#Player main .player .number-season .notes {
                grid-template-columns: repeat(6, minmax(0, 1fr));
            }

        body#Player main .player .next-match {
            grid-area: next-match;
            border-radius: 1rem;
        }

        body#Player main .player .options {
            display: none;
        }

        body#Player main .player .player-header {
            grid-area: details;
            border-radius: 1rem;
            padding: 1.5rem;
        }

        body#Player main .player .news {
            grid-area: news;
            border-radius: 1rem;
            padding: 1.5rem;
        }

        body#Player main .player .movies {
            grid-area: movies;
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 0;

        }

        body#Player main .player .results {
            grid-area: results;
            border-radius: 1rem;
            padding: 1.5rem;
        }

        body#Player main .player .results .games > div:nth-last-child(2) {
            border-bottom: none;
            padding-bottom: 0;
        }

        body#Player main .player .classification {
            grid-area: classification;
            border-radius: 1rem;
            padding: 1.5rem;
        }

        body#Player main .player .sponsors-player {
            grid-area: sponsor;
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 0;
        }

        body#Player main .player .info-player[data-type=profile] {
            display: none;
            border-radius: 1rem;
            padding: 1.5rem;
        }

        body#Player main .player [data-type] {
            display: flex;
        }
}
*/
/*# sourceMappingURL=styles.css.map */

