#page-other-device .container--aux {
  overflow-y: auto;
  height: 100%;
  padding-bottom: 240px;
}

.other-device-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 20px;
  margin-bottom: 20px;
}

.other-device-button {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.059);
  border: none;
  padding: 15px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}

.other-device-button:hover {
  background-color: #97979775;
}

.other-device-button:active {
  transform: scale(0.99);
}



.other-device-text {
  text-align: start;
  color: white;
  font-size: 16px;
}

.other-device-icon {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
}

.other-device-others {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: white;
  box-sizing: content-box;
  margin: 0 20px;
  border: none;
  background-color: rgba(255, 255, 255, 0.059);
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}

.other-device-others:hover {
  background-color: #97979775;
}

.other-device-others:active {
  transform: scale(0.99);
}
