:root {
  --main_color: #4484c1;
  --main_color_lighter: #589cdc;
  --main_color_lighter1: #6daeeb;
  --main_color_lighter2: #89c5fd;
  --main_color_lighter3: #afd8ff;
  --main_color_lighter4: #c5e3ff;
  --main_color_lighter5: #deefff;
  --main_color_lighter6: #f4faff;
  --main_color_darker: #2f70ad;
  --main_color_darker1: #1e5c96;
  --secondary_color: #eeb600;
  --secondary_color_lighter: #ffc70f;
  --secondary_color_lighter1: #ffce30;
  --secondary_color_lighter2: #ffd95f;
  --secondary_color_lighter3: #ffe182;
  --secondary_color_lighter4: #ffecaf;
  --secondary_color_lighter5: #fff6d8;
  --secondary_color_lighter6: #fffbf0;
  --secondary_color_darker: #bf9200;
  --secondary_color_darker1: #8d6c00;
  --bg_color: #f5fafd;
  --bg_color_lighter: #F0F0F0;
  --bg_color_lighter1: #fbfdff;
  --bg_color_darker: #f3f8fc;
  --bg_color_darker1: #edf3f9;
  --bg_color_darker2: #e8eef4;
  --bg_color_darker3: #cfdde3;
  --border_color: #e5e5e5;
  --border_color_lighter: #f0f0f0;
  --border_color_lighter1: #f4f4f4;
  --border_color_lighter2: #f6f6f6;
  --border_color_lighter3: #fafafa;
  --border_color_lighter4: #fcfcfc;
  --border_color_darker: #ddd;
  --green_color: #13972f;
  --green_color_lighter: #42be5d;
  --green_color_lighter1: #72e58b;
  --green_color_lighter2: #a4fbb7;
  --green_color_lighter3: #d2ffdb;
  --green_color_darker: #006716;
  --green_color_darker1: #00470f;
  --blue_color: #0a7be6;
  --blue_color_lighter: #54acff;
  --warning_color: #d4792f;
  --warning_color_lighter1: #e38c45;
  --warning_color_lighter2: #d4792f90;
  --dark_red: #b93333;
  --light_red: #e44040;
  --light_red_1: #f65f5f;
  --light_red_2: #ffa0a0;
  --light_red_3: #ffcfcf;
  --light_red_4: #ffeaea;
  --text_color: #444;
  --text_color_lighter1: #666;
  --text_color_lighter2: #888;
  --text_color_lighter3: #ababab;
  --text_color_lighter4: #ccc;
  --scrollbar-width: calc(100vw - 100%);
  --orange_color: rgba(255, 115, 0, 1) !important;
  --green_color: rgba(0, 197, 62, 1) !important;
  --blue_color: rgba(0, 137, 242, 1) !important;
  --violet_color: rgba(225, 0, 232, 1) !important;
  --red_color: rgb(248, 80, 80) !important;
}

* {
  box-sizing: border-box;
  outline: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* font-family: 'Barlow', Segoe UI, Geneva, Verdana, Tahoma, sans-serif; */
  font-family: "Inter", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 100%;
  line-height: 1.8;
  color: var(--text_color);
  transition: 0.1s;
  scroll-behavior: smooth;
  /* scrollbar-gutter: stable; */
}

body {
  background-color: #F6F6F6;
}

hr {
  width: 100%;
  height: 0.0313rem;
  margin: 8px auto 8px auto;
  background-color: var(--border_color_lighter);
  border: none;
}

.close_btn_popup {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  padding: 1px;
  background: var(--green_color);
  border-radius: 50%;
  cursor: pointer;
  z-index: 21;
}
.close_btn_popup svg {
  width: 100%;
  fill: #eee;
}
.close_btn_popup:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}
.close_btn_popup:hover svg {
  fill: #fff;
}
.close_btn_popup.red {
  background: var(--dark_red);
  border-color: var(--dark_red);
}
.close_btn_popup.white {
  background: #fff;
  /* box-shadow: -0px 8px 10px rgba(0, 0, 0, .05); */
}
.close_btn_popup.white svg {
  fill: #bbb;
}
.close_btn_popup.white:hover {
  background: var(--main_color);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}
.close_btn_popup.white:hover svg {
  fill: #fff;
}
.close_btn_popup.action_popup {
  top: 2px;
  right: 2px;
  width: 30px;
  padding: 0px;
}

.display_block {
  display: block;
}

.text_center {
  text-align: center;
}

.display_grid {
  display: grid;
  gap: 1rem;
}
.display_grid.auto1 {
  grid-template-columns: auto;
}
.display_grid.auto2 {
  grid-template-columns: auto auto;
}
.display_grid.auto3 {
  grid-template-columns: auto auto auto;
}
.display_grid.auto4 {
  grid-template-columns: auto auto auto auto;
}
.display_grid.auto5 {
  grid-template-columns: auto auto auto auto auto;
}
.display_grid.auto6 {
  grid-template-columns: auto auto auto auto auto auto;
}
.display_grid.auto7 {
  grid-template-columns: auto auto auto auto auto auto auto;
}
.display_grid.auto8 {
  grid-template-columns: auto auto auto auto auto auto auto auto;
}
.display_grid.c1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.display_grid.c2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.display_grid.c3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.display_grid.c4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.display_grid.c5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.display_grid.c6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.display_grid.c7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.display_grid.c8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.display_grid.auto_auto {
  grid-template-columns: auto auto;
}
.display_grid.auto_auto_auto {
  grid-template-columns: auto auto auto;
}
.display_grid.auto_auto_auto_auto {
  grid-template-columns: auto auto auto auto;
}
.display_grid.auto_auto_auto_auto_auto {
  grid-template-columns: auto auto auto auto auto;
}

.display_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.display_flex.text_align_left {
  text-align: left;
}
.display_flex.text_align_right {
  text-align: right;
}
.display_flex.top_right {
  justify-content: right;
}
.display_flex.center_top {
  justify-content: center;
  align-items: start;
}
.display_flex.center_center {
  justify-content: center;
}
.display_flex.center_bottom {
  justify-content: center;
  align-items: bottom;
}
.display_flex.left_top {
  justify-content: left;
  align-items: start;
}
.display_flex.left_center {
  justify-content: left;
}
.display_flex.left_bottom {
  justify-content: left;
  align-items: bottom;
}
.display_flex.right_top {
  justify-content: right;
  align-items: start;
}
.display_flex.right_center {
  justify-content: right;
}
.display_flex.right_bottom {
  justify-content: right;
  align-items: end;
}

.gap0 {
  gap: 0;
}

.gap01 {
  gap: 0.1rem;
}

.gap02 {
  gap: 0.2rem;
}

.gap03 {
  gap: 0.3rem;
}

.gap04 {
  gap: 0.4rem;
}

.gap05 {
  gap: 0.5rem;
}

.gap06 {
  gap: 0.6rem;
}

.gap07 {
  gap: 0.7rem;
}

.gap08 {
  gap: 0.8rem;
}

.gap1 {
  gap: 1rem;
}

.gap15 {
  gap: 1.5rem;
}

.gap2 {
  gap: 2rem;
}

.gap25 {
  gap: 2.5rem;
}

.gap3 {
  gap: 3rem;
}

.gap35 {
  gap: 3.5rem;
}

.gap4 {
  gap: 4rem;
}

.gap45 {
  gap: 4.5rem;
}

.gap5 {
  gap: 5rem;
}

.column_gap0 {
  grid-column-gap: 0;
}

.column_gap01 {
  grid-column-gap: 0.1rem;
}

.column_gap02 {
  grid-column-gap: 0.2rem;
}

.column_gap03 {
  grid-column-gap: 0.3rem;
}

.column_gap04 {
  grid-column-gap: 0.4rem;
}

.column_gap05 {
  grid-column-gap: 0.5rem;
}

.column_gap06 {
  grid-column-gap: 0.6rem;
}

.column_gap07 {
  grid-column-gap: 0.7rem;
}

.column_gap08 {
  grid-column-gap: 0.8rem;
}

.column_gap1 {
  grid-column-gap: 1rem;
}

.column_gap15 {
  grid-column-gap: 1.5rem;
}

.column_gap2 {
  grid-column-gap: 2rem;
}

.column_gap25 {
  grid-column-gap: 2.5rem;
}

.column_gap3 {
  grid-column-gap: 3rem;
}

.column_gap35 {
  grid-column-gap: 3.5rem;
}

.column_gap4 {
  grid-column-gap: 4rem;
}

.column_gap45 {
  grid-column-gap: 4.5rem;
}

.column_gap5 {
  grid-column-gap: 5rem;
}

.row_gap0 {
  grid-row-gap: 0;
}

.row_gap01 {
  grid-row-gap: 0.1rem;
}

.row_gap02 {
  grid-row-gap: 0.2rem;
}

.row_gap03 {
  grid-row-gap: 0.3rem;
}

.row_gap04 {
  grid-row-gap: 0.4rem;
}

.row_gap05 {
  grid-row-gap: 0.5rem;
}

.row_gap06 {
  grid-row-gap: 0.6rem;
}

.row_gap07 {
  grid-row-gap: 0.7rem;
}

.row_gap08 {
  grid-row-gap: 0.8rem;
}

.row_gap1 {
  grid-row-gap: 1rem;
}

.row_gap15 {
  grid-row-gap: 1.5rem;
}

.row_gap2 {
  grid-row-gap: 2rem;
}

.row_gap25 {
  grid-row-gap: 2.5rem;
}

.row_gap3 {
  grid-row-gap: 3rem;
}

.row_gap35 {
  grid-row-gap: 3.5rem;
}

.row_gap4 {
  grid-row-gap: 4rem;
}

.row_gap45 {
  grid-row-gap: 4.5rem;
}

.row_gap5 {
  grid-row-gap: 5rem;
}

.text_non_wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.limit_lines {
  flex-shrink: 0;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.limit_lines.l1 {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.limit_lines.l2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.limit_lines.l3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.limit_lines.l4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.limit_lines.l5 {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
.limit_lines.l6 {
  -webkit-line-clamp: 6;
  line-clamp: 6;
}

form {
  margin-block-end: 0;
}

.form_input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--border_color);
  border-radius: 10px;
  font-size: 16px;
}
.form_input:focus-within {
  border-color: var(--main_color_lighter3);
}
.form_input.select {
  width: 100%;
  padding: 14px 15px;
}
.form_input.date_picker {
  width: 50px;
  height: 45px;
  padding: 2px 15px;
  border: 1px solid var(--border_color);
  border-radius: 8px;
  cursor: pointer;
}
.form_input.date_picker:hover {
  background: var(--main_color_lighter4);
  border-color: var(--main_color_lighter4);
  color: #ffffff;
}
.form_input.submit {
  margin: 20px 0 0 0;
  text-transform: capitalize;
  cursor: pointer;
}
.form_input.submit:hover {
  background: var(--main_color);
  border-color: var(--main_color);
  color: #ffffff;
}

.one_checkbox_section {
  overflow: hidden;
  margin: 0 0 16px 0;
  padding: 14px 15px;
  background: #fefefe;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 16px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 1.5625rem auto;
}
.one_checkbox_section:hover {
  background: var(--main_color_lighter6);
  border: 0.0625rem solid var(--main_color_lighter5);
}
.one_checkbox_section input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0 !important;
}
.one_checkbox_section label {
  font-size: 16px;
  text-align: left;
}
.one_checkbox_section input, .one_checkbox_section label {
  cursor: pointer;
}

.table_section {
  position: relative;
  overflow-y: hidden;
  width: 100%;
  padding: 0 0 0.375rem 0;
  border: 0.0625rem solid var(--bg_color_darker1);
  border-radius: 0.9375rem;
}
.table_section.pages {
  background: #fff;
}
.table_section.margin_top {
  margin: 30px 0 0 0;
}
.table_section::-webkit-scrollbar {
  height: 0.3125rem;
}
.table_section::-webkit-scrollbar-track {
  background: transparent;
}
.table_section::-webkit-scrollbar-thumb {
  background: #eee;
}

