/* CSS PERSONNALISE */

/* Conteneur principal avec Flexbox pour aligner les éléments sur une ligne */
.container-perso {
    display: flex;
    justify-content: space-between; /* Espace égal entre les éléments */
    align-items: center; /* Aligner les éléments verticalement au centre */
    width: 100%;
	height: 150px;
}

/* Logo Plik à gauche (h1) */
.logo-plik {
	flex: 1; /* Prend tout l'espace disponible sur la gauche */
    text-align: left; /* Aligne le logo à gauche dans sa div */
    padding: 10px;
	color: #337ab7;
}

.logo-plik h1 {
    margin: 0; /* Supprimer les marges du h1 */
	font-family: 'Courgette', sans-serif;
    font-size: 72px;
    font-weight: normal;
    line-height: 1;
}

.logo-plik a {
	color: #337ab7;
}

/* Titre personnalisé au centre */
.titre-perso {
    flex: 2; /* Le titre prend plus d'espace que le logo à gauche et à droite */
    /* text-align: center; /* Centrer le texte */
    font-size: 50px;
    color: #337ab7;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    letter-spacing: -4px;
    transform: scaleY(0.8);
    font-weight: 900;
}

/* Logo personnalisé à droite */
.logo-perso {
   /* flex: 1; /* Prend tout l'espace disponible sur la droite */
    background: url(../img/background.jpg) no-repeat center;
    background-size: contain;
    width: 15%; /* Ajuste la largeur du logo */
    min-width: 150px; /* Ne le rend pas trop petit */
    height: auto;
    aspect-ratio: 1 / 1; /* Garder le logo carré */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 10px;
}

/* Fonts */
@font-face {
    font-family: 'Courgette';
    src: url('../fonts/courgette-regular-webfont.eot');
    src: url('../fonts/courgette-regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/courgette-regular-webfont.woff2') format('woff2'),
    url('../fonts/courgette-regular-webfont.woff') format('woff'),
    url('../fonts/courgette-regular-webfont.ttf') format('truetype'),
    url('../fonts/courgette-regular-webfont.svg#courgetteregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans-regular-webfont.eot');
    src: url('../fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/opensans-regular-webfont.woff2') format('woff2'),
    url('../fonts/opensans-regular-webfont.woff') format('woff'),
    url('../fonts/opensans-regular-webfont.ttf') format('truetype'),
    url('../fonts/opensans-regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Global */

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%; 
    font-family: 'Open Sans', Helvetica, Arial, serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;

}
/* ANIMATION */
@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

.rond {
	z-index: -1;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
}

.rond span {
    width: 17vmin;
    height: 17vmin;
    border-radius: 17vmin;
    backface-visibility: hidden;
    position: absolute;
    animation: move;
    animation-duration: 26;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.rond span:nth-child(0) {
    color: #666;
    top: 20%;
    left: 40%;
    animation-duration: 11s;
    animation-delay: -205s;
    transform-origin: 18vw 25vh;
    box-shadow: -34vmin 0 0.7vmin currentColor;
}
.rond span:nth-child(1) {
	width: 15vmin;
    height: 15vmin;
    color: #afca0b; /* vert */
    top: 28%;
    left: 58%;
    animation-duration: 150s;
    animation-delay: -28s;
    transform-origin: 15vw 20vh;
    box-shadow: -34vmin 0 0.6vmin currentColor;
}
.rond span:nth-child(2) {
	width: 13vmin;
    height: 13vmin;
    color: #46bab9; /* vert mer */
    top: 32%;
    left: 17%;
    animation-duration: 59s;
    animation-delay: -207s;
    transform-origin: -14vw 10vh;
    box-shadow: 34vmin 0 0.5vmin currentColor;
}
.rond span:nth-child(3) {
	width: 20vmin;
    height: 20vmin;
    color: #006488; /* bleu foncé */
    top: 30%;
    left: 43%;
    animation-duration: 142s;
    animation-delay: -70s;
    transform-origin: -21vw 4vh;
    box-shadow: 34vmin 0 0.9vmin currentColor;
}
 .rond span:nth-child(4) {
	 width: 11vmin;
    height: 11vmin;
    color: #14a9e1; /* bleu clair */
    top: 51%;
    left: 38%;
    animation-duration: 35s;
    animation-delay: -169s;
    transform-origin: 15vw -8vh;
    box-shadow: -34vmin 0 0.7vmin currentColor;
}

.rond span:nth-child(5) {
	width: 10vmin;
    height: 10vmin;
    color: pink; /* rose */
    top: 9%;
    left: 44%;
    animation-duration: 64s;
    animation-delay: -104s;
    transform-origin: 5vw -17vh;
    box-shadow: 34vmin 0 1.1vmin currentColor;
}

.rond span:nth-child(6) {
    color: #006488; /* bleu foncé */
    top: 9%;
    left: 30%;
    animation-duration: 168s;
    animation-delay: -119s;
    transform-origin: 21vw -24vh;
    box-shadow: -34vmin 0 0.3vmin currentColor;
}
.rond span:nth-child(7) {
	width: 14vmin;
    height: 14vmin;
    color: orange; /* orange*/
    top: 27%;
    left: 55%;
    animation-duration: 122s;
    animation-delay: -155s;
    transform-origin: -8vw -3vh;
    box-shadow: -34vmin 0 0.4vmin currentColor;
}
.rond span:nth-child(8) {
    color: #666666; /* gris*/
    top: 54%;
    left: 81%;
    animation-duration: 50s;
    animation-delay: -233s;
    transform-origin: 16vw -16vh;
    box-shadow: -34vmin 0 0.5vmin currentColor;
}


/* View */

#view {
    height: calc(100% - 40px); /**/
    min-height: calc(100% - 40px); /**/
    background: transparent;
    overflow: auto;
}

/* extra small devices */
@media all and (max-width: 768px) {
    /* view margin */
    #view {
        margin-left: 5px;
        margin-right: 5px;
    }
}

