.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 right;
   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-left: 15%;
   padding-right: 15%;
   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;
   left: 46%;
   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-left: 0.75rem;
   padding-right: 0.75rem;
   margin-bottom: 0;
}

.addForm h4 {
   color: #fff;
   margin-bottom: 1rem;
}

.addEventButtons {
   text-align: right;
   padding: 0 0.75rem 0 0.75rem;
}

.addEventButtons a {
   color: black;
   font-weight: 300;
}

.emptyForm {
   padding: 20px;
   padding-left: 15%;
   padding-right: 15%;
}

.emptyForm h4 {
   color: #fff;
   margin-bottom: 2rem;
}

.sidebar-wrapper {
   color: #fff;
   /*background-color: #5a649c !important;*/
   padding-top: 0;
   padding-bottom: 20px;
   font-family: 'Roboto', sans-serif;
   font-weight: 300;
   padding-left: 0;
   padding-right: 0;
}

.sidebar-title {
   padding: 50px 6% 50px 12%;
}

.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 6% 15px 12%;
}

.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;
   right: 0;
   top: 0;
   height: 100%;
   width: 60px;
   background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 100%);
}

.eventCard-mark {
   width: 8px;
   height: 8px;
   background-color: #b39ddb;
   border-radius: 100px;
   position: absolute;
   left: 50%;
   top: 45%;
}

.day-mark {
   width: 7px;
   height: 7px;
   background-color: #b39ddb;
   border-radius: 100px;
   position: absolute;
   left: 47%;
   top: 67%;
}

.content-wrapper {
   padding-top: 50px;
   padding-bottom: 50px;
   margin-left: 300px;
}

#table-body .col:hover {
   cursor: pointer;
   /*border: 1px solid grey;*/
   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;
   left: 0%;
   top: 35%;
   color: grey !important;
   z-index: 1;
}

.prev-button i {
   font-size: 4em;
   color: white;
}

.next-button {
   position: absolute;
   cursor: pointer;
   right: 0%;
   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-left: 3em;
   padding-right: 3em;
   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-left: 0;
   }
   .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-left: 5%;
      padding-right: 5%;
   }
   body .row {
      margin-bottom: 0;
   }
}

@media (max-width:450px) {
   .content-wrapper {
      padding-left: 0;
      padding-right: 0;
   }
   .content-wrapper .container {
      padding-left: 0;
      padding-right: 0;
   }
}

/* 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;
   left: 0;
   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;
   left: 0;
   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;
   left: 9px;
}


.col-seminaire:after {
   position: absolute;
   content: "";
   width: 9px;
   height: 9px;
   border-radius: 20px;
   background-color: #5d5d5d;
   top: 17px;
   left: 9px;
}

.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;
  /* font-weight: normal; */
  color: #454545;
  /* text-decoration-style: solid; */
  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: left;
   display: flex;
   align-items: center;
}

.left-dformation .location-event {
   display: flex;
   align-items: center;
}

.left-dformation i.fa-solid {
   margin-right: 5px;
}


#event-list .desc-event {
   height: 90px;
}
