.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;

    position: relative;
    left: calc(50% - 60px);
    top: 300px;
}

.cross {
    width: 120px;
    height: 120px;

    position: relative;
    left: calc(50% - 60px);
    top: 300px;

    display: none;
}

.loader-text {
    font-size: large;
    position: relative;
    top: 350px;
    text-align: center;}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.txt-pts {
    text-align: left;
}

.container-page {
    display: none;
    justify-content: center;

}

.container-video {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 25px;
	padding-bottom: 100px;
}

.container-video video {
    height: -webkit-fill-available;
    max-height: 80vh;
}

.container-data-wrap {
    display: flex;
    justify-content: center;
}

.container-data {
    flex-direction: column;
    display: flex;
    text-align: center;
    height: 50%;
}

.container-data-btn {
    margin-top: auto;
    display: flex;
    justify-content: left;
}


.points {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* 4 colonnes de taille égale */
    grid-template-rows: 1fr 1fr;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    width: 800px;
}

.points:hover {
    background: #c5c4c4;
}

body {
    font-family: Arial, sans-serif;
}

.points p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
}

.container-square {
    padding: 0 25px;
}

input {
    height: 35px;
    width: 70px;
    border: solid 5px black;
    border-radius: 7px;
    font-size: 20px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;

}

h1 {
    padding: 5px 50px;
}

.play,
.back,
.up {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all .3s ease;
    margin: 10px;
}

.play:hover,
.back:hover,
.up:hover {
    transform: scale(1.3);
}

#videoProgressContainer {
    width: 320px;
    height: 5px;
    background-color: #ddd;
    cursor: pointer;
}

#videoProgressBar {
    height: 5px;
    background-color: #ff0000;
    width: 0;
}


.control {
    padding: 15px;
}

.pts-data {
    background-color: #c5c4c4;
}

.btn-data-send {
    margin-top: 20px;
    height: 50px;
    width: 150px;
}

.container-input {
    display: flex;
    flex-direction: column;
}

.text-input {
    text-align: left;
    margin-bottom: 0;
    margin-top: 1rem;
}

#val-endpoint-url, #val-endpoint-user, #val-endpoint-password, #val-trigger-text {
    width: 50%;
}