.bb-booking-check-in-status {
  display: block;

  &__button-split {
    &--primary {
      width: calc(100% - 26px);
    }

    &--dropdown {
      // setting the width here for calc above on primary button
      width: 26px;
    }
  }

  &__select-wrapper {
    @include styled-dropdown;
  }

  &__select {
    border-color: $bb-studio-light-gray;
    background-color: transparent;

    &--default {
      color: grey;
    }

    &:disabled {
      background-color: $bb-studio-solitude-gray;
      color: $studio-raven-pale-gray;
    }
  }
}