
:root {
    --camp-color: var(--nown-primaria);
}

[data-page="normal"] #camp_normal {
    display: block !important;
}
[data-page="input"] #camp_input {
    display: block !important;
}

.tabela-campeonato {
    table {
        width: 100%;
        
        thead th {
            background: rgba(0,0,0,0.05);
            padding: 15px;
            font-size: 11px;
            font-weight: 400;
            border-bottom: 1px solid rgba(0,0,0,0.2);
            
            &:not(:first-of-type) {
                text-align: center;
            }
            
            &:first-of-type {
                padding-left: 60px !important;
            }
        }
        
        tbody tr {
            
            td {
                background: white;
                padding: 9px 15px;
                font-size: 14px;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .c {
                border-right: 1px solid rgba(0,0,0,0.1);
                padding-left: 10px;
                span {
                    display: inline-block;
                    width: 25px;
                    color: rgba(0,0,0,0.5);
                    font-weight: 500;
                    vertical-align: middle;
                }
                
                img {
                    width: 35px;
                    height: 35px;
                    object-fit: contain;
                    display: inline-block;
                    margin-right: 10px !important;
                }
            }
            
            td:not(.c) {
                text-align: center;
                font-size: 12px;
            }
            
            &:nth-of-type(1) .c span, &:nth-of-type(2) .c span, &:nth-of-type(3) .c span {
                color: green !important;
                font-weight: bold;
            }
            
            .p {
                font-weight: bold;
            }
            
            td:nth-of-type(even){
                background: rgba(0,0,0,0.05);
            }
            
            .ult {
                span {
                    display: inline-block;
                    margin: 0 1px;
                    width: 7px;
                    height: 7px;
                    background: rgba(0,0,0,0.2);
                    border-radius: 50%;
                    
                    &.v {
                        background: green;
                    }
                    
                    &.d {
                        background: red;
                    }
                }
            }
        }
    }
}

.camp_slide {
    
    .camp_slide_nav {
        display: block;
        position: relative;
        padding: 8px;
        user-select: none;
        border-bottom: 1px solid rgba(0,0,0,0.3);
        
        .camp_prev, .camp_next {
            position: absolute;
            top: 50%;
            transform: translatey(-50%);
            cursor: pointer;
            display: block;
            width: 15px;
            height: 15px;
            
            &.disabled {
                pointer-events: none;
                opacity: 0.4;
                filter: grayscale(1);
            }
            
            &:before, &:after {
                content: '';
                display: block;
                width: 13px;
                height: 3px;
                background: var(--camp-color);
                border-radius: 5px;
                transform: rotate(45deg);
                transform-origin: center left;
                position: absolute;
                top: 3px;
            }
            
            &:after {
                top: 5px;
                transform: rotate(-45deg);
                transform-origin: center left;
            }
        }
        
        .camp_next {
            right: 0;
            
            &:before, &:after {
                transform-origin: center right;
            }
            
            &:before {
                top: 4px;
            }
            
            &:after {
                top: 3px;
            }
        }
        
        .camp_title {
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
        }
    }
    
    .camp_slide_slide {
        display: none;
        
        &.active {
            display: block;
        }
    }
    
    &:not(&:has(.active)) {
        .camp_title {
            
            &:before {
                content: '...';
                color: transparent;
                display: inline-block;
                width: 60%;
                background: rgba(0,0,0,0.1);
                border-radius: 5px;
            }
        }
    }
}

.card-jogo-1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    padding-top: 15px;
    
    .jogo-meta {
        display: flex;
        justify-content: center;
        justify-content: center;
        font-size: 13px;
        gap: 5px;
        
        span:not(:first-of-type):before {
            content: '•';
            display: inline-block;
            margin-right: 5px;
        }
        
        span:not(.local) {
            font-weight: bold;
        }
    }
    
    .jogo-times {
        display: flex;
        justify-content: space-between;
        padding: 16px 10px;
        
        .jogo-time {
            display: flex;
            justify-content: end;
            align-items: center;
            gap: 10px;
            width: 40%;
            
            .n {
                display: block;
                font-size: 16px;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                line-clamp: 1; 
                -webkit-box-orient: vertical;
            }
            
            img {
                width: 35px;
                height: 35px;
                object-fit: contain;
            }
            
            &:last-of-type {
                justify-content: start;
                text-align: left;
                flex-direction: row-reverse;
            }
        }
        
        .jogo-score {
            display: flex !important;
            justify-content: space-between !important;
            width: 15% !important;
            font-size: 20px !important;
            font-weight: bold !important;
            position: relative !important;
            
            &:before {
                content: '×';
                font-weight: 300;
                position: absolute;
                top: calc(50% - 3px);
                left: 50%;
                transform: translate(-50%, -50%);
                font-size: 30px;
                opacity: 0.4;
            }
        }
    }
}

