.flex_row, .C_read {
  display: flex;
  flex-flow: row nowrap;
}

.flex_col, .C_image_holder, .C_row, .C_detail, .C_main {
  display: flex;
  flex-flow: column nowrap;
}

.fill, .C_detail, .C_read, .C_main {
  width: 100%;
  height: 100%;
}

.C_main {
  padding: 0.5rem;
  overflow: hidden;
}

.C_detail {
  gap: 0.5rem;
  overflow: hidden;
  overflow-y: auto;
}

.C_row {
  justify-content: start;
  align-items: stretch;
  align-content: center;
  width: 100%;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.C_label {
  padding-bottom: 0.5rem;
  width: 30%;
  min-width: 10rem;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--color_1);
}

.C_input, .C_textarea, .C_readonly {
  padding: 0.5rem;
  padding-left: 1rem;
  color: var(--color_1);
  margin: 0;
  background-color: var(--color_3);
  width: 100%;
  border-radius: 0.5rem;
}

.C_readonly {
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
  color: var(--color_3);
  font-weight: bold;
  height: 100%;
  background-color: var(--color_3);
  cursor: not-allowed;
}

.C_save {
  width: 100%;
}

.C_textarea {
  resize: vertical;
  overflow-y: hidden;
  min-height: 4rem;
  display: flex;
  flex: 1;
}

.C_image_holder {
  width: 100%;
  justify-content: center;
  justify-items: center;
}

.C_image {
  width: 100%;
  background-color: var(--color_4);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.C_error {
  color: var(--color_error);
}

.C_required_warning {
  font-size: 0.8rem;
}
.C_required_text {
  color: var(--color_error);
}

.C_password {
  width: 100%;
}
.C_password_holder {
  width: 100%;
  position: relative;
}
.C_password_svg {
  height: 2rem;
  width: 1.5rem;
  position: absolute;
  right: 0.5rem;
  top: 0;
  fill: var(--color_1);
  cursor: pointer;
}