/* -----------------------------------------------
Tour
----------------------------------------------- */

.b-tour-body {
  display: flex;
  align-items: center;
  @media only screen and (max-width: 720px) {
    flex-direction: column;
  }
}

.b-tour-content {
  width: 40%;
  padding-right: 1rem;
  &.no-media {
    width: 100%;
    padding: 2rem;
  }
  @media only screen and (max-width: 720px) {
    width: 100%;
  }
}

.b-tour-media {
  width: 60%;
  img {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  @media only screen and (max-width: 720px) {
    width: 100%;
  }
}

.b-tour-nav-button {
  display: flex;
  min-width: 4rem;
  background: none;
  padding: 0.375rem 0;
  border: 1px solid transparent;
}

.b-tour-nav-button-prev {
  justify-content: flex-start;
}

.b-tour-nav-button-next {
  justify-content: flex-end;
}

.b-tour-done-button {
  min-width: 4rem;
}

.b-tour-nav-dot {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  background: #eee;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  margin: 0.25rem;
  transition: background-color ease-in-out 0.3s;
  &.active {
    background: #00abf7;
  }
}