.card-partida {
    border: 1px solid rgba(0,0,0,0.2);
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
    
    &:has(.card-jogo-1 + .card-jogo-1){
        display: flex;
        
        .card-jogo-1 {
            width: 50%;
        }
        
        &:before {
            content: '';
            width: 1px;
            height: 100%;
            position: absolute;
            top: 0;
            left: 50%;
            background: rgba(0,0,0,0.2);
        }
        
        .badge-partida {
            top: 50%;
        }
    }
    
    .badge-partida {
        position: absolute;
        background: white;
        font-size: 11px;
        border: 1px solid rgba(0,0,0,0.2);
        padding: 2px 10px;
        border-radius: 20px;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 600;
    }
    
    .card-jogo-1 {
        border: none !important;
    }
}

.titulo_camp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    
    h3 {
        display: flex;
        gap: 10px;
        align-items: center;
        margin: 0 !important;
        svg {
            width: 35px;
            opacity: 0.6;
        }
    }
    
    .titulo_actions {
        display: flex;
        justify-content: end;
        gap: 10px;
        
        a, button {
            text-decoration: none !important;
            background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
            background-color: var(--camp-color);
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.2) !important;
            font-weight: bold;
            transition: .27s ease;
            font-size: 18px;
            outline: none !important;
            border: none !important;
            
            &:hover {
                background-color: black;
            }
            
            span.camp_more {
                width: 16px;
                height: 16px;
                display: inline-block;
                position: relative;
                vertical-align: middle;
                margin-right: 5px;
                top: -1px;
                
                &:before, &:after {
                    content: '';
                    position: absolute;
                    width: 2px;
                    height: 100%;
                    background: white;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
                
                &:after {
                    transform: translate(-50%, -50%) rotate(90deg);
                }
            }
        }
        
        .titulo_camp_search {
            position: relative;
            width: 270px;
            display: flex;
            
            input {
                display: block;
                width: 100%;
                border-radius: 50px;
                border: 1px solid rgba(0,0,0,0.2);
                padding: 10px 45px 10px 20px;
                outline: none !important;
                box-shadow: none !important;
                
                &:focus {
                    border-color: var(--camp-color) !important;
                }
            }
            
            span {
                position: absolute;
                top: calc(50% - 3px);
                right: 20px;
                display: block;
                width: 18px;
                height: 18px;
                border: 1px solid black;
                border-radius: 50%;
                transform: translatey(-50%);
                opacity: 0.6;
                pointer-events: none;
                
                &:before {
                    content: '';
                    display: block;
                    width: 1px;
                    height: 7px;
                    border-left: 2px solid black;
                    position: absolute;
                    bottom: -6px;
                    right: -1px;
                    transform: rotate(-45deg);
                }
            }
        }
    }
}

