.boast-display {
  border: 1px solid black;
  background-color: #EFEFEF;

  .cards {
    display: flex;
    overflow: hidden;
    transition: .5s;
    width: 100%;

    .boast-card {
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      left: 0;
      position: relative;
      height: 100%;
      transition: .5s;
      width: 100%;

      div {
        padding: 10px;
        width: 100%;

        .name {
          color: #666;
          margin-bottom: 0;
          text-align: right;
        }
      }
    }
  }

  .selectors {
    align-items: center;
    display: flex;
    height: 20px;
    justify-content: center;
    width: 100%;

    .selector {
      background-color: rgba(0, 0, 0, .2);
      cursor: pointer;
      height: 3px;
      margin: 0 10px;
      width: 30px;

      &.active {
        background-color: rgba(0, 0, 0, .5);
      }

      &::before {
        bottom: 9px;
        height: 20px;
        display: inline-block;
        width: 100%;
        position: relative;
        content: "";
      }
    }
  }
}