/* small devices */
@media all and (min-width: 768px) and (max-width: 970px) {
    /* view margin */
    #view {
        margin-left: 15px;
        margin-right: 15px;
    }
}

/* medium devices */
@media all and (min-width: 970px) and (max-width: 1170px) {
    /* view margin */
    #view {
        margin-left: 15px;
        margin-right: 15px;
    }
}

/* large devices */
@media all and (min-width: 1170px) {
    #view {
        margin-left: 35px;
        margin-right: 35px;
    }
}

/* Header */

header {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'Courgette', sans-serif;
}

header h1 {
    margin-top: 0;
    font-size: 72px;
    font-weight: normal;
    line-height: 1;
    color: #FFFFFF;
    letter-spacing: -1px;
}

header a:hover, header a:visited, header a:link, header a:active {
    /*color: #FFFFFF;*/ 
    text-decoration: none;
}

.header-right {
    margin-right: 20px;
}

.header-inner {
    position: relative;
    margin: 0 auto;
}

/* Footer */

footer {
    position: relative;
    width: 100%;
    height: 60px;
    color: #FFFFFF; 
    font-family: 'Courgette', sans-serif;
    background-color: #337ab7;
}

.text_footer p{
	margin: 5px;
	padding: 5px;
	color: white;
	font-size: 10px;
	text-align: center;
}
.col-centered {
    float: none;
    margin: 0 auto;
}

.auth-btn {
    display: inline-block;
    padding: 5px;
}

/* Tile */

.tile {
    background-color: rgba(255, 0, 0, 0);
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.52);
    margin-bottom: 5px;
}

.tile > .panel-heading {
    background-color: ghostwhite;
}

/* Menu */

.menu {
    padding: 10px;
    font-size: 12px;
    line-height: 1.3;
}

/* Comments */

.comments {
    display: inline-block;
    word-wrap: break-word;
    padding: 5px 5px 5px 5px;
}

/* Drag and Drop */

#drop-zone {
    padding-top: 10px;
    padding-bottom: 140px;
    text-align: center;
    font-size: 20px;
    transition: 0.5s;
}

.drop-text {
    padding-bottom: 10px;
}

.btn-file {
    width: 200px;
}

.drag-over {
    opacity: 0.5;
}

/* File list */

.row-padding {
    padding-left: 15px;
    padding-right: 15px;
}

.file {
    display: flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 5px 5px 5px;
}

.file-flex {
    display: flex;
    align-items: center;
}

.file-pencil-padding {
    padding-right: 10px;
}

.file-name {
    display: inline-block;
    word-break: break-all;
}

.file-name-invalid {
    color: red;
}

.file-status {
    color: #ff2132;
    font-size: 18px;
}

/* Link summary */

.link-summary {
    padding: 15px;
    word-break: break-all;
}

/* QRCode */

.qrcode-header {
    text-align: center;
    word-break: break-all;
}

/* Clients */

.client-max-width {
    max-width: 550px;
}

/* Tokens */
.token-speach {
    font-size : 12px;
    font-family: sans-serif;
}
.pulse1 {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    border: 3px solid rgba(255, 255, 255, .1);

    animation: pulsejg1 1s linear 1;
    border-radius: 999px;
    box-shadow: inset 0 0 15px 10px rgba(0, 0, 0, .6);
    box-sizing: border-box;
}

.pulse2 {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0);

    animation: pulsejg2 1s linear 1;
    border-radius: 999px;
    box-shadow: inset 0 0 12px 5px rgba(255, 255, 255, .8);
    box-sizing: border-box;
}

@keyframes pulsejg1 {
    0% {
        transform: scale(.5);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: .25;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes pulsejg2 {
    0% {
        transform: scale(.4);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: .3;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