.list_campeonatos {
    margin: 20px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: white;
    .dark & {
        background: #222;
    }
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    padding-top: 60px !important;
    overflow: hidden;
    
    li {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        
        &:first-of-type .list_camp_card > div:before {
            content: attr(data-coluna);
            position: absolute;
            top: -60px;
            left: 0;
            width: 100%;
            height: 60px;
            background: rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,.2);
            display: flex;
            align-items: center;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: bold;
            padding: 10px;
        }
        
        &:first-of-type {
            .img:before {
                content: 'Imagem' !important;
            }
            .titulo:before {
                content: 'Título' !important;
            }
            .tipo:before {
                content: 'Tipo' !important;
            }
            .status:before {
                content: 'Status' !important;
            }
            .acoes:before {
                content: 'Ações' !important;
            }
        }
    }
    
    li:nth-of-type(even){
        background: rgba(0,0,0,0.05);
    }
    
    .list_camp_card {
        display: flex;
        justify-content: start;
        align-items: stretch;
        
        & > div {
            width: 100%;
            display: flex;
            align-items: center;
            padding: 10px;
            position: relative;
        }
        
        .img {
            max-width: 80px;
            
            img {
                width: 100%;
                aspect-ratio: 1 / 1;
                background: #eaeaea;
                border-radius: 5px;
            }
        }
        
        .titulo {
            padding-left: 10px;
        }
        
        .acoes {
            display: flex;
            justify-content: start;
            gap: 5px;
            
            a {
                text-decoration: none !important;
                background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
                background-color: var(--camp-color);
                color: white;
                padding: 8px 14px;
                border-radius: 10px;
                box-shadow: 0 0 15px rgba(0,0,0,0.2) !important;
                font-weight: bold;
                transition: .27s ease;
                
                &:hover {
                    background-color: black;
                }
            }
        }
    }
}

.camp_form {
    
    .camp_section {
        background: white;
        border-radius: 20px;
        box-shadow: 0 0 25px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    h3 {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 20px;
        font-size: 20px;
        background: rgba(0,0,0,0.06);
    }
    
    .camp_form_row {
        padding: 30px;
        display: flex;
        flex-wrap: wrap;
        flex-flow: row wrap;
        gap: 15px;
        
        .camp_form_1 {
            width: calc(100% / 6 * 1 - 15px);
        }
        .camp_form_2 {
            width: calc(100% / 6 * 2 - 15px);
        }
        .camp_form_3 {
            width: calc(100% / 6 * 3 - 15px);
        }
        .camp_form_4 {
            width: calc(100% / 6 * 4 - 15px);
        }
        .camp_form_5 {
            width: calc(100% / 6 * 5 - 15px);
        }
        .camp_form_6 {
            width: 100%;
        }
        
        .camp_input {
            margin: 10px 0;
            label {
                display: block;
                font-size: 14px;
                font-weight: 600;
            }
            input, select {
                border: 1px solid rgba(0,0,0,0.2);
                border-radius: 10px;
                padding: 10px !important;
                display: block;
                width: 100%;
                outline: none !important;
                
                &:focus {
                    border-color: var(--camp-color);
                }
            }
        }
        
        .camp_input_foto {
            width: 200px;
            height: 200px;
            margin: 0 auto;
            border-radius: 50%;
            border: 2px solid rgba(0,0,0,0.2);
            background: rgba(0,0,0,0.05);
            position: relative;
            cursor: pointer;
            
            span {
                display: block;
                width: 60px;
                height: 60px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                opacity: 0.2;
                transition: .27s ease;
            }
            
            &:hover span {
                opacity: 0.5;
            }
        }
    }

    .camp_select_parts {
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 20px;
        overflow: hidden;
        background: rgba(0,0,0,0.05);
        padding: 0 10px;
        
        .camp_select_parts_search {
            background: rgba(0,0,0,0.05);
            padding: 5px 15px;
            margin: 0 -10px;
            
            .camp_input {
                position: relative;
                
                input {
                    padding-right: 40px !important;
                }
                
                span:before {
                    content: '';
                    display: block;
                    width: 17px;
                    height: 17px;
                    border: 1px solid rgba(0,0,0,0.5);
                    border-radius: 50%;
                    position: absolute;
                    top: calc(50% - 3px);
                    right: 15px;
                    transform: translatey(-50%);
                    pointer-events: none;
                }
                
                span:after {
                    content: '';
                    display: block;
                    width: 0;
                    height: 7px;
                    border-left: 1px solid rgba(0,0,0,0.5);
                    position: absolute;
                    top: calc(50% + 3px);
                    right: 14px;
                    transform: rotate(-45deg);
                    pointer-events: none;
                }
            }
        }
    
        .camp_select_parts_list {
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
            max-height: 350px;
            border-radius: 15px;
            overflow: auto;
            background: white;
            padding: 5px 0;
            margin: 10px 0 !important;
            border: 1px solid rgba(0,0,0,0.1);
            
            li {
                padding: 5px 10px;
                border-bottom: 1px solid rgba(0,0,0,0.1);
                position: relative;
                transition: .27s ease;
                user-select: none;
                cursor: pointer;
                
                &.checked, &:hover {
                    background: rgba(0,0,0,0.04) !important;
                }
                
                img {
                    border-radius: 50%;
                    width: 35px;
                    height: 35px;
                    margin-right: 5px;
                }
                
                span.nome {
                    font-size: 15px;
                    color: rgba(0,0,0,0.8);
                }
                
                span.check {
                    position: absolute;
                    top: calc(50% - 10px);
                    right: 15px;
                    display: block;
                    width: 20px;
                    height: 20px;
                    border: 1px solid rgba(0,0,0,0.3);
                    border-radius: 50%;
                    transition: .27s ease;
                    cursor: pointer;
                    
                    &:hover {
                        background: rgba(0,0,0,0.1);
                    }
                }
                
                &.checked .check {
                    background: var(--camp-color) !important;
                    border-color: var(--camp-color);
                    
                    &:before {
                        content: '';
                        display: block;
                        width: 2px;
                        height: 6px;
                        background: white;
                        position: absolute;
                        top: calc(50% - 1px);
                        left: calc(50% - 5px);
                        transform: rotate(-45deg);
                    }
                    &:after {
                        content: '';
                        display: block;
                        width: 2px;
                        height: 12px;
                        background: white;
                        position: absolute;
                        top: calc(50% - 5px);
                        left: calc(50% + 1px);
                        transform: rotate(45deg);
                    }
                }
            }
        }
    }
        
    .camp_selected_parts {
        background: rgba(0,0,0,0.05);
        padding: 15px;
        border-radius: 20px;
        border: 1px solid rgba(0,0,0,0.1);
        display: flex;
        flex-wrap: wrap;
        gap: 7px 15px;
        max-height: 375px;
        overflow: auto;
        
        .pill_part {
            background: white;
            border-radius: 50px;
            border: 1px solid rgba(0,0,0,0.15);
            padding: 5px 10px 5px 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            user-select: none;
            cursor: pointer;
            
            span.img {
                border-radius: 50%;
                width: 30px;
                height: 30px;
                display: block;
                position: relative;
                overflow: hidden;
                
                img {
                    width: 30px;
                    border-radius: 50%;
                }
            }
            
            span.img:before {
                content: '×';
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: rgba(0,0,0,0.5);
                color: white;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 18px;
                line-height: 0;
                cursor: pointer;
                opacity: 0;
                transition: .27s ease;
            }
            
            &:hover span.img:before {
                opacity: 1;
            }
            
            span.nome {
                font-size: 14px;
                font-weight: 500;
            }
        }
    }
    
    .camp_form_actions {
        justify-content: end;
        
        button {
            text-decoration: none !important;
            background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
            background-color: var(--camp-color);
            color: white;
            padding: 13px 24px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.2) !important;
            font-weight: bold;
            transition: .27s ease;
            border: none !important;
            
            &:hover {
                background-color: black;
            }
        }
    }
}


