@import '@styles/var.scss';

.device-list {
  width: 100%;
  height: 100%;
  position: relative;

  &-add-btn {
    right: 80px;
    bottom: 80px;
    width: 120px;
    height: 120px;
    display: flex;
    position: absolute;
    border-radius: 60px;
    align-items: center;
    justify-content: center;
    background-color: $bgColor;
  }

  &-select {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: rgba($color: #000, $alpha: 0.7);
    z-index: 2;

    &-modal {
      width: 400px;
      padding: 0 20px;
      border-radius: 6px;
      background-color: white;

      &-item {
        padding: 20px 0;
      }
    }
  }
}