/** Components **/
.header {
  width: 70%;
  height: 48px;
  margin-bottom: 12px;
}

.sub-header {
  width: 80%;
  height: 16px;
}

.text-area {
  width: 100%;
  height: 112px;
}

.input {
  height: 56px;
  width: 100%;
}

.control-group {
  height: 250px;
  width: 100%;
}

.button {
  height: 60px;
  width: 70%;
}

/** Skeleton Loader **/
.skeleton-loader {
  display: inline-block;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-color: rgba(221, 219, 221, 0.1);
  /* softer base */
}

.skeleton-loader::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg,
      rgba(221, 219, 221, 0) 0%,
      rgba(221, 219, 221, 0.08) 20%,
      rgba(221, 219, 221, 0.08) 60%,
      rgba(221, 219, 221, 0) 100%);
  animation: shimmer 0.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/** Utils **/
.flex-center-column {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
