.app_content {
    display: grid;
    gap: 10px;
}

@media screen and (max-width: 320px) {
    .app_content {
        grid-template-columns: 1fr !important;
    }
}

@media screen and (min-width: 320px) and (max-width: 790px) {
    .app_content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (min-width: 790px) {
    .app_content {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.app_coluna {
    padding: 0;
}

.app_content img {
    width: 100%;
    border-radius: 6px;
    position: relative;
    aspect-ratio: 4/4;
    height: auto !important;
    object-fit: cover;
}

.imagem_app {
    transition: all 400ms ease-in-out;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/4;
    height: auto !important;
    object-fit: cover;
    border-radius: 6px;
}

.imagem_app img {
    transition: all 400ms ease-in-out;
}

.imagem_app:hover img {
    position: relative;
    opacity: 0.8;
    transform: scale(1.05);
}

.imagem_app::after {
    content: "Abrir";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #ffffff;
    font-size: 20px;
    background: #0000005e;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Dystopian', sans-serif;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 400ms ease-in-out;
}

.imagem_app:hover::after {
    opacity: 1;
    border-radius: 6px;
}

.assertividade {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    row-gap: 8px;
    margin: 6px 0 0 0;
    padding: 10px;
    font-family: 'Dystopian', sans-serif;
}

.assertividade> :nth-child(2)>b {
    color: #1BFFC8;
}

.assertividade> :nth-child(3)>b {
    color: #af0808;
}

.assertividade>span:nth-child(4) {
    grid-column: span 2;
    text-align: center;
    font-size: 14px;
}

.resultados-container {
    grid-column: span 2;
    text-align: center;
    font-size: 14px;
    display: flex;
    column-gap: 5px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 0 4px 0;
}

.pulsar-resultados {
    text-align: center;
    background: #1ee800;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(154 239 166);
    margin: 10px 3px 0px 8px;
    height: 10px;
    width: 10px;
    transform: scale(1);
    animation: pulse-black 1s infinite;
    margin-top: 0px;
}

@keyframes pulse-black {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(133 230 80 / 70%);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


.assertividade span {
    font-family: 'Dystopian', sans-serif;
    font-size: 12px;
    width: 100%;
    text-align: center;
    min-height: 17px;
}

.assertividade b {
    font-family: 'Dystopian', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 6px 0 0;
}

header .logo {
    max-width: var(--logo-size);
    border-radius: 0;
}

.app_head {
    background: transparent;
    padding: 0;
}


.app_head h2 {
    font-size: 19px;
    font-family: 'Dystopian', sans-serif;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--primary);
    text-align: left;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.app_head h2 i {
    font-size: 15px;
    margin: 0 10px 0 0;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: var(--btnColor);
    padding: 10px;
    border-radius: 5px;
}

@media screen and (max-width: 380px) {
    .app_head h2 {
        font-size: 18px;
    }

    .app_head h2 i {
        font-size: 16px;
    }
}

.app_coluna {
    color: #fff;
}

a.sair i {
    color: #fff;
    font-size: 20px;
}

.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.swiper-slide {
    width: auto;
    overflow: hidden;
}

.small-box {
    background: #151515;
    border: 1px solid #404040;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 4px 9px;
    min-height: 70px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.agora {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 9px;
}

.parte-esquerda img {
    width: 35px;
    margin: 0 9px 0 0;
    border-radius: 3px;
}

.preco {
    display: flex;
    align-items: baseline;
    margin-bottom: 3px;
}

.preco p {
    font-size: 9px;
    margin-bottom: 0;
    margin-right: 2px;
}

.preco b {
    font-size: 15px;
    color: #03D318;
}

.preco .moeda {
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 3px;
}

.mensagem p {
    display: flex;
    flex-wrap: wrap;
    font-size: 10px;
    column-gap: 5px;
    row-gap: 3px;
    align-items: flex-end;
}

.mensagem b {
    font-size: 11px;
}

.nome_jogador {
    text-align: left;
    width: 100%;
    margin-right: 5px;
    font-size: 12px !important;
}

.mensagem p {
    margin: 0;
}

.best_saques {
    margin: 0 0 20px 0;
}

.avisos_ganhos {
    pointer-events: none;
}

span.pontinhos {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

span.pontinhos svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.banner-link img {
    width: 100%;
    border-radius: 10px;
}

.swiper-slide.banner-link {
    display: inline-flex;
}

.swiper.banners {
    position: relative;
    padding: 0;
}

span#actionVoltar:not(.swiper-button-lock),
span#actionPassar:not(.swiper-button-lock) {
    display: flex;
}

span#actionVoltar {
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
}

span#actionVoltar svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

span#actionPassar {
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
}

span#actionPassar svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 13px;
}

.video-container.offline {
    display: flex;
    position: relative;
    border-radius: 15px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16/9;
    padding-bottom: 0;
    height: auto;
}

.video-container.offline span {
    font-size: 14px;
}

.containerPrimary {
    margin: 20px 0;
}

.instalarApp {
    display: grid;
    grid-template-columns: 1fr 180px;
    justify-content: center;
    align-items: center;
    gap: 25px;
    max-width: 435px;
    margin: 15px auto 15px auto;
    justify-items: center;
}

@media screen and (max-width: 400px) {
    .instalarApp {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    span.legendInstall {
        text-align: center;
    }

}

span.legendInstall {
    text-wrap: balance;
    font-size: 13px;
    opacity: .8;
}

.instalarApp svg {
    width: 28px;
    height: 28px;
    padding: 5px;
    fill: var(--backgroundPrimary);
    background: var(--primary);
    border-radius: 50px;
}

.instalarApp a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: var(--invertColor);
    padding: 14px 20px;
    justify-content: center;
    border-radius: 6px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 10px 0;
}

.content img {
    width: 100%;
    max-width: 320px;
    border-radius: 6px;
}