/* CONTACTS */
.contact-box {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
}
.contact-box > a {
    color: inherit;
}
.contact-box.center-version {
    padding: 0;
}
.contact-box.center-version > a {
    display: block;
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
}
.contact-box.center-version > a img {
    width: 80px;
    height: 80px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact-box.center-version address {
    margin-bottom: 0;
}
.contact-box .contact-box-footer {
    text-align: center;
    background-color: #ffffff;
    padding: 15px 20px;
}
.contact-box  a{
    text-decoration:none !important;
}
.contact-box .img-circle{
    width: 50%;
}
.contact-box .contact-item{
    margin-top: 10px;
}

.image-container  a.image-link h6 {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 16px;
}





.contact-block {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    min-height: 150px; /* Définir une hauteur minimale pour chaque bloc */
    display: flex;
    align-items: center; /* Aligner le contenu verticalement */
    justify-content: center; /* Centrer le contenu horizontalement */
    text-align: center; /* Centrer le texte */
    flex-direction: column; /* Assurer une disposition verticale */
    margin: 10px 0;
    color: #4F4F4F;
}

.contact-block.selected {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f6f6f6;
}
.contact-block:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f6f6f6;
}

.contact-details {
    display: none;
    width: 100%;
    padding: 30px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.contact-details.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.contact-details i {
    color: #007bff;
    margin-right: 20px;
}

.contact-details h4 {
    margin-bottom: 30px;
    font-weight: bold;
    color: #4F4F4F;
}

.contact-details p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    color: #4F4F4F;
}

.contact-details a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #007bff;
}

.separator {
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}




#notificationContainer {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1050;
    max-width: 300px;
    padding: 1rem;
}

.custom-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    color: #333;
    min-width: 200px;
}

.custom-alert.custom-alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.custom-alert .close {
    cursor: pointer;
    background: none;
    border: none;
    color: #888;
    font-size: 30px;
    margin-top: -3px;
}

.custom-alert .close:hover {
    color: #000;
}

.custom-alert .title {
    font-weight: bold;
    margin-right: 1rem;
    font-size: 20px;
    padding-bottom: 20px;
    min-width: 200px;
}

.alert {
    margin-bottom: 0.5rem; /* Espace entre les alertes */
}
