.formation-sidebar{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}

.formation__sidebar-block{
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(130, 169, 188, 0.08),
                0px 5px 50px 0px rgba(0, 67, 101, 0.08);
}

.formation__sidebar-title {
    background-color: #0ACEB5;
    text-align: center;
    padding: 22px 0;
    border-radius: 10px 10px 0 0;
    color: var(--Blue, #004C70);
    font-family: 'Montserrat';
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.formation__sidebar-content{
    padding: 16px 15px 24px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.formation__sidebar-content p{
    color: #000 !important;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.sidebar__session-list{
    margin: 0 !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.formation-sidebar>.formation__sidebar-primary-button,
.formation-sidebar>.formation__sidebar-border-button{
    margin: 0 15px;
}

.formation__sidebar-primary-button{
    border-radius: 7px;
    background: #004C70;
    display: flex;
    height: 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.formation__sidebar-primary-button a{
    color: #fff !important;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.formation__sidebar-border-button{
    border-radius: 7px;
    background: #fff;
    border: 1px solid #004C70;
    display: flex;
    height: 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.formation__sidebar-border-button a{
    color: #004C70 !important;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.formation__sidebar-formateur{
    display: flex;
    width: 100%;
    height: 357px;
    padding: 37px 35px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.formation__sidebar-formateur:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 76, 112, 0.00) 0%, rgba(0, 76, 112, 0.68) 82.25%);
    border-radius: 10px;
}

.sidebar__formateur-content{
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.sidebar__formateur-content>span{
    color: var(--color-white);
}

.sidebar__formateur-content>span:first-child{
    font-weight: 700;
    font-family: 'Montserrat';
}

.sidebar__psh-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar__psh-list li{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    color: #000;
    font-weight: 500;
}

@media screen and (min-width: 768px){
    .formation-sidebar{
        margin-top: 32px;
    }
}

@media screen and (min-width: 1200px){
    .formation-sidebar{
        margin-top: 50px;
    }
}