/*
Agenda component
*/

/**SECTION AGENDA**/
.section-events-agenda {
   padding-top: 120px;
   padding-bottom: 140px;
}

.mb-0 {
   margin-bottom: 0px;
}

.section-events-agenda.grey {
   background: #F7F7F9;
}

.section-events-agenda .row-intro {
   padding-bottom: 80px;
}

.section-events-agenda .row-intro h2.general-title {
   margin-bottom: 40px;
}

.section-events-agenda .row-intro p.text {
   max-width: 1170px;
   margin: 0 auto;
}

/*Style default*/
.agenda-wrapper.default {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.agenda-wrapper .agenda-item {
   display: flex;
   padding: 40px 48px;
   align-items: flex-start;
   gap: 44px;
   border-radius: 6px;
   background: #FFF;
   border: 1px solid #DDD;
}

.agenda-wrapper .agenda-item.padding-bigger {
   padding: 44px 48px;
   border: 0px solid #DDD;
   box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.agenda-wrapper .agenda-time-details {
   min-width: 190px;
}

.agenda-wrapper .agenda-time-details p.time {
   color: #096BE1;
   font-size: 22px;
   font-weight: 700;
   line-height: 132%;
   margin-bottom: 0px;
}

.agenda-wrapper .agenda-time-details p.time.date-available {
   margin-bottom: 27px;
}

.agenda-wrapper .agenda-time-details p.date {
   color: #096BE1;
   font-size: 18px;
   font-weight: 600;
   line-height: 140%;
   padding-top: 16px;
   max-width: 150px;
   border-top: 1px solid #D1D1D1;
}

.agenda-wrapper .agenda-main-details p.title {
   font-size: 22px;
   font-weight: 600;
   line-height: 34px;
   margin-bottom: 0px;
}

.agenda-wrapper .agenda-main-details p.title.description-available {
   margin-bottom: 20px;
}

.agenda-wrapper .agenda-main-details p.text {
   font-size: 16px;
   line-height: 26px;
   color: #323232;
}

.agenda-wrapper .agenda-speaker-detais {
   min-width: 250px;
}

.agenda-wrapper .agenda-speaker-detais p.title {
   font-size: 22px;
   font-weight: 600;
   line-height: 36px;
   margin-bottom: 20px;
}

.agenda-wrapper .agenda-speaker-detais .dt-img {
   max-width: 48px;
   min-width: 48px;
}

.agenda-wrapper .agenda-speaker-detais .author-item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-top: 12px;
}

.agenda-wrapper .agenda-speaker-detais .author-item .dt-image-cover {
   border-radius: 50%;
}

.agenda-wrapper .agenda-speaker-detais .author-item p.text {
   font-size: 16px;
   font-weight: 700;
   line-height: 140%;
}

.agenda-wrapper .agenda-speaker-detais .author-item p.speaker-bio {
   color: #323232;
   font-size: 14px;
   font-weight: 400;
   line-height: 20px;
}

@media (max-width: 1100px) {
   .agenda-wrapper.default .agenda-item {
      flex-direction: column;
   }

   .agenda-wrapper.default .agenda-time-details p.date {
      padding-top: 9px;
      max-width: 100%;
   }
}

@media (max-width: 991px) {
   .section-events-agenda {
      padding-top: 80px;
      padding-bottom: 80px;
   }

   .section-events-agenda .row-intro {
      padding-bottom: 60px;
   }
}

@media (max-width: 768px) {
   .section-events-agenda {
      padding-top: 60px;
      padding-bottom: 60px;
   }

   .section-events-agenda .row-intro h2.general-title {
      margin-bottom: 20px;
   }

   .section-events-agenda .row-intro {
      padding-bottom: 40px;
   }

}

@media (max-width: 575px) {
   .agenda-wrapper.default .agenda-item {
      padding: 30px;
      gap: 15px;
   }

   .agenda-wrapper.default .agenda-time-details p.time {
      font-size: 18px;
      margin-bottom: 15px;
   }

   .agenda-wrapper.default .agenda-main-details p.title {
      font-size: 18px;
      line-height: 28px;
      margin-bottom: 5px;
   }

   .agenda-wrapper.default .agenda-speaker-detais p.title {
      font-size: 18px;
      line-height: 32px;
      margin-bottom: 5px;
   }

   .agenda-wrapper.default .agenda-speaker-detais .author-item p.text {
      font-size: 16px;
   }
}

/*Agenda side by side*/
.agenda-wrapper.side-by-side {
   --gap: 32px;
   --columns: 4;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: var(--gap);
}

.agenda-wrapper.side-by-side.three {
   --columns: 3;
}

.agenda-wrapper.side-by-side.two,
.agenda-wrapper.side-by-side.one {
   --columns: 2;
}

.agenda-wrapper.side-by-side .agenda-item {
   flex-direction: column;
   padding: 20px;
   gap: 15px;
}

.agenda-wrapper.side-by-side .agenda-item {
   width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}

.agenda-wrapper.side-by-side .agenda-time-details p.time {
   font-size: 16px;
   line-height: 24px;
   margin-bottom: 10px;
}

.agenda-wrapper.side-by-side .agenda-time-details p.date {
   font-size: 14px;
   line-height: 24px;
   max-width: 100%;
   padding-top: 10px;
}

.agenda-wrapper.side-by-side .agenda-main-details p.title {
   font-size: 16px;
   line-height: 24px;
   margin-bottom: 5px;
}

.agenda-wrapper.side-by-side .agenda-main-details p.text {
   font-size: 14px;
   line-height: 24px;
}

.agenda-wrapper.side-by-side .agenda-speaker-detais p.title {
   font-size: 18px;
   line-height: 32px;
   margin-bottom: 5px;
}

.agenda-wrapper.side-by-side .agenda-speaker-detais .author-item p.text {
   font-size: 16px;
}

.agenda-wrapper.side-by-side .agenda-speaker-detais .dt-img {
   max-width: 40px;
   min-width: 40px;
}

.agenda-wrapper.side-by-side .agenda-speaker-detais p.title {
   font-size: 16px;
   line-height: 24px;
}

@media (max-width: 1330px) {

   .agenda-wrapper.side-by-side,
   .agenda-wrapper.side-by-side.two,
   .agenda-wrapper.side-by-side.three,
   .agenda-wrapper.side-by-side.one {
      --gap: 22px;
      --columns: 2;
   }
}

@media (max-width: 768px) {

   .agenda-wrapper.side-by-side,
   .agenda-wrapper.side-by-side.two,
   .agenda-wrapper.side-by-side.three,
   .agenda-wrapper.side-by-side.one {
      --gap: 22px;
      --columns: 1;
   }
}

/*Agenda table*/
.agenda-wrapper.table th {
   text-align: left;
   background: black;
   color: white;
   border: 1px solid white;
   padding: 10px;
}

.agenda-wrapper.table th.time,
.agenda-wrapper.table th.date,
.agenda-wrapper.table th.title,
.agenda-wrapper.table th.speakers {
   width: 200px;
   min-width: 200px;
}

.agenda-wrapper.table td {
   padding: 10px;
   background: #FFF;
   color: #000;
   vertical-align: baseline;
}

.agenda-wrapper.table tbody tr:nth-child(even) td {
   background: #f1f1f1;
}

@media (max-width: 991px) {
   .agenda-wrapper.table {
      overflow-x: scroll;
   }

   .agenda-wrapper.table th.time,
   .agenda-wrapper.table th.date,
   .agenda-wrapper.table th.title,
   .agenda-wrapper.table th.speakers {
      width: 150px;
      min-width: 150px;
   }

   .agenda-wrapper.table th.text {
      width: 300px;
      min-width: 300px;
   }
}