.table_designed, .userselect {
  position: relative;
  width: 100%;
  min-width: 56.25rem;
  border-collapse: collapse;
}
.table_designed th, .table_designed td, .userselect th, .userselect td {
  font-size: 0.875rem;
  line-height: 1.3;
}
.table_designed th, .userselect th {
  padding: 12px 9.6px 6.4px 9.6px;
  background: var(--main_color_lighter6);
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 3px solid var(--bg_color_darker1);
}
.table_designed td, .userselect td {
  padding: 0.5rem 0.6rem 0.4rem 0.6rem;
}
.table_designed tr:hover, .userselect tr:hover {
  background: var(--secondary_color_lighter6);
}
.table_designed tr:nth-child(odd), .userselect tr:nth-child(odd) {
  background: var(--bg_color_lighter1);
}
.table_designed tr:nth-child(odd):hover, .userselect tr:nth-child(odd):hover {
  background: var(--secondary_color_lighter6);
}
.table_designed tr:not(:last-child), .userselect tr:not(:last-child) {
  border-bottom: 1px solid var(--bg_color_darker1);
}
.table_designed .center, .userselect .center {
  text-align: center;
}
.table_designed .no_padding_left, .userselect .no_padding_left {
  padding: 0.5rem 0.6rem 0.4rem 0;
}
.table_designed .photo, .userselect .photo {
  padding: 0.1rem 0.1rem 0.1rem 0.6rem;
  cursor: pointer;
}
.table_designed .photo img, .userselect .photo img {
  width: 2.5rem;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.1875rem;
}
.table_designed .photo.logo img, .userselect .photo.logo img {
  width: 25px;
  height: 1.5625rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.table_designed .photo.square img, .userselect .photo.square img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.table_designed .photo.circle img, .userselect .photo.circle img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.table_designed .numbering, .userselect .numbering {
  padding: 0.625rem 0.625rem 0.5rem 0.4rem;
  color: #aaa;
}
.table_designed .bold, .userselect .bold {
  font-weight: 600;
}
.table_designed .type_category, .userselect .type_category {
  font-weight: 600;
}
.table_designed .type_category.done, .table_designed .type_category.active, .table_designed .type_category.direct, .table_designed .type_category.regular, .table_designed .type_category.admin, .table_designed .type_category.processed, .userselect .type_category.done, .userselect .type_category.active, .userselect .type_category.direct, .userselect .type_category.regular, .userselect .type_category.admin, .userselect .type_category.processed {
  color: var(--green_color);
}
.table_designed .type_category.ongoing, .table_designed .type_category.inactive, .table_designed .type_category.recurring, .table_designed .type_category.subscribed, .table_designed .type_category.agent, .table_designed .type_category.archived, .userselect .type_category.ongoing, .userselect .type_category.inactive, .userselect .type_category.recurring, .userselect .type_category.subscribed, .userselect .type_category.agent, .userselect .type_category.archived {
  color: var(--blue_color);
}
.table_designed .type_category.pending, .table_designed .type_category.upcoming, .table_designed .type_category.promised, .table_designed .type_category.preventive, .table_designed .type_category.editor, .table_designed .type_category.prepaid, .userselect .type_category.pending, .userselect .type_category.upcoming, .userselect .type_category.promised, .userselect .type_category.preventive, .userselect .type_category.editor, .userselect .type_category.prepaid {
  color: var(--orange_color);
}
.table_designed .type_category.canceled, .table_designed .type_category.emergency, .table_designed .type_category.partner, .userselect .type_category.canceled, .userselect .type_category.emergency, .userselect .type_category.partner {
  color: var(--violet_color);
}
.table_designed .type_category.canceled, .table_designed .type_category.deleted, .userselect .type_category.canceled, .userselect .type_category.deleted {
  color: var(--red_color);
}
.table_designed .status_normal, .userselect .status_normal {
  font-weight: 300;
}
.table_designed .status_italic, .userselect .status_italic {
  font-style: italic;
  font-weight: 300;
}
.table_designed .status_triage, .userselect .status_triage {
  font-weight: 600;
  color: var(--blue_color);
}
.table_designed .pointer, .userselect .pointer {
  cursor: pointer;
}
.table_designed .with_filter, .userselect .with_filter {
  position: relative;
}
.table_designed .with_filter .filter_dropdown_icon, .userselect .with_filter .filter_dropdown_icon {
  float: right;
  margin: -2px 0 0 0;
  cursor: pointer;
}
.table_designed .with_filter .filter_dropdown_icon:hover svg, .userselect .with_filter .filter_dropdown_icon:hover svg {
  fill: var(--main_color);
}
.table_designed .with_filter .filter_dropdown_icon svg, .userselect .with_filter .filter_dropdown_icon svg {
  width: 20px;
  fill: #888; /*transform: rotate(90deg);*/
}
.table_designed .empty_table_value, .userselect .empty_table_value {
  font-size: 13px;
  font-style: italic;
  color: #888;
}
.table_designed .cta_link, .userselect .cta_link {
  font-weight: 600;
  text-align: center;
}
.table_designed .cta_link:hover, .userselect .cta_link:hover {
  color: var(--main_color);
  text-decoration: underline;
}
.table_designed .cta_link a, .userselect .cta_link a {
  color: var(--main_color);
  cursor: pointer;
}
.table_designed .cta_dots, .userselect .cta_dots {
  position: relative;
  padding: 0 0.3rem;
  cursor: pointer;
}
.table_designed .cta_dots:hover .wrapper_cta_dots div, .userselect .cta_dots:hover .wrapper_cta_dots div {
  background: var(--main_color);
}
.table_designed .status_visit .one_visit_status, .userselect .status_visit .one_visit_status {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
  background: #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
}
.table_designed .status_visit .one_visit_status.done, .userselect .status_visit .one_visit_status.done {
  background: var(--main_color);
}
.table_designed .status_visit .one_visit_status.done .wrapper_one_visit_status, .userselect .status_visit .one_visit_status.done .wrapper_one_visit_status {
  color: var(--secondary_color_lighter4);
}
.table_designed .status_visit .one_visit_status .wrapper_one_visit_status, .userselect .status_visit .one_visit_status .wrapper_one_visit_status {
  font-size: 10px;
  color: var(--text_color_lighter3);
}

.userselect {
  min-width: 35rem;
  border: 1px solid var(--border_color_darker) !important;
}
.userselect tr {
  border: none !important;
}
.userselect th, .userselect td {
  padding: 4px 5px 4px 5px !important;
  border: none !important;
}
.userselect th {
  border-bottom: 3px solid var(--main_color_lighter5) !important;
}

.popup_filter_div {
  position: absolute;
  display: none;
  right: 6px;
  padding: 8px 10px;
  width: 200px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.popup_filter_div .one_filter {
  padding: 4px 0;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  grid-template-columns: 20px auto;
}
.popup_filter_div .one_filter:hover .icon svg {
  width: 100%;
  fill: var(--secondary_color);
}
.popup_filter_div .one_filter:hover .text {
  color: var(--secondary_color);
}
.popup_filter_div .one_filter .icon svg {
  width: 100%;
  fill: #666;
}

.wrapper_cta_dots {
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.wrapper_cta_dots > *:not(:last-child) {
  margin: 0 0 0.3125rem 0;
}
.wrapper_cta_dots div {
  position: relative;
  width: 0.3125rem;
  height: 0.3125rem;
  background: #ccc;
  border-radius: 50%;
  z-index: 1;
}

.cta_td {
  position: relative;
  padding: 0.5rem 0.4rem 0.4rem 1rem;
  /* z-index: 11; */
}

.cta_popup_container {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
  /* top: -0.375rem; */
  /* left: 0.3125rem; */
  width: 12rem !important;
  padding: 0.375rem;
  background: #fff;
  border: 1px solid var(--bg_color_darker2);
  border-radius: 15px;
  box-shadow: 0px 0.625rem 0.625rem rgba(0, 0, 0, 0.1);
  z-index: 8;
}
.cta_popup_container hr {
  margin: 5px 0 !important;
}
.cta_popup_container:hover {
  opacity: 1;
}
.cta_popup_container.other_pages {
  position: absolute;
  visibility: visible;
  opacity: 1;
  display: none;
}
.cta_popup_container.left_facing {
  top: 0.5rem;
  left: unset;
  right: 0.2rem !important;
}
.cta_popup_container .one_action_cta {
  padding: 0.4rem 0.625rem 0.4rem 0.375rem;
  border-radius: 10px;
  cursor: pointer;
  gap: 0.5rem;
  grid-template-columns: 1.5rem auto;
  z-index: 11;
}
.cta_popup_container .one_action_cta:hover {
  background: #f5f5f5;
}
.cta_popup_container .one_action_cta .icon_cta svg {
  width: 100%;
  fill: #bbb;
}
.cta_popup_container .one_action_cta .icon_cta.green svg {
  fill: var(--green_color);
}
.cta_popup_container .one_action_cta .icon_cta.blue svg {
  fill: var(--blue_color);
}
.cta_popup_container .one_action_cta .icon_cta.orange svg {
  fill: var(--orange_color);
}
.cta_popup_container .one_action_cta .icon_cta.violet svg {
  fill: var(--violet_color);
}
.cta_popup_container .one_action_cta .icon_cta.red svg {
  fill: var(--red_color);
}

.container_custom {
  height: 100% !important;
  padding: 0 15px 200px 15px;
}
.container_custom .logo_auth {
  padding: 20px 0 0 0;
}
.container_custom .logo_auth img {
  display: block;
  width: 100px;
  margin: auto;
}
.container_custom .title_auth {
  padding: 10px 0 10px 0;
  text-align: center;
}
.container_custom .title_auth h1 {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 35px;
  color: var(--main_color);
}
.container_custom .output_auth {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 20px auto;
  padding: 15px 20px 15px 30px;
  background-color: #fff;
  border: 1px solid var(--border_color);
  border-radius: 18px;
  font-size: 18px;
  line-height: 1.4;
}
.container_custom .output_auth.error_auth {
  max-width: 700px;
  padding: 15px 20px;
  background: var(--light_red);
  text-align: center;
  color: #fff;
}
.container_custom .output_auth .log li {
  font-size: 16px;
}
.container_custom.auth .container {
  width: 100%;
}
.container_custom.auth .container .tceformbox {
  max-width: 700px;
  margin: auto;
  padding: 26px 30px 20px 30px;
  background-color: #fff;
  border: 1px solid var(--border_color_lighter);
  border-radius: 20px;
}
.container_custom.auth .container .tceformbox .row {
  clear: none;
  margin: auto;
  padding: 6px 0;
}
.container_custom.auth .container .tceformbox .row span {
  display: block;
  width: 100%;
}
.container_custom.auth .container .tceformbox .row .label, .container_custom.auth .container .tceformbox .row .formw {
  float: none;
  text-align: left;
}
.container_custom.auth .container .tceformbox .row .label {
  padding: 5px 5px 5px 8px;
  font-weight: 600;
}
.container_custom.pages .wrapper_custom {
  max-width: 1500px;
  margin: auto;
  padding: 0 0 120px 0;
}
.container_custom.pages .wrapper_custom .header {
  overflow: auto;
  position: sticky;
  top: 0;
  height: 60px;
  padding: 0 15px;
  background-color: #fff;
  border-bottom: 1px solid var(--border_color_lighter);
  z-index: 5;
}
.container_custom.pages .wrapper_custom .header .left {
  width: 125px;
  height: 40px;
  margin: 10px 0 0 0;
  padding: 0;
  background-color: transparent;
  background-image: url(../../custom/media/images/logos/logo_eESAS.webp);
  background-size: contain;
  border: 0px none;
}
.container_custom.pages .wrapper_custom .header .right {
  margin: 14px 0 0 0;
  width: 250px;
  background-color: transparent;
}
.container_custom.pages .wrapper_custom .header .right a {
  color: var(--main_color_darker);
}
.container_custom.pages .wrapper_custom .header .right .timerlabel {
  text-transform: capitalize;
  font-size: 100%;
  color: var(--main_color_darker);
}
.container_custom.pages .wrapper_custom .header .right input {
  width: 180px;
  background-color: transparent;
  color: var(--main_color_darker);
}
.container_custom.pages .wrapper_custom .scrollmenu {
  position: sticky;
  top: 10px;
  float: none;
  height: auto;
  margin: -50px auto 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  color: #FFAA00;
  font-size: 75%;
  font-weight: bold;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
}
.container_custom.pages .wrapper_custom .scrollmenu .menu {
  width: -moz-fit-content;
  width: fit-content;
}
.container_custom.pages .wrapper_custom .scrollmenu .menu li {
  float: none;
  display: inline-block;
  height: 100%;
  line-height: normal;
}
.container_custom.pages .wrapper_custom .scrollmenu .menu li:hover {
  background-color: var(--secondary_color_lighter5);
}
.container_custom.pages .wrapper_custom .scrollmenu .menu li:hover ul {
  overflow: hidden;
  width: 180px;
}
.container_custom.pages .wrapper_custom .scrollmenu .menu li ul {
  margin: 40px 0 0 0;
  background-color: #fff;
}
.container_custom.pages .wrapper_custom .scrollmenu .menu li ul li {
  margin-bottom: -1px;
  background-color: #fff;
}
.container_custom.pages .wrapper_custom .scrollmenu .menu li ul li a {
  padding: 10px 10px;
  border-color: var(--main_color_lighter5);
  line-height: 1.2;
}
.container_custom.pages .wrapper_custom .scrollmenu .menu li ul li .active {
  padding: 10px 10px;
  background-color: var(--main_color_lighter6);
  border: 1px solid var(--main_color_lighter5) !important;
  line-height: 1.3;
}
.container_custom.pages .wrapper_custom .scrollmenu .menu li a {
  padding: 16px 10px;
  border-color: transparent;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: var(--text_color);
  text-decoration: none;
}
.container_custom.pages .wrapper_custom .scrollmenu .menu li .active {
  padding: 13px 10px;
  border-color: transparent;
  border-bottom: 4px solid var(--main_color_lighter);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
  color: var(--main_color_darker);
  cursor: pointer;
}
.container_custom.pages .wrapper_custom .body {
  margin: 20px 0 0 0;
  clear: none;
  width: 100%;
}
.container_custom.pages .wrapper_custom .body .content {
  float: none;
  width: 100%;
  padding: 0;
  text-align: none;
}
.container_custom.pages .wrapper_custom .body .content h1 {
  width: 100%;
  margin: 0;
  padding: 16px 0 20px 0;
  text-align: center;
  text-transform: capitalize;
  color: var(--main_color);
}
.container_custom.pages .wrapper_custom .body .content #form_testselect {
  padding: 26px 20px 40px 20px;
  background-color: #fff;
  border-color: var(--border_color_lighter);
  border-radius: 14px;
}
.container_custom.pages .wrapper_custom .body .content #form_testselect hr {
  margin: 10px 0;
}
.container_custom.pages .wrapper_custom .body .content #form_testselect .row, .container_custom.pages .wrapper_custom .body .content #form_testselect .container {
  max-width: 850px;
  margin: auto;
  padding: 10px 0 15px 0;
}
.container_custom.pages .wrapper_custom .body .content #form_testselect .row .formw, .container_custom.pages .wrapper_custom .body .content #form_testselect .container .formw {
  float: none;
  display: block;
  width: 100%;
}
.container_custom.pages .wrapper_custom .body .content #form_testselect .row .formw #searchterms, .container_custom.pages .wrapper_custom .body .content #form_testselect .container .formw #searchterms {
  min-width: 300px;
  padding: 9px 10px;
  border: 1px solid var(--border_color);
  border-radius: 10px;
}
.container_custom.pages .wrapper_custom .body .content #form_testselect .row .formw #searchterms:focus-within, .container_custom.pages .wrapper_custom .body .content #form_testselect .container .formw #searchterms:focus-within {
  border-color: var(--main_color_lighter3);
}
.container_custom.pages .wrapper_custom .body .content .container {
  width: 100%;
  padding: 0;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox,
.container_custom.pages .wrapper_custom .body .content .container .contentbox {
  padding: 26px 20px 40px 20px;
  background-color: #fff;
  border-color: var(--border_color_lighter);
  border-radius: 14px;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox .row.full_width,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox .row.full_width,
.container_custom.pages .wrapper_custom .body .content .container .contentbox .row.full_width {
  display: flex;
  justify-content: space-around;
  max-width: 100% !important;
  padding: 30px 0 0 0 !important;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox .row.full_width .xmlbutton,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox .row.full_width .xmlbutton,
.container_custom.pages .wrapper_custom .body .content .container .contentbox .row.full_width .xmlbutton {
  width: auto !important;
  font-size: 13px !important;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_login,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_login,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_login {
  margin: auto;
  max-width: 500px;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_login .row,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_login .row,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_login .row {
  clear: none;
  margin: auto;
  padding: 6px 0;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_login .row span,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_login .row span,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_login .row span {
  display: block;
  width: 100%;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_login .row .label, .container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_login .row .formw,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_login .row .label,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_login .row .formw,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_login .row .label,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_login .row .formw {
  float: none;
  text-align: left;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_login .row .label,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_login .row .label,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_login .row .label {
  padding: 5px 5px 5px 8px;
  font-weight: 600;
  text-transform: capitalize;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox .no_login_registration_link,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox .no_login_registration_link,
.container_custom.pages .wrapper_custom .body .content .container .contentbox .no_login_registration_link {
  display: block;
  margin: 20px 0 0 0;
  font-weight: 600;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor {
  max-width: 850px;
  margin: auto;
  padding: 10px 0 15px 0;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset {
  border: 1px solid var(--border_color);
  border-radius: 10px;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #test_description,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #sslcerts,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #test_repeatable,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #tsubset_type,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #tsubset_difficulty, .container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #test_description,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #sslcerts,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #test_repeatable,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #tsubset_type,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #tsubset_difficulty,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #test_description,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #sslcerts,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #test_repeatable,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #tsubset_type,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #tsubset_difficulty,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #test_description,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #sslcerts,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #test_repeatable,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #tsubset_type,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #tsubset_difficulty,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #test_description,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #sslcerts,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #test_repeatable,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #tsubset_type,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #tsubset_difficulty,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #test_description,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #sslcerts,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #test_repeatable,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #tsubset_type,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #tsubset_difficulty {
  padding: 10px 15px;
  border: 1px solid var(--border_color);
  border-radius: 10px;
  font-size: 16px;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #test_description:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #sslcerts:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #test_repeatable:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #tsubset_type:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #tsubset_difficulty:focus-within, .container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #test_description:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #sslcerts:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #test_repeatable:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #tsubset_type:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #tsubset_difficulty:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #test_description:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #sslcerts:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #test_repeatable:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #tsubset_type:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #tsubset_difficulty:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #test_description:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #sslcerts:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #test_repeatable:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #tsubset_type:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #tsubset_difficulty:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #test_description:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #sslcerts:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #test_repeatable:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #tsubset_type:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #tsubset_difficulty:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #test_description:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #sslcerts:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #test_repeatable:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #tsubset_type:focus-within,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #tsubset_difficulty:focus-within {
  border-color: var(--main_color_lighter3);
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row input[type=checkbox], .container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw input[type=checkbox],
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row input[type=checkbox],
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw input[type=checkbox],
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row input[type=checkbox],
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
  vertical-align: -5px;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #select_questions_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #select_questions_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #select_answers_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .row #select_answers_order_mode #test_answers_order_mode, .container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #select_questions_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #select_questions_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #select_answers_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #select_answers_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #select_questions_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #select_questions_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #select_answers_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .row #select_answers_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #select_questions_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #select_questions_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #select_answers_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #select_answers_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #select_questions_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #select_questions_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #select_answers_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .row #select_answers_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #select_questions_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #select_questions_order_mode #test_answers_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #select_answers_order_mode #test_questions_order_mode,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #select_answers_order_mode #test_answers_order_mode {
  padding: 8px 15px;
  border: 1px solid var(--border_color);
  border-radius: 8px;
}
.container_custom.pages .wrapper_custom .body .content .container .tceformbox #form_testeditor fieldset .formw #sslcerts,
.container_custom.pages .wrapper_custom .body .content .container .tcecontentbox #form_testeditor fieldset .formw #sslcerts,
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_testeditor fieldset .formw #sslcerts {
  width: 100%;
  height: 60px;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager fieldset {
  border: 1px solid var(--border_color);
  border-radius: 10px;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager div {
  margin: auto;
  max-width: 850px;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager #newdirname {
  padding: 8px 10px;
  border: 1px solid var(--border_color_darker);
  border-radius: 8px;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager #newdirname:focus-within {
  border-color: var(--main_color_lighter3);
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager {
  width: 100%;
  margin: 30px 0 0 0;
  padding: 0px 0px 0px 0px;
  background-color: #fff;
  border: 1px solid var(--border_color);
  border-collapse: collapse;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager th {
  background-color: var(--main_color_lighter6) !important;
  border-bottom: 3px solid var(--main_color_lighter5) !important;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager tr, .container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager th, .container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager td {
  border: 1px solid var(--border_color);
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager tr {
  background: #fff !important;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager tr:hover {
  background: var(--secondary_color_lighter6) !important;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager tr:nth-child(odd) {
  background: var(--main_color_lighter6) !important;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager tr:nth-child(odd):hover {
  background: var(--secondary_color_lighter6) !important;
}
.container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager th, .container_custom.pages .wrapper_custom .body .content .container .contentbox #form_filemanager .filemanager td {
  padding: 5px 15px;
}

.pagehelp, .message {
  box-sizing: border-box;
  width: 100%;
  margin: 20px 0 0 0 !important;
  padding: 10px 15px !important;
  background-color: var(--main_color_lighter5) !important;
  border: 1px solid var(--main_color_lighter5) !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  line-height: 1.4;
  color: var(--text_color);
}

.message {
  margin: 0 0 15px 0 !important;
  background-color: var(--green_color_lighter3) !important;
}

#form_usereditor .row, #form_usereditor .rowl,
#form_groupeditor .row,
#form_groupeditor .rowl,
#form_userselect .row,
#form_userselect .rowl,
#userselect .row,
#userselect .rowl,
#form_importusers .row,
#form_importusers .rowl,
#form_moduleeditor .row,
#form_moduleeditor .rowl,
#form_subjecteditor .row,
#form_subjecteditor .rowl,
#form_selectquestions .row,
#form_selectquestions .rowl,
#form_importquestions .row,
#form_importquestions .rowl,
#form_importsslcert .row,
#form_importsslcert .rowl,
#form_omrimport .row,
#form_omrimport .rowl,
#form_ratingeditor .row,
#form_ratingeditor .rowl,
#form_resultallusers .row,
#form_resultallusers .rowl,
#form_questioneditor .row,
#form_questioneditor .rowl,
#form_answereditor .row,
#form_answereditor .rowl,
#form_testeditor .row,
#form_testeditor .rowl {
  overflow: auto;
  max-width: 850px;
  margin: auto;
  padding: 10px 0 15px 0;
}
#form_usereditor .row hr, #form_usereditor .rowl hr,
#form_groupeditor .row hr,
#form_groupeditor .rowl hr,
#form_userselect .row hr,
#form_userselect .rowl hr,
#userselect .row hr,
#userselect .rowl hr,
#form_importusers .row hr,
#form_importusers .rowl hr,
#form_moduleeditor .row hr,
#form_moduleeditor .rowl hr,
#form_subjecteditor .row hr,
#form_subjecteditor .rowl hr,
#form_selectquestions .row hr,
#form_selectquestions .rowl hr,
#form_importquestions .row hr,
#form_importquestions .rowl hr,
#form_importsslcert .row hr,
#form_importsslcert .rowl hr,
#form_omrimport .row hr,
#form_omrimport .rowl hr,
#form_ratingeditor .row hr,
#form_ratingeditor .rowl hr,
#form_resultallusers .row hr,
#form_resultallusers .rowl hr,
#form_questioneditor .row hr,
#form_questioneditor .rowl hr,
#form_answereditor .row hr,
#form_answereditor .rowl hr,
#form_testeditor .row hr,
#form_testeditor .rowl hr {
  margin: 5px auto 0 auto;
}
#form_usereditor .row .label, #form_usereditor .rowl .label,
#form_groupeditor .row .label,
#form_groupeditor .rowl .label,
#form_userselect .row .label,
#form_userselect .rowl .label,
#userselect .row .label,
#userselect .rowl .label,
#form_importusers .row .label,
#form_importusers .rowl .label,
#form_moduleeditor .row .label,
#form_moduleeditor .rowl .label,
#form_subjecteditor .row .label,
#form_subjecteditor .rowl .label,
#form_selectquestions .row .label,
#form_selectquestions .rowl .label,
#form_importquestions .row .label,
#form_importquestions .rowl .label,
#form_importsslcert .row .label,
#form_importsslcert .rowl .label,
#form_omrimport .row .label,
#form_omrimport .rowl .label,
#form_ratingeditor .row .label,
#form_ratingeditor .rowl .label,
#form_resultallusers .row .label,
#form_resultallusers .rowl .label,
#form_questioneditor .row .label,
#form_questioneditor .rowl .label,
#form_answereditor .row .label,
#form_answereditor .rowl .label,
#form_testeditor .row .label,
#form_testeditor .rowl .label {
  padding: 0 10px 0 0;
}
#form_usereditor .row .label::after, #form_usereditor .rowl .label::after,
#form_groupeditor .row .label::after,
#form_groupeditor .rowl .label::after,
#form_userselect .row .label::after,
#form_userselect .rowl .label::after,
#userselect .row .label::after,
#userselect .rowl .label::after,
#form_importusers .row .label::after,
#form_importusers .rowl .label::after,
#form_moduleeditor .row .label::after,
#form_moduleeditor .rowl .label::after,
#form_subjecteditor .row .label::after,
#form_subjecteditor .rowl .label::after,
#form_selectquestions .row .label::after,
#form_selectquestions .rowl .label::after,
#form_importquestions .row .label::after,
#form_importquestions .rowl .label::after,
#form_importsslcert .row .label::after,
#form_importsslcert .rowl .label::after,
#form_omrimport .row .label::after,
#form_omrimport .rowl .label::after,
#form_ratingeditor .row .label::after,
#form_ratingeditor .rowl .label::after,
#form_resultallusers .row .label::after,
#form_resultallusers .rowl .label::after,
#form_questioneditor .row .label::after,
#form_questioneditor .rowl .label::after,
#form_answereditor .row .label::after,
#form_answereditor .rowl .label::after,
#form_testeditor .row .label::after,
#form_testeditor .rowl .label::after {
  content: ":";
}
#form_usereditor .row .confirmation_checkbox input[type=checkbox], #form_usereditor .rowl .confirmation_checkbox input[type=checkbox],
#form_groupeditor .row .confirmation_checkbox input[type=checkbox],
#form_groupeditor .rowl .confirmation_checkbox input[type=checkbox],
#form_userselect .row .confirmation_checkbox input[type=checkbox],
#form_userselect .rowl .confirmation_checkbox input[type=checkbox],
#userselect .row .confirmation_checkbox input[type=checkbox],
#userselect .rowl .confirmation_checkbox input[type=checkbox],
#form_importusers .row .confirmation_checkbox input[type=checkbox],
#form_importusers .rowl .confirmation_checkbox input[type=checkbox],
#form_moduleeditor .row .confirmation_checkbox input[type=checkbox],
#form_moduleeditor .rowl .confirmation_checkbox input[type=checkbox],
#form_subjecteditor .row .confirmation_checkbox input[type=checkbox],
#form_subjecteditor .rowl .confirmation_checkbox input[type=checkbox],
#form_selectquestions .row .confirmation_checkbox input[type=checkbox],
#form_selectquestions .rowl .confirmation_checkbox input[type=checkbox],
#form_importquestions .row .confirmation_checkbox input[type=checkbox],
#form_importquestions .rowl .confirmation_checkbox input[type=checkbox],
#form_importsslcert .row .confirmation_checkbox input[type=checkbox],
#form_importsslcert .rowl .confirmation_checkbox input[type=checkbox],
#form_omrimport .row .confirmation_checkbox input[type=checkbox],
#form_omrimport .rowl .confirmation_checkbox input[type=checkbox],
#form_ratingeditor .row .confirmation_checkbox input[type=checkbox],
#form_ratingeditor .rowl .confirmation_checkbox input[type=checkbox],
#form_resultallusers .row .confirmation_checkbox input[type=checkbox],
#form_resultallusers .rowl .confirmation_checkbox input[type=checkbox],
#form_questioneditor .row .confirmation_checkbox input[type=checkbox],
#form_questioneditor .rowl .confirmation_checkbox input[type=checkbox],
#form_answereditor .row .confirmation_checkbox input[type=checkbox],
#form_answereditor .rowl .confirmation_checkbox input[type=checkbox],
#form_testeditor .row .confirmation_checkbox input[type=checkbox],
#form_testeditor .rowl .confirmation_checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
  vertical-align: -5px;
}
#form_usereditor .row #user_id,
#form_usereditor .row #user_level,
#form_usereditor .row #DISABLED_user_regdate,
#form_usereditor .row #DISABLED_user_ip,
#form_usereditor .row #test_id,
#form_usereditor .row #startdate,
#form_usereditor .row #enddate,
#form_usereditor .row #module_id,
#form_usereditor .row #module_user_id,
#form_usereditor .row #subject_module_id,
#form_usereditor .row #subject_id,
#form_usereditor .row #question_subject_id,
#form_usereditor .row #question_id,
#form_usereditor .row #ssl_id,
#form_usereditor .row #question_difficulty,
#form_usereditor .row #question_position,
#form_usereditor .row #answer_question_id,
#form_usereditor .row #answer_id,
#form_usereditor .row #answer_position,
#form_usereditor .row #answer_keyboard_key, #form_usereditor .rowl #user_id,
#form_usereditor .rowl #user_level,
#form_usereditor .rowl #DISABLED_user_regdate,
#form_usereditor .rowl #DISABLED_user_ip,
#form_usereditor .rowl #test_id,
#form_usereditor .rowl #startdate,
#form_usereditor .rowl #enddate,
#form_usereditor .rowl #module_id,
#form_usereditor .rowl #module_user_id,
#form_usereditor .rowl #subject_module_id,
#form_usereditor .rowl #subject_id,
#form_usereditor .rowl #question_subject_id,
#form_usereditor .rowl #question_id,
#form_usereditor .rowl #ssl_id,
#form_usereditor .rowl #question_difficulty,
#form_usereditor .rowl #question_position,
#form_usereditor .rowl #answer_question_id,
#form_usereditor .rowl #answer_id,
#form_usereditor .rowl #answer_position,
#form_usereditor .rowl #answer_keyboard_key,
#form_groupeditor .row #user_id,
#form_groupeditor .row #user_level,
#form_groupeditor .row #DISABLED_user_regdate,
#form_groupeditor .row #DISABLED_user_ip,
#form_groupeditor .row #test_id,
#form_groupeditor .row #startdate,
#form_groupeditor .row #enddate,
#form_groupeditor .row #module_id,
#form_groupeditor .row #module_user_id,
#form_groupeditor .row #subject_module_id,
#form_groupeditor .row #subject_id,
#form_groupeditor .row #question_subject_id,
#form_groupeditor .row #question_id,
#form_groupeditor .row #ssl_id,
#form_groupeditor .row #question_difficulty,
#form_groupeditor .row #question_position,
#form_groupeditor .row #answer_question_id,
#form_groupeditor .row #answer_id,
#form_groupeditor .row #answer_position,
#form_groupeditor .row #answer_keyboard_key,
#form_groupeditor .rowl #user_id,
#form_groupeditor .rowl #user_level,
#form_groupeditor .rowl #DISABLED_user_regdate,
#form_groupeditor .rowl #DISABLED_user_ip,
#form_groupeditor .rowl #test_id,
#form_groupeditor .rowl #startdate,
#form_groupeditor .rowl #enddate,
#form_groupeditor .rowl #module_id,
#form_groupeditor .rowl #module_user_id,
#form_groupeditor .rowl #subject_module_id,
#form_groupeditor .rowl #subject_id,
#form_groupeditor .rowl #question_subject_id,
#form_groupeditor .rowl #question_id,
#form_groupeditor .rowl #ssl_id,
#form_groupeditor .rowl #question_difficulty,
#form_groupeditor .rowl #question_position,
#form_groupeditor .rowl #answer_question_id,
#form_groupeditor .rowl #answer_id,
#form_groupeditor .rowl #answer_position,
#form_groupeditor .rowl #answer_keyboard_key,
#form_userselect .row #user_id,
#form_userselect .row #user_level,
#form_userselect .row #DISABLED_user_regdate,
#form_userselect .row #DISABLED_user_ip,
#form_userselect .row #test_id,
#form_userselect .row #startdate,
#form_userselect .row #enddate,
#form_userselect .row #module_id,
#form_userselect .row #module_user_id,
#form_userselect .row #subject_module_id,
#form_userselect .row #subject_id,
#form_userselect .row #question_subject_id,
#form_userselect .row #question_id,
#form_userselect .row #ssl_id,
#form_userselect .row #question_difficulty,
#form_userselect .row #question_position,
#form_userselect .row #answer_question_id,
#form_userselect .row #answer_id,
#form_userselect .row #answer_position,
#form_userselect .row #answer_keyboard_key,
#form_userselect .rowl #user_id,
#form_userselect .rowl #user_level,
#form_userselect .rowl #DISABLED_user_regdate,
#form_userselect .rowl #DISABLED_user_ip,
#form_userselect .rowl #test_id,
#form_userselect .rowl #startdate,
#form_userselect .rowl #enddate,
#form_userselect .rowl #module_id,
#form_userselect .rowl #module_user_id,
#form_userselect .rowl #subject_module_id,
#form_userselect .rowl #subject_id,
#form_userselect .rowl #question_subject_id,
#form_userselect .rowl #question_id,
#form_userselect .rowl #ssl_id,
#form_userselect .rowl #question_difficulty,
#form_userselect .rowl #question_position,
#form_userselect .rowl #answer_question_id,
#form_userselect .rowl #answer_id,
#form_userselect .rowl #answer_position,
#form_userselect .rowl #answer_keyboard_key,
#userselect .row #user_id,
#userselect .row #user_level,
#userselect .row #DISABLED_user_regdate,
#userselect .row #DISABLED_user_ip,
#userselect .row #test_id,
#userselect .row #startdate,
#userselect .row #enddate,
#userselect .row #module_id,
#userselect .row #module_user_id,
#userselect .row #subject_module_id,
#userselect .row #subject_id,
#userselect .row #question_subject_id,
#userselect .row #question_id,
#userselect .row #ssl_id,
#userselect .row #question_difficulty,
#userselect .row #question_position,
#userselect .row #answer_question_id,
#userselect .row #answer_id,
#userselect .row #answer_position,
#userselect .row #answer_keyboard_key,
#userselect .rowl #user_id,
#userselect .rowl #user_level,
#userselect .rowl #DISABLED_user_regdate,
#userselect .rowl #DISABLED_user_ip,
#userselect .rowl #test_id,
#userselect .rowl #startdate,
#userselect .rowl #enddate,
#userselect .rowl #module_id,
#userselect .rowl #module_user_id,
#userselect .rowl #subject_module_id,
#userselect .rowl #subject_id,
#userselect .rowl #question_subject_id,
#userselect .rowl #question_id,
#userselect .rowl #ssl_id,
#userselect .rowl #question_difficulty,
#userselect .rowl #question_position,
#userselect .rowl #answer_question_id,
#userselect .rowl #answer_id,
#userselect .rowl #answer_position,
#userselect .rowl #answer_keyboard_key,
#form_importusers .row #user_id,
#form_importusers .row #user_level,
#form_importusers .row #DISABLED_user_regdate,
#form_importusers .row #DISABLED_user_ip,
#form_importusers .row #test_id,
#form_importusers .row #startdate,
#form_importusers .row #enddate,
#form_importusers .row #module_id,
#form_importusers .row #module_user_id,
#form_importusers .row #subject_module_id,
#form_importusers .row #subject_id,
#form_importusers .row #question_subject_id,
#form_importusers .row #question_id,
#form_importusers .row #ssl_id,
#form_importusers .row #question_difficulty,
#form_importusers .row #question_position,
#form_importusers .row #answer_question_id,
#form_importusers .row #answer_id,
#form_importusers .row #answer_position,
#form_importusers .row #answer_keyboard_key,
#form_importusers .rowl #user_id,
#form_importusers .rowl #user_level,
#form_importusers .rowl #DISABLED_user_regdate,
#form_importusers .rowl #DISABLED_user_ip,
#form_importusers .rowl #test_id,
#form_importusers .rowl #startdate,
#form_importusers .rowl #enddate,
#form_importusers .rowl #module_id,
#form_importusers .rowl #module_user_id,
#form_importusers .rowl #subject_module_id,
#form_importusers .rowl #subject_id,
#form_importusers .rowl #question_subject_id,
#form_importusers .rowl #question_id,
#form_importusers .rowl #ssl_id,
#form_importusers .rowl #question_difficulty,
#form_importusers .rowl #question_position,
#form_importusers .rowl #answer_question_id,
#form_importusers .rowl #answer_id,
#form_importusers .rowl #answer_position,
#form_importusers .rowl #answer_keyboard_key,
#form_moduleeditor .row #user_id,
#form_moduleeditor .row #user_level,
#form_moduleeditor .row #DISABLED_user_regdate,
#form_moduleeditor .row #DISABLED_user_ip,
#form_moduleeditor .row #test_id,
#form_moduleeditor .row #startdate,
#form_moduleeditor .row #enddate,
#form_moduleeditor .row #module_id,
#form_moduleeditor .row #module_user_id,
#form_moduleeditor .row #subject_module_id,
#form_moduleeditor .row #subject_id,
#form_moduleeditor .row #question_subject_id,
#form_moduleeditor .row #question_id,
#form_moduleeditor .row #ssl_id,
#form_moduleeditor .row #question_difficulty,
#form_moduleeditor .row #question_position,
#form_moduleeditor .row #answer_question_id,
#form_moduleeditor .row #answer_id,
#form_moduleeditor .row #answer_position,
#form_moduleeditor .row #answer_keyboard_key,
#form_moduleeditor .rowl #user_id,
#form_moduleeditor .rowl #user_level,
#form_moduleeditor .rowl #DISABLED_user_regdate,
#form_moduleeditor .rowl #DISABLED_user_ip,
#form_moduleeditor .rowl #test_id,
#form_moduleeditor .rowl #startdate,
#form_moduleeditor .rowl #enddate,
#form_moduleeditor .rowl #module_id,
#form_moduleeditor .rowl #module_user_id,
#form_moduleeditor .rowl #subject_module_id,
#form_moduleeditor .rowl #subject_id,
#form_moduleeditor .rowl #question_subject_id,
#form_moduleeditor .rowl #question_id,
#form_moduleeditor .rowl #ssl_id,
#form_moduleeditor .rowl #question_difficulty,
#form_moduleeditor .rowl #question_position,
#form_moduleeditor .rowl #answer_question_id,
#form_moduleeditor .rowl #answer_id,
#form_moduleeditor .rowl #answer_position,
#form_moduleeditor .rowl #answer_keyboard_key,
#form_subjecteditor .row #user_id,
#form_subjecteditor .row #user_level,
#form_subjecteditor .row #DISABLED_user_regdate,
#form_subjecteditor .row #DISABLED_user_ip,
#form_subjecteditor .row #test_id,
#form_subjecteditor .row #startdate,
#form_subjecteditor .row #enddate,
#form_subjecteditor .row #module_id,
#form_subjecteditor .row #module_user_id,
#form_subjecteditor .row #subject_module_id,
#form_subjecteditor .row #subject_id,
#form_subjecteditor .row #question_subject_id,
#form_subjecteditor .row #question_id,
#form_subjecteditor .row #ssl_id,
#form_subjecteditor .row #question_difficulty,
#form_subjecteditor .row #question_position,
#form_subjecteditor .row #answer_question_id,
#form_subjecteditor .row #answer_id,
#form_subjecteditor .row #answer_position,
#form_subjecteditor .row #answer_keyboard_key,
#form_subjecteditor .rowl #user_id,
#form_subjecteditor .rowl #user_level,
#form_subjecteditor .rowl #DISABLED_user_regdate,
#form_subjecteditor .rowl #DISABLED_user_ip,
#form_subjecteditor .rowl #test_id,
#form_subjecteditor .rowl #startdate,
#form_subjecteditor .rowl #enddate,
#form_subjecteditor .rowl #module_id,
#form_subjecteditor .rowl #module_user_id,
#form_subjecteditor .rowl #subject_module_id,
#form_subjecteditor .rowl #subject_id,
#form_subjecteditor .rowl #question_subject_id,
#form_subjecteditor .rowl #question_id,
#form_subjecteditor .rowl #ssl_id,
#form_subjecteditor .rowl #question_difficulty,
#form_subjecteditor .rowl #question_position,
#form_subjecteditor .rowl #answer_question_id,
#form_subjecteditor .rowl #answer_id,
#form_subjecteditor .rowl #answer_position,
#form_subjecteditor .rowl #answer_keyboard_key,
#form_selectquestions .row #user_id,
#form_selectquestions .row #user_level,
#form_selectquestions .row #DISABLED_user_regdate,
#form_selectquestions .row #DISABLED_user_ip,
#form_selectquestions .row #test_id,
#form_selectquestions .row #startdate,
#form_selectquestions .row #enddate,
#form_selectquestions .row #module_id,
#form_selectquestions .row #module_user_id,
#form_selectquestions .row #subject_module_id,
#form_selectquestions .row #subject_id,
#form_selectquestions .row #question_subject_id,
#form_selectquestions .row #question_id,
#form_selectquestions .row #ssl_id,
#form_selectquestions .row #question_difficulty,
#form_selectquestions .row #question_position,
#form_selectquestions .row #answer_question_id,
#form_selectquestions .row #answer_id,
#form_selectquestions .row #answer_position,
#form_selectquestions .row #answer_keyboard_key,
#form_selectquestions .rowl #user_id,
#form_selectquestions .rowl #user_level,
#form_selectquestions .rowl #DISABLED_user_regdate,
#form_selectquestions .rowl #DISABLED_user_ip,
#form_selectquestions .rowl #test_id,
#form_selectquestions .rowl #startdate,
#form_selectquestions .rowl #enddate,
#form_selectquestions .rowl #module_id,
#form_selectquestions .rowl #module_user_id,
#form_selectquestions .rowl #subject_module_id,
#form_selectquestions .rowl #subject_id,
#form_selectquestions .rowl #question_subject_id,
#form_selectquestions .rowl #question_id,
#form_selectquestions .rowl #ssl_id,
#form_selectquestions .rowl #question_difficulty,
#form_selectquestions .rowl #question_position,
#form_selectquestions .rowl #answer_question_id,
#form_selectquestions .rowl #answer_id,
#form_selectquestions .rowl #answer_position,
#form_selectquestions .rowl #answer_keyboard_key,
#form_importquestions .row #user_id,
#form_importquestions .row #user_level,
#form_importquestions .row #DISABLED_user_regdate,
#form_importquestions .row #DISABLED_user_ip,
#form_importquestions .row #test_id,
#form_importquestions .row #startdate,
#form_importquestions .row #enddate,
#form_importquestions .row #module_id,
#form_importquestions .row #module_user_id,
#form_importquestions .row #subject_module_id,
#form_importquestions .row #subject_id,
#form_importquestions .row #question_subject_id,
#form_importquestions .row #question_id,
#form_importquestions .row #ssl_id,
#form_importquestions .row #question_difficulty,
#form_importquestions .row #question_position,
#form_importquestions .row #answer_question_id,
#form_importquestions .row #answer_id,
#form_importquestions .row #answer_position,
#form_importquestions .row #answer_keyboard_key,
#form_importquestions .rowl #user_id,
#form_importquestions .rowl #user_level,
#form_importquestions .rowl #DISABLED_user_regdate,
#form_importquestions .rowl #DISABLED_user_ip,
#form_importquestions .rowl #test_id,
#form_importquestions .rowl #startdate,
#form_importquestions .rowl #enddate,
#form_importquestions .rowl #module_id,
#form_importquestions .rowl #module_user_id,
#form_importquestions .rowl #subject_module_id,
#form_importquestions .rowl #subject_id,
#form_importquestions .rowl #question_subject_id,
#form_importquestions .rowl #question_id,
#form_importquestions .rowl #ssl_id,
#form_importquestions .rowl #question_difficulty,
#form_importquestions .rowl #question_position,
#form_importquestions .rowl #answer_question_id,
#form_importquestions .rowl #answer_id,
#form_importquestions .rowl #answer_position,
#form_importquestions .rowl #answer_keyboard_key,
#form_importsslcert .row #user_id,
#form_importsslcert .row #user_level,
#form_importsslcert .row #DISABLED_user_regdate,
#form_importsslcert .row #DISABLED_user_ip,
#form_importsslcert .row #test_id,
#form_importsslcert .row #startdate,
#form_importsslcert .row #enddate,
#form_importsslcert .row #module_id,
#form_importsslcert .row #module_user_id,
#form_importsslcert .row #subject_module_id,
#form_importsslcert .row #subject_id,
#form_importsslcert .row #question_subject_id,
#form_importsslcert .row #question_id,
#form_importsslcert .row #ssl_id,
#form_importsslcert .row #question_difficulty,
#form_importsslcert .row #question_position,
#form_importsslcert .row #answer_question_id,
#form_importsslcert .row #answer_id,
#form_importsslcert .row #answer_position,
#form_importsslcert .row #answer_keyboard_key,
#form_importsslcert .rowl #user_id,
#form_importsslcert .rowl #user_level,
#form_importsslcert .rowl #DISABLED_user_regdate,
#form_importsslcert .rowl #DISABLED_user_ip,
#form_importsslcert .rowl #test_id,
#form_importsslcert .rowl #startdate,
#form_importsslcert .rowl #enddate,
#form_importsslcert .rowl #module_id,
#form_importsslcert .rowl #module_user_id,
#form_importsslcert .rowl #subject_module_id,
#form_importsslcert .rowl #subject_id,
#form_importsslcert .rowl #question_subject_id,
#form_importsslcert .rowl #question_id,
#form_importsslcert .rowl #ssl_id,
#form_importsslcert .rowl #question_difficulty,
#form_importsslcert .rowl #question_position,
#form_importsslcert .rowl #answer_question_id,
#form_importsslcert .rowl #answer_id,
#form_importsslcert .rowl #answer_position,
#form_importsslcert .rowl #answer_keyboard_key,
#form_omrimport .row #user_id,
#form_omrimport .row #user_level,
#form_omrimport .row #DISABLED_user_regdate,
#form_omrimport .row #DISABLED_user_ip,
#form_omrimport .row #test_id,
#form_omrimport .row #startdate,
#form_omrimport .row #enddate,
#form_omrimport .row #module_id,
#form_omrimport .row #module_user_id,
#form_omrimport .row #subject_module_id,
#form_omrimport .row #subject_id,
#form_omrimport .row #question_subject_id,
#form_omrimport .row #question_id,
#form_omrimport .row #ssl_id,
#form_omrimport .row #question_difficulty,
#form_omrimport .row #question_position,
#form_omrimport .row #answer_question_id,
#form_omrimport .row #answer_id,
#form_omrimport .row #answer_position,
#form_omrimport .row #answer_keyboard_key,
#form_omrimport .rowl #user_id,
#form_omrimport .rowl #user_level,
#form_omrimport .rowl #DISABLED_user_regdate,
#form_omrimport .rowl #DISABLED_user_ip,
#form_omrimport .rowl #test_id,
#form_omrimport .rowl #startdate,
#form_omrimport .rowl #enddate,
#form_omrimport .rowl #module_id,
#form_omrimport .rowl #module_user_id,
#form_omrimport .rowl #subject_module_id,
#form_omrimport .rowl #subject_id,
#form_omrimport .rowl #question_subject_id,
#form_omrimport .rowl #question_id,
#form_omrimport .rowl #ssl_id,
#form_omrimport .rowl #question_difficulty,
#form_omrimport .rowl #question_position,
#form_omrimport .rowl #answer_question_id,
#form_omrimport .rowl #answer_id,
#form_omrimport .rowl #answer_position,
#form_omrimport .rowl #answer_keyboard_key,
#form_ratingeditor .row #user_id,
#form_ratingeditor .row #user_level,
#form_ratingeditor .row #DISABLED_user_regdate,
#form_ratingeditor .row #DISABLED_user_ip,
#form_ratingeditor .row #test_id,
#form_ratingeditor .row #startdate,
#form_ratingeditor .row #enddate,
#form_ratingeditor .row #module_id,
#form_ratingeditor .row #module_user_id,
#form_ratingeditor .row #subject_module_id,
#form_ratingeditor .row #subject_id,
#form_ratingeditor .row #question_subject_id,
#form_ratingeditor .row #question_id,
#form_ratingeditor .row #ssl_id,
#form_ratingeditor .row #question_difficulty,
#form_ratingeditor .row #question_position,
#form_ratingeditor .row #answer_question_id,
#form_ratingeditor .row #answer_id,
#form_ratingeditor .row #answer_position,
#form_ratingeditor .row #answer_keyboard_key,
#form_ratingeditor .rowl #user_id,
#form_ratingeditor .rowl #user_level,
#form_ratingeditor .rowl #DISABLED_user_regdate,
#form_ratingeditor .rowl #DISABLED_user_ip,
#form_ratingeditor .rowl #test_id,
#form_ratingeditor .rowl #startdate,
#form_ratingeditor .rowl #enddate,
#form_ratingeditor .rowl #module_id,
#form_ratingeditor .rowl #module_user_id,
#form_ratingeditor .rowl #subject_module_id,
#form_ratingeditor .rowl #subject_id,
#form_ratingeditor .rowl #question_subject_id,
#form_ratingeditor .rowl #question_id,
#form_ratingeditor .rowl #ssl_id,
#form_ratingeditor .rowl #question_difficulty,
#form_ratingeditor .rowl #question_position,
#form_ratingeditor .rowl #answer_question_id,
#form_ratingeditor .rowl #answer_id,
#form_ratingeditor .rowl #answer_position,
#form_ratingeditor .rowl #answer_keyboard_key,
#form_resultallusers .row #user_id,
#form_resultallusers .row #user_level,
#form_resultallusers .row #DISABLED_user_regdate,
#form_resultallusers .row #DISABLED_user_ip,
#form_resultallusers .row #test_id,
#form_resultallusers .row #startdate,
#form_resultallusers .row #enddate,
#form_resultallusers .row #module_id,
#form_resultallusers .row #module_user_id,
#form_resultallusers .row #subject_module_id,
#form_resultallusers .row #subject_id,
#form_resultallusers .row #question_subject_id,
#form_resultallusers .row #question_id,
#form_resultallusers .row #ssl_id,
#form_resultallusers .row #question_difficulty,
#form_resultallusers .row #question_position,
#form_resultallusers .row #answer_question_id,
#form_resultallusers .row #answer_id,
#form_resultallusers .row #answer_position,
#form_resultallusers .row #answer_keyboard_key,
#form_resultallusers .rowl #user_id,
#form_resultallusers .rowl #user_level,
#form_resultallusers .rowl #DISABLED_user_regdate,
#form_resultallusers .rowl #DISABLED_user_ip,
#form_resultallusers .rowl #test_id,
#form_resultallusers .rowl #startdate,
#form_resultallusers .rowl #enddate,
#form_resultallusers .rowl #module_id,
#form_resultallusers .rowl #module_user_id,
#form_resultallusers .rowl #subject_module_id,
#form_resultallusers .rowl #subject_id,
#form_resultallusers .rowl #question_subject_id,
#form_resultallusers .rowl #question_id,
#form_resultallusers .rowl #ssl_id,
#form_resultallusers .rowl #question_difficulty,
#form_resultallusers .rowl #question_position,
#form_resultallusers .rowl #answer_question_id,
#form_resultallusers .rowl #answer_id,
#form_resultallusers .rowl #answer_position,
#form_resultallusers .rowl #answer_keyboard_key,
#form_questioneditor .row #user_id,
#form_questioneditor .row #user_level,
#form_questioneditor .row #DISABLED_user_regdate,
#form_questioneditor .row #DISABLED_user_ip,
#form_questioneditor .row #test_id,
#form_questioneditor .row #startdate,
#form_questioneditor .row #enddate,
#form_questioneditor .row #module_id,
#form_questioneditor .row #module_user_id,
#form_questioneditor .row #subject_module_id,
#form_questioneditor .row #subject_id,
#form_questioneditor .row #question_subject_id,
#form_questioneditor .row #question_id,
#form_questioneditor .row #ssl_id,
#form_questioneditor .row #question_difficulty,
#form_questioneditor .row #question_position,
#form_questioneditor .row #answer_question_id,
#form_questioneditor .row #answer_id,
#form_questioneditor .row #answer_position,
#form_questioneditor .row #answer_keyboard_key,
#form_questioneditor .rowl #user_id,
#form_questioneditor .rowl #user_level,
#form_questioneditor .rowl #DISABLED_user_regdate,
#form_questioneditor .rowl #DISABLED_user_ip,
#form_questioneditor .rowl #test_id,
#form_questioneditor .rowl #startdate,
#form_questioneditor .rowl #enddate,
#form_questioneditor .rowl #module_id,
#form_questioneditor .rowl #module_user_id,
#form_questioneditor .rowl #subject_module_id,
#form_questioneditor .rowl #subject_id,
#form_questioneditor .rowl #question_subject_id,
#form_questioneditor .rowl #question_id,
#form_questioneditor .rowl #ssl_id,
#form_questioneditor .rowl #question_difficulty,
#form_questioneditor .rowl #question_position,
#form_questioneditor .rowl #answer_question_id,
#form_questioneditor .rowl #answer_id,
#form_questioneditor .rowl #answer_position,
#form_questioneditor .rowl #answer_keyboard_key,
#form_answereditor .row #user_id,
#form_answereditor .row #user_level,
#form_answereditor .row #DISABLED_user_regdate,
#form_answereditor .row #DISABLED_user_ip,
#form_answereditor .row #test_id,
#form_answereditor .row #startdate,
#form_answereditor .row #enddate,
#form_answereditor .row #module_id,
#form_answereditor .row #module_user_id,
#form_answereditor .row #subject_module_id,
#form_answereditor .row #subject_id,
#form_answereditor .row #question_subject_id,
#form_answereditor .row #question_id,
#form_answereditor .row #ssl_id,
#form_answereditor .row #question_difficulty,
#form_answereditor .row #question_position,
#form_answereditor .row #answer_question_id,
#form_answereditor .row #answer_id,
#form_answereditor .row #answer_position,
#form_answereditor .row #answer_keyboard_key,
#form_answereditor .rowl #user_id,
#form_answereditor .rowl #user_level,
#form_answereditor .rowl #DISABLED_user_regdate,
#form_answereditor .rowl #DISABLED_user_ip,
#form_answereditor .rowl #test_id,
#form_answereditor .rowl #startdate,
#form_answereditor .rowl #enddate,
#form_answereditor .rowl #module_id,
#form_answereditor .rowl #module_user_id,
#form_answereditor .rowl #subject_module_id,
#form_answereditor .rowl #subject_id,
#form_answereditor .rowl #question_subject_id,
#form_answereditor .rowl #question_id,
#form_answereditor .rowl #ssl_id,
#form_answereditor .rowl #question_difficulty,
#form_answereditor .rowl #question_position,
#form_answereditor .rowl #answer_question_id,
#form_answereditor .rowl #answer_id,
#form_answereditor .rowl #answer_position,
#form_answereditor .rowl #answer_keyboard_key,
#form_testeditor .row #user_id,
#form_testeditor .row #user_level,
#form_testeditor .row #DISABLED_user_regdate,
#form_testeditor .row #DISABLED_user_ip,
#form_testeditor .row #test_id,
#form_testeditor .row #startdate,
#form_testeditor .row #enddate,
#form_testeditor .row #module_id,
#form_testeditor .row #module_user_id,
#form_testeditor .row #subject_module_id,
#form_testeditor .row #subject_id,
#form_testeditor .row #question_subject_id,
#form_testeditor .row #question_id,
#form_testeditor .row #ssl_id,
#form_testeditor .row #question_difficulty,
#form_testeditor .row #question_position,
#form_testeditor .row #answer_question_id,
#form_testeditor .row #answer_id,
#form_testeditor .row #answer_position,
#form_testeditor .row #answer_keyboard_key,
#form_testeditor .rowl #user_id,
#form_testeditor .rowl #user_level,
#form_testeditor .rowl #DISABLED_user_regdate,
#form_testeditor .rowl #DISABLED_user_ip,
#form_testeditor .rowl #test_id,
#form_testeditor .rowl #startdate,
#form_testeditor .rowl #enddate,
#form_testeditor .rowl #module_id,
#form_testeditor .rowl #module_user_id,
#form_testeditor .rowl #subject_module_id,
#form_testeditor .rowl #subject_id,
#form_testeditor .rowl #question_subject_id,
#form_testeditor .rowl #question_id,
#form_testeditor .rowl #ssl_id,
#form_testeditor .rowl #question_difficulty,
#form_testeditor .rowl #question_position,
#form_testeditor .rowl #answer_question_id,
#form_testeditor .rowl #answer_id,
#form_testeditor .rowl #answer_position,
#form_testeditor .rowl #answer_keyboard_key {
  border: 1px solid var(--border_color);
  border-radius: 8px;
  min-width: 250px;
  max-width: 250px;
  margin: 0 10px 0 0;
  padding: 12px 10px;
}
#form_usereditor .row #DISABLED_user_regdate,
#form_usereditor .row #DISABLED_user_ip, #form_usereditor .rowl #DISABLED_user_regdate,
#form_usereditor .rowl #DISABLED_user_ip,
#form_groupeditor .row #DISABLED_user_regdate,
#form_groupeditor .row #DISABLED_user_ip,
#form_groupeditor .rowl #DISABLED_user_regdate,
#form_groupeditor .rowl #DISABLED_user_ip,
#form_userselect .row #DISABLED_user_regdate,
#form_userselect .row #DISABLED_user_ip,
#form_userselect .rowl #DISABLED_user_regdate,
#form_userselect .rowl #DISABLED_user_ip,
#userselect .row #DISABLED_user_regdate,
#userselect .row #DISABLED_user_ip,
#userselect .rowl #DISABLED_user_regdate,
#userselect .rowl #DISABLED_user_ip,
#form_importusers .row #DISABLED_user_regdate,
#form_importusers .row #DISABLED_user_ip,
#form_importusers .rowl #DISABLED_user_regdate,
#form_importusers .rowl #DISABLED_user_ip,
#form_moduleeditor .row #DISABLED_user_regdate,
#form_moduleeditor .row #DISABLED_user_ip,
#form_moduleeditor .rowl #DISABLED_user_regdate,
#form_moduleeditor .rowl #DISABLED_user_ip,
#form_subjecteditor .row #DISABLED_user_regdate,
#form_subjecteditor .row #DISABLED_user_ip,
#form_subjecteditor .rowl #DISABLED_user_regdate,
#form_subjecteditor .rowl #DISABLED_user_ip,
#form_selectquestions .row #DISABLED_user_regdate,
#form_selectquestions .row #DISABLED_user_ip,
#form_selectquestions .rowl #DISABLED_user_regdate,
#form_selectquestions .rowl #DISABLED_user_ip,
#form_importquestions .row #DISABLED_user_regdate,
#form_importquestions .row #DISABLED_user_ip,
#form_importquestions .rowl #DISABLED_user_regdate,
#form_importquestions .rowl #DISABLED_user_ip,
#form_importsslcert .row #DISABLED_user_regdate,
#form_importsslcert .row #DISABLED_user_ip,
#form_importsslcert .rowl #DISABLED_user_regdate,
#form_importsslcert .rowl #DISABLED_user_ip,
#form_omrimport .row #DISABLED_user_regdate,
#form_omrimport .row #DISABLED_user_ip,
#form_omrimport .rowl #DISABLED_user_regdate,
#form_omrimport .rowl #DISABLED_user_ip,
#form_ratingeditor .row #DISABLED_user_regdate,
#form_ratingeditor .row #DISABLED_user_ip,
#form_ratingeditor .rowl #DISABLED_user_regdate,
#form_ratingeditor .rowl #DISABLED_user_ip,
#form_resultallusers .row #DISABLED_user_regdate,
#form_resultallusers .row #DISABLED_user_ip,
#form_resultallusers .rowl #DISABLED_user_regdate,
#form_resultallusers .rowl #DISABLED_user_ip,
#form_questioneditor .row #DISABLED_user_regdate,
#form_questioneditor .row #DISABLED_user_ip,
#form_questioneditor .rowl #DISABLED_user_regdate,
#form_questioneditor .rowl #DISABLED_user_ip,
#form_answereditor .row #DISABLED_user_regdate,
#form_answereditor .row #DISABLED_user_ip,
#form_answereditor .rowl #DISABLED_user_regdate,
#form_answereditor .rowl #DISABLED_user_ip,
#form_testeditor .row #DISABLED_user_regdate,
#form_testeditor .row #DISABLED_user_ip,
#form_testeditor .rowl #DISABLED_user_regdate,
#form_testeditor .rowl #DISABLED_user_ip {
  padding: 10px 10px;
  background-color: var(--bg_color);
}
#form_usereditor .row #module_id,
#form_usereditor .row #subject_module_id,
#form_usereditor .row #subject_id,
#form_usereditor .row #question_subject_id,
#form_usereditor .row #question_id,
#form_usereditor .row #ssl_id,
#form_usereditor .row #answer_question_id,
#form_usereditor .row #answer_id, #form_usereditor .rowl #module_id,
#form_usereditor .rowl #subject_module_id,
#form_usereditor .rowl #subject_id,
#form_usereditor .rowl #question_subject_id,
#form_usereditor .rowl #question_id,
#form_usereditor .rowl #ssl_id,
#form_usereditor .rowl #answer_question_id,
#form_usereditor .rowl #answer_id,
#form_groupeditor .row #module_id,
#form_groupeditor .row #subject_module_id,
#form_groupeditor .row #subject_id,
#form_groupeditor .row #question_subject_id,
#form_groupeditor .row #question_id,
#form_groupeditor .row #ssl_id,
#form_groupeditor .row #answer_question_id,
#form_groupeditor .row #answer_id,
#form_groupeditor .rowl #module_id,
#form_groupeditor .rowl #subject_module_id,
#form_groupeditor .rowl #subject_id,
#form_groupeditor .rowl #question_subject_id,
#form_groupeditor .rowl #question_id,
#form_groupeditor .rowl #ssl_id,
#form_groupeditor .rowl #answer_question_id,
#form_groupeditor .rowl #answer_id,
#form_userselect .row #module_id,
#form_userselect .row #subject_module_id,
#form_userselect .row #subject_id,
#form_userselect .row #question_subject_id,
#form_userselect .row #question_id,
#form_userselect .row #ssl_id,
#form_userselect .row #answer_question_id,
#form_userselect .row #answer_id,
#form_userselect .rowl #module_id,
#form_userselect .rowl #subject_module_id,
#form_userselect .rowl #subject_id,
#form_userselect .rowl #question_subject_id,
#form_userselect .rowl #question_id,
#form_userselect .rowl #ssl_id,
#form_userselect .rowl #answer_question_id,
#form_userselect .rowl #answer_id,
#userselect .row #module_id,
#userselect .row #subject_module_id,
#userselect .row #subject_id,
#userselect .row #question_subject_id,
#userselect .row #question_id,
#userselect .row #ssl_id,
#userselect .row #answer_question_id,
#userselect .row #answer_id,
#userselect .rowl #module_id,
#userselect .rowl #subject_module_id,
#userselect .rowl #subject_id,
#userselect .rowl #question_subject_id,
#userselect .rowl #question_id,
#userselect .rowl #ssl_id,
#userselect .rowl #answer_question_id,
#userselect .rowl #answer_id,
#form_importusers .row #module_id,
#form_importusers .row #subject_module_id,
#form_importusers .row #subject_id,
#form_importusers .row #question_subject_id,
#form_importusers .row #question_id,
#form_importusers .row #ssl_id,
#form_importusers .row #answer_question_id,
#form_importusers .row #answer_id,
#form_importusers .rowl #module_id,
#form_importusers .rowl #subject_module_id,
#form_importusers .rowl #subject_id,
#form_importusers .rowl #question_subject_id,
#form_importusers .rowl #question_id,
#form_importusers .rowl #ssl_id,
#form_importusers .rowl #answer_question_id,
#form_importusers .rowl #answer_id,
#form_moduleeditor .row #module_id,
#form_moduleeditor .row #subject_module_id,
#form_moduleeditor .row #subject_id,
#form_moduleeditor .row #question_subject_id,
#form_moduleeditor .row #question_id,
#form_moduleeditor .row #ssl_id,
#form_moduleeditor .row #answer_question_id,
#form_moduleeditor .row #answer_id,
#form_moduleeditor .rowl #module_id,
#form_moduleeditor .rowl #subject_module_id,
#form_moduleeditor .rowl #subject_id,
#form_moduleeditor .rowl #question_subject_id,
#form_moduleeditor .rowl #question_id,
#form_moduleeditor .rowl #ssl_id,
#form_moduleeditor .rowl #answer_question_id,
#form_moduleeditor .rowl #answer_id,
#form_subjecteditor .row #module_id,
#form_subjecteditor .row #subject_module_id,
#form_subjecteditor .row #subject_id,
#form_subjecteditor .row #question_subject_id,
#form_subjecteditor .row #question_id,
#form_subjecteditor .row #ssl_id,
#form_subjecteditor .row #answer_question_id,
#form_subjecteditor .row #answer_id,
#form_subjecteditor .rowl #module_id,
#form_subjecteditor .rowl #subject_module_id,
#form_subjecteditor .rowl #subject_id,
#form_subjecteditor .rowl #question_subject_id,
#form_subjecteditor .rowl #question_id,
#form_subjecteditor .rowl #ssl_id,
#form_subjecteditor .rowl #answer_question_id,
#form_subjecteditor .rowl #answer_id,
#form_selectquestions .row #module_id,
#form_selectquestions .row #subject_module_id,
#form_selectquestions .row #subject_id,
#form_selectquestions .row #question_subject_id,
#form_selectquestions .row #question_id,
#form_selectquestions .row #ssl_id,
#form_selectquestions .row #answer_question_id,
#form_selectquestions .row #answer_id,
#form_selectquestions .rowl #module_id,
#form_selectquestions .rowl #subject_module_id,
#form_selectquestions .rowl #subject_id,
#form_selectquestions .rowl #question_subject_id,
#form_selectquestions .rowl #question_id,
#form_selectquestions .rowl #ssl_id,
#form_selectquestions .rowl #answer_question_id,
#form_selectquestions .rowl #answer_id,
#form_importquestions .row #module_id,
#form_importquestions .row #subject_module_id,
#form_importquestions .row #subject_id,
#form_importquestions .row #question_subject_id,
#form_importquestions .row #question_id,
#form_importquestions .row #ssl_id,
#form_importquestions .row #answer_question_id,
#form_importquestions .row #answer_id,
#form_importquestions .rowl #module_id,
#form_importquestions .rowl #subject_module_id,
#form_importquestions .rowl #subject_id,
#form_importquestions .rowl #question_subject_id,
#form_importquestions .rowl #question_id,
#form_importquestions .rowl #ssl_id,
#form_importquestions .rowl #answer_question_id,
#form_importquestions .rowl #answer_id,
#form_importsslcert .row #module_id,
#form_importsslcert .row #subject_module_id,
#form_importsslcert .row #subject_id,
#form_importsslcert .row #question_subject_id,
#form_importsslcert .row #question_id,
#form_importsslcert .row #ssl_id,
#form_importsslcert .row #answer_question_id,
#form_importsslcert .row #answer_id,
#form_importsslcert .rowl #module_id,
#form_importsslcert .rowl #subject_module_id,
#form_importsslcert .rowl #subject_id,
#form_importsslcert .rowl #question_subject_id,
#form_importsslcert .rowl #question_id,
#form_importsslcert .rowl #ssl_id,
#form_importsslcert .rowl #answer_question_id,
#form_importsslcert .rowl #answer_id,
#form_omrimport .row #module_id,
#form_omrimport .row #subject_module_id,
#form_omrimport .row #subject_id,
#form_omrimport .row #question_subject_id,
#form_omrimport .row #question_id,
#form_omrimport .row #ssl_id,
#form_omrimport .row #answer_question_id,
#form_omrimport .row #answer_id,
#form_omrimport .rowl #module_id,
#form_omrimport .rowl #subject_module_id,
#form_omrimport .rowl #subject_id,
#form_omrimport .rowl #question_subject_id,
#form_omrimport .rowl #question_id,
#form_omrimport .rowl #ssl_id,
#form_omrimport .rowl #answer_question_id,
#form_omrimport .rowl #answer_id,
#form_ratingeditor .row #module_id,
#form_ratingeditor .row #subject_module_id,
#form_ratingeditor .row #subject_id,
#form_ratingeditor .row #question_subject_id,
#form_ratingeditor .row #question_id,
#form_ratingeditor .row #ssl_id,
#form_ratingeditor .row #answer_question_id,
#form_ratingeditor .row #answer_id,
#form_ratingeditor .rowl #module_id,
#form_ratingeditor .rowl #subject_module_id,
#form_ratingeditor .rowl #subject_id,
#form_ratingeditor .rowl #question_subject_id,
#form_ratingeditor .rowl #question_id,
#form_ratingeditor .rowl #ssl_id,
#form_ratingeditor .rowl #answer_question_id,
#form_ratingeditor .rowl #answer_id,
#form_resultallusers .row #module_id,
#form_resultallusers .row #subject_module_id,
#form_resultallusers .row #subject_id,
#form_resultallusers .row #question_subject_id,
#form_resultallusers .row #question_id,
#form_resultallusers .row #ssl_id,
#form_resultallusers .row #answer_question_id,
#form_resultallusers .row #answer_id,
#form_resultallusers .rowl #module_id,
#form_resultallusers .rowl #subject_module_id,
#form_resultallusers .rowl #subject_id,
#form_resultallusers .rowl #question_subject_id,
#form_resultallusers .rowl #question_id,
#form_resultallusers .rowl #ssl_id,
#form_resultallusers .rowl #answer_question_id,
#form_resultallusers .rowl #answer_id,
#form_questioneditor .row #module_id,
#form_questioneditor .row #subject_module_id,
#form_questioneditor .row #subject_id,
#form_questioneditor .row #question_subject_id,
#form_questioneditor .row #question_id,
#form_questioneditor .row #ssl_id,
#form_questioneditor .row #answer_question_id,
#form_questioneditor .row #answer_id,
#form_questioneditor .rowl #module_id,
#form_questioneditor .rowl #subject_module_id,
#form_questioneditor .rowl #subject_id,
#form_questioneditor .rowl #question_subject_id,
#form_questioneditor .rowl #question_id,
#form_questioneditor .rowl #ssl_id,
#form_questioneditor .rowl #answer_question_id,
#form_questioneditor .rowl #answer_id,
#form_answereditor .row #module_id,
#form_answereditor .row #subject_module_id,
#form_answereditor .row #subject_id,
#form_answereditor .row #question_subject_id,
#form_answereditor .row #question_id,
#form_answereditor .row #ssl_id,
#form_answereditor .row #answer_question_id,
#form_answereditor .row #answer_id,
#form_answereditor .rowl #module_id,
#form_answereditor .rowl #subject_module_id,
#form_answereditor .rowl #subject_id,
#form_answereditor .rowl #question_subject_id,
#form_answereditor .rowl #question_id,
#form_answereditor .rowl #ssl_id,
#form_answereditor .rowl #answer_question_id,
#form_answereditor .rowl #answer_id,
#form_testeditor .row #module_id,
#form_testeditor .row #subject_module_id,
#form_testeditor .row #subject_id,
#form_testeditor .row #question_subject_id,
#form_testeditor .row #question_id,
#form_testeditor .row #ssl_id,
#form_testeditor .row #answer_question_id,
#form_testeditor .row #answer_id,
#form_testeditor .rowl #module_id,
#form_testeditor .rowl #subject_module_id,
#form_testeditor .rowl #subject_id,
#form_testeditor .rowl #question_subject_id,
#form_testeditor .rowl #question_id,
#form_testeditor .rowl #ssl_id,
#form_testeditor .rowl #answer_question_id,
#form_testeditor .rowl #answer_id {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
#form_usereditor .row a, #form_usereditor .rowl a,
#form_groupeditor .row a,
#form_groupeditor .rowl a,
#form_userselect .row a,
#form_userselect .rowl a,
#userselect .row a,
#userselect .rowl a,
#form_importusers .row a,
#form_importusers .rowl a,
#form_moduleeditor .row a,
#form_moduleeditor .rowl a,
#form_subjecteditor .row a,
#form_subjecteditor .rowl a,
#form_selectquestions .row a,
#form_selectquestions .rowl a,
#form_importquestions .row a,
#form_importquestions .rowl a,
#form_importsslcert .row a,
#form_importsslcert .rowl a,
#form_omrimport .row a,
#form_omrimport .rowl a,
#form_ratingeditor .row a,
#form_ratingeditor .rowl a,
#form_resultallusers .row a,
#form_resultallusers .rowl a,
#form_questioneditor .row a,
#form_questioneditor .rowl a,
#form_answereditor .row a,
#form_answereditor .rowl a,
#form_testeditor .row a,
#form_testeditor .rowl a {
  display: inline-block;
  width: 50px;
  margin: 0 0 0 -4px;
  padding: 7px 15px;
  background: var(--border_color_lighter);
  border: 1px solid var(--border_color);
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}
#form_usereditor .row a:hover, #form_usereditor .rowl a:hover,
#form_groupeditor .row a:hover,
#form_groupeditor .rowl a:hover,
#form_userselect .row a:hover,
#form_userselect .rowl a:hover,
#userselect .row a:hover,
#userselect .rowl a:hover,
#form_importusers .row a:hover,
#form_importusers .rowl a:hover,
#form_moduleeditor .row a:hover,
#form_moduleeditor .rowl a:hover,
#form_subjecteditor .row a:hover,
#form_subjecteditor .rowl a:hover,
#form_selectquestions .row a:hover,
#form_selectquestions .rowl a:hover,
#form_importquestions .row a:hover,
#form_importquestions .rowl a:hover,
#form_importsslcert .row a:hover,
#form_importsslcert .rowl a:hover,
#form_omrimport .row a:hover,
#form_omrimport .rowl a:hover,
#form_ratingeditor .row a:hover,
#form_ratingeditor .rowl a:hover,
#form_resultallusers .row a:hover,
#form_resultallusers .rowl a:hover,
#form_questioneditor .row a:hover,
#form_questioneditor .rowl a:hover,
#form_answereditor .row a:hover,
#form_answereditor .rowl a:hover,
#form_testeditor .row a:hover,
#form_testeditor .rowl a:hover {
  background: var(--main_color_lighter4);
  border-color: var(--main_color_lighter4);
}
#form_usereditor .row .xmlbutton,
#form_usereditor .row .xmlbutton,
#form_usereditor .row .xmlbutton, #form_usereditor .rowl .xmlbutton,
#form_usereditor .rowl .xmlbutton,
#form_usereditor .rowl .xmlbutton,
#form_groupeditor .row .xmlbutton,
#form_groupeditor .row .xmlbutton,
#form_groupeditor .row .xmlbutton,
#form_groupeditor .rowl .xmlbutton,
#form_groupeditor .rowl .xmlbutton,
#form_groupeditor .rowl .xmlbutton,
#form_userselect .row .xmlbutton,
#form_userselect .row .xmlbutton,
#form_userselect .row .xmlbutton,
#form_userselect .rowl .xmlbutton,
#form_userselect .rowl .xmlbutton,
#form_userselect .rowl .xmlbutton,
#userselect .row .xmlbutton,
#userselect .row .xmlbutton,
#userselect .row .xmlbutton,
#userselect .rowl .xmlbutton,
#userselect .rowl .xmlbutton,
#userselect .rowl .xmlbutton,
#form_importusers .row .xmlbutton,
#form_importusers .row .xmlbutton,
#form_importusers .row .xmlbutton,
#form_importusers .rowl .xmlbutton,
#form_importusers .rowl .xmlbutton,
#form_importusers .rowl .xmlbutton,
#form_moduleeditor .row .xmlbutton,
#form_moduleeditor .row .xmlbutton,
#form_moduleeditor .row .xmlbutton,
#form_moduleeditor .rowl .xmlbutton,
#form_moduleeditor .rowl .xmlbutton,
#form_moduleeditor .rowl .xmlbutton,
#form_subjecteditor .row .xmlbutton,
#form_subjecteditor .row .xmlbutton,
#form_subjecteditor .row .xmlbutton,
#form_subjecteditor .rowl .xmlbutton,
#form_subjecteditor .rowl .xmlbutton,
#form_subjecteditor .rowl .xmlbutton,
#form_selectquestions .row .xmlbutton,
#form_selectquestions .row .xmlbutton,
#form_selectquestions .row .xmlbutton,
#form_selectquestions .rowl .xmlbutton,
#form_selectquestions .rowl .xmlbutton,
#form_selectquestions .rowl .xmlbutton,
#form_importquestions .row .xmlbutton,
#form_importquestions .row .xmlbutton,
#form_importquestions .row .xmlbutton,
#form_importquestions .rowl .xmlbutton,
#form_importquestions .rowl .xmlbutton,
#form_importquestions .rowl .xmlbutton,
#form_importsslcert .row .xmlbutton,
#form_importsslcert .row .xmlbutton,
#form_importsslcert .row .xmlbutton,
#form_importsslcert .rowl .xmlbutton,
#form_importsslcert .rowl .xmlbutton,
#form_importsslcert .rowl .xmlbutton,
#form_omrimport .row .xmlbutton,
#form_omrimport .row .xmlbutton,
#form_omrimport .row .xmlbutton,
#form_omrimport .rowl .xmlbutton,
#form_omrimport .rowl .xmlbutton,
#form_omrimport .rowl .xmlbutton,
#form_ratingeditor .row .xmlbutton,
#form_ratingeditor .row .xmlbutton,
#form_ratingeditor .row .xmlbutton,
#form_ratingeditor .rowl .xmlbutton,
#form_ratingeditor .rowl .xmlbutton,
#form_ratingeditor .rowl .xmlbutton,
#form_resultallusers .row .xmlbutton,
#form_resultallusers .row .xmlbutton,
#form_resultallusers .row .xmlbutton,
#form_resultallusers .rowl .xmlbutton,
#form_resultallusers .rowl .xmlbutton,
#form_resultallusers .rowl .xmlbutton,
#form_questioneditor .row .xmlbutton,
#form_questioneditor .row .xmlbutton,
#form_questioneditor .row .xmlbutton,
#form_questioneditor .rowl .xmlbutton,
#form_questioneditor .rowl .xmlbutton,
#form_questioneditor .rowl .xmlbutton,
#form_answereditor .row .xmlbutton,
#form_answereditor .row .xmlbutton,
#form_answereditor .row .xmlbutton,
#form_answereditor .rowl .xmlbutton,
#form_answereditor .rowl .xmlbutton,
#form_answereditor .rowl .xmlbutton,
#form_testeditor .row .xmlbutton,
#form_testeditor .row .xmlbutton,
#form_testeditor .row .xmlbutton,
#form_testeditor .rowl .xmlbutton,
#form_testeditor .rowl .xmlbutton,
#form_testeditor .rowl .xmlbutton {
  width: 50px;
  margin: 0 5px;
}
#form_usereditor .row #user_birthdate, #form_usereditor .rowl #user_birthdate,
#form_groupeditor .row #user_birthdate,
#form_groupeditor .rowl #user_birthdate,
#form_userselect .row #user_birthdate,
#form_userselect .rowl #user_birthdate,
#userselect .row #user_birthdate,
#userselect .rowl #user_birthdate,
#form_importusers .row #user_birthdate,
#form_importusers .rowl #user_birthdate,
#form_moduleeditor .row #user_birthdate,
#form_moduleeditor .rowl #user_birthdate,
#form_subjecteditor .row #user_birthdate,
#form_subjecteditor .rowl #user_birthdate,
#form_selectquestions .row #user_birthdate,
#form_selectquestions .rowl #user_birthdate,
#form_importquestions .row #user_birthdate,
#form_importquestions .rowl #user_birthdate,
#form_importsslcert .row #user_birthdate,
#form_importsslcert .rowl #user_birthdate,
#form_omrimport .row #user_birthdate,
#form_omrimport .rowl #user_birthdate,
#form_ratingeditor .row #user_birthdate,
#form_ratingeditor .rowl #user_birthdate,
#form_resultallusers .row #user_birthdate,
#form_resultallusers .rowl #user_birthdate,
#form_questioneditor .row #user_birthdate,
#form_questioneditor .rowl #user_birthdate,
#form_answereditor .row #user_birthdate,
#form_answereditor .rowl #user_birthdate,
#form_testeditor .row #user_birthdate,
#form_testeditor .rowl #user_birthdate {
  width: -moz-min-content;
  width: min-content;
  margin: 0 10px 0 0;
}
#form_usereditor .row #user_groups,
#form_usereditor .row #group_id,
#form_usereditor .row #searchterms,
#form_usereditor .row #display_mode, #form_usereditor .rowl #user_groups,
#form_usereditor .rowl #group_id,
#form_usereditor .rowl #searchterms,
#form_usereditor .rowl #display_mode,
#form_groupeditor .row #user_groups,
#form_groupeditor .row #group_id,
#form_groupeditor .row #searchterms,
#form_groupeditor .row #display_mode,
#form_groupeditor .rowl #user_groups,
#form_groupeditor .rowl #group_id,
#form_groupeditor .rowl #searchterms,
#form_groupeditor .rowl #display_mode,
#form_userselect .row #user_groups,
#form_userselect .row #group_id,
#form_userselect .row #searchterms,
#form_userselect .row #display_mode,
#form_userselect .rowl #user_groups,
#form_userselect .rowl #group_id,
#form_userselect .rowl #searchterms,
#form_userselect .rowl #display_mode,
#userselect .row #user_groups,
#userselect .row #group_id,
#userselect .row #searchterms,
#userselect .row #display_mode,
#userselect .rowl #user_groups,
#userselect .rowl #group_id,
#userselect .rowl #searchterms,
#userselect .rowl #display_mode,
#form_importusers .row #user_groups,
#form_importusers .row #group_id,
#form_importusers .row #searchterms,
#form_importusers .row #display_mode,
#form_importusers .rowl #user_groups,
#form_importusers .rowl #group_id,
#form_importusers .rowl #searchterms,
#form_importusers .rowl #display_mode,
#form_moduleeditor .row #user_groups,
#form_moduleeditor .row #group_id,
#form_moduleeditor .row #searchterms,
#form_moduleeditor .row #display_mode,
#form_moduleeditor .rowl #user_groups,
#form_moduleeditor .rowl #group_id,
#form_moduleeditor .rowl #searchterms,
#form_moduleeditor .rowl #display_mode,
#form_subjecteditor .row #user_groups,
#form_subjecteditor .row #group_id,
#form_subjecteditor .row #searchterms,
#form_subjecteditor .row #display_mode,
#form_subjecteditor .rowl #user_groups,
#form_subjecteditor .rowl #group_id,
#form_subjecteditor .rowl #searchterms,
#form_subjecteditor .rowl #display_mode,
#form_selectquestions .row #user_groups,
#form_selectquestions .row #group_id,
#form_selectquestions .row #searchterms,
#form_selectquestions .row #display_mode,
#form_selectquestions .rowl #user_groups,
#form_selectquestions .rowl #group_id,
#form_selectquestions .rowl #searchterms,
#form_selectquestions .rowl #display_mode,
#form_importquestions .row #user_groups,
#form_importquestions .row #group_id,
#form_importquestions .row #searchterms,
#form_importquestions .row #display_mode,
#form_importquestions .rowl #user_groups,
#form_importquestions .rowl #group_id,
#form_importquestions .rowl #searchterms,
#form_importquestions .rowl #display_mode,
#form_importsslcert .row #user_groups,
#form_importsslcert .row #group_id,
#form_importsslcert .row #searchterms,
#form_importsslcert .row #display_mode,
#form_importsslcert .rowl #user_groups,
#form_importsslcert .rowl #group_id,
#form_importsslcert .rowl #searchterms,
#form_importsslcert .rowl #display_mode,
#form_omrimport .row #user_groups,
#form_omrimport .row #group_id,
#form_omrimport .row #searchterms,
#form_omrimport .row #display_mode,
#form_omrimport .rowl #user_groups,
#form_omrimport .rowl #group_id,
#form_omrimport .rowl #searchterms,
#form_omrimport .rowl #display_mode,
#form_ratingeditor .row #user_groups,
#form_ratingeditor .row #group_id,
#form_ratingeditor .row #searchterms,
#form_ratingeditor .row #display_mode,
#form_ratingeditor .rowl #user_groups,
#form_ratingeditor .rowl #group_id,
#form_ratingeditor .rowl #searchterms,
#form_ratingeditor .rowl #display_mode,
#form_resultallusers .row #user_groups,
#form_resultallusers .row #group_id,
#form_resultallusers .row #searchterms,
#form_resultallusers .row #display_mode,
#form_resultallusers .rowl #user_groups,
#form_resultallusers .rowl #group_id,
#form_resultallusers .rowl #searchterms,
#form_resultallusers .rowl #display_mode,
#form_questioneditor .row #user_groups,
#form_questioneditor .row #group_id,
#form_questioneditor .row #searchterms,
#form_questioneditor .row #display_mode,
#form_questioneditor .rowl #user_groups,
#form_questioneditor .rowl #group_id,
#form_questioneditor .rowl #searchterms,
#form_questioneditor .rowl #display_mode,
#form_answereditor .row #user_groups,
#form_answereditor .row #group_id,
#form_answereditor .row #searchterms,
#form_answereditor .row #display_mode,
#form_answereditor .rowl #user_groups,
#form_answereditor .rowl #group_id,
#form_answereditor .rowl #searchterms,
#form_answereditor .rowl #display_mode,
#form_testeditor .row #user_groups,
#form_testeditor .row #group_id,
#form_testeditor .row #searchterms,
#form_testeditor .row #display_mode,
#form_testeditor .rowl #user_groups,
#form_testeditor .rowl #group_id,
#form_testeditor .rowl #searchterms,
#form_testeditor .rowl #display_mode {
  width: 100%;
  border: 1px solid var(--border_color);
  border-radius: 10px;
}
#form_usereditor .row #user_groups:focus-within,
#form_usereditor .row #group_id:focus-within,
#form_usereditor .row #searchterms:focus-within,
#form_usereditor .row #display_mode:focus-within, #form_usereditor .rowl #user_groups:focus-within,
#form_usereditor .rowl #group_id:focus-within,
#form_usereditor .rowl #searchterms:focus-within,
#form_usereditor .rowl #display_mode:focus-within,
#form_groupeditor .row #user_groups:focus-within,
#form_groupeditor .row #group_id:focus-within,
#form_groupeditor .row #searchterms:focus-within,
#form_groupeditor .row #display_mode:focus-within,
#form_groupeditor .rowl #user_groups:focus-within,
#form_groupeditor .rowl #group_id:focus-within,
#form_groupeditor .rowl #searchterms:focus-within,
#form_groupeditor .rowl #display_mode:focus-within,
#form_userselect .row #user_groups:focus-within,
#form_userselect .row #group_id:focus-within,
#form_userselect .row #searchterms:focus-within,
#form_userselect .row #display_mode:focus-within,
#form_userselect .rowl #user_groups:focus-within,
#form_userselect .rowl #group_id:focus-within,
#form_userselect .rowl #searchterms:focus-within,
#form_userselect .rowl #display_mode:focus-within,
#userselect .row #user_groups:focus-within,
#userselect .row #group_id:focus-within,
#userselect .row #searchterms:focus-within,
#userselect .row #display_mode:focus-within,
#userselect .rowl #user_groups:focus-within,
#userselect .rowl #group_id:focus-within,
#userselect .rowl #searchterms:focus-within,
#userselect .rowl #display_mode:focus-within,
#form_importusers .row #user_groups:focus-within,
#form_importusers .row #group_id:focus-within,
#form_importusers .row #searchterms:focus-within,
#form_importusers .row #display_mode:focus-within,
#form_importusers .rowl #user_groups:focus-within,
#form_importusers .rowl #group_id:focus-within,
#form_importusers .rowl #searchterms:focus-within,
#form_importusers .rowl #display_mode:focus-within,
#form_moduleeditor .row #user_groups:focus-within,
#form_moduleeditor .row #group_id:focus-within,
#form_moduleeditor .row #searchterms:focus-within,
#form_moduleeditor .row #display_mode:focus-within,
#form_moduleeditor .rowl #user_groups:focus-within,
#form_moduleeditor .rowl #group_id:focus-within,
#form_moduleeditor .rowl #searchterms:focus-within,
#form_moduleeditor .rowl #display_mode:focus-within,
#form_subjecteditor .row #user_groups:focus-within,
#form_subjecteditor .row #group_id:focus-within,
#form_subjecteditor .row #searchterms:focus-within,
#form_subjecteditor .row #display_mode:focus-within,
#form_subjecteditor .rowl #user_groups:focus-within,
#form_subjecteditor .rowl #group_id:focus-within,
#form_subjecteditor .rowl #searchterms:focus-within,
#form_subjecteditor .rowl #display_mode:focus-within,
#form_selectquestions .row #user_groups:focus-within,
#form_selectquestions .row #group_id:focus-within,
#form_selectquestions .row #searchterms:focus-within,
#form_selectquestions .row #display_mode:focus-within,
#form_selectquestions .rowl #user_groups:focus-within,
#form_selectquestions .rowl #group_id:focus-within,
#form_selectquestions .rowl #searchterms:focus-within,
#form_selectquestions .rowl #display_mode:focus-within,
#form_importquestions .row #user_groups:focus-within,
#form_importquestions .row #group_id:focus-within,
#form_importquestions .row #searchterms:focus-within,
#form_importquestions .row #display_mode:focus-within,
#form_importquestions .rowl #user_groups:focus-within,
#form_importquestions .rowl #group_id:focus-within,
#form_importquestions .rowl #searchterms:focus-within,
#form_importquestions .rowl #display_mode:focus-within,
#form_importsslcert .row #user_groups:focus-within,
#form_importsslcert .row #group_id:focus-within,
#form_importsslcert .row #searchterms:focus-within,
#form_importsslcert .row #display_mode:focus-within,
#form_importsslcert .rowl #user_groups:focus-within,
#form_importsslcert .rowl #group_id:focus-within,
#form_importsslcert .rowl #searchterms:focus-within,
#form_importsslcert .rowl #display_mode:focus-within,
#form_omrimport .row #user_groups:focus-within,
#form_omrimport .row #group_id:focus-within,
#form_omrimport .row #searchterms:focus-within,
#form_omrimport .row #display_mode:focus-within,
#form_omrimport .rowl #user_groups:focus-within,
#form_omrimport .rowl #group_id:focus-within,
#form_omrimport .rowl #searchterms:focus-within,
#form_omrimport .rowl #display_mode:focus-within,
#form_ratingeditor .row #user_groups:focus-within,
#form_ratingeditor .row #group_id:focus-within,
#form_ratingeditor .row #searchterms:focus-within,
#form_ratingeditor .row #display_mode:focus-within,
#form_ratingeditor .rowl #user_groups:focus-within,
#form_ratingeditor .rowl #group_id:focus-within,
#form_ratingeditor .rowl #searchterms:focus-within,
#form_ratingeditor .rowl #display_mode:focus-within,
#form_resultallusers .row #user_groups:focus-within,
#form_resultallusers .row #group_id:focus-within,
#form_resultallusers .row #searchterms:focus-within,
#form_resultallusers .row #display_mode:focus-within,
#form_resultallusers .rowl #user_groups:focus-within,
#form_resultallusers .rowl #group_id:focus-within,
#form_resultallusers .rowl #searchterms:focus-within,
#form_resultallusers .rowl #display_mode:focus-within,
#form_questioneditor .row #user_groups:focus-within,
#form_questioneditor .row #group_id:focus-within,
#form_questioneditor .row #searchterms:focus-within,
#form_questioneditor .row #display_mode:focus-within,
#form_questioneditor .rowl #user_groups:focus-within,
#form_questioneditor .rowl #group_id:focus-within,
#form_questioneditor .rowl #searchterms:focus-within,
#form_questioneditor .rowl #display_mode:focus-within,
#form_answereditor .row #user_groups:focus-within,
#form_answereditor .row #group_id:focus-within,
#form_answereditor .row #searchterms:focus-within,
#form_answereditor .row #display_mode:focus-within,
#form_answereditor .rowl #user_groups:focus-within,
#form_answereditor .rowl #group_id:focus-within,
#form_answereditor .rowl #searchterms:focus-within,
#form_answereditor .rowl #display_mode:focus-within,
#form_testeditor .row #user_groups:focus-within,
#form_testeditor .row #group_id:focus-within,
#form_testeditor .row #searchterms:focus-within,
#form_testeditor .row #display_mode:focus-within,
#form_testeditor .rowl #user_groups:focus-within,
#form_testeditor .rowl #group_id:focus-within,
#form_testeditor .rowl #searchterms:focus-within,
#form_testeditor .rowl #display_mode:focus-within {
  border-color: var(--main_color_lighter3);
}
#form_usereditor .row #group_id,
#form_usereditor .row #display_mode, #form_usereditor .rowl #group_id,
#form_usereditor .rowl #display_mode,
#form_groupeditor .row #group_id,
#form_groupeditor .row #display_mode,
#form_groupeditor .rowl #group_id,
#form_groupeditor .rowl #display_mode,
#form_userselect .row #group_id,
#form_userselect .row #display_mode,
#form_userselect .rowl #group_id,
#form_userselect .rowl #display_mode,
#userselect .row #group_id,
#userselect .row #display_mode,
#userselect .rowl #group_id,
#userselect .rowl #display_mode,
#form_importusers .row #group_id,
#form_importusers .row #display_mode,
#form_importusers .rowl #group_id,
#form_importusers .rowl #display_mode,
#form_moduleeditor .row #group_id,
#form_moduleeditor .row #display_mode,
#form_moduleeditor .rowl #group_id,
#form_moduleeditor .rowl #display_mode,
#form_subjecteditor .row #group_id,
#form_subjecteditor .row #display_mode,
#form_subjecteditor .rowl #group_id,
#form_subjecteditor .rowl #display_mode,
#form_selectquestions .row #group_id,
#form_selectquestions .row #display_mode,
#form_selectquestions .rowl #group_id,
#form_selectquestions .rowl #display_mode,
#form_importquestions .row #group_id,
#form_importquestions .row #display_mode,
#form_importquestions .rowl #group_id,
#form_importquestions .rowl #display_mode,
#form_importsslcert .row #group_id,
#form_importsslcert .row #display_mode,
#form_importsslcert .rowl #group_id,
#form_importsslcert .rowl #display_mode,
#form_omrimport .row #group_id,
#form_omrimport .row #display_mode,
#form_omrimport .rowl #group_id,
#form_omrimport .rowl #display_mode,
#form_ratingeditor .row #group_id,
#form_ratingeditor .row #display_mode,
#form_ratingeditor .rowl #group_id,
#form_ratingeditor .rowl #display_mode,
#form_resultallusers .row #group_id,
#form_resultallusers .row #display_mode,
#form_resultallusers .rowl #group_id,
#form_resultallusers .rowl #display_mode,
#form_questioneditor .row #group_id,
#form_questioneditor .row #display_mode,
#form_questioneditor .rowl #group_id,
#form_questioneditor .rowl #display_mode,
#form_answereditor .row #group_id,
#form_answereditor .row #display_mode,
#form_answereditor .rowl #group_id,
#form_answereditor .rowl #display_mode,
#form_testeditor .row #group_id,
#form_testeditor .row #display_mode,
#form_testeditor .rowl #group_id,
#form_testeditor .rowl #display_mode {
  padding: 14px 10px;
}
#form_usereditor .row #searchterms, #form_usereditor .rowl #searchterms,
#form_groupeditor .row #searchterms,
#form_groupeditor .rowl #searchterms,
#form_userselect .row #searchterms,
#form_userselect .rowl #searchterms,
#userselect .row #searchterms,
#userselect .rowl #searchterms,
#form_importusers .row #searchterms,
#form_importusers .rowl #searchterms,
#form_moduleeditor .row #searchterms,
#form_moduleeditor .rowl #searchterms,
#form_subjecteditor .row #searchterms,
#form_subjecteditor .rowl #searchterms,
#form_selectquestions .row #searchterms,
#form_selectquestions .rowl #searchterms,
#form_importquestions .row #searchterms,
#form_importquestions .rowl #searchterms,
#form_importsslcert .row #searchterms,
#form_importsslcert .rowl #searchterms,
#form_omrimport .row #searchterms,
#form_omrimport .rowl #searchterms,
#form_ratingeditor .row #searchterms,
#form_ratingeditor .rowl #searchterms,
#form_resultallusers .row #searchterms,
#form_resultallusers .rowl #searchterms,
#form_questioneditor .row #searchterms,
#form_questioneditor .rowl #searchterms,
#form_answereditor .row #searchterms,
#form_answereditor .rowl #searchterms,
#form_testeditor .row #searchterms,
#form_testeditor .rowl #searchterms {
  width: auto;
  padding: 9px 10px;
}
#form_usereditor .row #module_enabled,
#form_usereditor .row #subject_enabled,
#form_usereditor .row #ssl_enabled,
#form_usereditor .row #overwrite,
#form_usereditor .row #show_graph,
#form_usereditor .row #question_fullscreen,
#form_usereditor .row #question_inline_answers,
#form_usereditor .row #question_auto_next,
#form_usereditor .row #question_enabled,
#form_usereditor .row #answer_isright,
#form_usereditor .row #answer_enabled, #form_usereditor .rowl #module_enabled,
#form_usereditor .rowl #subject_enabled,
#form_usereditor .rowl #ssl_enabled,
#form_usereditor .rowl #overwrite,
#form_usereditor .rowl #show_graph,
#form_usereditor .rowl #question_fullscreen,
#form_usereditor .rowl #question_inline_answers,
#form_usereditor .rowl #question_auto_next,
#form_usereditor .rowl #question_enabled,
#form_usereditor .rowl #answer_isright,
#form_usereditor .rowl #answer_enabled,
#form_groupeditor .row #module_enabled,
#form_groupeditor .row #subject_enabled,
#form_groupeditor .row #ssl_enabled,
#form_groupeditor .row #overwrite,
#form_groupeditor .row #show_graph,
#form_groupeditor .row #question_fullscreen,
#form_groupeditor .row #question_inline_answers,
#form_groupeditor .row #question_auto_next,
#form_groupeditor .row #question_enabled,
#form_groupeditor .row #answer_isright,
#form_groupeditor .row #answer_enabled,
#form_groupeditor .rowl #module_enabled,
#form_groupeditor .rowl #subject_enabled,
#form_groupeditor .rowl #ssl_enabled,
#form_groupeditor .rowl #overwrite,
#form_groupeditor .rowl #show_graph,
#form_groupeditor .rowl #question_fullscreen,
#form_groupeditor .rowl #question_inline_answers,
#form_groupeditor .rowl #question_auto_next,
#form_groupeditor .rowl #question_enabled,
#form_groupeditor .rowl #answer_isright,
#form_groupeditor .rowl #answer_enabled,
#form_userselect .row #module_enabled,
#form_userselect .row #subject_enabled,
#form_userselect .row #ssl_enabled,
#form_userselect .row #overwrite,
#form_userselect .row #show_graph,
#form_userselect .row #question_fullscreen,
#form_userselect .row #question_inline_answers,
#form_userselect .row #question_auto_next,
#form_userselect .row #question_enabled,
#form_userselect .row #answer_isright,
#form_userselect .row #answer_enabled,
#form_userselect .rowl #module_enabled,
#form_userselect .rowl #subject_enabled,
#form_userselect .rowl #ssl_enabled,
#form_userselect .rowl #overwrite,
#form_userselect .rowl #show_graph,
#form_userselect .rowl #question_fullscreen,
#form_userselect .rowl #question_inline_answers,
#form_userselect .rowl #question_auto_next,
#form_userselect .rowl #question_enabled,
#form_userselect .rowl #answer_isright,
#form_userselect .rowl #answer_enabled,
#userselect .row #module_enabled,
#userselect .row #subject_enabled,
#userselect .row #ssl_enabled,
#userselect .row #overwrite,
#userselect .row #show_graph,
#userselect .row #question_fullscreen,
#userselect .row #question_inline_answers,
#userselect .row #question_auto_next,
#userselect .row #question_enabled,
#userselect .row #answer_isright,
#userselect .row #answer_enabled,
#userselect .rowl #module_enabled,
#userselect .rowl #subject_enabled,
#userselect .rowl #ssl_enabled,
#userselect .rowl #overwrite,
#userselect .rowl #show_graph,
#userselect .rowl #question_fullscreen,
#userselect .rowl #question_inline_answers,
#userselect .rowl #question_auto_next,
#userselect .rowl #question_enabled,
#userselect .rowl #answer_isright,
#userselect .rowl #answer_enabled,
#form_importusers .row #module_enabled,
#form_importusers .row #subject_enabled,
#form_importusers .row #ssl_enabled,
#form_importusers .row #overwrite,
#form_importusers .row #show_graph,
#form_importusers .row #question_fullscreen,
#form_importusers .row #question_inline_answers,
#form_importusers .row #question_auto_next,
#form_importusers .row #question_enabled,
#form_importusers .row #answer_isright,
#form_importusers .row #answer_enabled,
#form_importusers .rowl #module_enabled,
#form_importusers .rowl #subject_enabled,
#form_importusers .rowl #ssl_enabled,
#form_importusers .rowl #overwrite,
#form_importusers .rowl #show_graph,
#form_importusers .rowl #question_fullscreen,
#form_importusers .rowl #question_inline_answers,
#form_importusers .rowl #question_auto_next,
#form_importusers .rowl #question_enabled,
#form_importusers .rowl #answer_isright,
#form_importusers .rowl #answer_enabled,
#form_moduleeditor .row #module_enabled,
#form_moduleeditor .row #subject_enabled,
#form_moduleeditor .row #ssl_enabled,
#form_moduleeditor .row #overwrite,
#form_moduleeditor .row #show_graph,
#form_moduleeditor .row #question_fullscreen,
#form_moduleeditor .row #question_inline_answers,
#form_moduleeditor .row #question_auto_next,
#form_moduleeditor .row #question_enabled,
#form_moduleeditor .row #answer_isright,
#form_moduleeditor .row #answer_enabled,
#form_moduleeditor .rowl #module_enabled,
#form_moduleeditor .rowl #subject_enabled,
#form_moduleeditor .rowl #ssl_enabled,
#form_moduleeditor .rowl #overwrite,
#form_moduleeditor .rowl #show_graph,
#form_moduleeditor .rowl #question_fullscreen,
#form_moduleeditor .rowl #question_inline_answers,
#form_moduleeditor .rowl #question_auto_next,
#form_moduleeditor .rowl #question_enabled,
#form_moduleeditor .rowl #answer_isright,
#form_moduleeditor .rowl #answer_enabled,
#form_subjecteditor .row #module_enabled,
#form_subjecteditor .row #subject_enabled,
#form_subjecteditor .row #ssl_enabled,
#form_subjecteditor .row #overwrite,
#form_subjecteditor .row #show_graph,
#form_subjecteditor .row #question_fullscreen,
#form_subjecteditor .row #question_inline_answers,
#form_subjecteditor .row #question_auto_next,
#form_subjecteditor .row #question_enabled,
#form_subjecteditor .row #answer_isright,
#form_subjecteditor .row #answer_enabled,
#form_subjecteditor .rowl #module_enabled,
#form_subjecteditor .rowl #subject_enabled,
#form_subjecteditor .rowl #ssl_enabled,
#form_subjecteditor .rowl #overwrite,
#form_subjecteditor .rowl #show_graph,
#form_subjecteditor .rowl #question_fullscreen,
#form_subjecteditor .rowl #question_inline_answers,
#form_subjecteditor .rowl #question_auto_next,
#form_subjecteditor .rowl #question_enabled,
#form_subjecteditor .rowl #answer_isright,
#form_subjecteditor .rowl #answer_enabled,
#form_selectquestions .row #module_enabled,
#form_selectquestions .row #subject_enabled,
#form_selectquestions .row #ssl_enabled,
#form_selectquestions .row #overwrite,
#form_selectquestions .row #show_graph,
#form_selectquestions .row #question_fullscreen,
#form_selectquestions .row #question_inline_answers,
#form_selectquestions .row #question_auto_next,
#form_selectquestions .row #question_enabled,
#form_selectquestions .row #answer_isright,
#form_selectquestions .row #answer_enabled,
#form_selectquestions .rowl #module_enabled,
#form_selectquestions .rowl #subject_enabled,
#form_selectquestions .rowl #ssl_enabled,
#form_selectquestions .rowl #overwrite,
#form_selectquestions .rowl #show_graph,
#form_selectquestions .rowl #question_fullscreen,
#form_selectquestions .rowl #question_inline_answers,
#form_selectquestions .rowl #question_auto_next,
#form_selectquestions .rowl #question_enabled,
#form_selectquestions .rowl #answer_isright,
#form_selectquestions .rowl #answer_enabled,
#form_importquestions .row #module_enabled,
#form_importquestions .row #subject_enabled,
#form_importquestions .row #ssl_enabled,
#form_importquestions .row #overwrite,
#form_importquestions .row #show_graph,
#form_importquestions .row #question_fullscreen,
#form_importquestions .row #question_inline_answers,
#form_importquestions .row #question_auto_next,
#form_importquestions .row #question_enabled,
#form_importquestions .row #answer_isright,
#form_importquestions .row #answer_enabled,
#form_importquestions .rowl #module_enabled,
#form_importquestions .rowl #subject_enabled,
#form_importquestions .rowl #ssl_enabled,
#form_importquestions .rowl #overwrite,
#form_importquestions .rowl #show_graph,
#form_importquestions .rowl #question_fullscreen,
#form_importquestions .rowl #question_inline_answers,
#form_importquestions .rowl #question_auto_next,
#form_importquestions .rowl #question_enabled,
#form_importquestions .rowl #answer_isright,
#form_importquestions .rowl #answer_enabled,
#form_importsslcert .row #module_enabled,
#form_importsslcert .row #subject_enabled,
#form_importsslcert .row #ssl_enabled,
#form_importsslcert .row #overwrite,
#form_importsslcert .row #show_graph,
#form_importsslcert .row #question_fullscreen,
#form_importsslcert .row #question_inline_answers,
#form_importsslcert .row #question_auto_next,
#form_importsslcert .row #question_enabled,
#form_importsslcert .row #answer_isright,
#form_importsslcert .row #answer_enabled,
#form_importsslcert .rowl #module_enabled,
#form_importsslcert .rowl #subject_enabled,
#form_importsslcert .rowl #ssl_enabled,
#form_importsslcert .rowl #overwrite,
#form_importsslcert .rowl #show_graph,
#form_importsslcert .rowl #question_fullscreen,
#form_importsslcert .rowl #question_inline_answers,
#form_importsslcert .rowl #question_auto_next,
#form_importsslcert .rowl #question_enabled,
#form_importsslcert .rowl #answer_isright,
#form_importsslcert .rowl #answer_enabled,
#form_omrimport .row #module_enabled,
#form_omrimport .row #subject_enabled,
#form_omrimport .row #ssl_enabled,
#form_omrimport .row #overwrite,
#form_omrimport .row #show_graph,
#form_omrimport .row #question_fullscreen,
#form_omrimport .row #question_inline_answers,
#form_omrimport .row #question_auto_next,
#form_omrimport .row #question_enabled,
#form_omrimport .row #answer_isright,
#form_omrimport .row #answer_enabled,
#form_omrimport .rowl #module_enabled,
#form_omrimport .rowl #subject_enabled,
#form_omrimport .rowl #ssl_enabled,
#form_omrimport .rowl #overwrite,
#form_omrimport .rowl #show_graph,
#form_omrimport .rowl #question_fullscreen,
#form_omrimport .rowl #question_inline_answers,
#form_omrimport .rowl #question_auto_next,
#form_omrimport .rowl #question_enabled,
#form_omrimport .rowl #answer_isright,
#form_omrimport .rowl #answer_enabled,
#form_ratingeditor .row #module_enabled,
#form_ratingeditor .row #subject_enabled,
#form_ratingeditor .row #ssl_enabled,
#form_ratingeditor .row #overwrite,
#form_ratingeditor .row #show_graph,
#form_ratingeditor .row #question_fullscreen,
#form_ratingeditor .row #question_inline_answers,
#form_ratingeditor .row #question_auto_next,
#form_ratingeditor .row #question_enabled,
#form_ratingeditor .row #answer_isright,
#form_ratingeditor .row #answer_enabled,
#form_ratingeditor .rowl #module_enabled,
#form_ratingeditor .rowl #subject_enabled,
#form_ratingeditor .rowl #ssl_enabled,
#form_ratingeditor .rowl #overwrite,
#form_ratingeditor .rowl #show_graph,
#form_ratingeditor .rowl #question_fullscreen,
#form_ratingeditor .rowl #question_inline_answers,
#form_ratingeditor .rowl #question_auto_next,
#form_ratingeditor .rowl #question_enabled,
#form_ratingeditor .rowl #answer_isright,
#form_ratingeditor .rowl #answer_enabled,
#form_resultallusers .row #module_enabled,
#form_resultallusers .row #subject_enabled,
#form_resultallusers .row #ssl_enabled,
#form_resultallusers .row #overwrite,
#form_resultallusers .row #show_graph,
#form_resultallusers .row #question_fullscreen,
#form_resultallusers .row #question_inline_answers,
#form_resultallusers .row #question_auto_next,
#form_resultallusers .row #question_enabled,
#form_resultallusers .row #answer_isright,
#form_resultallusers .row #answer_enabled,
#form_resultallusers .rowl #module_enabled,
#form_resultallusers .rowl #subject_enabled,
#form_resultallusers .rowl #ssl_enabled,
#form_resultallusers .rowl #overwrite,
#form_resultallusers .rowl #show_graph,
#form_resultallusers .rowl #question_fullscreen,
#form_resultallusers .rowl #question_inline_answers,
#form_resultallusers .rowl #question_auto_next,
#form_resultallusers .rowl #question_enabled,
#form_resultallusers .rowl #answer_isright,
#form_resultallusers .rowl #answer_enabled,
#form_questioneditor .row #module_enabled,
#form_questioneditor .row #subject_enabled,
#form_questioneditor .row #ssl_enabled,
#form_questioneditor .row #overwrite,
#form_questioneditor .row #show_graph,
#form_questioneditor .row #question_fullscreen,
#form_questioneditor .row #question_inline_answers,
#form_questioneditor .row #question_auto_next,
#form_questioneditor .row #question_enabled,
#form_questioneditor .row #answer_isright,
#form_questioneditor .row #answer_enabled,
#form_questioneditor .rowl #module_enabled,
#form_questioneditor .rowl #subject_enabled,
#form_questioneditor .rowl #ssl_enabled,
#form_questioneditor .rowl #overwrite,
#form_questioneditor .rowl #show_graph,
#form_questioneditor .rowl #question_fullscreen,
#form_questioneditor .rowl #question_inline_answers,
#form_questioneditor .rowl #question_auto_next,
#form_questioneditor .rowl #question_enabled,
#form_questioneditor .rowl #answer_isright,
#form_questioneditor .rowl #answer_enabled,
#form_answereditor .row #module_enabled,
#form_answereditor .row #subject_enabled,
#form_answereditor .row #ssl_enabled,
#form_answereditor .row #overwrite,
#form_answereditor .row #show_graph,
#form_answereditor .row #question_fullscreen,
#form_answereditor .row #question_inline_answers,
#form_answereditor .row #question_auto_next,
#form_answereditor .row #question_enabled,
#form_answereditor .row #answer_isright,
#form_answereditor .row #answer_enabled,
#form_answereditor .rowl #module_enabled,
#form_answereditor .rowl #subject_enabled,
#form_answereditor .rowl #ssl_enabled,
#form_answereditor .rowl #overwrite,
#form_answereditor .rowl #show_graph,
#form_answereditor .rowl #question_fullscreen,
#form_answereditor .rowl #question_inline_answers,
#form_answereditor .rowl #question_auto_next,
#form_answereditor .rowl #question_enabled,
#form_answereditor .rowl #answer_isright,
#form_answereditor .rowl #answer_enabled,
#form_testeditor .row #module_enabled,
#form_testeditor .row #subject_enabled,
#form_testeditor .row #ssl_enabled,
#form_testeditor .row #overwrite,
#form_testeditor .row #show_graph,
#form_testeditor .row #question_fullscreen,
#form_testeditor .row #question_inline_answers,
#form_testeditor .row #question_auto_next,
#form_testeditor .row #question_enabled,
#form_testeditor .row #answer_isright,
#form_testeditor .row #answer_enabled,
#form_testeditor .rowl #module_enabled,
#form_testeditor .rowl #subject_enabled,
#form_testeditor .rowl #ssl_enabled,
#form_testeditor .rowl #overwrite,
#form_testeditor .rowl #show_graph,
#form_testeditor .rowl #question_fullscreen,
#form_testeditor .rowl #question_inline_answers,
#form_testeditor .rowl #question_auto_next,
#form_testeditor .rowl #question_enabled,
#form_testeditor .rowl #answer_isright,
#form_testeditor .rowl #answer_enabled {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
#form_usereditor .row.with_text_editor .label::after, #form_usereditor .rowl.with_text_editor .label::after,
#form_groupeditor .row.with_text_editor .label::after,
#form_groupeditor .rowl.with_text_editor .label::after,
#form_userselect .row.with_text_editor .label::after,
#form_userselect .rowl.with_text_editor .label::after,
#userselect .row.with_text_editor .label::after,
#userselect .rowl.with_text_editor .label::after,
#form_importusers .row.with_text_editor .label::after,
#form_importusers .rowl.with_text_editor .label::after,
#form_moduleeditor .row.with_text_editor .label::after,
#form_moduleeditor .rowl.with_text_editor .label::after,
#form_subjecteditor .row.with_text_editor .label::after,
#form_subjecteditor .rowl.with_text_editor .label::after,
#form_selectquestions .row.with_text_editor .label::after,
#form_selectquestions .rowl.with_text_editor .label::after,
#form_importquestions .row.with_text_editor .label::after,
#form_importquestions .rowl.with_text_editor .label::after,
#form_importsslcert .row.with_text_editor .label::after,
#form_importsslcert .rowl.with_text_editor .label::after,
#form_omrimport .row.with_text_editor .label::after,
#form_omrimport .rowl.with_text_editor .label::after,
#form_ratingeditor .row.with_text_editor .label::after,
#form_ratingeditor .rowl.with_text_editor .label::after,
#form_resultallusers .row.with_text_editor .label::after,
#form_resultallusers .rowl.with_text_editor .label::after,
#form_questioneditor .row.with_text_editor .label::after,
#form_questioneditor .rowl.with_text_editor .label::after,
#form_answereditor .row.with_text_editor .label::after,
#form_answereditor .rowl.with_text_editor .label::after,
#form_testeditor .row.with_text_editor .label::after,
#form_testeditor .rowl.with_text_editor .label::after {
  content: "";
}
#form_usereditor .row.with_text_editor .label #showexplanationarea .xmlbutton, #form_usereditor .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_groupeditor .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_groupeditor .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_userselect .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_userselect .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#userselect .row.with_text_editor .label #showexplanationarea .xmlbutton,
#userselect .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_importusers .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_importusers .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_moduleeditor .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_moduleeditor .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_subjecteditor .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_subjecteditor .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_selectquestions .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_selectquestions .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_importquestions .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_importquestions .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_importsslcert .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_importsslcert .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_omrimport .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_omrimport .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_ratingeditor .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_ratingeditor .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_resultallusers .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_resultallusers .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_questioneditor .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_questioneditor .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_answereditor .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_answereditor .rowl.with_text_editor .label #showexplanationarea .xmlbutton,
#form_testeditor .row.with_text_editor .label #showexplanationarea .xmlbutton,
#form_testeditor .rowl.with_text_editor .label #showexplanationarea .xmlbutton {
  min-width: 100px;
  margin: 6px 0 0 6px !important;
  padding: 2px 5px !important;
}
#form_usereditor .row.with_text_editor .label #hideexplanationarea .xmlbutton, #form_usereditor .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_groupeditor .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_groupeditor .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_userselect .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_userselect .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#userselect .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#userselect .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_importusers .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_importusers .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_moduleeditor .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_moduleeditor .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_subjecteditor .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_subjecteditor .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_selectquestions .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_selectquestions .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_importquestions .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_importquestions .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_importsslcert .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_importsslcert .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_omrimport .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_omrimport .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_ratingeditor .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_ratingeditor .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_resultallusers .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_resultallusers .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_questioneditor .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_questioneditor .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_answereditor .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_answereditor .rowl.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_testeditor .row.with_text_editor .label #hideexplanationarea .xmlbutton,
#form_testeditor .rowl.with_text_editor .label #hideexplanationarea .xmlbutton {
  min-width: 80px;
  margin: 6px 0 0 6px !important;
  padding: 2px 5px !important;
}
#form_usereditor .row.with_text_editor .formw, #form_usereditor .rowl.with_text_editor .formw,
#form_groupeditor .row.with_text_editor .formw,
#form_groupeditor .rowl.with_text_editor .formw,
#form_userselect .row.with_text_editor .formw,
#form_userselect .rowl.with_text_editor .formw,
#userselect .row.with_text_editor .formw,
#userselect .rowl.with_text_editor .formw,
#form_importusers .row.with_text_editor .formw,
#form_importusers .rowl.with_text_editor .formw,
#form_moduleeditor .row.with_text_editor .formw,
#form_moduleeditor .rowl.with_text_editor .formw,
#form_subjecteditor .row.with_text_editor .formw,
#form_subjecteditor .rowl.with_text_editor .formw,
#form_selectquestions .row.with_text_editor .formw,
#form_selectquestions .rowl.with_text_editor .formw,
#form_importquestions .row.with_text_editor .formw,
#form_importquestions .rowl.with_text_editor .formw,
#form_importsslcert .row.with_text_editor .formw,
#form_importsslcert .rowl.with_text_editor .formw,
#form_omrimport .row.with_text_editor .formw,
#form_omrimport .rowl.with_text_editor .formw,
#form_ratingeditor .row.with_text_editor .formw,
#form_ratingeditor .rowl.with_text_editor .formw,
#form_resultallusers .row.with_text_editor .formw,
#form_resultallusers .rowl.with_text_editor .formw,
#form_questioneditor .row.with_text_editor .formw,
#form_questioneditor .rowl.with_text_editor .formw,
#form_answereditor .row.with_text_editor .formw,
#form_answereditor .rowl.with_text_editor .formw,
#form_testeditor .row.with_text_editor .formw,
#form_testeditor .rowl.with_text_editor .formw {
  padding: 10px;
  background-color: var(--border_color_lighter4);
  border: 1px solid var(--border_color_lighter) !important;
  border-radius: 14px !important;
}
#form_usereditor .row.with_text_editor .formw textarea, #form_usereditor .rowl.with_text_editor .formw textarea,
#form_groupeditor .row.with_text_editor .formw textarea,
#form_groupeditor .rowl.with_text_editor .formw textarea,
#form_userselect .row.with_text_editor .formw textarea,
#form_userselect .rowl.with_text_editor .formw textarea,
#userselect .row.with_text_editor .formw textarea,
#userselect .rowl.with_text_editor .formw textarea,
#form_importusers .row.with_text_editor .formw textarea,
#form_importusers .rowl.with_text_editor .formw textarea,
#form_moduleeditor .row.with_text_editor .formw textarea,
#form_moduleeditor .rowl.with_text_editor .formw textarea,
#form_subjecteditor .row.with_text_editor .formw textarea,
#form_subjecteditor .rowl.with_text_editor .formw textarea,
#form_selectquestions .row.with_text_editor .formw textarea,
#form_selectquestions .rowl.with_text_editor .formw textarea,
#form_importquestions .row.with_text_editor .formw textarea,
#form_importquestions .rowl.with_text_editor .formw textarea,
#form_importsslcert .row.with_text_editor .formw textarea,
#form_importsslcert .rowl.with_text_editor .formw textarea,
#form_omrimport .row.with_text_editor .formw textarea,
#form_omrimport .rowl.with_text_editor .formw textarea,
#form_ratingeditor .row.with_text_editor .formw textarea,
#form_ratingeditor .rowl.with_text_editor .formw textarea,
#form_resultallusers .row.with_text_editor .formw textarea,
#form_resultallusers .rowl.with_text_editor .formw textarea,
#form_questioneditor .row.with_text_editor .formw textarea,
#form_questioneditor .rowl.with_text_editor .formw textarea,
#form_answereditor .row.with_text_editor .formw textarea,
#form_answereditor .rowl.with_text_editor .formw textarea,
#form_testeditor .row.with_text_editor .formw textarea,
#form_testeditor .rowl.with_text_editor .formw textarea {
  height: 160px;
  padding: 10px 12px;
  border: 1px solid var(--border_color) !important;
  border-radius: 10px !important;
  font-size: 100%;
}
#form_usereditor .row.with_text_editor .formw textarea:focus-within, #form_usereditor .rowl.with_text_editor .formw textarea:focus-within,
#form_groupeditor .row.with_text_editor .formw textarea:focus-within,
#form_groupeditor .rowl.with_text_editor .formw textarea:focus-within,
#form_userselect .row.with_text_editor .formw textarea:focus-within,
#form_userselect .rowl.with_text_editor .formw textarea:focus-within,
#userselect .row.with_text_editor .formw textarea:focus-within,
#userselect .rowl.with_text_editor .formw textarea:focus-within,
#form_importusers .row.with_text_editor .formw textarea:focus-within,
#form_importusers .rowl.with_text_editor .formw textarea:focus-within,
#form_moduleeditor .row.with_text_editor .formw textarea:focus-within,
#form_moduleeditor .rowl.with_text_editor .formw textarea:focus-within,
#form_subjecteditor .row.with_text_editor .formw textarea:focus-within,
#form_subjecteditor .rowl.with_text_editor .formw textarea:focus-within,
#form_selectquestions .row.with_text_editor .formw textarea:focus-within,
#form_selectquestions .rowl.with_text_editor .formw textarea:focus-within,
#form_importquestions .row.with_text_editor .formw textarea:focus-within,
#form_importquestions .rowl.with_text_editor .formw textarea:focus-within,
#form_importsslcert .row.with_text_editor .formw textarea:focus-within,
#form_importsslcert .rowl.with_text_editor .formw textarea:focus-within,
#form_omrimport .row.with_text_editor .formw textarea:focus-within,
#form_omrimport .rowl.with_text_editor .formw textarea:focus-within,
#form_ratingeditor .row.with_text_editor .formw textarea:focus-within,
#form_ratingeditor .rowl.with_text_editor .formw textarea:focus-within,
#form_resultallusers .row.with_text_editor .formw textarea:focus-within,
#form_resultallusers .rowl.with_text_editor .formw textarea:focus-within,
#form_questioneditor .row.with_text_editor .formw textarea:focus-within,
#form_questioneditor .rowl.with_text_editor .formw textarea:focus-within,
#form_answereditor .row.with_text_editor .formw textarea:focus-within,
#form_answereditor .rowl.with_text_editor .formw textarea:focus-within,
#form_testeditor .row.with_text_editor .formw textarea:focus-within,
#form_testeditor .rowl.with_text_editor .formw textarea:focus-within {
  border-color: var(--main_color_lighter3) !important;
}
#form_usereditor .row.with_text_editor .formw a, #form_usereditor .rowl.with_text_editor .formw a,
#form_groupeditor .row.with_text_editor .formw a,
#form_groupeditor .rowl.with_text_editor .formw a,
#form_userselect .row.with_text_editor .formw a,
#form_userselect .rowl.with_text_editor .formw a,
#userselect .row.with_text_editor .formw a,
#userselect .rowl.with_text_editor .formw a,
#form_importusers .row.with_text_editor .formw a,
#form_importusers .rowl.with_text_editor .formw a,
#form_moduleeditor .row.with_text_editor .formw a,
#form_moduleeditor .rowl.with_text_editor .formw a,
#form_subjecteditor .row.with_text_editor .formw a,
#form_subjecteditor .rowl.with_text_editor .formw a,
#form_selectquestions .row.with_text_editor .formw a,
#form_selectquestions .rowl.with_text_editor .formw a,
#form_importquestions .row.with_text_editor .formw a,
#form_importquestions .rowl.with_text_editor .formw a,
#form_importsslcert .row.with_text_editor .formw a,
#form_importsslcert .rowl.with_text_editor .formw a,
#form_omrimport .row.with_text_editor .formw a,
#form_omrimport .rowl.with_text_editor .formw a,
#form_ratingeditor .row.with_text_editor .formw a,
#form_ratingeditor .rowl.with_text_editor .formw a,
#form_resultallusers .row.with_text_editor .formw a,
#form_resultallusers .rowl.with_text_editor .formw a,
#form_questioneditor .row.with_text_editor .formw a,
#form_questioneditor .rowl.with_text_editor .formw a,
#form_answereditor .row.with_text_editor .formw a,
#form_answereditor .rowl.with_text_editor .formw a,
#form_testeditor .row.with_text_editor .formw a,
#form_testeditor .rowl.with_text_editor .formw a {
  width: 35px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
}
#form_usereditor .row.with_text_editor .formw a img, #form_usereditor .rowl.with_text_editor .formw a img,
#form_groupeditor .row.with_text_editor .formw a img,
#form_groupeditor .rowl.with_text_editor .formw a img,
#form_userselect .row.with_text_editor .formw a img,
#form_userselect .rowl.with_text_editor .formw a img,
#userselect .row.with_text_editor .formw a img,
#userselect .rowl.with_text_editor .formw a img,
#form_importusers .row.with_text_editor .formw a img,
#form_importusers .rowl.with_text_editor .formw a img,
#form_moduleeditor .row.with_text_editor .formw a img,
#form_moduleeditor .rowl.with_text_editor .formw a img,
#form_subjecteditor .row.with_text_editor .formw a img,
#form_subjecteditor .rowl.with_text_editor .formw a img,
#form_selectquestions .row.with_text_editor .formw a img,
#form_selectquestions .rowl.with_text_editor .formw a img,
#form_importquestions .row.with_text_editor .formw a img,
#form_importquestions .rowl.with_text_editor .formw a img,
#form_importsslcert .row.with_text_editor .formw a img,
#form_importsslcert .rowl.with_text_editor .formw a img,
#form_omrimport .row.with_text_editor .formw a img,
#form_omrimport .rowl.with_text_editor .formw a img,
#form_ratingeditor .row.with_text_editor .formw a img,
#form_ratingeditor .rowl.with_text_editor .formw a img,
#form_resultallusers .row.with_text_editor .formw a img,
#form_resultallusers .rowl.with_text_editor .formw a img,
#form_questioneditor .row.with_text_editor .formw a img,
#form_questioneditor .rowl.with_text_editor .formw a img,
#form_answereditor .row.with_text_editor .formw a img,
#form_answereditor .rowl.with_text_editor .formw a img,
#form_testeditor .row.with_text_editor .formw a img,
#form_testeditor .rowl.with_text_editor .formw a img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border-color: var(--border_color_darker);
}
#form_usereditor .row.with_text_editor .formw a img:hover, #form_usereditor .rowl.with_text_editor .formw a img:hover,
#form_groupeditor .row.with_text_editor .formw a img:hover,
#form_groupeditor .rowl.with_text_editor .formw a img:hover,
#form_userselect .row.with_text_editor .formw a img:hover,
#form_userselect .rowl.with_text_editor .formw a img:hover,
#userselect .row.with_text_editor .formw a img:hover,
#userselect .rowl.with_text_editor .formw a img:hover,
#form_importusers .row.with_text_editor .formw a img:hover,
#form_importusers .rowl.with_text_editor .formw a img:hover,
#form_moduleeditor .row.with_text_editor .formw a img:hover,
#form_moduleeditor .rowl.with_text_editor .formw a img:hover,
#form_subjecteditor .row.with_text_editor .formw a img:hover,
#form_subjecteditor .rowl.with_text_editor .formw a img:hover,
#form_selectquestions .row.with_text_editor .formw a img:hover,
#form_selectquestions .rowl.with_text_editor .formw a img:hover,
#form_importquestions .row.with_text_editor .formw a img:hover,
#form_importquestions .rowl.with_text_editor .formw a img:hover,
#form_importsslcert .row.with_text_editor .formw a img:hover,
#form_importsslcert .rowl.with_text_editor .formw a img:hover,
#form_omrimport .row.with_text_editor .formw a img:hover,
#form_omrimport .rowl.with_text_editor .formw a img:hover,
#form_ratingeditor .row.with_text_editor .formw a img:hover,
#form_ratingeditor .rowl.with_text_editor .formw a img:hover,
#form_resultallusers .row.with_text_editor .formw a img:hover,
#form_resultallusers .rowl.with_text_editor .formw a img:hover,
#form_questioneditor .row.with_text_editor .formw a img:hover,
#form_questioneditor .rowl.with_text_editor .formw a img:hover,
#form_answereditor .row.with_text_editor .formw a img:hover,
#form_answereditor .rowl.with_text_editor .formw a img:hover,
#form_testeditor .row.with_text_editor .formw a img:hover,
#form_testeditor .rowl.with_text_editor .formw a img:hover {
  background-color: var(--main_color_lighter5);
}
#form_usereditor .row.with_text_editor .formw #font_size_subject_description,
#form_usereditor .row.with_text_editor .formw #font_subject_description,
#form_usereditor .row.with_text_editor .formw #font_size_question_description,
#form_usereditor .row.with_text_editor .formw #font_question_description,
#form_usereditor .row.with_text_editor .formw #font_size_question_explanation,
#form_usereditor .row.with_text_editor .formw #font_question_explanation,
#form_usereditor .row.with_text_editor .formw #font_size_answer_description,
#form_usereditor .row.with_text_editor .formw #font_answer_description,
#form_usereditor .row.with_text_editor .formw #font_size_answer_explanation,
#form_usereditor .row.with_text_editor .formw #font_answer_explanation, #form_usereditor .rowl.with_text_editor .formw #font_size_subject_description,
#form_usereditor .rowl.with_text_editor .formw #font_subject_description,
#form_usereditor .rowl.with_text_editor .formw #font_size_question_description,
#form_usereditor .rowl.with_text_editor .formw #font_question_description,
#form_usereditor .rowl.with_text_editor .formw #font_size_question_explanation,
#form_usereditor .rowl.with_text_editor .formw #font_question_explanation,
#form_usereditor .rowl.with_text_editor .formw #font_size_answer_description,
#form_usereditor .rowl.with_text_editor .formw #font_answer_description,
#form_usereditor .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_usereditor .rowl.with_text_editor .formw #font_answer_explanation,
#form_groupeditor .row.with_text_editor .formw #font_size_subject_description,
#form_groupeditor .row.with_text_editor .formw #font_subject_description,
#form_groupeditor .row.with_text_editor .formw #font_size_question_description,
#form_groupeditor .row.with_text_editor .formw #font_question_description,
#form_groupeditor .row.with_text_editor .formw #font_size_question_explanation,
#form_groupeditor .row.with_text_editor .formw #font_question_explanation,
#form_groupeditor .row.with_text_editor .formw #font_size_answer_description,
#form_groupeditor .row.with_text_editor .formw #font_answer_description,
#form_groupeditor .row.with_text_editor .formw #font_size_answer_explanation,
#form_groupeditor .row.with_text_editor .formw #font_answer_explanation,
#form_groupeditor .rowl.with_text_editor .formw #font_size_subject_description,
#form_groupeditor .rowl.with_text_editor .formw #font_subject_description,
#form_groupeditor .rowl.with_text_editor .formw #font_size_question_description,
#form_groupeditor .rowl.with_text_editor .formw #font_question_description,
#form_groupeditor .rowl.with_text_editor .formw #font_size_question_explanation,
#form_groupeditor .rowl.with_text_editor .formw #font_question_explanation,
#form_groupeditor .rowl.with_text_editor .formw #font_size_answer_description,
#form_groupeditor .rowl.with_text_editor .formw #font_answer_description,
#form_groupeditor .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_groupeditor .rowl.with_text_editor .formw #font_answer_explanation,
#form_userselect .row.with_text_editor .formw #font_size_subject_description,
#form_userselect .row.with_text_editor .formw #font_subject_description,
#form_userselect .row.with_text_editor .formw #font_size_question_description,
#form_userselect .row.with_text_editor .formw #font_question_description,
#form_userselect .row.with_text_editor .formw #font_size_question_explanation,
#form_userselect .row.with_text_editor .formw #font_question_explanation,
#form_userselect .row.with_text_editor .formw #font_size_answer_description,
#form_userselect .row.with_text_editor .formw #font_answer_description,
#form_userselect .row.with_text_editor .formw #font_size_answer_explanation,
#form_userselect .row.with_text_editor .formw #font_answer_explanation,
#form_userselect .rowl.with_text_editor .formw #font_size_subject_description,
#form_userselect .rowl.with_text_editor .formw #font_subject_description,
#form_userselect .rowl.with_text_editor .formw #font_size_question_description,
#form_userselect .rowl.with_text_editor .formw #font_question_description,
#form_userselect .rowl.with_text_editor .formw #font_size_question_explanation,
#form_userselect .rowl.with_text_editor .formw #font_question_explanation,
#form_userselect .rowl.with_text_editor .formw #font_size_answer_description,
#form_userselect .rowl.with_text_editor .formw #font_answer_description,
#form_userselect .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_userselect .rowl.with_text_editor .formw #font_answer_explanation,
#userselect .row.with_text_editor .formw #font_size_subject_description,
#userselect .row.with_text_editor .formw #font_subject_description,
#userselect .row.with_text_editor .formw #font_size_question_description,
#userselect .row.with_text_editor .formw #font_question_description,
#userselect .row.with_text_editor .formw #font_size_question_explanation,
#userselect .row.with_text_editor .formw #font_question_explanation,
#userselect .row.with_text_editor .formw #font_size_answer_description,
#userselect .row.with_text_editor .formw #font_answer_description,
#userselect .row.with_text_editor .formw #font_size_answer_explanation,
#userselect .row.with_text_editor .formw #font_answer_explanation,
#userselect .rowl.with_text_editor .formw #font_size_subject_description,
#userselect .rowl.with_text_editor .formw #font_subject_description,
#userselect .rowl.with_text_editor .formw #font_size_question_description,
#userselect .rowl.with_text_editor .formw #font_question_description,
#userselect .rowl.with_text_editor .formw #font_size_question_explanation,
#userselect .rowl.with_text_editor .formw #font_question_explanation,
#userselect .rowl.with_text_editor .formw #font_size_answer_description,
#userselect .rowl.with_text_editor .formw #font_answer_description,
#userselect .rowl.with_text_editor .formw #font_size_answer_explanation,
#userselect .rowl.with_text_editor .formw #font_answer_explanation,
#form_importusers .row.with_text_editor .formw #font_size_subject_description,
#form_importusers .row.with_text_editor .formw #font_subject_description,
#form_importusers .row.with_text_editor .formw #font_size_question_description,
#form_importusers .row.with_text_editor .formw #font_question_description,
#form_importusers .row.with_text_editor .formw #font_size_question_explanation,
#form_importusers .row.with_text_editor .formw #font_question_explanation,
#form_importusers .row.with_text_editor .formw #font_size_answer_description,
#form_importusers .row.with_text_editor .formw #font_answer_description,
#form_importusers .row.with_text_editor .formw #font_size_answer_explanation,
#form_importusers .row.with_text_editor .formw #font_answer_explanation,
#form_importusers .rowl.with_text_editor .formw #font_size_subject_description,
#form_importusers .rowl.with_text_editor .formw #font_subject_description,
#form_importusers .rowl.with_text_editor .formw #font_size_question_description,
#form_importusers .rowl.with_text_editor .formw #font_question_description,
#form_importusers .rowl.with_text_editor .formw #font_size_question_explanation,
#form_importusers .rowl.with_text_editor .formw #font_question_explanation,
#form_importusers .rowl.with_text_editor .formw #font_size_answer_description,
#form_importusers .rowl.with_text_editor .formw #font_answer_description,
#form_importusers .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_importusers .rowl.with_text_editor .formw #font_answer_explanation,
#form_moduleeditor .row.with_text_editor .formw #font_size_subject_description,
#form_moduleeditor .row.with_text_editor .formw #font_subject_description,
#form_moduleeditor .row.with_text_editor .formw #font_size_question_description,
#form_moduleeditor .row.with_text_editor .formw #font_question_description,
#form_moduleeditor .row.with_text_editor .formw #font_size_question_explanation,
#form_moduleeditor .row.with_text_editor .formw #font_question_explanation,
#form_moduleeditor .row.with_text_editor .formw #font_size_answer_description,
#form_moduleeditor .row.with_text_editor .formw #font_answer_description,
#form_moduleeditor .row.with_text_editor .formw #font_size_answer_explanation,
#form_moduleeditor .row.with_text_editor .formw #font_answer_explanation,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_subject_description,
#form_moduleeditor .rowl.with_text_editor .formw #font_subject_description,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_question_description,
#form_moduleeditor .rowl.with_text_editor .formw #font_question_description,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_question_explanation,
#form_moduleeditor .rowl.with_text_editor .formw #font_question_explanation,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_answer_description,
#form_moduleeditor .rowl.with_text_editor .formw #font_answer_description,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_moduleeditor .rowl.with_text_editor .formw #font_answer_explanation,
#form_subjecteditor .row.with_text_editor .formw #font_size_subject_description,
#form_subjecteditor .row.with_text_editor .formw #font_subject_description,
#form_subjecteditor .row.with_text_editor .formw #font_size_question_description,
#form_subjecteditor .row.with_text_editor .formw #font_question_description,
#form_subjecteditor .row.with_text_editor .formw #font_size_question_explanation,
#form_subjecteditor .row.with_text_editor .formw #font_question_explanation,
#form_subjecteditor .row.with_text_editor .formw #font_size_answer_description,
#form_subjecteditor .row.with_text_editor .formw #font_answer_description,
#form_subjecteditor .row.with_text_editor .formw #font_size_answer_explanation,
#form_subjecteditor .row.with_text_editor .formw #font_answer_explanation,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_subject_description,
#form_subjecteditor .rowl.with_text_editor .formw #font_subject_description,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_question_description,
#form_subjecteditor .rowl.with_text_editor .formw #font_question_description,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_question_explanation,
#form_subjecteditor .rowl.with_text_editor .formw #font_question_explanation,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_answer_description,
#form_subjecteditor .rowl.with_text_editor .formw #font_answer_description,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_subjecteditor .rowl.with_text_editor .formw #font_answer_explanation,
#form_selectquestions .row.with_text_editor .formw #font_size_subject_description,
#form_selectquestions .row.with_text_editor .formw #font_subject_description,
#form_selectquestions .row.with_text_editor .formw #font_size_question_description,
#form_selectquestions .row.with_text_editor .formw #font_question_description,
#form_selectquestions .row.with_text_editor .formw #font_size_question_explanation,
#form_selectquestions .row.with_text_editor .formw #font_question_explanation,
#form_selectquestions .row.with_text_editor .formw #font_size_answer_description,
#form_selectquestions .row.with_text_editor .formw #font_answer_description,
#form_selectquestions .row.with_text_editor .formw #font_size_answer_explanation,
#form_selectquestions .row.with_text_editor .formw #font_answer_explanation,
#form_selectquestions .rowl.with_text_editor .formw #font_size_subject_description,
#form_selectquestions .rowl.with_text_editor .formw #font_subject_description,
#form_selectquestions .rowl.with_text_editor .formw #font_size_question_description,
#form_selectquestions .rowl.with_text_editor .formw #font_question_description,
#form_selectquestions .rowl.with_text_editor .formw #font_size_question_explanation,
#form_selectquestions .rowl.with_text_editor .formw #font_question_explanation,
#form_selectquestions .rowl.with_text_editor .formw #font_size_answer_description,
#form_selectquestions .rowl.with_text_editor .formw #font_answer_description,
#form_selectquestions .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_selectquestions .rowl.with_text_editor .formw #font_answer_explanation,
#form_importquestions .row.with_text_editor .formw #font_size_subject_description,
#form_importquestions .row.with_text_editor .formw #font_subject_description,
#form_importquestions .row.with_text_editor .formw #font_size_question_description,
#form_importquestions .row.with_text_editor .formw #font_question_description,
#form_importquestions .row.with_text_editor .formw #font_size_question_explanation,
#form_importquestions .row.with_text_editor .formw #font_question_explanation,
#form_importquestions .row.with_text_editor .formw #font_size_answer_description,
#form_importquestions .row.with_text_editor .formw #font_answer_description,
#form_importquestions .row.with_text_editor .formw #font_size_answer_explanation,
#form_importquestions .row.with_text_editor .formw #font_answer_explanation,
#form_importquestions .rowl.with_text_editor .formw #font_size_subject_description,
#form_importquestions .rowl.with_text_editor .formw #font_subject_description,
#form_importquestions .rowl.with_text_editor .formw #font_size_question_description,
#form_importquestions .rowl.with_text_editor .formw #font_question_description,
#form_importquestions .rowl.with_text_editor .formw #font_size_question_explanation,
#form_importquestions .rowl.with_text_editor .formw #font_question_explanation,
#form_importquestions .rowl.with_text_editor .formw #font_size_answer_description,
#form_importquestions .rowl.with_text_editor .formw #font_answer_description,
#form_importquestions .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_importquestions .rowl.with_text_editor .formw #font_answer_explanation,
#form_importsslcert .row.with_text_editor .formw #font_size_subject_description,
#form_importsslcert .row.with_text_editor .formw #font_subject_description,
#form_importsslcert .row.with_text_editor .formw #font_size_question_description,
#form_importsslcert .row.with_text_editor .formw #font_question_description,
#form_importsslcert .row.with_text_editor .formw #font_size_question_explanation,
#form_importsslcert .row.with_text_editor .formw #font_question_explanation,
#form_importsslcert .row.with_text_editor .formw #font_size_answer_description,
#form_importsslcert .row.with_text_editor .formw #font_answer_description,
#form_importsslcert .row.with_text_editor .formw #font_size_answer_explanation,
#form_importsslcert .row.with_text_editor .formw #font_answer_explanation,
#form_importsslcert .rowl.with_text_editor .formw #font_size_subject_description,
#form_importsslcert .rowl.with_text_editor .formw #font_subject_description,
#form_importsslcert .rowl.with_text_editor .formw #font_size_question_description,
#form_importsslcert .rowl.with_text_editor .formw #font_question_description,
#form_importsslcert .rowl.with_text_editor .formw #font_size_question_explanation,
#form_importsslcert .rowl.with_text_editor .formw #font_question_explanation,
#form_importsslcert .rowl.with_text_editor .formw #font_size_answer_description,
#form_importsslcert .rowl.with_text_editor .formw #font_answer_description,
#form_importsslcert .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_importsslcert .rowl.with_text_editor .formw #font_answer_explanation,
#form_omrimport .row.with_text_editor .formw #font_size_subject_description,
#form_omrimport .row.with_text_editor .formw #font_subject_description,
#form_omrimport .row.with_text_editor .formw #font_size_question_description,
#form_omrimport .row.with_text_editor .formw #font_question_description,
#form_omrimport .row.with_text_editor .formw #font_size_question_explanation,
#form_omrimport .row.with_text_editor .formw #font_question_explanation,
#form_omrimport .row.with_text_editor .formw #font_size_answer_description,
#form_omrimport .row.with_text_editor .formw #font_answer_description,
#form_omrimport .row.with_text_editor .formw #font_size_answer_explanation,
#form_omrimport .row.with_text_editor .formw #font_answer_explanation,
#form_omrimport .rowl.with_text_editor .formw #font_size_subject_description,
#form_omrimport .rowl.with_text_editor .formw #font_subject_description,
#form_omrimport .rowl.with_text_editor .formw #font_size_question_description,
#form_omrimport .rowl.with_text_editor .formw #font_question_description,
#form_omrimport .rowl.with_text_editor .formw #font_size_question_explanation,
#form_omrimport .rowl.with_text_editor .formw #font_question_explanation,
#form_omrimport .rowl.with_text_editor .formw #font_size_answer_description,
#form_omrimport .rowl.with_text_editor .formw #font_answer_description,
#form_omrimport .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_omrimport .rowl.with_text_editor .formw #font_answer_explanation,
#form_ratingeditor .row.with_text_editor .formw #font_size_subject_description,
#form_ratingeditor .row.with_text_editor .formw #font_subject_description,
#form_ratingeditor .row.with_text_editor .formw #font_size_question_description,
#form_ratingeditor .row.with_text_editor .formw #font_question_description,
#form_ratingeditor .row.with_text_editor .formw #font_size_question_explanation,
#form_ratingeditor .row.with_text_editor .formw #font_question_explanation,
#form_ratingeditor .row.with_text_editor .formw #font_size_answer_description,
#form_ratingeditor .row.with_text_editor .formw #font_answer_description,
#form_ratingeditor .row.with_text_editor .formw #font_size_answer_explanation,
#form_ratingeditor .row.with_text_editor .formw #font_answer_explanation,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_subject_description,
#form_ratingeditor .rowl.with_text_editor .formw #font_subject_description,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_question_description,
#form_ratingeditor .rowl.with_text_editor .formw #font_question_description,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_question_explanation,
#form_ratingeditor .rowl.with_text_editor .formw #font_question_explanation,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_answer_description,
#form_ratingeditor .rowl.with_text_editor .formw #font_answer_description,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_ratingeditor .rowl.with_text_editor .formw #font_answer_explanation,
#form_resultallusers .row.with_text_editor .formw #font_size_subject_description,
#form_resultallusers .row.with_text_editor .formw #font_subject_description,
#form_resultallusers .row.with_text_editor .formw #font_size_question_description,
#form_resultallusers .row.with_text_editor .formw #font_question_description,
#form_resultallusers .row.with_text_editor .formw #font_size_question_explanation,
#form_resultallusers .row.with_text_editor .formw #font_question_explanation,
#form_resultallusers .row.with_text_editor .formw #font_size_answer_description,
#form_resultallusers .row.with_text_editor .formw #font_answer_description,
#form_resultallusers .row.with_text_editor .formw #font_size_answer_explanation,
#form_resultallusers .row.with_text_editor .formw #font_answer_explanation,
#form_resultallusers .rowl.with_text_editor .formw #font_size_subject_description,
#form_resultallusers .rowl.with_text_editor .formw #font_subject_description,
#form_resultallusers .rowl.with_text_editor .formw #font_size_question_description,
#form_resultallusers .rowl.with_text_editor .formw #font_question_description,
#form_resultallusers .rowl.with_text_editor .formw #font_size_question_explanation,
#form_resultallusers .rowl.with_text_editor .formw #font_question_explanation,
#form_resultallusers .rowl.with_text_editor .formw #font_size_answer_description,
#form_resultallusers .rowl.with_text_editor .formw #font_answer_description,
#form_resultallusers .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_resultallusers .rowl.with_text_editor .formw #font_answer_explanation,
#form_questioneditor .row.with_text_editor .formw #font_size_subject_description,
#form_questioneditor .row.with_text_editor .formw #font_subject_description,
#form_questioneditor .row.with_text_editor .formw #font_size_question_description,
#form_questioneditor .row.with_text_editor .formw #font_question_description,
#form_questioneditor .row.with_text_editor .formw #font_size_question_explanation,
#form_questioneditor .row.with_text_editor .formw #font_question_explanation,
#form_questioneditor .row.with_text_editor .formw #font_size_answer_description,
#form_questioneditor .row.with_text_editor .formw #font_answer_description,
#form_questioneditor .row.with_text_editor .formw #font_size_answer_explanation,
#form_questioneditor .row.with_text_editor .formw #font_answer_explanation,
#form_questioneditor .rowl.with_text_editor .formw #font_size_subject_description,
#form_questioneditor .rowl.with_text_editor .formw #font_subject_description,
#form_questioneditor .rowl.with_text_editor .formw #font_size_question_description,
#form_questioneditor .rowl.with_text_editor .formw #font_question_description,
#form_questioneditor .rowl.with_text_editor .formw #font_size_question_explanation,
#form_questioneditor .rowl.with_text_editor .formw #font_question_explanation,
#form_questioneditor .rowl.with_text_editor .formw #font_size_answer_description,
#form_questioneditor .rowl.with_text_editor .formw #font_answer_description,
#form_questioneditor .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_questioneditor .rowl.with_text_editor .formw #font_answer_explanation,
#form_answereditor .row.with_text_editor .formw #font_size_subject_description,
#form_answereditor .row.with_text_editor .formw #font_subject_description,
#form_answereditor .row.with_text_editor .formw #font_size_question_description,
#form_answereditor .row.with_text_editor .formw #font_question_description,
#form_answereditor .row.with_text_editor .formw #font_size_question_explanation,
#form_answereditor .row.with_text_editor .formw #font_question_explanation,
#form_answereditor .row.with_text_editor .formw #font_size_answer_description,
#form_answereditor .row.with_text_editor .formw #font_answer_description,
#form_answereditor .row.with_text_editor .formw #font_size_answer_explanation,
#form_answereditor .row.with_text_editor .formw #font_answer_explanation,
#form_answereditor .rowl.with_text_editor .formw #font_size_subject_description,
#form_answereditor .rowl.with_text_editor .formw #font_subject_description,
#form_answereditor .rowl.with_text_editor .formw #font_size_question_description,
#form_answereditor .rowl.with_text_editor .formw #font_question_description,
#form_answereditor .rowl.with_text_editor .formw #font_size_question_explanation,
#form_answereditor .rowl.with_text_editor .formw #font_question_explanation,
#form_answereditor .rowl.with_text_editor .formw #font_size_answer_description,
#form_answereditor .rowl.with_text_editor .formw #font_answer_description,
#form_answereditor .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_answereditor .rowl.with_text_editor .formw #font_answer_explanation,
#form_testeditor .row.with_text_editor .formw #font_size_subject_description,
#form_testeditor .row.with_text_editor .formw #font_subject_description,
#form_testeditor .row.with_text_editor .formw #font_size_question_description,
#form_testeditor .row.with_text_editor .formw #font_question_description,
#form_testeditor .row.with_text_editor .formw #font_size_question_explanation,
#form_testeditor .row.with_text_editor .formw #font_question_explanation,
#form_testeditor .row.with_text_editor .formw #font_size_answer_description,
#form_testeditor .row.with_text_editor .formw #font_answer_description,
#form_testeditor .row.with_text_editor .formw #font_size_answer_explanation,
#form_testeditor .row.with_text_editor .formw #font_answer_explanation,
#form_testeditor .rowl.with_text_editor .formw #font_size_subject_description,
#form_testeditor .rowl.with_text_editor .formw #font_subject_description,
#form_testeditor .rowl.with_text_editor .formw #font_size_question_description,
#form_testeditor .rowl.with_text_editor .formw #font_question_description,
#form_testeditor .rowl.with_text_editor .formw #font_size_question_explanation,
#form_testeditor .rowl.with_text_editor .formw #font_question_explanation,
#form_testeditor .rowl.with_text_editor .formw #font_size_answer_description,
#form_testeditor .rowl.with_text_editor .formw #font_answer_description,
#form_testeditor .rowl.with_text_editor .formw #font_size_answer_explanation,
#form_testeditor .rowl.with_text_editor .formw #font_answer_explanation {
  padding: 6px 8px !important;
  border-color: var(--border_color);
  border-radius: 6px;
  cursor: pointer;
}
#form_usereditor .row.with_text_editor .formw #font_size_subject_description:hover,
#form_usereditor .row.with_text_editor .formw #font_subject_description:hover,
#form_usereditor .row.with_text_editor .formw #font_size_question_description:hover,
#form_usereditor .row.with_text_editor .formw #font_question_description:hover,
#form_usereditor .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_usereditor .row.with_text_editor .formw #font_question_explanation:hover,
#form_usereditor .row.with_text_editor .formw #font_size_answer_description:hover,
#form_usereditor .row.with_text_editor .formw #font_answer_description:hover,
#form_usereditor .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_usereditor .row.with_text_editor .formw #font_answer_explanation:hover, #form_usereditor .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_usereditor .rowl.with_text_editor .formw #font_subject_description:hover,
#form_usereditor .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_usereditor .rowl.with_text_editor .formw #font_question_description:hover,
#form_usereditor .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_usereditor .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_usereditor .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_usereditor .rowl.with_text_editor .formw #font_answer_description:hover,
#form_usereditor .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_usereditor .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_groupeditor .row.with_text_editor .formw #font_size_subject_description:hover,
#form_groupeditor .row.with_text_editor .formw #font_subject_description:hover,
#form_groupeditor .row.with_text_editor .formw #font_size_question_description:hover,
#form_groupeditor .row.with_text_editor .formw #font_question_description:hover,
#form_groupeditor .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_groupeditor .row.with_text_editor .formw #font_question_explanation:hover,
#form_groupeditor .row.with_text_editor .formw #font_size_answer_description:hover,
#form_groupeditor .row.with_text_editor .formw #font_answer_description:hover,
#form_groupeditor .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_groupeditor .row.with_text_editor .formw #font_answer_explanation:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_subject_description:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_question_description:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_answer_description:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_groupeditor .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_userselect .row.with_text_editor .formw #font_size_subject_description:hover,
#form_userselect .row.with_text_editor .formw #font_subject_description:hover,
#form_userselect .row.with_text_editor .formw #font_size_question_description:hover,
#form_userselect .row.with_text_editor .formw #font_question_description:hover,
#form_userselect .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_userselect .row.with_text_editor .formw #font_question_explanation:hover,
#form_userselect .row.with_text_editor .formw #font_size_answer_description:hover,
#form_userselect .row.with_text_editor .formw #font_answer_description:hover,
#form_userselect .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_userselect .row.with_text_editor .formw #font_answer_explanation:hover,
#form_userselect .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_userselect .rowl.with_text_editor .formw #font_subject_description:hover,
#form_userselect .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_userselect .rowl.with_text_editor .formw #font_question_description:hover,
#form_userselect .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_userselect .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_userselect .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_userselect .rowl.with_text_editor .formw #font_answer_description:hover,
#form_userselect .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_userselect .rowl.with_text_editor .formw #font_answer_explanation:hover,
#userselect .row.with_text_editor .formw #font_size_subject_description:hover,
#userselect .row.with_text_editor .formw #font_subject_description:hover,
#userselect .row.with_text_editor .formw #font_size_question_description:hover,
#userselect .row.with_text_editor .formw #font_question_description:hover,
#userselect .row.with_text_editor .formw #font_size_question_explanation:hover,
#userselect .row.with_text_editor .formw #font_question_explanation:hover,
#userselect .row.with_text_editor .formw #font_size_answer_description:hover,
#userselect .row.with_text_editor .formw #font_answer_description:hover,
#userselect .row.with_text_editor .formw #font_size_answer_explanation:hover,
#userselect .row.with_text_editor .formw #font_answer_explanation:hover,
#userselect .rowl.with_text_editor .formw #font_size_subject_description:hover,
#userselect .rowl.with_text_editor .formw #font_subject_description:hover,
#userselect .rowl.with_text_editor .formw #font_size_question_description:hover,
#userselect .rowl.with_text_editor .formw #font_question_description:hover,
#userselect .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#userselect .rowl.with_text_editor .formw #font_question_explanation:hover,
#userselect .rowl.with_text_editor .formw #font_size_answer_description:hover,
#userselect .rowl.with_text_editor .formw #font_answer_description:hover,
#userselect .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#userselect .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_importusers .row.with_text_editor .formw #font_size_subject_description:hover,
#form_importusers .row.with_text_editor .formw #font_subject_description:hover,
#form_importusers .row.with_text_editor .formw #font_size_question_description:hover,
#form_importusers .row.with_text_editor .formw #font_question_description:hover,
#form_importusers .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_importusers .row.with_text_editor .formw #font_question_explanation:hover,
#form_importusers .row.with_text_editor .formw #font_size_answer_description:hover,
#form_importusers .row.with_text_editor .formw #font_answer_description:hover,
#form_importusers .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_importusers .row.with_text_editor .formw #font_answer_explanation:hover,
#form_importusers .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_importusers .rowl.with_text_editor .formw #font_subject_description:hover,
#form_importusers .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_importusers .rowl.with_text_editor .formw #font_question_description:hover,
#form_importusers .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_importusers .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_importusers .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_importusers .rowl.with_text_editor .formw #font_answer_description:hover,
#form_importusers .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_importusers .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_moduleeditor .row.with_text_editor .formw #font_size_subject_description:hover,
#form_moduleeditor .row.with_text_editor .formw #font_subject_description:hover,
#form_moduleeditor .row.with_text_editor .formw #font_size_question_description:hover,
#form_moduleeditor .row.with_text_editor .formw #font_question_description:hover,
#form_moduleeditor .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_moduleeditor .row.with_text_editor .formw #font_question_explanation:hover,
#form_moduleeditor .row.with_text_editor .formw #font_size_answer_description:hover,
#form_moduleeditor .row.with_text_editor .formw #font_answer_description:hover,
#form_moduleeditor .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_moduleeditor .row.with_text_editor .formw #font_answer_explanation:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_subject_description:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_question_description:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_answer_description:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_moduleeditor .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_subjecteditor .row.with_text_editor .formw #font_size_subject_description:hover,
#form_subjecteditor .row.with_text_editor .formw #font_subject_description:hover,
#form_subjecteditor .row.with_text_editor .formw #font_size_question_description:hover,
#form_subjecteditor .row.with_text_editor .formw #font_question_description:hover,
#form_subjecteditor .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_subjecteditor .row.with_text_editor .formw #font_question_explanation:hover,
#form_subjecteditor .row.with_text_editor .formw #font_size_answer_description:hover,
#form_subjecteditor .row.with_text_editor .formw #font_answer_description:hover,
#form_subjecteditor .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_subjecteditor .row.with_text_editor .formw #font_answer_explanation:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_subject_description:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_question_description:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_answer_description:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_subjecteditor .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_selectquestions .row.with_text_editor .formw #font_size_subject_description:hover,
#form_selectquestions .row.with_text_editor .formw #font_subject_description:hover,
#form_selectquestions .row.with_text_editor .formw #font_size_question_description:hover,
#form_selectquestions .row.with_text_editor .formw #font_question_description:hover,
#form_selectquestions .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_selectquestions .row.with_text_editor .formw #font_question_explanation:hover,
#form_selectquestions .row.with_text_editor .formw #font_size_answer_description:hover,
#form_selectquestions .row.with_text_editor .formw #font_answer_description:hover,
#form_selectquestions .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_selectquestions .row.with_text_editor .formw #font_answer_explanation:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_subject_description:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_question_description:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_answer_description:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_selectquestions .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_importquestions .row.with_text_editor .formw #font_size_subject_description:hover,
#form_importquestions .row.with_text_editor .formw #font_subject_description:hover,
#form_importquestions .row.with_text_editor .formw #font_size_question_description:hover,
#form_importquestions .row.with_text_editor .formw #font_question_description:hover,
#form_importquestions .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_importquestions .row.with_text_editor .formw #font_question_explanation:hover,
#form_importquestions .row.with_text_editor .formw #font_size_answer_description:hover,
#form_importquestions .row.with_text_editor .formw #font_answer_description:hover,
#form_importquestions .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_importquestions .row.with_text_editor .formw #font_answer_explanation:hover,
#form_importquestions .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_importquestions .rowl.with_text_editor .formw #font_subject_description:hover,
#form_importquestions .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_importquestions .rowl.with_text_editor .formw #font_question_description:hover,
#form_importquestions .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_importquestions .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_importquestions .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_importquestions .rowl.with_text_editor .formw #font_answer_description:hover,
#form_importquestions .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_importquestions .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_importsslcert .row.with_text_editor .formw #font_size_subject_description:hover,
#form_importsslcert .row.with_text_editor .formw #font_subject_description:hover,
#form_importsslcert .row.with_text_editor .formw #font_size_question_description:hover,
#form_importsslcert .row.with_text_editor .formw #font_question_description:hover,
#form_importsslcert .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_importsslcert .row.with_text_editor .formw #font_question_explanation:hover,
#form_importsslcert .row.with_text_editor .formw #font_size_answer_description:hover,
#form_importsslcert .row.with_text_editor .formw #font_answer_description:hover,
#form_importsslcert .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_importsslcert .row.with_text_editor .formw #font_answer_explanation:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_subject_description:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_question_description:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_answer_description:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_importsslcert .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_omrimport .row.with_text_editor .formw #font_size_subject_description:hover,
#form_omrimport .row.with_text_editor .formw #font_subject_description:hover,
#form_omrimport .row.with_text_editor .formw #font_size_question_description:hover,
#form_omrimport .row.with_text_editor .formw #font_question_description:hover,
#form_omrimport .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_omrimport .row.with_text_editor .formw #font_question_explanation:hover,
#form_omrimport .row.with_text_editor .formw #font_size_answer_description:hover,
#form_omrimport .row.with_text_editor .formw #font_answer_description:hover,
#form_omrimport .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_omrimport .row.with_text_editor .formw #font_answer_explanation:hover,
#form_omrimport .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_omrimport .rowl.with_text_editor .formw #font_subject_description:hover,
#form_omrimport .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_omrimport .rowl.with_text_editor .formw #font_question_description:hover,
#form_omrimport .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_omrimport .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_omrimport .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_omrimport .rowl.with_text_editor .formw #font_answer_description:hover,
#form_omrimport .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_omrimport .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_ratingeditor .row.with_text_editor .formw #font_size_subject_description:hover,
#form_ratingeditor .row.with_text_editor .formw #font_subject_description:hover,
#form_ratingeditor .row.with_text_editor .formw #font_size_question_description:hover,
#form_ratingeditor .row.with_text_editor .formw #font_question_description:hover,
#form_ratingeditor .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_ratingeditor .row.with_text_editor .formw #font_question_explanation:hover,
#form_ratingeditor .row.with_text_editor .formw #font_size_answer_description:hover,
#form_ratingeditor .row.with_text_editor .formw #font_answer_description:hover,
#form_ratingeditor .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_ratingeditor .row.with_text_editor .formw #font_answer_explanation:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_subject_description:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_question_description:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_answer_description:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_ratingeditor .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_resultallusers .row.with_text_editor .formw #font_size_subject_description:hover,
#form_resultallusers .row.with_text_editor .formw #font_subject_description:hover,
#form_resultallusers .row.with_text_editor .formw #font_size_question_description:hover,
#form_resultallusers .row.with_text_editor .formw #font_question_description:hover,
#form_resultallusers .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_resultallusers .row.with_text_editor .formw #font_question_explanation:hover,
#form_resultallusers .row.with_text_editor .formw #font_size_answer_description:hover,
#form_resultallusers .row.with_text_editor .formw #font_answer_description:hover,
#form_resultallusers .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_resultallusers .row.with_text_editor .formw #font_answer_explanation:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_subject_description:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_question_description:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_answer_description:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_resultallusers .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_questioneditor .row.with_text_editor .formw #font_size_subject_description:hover,
#form_questioneditor .row.with_text_editor .formw #font_subject_description:hover,
#form_questioneditor .row.with_text_editor .formw #font_size_question_description:hover,
#form_questioneditor .row.with_text_editor .formw #font_question_description:hover,
#form_questioneditor .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_questioneditor .row.with_text_editor .formw #font_question_explanation:hover,
#form_questioneditor .row.with_text_editor .formw #font_size_answer_description:hover,
#form_questioneditor .row.with_text_editor .formw #font_answer_description:hover,
#form_questioneditor .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_questioneditor .row.with_text_editor .formw #font_answer_explanation:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_subject_description:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_question_description:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_answer_description:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_questioneditor .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_answereditor .row.with_text_editor .formw #font_size_subject_description:hover,
#form_answereditor .row.with_text_editor .formw #font_subject_description:hover,
#form_answereditor .row.with_text_editor .formw #font_size_question_description:hover,
#form_answereditor .row.with_text_editor .formw #font_question_description:hover,
#form_answereditor .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_answereditor .row.with_text_editor .formw #font_question_explanation:hover,
#form_answereditor .row.with_text_editor .formw #font_size_answer_description:hover,
#form_answereditor .row.with_text_editor .formw #font_answer_description:hover,
#form_answereditor .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_answereditor .row.with_text_editor .formw #font_answer_explanation:hover,
#form_answereditor .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_answereditor .rowl.with_text_editor .formw #font_subject_description:hover,
#form_answereditor .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_answereditor .rowl.with_text_editor .formw #font_question_description:hover,
#form_answereditor .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_answereditor .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_answereditor .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_answereditor .rowl.with_text_editor .formw #font_answer_description:hover,
#form_answereditor .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_answereditor .rowl.with_text_editor .formw #font_answer_explanation:hover,
#form_testeditor .row.with_text_editor .formw #font_size_subject_description:hover,
#form_testeditor .row.with_text_editor .formw #font_subject_description:hover,
#form_testeditor .row.with_text_editor .formw #font_size_question_description:hover,
#form_testeditor .row.with_text_editor .formw #font_question_description:hover,
#form_testeditor .row.with_text_editor .formw #font_size_question_explanation:hover,
#form_testeditor .row.with_text_editor .formw #font_question_explanation:hover,
#form_testeditor .row.with_text_editor .formw #font_size_answer_description:hover,
#form_testeditor .row.with_text_editor .formw #font_answer_description:hover,
#form_testeditor .row.with_text_editor .formw #font_size_answer_explanation:hover,
#form_testeditor .row.with_text_editor .formw #font_answer_explanation:hover,
#form_testeditor .rowl.with_text_editor .formw #font_size_subject_description:hover,
#form_testeditor .rowl.with_text_editor .formw #font_subject_description:hover,
#form_testeditor .rowl.with_text_editor .formw #font_size_question_description:hover,
#form_testeditor .rowl.with_text_editor .formw #font_question_description:hover,
#form_testeditor .rowl.with_text_editor .formw #font_size_question_explanation:hover,
#form_testeditor .rowl.with_text_editor .formw #font_question_explanation:hover,
#form_testeditor .rowl.with_text_editor .formw #font_size_answer_description:hover,
#form_testeditor .rowl.with_text_editor .formw #font_answer_description:hover,
#form_testeditor .rowl.with_text_editor .formw #font_size_answer_explanation:hover,
#form_testeditor .rowl.with_text_editor .formw #font_answer_explanation:hover {
  border-color: var(--main_color_lighter3);
  color: var(--main_color_lighter);
}
#form_usereditor .row .noborder.radio_select .one_radio_btn, #form_usereditor .rowl .noborder.radio_select .one_radio_btn,
#form_groupeditor .row .noborder.radio_select .one_radio_btn,
#form_groupeditor .rowl .noborder.radio_select .one_radio_btn,
#form_userselect .row .noborder.radio_select .one_radio_btn,
#form_userselect .rowl .noborder.radio_select .one_radio_btn,
#userselect .row .noborder.radio_select .one_radio_btn,
#userselect .rowl .noborder.radio_select .one_radio_btn,
#form_importusers .row .noborder.radio_select .one_radio_btn,
#form_importusers .rowl .noborder.radio_select .one_radio_btn,
#form_moduleeditor .row .noborder.radio_select .one_radio_btn,
#form_moduleeditor .rowl .noborder.radio_select .one_radio_btn,
#form_subjecteditor .row .noborder.radio_select .one_radio_btn,
#form_subjecteditor .rowl .noborder.radio_select .one_radio_btn,
#form_selectquestions .row .noborder.radio_select .one_radio_btn,
#form_selectquestions .rowl .noborder.radio_select .one_radio_btn,
#form_importquestions .row .noborder.radio_select .one_radio_btn,
#form_importquestions .rowl .noborder.radio_select .one_radio_btn,
#form_importsslcert .row .noborder.radio_select .one_radio_btn,
#form_importsslcert .rowl .noborder.radio_select .one_radio_btn,
#form_omrimport .row .noborder.radio_select .one_radio_btn,
#form_omrimport .rowl .noborder.radio_select .one_radio_btn,
#form_ratingeditor .row .noborder.radio_select .one_radio_btn,
#form_ratingeditor .rowl .noborder.radio_select .one_radio_btn,
#form_resultallusers .row .noborder.radio_select .one_radio_btn,
#form_resultallusers .rowl .noborder.radio_select .one_radio_btn,
#form_questioneditor .row .noborder.radio_select .one_radio_btn,
#form_questioneditor .rowl .noborder.radio_select .one_radio_btn,
#form_answereditor .row .noborder.radio_select .one_radio_btn,
#form_answereditor .rowl .noborder.radio_select .one_radio_btn,
#form_testeditor .row .noborder.radio_select .one_radio_btn,
#form_testeditor .rowl .noborder.radio_select .one_radio_btn {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 10px 10px 0;
  padding: 6px 10px;
  border: 1px solid var(--border_color_lighter) !important;
  border-radius: 8px;
  cursor: pointer;
}
#form_usereditor .row .noborder.radio_select .one_radio_btn:hover, #form_usereditor .rowl .noborder.radio_select .one_radio_btn:hover,
#form_groupeditor .row .noborder.radio_select .one_radio_btn:hover,
#form_groupeditor .rowl .noborder.radio_select .one_radio_btn:hover,
#form_userselect .row .noborder.radio_select .one_radio_btn:hover,
#form_userselect .rowl .noborder.radio_select .one_radio_btn:hover,
#userselect .row .noborder.radio_select .one_radio_btn:hover,
#userselect .rowl .noborder.radio_select .one_radio_btn:hover,
#form_importusers .row .noborder.radio_select .one_radio_btn:hover,
#form_importusers .rowl .noborder.radio_select .one_radio_btn:hover,
#form_moduleeditor .row .noborder.radio_select .one_radio_btn:hover,
#form_moduleeditor .rowl .noborder.radio_select .one_radio_btn:hover,
#form_subjecteditor .row .noborder.radio_select .one_radio_btn:hover,
#form_subjecteditor .rowl .noborder.radio_select .one_radio_btn:hover,
#form_selectquestions .row .noborder.radio_select .one_radio_btn:hover,
#form_selectquestions .rowl .noborder.radio_select .one_radio_btn:hover,
#form_importquestions .row .noborder.radio_select .one_radio_btn:hover,
#form_importquestions .rowl .noborder.radio_select .one_radio_btn:hover,
#form_importsslcert .row .noborder.radio_select .one_radio_btn:hover,
#form_importsslcert .rowl .noborder.radio_select .one_radio_btn:hover,
#form_omrimport .row .noborder.radio_select .one_radio_btn:hover,
#form_omrimport .rowl .noborder.radio_select .one_radio_btn:hover,
#form_ratingeditor .row .noborder.radio_select .one_radio_btn:hover,
#form_ratingeditor .rowl .noborder.radio_select .one_radio_btn:hover,
#form_resultallusers .row .noborder.radio_select .one_radio_btn:hover,
#form_resultallusers .rowl .noborder.radio_select .one_radio_btn:hover,
#form_questioneditor .row .noborder.radio_select .one_radio_btn:hover,
#form_questioneditor .rowl .noborder.radio_select .one_radio_btn:hover,
#form_answereditor .row .noborder.radio_select .one_radio_btn:hover,
#form_answereditor .rowl .noborder.radio_select .one_radio_btn:hover,
#form_testeditor .row .noborder.radio_select .one_radio_btn:hover,
#form_testeditor .rowl .noborder.radio_select .one_radio_btn:hover {
  background-color: var(--secondary_color_lighter6);
  border-color: var(--secondary_color_lighter5);
}
#form_usereditor .row .noborder.radio_select .one_radio_btn input[type=radio], #form_usereditor .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_groupeditor .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_groupeditor .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_userselect .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_userselect .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#userselect .row .noborder.radio_select .one_radio_btn input[type=radio],
#userselect .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_importusers .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_importusers .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_moduleeditor .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_moduleeditor .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_subjecteditor .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_subjecteditor .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_selectquestions .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_selectquestions .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_importquestions .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_importquestions .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_importsslcert .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_importsslcert .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_omrimport .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_omrimport .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_ratingeditor .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_ratingeditor .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_resultallusers .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_resultallusers .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_questioneditor .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_questioneditor .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_answereditor .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_answereditor .rowl .noborder.radio_select .one_radio_btn input[type=radio],
#form_testeditor .row .noborder.radio_select .one_radio_btn input[type=radio],
#form_testeditor .rowl .noborder.radio_select .one_radio_btn input[type=radio] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: -5px;
}
#form_usereditor .row .noborder.radio_select .one_radio_btn label, #form_usereditor .rowl .noborder.radio_select .one_radio_btn label,
#form_groupeditor .row .noborder.radio_select .one_radio_btn label,
#form_groupeditor .rowl .noborder.radio_select .one_radio_btn label,
#form_userselect .row .noborder.radio_select .one_radio_btn label,
#form_userselect .rowl .noborder.radio_select .one_radio_btn label,
#userselect .row .noborder.radio_select .one_radio_btn label,
#userselect .rowl .noborder.radio_select .one_radio_btn label,
#form_importusers .row .noborder.radio_select .one_radio_btn label,
#form_importusers .rowl .noborder.radio_select .one_radio_btn label,
#form_moduleeditor .row .noborder.radio_select .one_radio_btn label,
#form_moduleeditor .rowl .noborder.radio_select .one_radio_btn label,
#form_subjecteditor .row .noborder.radio_select .one_radio_btn label,
#form_subjecteditor .rowl .noborder.radio_select .one_radio_btn label,
#form_selectquestions .row .noborder.radio_select .one_radio_btn label,
#form_selectquestions .rowl .noborder.radio_select .one_radio_btn label,
#form_importquestions .row .noborder.radio_select .one_radio_btn label,
#form_importquestions .rowl .noborder.radio_select .one_radio_btn label,
#form_importsslcert .row .noborder.radio_select .one_radio_btn label,
#form_importsslcert .rowl .noborder.radio_select .one_radio_btn label,
#form_omrimport .row .noborder.radio_select .one_radio_btn label,
#form_omrimport .rowl .noborder.radio_select .one_radio_btn label,
#form_ratingeditor .row .noborder.radio_select .one_radio_btn label,
#form_ratingeditor .rowl .noborder.radio_select .one_radio_btn label,
#form_resultallusers .row .noborder.radio_select .one_radio_btn label,
#form_resultallusers .rowl .noborder.radio_select .one_radio_btn label,
#form_questioneditor .row .noborder.radio_select .one_radio_btn label,
#form_questioneditor .rowl .noborder.radio_select .one_radio_btn label,
#form_answereditor .row .noborder.radio_select .one_radio_btn label,
#form_answereditor .rowl .noborder.radio_select .one_radio_btn label,
#form_testeditor .row .noborder.radio_select .one_radio_btn label,
#form_testeditor .rowl .noborder.radio_select .one_radio_btn label {
  font-size: 16px;
}
#form_usereditor .row.submit_cta_row, #form_usereditor .rowl.submit_cta_row,
#form_groupeditor .row.submit_cta_row,
#form_groupeditor .rowl.submit_cta_row,
#form_userselect .row.submit_cta_row,
#form_userselect .rowl.submit_cta_row,
#userselect .row.submit_cta_row,
#userselect .rowl.submit_cta_row,
#form_importusers .row.submit_cta_row,
#form_importusers .rowl.submit_cta_row,
#form_moduleeditor .row.submit_cta_row,
#form_moduleeditor .rowl.submit_cta_row,
#form_subjecteditor .row.submit_cta_row,
#form_subjecteditor .rowl.submit_cta_row,
#form_selectquestions .row.submit_cta_row,
#form_selectquestions .rowl.submit_cta_row,
#form_importquestions .row.submit_cta_row,
#form_importquestions .rowl.submit_cta_row,
#form_importsslcert .row.submit_cta_row,
#form_importsslcert .rowl.submit_cta_row,
#form_omrimport .row.submit_cta_row,
#form_omrimport .rowl.submit_cta_row,
#form_ratingeditor .row.submit_cta_row,
#form_ratingeditor .rowl.submit_cta_row,
#form_resultallusers .row.submit_cta_row,
#form_resultallusers .rowl.submit_cta_row,
#form_questioneditor .row.submit_cta_row,
#form_questioneditor .rowl.submit_cta_row,
#form_answereditor .row.submit_cta_row,
#form_answereditor .rowl.submit_cta_row,
#form_testeditor .row.submit_cta_row,
#form_testeditor .rowl.submit_cta_row {
  width: 100%;
  padding: 0 0 0 17.6%;
  text-align: left;
}
#form_usereditor .row.nav_btns, #form_usereditor .rowl.nav_btns,
#form_groupeditor .row.nav_btns,
#form_groupeditor .rowl.nav_btns,
#form_userselect .row.nav_btns,
#form_userselect .rowl.nav_btns,
#userselect .row.nav_btns,
#userselect .rowl.nav_btns,
#form_importusers .row.nav_btns,
#form_importusers .rowl.nav_btns,
#form_moduleeditor .row.nav_btns,
#form_moduleeditor .rowl.nav_btns,
#form_subjecteditor .row.nav_btns,
#form_subjecteditor .rowl.nav_btns,
#form_selectquestions .row.nav_btns,
#form_selectquestions .rowl.nav_btns,
#form_importquestions .row.nav_btns,
#form_importquestions .rowl.nav_btns,
#form_importsslcert .row.nav_btns,
#form_importsslcert .rowl.nav_btns,
#form_omrimport .row.nav_btns,
#form_omrimport .rowl.nav_btns,
#form_ratingeditor .row.nav_btns,
#form_ratingeditor .rowl.nav_btns,
#form_resultallusers .row.nav_btns,
#form_resultallusers .rowl.nav_btns,
#form_questioneditor .row.nav_btns,
#form_questioneditor .rowl.nav_btns,
#form_answereditor .row.nav_btns,
#form_answereditor .rowl.nav_btns,
#form_testeditor .row.nav_btns,
#form_testeditor .rowl.nav_btns {
  display: grid;
  grid-template-columns: auto auto;
  margin: 40px auto 0 auto;
  border-top: 1px solid var(--border_color_lighter);
}
#form_usereditor .row.nav_btns .left, #form_usereditor .row.nav_btns .right, #form_usereditor .rowl.nav_btns .left, #form_usereditor .rowl.nav_btns .right,
#form_groupeditor .row.nav_btns .left,
#form_groupeditor .row.nav_btns .right,
#form_groupeditor .rowl.nav_btns .left,
#form_groupeditor .rowl.nav_btns .right,
#form_userselect .row.nav_btns .left,
#form_userselect .row.nav_btns .right,
#form_userselect .rowl.nav_btns .left,
#form_userselect .rowl.nav_btns .right,
#userselect .row.nav_btns .left,
#userselect .row.nav_btns .right,
#userselect .rowl.nav_btns .left,
#userselect .rowl.nav_btns .right,
#form_importusers .row.nav_btns .left,
#form_importusers .row.nav_btns .right,
#form_importusers .rowl.nav_btns .left,
#form_importusers .rowl.nav_btns .right,
#form_moduleeditor .row.nav_btns .left,
#form_moduleeditor .row.nav_btns .right,
#form_moduleeditor .rowl.nav_btns .left,
#form_moduleeditor .rowl.nav_btns .right,
#form_subjecteditor .row.nav_btns .left,
#form_subjecteditor .row.nav_btns .right,
#form_subjecteditor .rowl.nav_btns .left,
#form_subjecteditor .rowl.nav_btns .right,
#form_selectquestions .row.nav_btns .left,
#form_selectquestions .row.nav_btns .right,
#form_selectquestions .rowl.nav_btns .left,
#form_selectquestions .rowl.nav_btns .right,
#form_importquestions .row.nav_btns .left,
#form_importquestions .row.nav_btns .right,
#form_importquestions .rowl.nav_btns .left,
#form_importquestions .rowl.nav_btns .right,
#form_importsslcert .row.nav_btns .left,
#form_importsslcert .row.nav_btns .right,
#form_importsslcert .rowl.nav_btns .left,
#form_importsslcert .rowl.nav_btns .right,
#form_omrimport .row.nav_btns .left,
#form_omrimport .row.nav_btns .right,
#form_omrimport .rowl.nav_btns .left,
#form_omrimport .rowl.nav_btns .right,
#form_ratingeditor .row.nav_btns .left,
#form_ratingeditor .row.nav_btns .right,
#form_ratingeditor .rowl.nav_btns .left,
#form_ratingeditor .rowl.nav_btns .right,
#form_resultallusers .row.nav_btns .left,
#form_resultallusers .row.nav_btns .right,
#form_resultallusers .rowl.nav_btns .left,
#form_resultallusers .rowl.nav_btns .right,
#form_questioneditor .row.nav_btns .left,
#form_questioneditor .row.nav_btns .right,
#form_questioneditor .rowl.nav_btns .left,
#form_questioneditor .rowl.nav_btns .right,
#form_answereditor .row.nav_btns .left,
#form_answereditor .row.nav_btns .right,
#form_answereditor .rowl.nav_btns .left,
#form_answereditor .rowl.nav_btns .right,
#form_testeditor .row.nav_btns .left,
#form_testeditor .row.nav_btns .right,
#form_testeditor .rowl.nav_btns .left,
#form_testeditor .rowl.nav_btns .right {
  float: none;
  width: auto;
  padding: 15px 0 0 0;
}
#form_usereditor .row.nav_btns .left a, #form_usereditor .row.nav_btns .right a, #form_usereditor .rowl.nav_btns .left a, #form_usereditor .rowl.nav_btns .right a,
#form_groupeditor .row.nav_btns .left a,
#form_groupeditor .row.nav_btns .right a,
#form_groupeditor .rowl.nav_btns .left a,
#form_groupeditor .rowl.nav_btns .right a,
#form_userselect .row.nav_btns .left a,
#form_userselect .row.nav_btns .right a,
#form_userselect .rowl.nav_btns .left a,
#form_userselect .rowl.nav_btns .right a,
#userselect .row.nav_btns .left a,
#userselect .row.nav_btns .right a,
#userselect .rowl.nav_btns .left a,
#userselect .rowl.nav_btns .right a,
#form_importusers .row.nav_btns .left a,
#form_importusers .row.nav_btns .right a,
#form_importusers .rowl.nav_btns .left a,
#form_importusers .rowl.nav_btns .right a,
#form_moduleeditor .row.nav_btns .left a,
#form_moduleeditor .row.nav_btns .right a,
#form_moduleeditor .rowl.nav_btns .left a,
#form_moduleeditor .rowl.nav_btns .right a,
#form_subjecteditor .row.nav_btns .left a,
#form_subjecteditor .row.nav_btns .right a,
#form_subjecteditor .rowl.nav_btns .left a,
#form_subjecteditor .rowl.nav_btns .right a,
#form_selectquestions .row.nav_btns .left a,
#form_selectquestions .row.nav_btns .right a,
#form_selectquestions .rowl.nav_btns .left a,
#form_selectquestions .rowl.nav_btns .right a,
#form_importquestions .row.nav_btns .left a,
#form_importquestions .row.nav_btns .right a,
#form_importquestions .rowl.nav_btns .left a,
#form_importquestions .rowl.nav_btns .right a,
#form_importsslcert .row.nav_btns .left a,
#form_importsslcert .row.nav_btns .right a,
#form_importsslcert .rowl.nav_btns .left a,
#form_importsslcert .rowl.nav_btns .right a,
#form_omrimport .row.nav_btns .left a,
#form_omrimport .row.nav_btns .right a,
#form_omrimport .rowl.nav_btns .left a,
#form_omrimport .rowl.nav_btns .right a,
#form_ratingeditor .row.nav_btns .left a,
#form_ratingeditor .row.nav_btns .right a,
#form_ratingeditor .rowl.nav_btns .left a,
#form_ratingeditor .rowl.nav_btns .right a,
#form_resultallusers .row.nav_btns .left a,
#form_resultallusers .row.nav_btns .right a,
#form_resultallusers .rowl.nav_btns .left a,
#form_resultallusers .rowl.nav_btns .right a,
#form_questioneditor .row.nav_btns .left a,
#form_questioneditor .row.nav_btns .right a,
#form_questioneditor .rowl.nav_btns .left a,
#form_questioneditor .rowl.nav_btns .right a,
#form_answereditor .row.nav_btns .left a,
#form_answereditor .row.nav_btns .right a,
#form_answereditor .rowl.nav_btns .left a,
#form_answereditor .rowl.nav_btns .right a,
#form_testeditor .row.nav_btns .left a,
#form_testeditor .row.nav_btns .right a,
#form_testeditor .rowl.nav_btns .left a,
#form_testeditor .rowl.nav_btns .right a {
  display: inline;
  padding: 10px 20px !important;
  background-color: var(--border_color_lighter);
  border: 1px solid var(--border_color) !important;
  border-radius: 8px !important;
  color: var(--text_color);
}
#form_usereditor .row.nav_btns .left a:hover, #form_usereditor .row.nav_btns .right a:hover, #form_usereditor .rowl.nav_btns .left a:hover, #form_usereditor .rowl.nav_btns .right a:hover,
#form_groupeditor .row.nav_btns .left a:hover,
#form_groupeditor .row.nav_btns .right a:hover,
#form_groupeditor .rowl.nav_btns .left a:hover,
#form_groupeditor .rowl.nav_btns .right a:hover,
#form_userselect .row.nav_btns .left a:hover,
#form_userselect .row.nav_btns .right a:hover,
#form_userselect .rowl.nav_btns .left a:hover,
#form_userselect .rowl.nav_btns .right a:hover,
#userselect .row.nav_btns .left a:hover,
#userselect .row.nav_btns .right a:hover,
#userselect .rowl.nav_btns .left a:hover,
#userselect .rowl.nav_btns .right a:hover,
#form_importusers .row.nav_btns .left a:hover,
#form_importusers .row.nav_btns .right a:hover,
#form_importusers .rowl.nav_btns .left a:hover,
#form_importusers .rowl.nav_btns .right a:hover,
#form_moduleeditor .row.nav_btns .left a:hover,
#form_moduleeditor .row.nav_btns .right a:hover,
#form_moduleeditor .rowl.nav_btns .left a:hover,
#form_moduleeditor .rowl.nav_btns .right a:hover,
#form_subjecteditor .row.nav_btns .left a:hover,
#form_subjecteditor .row.nav_btns .right a:hover,
#form_subjecteditor .rowl.nav_btns .left a:hover,
#form_subjecteditor .rowl.nav_btns .right a:hover,
#form_selectquestions .row.nav_btns .left a:hover,
#form_selectquestions .row.nav_btns .right a:hover,
#form_selectquestions .rowl.nav_btns .left a:hover,
#form_selectquestions .rowl.nav_btns .right a:hover,
#form_importquestions .row.nav_btns .left a:hover,
#form_importquestions .row.nav_btns .right a:hover,
#form_importquestions .rowl.nav_btns .left a:hover,
#form_importquestions .rowl.nav_btns .right a:hover,
#form_importsslcert .row.nav_btns .left a:hover,
#form_importsslcert .row.nav_btns .right a:hover,
#form_importsslcert .rowl.nav_btns .left a:hover,
#form_importsslcert .rowl.nav_btns .right a:hover,
#form_omrimport .row.nav_btns .left a:hover,
#form_omrimport .row.nav_btns .right a:hover,
#form_omrimport .rowl.nav_btns .left a:hover,
#form_omrimport .rowl.nav_btns .right a:hover,
#form_ratingeditor .row.nav_btns .left a:hover,
#form_ratingeditor .row.nav_btns .right a:hover,
#form_ratingeditor .rowl.nav_btns .left a:hover,
#form_ratingeditor .rowl.nav_btns .right a:hover,
#form_resultallusers .row.nav_btns .left a:hover,
#form_resultallusers .row.nav_btns .right a:hover,
#form_resultallusers .rowl.nav_btns .left a:hover,
#form_resultallusers .rowl.nav_btns .right a:hover,
#form_questioneditor .row.nav_btns .left a:hover,
#form_questioneditor .row.nav_btns .right a:hover,
#form_questioneditor .rowl.nav_btns .left a:hover,
#form_questioneditor .rowl.nav_btns .right a:hover,
#form_answereditor .row.nav_btns .left a:hover,
#form_answereditor .row.nav_btns .right a:hover,
#form_answereditor .rowl.nav_btns .left a:hover,
#form_answereditor .rowl.nav_btns .right a:hover,
#form_testeditor .row.nav_btns .left a:hover,
#form_testeditor .row.nav_btns .right a:hover,
#form_testeditor .rowl.nav_btns .left a:hover,
#form_testeditor .rowl.nav_btns .right a:hover {
  background-color: var(--main_color_lighter5);
  border-color: var(--main_color_lighter4) !important;
}
#form_usereditor .row.nav_btns .left, #form_usereditor .rowl.nav_btns .left,
#form_groupeditor .row.nav_btns .left,
#form_groupeditor .rowl.nav_btns .left,
#form_userselect .row.nav_btns .left,
#form_userselect .rowl.nav_btns .left,
#userselect .row.nav_btns .left,
#userselect .rowl.nav_btns .left,
#form_importusers .row.nav_btns .left,
#form_importusers .rowl.nav_btns .left,
#form_moduleeditor .row.nav_btns .left,
#form_moduleeditor .rowl.nav_btns .left,
#form_subjecteditor .row.nav_btns .left,
#form_subjecteditor .rowl.nav_btns .left,
#form_selectquestions .row.nav_btns .left,
#form_selectquestions .rowl.nav_btns .left,
#form_importquestions .row.nav_btns .left,
#form_importquestions .rowl.nav_btns .left,
#form_importsslcert .row.nav_btns .left,
#form_importsslcert .rowl.nav_btns .left,
#form_omrimport .row.nav_btns .left,
#form_omrimport .rowl.nav_btns .left,
#form_ratingeditor .row.nav_btns .left,
#form_ratingeditor .rowl.nav_btns .left,
#form_resultallusers .row.nav_btns .left,
#form_resultallusers .rowl.nav_btns .left,
#form_questioneditor .row.nav_btns .left,
#form_questioneditor .rowl.nav_btns .left,
#form_answereditor .row.nav_btns .left,
#form_answereditor .rowl.nav_btns .left,
#form_testeditor .row.nav_btns .left,
#form_testeditor .rowl.nav_btns .left {
  text-align: left;
}
#form_usereditor .row.nav_btns .right, #form_usereditor .rowl.nav_btns .right,
#form_groupeditor .row.nav_btns .right,
#form_groupeditor .rowl.nav_btns .right,
#form_userselect .row.nav_btns .right,
#form_userselect .rowl.nav_btns .right,
#userselect .row.nav_btns .right,
#userselect .rowl.nav_btns .right,
#form_importusers .row.nav_btns .right,
#form_importusers .rowl.nav_btns .right,
#form_moduleeditor .row.nav_btns .right,
#form_moduleeditor .rowl.nav_btns .right,
#form_subjecteditor .row.nav_btns .right,
#form_subjecteditor .rowl.nav_btns .right,
#form_selectquestions .row.nav_btns .right,
#form_selectquestions .rowl.nav_btns .right,
#form_importquestions .row.nav_btns .right,
#form_importquestions .rowl.nav_btns .right,
#form_importsslcert .row.nav_btns .right,
#form_importsslcert .rowl.nav_btns .right,
#form_omrimport .row.nav_btns .right,
#form_omrimport .rowl.nav_btns .right,
#form_ratingeditor .row.nav_btns .right,
#form_ratingeditor .rowl.nav_btns .right,
#form_resultallusers .row.nav_btns .right,
#form_resultallusers .rowl.nav_btns .right,
#form_questioneditor .row.nav_btns .right,
#form_questioneditor .rowl.nav_btns .right,
#form_answereditor .row.nav_btns .right,
#form_answereditor .rowl.nav_btns .right,
#form_testeditor .row.nav_btns .right,
#form_testeditor .rowl.nav_btns .right {
  text-align: right;
}
#form_usereditor .row .preview_title, #form_usereditor .rowl .preview_title,
#form_groupeditor .row .preview_title,
#form_groupeditor .rowl .preview_title,
#form_userselect .row .preview_title,
#form_userselect .rowl .preview_title,
#userselect .row .preview_title,
#userselect .rowl .preview_title,
#form_importusers .row .preview_title,
#form_importusers .rowl .preview_title,
#form_moduleeditor .row .preview_title,
#form_moduleeditor .rowl .preview_title,
#form_subjecteditor .row .preview_title,
#form_subjecteditor .rowl .preview_title,
#form_selectquestions .row .preview_title,
#form_selectquestions .rowl .preview_title,
#form_importquestions .row .preview_title,
#form_importquestions .rowl .preview_title,
#form_importsslcert .row .preview_title,
#form_importsslcert .rowl .preview_title,
#form_omrimport .row .preview_title,
#form_omrimport .rowl .preview_title,
#form_ratingeditor .row .preview_title,
#form_ratingeditor .rowl .preview_title,
#form_resultallusers .row .preview_title,
#form_resultallusers .rowl .preview_title,
#form_questioneditor .row .preview_title,
#form_questioneditor .rowl .preview_title,
#form_answereditor .row .preview_title,
#form_answereditor .rowl .preview_title,
#form_testeditor .row .preview_title,
#form_testeditor .rowl .preview_title {
  margin: 20px 0 0 0;
  padding: 0 0 5px 5px;
  font-size: 16px;
  font-weight: 600;
}
#form_usereditor .row .preview, #form_usereditor .rowl .preview,
#form_groupeditor .row .preview,
#form_groupeditor .rowl .preview,
#form_userselect .row .preview,
#form_userselect .rowl .preview,
#userselect .row .preview,
#userselect .rowl .preview,
#form_importusers .row .preview,
#form_importusers .rowl .preview,
#form_moduleeditor .row .preview,
#form_moduleeditor .rowl .preview,
#form_subjecteditor .row .preview,
#form_subjecteditor .rowl .preview,
#form_selectquestions .row .preview,
#form_selectquestions .rowl .preview,
#form_importquestions .row .preview,
#form_importquestions .rowl .preview,
#form_importsslcert .row .preview,
#form_importsslcert .rowl .preview,
#form_omrimport .row .preview,
#form_omrimport .rowl .preview,
#form_ratingeditor .row .preview,
#form_ratingeditor .rowl .preview,
#form_resultallusers .row .preview,
#form_resultallusers .rowl .preview,
#form_questioneditor .row .preview,
#form_questioneditor .rowl .preview,
#form_answereditor .row .preview,
#form_answereditor .rowl .preview,
#form_testeditor .row .preview,
#form_testeditor .rowl .preview {
  padding: 10px 20px;
  border: 1px solid var(--border_color);
  border-radius: 8px;
}
#form_usereditor .row .formw #hide_answers, #form_usereditor .rowl .formw #hide_answers,
#form_groupeditor .row .formw #hide_answers,
#form_groupeditor .rowl .formw #hide_answers,
#form_userselect .row .formw #hide_answers,
#form_userselect .rowl .formw #hide_answers,
#userselect .row .formw #hide_answers,
#userselect .rowl .formw #hide_answers,
#form_importusers .row .formw #hide_answers,
#form_importusers .rowl .formw #hide_answers,
#form_moduleeditor .row .formw #hide_answers,
#form_moduleeditor .rowl .formw #hide_answers,
#form_subjecteditor .row .formw #hide_answers,
#form_subjecteditor .rowl .formw #hide_answers,
#form_selectquestions .row .formw #hide_answers,
#form_selectquestions .rowl .formw #hide_answers,
#form_importquestions .row .formw #hide_answers,
#form_importquestions .rowl .formw #hide_answers,
#form_importsslcert .row .formw #hide_answers,
#form_importsslcert .rowl .formw #hide_answers,
#form_omrimport .row .formw #hide_answers,
#form_omrimport .rowl .formw #hide_answers,
#form_ratingeditor .row .formw #hide_answers,
#form_ratingeditor .rowl .formw #hide_answers,
#form_resultallusers .row .formw #hide_answers,
#form_resultallusers .rowl .formw #hide_answers,
#form_questioneditor .row .formw #hide_answers,
#form_questioneditor .rowl .formw #hide_answers,
#form_answereditor .row .formw #hide_answers,
#form_answereditor .rowl .formw #hide_answers,
#form_testeditor .row .formw #hide_answers,
#form_testeditor .rowl .formw #hide_answers {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  vertical-align: -5px;
}
#form_usereditor .row .offbox, #form_usereditor .row .onbox, #form_usereditor .rowl .offbox, #form_usereditor .rowl .onbox,
#form_groupeditor .row .offbox,
#form_groupeditor .row .onbox,
#form_groupeditor .rowl .offbox,
#form_groupeditor .rowl .onbox,
#form_userselect .row .offbox,
#form_userselect .row .onbox,
#form_userselect .rowl .offbox,
#form_userselect .rowl .onbox,
#userselect .row .offbox,
#userselect .row .onbox,
#userselect .rowl .offbox,
#userselect .rowl .onbox,
#form_importusers .row .offbox,
#form_importusers .row .onbox,
#form_importusers .rowl .offbox,
#form_importusers .rowl .onbox,
#form_moduleeditor .row .offbox,
#form_moduleeditor .row .onbox,
#form_moduleeditor .rowl .offbox,
#form_moduleeditor .rowl .onbox,
#form_subjecteditor .row .offbox,
#form_subjecteditor .row .onbox,
#form_subjecteditor .rowl .offbox,
#form_subjecteditor .rowl .onbox,
#form_selectquestions .row .offbox,
#form_selectquestions .row .onbox,
#form_selectquestions .rowl .offbox,
#form_selectquestions .rowl .onbox,
#form_importquestions .row .offbox,
#form_importquestions .row .onbox,
#form_importquestions .rowl .offbox,
#form_importquestions .rowl .onbox,
#form_importsslcert .row .offbox,
#form_importsslcert .row .onbox,
#form_importsslcert .rowl .offbox,
#form_importsslcert .rowl .onbox,
#form_omrimport .row .offbox,
#form_omrimport .row .onbox,
#form_omrimport .rowl .offbox,
#form_omrimport .rowl .onbox,
#form_ratingeditor .row .offbox,
#form_ratingeditor .row .onbox,
#form_ratingeditor .rowl .offbox,
#form_ratingeditor .rowl .onbox,
#form_resultallusers .row .offbox,
#form_resultallusers .row .onbox,
#form_resultallusers .rowl .offbox,
#form_resultallusers .rowl .onbox,
#form_questioneditor .row .offbox,
#form_questioneditor .row .onbox,
#form_questioneditor .rowl .offbox,
#form_questioneditor .rowl .onbox,
#form_answereditor .row .offbox,
#form_answereditor .row .onbox,
#form_answereditor .rowl .offbox,
#form_answereditor .rowl .onbox,
#form_testeditor .row .offbox,
#form_testeditor .row .onbox,
#form_testeditor .rowl .offbox,
#form_testeditor .rowl .onbox {
  padding: 4px 8px;
  border-radius: 3px;
  line-height: 0;
  font-size: 15px;
  border-color: var(--border_color_darker);
}
#form_usereditor .row .question #questionid1, #form_usereditor .rowl .question #questionid1,
#form_groupeditor .row .question #questionid1,
#form_groupeditor .rowl .question #questionid1,
#form_userselect .row .question #questionid1,
#form_userselect .rowl .question #questionid1,
#userselect .row .question #questionid1,
#userselect .rowl .question #questionid1,
#form_importusers .row .question #questionid1,
#form_importusers .rowl .question #questionid1,
#form_moduleeditor .row .question #questionid1,
#form_moduleeditor .rowl .question #questionid1,
#form_subjecteditor .row .question #questionid1,
#form_subjecteditor .rowl .question #questionid1,
#form_selectquestions .row .question #questionid1,
#form_selectquestions .rowl .question #questionid1,
#form_importquestions .row .question #questionid1,
#form_importquestions .rowl .question #questionid1,
#form_importsslcert .row .question #questionid1,
#form_importsslcert .rowl .question #questionid1,
#form_omrimport .row .question #questionid1,
#form_omrimport .rowl .question #questionid1,
#form_ratingeditor .row .question #questionid1,
#form_ratingeditor .rowl .question #questionid1,
#form_resultallusers .row .question #questionid1,
#form_resultallusers .rowl .question #questionid1,
#form_questioneditor .row .question #questionid1,
#form_questioneditor .rowl .question #questionid1,
#form_answereditor .row .question #questionid1,
#form_answereditor .rowl .question #questionid1,
#form_testeditor .row .question #questionid1,
#form_testeditor .rowl .question #questionid1 {
  width: 20px;
  height: 20px;
  margin: 0 16px 0 15px;
  vertical-align: -5px;
}
#form_usereditor .row .question .answer li .okbox, #form_usereditor .row .question .answer li .nobox, #form_usereditor .rowl .question .answer li .okbox, #form_usereditor .rowl .question .answer li .nobox,
#form_groupeditor .row .question .answer li .okbox,
#form_groupeditor .row .question .answer li .nobox,
#form_groupeditor .rowl .question .answer li .okbox,
#form_groupeditor .rowl .question .answer li .nobox,
#form_userselect .row .question .answer li .okbox,
#form_userselect .row .question .answer li .nobox,
#form_userselect .rowl .question .answer li .okbox,
#form_userselect .rowl .question .answer li .nobox,
#userselect .row .question .answer li .okbox,
#userselect .row .question .answer li .nobox,
#userselect .rowl .question .answer li .okbox,
#userselect .rowl .question .answer li .nobox,
#form_importusers .row .question .answer li .okbox,
#form_importusers .row .question .answer li .nobox,
#form_importusers .rowl .question .answer li .okbox,
#form_importusers .rowl .question .answer li .nobox,
#form_moduleeditor .row .question .answer li .okbox,
#form_moduleeditor .row .question .answer li .nobox,
#form_moduleeditor .rowl .question .answer li .okbox,
#form_moduleeditor .rowl .question .answer li .nobox,
#form_subjecteditor .row .question .answer li .okbox,
#form_subjecteditor .row .question .answer li .nobox,
#form_subjecteditor .rowl .question .answer li .okbox,
#form_subjecteditor .rowl .question .answer li .nobox,
#form_selectquestions .row .question .answer li .okbox,
#form_selectquestions .row .question .answer li .nobox,
#form_selectquestions .rowl .question .answer li .okbox,
#form_selectquestions .rowl .question .answer li .nobox,
#form_importquestions .row .question .answer li .okbox,
#form_importquestions .row .question .answer li .nobox,
#form_importquestions .rowl .question .answer li .okbox,
#form_importquestions .rowl .question .answer li .nobox,
#form_importsslcert .row .question .answer li .okbox,
#form_importsslcert .row .question .answer li .nobox,
#form_importsslcert .rowl .question .answer li .okbox,
#form_importsslcert .rowl .question .answer li .nobox,
#form_omrimport .row .question .answer li .okbox,
#form_omrimport .row .question .answer li .nobox,
#form_omrimport .rowl .question .answer li .okbox,
#form_omrimport .rowl .question .answer li .nobox,
#form_ratingeditor .row .question .answer li .okbox,
#form_ratingeditor .row .question .answer li .nobox,
#form_ratingeditor .rowl .question .answer li .okbox,
#form_ratingeditor .rowl .question .answer li .nobox,
#form_resultallusers .row .question .answer li .okbox,
#form_resultallusers .row .question .answer li .nobox,
#form_resultallusers .rowl .question .answer li .okbox,
#form_resultallusers .rowl .question .answer li .nobox,
#form_questioneditor .row .question .answer li .okbox,
#form_questioneditor .row .question .answer li .nobox,
#form_questioneditor .rowl .question .answer li .okbox,
#form_questioneditor .rowl .question .answer li .nobox,
#form_answereditor .row .question .answer li .okbox,
#form_answereditor .row .question .answer li .nobox,
#form_answereditor .rowl .question .answer li .okbox,
#form_answereditor .rowl .question .answer li .nobox,
#form_testeditor .row .question .answer li .okbox,
#form_testeditor .row .question .answer li .nobox,
#form_testeditor .rowl .question .answer li .okbox,
#form_testeditor .rowl .question .answer li .nobox {
  padding: 4px 8px;
  border-radius: 3px;
  line-height: 0;
  font-size: 15px;
  border-color: var(--border_color_darker);
}
#form_usereditor .row .question .xmlbutton, #form_usereditor .rowl .question .xmlbutton,
#form_groupeditor .row .question .xmlbutton,
#form_groupeditor .rowl .question .xmlbutton,
#form_userselect .row .question .xmlbutton,
#form_userselect .rowl .question .xmlbutton,
#userselect .row .question .xmlbutton,
#userselect .rowl .question .xmlbutton,
#form_importusers .row .question .xmlbutton,
#form_importusers .rowl .question .xmlbutton,
#form_moduleeditor .row .question .xmlbutton,
#form_moduleeditor .rowl .question .xmlbutton,
#form_subjecteditor .row .question .xmlbutton,
#form_subjecteditor .rowl .question .xmlbutton,
#form_selectquestions .row .question .xmlbutton,
#form_selectquestions .rowl .question .xmlbutton,
#form_importquestions .row .question .xmlbutton,
#form_importquestions .rowl .question .xmlbutton,
#form_importsslcert .row .question .xmlbutton,
#form_importsslcert .rowl .question .xmlbutton,
#form_omrimport .row .question .xmlbutton,
#form_omrimport .rowl .question .xmlbutton,
#form_ratingeditor .row .question .xmlbutton,
#form_ratingeditor .rowl .question .xmlbutton,
#form_resultallusers .row .question .xmlbutton,
#form_resultallusers .rowl .question .xmlbutton,
#form_questioneditor .row .question .xmlbutton,
#form_questioneditor .rowl .question .xmlbutton,
#form_answereditor .row .question .xmlbutton,
#form_answereditor .rowl .question .xmlbutton,
#form_testeditor .row .question .xmlbutton,
#form_testeditor .rowl .question .xmlbutton {
  min-width: 120px;
}
#form_usereditor .row #checkall1,
#form_usereditor .row #checkall0, #form_usereditor .rowl #checkall1,
#form_usereditor .rowl #checkall0,
#form_groupeditor .row #checkall1,
#form_groupeditor .row #checkall0,
#form_groupeditor .rowl #checkall1,
#form_groupeditor .rowl #checkall0,
#form_userselect .row #checkall1,
#form_userselect .row #checkall0,
#form_userselect .rowl #checkall1,
#form_userselect .rowl #checkall0,
#userselect .row #checkall1,
#userselect .row #checkall0,
#userselect .rowl #checkall1,
#userselect .rowl #checkall0,
#form_importusers .row #checkall1,
#form_importusers .row #checkall0,
#form_importusers .rowl #checkall1,
#form_importusers .rowl #checkall0,
#form_moduleeditor .row #checkall1,
#form_moduleeditor .row #checkall0,
#form_moduleeditor .rowl #checkall1,
#form_moduleeditor .rowl #checkall0,
#form_subjecteditor .row #checkall1,
#form_subjecteditor .row #checkall0,
#form_subjecteditor .rowl #checkall1,
#form_subjecteditor .rowl #checkall0,
#form_selectquestions .row #checkall1,
#form_selectquestions .row #checkall0,
#form_selectquestions .rowl #checkall1,
#form_selectquestions .rowl #checkall0,
#form_importquestions .row #checkall1,
#form_importquestions .row #checkall0,
#form_importquestions .rowl #checkall1,
#form_importquestions .rowl #checkall0,
#form_importsslcert .row #checkall1,
#form_importsslcert .row #checkall0,
#form_importsslcert .rowl #checkall1,
#form_importsslcert .rowl #checkall0,
#form_omrimport .row #checkall1,
#form_omrimport .row #checkall0,
#form_omrimport .rowl #checkall1,
#form_omrimport .rowl #checkall0,
#form_ratingeditor .row #checkall1,
#form_ratingeditor .row #checkall0,
#form_ratingeditor .rowl #checkall1,
#form_ratingeditor .rowl #checkall0,
#form_resultallusers .row #checkall1,
#form_resultallusers .row #checkall0,
#form_resultallusers .rowl #checkall1,
#form_resultallusers .rowl #checkall0,
#form_questioneditor .row #checkall1,
#form_questioneditor .row #checkall0,
#form_questioneditor .rowl #checkall1,
#form_questioneditor .rowl #checkall0,
#form_answereditor .row #checkall1,
#form_answereditor .row #checkall0,
#form_answereditor .rowl #checkall1,
#form_answereditor .rowl #checkall0,
#form_testeditor .row #checkall1,
#form_testeditor .row #checkall0,
#form_testeditor .rowl #checkall1,
#form_testeditor .rowl #checkall0 {
  width: 20px;
  height: 20px;
  margin: 0 4px 0 0;
  vertical-align: -5px;
}
#form_usereditor .row #checkall0, #form_usereditor .rowl #checkall0,
#form_groupeditor .row #checkall0,
#form_groupeditor .rowl #checkall0,
#form_userselect .row #checkall0,
#form_userselect .rowl #checkall0,
#userselect .row #checkall0,
#userselect .rowl #checkall0,
#form_importusers .row #checkall0,
#form_importusers .rowl #checkall0,
#form_moduleeditor .row #checkall0,
#form_moduleeditor .rowl #checkall0,
#form_subjecteditor .row #checkall0,
#form_subjecteditor .rowl #checkall0,
#form_selectquestions .row #checkall0,
#form_selectquestions .rowl #checkall0,
#form_importquestions .row #checkall0,
#form_importquestions .rowl #checkall0,
#form_importsslcert .row #checkall0,
#form_importsslcert .rowl #checkall0,
#form_omrimport .row #checkall0,
#form_omrimport .rowl #checkall0,
#form_ratingeditor .row #checkall0,
#form_ratingeditor .rowl #checkall0,
#form_resultallusers .row #checkall0,
#form_resultallusers .rowl #checkall0,
#form_questioneditor .row #checkall0,
#form_questioneditor .rowl #checkall0,
#form_answereditor .row #checkall0,
#form_answereditor .rowl #checkall0,
#form_testeditor .row #checkall0,
#form_testeditor .rowl #checkall0 {
  margin: 0 4px 0 10px;
}
#form_usereditor .row #menu_action,
#form_usereditor .row #new_subject_id, #form_usereditor .rowl #menu_action,
#form_usereditor .rowl #new_subject_id,
#form_groupeditor .row #menu_action,
#form_groupeditor .row #new_subject_id,
#form_groupeditor .rowl #menu_action,
#form_groupeditor .rowl #new_subject_id,
#form_userselect .row #menu_action,
#form_userselect .row #new_subject_id,
#form_userselect .rowl #menu_action,
#form_userselect .rowl #new_subject_id,
#userselect .row #menu_action,
#userselect .row #new_subject_id,
#userselect .rowl #menu_action,
#userselect .rowl #new_subject_id,
#form_importusers .row #menu_action,
#form_importusers .row #new_subject_id,
#form_importusers .rowl #menu_action,
#form_importusers .rowl #new_subject_id,
#form_moduleeditor .row #menu_action,
#form_moduleeditor .row #new_subject_id,
#form_moduleeditor .rowl #menu_action,
#form_moduleeditor .rowl #new_subject_id,
#form_subjecteditor .row #menu_action,
#form_subjecteditor .row #new_subject_id,
#form_subjecteditor .rowl #menu_action,
#form_subjecteditor .rowl #new_subject_id,
#form_selectquestions .row #menu_action,
#form_selectquestions .row #new_subject_id,
#form_selectquestions .rowl #menu_action,
#form_selectquestions .rowl #new_subject_id,
#form_importquestions .row #menu_action,
#form_importquestions .row #new_subject_id,
#form_importquestions .rowl #menu_action,
#form_importquestions .rowl #new_subject_id,
#form_importsslcert .row #menu_action,
#form_importsslcert .row #new_subject_id,
#form_importsslcert .rowl #menu_action,
#form_importsslcert .rowl #new_subject_id,
#form_omrimport .row #menu_action,
#form_omrimport .row #new_subject_id,
#form_omrimport .rowl #menu_action,
#form_omrimport .rowl #new_subject_id,
#form_ratingeditor .row #menu_action,
#form_ratingeditor .row #new_subject_id,
#form_ratingeditor .rowl #menu_action,
#form_ratingeditor .rowl #new_subject_id,
#form_resultallusers .row #menu_action,
#form_resultallusers .row #new_subject_id,
#form_resultallusers .rowl #menu_action,
#form_resultallusers .rowl #new_subject_id,
#form_questioneditor .row #menu_action,
#form_questioneditor .row #new_subject_id,
#form_questioneditor .rowl #menu_action,
#form_questioneditor .rowl #new_subject_id,
#form_answereditor .row #menu_action,
#form_answereditor .row #new_subject_id,
#form_answereditor .rowl #menu_action,
#form_answereditor .rowl #new_subject_id,
#form_testeditor .row #menu_action,
#form_testeditor .row #new_subject_id,
#form_testeditor .rowl #menu_action,
#form_testeditor .rowl #new_subject_id {
  margin: 0 5px 0 10px;
  padding: 12px 10px;
  border-color: var(--border_color);
  border-radius: 8px;
  cursor: pointer;
}
#form_usereditor .row #menu_action:focus-within,
#form_usereditor .row #new_subject_id:focus-within, #form_usereditor .rowl #menu_action:focus-within,
#form_usereditor .rowl #new_subject_id:focus-within,
#form_groupeditor .row #menu_action:focus-within,
#form_groupeditor .row #new_subject_id:focus-within,
#form_groupeditor .rowl #menu_action:focus-within,
#form_groupeditor .rowl #new_subject_id:focus-within,
#form_userselect .row #menu_action:focus-within,
#form_userselect .row #new_subject_id:focus-within,
#form_userselect .rowl #menu_action:focus-within,
#form_userselect .rowl #new_subject_id:focus-within,
#userselect .row #menu_action:focus-within,
#userselect .row #new_subject_id:focus-within,
#userselect .rowl #menu_action:focus-within,
#userselect .rowl #new_subject_id:focus-within,
#form_importusers .row #menu_action:focus-within,
#form_importusers .row #new_subject_id:focus-within,
#form_importusers .rowl #menu_action:focus-within,
#form_importusers .rowl #new_subject_id:focus-within,
#form_moduleeditor .row #menu_action:focus-within,
#form_moduleeditor .row #new_subject_id:focus-within,
#form_moduleeditor .rowl #menu_action:focus-within,
#form_moduleeditor .rowl #new_subject_id:focus-within,
#form_subjecteditor .row #menu_action:focus-within,
#form_subjecteditor .row #new_subject_id:focus-within,
#form_subjecteditor .rowl #menu_action:focus-within,
#form_subjecteditor .rowl #new_subject_id:focus-within,
#form_selectquestions .row #menu_action:focus-within,
#form_selectquestions .row #new_subject_id:focus-within,
#form_selectquestions .rowl #menu_action:focus-within,
#form_selectquestions .rowl #new_subject_id:focus-within,
#form_importquestions .row #menu_action:focus-within,
#form_importquestions .row #new_subject_id:focus-within,
#form_importquestions .rowl #menu_action:focus-within,
#form_importquestions .rowl #new_subject_id:focus-within,
#form_importsslcert .row #menu_action:focus-within,
#form_importsslcert .row #new_subject_id:focus-within,
#form_importsslcert .rowl #menu_action:focus-within,
#form_importsslcert .rowl #new_subject_id:focus-within,
#form_omrimport .row #menu_action:focus-within,
#form_omrimport .row #new_subject_id:focus-within,
#form_omrimport .rowl #menu_action:focus-within,
#form_omrimport .rowl #new_subject_id:focus-within,
#form_ratingeditor .row #menu_action:focus-within,
#form_ratingeditor .row #new_subject_id:focus-within,
#form_ratingeditor .rowl #menu_action:focus-within,
#form_ratingeditor .rowl #new_subject_id:focus-within,
#form_resultallusers .row #menu_action:focus-within,
#form_resultallusers .row #new_subject_id:focus-within,
#form_resultallusers .rowl #menu_action:focus-within,
#form_resultallusers .rowl #new_subject_id:focus-within,
#form_questioneditor .row #menu_action:focus-within,
#form_questioneditor .row #new_subject_id:focus-within,
#form_questioneditor .rowl #menu_action:focus-within,
#form_questioneditor .rowl #new_subject_id:focus-within,
#form_answereditor .row #menu_action:focus-within,
#form_answereditor .row #new_subject_id:focus-within,
#form_answereditor .rowl #menu_action:focus-within,
#form_answereditor .rowl #new_subject_id:focus-within,
#form_testeditor .row #menu_action:focus-within,
#form_testeditor .row #new_subject_id:focus-within,
#form_testeditor .rowl #menu_action:focus-within,
#form_testeditor .rowl #new_subject_id:focus-within {
  border-color: var(--main_color_lighter3);
}
#form_usereditor .row #new_subject_id, #form_usereditor .rowl #new_subject_id,
#form_groupeditor .row #new_subject_id,
#form_groupeditor .rowl #new_subject_id,
#form_userselect .row #new_subject_id,
#form_userselect .rowl #new_subject_id,
#userselect .row #new_subject_id,
#userselect .rowl #new_subject_id,
#form_importusers .row #new_subject_id,
#form_importusers .rowl #new_subject_id,
#form_moduleeditor .row #new_subject_id,
#form_moduleeditor .rowl #new_subject_id,
#form_subjecteditor .row #new_subject_id,
#form_subjecteditor .rowl #new_subject_id,
#form_selectquestions .row #new_subject_id,
#form_selectquestions .rowl #new_subject_id,
#form_importquestions .row #new_subject_id,
#form_importquestions .rowl #new_subject_id,
#form_importsslcert .row #new_subject_id,
#form_importsslcert .rowl #new_subject_id,
#form_omrimport .row #new_subject_id,
#form_omrimport .rowl #new_subject_id,
#form_ratingeditor .row #new_subject_id,
#form_ratingeditor .rowl #new_subject_id,
#form_resultallusers .row #new_subject_id,
#form_resultallusers .rowl #new_subject_id,
#form_questioneditor .row #new_subject_id,
#form_questioneditor .rowl #new_subject_id,
#form_answereditor .row #new_subject_id,
#form_answereditor .rowl #new_subject_id,
#form_testeditor .row #new_subject_id,
#form_testeditor .rowl #new_subject_id {
  margin: 0 3px 0 0;
}

