:root {
    --bg: #EDEDED;
    --bg2: #FFFFFF;
    --primary: #EDEDED;
    --secondary: #FAFA33;
    --deepBlue: #040738;
    --white: #F5F5F5;
    --padelYellow: #E1E720;
    --shadow: rgba(0, 0, 0, 0.140);
}

@font-face {
    font-family: 'Calibri';
    src: url('./font/calibri-font-family/calibri-regular.ttf') format('ttf'), url('./font/calibri-font-family/calibri-bold.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    border: 0;
    margin: 0;
    font-family: Calibri;
    background-color: var(--deepBlue);
    color: var(--primary);
    overflow: hidden;
}

.sets {
    width: 33%;
    display: flex;
    justify-content: space-around;
}

.set {
    font-size: 10vw;
    font-weight: bold;
    color: whitesmoke;
}

/* Login */
.tittleLogin {
    font-size: 7vw;
    color: var(--primary);
}

/* std */
.wb {
    z-index: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 92.5vh;
    padding-top: 20vw;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-bottom: 10vw;
    box-sizing: border-box;
    background-color: var(--deepBlue);
    background-size: 170%;
    background-position-x: -25%;
    background-position-y: 100%;
    overflow-y: scroll;
}

.notxt {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: default;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.picSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5vw;
}

.player_Pic {
    width: 50vw;
    height: 50vw;
    margin: auto;
    background-size: contain;
    border-radius: 50%;
    border: solid 1vw var(--padelYellow);
}

.picSection .buttons {
    display: flex;
    width: 100%;
    margin-top: 5vw;
    justify-content: space-evenly;
}

.picSection .buttons .button {
    width: 15vw;
    height: 15vw;
    border-radius: 50%;
    background-size: 60%;
    border: solid 1vw var(--padelYellow);
}

.picSection .buttons .close {
    width: 15vw;
    height: 15vw;
    border-radius: 50%;
    background-size: 60%;
    border: solid 1vw var(--white);
    filter: brightness(100);
    background-color: var(--white);
}

.picSection .video {
    width: 100%;
    margin-top: 10vw;
}

/* .photoControls{
    display: flex;
}
.photoControls .button{
    width: 15vw;
    height: 15vw;
    border-radius: 50%;
    background-size: 60%;
    border: solid 1vw var(--padelYellow);
} */

/* form */
*:focus {
    outline: none;
}

.form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5vw;
    flex-direction: column;
}

.formItem {
    width: 90%;
    margin-bottom: 5vw;
}

.formLabel {
    color: var(--white);
    font-size: 5vw;
    display: block;
    transition: all 0.3s;
    transform: translateY(0vw);
    filter: drop-shadow(0 0 0 10vw var(--shadow));
}

.formInput {
    width: 100%;
    color: var(--deepBlue);
    font-size: 5vw;
    padding: 2.5vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
    border-radius: 2.5vw;
    transition: all 0.3s;
}

.formInput:placeholder-shown+.formLabel {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-5vw);
    transform: translateY(-5vw);
}

.formSelect {
    color: var(--deepBlue);
    background-color: var(--white);
    font-size: 5vw;
    padding: 2.5vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
    border-radius: 2.5vw;
    transition: all 0.3s;
}

.button-85 {
    padding: 2.5vw 15vw;
    border: none;
    outline: none;
    color: var(--white);
    background: var(--deepBlue);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    font-size: 7.5vw;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-85:before {
    content: "";
    background: linear-gradient(45deg,
            var(--deepBlue),
            var(--padelYellow),
            var(--deepBlue));
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    font-size: 5vw;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--deepBlue);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.formLogin {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formLoginItem {
    width: 70%;
    padding-top: 5vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn {
    width: auto;
    padding: 2vw;
    padding-left: 3vw;
    padding-right: 3vw;
    border-radius: 2vw;
    font-size: 3.5vw;
    background-color: var(--primary);
}

.error {
    font-size: 3vw;
    color: red;
}

label {
    font-size: 3.5vw;
    color: var(--secondary);
}

input {
    width: 100%;
    font-size: 3vw;
    line-height: 5vw;
    border: 0;
    filter: drop-shadow(1vw 1vw 1vw var(--shadow));
}

select {
    font-size: 3vw;
    border: 0;
    background-color: transparent;
}

a {
    text-decoration: none;
}

/* img */
.img {
    background-position: center center;
    background-repeat: no-repeat;
}

.iClose {
    background-image: url(../../../app-test/public/img/close.png);
}

.iCamera {
    background-image: url(../img/camera.png);
}

.iUpImg {
    background-image: url(../img/upImage.png);
}

/* head */
.header {
    z-index: 2;
    position: fixed;
    width: 100%;
    height: 7.5vh;
    background-color: var(--deepBlue);
    bottom: 0;
}

.headerContent {
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.headItem {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headItemPic {
    width: 8vw;
    height: 8vw;
    filter: brightness(100);
    background-size: cover;
}

.headItemLabel {
    color: white;
    font-size: 3.5vw;
}

.headItemButton {
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    background-color: var(--secondary);
    background-position: center center;
    background-size: 80%;
}

/* Main */
.head {
    z-index: 1;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    padding: 2.5vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
    top: 0;
    left: 0;
    box-sizing: border-box;
    flex-direction: row;
    flex-wrap: wrap;
    background: rgba(4, 7, 56, 0.75);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
}

.head .tittle {
    color: var(--white);
    font-size: 7.5vw;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.head .pic {
    width: 5vw;
    height: 5vw;
    background-size: 100%;
}

.scroll-container {
    display: flex;
    overflow-x: scroll;
    /* Scroll horizontal */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    height: 97.5%;
    scroll-padding: 0;
}

.section {
    display: flex;
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-direction: column;

    /* Habilita scroll vertical solo en las secciones */
    overflow-y: auto;
    /* Scroll vertical */
}

.section .tittle {
    width: 100%;
    text-align: center;
    font-size: 5vw;
    font-weight: bold;
    color: var(--white);
    margin-top: 2.5vw;
}

.mainCard {
    width: 100%;
    margin-bottom: 5vw;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 5vw;
    padding: 2.5vw;
    box-sizing: border-box;
}

.mainCard .tittle {
    font-size: 5vw;
    color: var(--white);
}

.mainCard .date {
    font-size: 5vw;
    color: var(--white);
}

.radiusCircle {
    border-radius: 50%;
}

/* display */
.displayRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.displayRowSpaceBetween {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.displayColumnCenter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.displayColumnLeft {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.displayRowSpaceEvenly {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.displayContentCenter {
    display: flex;
    justify-content: center;
}