@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --background-gradient: linear-gradient(178deg, #ffff33 10%, #3333ff);
    --gray: #34495e;
    --darkgray: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/vELZ2/relevos/elrecurso/bg-oficial.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabla {
    background-color: white;
    max-width: 900px;
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    margin: 20px;
}

.tabla-header {
    width: 100%;
    border-bottom: 1px solid #00112460;

    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;

    padding: 10px 25px;
}

.tabla-header .grupo {
    font-size: 24px;
    font-weight: 700;
    color: #013E7F;
}

.tabla-header .ronda {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;

    margin-top: -5px;

    color: #013e7f98;
}

.tabla-body {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;
}


/* --estructura del select-- */

.ss {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}


.form-seleccion{
    width: 100% ;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.label-seleccion{
    color: #013E7F;
    font-size: 18px;
    font-weight: 600;
    margin: 10px;
}



/* ----------------- select ----------------- */

.select select {
    /* Reset Select */
    appearance: none;
    /* outline: 10px red; */
    border: 0;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: #fff;
    background-color: var(--darkgray);
    background-image: none;
    cursor: pointer;
}

/* Remove IE arrow */
select::-ms-expand {
    display: none;
}

/* Custom Select wrapper */
.select {
    position: relative;
    display: flex;
    width: 20em;
    height: 3em;
    border-radius: .25em;
    overflow: hidden;
}

/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 14px;
    background-color: #343f5e;
    transition: .25s all ease;
    pointer-events: none;
    color: #fff;
}

/* Transition */
.select:hover::after {
    color: #00a2ff;
}


/* --- contenido --- */



/* equipos */
.content-equipo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 20px;
    margin: 15px 10px;
}

.tit-tabla {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
}


.equipo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 10px; */
    padding: 10px;
}

.num {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    margin: 5px 8px;
    padding: 10px;
    background: #36D1DC;
    background: -webkit-linear-gradient(to right, #5B86E5, #36D1DC);
    background: linear-gradient(to right, #5B86E5, #36D1DC);

    border-radius: 50%;
}



.nom-che{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 350px;
    padding: 10px 5px;
    margin-right: 5px;

    background: #36D1DC;
    background: -webkit-linear-gradient(to right, #5B86E5, #36D1DC);
    background: linear-gradient(to right, #5B86E5, #36D1DC);

    border-radius: 50px;
    font-weight: 600;
    color: #fff;

}



/* ------------ checkbox ------------- */
.cl-checkbox {
    position: relative;
    display: inline-block;

}

/* Input */
.cl-checkbox>input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

/* Span */
.cl-checkbox>span {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

/* Box */
.cl-checkbox>span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 3px 11px 3px 1px;
    border: solid 2px;
    /* Safari */
    border-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}

/* Checkmark */
.cl-checkbox>span::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 1px;
    width: 10px;
    height: 5px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

/* Checked, Indeterminate */
.cl-checkbox>input:checked,
.cl-checkbox>input:indeterminate {
    background-color: #ffffff;
}

.cl-checkbox>input:checked+span::before,
.cl-checkbox>input:indeterminate+span::before {
    border-color: #ffffff;
    background-color: #f2f2f2;
}

.cl-checkbox>input:checked+span::after,
.cl-checkbox>input:indeterminate+span::after {
    border-color: #000000;
}

.cl-checkbox>input:indeterminate+span::after {
    border-left: none;
    transform: translate(4px, 3px);
}

/* Hover, Focus */
.cl-checkbox:hover>input {
    opacity: 0.04;
}

.cl-checkbox>input:focus {
    opacity: 0.12;
}

.cl-checkbox:hover>input:focus {
    opacity: 0.16;
}

/* Active */
.cl-checkbox>input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.cl-checkbox>input:active+span::before {
    border-color: #85b8b7;
}

.cl-checkbox>input:checked:active+span::before {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Disabled */
.cl-checkbox>input:disabled {
    opacity: 0;
}

.cl-checkbox>input:disabled+span {
    color: rgba(0, 0, 0, 0.38);
    cursor: initial;
}

.cl-checkbox>input:disabled+span::before {
    border-color: currentColor;
}

.cl-checkbox>input:checked:disabled+span::before,
.cl-checkbox>input:indeterminate:disabled+span::before {
    border-color: transparent;
    background-color: currentColor;
}




/* ----------- tabla footer ----------- */

.tabla-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #00112460;
}

.guardar{
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #001124;
    outline: none;
    background-color: #001124;
    color: white;
    font-weight: 600;
    font-size: 19px;
    cursor: pointer;
    transition: .3s ease all;
}

.guardar:hover{
    background-color: #fff;
    color: #001124;
}





/* responsive general */

@media screen and (max-width: 610px) {
    .tabla {
        width: 95%;
        margin: 10px 0;
    }

    .tabla-header .grupo {
        font-size: 20px;
    }

    .tabla-header .ronda {
        font-size: 15px;
    }

    .tit-tabla {
        font-size: 20px;
    }

    .equipo {
        padding: 5px;
    }

}

@media screen and (max-width: 520px) {
    .num{
        font-size: 11px;
        width: 36px;
        height: 36px;
        font-weight: 600;
    }

    .nombre{
        font-size: 12px;
        font-weight: 600;
        padding: 3px;
        
    }

    .equipo{
        width: 100%;
    }

    .nom-che{
        width: 90%;
    }

    .content-equipo{
        width: 100%;
        margin: 8px;
    }

    .tabla-body{
        padding: 5px;

    }
}