.qrTimeout {
  opacity: 0.04;
}

.fields {
  margin: 20px 15px;

  .field {
    display: flex;
    margin-bottom: 10px;

    .caption {
      margin-right: 5px;
      font-weight: 500;
    }

    .value {
      &.status-value {
        display: flex;

        span:first-child {
          margin-right: 5px;
        }
      }
    }
  }
}

.reload {
  cursor: pointer;

  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-sizing: initial;
  width: 140px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  padding: 0 30px;

  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--inverse);
  text-align: center;
  text-transform: uppercase;

  background-color: #5fb9b0;
  border-radius: 50%;
}

.bg-reload {
  background-color: #b95f5f;
}

.qrCode {
  position: relative;

  overflow: hidden;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;

  width: 264px;
  height: 264px;
  margin-left: 60px;

  img {
    width: 100%;
  }
}

.instruction {
  flex: none;
  max-width: 556px;
}

.connect-panel {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  margin-left: 15px;
}

.select-parent {
  display: flex;
  align-items: center;

  .caption {
    margin-right: 10px;
  }
}

.warning-message {
  display: inline-flex;

  margin: 20px 15px;
  padding: 25px;

  background-color: #fff9cb;
  border: 1px solid #9e5f00;

  .icon {
    margin-right: 10px;
  }

  .message {
    padding-top: 5px;
    font-weight: 500;
    color: #9e5f00;
  }
}
