.ca-country-selector-panel {
  z-index: 106;

  @include bp(laptop) {
    display: block;
  }

  &__header {
    display: none;

    @include bp(laptop) {
      display: block;
    }
  }

  &__description {
    span {
      text-decoration: underline;
    }
  }

  &__opt {
    display: flex;
  }

  &__choice {
    $elem: &;

    height: rem-calc(60px);
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 $px24;
    border-bottom: $border-light;
    font-size: $font-size-m;

    &--chosen {
      background-color: $c-lightest-gray;
      font-weight: $font-weight-bold;
      cursor: not-allowed;
    }
    
    &--disabled {
      color: $c-text-secondary;
      pointer-events: none;

      &#{$elem}--sku {
        pointer-events: none;
        cursor: initial;
      }
    }
  }

  &__flag {
    margin-right: $px12;
  }
  
  &__currency {
    margin-left: $px8;
    font-size: $font-size-xs;
  }
}