.camp_btn_submit {
    text-decoration: none !important;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
    background-color: var(--camp-color);
    color: white;
    padding: 13px 24px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2) !important;
    font-weight: bold;
    transition: .27s ease;
    border: none !important;
    
    &:hover {
        background-color: black;
    }
}

.camp_btn_cancel {
    text-decoration: none !important;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.15));
    background-color: #fff;
    color: black;
    padding: 13px 24px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15) !important;
    font-weight: bold;
    transition: .27s ease;
    border: none !important;
    
    &:hover {
        color: white !important;
        background-color: black;
    }
}

.camp_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(2px);
    z-index: 999998;
    display: none;
}

.camp_modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999998;
    background: white;
    max-width: 600px;
    width: 95%;
    border-radius: 20px;
    overflow: hidden;
    
    .camp_modal_header {
        background: rgba(0,0,0,0.1);
        padding: 25px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.2);
        position: relative;
        
        h4 {
            margin: 0 !important;
            font-size: 20px !important;
        }
        
        span.camp_modal_close {
            position: absolute;
            display: block;
            width: 30px;
            height: 30px;
            top: 50%;
            right: 20px;
            transform: translatey(-50%);
            cursor: pointer;
            
            &:before, &:after {
                content: '';
                width: 1px;
                height: 100%;
                background: black;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) rotate(-45deg);
            }
            
            &:after {
                transform: translate(-50%, -50%) rotate(45deg);
            }
        }
    }
    
    .camp_modal_body {
        padding: 20px;
    }
    
    .camp_modal_footer {
        background: rgba(0,0,0,0.1);
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.2);
        display: flex;
        justify-content: end;
        gap: 10px;
    }
}

