.noDecorationLink {
    text-decoration: none;
    color: darkcyan;
}

.noDecorationLink:hover {
    text-decoration: none;
    color: darkcyan;
}

.noDecorationLink:visited {
    text-decoration: none;
    color: darkcyan;
}

.noDecorationLink:active {
    text-decoration: none;
    color: darkcyan;
}

.noDecorationLink:focus {
    text-decoration: none;
    color: darkcyan;
}

.navigation {
    position: fixed;
    top: auto;
    /* left: 0; */
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: rgba(104, 102, 102, 0.8);
    z-index: 999;
}

.nav-item {
    margin: 1px;
}

.btn-lang {
    display: inline-block;
    padding: 0;
    width: 50px;
    height: 50px;
    outline: none;
    border: 0;
    border-radius: 50%;
    line-height: 50px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
}

.btn-settings {
    display: inline-block;
    padding: 0;
    width: 35px;
    height: 35px;
    outline: none;
    border: 0;
    border-radius: 50%;
    line-height: 35px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
}

.config {
    position: fixed;
    bottom: 0;
    left: -282px;
    background-color: transparent;
    transition: left .3s ease;
    z-index: 100;
}

.config.active {
    left: 0;
}

.logos-section {
    position: relative;
    display: block;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
    background-color: #171925;
    color: #fff;
}

.logos-section .row .item {
    padding-top: 60px;
    padding-bottom: 60px;
    border-width: 0 1px 1px 1px;
    border-left-width: 1px;
    border-style: solid;
    border-left-style: solid;
    border-color: #292e3b;
    border-left-color: rgb(41, 46, 59);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-section .img-logos {
    width: 100px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logos-section .img-logos:hover {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
  }

.logos-section .img-logos:hover img {
    filter: none;
}

.logos-section .row .item:first-child {
    border-left: 0;
}

.logos-section .row:last-child .item {
    border-bottom: 0;
}

.logos-section .row .item:last-child {
    border-right: 0;
}

.logos-section .row .item:last-child {
    border-right: 0;
}

.img-login {
    width: 100%;
    height: auto;
    max-width: 300px;
}


.img-logos {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}

.img-logos > img {
    width: 100%;
    height: auto;
}

html {
    scrollbar-width             : none;
    background-image            : url('../images/background.png');
    background-attachment       : fixed;
    background-position         : center;
    background-repeat           : no-repeat;

    -webkit-background-size     : cover;
    -ms-background-size         : cover;
    -moz-background-size        : cover;
    -o-background-size          : cover;
    background-size             : cover;
}

body {
    background-color: transparent;
}

.footer {
    position:   fixed;
    height:     25px;
    bottom:     0;
    width:      100%;
}

.bi-right {
    margin-right:   4px;
}

.bi-left {
    margin-left:    4px;
}

.container-fluid {
    padding-top: 10px;
    margin-bottom: 30px;
}

#card-container {
    margin-top: 60px;
}

.profilePhoto {
    width:                  180px;
    height:                 180px;
    -webkit-border-radius:  90px / 90px;
    -moz-border-radius:     90px / 90px;
    border-radius:          90px / 90px;
}

.fixedDiv {
    position: fixed;
    width: 100%;
}

.menuMargin {
    padding-top: 60px;
}

.left-arrow, .right-arrow {
    position: absolute;
    top: 70%;
    transform: translateY(-50%); /* Centrer verticalement */
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    color: white;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    border-radius: 50%; /* Pour les rendre circulaires */
}

.left-arrow {
    left: 12px;
}

.right-arrow {
    right: 12px;
}






/* Conteneur du spinner pour garantir l'espace nécessaire */
.spinner {
  top: 60%;
  left: 50%;
  width: 150px; /* Espace pour le spinner */
  height: 150px; /* Espace pour le spinner */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* Pour positionner absolument le logo à l'intérieur */
  transform: translate(-50%, 0%);
}

/* Spinner Bootstrap standard */
.spinner-border {
  width: 100%; /* Utiliser toute la largeur du conteneur */
  height: 100%; /* Utiliser toute la hauteur du conteneur */
  border-width: 8px; /* Épaisseur des bords du spinner */
}

/* Conteneur du logo pour permettre la rotation indépendante */
.logo-container {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 120px; /* Taille du logo */
  height: 120px; /* Taille du logo */
  transform: translate(-50%, -70%); /* Centrer le logo */
}

.centered-logo {
  width: 100%; /* Remplir le conteneur du logo */
  height: auto;
  animation: spin-horizontal 2s linear infinite; /* Animation du logo */
}

@keyframes spin-horizontal {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}