.calendar-wrapper {
    height: auto;
    max-width: 460px;
    border-radius: 20px;
 }
 
 .calendar-header {
    height: 100%;
    padding: 20px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    position: relative;
    border-radius: 20px 20px 0px 0px;
 }
 
 .header-title {
   width: 100%;
 }
 
 .header-background, .ui-datepicker .ui-datepicker-header {
    height: 100px;
    background-position: center left; /* right -> left */
    background-size: cover;
    background-color: #cb033d;
    border-radius: 20px 20px 0px 0px;
 }
 
 .header-text, .ui-datepicker-title {
    width: 100%;
    text-align: center;
    top: 19px;
    position: relative;
    font-size: 27px;
    font-weight: 700;
    z-index: 0;
 }
 
 .calendar-content {
    background-color: #fff;
    padding: 20px;
    padding-right: 15%; /* left -> right */
    padding-left: 15%; /* right -> left */
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;
    border: 2px solid #cb033d;
 }
 
 .event-mark {
    width: 5px;
    height: 5px;
    background-color: teal;
    border-radius: 100px;
    position: absolute;
    right: 46%; /* left -> right */
    top: 70%;
 }
 
 .calendar-footer {
    height: 200px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    text-align: center;
    background-color: #4b6289 !important;
    position: relative;
    overflow: hidden;
 }
 
 .addForm {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    background-color: #4b5889 !important;
    transition: top 0.5s cubic-bezier(1, 0, 0, 1);
    padding: 0 5px 0 5px;
 }
 
 .addForm input {
    color: #fff;
 }
 
 .addForm .row {
    padding-right: 0.75rem; /* left -> right */
    padding-left: 0.75rem; /* right -> left */
    margin-bottom: 0;
 }
 
 .addForm h4 {
    color: #fff;
    margin-bottom: 1rem;
 }
 
 .addEventButtons {
    text-align: left; /* right -> left */
    padding: 0 0.75rem 0 0.75rem;
 }
 
 .addEventButtons a {
    color: black;
    font-weight: 300;
 }
 
 .emptyForm {
    padding: 20px;
    padding-right: 15%; /* left -> right */
    padding-left: 15%; /* right -> left */
 }
 
 .emptyForm h4 {
    color: #fff;
    margin-bottom: 2rem;
 }
 
 .sidebar-wrapper {
    color: #fff;
    padding-top: 0;
    padding-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    padding-right: 0; /* left -> right */
    padding-left: 0; /* right -> left */
 }
 
 .sidebar-title {
    padding: 50px 12% 50px 6%; /* left -> right */
 }
 
 .sidebar-title h4 {
    margin-top: 0;
 }
 
 .sidebar-events {
    overflow-x: hidden;
    overflow-y: hidden;
    margin-bottom: 70px;
 }
 
 .empty-message {
    font-size: 1.2rem;
    padding: 15px 12% 15px 6%; /* left -> right */
 }
 
 .eventCard {
    background-color: #fff;
    color: black;
    padding: 12px 24px 12px 24px;
    border-bottom: 1px solid #E5E5E5;
    white-space: nowrap;
    position: relative;
    animation: slideInDown 0.5s;
 }
 
 .eventCard-header {
    font-weight: bold;
 }
 
 .eventCard-description {
    color: grey;
 }
 
 .eventCard-mark-wrapper {
    position: absolute;
    left: 0; /* right -> left */
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 100%); /* right -> left */
 }
 
 .eventCard-mark {
    width: 8px;
    height: 8px;
    background-color: #b39ddb;
    border-radius: 100px;
    position: absolute;
    right: 50%; /* left -> right */
    top: 45%;
 }
 
 .day-mark {
    width: 7px;
    height: 7px;
    background-color: #b39ddb;
    border-radius: 100px;
    position: absolute;
    right: 47%; /* left -> right */
    top: 67%;
 }
 
 .content-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-right: 300px; /* left -> right */
 }
 
 #table-body .col:hover {
    cursor: pointer;
    background-color: #E0E0E0;
 }
 
 .empty-day:hover {
    cursor: default !important;
    background-color: #fff !important;
 }
 
 #table-body .row .col {
    padding: .75rem;
 }
 
 #table-body .col {
    border: 1px solid transparent;
 }
 
 #table-body {}
 
 #table-body .row {
    margin-bottom: 0;
 }
 
 #table-body .col {
    padding-top: 1.3rem !important;
    padding-bottom: 1.3rem !important;
 }
 
 #calendar-table {
    text-align: center;
 }
 
 .prev-button {
    position: absolute;
    cursor: pointer;
    right: 0%; /* left -> right */
    top: 35%;
    color: grey !important;
    z-index: 1;
 }
 
 .prev-button i {
    font-size: 4em;
    color: white;
 }
 
 .next-button {
    position: absolute;
    cursor: pointer;
    left: 0%; /* right -> left */
    top: 35%;
    color: grey !important;
    z-index: 1;
 }
 
 .next-button i {
    font-size: 4em;
    color: white;
 }
 
 .addEvent {
    box-shadow: 0 5px 15px rgb(57, 168, 228);
    background-color: #39a8e4;
    padding: 10px;
    padding-right: 3em; /* left -> right */
    padding-left: 3em; /* right -> left */
    cursor: pointer;
    border-radius: 25px;
    color: #fff !important;
    background-image: linear-gradient(135deg, #8d8dd4, #45ced4);
 }
 
 .addEvent:hover {
    transition: box-shadow 0.5s;
    box-shadow: 0 4px 25px rgb(57, 168, 228);
 }
 
 .mobile-header {
    padding: 0;
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    z-index: 99;
    width: 100%;
    background-color: #5a649c !important;
 }
 
 .mobile-header a i {
    color: #fff;
    font-size: 38px;
 }
 
 .mobile-header h4 {
    color: #fff;
 }
 
 .mobile-header .row {
    margin-bottom: 0;
 }
 
 .mobile-header h4 {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
 }
 
 .lighten-cepex {
    background-color: #cb033dba !important;
 }
 
 @media (max-width:992px) {
    .content-wrapper {
       margin-right: 0; /* left -> right */
    }
    .mobile-header {
       display: block;
    }
    .calendar-wrapper {
       margin-top: 17px;
    }
    .sidebar-wrapper {
       background-color: #EEEEEE !important;
    }
    .sidebar-title {
       background-color: #5A649C !important;
    }
    .empty-message {
       color: black;
    }
 }
 
 @media (max-width:767px) {
    .event {
       align-items: center;
       margin-top: 15px;
    }
    .content-wrapper .container {
       width: auto;
    }
    .calendar-content {
       padding-right: 5%; /* left -> right */
       padding-left: 5%; /* right -> left */
    }
    body .row {
       margin-bottom: 0;
    }
 }
 
 @media (max-width:450px) {
    .content-wrapper {
       padding-right: 0; /* left -> right */
       padding-left: 0; /* right -> left */
    }
    .content-wrapper .container {
       padding-right: 0; /* left -> right */
       padding-left: 0; /* right -> left */
    }
 }
 
 /* event */
 
 .events img {
    width: 100%;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
 }
 
 .titre-formation {
    background-color: #cb033d;
    color: white;
    padding: 5px 10px;
    width: 150px;
    text-align: center;
    border-radius: 15px;
 }
 
 .event {
    display: flex;
 }
 
 .date-event {
    padding: 5px 20px;
    width: 150px;
    text-align: center;
 }
 
 .desc-event {
    width: 100%;
    height: 83px !important;
    overflow: hidden;
    padding: 10px;
 }
 
 .titre-seminaire {
    background-color: #5d5d5d;
    color: white;
    padding: 5px 10px;
    width: 150px;
    text-align: center;
    border-radius: 15px;
 }
 
 .formation:after {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background-color: #cb033d;
    content: "";
    position: absolute;
    right: 0; /* left -> right */
    top: 5px;
 }
 
 .formation {
    height: 30px;
    position: relative;
    color: #cb033d;
    font-weight: 500;
    padding: 0px 15px;
 }
 
 .seminaire:after {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background-color: #5d5d5d;
    content: "";
    position: absolute;
    right: 0; /* left -> right */
    top: 5px;
 }
 
 .seminaire {
    height: 30px;
    position: relative;
    color: #5d5d5d;
    font-weight: 500;
    padding: 0px 15px;
 }
 
 .col-formation:after {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 20px;
    background-color: #cb033d;
    top: 17px;
    right: 9px; /* left -> right */
 }
 
 .col-seminaire:after {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 20px;
    background-color: #5d5d5d;
    top: 17px;
    right: 9px; /* left -> right */
 }
 
 .calendar-wrapper {
    width: 100%;
    margin: 30px auto;
    margin-bottom: 40px;
 }
 
 tr.fc-list-heading, td.fc-list-item-time, td.fc-list-item-marker {
   display: none;
 }
 
 div.calendar_list .fc-toolbar.fc-header-toolbar {
   opacity: 0;
 }
 
 .col-seminaire {
   position: relative;
 }
 
 .col-formation {
   position: relative;
 }
 
 .ui-datepicker-buttonpane.ui-widget-content {
   display: none;
 }
 
 .ui-datepicker-inline.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
   height: 100%;
   width: 100%;
 }
 
 .ui-datepicker .ui-datepicker-title {
   color: white;
   margin: 0;
   line-height: 1.8em;
   text-align: center;
 }
 
 .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
   opacity: .7;
   filter: Alpha(Opacity = 70);
   font-weight: bold;
 }
 
 .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
   border: 0;
   background: #fff;
   color: #454545;
   font-size: 15px;
   font-weight: bold;
 }
 
 .ui-datepicker td span, .ui-datepicker td a {
   display: block;
   padding: .2em;
   text-align: center;
   text-decoration: none;
 }
 
 #datepicker .ui-widget-content a:hover {
   color: initial;
 }
 
 #datepicker > div > table > thead {
   border-bottom: 1px solid;
 }
 
 .ui-datepicker table {
   width: -webkit-fill-available;
   font-size: .9em;
   border-collapse: collapse;
   margin: 10px 40px 10px 40px;
 }
 
 .left-dformation .date-event {
    width: 100%;
    padding: unset;
    text-align: right; /* left -> right */
    display: flex;
    align-items: center;
 }
 
 .left-dformation .location-event {
    display: flex;
    align-items: center;
 }
 
 .left-dformation i.fa-solid {
    margin-left: 5px; /* right -> left */
 }
 
 #event-list .desc-event {
    height: 90px;
 }