.ur {
  &-box {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 6px 4px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 2;
  }

  &-button {
    justify-content: center;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 12px;
    background-color: #ffffff;
    border: 0 none;
    border-radius: 4px;
    color: #333344;
    cursor: pointer;
    outline: none;

    &:hover {
      background-color: #ebeef2;
    }

    &:active {
      background-color: #DEEBFF;

      & > svg {
        fill: #1264AA;
      }
    }

    &:disabled {
      background-color: #ffffff;
      color: #7e7e92;
      cursor: not-allowed;
    }

    & > svg {
      width: 24px;
      height: 24px;
      fill: #333344;
    }
  }
}