.form_submit_btn {
  min-width: 150px;
  margin: 20px 6px 0 6px;
  padding: 7px 15px;
  background: var(--border_color_lighter);
  border: 1px solid var(--border_color);
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
.form_submit_btn:hover {
  background-color: var(--main_color_lighter4);
  border-color: var(--main_color_lighter3);
}

#form_userselect {
  padding: 20px 20px 40px 20px;
  background-color: #fff;
  border: 1px solid var(--border_color_lighter);
  border-radius: 14px;
}
#form_userselect .row .label {
  width: 70px;
  text-align: left;
}
#form_userselect .row .formw {
  width: calc(100% - 70px);
}
#form_userselect .container {
  max-width: 850px;
  margin: 10px auto 0 auto;
}
#form_userselect .container ul {
  list-style: none;
  width: 100%;
  padding: 0;
}
#form_userselect .container ul li {
  display: inline-block;
  text-decoration: none;
  list-style-type: none;
  width: 100%;
}
#form_userselect .container #new_group_id,
#form_userselect .container #from_group_id,
#form_userselect .container #to_group_id {
  margin: 0 0 0 6px;
  padding: 10px 15px;
  border: 1px solid var(--border_color);
  border-radius: 8px;
}
#form_userselect .container .export_types_button {
  text-align: left;
}
#form_userselect .container .export_types_button .xmlbutton,
#form_userselect .container .export_types_button .xmlbutton,
#form_userselect .container .export_types_button .xmlbutton {
  width: 150px;
}

