.contact-bar {
    width: 50px;
    height: 100px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow);
    position: fixed;
    top: calc(50vh - 50px);
    right: 2px;
    z-index: 1;
}

.contact-bar__image-container {
    position: relative;
    display: block;
}

.contact-bar__image-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid var(--grey-700);
    clip-path: inset(15% 0% 0% 20%);
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 0.5s ease;
}

.contact-bar__image-container:hover::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.contact-bar__image {
    width: 27px;
}

@media (min-width: 1024px) {
    .contact-bar {
        display: flex;
    }
}

.sidebar {
    width: 35px;
    height: 8vh;
    background-color: var(--yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 2px;
    top: 15%;
    z-index: +1;
}

.half-circle i {
    font-size: 16px;
    color: var(--black);
    margin: 0 5px;
    transform: rotate(-180deg);
    /* Remet les icônes à l'endroit */
}

.fa-circle-user::before,
.fa-user-circle::before {
    content: "\f2bd";
    position: fixed;
    top: 19%;
    left: 89%;
    font-size: 11px;
}


/* Style de l'icône */
.icon-container i {
    font-size: 14px;
    color: var(--black);
    cursor: pointer;
}

/*  Cacher sur Desktop  */
@media (min-width: 769px) {
    .icon-container {
        display: none;
    }
}

/*  Afficher sur mobile et tablette */
@media (max-width: 768px) {
    .icon-container {
        width: 54px;
        height: 50px;
        background-color: var(--yellow);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 1px;
        top: 22%;
        z-index: +1;
        display: flex;
    }

    .sidebar {
        display: none;
    }
}