.button_choose_option{
  width: 100%;
  z-index: 2;

  .button--choose-options {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--color-brand-nae-300);
    color: var(--color-text);
    font-size: var(--text-base);
    cursor: pointer;
    transition: all 200ms ease-in-out;
    &:hover{
      background-color: var(--color-brand-nae-300);
      color: var(--color-brand-nae-100);
    }
    &:active,
    &:focus{
      background-color: var(--color-brand-nae-400) !important;
      color: var(--color-brand-nae-100) !important;
    }
  }
}