.dashboard-state {
  display: flex;
  flex: 1;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.dashboard-state .dashboard-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  overflow: auto;
}

.dashboard-state .dashboard-state-title {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-height: 90px;
  max-height: 128px;
  max-width: 960px;
  width: 100%;
  overflow: hidden;
}

.dashboard-state .dashboard-state-title .dashboard-account {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-bottom: 0;
  outline: none;
  cursor: pointer;
}

.dashboard-state .dashboard-state-title .dashboard-account .user-icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  min-width: 48px;
  max-height: 48px;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 48px;
  box-sizing: border-box;
  background-color: rgba(var(--background-content-accent));
  margin-top: 8px;
}

.dashboard-state .dashboard-state-title .dashboard-account .user-icon img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  min-width: 48px;
  max-height: 48px;
  min-height: 48px;
  border-radius: 48px;
  padding: 4px;
  background-color: rgba(var(--background-content-accent));
  box-sizing: border-box;
}

.dashboard-state .dashboard-state-title .dashboard-account .user-info, .dashboard-state .dashboard-state-title .dashboard-account .user-info-anonymous {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: rgba(var(--font-color));
  overflow: hidden;
  position: relative;
  height: 48px;
  flex: 1;
}

.dashboard-state .dashboard-state-title .dashboard-account .user-info-anonymous {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.dashboard-state .dashboard-state-title .dashboard-account .user-info .user-info-name {
  font-size: 14pt;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 8px;
}

.dashboard-state .dashboard-state-tile-wrapper {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 960px;
}

.dashboard-state .dashboard-state-tile-wrapper .dashboard-state-tile-content {
  display: flex;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.dashboard-state .dashboard-state-policy-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
  box-sizing: border-box;
}

.dashboard-state .dashboard-state-policy-wrapper button {
  margin: 4px;
}

/* XS Devices */

@media(max-width: 599px) {
  .dashboard-state .dashboard-state-tile-wrapper .dashboard-state-tile-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .dashboard-state .dashboard-state-title>span {
    font-size: 1.21em;
  }
}