#conteudo:has(.holder_camp_brackets){
    padding: 0 !important;
}

.holder_camp_brackets {
    background: white;
    box-shadow: 0 0 25px rgba(0,0,0,0.15), 0 0 50px rgba(0,0,0,0.1) inset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camp_brackets {
    padding: 30px;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0 auto;
    
    .c_b_side {
        background: none;
        display: flex;
        gap: 50px;
        
        &.c_b_right {
            flex-direction: row-reverse;
        }
        
        &.c_b_center {
            & .c_b_col {
                padding: 0 50px;
            }
            
            .c_b_game {
                
            }
        }
    }
    
    .c_b_col {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    
    .c_b_match {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
        
        .c_b_game {
            padding: 0;
            margin: 10px 0;
            width: 190px;
            
            &:nth-child(odd):before {
                content: '';
                display: block;
                width: 25px;
                height: 50%;
                border: 1px solid rgba(0,0,0,0.2);
                border-left: none !important;
                position: absolute;
                top: 25%;
                right: -25px;
            }
            
            &:nth-child(odd):after {
                content: '';
                display: block;
                width: 25px;
                height: 1px;
                border-bottom: 1px solid rgba(0,0,0,0.2);
                border-left: none !important;
                position: absolute;
                top: 50%;
                right: -50px;
            }
        }
        
        .c_b_game {
            display: flex;
            flex-direction: column;
            font-size: 12px;
            
            span {
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
            }
            
            .c_b_winner {
                font-weight: bold;
            }
        }
    }
        
    .c_b_right {
        .c_b_game {
            &:nth-child(odd):before {
                right: unset;
                left: -25px;
                transform: scalex(-1);
            }
            
            &:nth-child(odd):after {
                left: -50px;
            }
        }
    }
        
    .c_b_center {
        text-align: center;
        justify-content: center;
        
        .c_b_game {
            &:nth-child(odd):before, &:nth-child(odd):after {
                display: none !important;
            }
        }
    }
    
    .c_b_game {
        border-radius: none !important;
    }
    
    .c_b_part {
        display: flex;
        justify-content: start;
        align-items: center;
        overflow: hidden;
        
        &:first-of-type {
            border-radius: 10px 10px 0 0;
        }
        
        &:last-of-type {
            border-radius: 0 0 10px 10px;
        }
        
        .nome {
            padding: 6px 0 6px 8px;
            width: calc(100% - 50px);
            background: rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 5px;
            
            img {
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
        }
        
        &.c_b_winner .nome {
            background: rgba(0,0,0,0.09);
        }
        
        .pts {
            width: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--camp-color);
            background-image: linear-gradient(0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.3));
            height: 100%;
            color: white;
            
            input {
                width: 70%;
                border: none !important;
                border-bottom: 1px solid rgba(255,255,255,0.5) !important;
                background: none !important;
                outline: none !important;
                color: white !important;
                text-align: center;
                font-weight: bold;
                transition: .27s ease;
                
                &:focus {
                    border-color: white !important;
                }
            }
        }
        
        &.c_b_winner .pts {
            background-image: linear-gradient(0deg, rgba(0,0,0,0.45), rgba(0,0,0,0.45)) !important;
        }
    }
}

.c_b_center {
    position: relative;
}

.c_b_bigwin {
    position: absolute;
    top: -20px;
    transform: translatey(-100%);
    
    .nome {
        font-weight: bold;
    }
    
    .c_b_foto {
        width: 200px;
        position: relative;
        margin-bottom: 10px;
        
        img {
            border-radius: 50%;
            border: 4px solid rgba(0,0,0,0.1);
        }
        
        svg {
            position: absolute;
            bottom: 0px;
            right: 20px;
            width: 55px;
            transform: rotate(5deg);
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
        }
    }
}

.dark {
    .tabela-campeonato {
        th {
            background: rgba(255,255,255,0.15) !important;
        }
        td {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.1);
            
            &.ult span:not(span.v):not(span.d) {
                background: rgba(255,255,255,0.3);
            }
        }
        .c {
            span {
                color: white;
            }
        }
    }
    
    .card-jogo-1, .camp_slide_nav, .card-partida {
        border-color: rgba(255,255,255,0.15);
    }
    
    .card-partida:before {
        background: rgba(255,255,255,0.15) !important;
    }
    
    .card-partida .badge-partida {
        background: #222 !important;
        border-color: rgba(255,255,255,0.25) !important;
    }
    
    .holder_camp_brackets {
        background: #222;
        
        
        .c_b_part {
            background: rgba(255,255,255,0.07);
            &.c_b_winner {
                background: rgba(255,255,255,0.15);
            }
        }
        
        .c_b_game {
            &:before, &:after {
                border-color: rgba(255,255,255,0.25) !important; 
            }
        }
        
        .c_b_bigwin img {
            border-color: rgba(255,255,255,0.2) !important;
        }
    }
    
    .list_campeonatos {
        li {
            &:first-of-type .list_camp_card > div:before {
                background: rgba(255,255,255,0.1);
            }
        }
        
        li:nth-of-type(even) {
            background: rgba(255,255,255,0.05);
        }
    }
    
    .titulo_camp {
        .titulo_actions {
            a, button {
                &:hover {
                    background: #444;
                }
            }
            
            .titulo_camp_search {
                span, span:before {
                    border-color: white !important;
                }
            }
        }
        
        svg {
            fill: white !important;
        }
    }
    
    .list_campeonatos .list_camp_card .acoes a:hover {
        background:: #444;
    }
    
    .camp_form {
        .camp_section {
            background: #222;
            
            h3 {
                background: rgba(255,255,255,0.08);
            }
        }
        
        .camp_select_parts {
            background: rgba(255,255,255,0.08);
            .camp_select_parts_search {
                background: rgba(255,255,255,0.05);
            }
            .camp_select_parts_search {
                span:before, span:after {
                    border-color: white;
                    opacity: 0.6;
                }
            }
            
            .camp_select_parts_list {
                background: rgba(0,0,0,0.1);
                border-color: rgba(255,255,255,0.05);
                
                span.nome {
                    color: rgba(255,255,255,0.8);
                }
            }
        }
            
        .camp_selected_parts {
            .pill_part {
                background: rgba(255,255,255,0.07) !important;
                border-color: rgba(255,255,255,0.1);
            }
        }
    }
    
    .camp_modal {
        background: #222;
        
        .camp_modal_header, .camp_modal_footer {
            background: rgba(255,255,255,0.05);
        }
        
        .camp_modal_close {
            &:before, &:after {
                background: white !important;
            }
        }
        
        .camp_input_foto {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.2);
            
            span {
                filter: invert(1);
            }
        }
    }
    
    .camp_btn_cancel:hover, .camp_btn_submit:hover {
        background-color: #444;
    }
    
    .camp_prev, .camp_next {
        &.disabled {
            &:before, &:after {
                background: white !important;
            }
        }
    }
}

@media (max-width: 991px){
    .holder-tabela-campeonato {
        position: relative;
        margin: 0 -15px;
    }
    
    .tabela-campeonato {
        overflow-x: scroll;
        overflow-y: visible;
        margin-left: 200px;
        
        table {
            th, td {
                height: 60px;
                min-width: 60px;
            }
            th:last-of-type {
                min-width: 120px !important;
            }
            td.c {
                margin-top: 1px;
            }
            th:first-of-type, td.c {
                position: absolute;
                width: 200px;
                top: auto;
                left: 1px;
                display: flex;
                align-items: center;
                text-overflow: ellipsis;
                
                img {
                    width: 20px !important;
                    height: 20px !important;
                }
                
                font-size: 13px !important;
            }
        }
    }
    
    .card-partida {
        &:has(.card-jogo-1 + .card-jogo-1) {
            flex-wrap: wrap;
            
            &:before {
                height: 1px;
                width: 100%;
                top: 50%;
                left: 0;
            }
            .card-jogo-1 {
                width: 100%;
                padding-top: 0 !important;
                & + .card-jogo-1 {
                    padding-top: 50px !important;
                }
            }
        }
    }
}