.braink-core-nav-button {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: solid 1px #27272B;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  cursor: pointer;
}
.braink-core-nav-button:focus, .braink-core-nav-button:hover {
  outline: none;
}
.braink-core-nav-button svg {
  pointer-events: none;
}

@media (min-width: 1024px) and (min-height: 600px) {
  .braink-core-nav-button {
    width: 4vw;
    height: 4vw;
    padding: 1vw;
    border-radius: 1vw;
  }
  .braink-core-nav-button svg {
    width: 1.3vw;
    height: auto;
  }
}