.btn-sm span {
    font-size: medium;
}

.mm-active .active{
    color:#fff !important;
    background-color: #11757a;
}

#side-menu span {
    text-transform: uppercase;
    font-size: 12px;
}

.errorlist {
    list-style: none;
}

.formset-item {
    display: flex;
    align-items: center;
}

/* Notification PopUp */
.popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* background-color: #0fa07c; */
    border: none;
    padding: 20px;
    z-index: 9999;
    animation: fadeInUp 1s ease-in-out; /* Animation d'entrée */
    color: white;
    border-radius: 5px;
}

.popup span {
    cursor: pointer;
    padding-left: 20px;
    color: white;
    font-weight: bold;
    
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-tabs .nav-link.active {
    background-color: #11757a;
    color: white;
}

.topbar a {
    display: flex;
}

.topbar a span {
    font-size: 17px;
}

.topbar a i {
    font-size: 25px;
    margin-right: 15px;
}

form ul li .errorlist{
    bottom: 20px;
    background-color: #c70b0b;
    border: none;
    padding: 20px;
    color: white;
    width: 30%;
    border-radius: 5px;
}

.carousel {
    position: relative;
    width: 600px;
    height: 300px;
    perspective: 1000px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: rotateCarousel 10s infinite linear;
}

.carousel-item {
    position: absolute;
    width: 250px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

/* .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* Placement circulaire */
.carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(300px); }
.carousel-item:nth-child(2) { transform: rotateY(120deg) translateZ(300px); }
.carousel-item:nth-child(3) { transform: rotateY(240deg) translateZ(300px); }

/* Animation automatique */
@keyframes rotateCarousel {
    0% { transform: rotateY(0deg); }
    33% { transform: rotateY(-120deg); }
    66% { transform: rotateY(-240deg); }
    100% { transform: rotateY(-360deg); }
}

.update_profile .btn-primary {
    background-color: #11757a;
    border: none;
    padding: 10px;
}

.col-auto .btn-success {
    background-color: #fd6603;
    border: none;
}

/* TABLE */

.table-responsive thead th {
    background-color: #11757a;
    color: white;
    text-transform: uppercase;
    /* text-align: center;
    align-items: center;
    justify-content: center; */
}

/* .table-responsive tbody td {
    text-align: center;
    align-items: center;
    justify-content: center;
} */