.db_checkboxes_auth {
  margin: 20px 0 0 0;
}

.userbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 1501px;
  margin: 0 !important;
  background-color: var(--main_color_lighter5) !important;
  z-index: 2;
}
.userbar .loginbutton, .userbar .logoutbutton {
  background-color: var(--green_color) !important;
  border-color: var(--green_color) !important;
  border-radius: 4px;
  font-size: 14px;
  text-transform: capitalize;
}
.userbar .loginbutton:hover, .userbar .logoutbutton:hover {
  background-color: var(--light_red_1);
}
.userbar .logoutbutton {
  background-color: var(--dark_red) !important;
  border-color: var(--dark_red) !important;
}

.minibutton {
  position: fixed;
  bottom: 8px;
  background-color: transparent;
  z-index: 3;
}
.minibutton.lang {
  bottom: 6px;
  max-width: 600px;
  padding: 0 0 0 10px;
}
.minibutton.lang .langselector {
  background-color: transparent;
  border-color: transparent;
  font-size: 11px;
}
.minibutton.lang .langselector .selected {
  background: var(--secondary_color_lighter);
}
.minibutton.copyright {
  left: 50%;
  bottom: -11px;
  transform: translate(-50%, -50%);
}
.minibutton.copyright .copyright {
  background: transparent;
}

.grid_container a {
  text-decoration: none;
}
.grid_container .one_grid_item {
  padding: 20px 30px 20px 30px;
  background-color: #fff;
  border: 1px solid var(--border_color_lighter);
  border-radius: 15px;
}
.grid_container .one_grid_item:hover {
  border-color: var(--secondary_color_lighter2);
}
.grid_container .one_grid_item:hover .title {
  color: var(--secondary_color);
}
.grid_container .one_grid_item.text_value .value {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--text_color_lighter3);
}
.grid_container .one_grid_item .title {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--main_color);
}
.grid_container .one_grid_item .value {
  height: 30px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.select_all_radio_btns {
  display: block;
  width: 100%;
  margin: -10px 0 -5px 0;
}
.select_all_radio_btns .one_radio_btn {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 4px 20px 4px 10px;
  border: 1px solid var(--border_color);
  border-radius: 8px;
  cursor: pointer;
}
.select_all_radio_btns .one_radio_btn:hover {
  background: var(--bg_color);
}
.select_all_radio_btns .one_radio_btn input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  vertical-align: -5px;
}/*# sourceMappingURL=custom.css.map */