html {
  font-size: 14px;
}

h2
{
    font-size:1.3em!important;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

header {
    position:fixed;
    width:100%;
    z-index:10;   
    top:0;
}

main {
    width: 100%;
    margin-top:80px;
}

#toggleContainer {
  /*  position: fixed;
    top: 0px; /* ajuste comme tu veux */
  /*  left: 50px; /* place le bouton là où tu veux sur la grille */
  /*  z-index: 100;*/
}

.toggle-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    background-color: white;
    border-radius: 20%;
    color: pink;
    padding: 4px;
    z-index: 1;
}

    .toggle-button:hover {
        color: orange;
    }

.navbar .logout-form {
    display: inline;
    margin: 0;
    padding: 0;
}

    .navbar .logout-form button {
        padding-top: 8px; /* Ajuste selon ton thème */
        padding-bottom: 8px;
        padding-left: 16px;
        padding-right: 16px;
        color: #212529;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        line-height: 1.5;
        vertical-align: middle;
    }

        .navbar .logout-form button:hover {
            text-decoration: underline;
            background: none;
            color: #0d6efd;
        }


.hautdroite {
    margin-top: 50px !important;
    right: 0;
    margin-right: 20px;
    opacity: 0.92;
}

.hautgauche {
    margin-top: 50px !important;
}

.basdroite {
    margin-top: 0 !important;
    margin-right: 20px;
    bottom: 20px;
    right: 0;
    opacity: 0.92;
}

.basgauche {
    margin-top: 0 !important;
    bottom: 20px;
    opacity: 0.92;
}

/* Afficher la zone publicitaire uniquement sur les écrans plus grands que les téléphones portables */
#presentContainer {
    display: inline-block;
    width: 600px; /* Ajustez la largeur selon vos besoins */
    background-color: #f4f4f4;
    padding: 10px;
    z-index: 9999;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.8); /* Ombre avec décalage vertical de 2px et flou de 4px */
    position: fixed;
    margin-top: 50px;
}

    #presentContainer img {
        margin: 0 auto;
        max-height: 500px;
        max-width: 500px;
        height: auto;
    }

.withoutpadding {
    padding-left: 0!important;
    padding-right:0!important;
}

#outerContainer
{
    margin-left:15px;
}

@media (max-width:500px)
{
    #presentContainer{
        visibility:hidden;
    }    
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

    .video-container video {
        min-width: 100vw;
        min-height: 100vh;
        object-fit: cover;
        filter: brightness(0.65) blur(1.2px);
    }