/* -----------------------------------------------
Micro Tour
----------------------------------------------- */

.b-micro-tour {
  padding: 1rem 1.5rem 1rem 1.25rem !important;
  &.hide-xs {
    @media screen and (max-width: 576px) {
      display: none;
    }
  }
  &.hide-sm {
    @media screen and (max-width: 768px) {
      display: none;
    }
  }
  &.hide-md {
    @media screen and (max-width: 992px) {
      display: none;
    }
  }
  &.hide-lg {
    @media screen and (max-width: 1140px) {
      display: none;
    }
  }
}

.b-micro-tour-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 0.5rem 0 0;
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.6;
  background: none;
  border: none;
  transition: opacity 0.3s ease-in-out;
  outline: none;
  &:hover {
    opacity: 1;
  }
}
