.event_schedule_area {
  .ev-schedule {
    ul {
      li {
        padding-right: 16px;
        .nav-link {
          font-size: 16px;
          font-weight: 600;
          padding: 10px 30px;
          border: 1px solid #e7e7e7;
          border-radius: 4px;
          color: $color__body;
          background: none;
          &.active {
            background-color: #fd035a;
            border: 1px solid transparent;
            color: $color__background-body;
          }
        }
      }
    }
    .tab-content {
      .single-eve-session {
        background-color: $color__background-body;
        position: relative;
        z-index: 5;
        .speaker-info {
          position: relative;
          @media (min-width: 992px) {
            &::before {
              content: "";
              position: absolute;
              height: 100%;
              background-color: #e3e3e3;
              width: 1px;
              right: 0;
              top: 0;
            }
          }
          .name {
            font-size: 17px;
          }
        }
        &:hover {
          box-shadow: 5px 25px 80px -10px rgb(0 108 236 / 12%);
        }
      }
    }
  }
}