/* event vertical css code below */
.tm-sc-tribe-events {
  &.tm-sc-tribe-events-list-vertical {
    .event {
      display: flex;
      @include transition(all .3s ease-in-out);
      .event-left {
        .event-date {
          background: #fff;
          border: 1px solid rgba(200,200,200,0.3);
          border-radius: 10px;
          margin-right: 20px;
          padding: 20px 30px;
          text-align: center;
          @include box-shadow( 0px 0px 22px 0px rgba(5, 5, 5, 0.07) );
          @include transition(all .3s ease-in-out);
          .day {
            color: $headings-color;
            font-size: 26px;
            line-height: 1.1;
            display: block;
            @include transition(all .3s ease-in-out);
          }
          .month {
            font-size: 15px;
            line-height: 1.1;
            display: block;
            @include transition(all .3s ease-in-out);
          }
          .year {
            display: none;
          }
        }
        &.has-bg-theme-colored:not(.left-block-bordered) {
          .event-date {
            color: #fff;
          }
        }
        .event-thumb {
          overflow: hidden;
          border-radius: 10px;
          margin-right: 20px;
          @include box-shadow( 0px 0px 22px 0px rgba(5, 5, 5, 0.07) );
          @include transition(all .3s ease-in-out);
          img {
            max-width: 100%;
          }
        }
      }
      .event-content {
        margin-right: auto;
        .event-title {
          margin-top: 0;
          margin-bottom: 0;
        }
        .event-meta {
          font-size: 14px;
          color: #888;
          .each-meta {
            display: inline-block;
            margin-right: 10px;
            i {
              margin-right: 5px;
            }
          }
        }
      }
    }
  }
  &.tm-sc-tribe-events-list-vertical-slide { 
    .bx-wrapper {
      margin-bottom: 0;
      padding: 0;
      box-shadow: none;
      border: none;
      background: transparent;
    }

    /* bx top nav style */
    &.has-nav-arrow {
      .media {
        margin-top: 0;
      }
      .bx-controls {
        .bx-controls-direction {
          > a {
            background: #eee none repeat scroll 0 0;
            border: 1px solid #eee;
            height: auto;
            line-height: 28px;
            padding: 5px 12px 3px;
            width: auto;
            text-indent: 0;
            top: -50px;
            z-index: 0;
            @include transition(all 0.2s ease);
            i {
              color: #888;
              font-size: 24px;
            }
            &:hover {
              background: #999;
              i {
                color: #fff;
              }
            }
          }
        }
      }

      &.nav-arrow-position-bottom {
        .bx-controls {
          .bx-controls-direction {
            text-align: right;
            > a {
              position: relative;
            }
            .bx-prev {
              right: auto;
              left: auto;
              top: auto;
              margin-right: 4px;
            }
            .bx-next {
              right: auto;
              left: auto;
              top: auto;
            }
          }
        }
      }

      &.nav-arrow-position-top {
        .bx-controls {
          .bx-controls-direction {
            > a {
              background: #eee none repeat scroll 0 0;
              border: 1px solid #eee;
              height: auto;
              line-height: 28px;
              padding: 0 12px;
              width: auto;
              text-indent: 0;
              top: -50px;
              z-index: 0;
              @include transition(all 0.2s ease);
              i {
                color: #888;
                font-size: 24px;
                padding: 3px;
              }
              &:hover {
                background: #999;
                i {
                  color: #fff;
                }
              }
            }
            .bx-prev {
              right: 44px;
              left: auto;
            }
            .bx-next {
              right: 0;
              left: auto;
            }
          }
        }
      }
    }
  }
}