/*@import url(fontawesome-all.min.css);*/

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,700,900");
html,
body,
nav,
footer {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --accroma_blue: #00b5e5;
  --accroma_action: #303030;
  --accroma_blue_light_1: #5bc8e7;
  --accroma_blue_light_2: #a4deee;
  --accroma_blue_dark_1: #004e64;
  --accroma_blue_dark_2: #00242e;
  --accroma_font_grey: #484848;
  --accroma_font_grey_2: #383838;
  --light_grey: #f1f1f1;
  --accroma_workbench_blue: #d2f2f9;
  --light_light_grey: rgb(238, 238, 238);
  --bimaru_border: #d6d6d6;
  --accroma-positive: #0cf2a6;
  --accroma-negative: #b33212;
}

h1 {
  font-size: 28px;
  color: var(--accroma_font_grey);

  margin: 0 0 20px 0;
}

h2 {
  font-size: 24px;
  color: var(--accroma_font_grey);

  margin: 0 0 10px 0;
}

h3 {
  font-size: 20px;
  color: var(--accroma_font_grey);

  margin: 0 0 5px 0;
}

h4 {
  font-size: 20px;
  color: var(--accroma_blue);

  margin: 0 0 5px 0;
}

body {
  position: relative;
}

body,
input,
textarea,
select {
  color: var(--accroma_font_grey_2);
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  outline: none;
  height: 1.25em;
  vertical-align: middle;
  padding: 0;
}

select {
  padding: 4px;
  height: auto;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 2px;
}

select > option {
  background-color: white;
}

option:disabled {
  font-style: italic;
}

.ma-none {
  margin: 0 !important;
}

.mb-none {
  margin-bottom: 0 !important;
}

.mt-none {
  margin-top: 0 !important;
}

.mt-xs {
  margin-top: 4px !important;
}

.mt-sm {
  margin-top: 8px !important;
}

.mb-md {
  margin-bottom: 12px !important;
}

.mt-md {
  margin-top: 12px !important;
}

.mt-xl {
  margin-top: 20px !important;
}

.mt-xxl {
  margin-top: 30px !important;
}

.mb-xl {
  margin-bottom: 20px !important;
}

.mb-xxl {
  margin-bottom: 30px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.column {
  display: flex;
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.items-center {
  align-items: center;
}

.no-wrap {
  flex-wrap: nowrap;
}

.flex-1 {
  flex: 1;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.bg-positive {
  background-color: var(--accroma-positive) !important;
}

.bg-negative {
  background-color: var(--accroma-negative) !important;
}

.bg-lightgrey {
  background-color: var(--light_grey) !important;
}

.text-color-positive {
  color: var(--accroma-positive) !important;
}

.text-color-negative {
  color: var(--accroma-negative) !important;
}

.horizontal-separator {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;

  margin: 15px 0;
}

.horizontal-separator > div {
  width: 95%;
  height: 1px;

  background-color: #bbb;
}
/* ---------editor--------------------------------- */

.wrapper-confirm-modal {
  display: none;

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;

  width: 100%;
  max-width: 300px;

  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 50px #1c1c1c;

  padding: 25px;

  text-align: center;
}

.wrapper-confirm-modal p {
  margin: 40px 0;

  font-size: 16px;
}

.blue_box {
  height: 130px;
  background-color: var(--accroma_workbench_blue);
  width: 100%;
}

.blue_box h4 {
  margin: 0px;
}

.button_delete {
  display: none;
}

.blue_box:hover .button_delete {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.button_delete > button {
  position: relative;
  right: 5px;
}

.vertical_flex_bench {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  padding-bottom: 5px;
}

.vertical_flex_bench > input,
.vertical_flex_bench > select {
  width: 80%;
}

.question_box_bench {
  height: 120px;
  background-color: var(--accroma_workbench_blue);
  width: 100%;
}

.question_distribution {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.question_seperator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 2px;
}

.question_vertical {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.question_vertical > select {
  padding: 0px;
}
/*------------------------------------------------------------*/
/*-----------------general styles---------------*/

.wrapper-pb-image {
  width: 150px;
  height: 150px;

  cursor: pointer;
}

.wrapper-pb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 10px;
}

.accroma_button {
  padding: 3px 15px;

  letter-spacing: 1px;
  font-weight: 500;
  line-height: 1.7em;
  color: #fff;

  background-color: var(--accroma_action);
  border: none;
  border-radius: 2px;

  cursor: pointer;
}

.base_button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
}

.normal_button {
  padding: 5px 5px;
  font-size: 16px;
  color: var(--accroma_font_grey_2);
  border: none;
  cursor: pointer;
}

.on_hover_red:hover {
  color: red;
}

.background_white {
  background-color: white;
}

.background_transparent {
  background-color: rgba(0, 0, 0, 0);
}

.greyer_on_hover:hover {
  font-size: 1.6em;
}

.disabled_button_red {
  color: red;
  padding: 5px 15px;
  border: none;
}

.selectProfilePic {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-around;
  height: 250px;
  width: 250px;
  background: var(--light_grey);
  text-align: center;
}

.logo_div * {
  margin: 0 auto;
}

.accroma_stroke_button {
  padding: 5px 15px;
  color: var(--accroma_blue);
  border: 3px solid var(--accroma_blue);
  background-color: white;
  cursor: pointer;
}

.accroma_button_grey {
  padding: 5px 15px;
  color: #ffffff;
  background-color: #80a1aa;
  border: none;
  border-radius: 2px;
  cursor: default;
}

.accroma_button:hover {
  box-shadow: 0px 2px 10px #999998;
  opacity: 0.8;
}

.page-save-btn {
  min-width: 120px;
  padding: 3px 15px;

  font-size: 16px;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 1.7em;
  color: #fff;

  background-color: var(--accroma_action);
  border: none;
  border-radius: 2px;

  cursor: pointer;
}

.horizontal_flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.basic-horizontal-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nowrap {
  flex-wrap: nowrap;
}

.split_two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
}

.vertical-flex {
  display: flex;
  flex-direction: column;
}

.blackout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #000;
  opacity: 60%;
}
/* ------------Home------------------------ */

.horizontal_flex_space_between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.horizontal_flex_space_between_no_wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
/*---------- editor------------------------ */
/*---------------inputs--------------------*/

.figma_container-input > select {
  background: #ffffff;
  border: 0.5px solid #000000;
  box-sizing: border-box;
  border-radius: 8px;
  height: 28px;
  width: 287px;
  left: 0px;
  top: 0px;
  border-radius: 8px;
  margin-right: auto;
  text-align-last: center;
  position: absolute;
}

.figma_container-input {
  position: relative;
  margin: 1em 0;
}

.figma_container-input > div {
  position: absolute;
  top: 1px;
  left: 5px;
  font-size: 10pt;
  color: #cecece;
  pointer-events: none;
  z-index: 2;
}

.figma_container-input > svg {
  position: absolute;
  top: 9px;
  left: 260px;
  pointer-events: none;
  z-index: 2;
}

.figma_container-input > svg > polygon {
  fill: #e5e5e5;
}

.accroma_radio_button {
  padding: 5px 15px;
  color: #ffffff;
  background-color: var(--accroma_blue);
  border: none;
  cursor: pointer;
}
/*---------------------------------------------------*/

.input {
  box-sizing: border-box;

  width: 100%;
  height: 36px;

  border: 1px solid #bbb;
  border-radius: 2px;
  box-shadow: none;

  padding: 15px 5px 2px 5px;
}

.input-dataTables-filter {
  width: 100% !important;
  border: 1px solid #bbb !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  padding: 3px 5px !important;
  margin: unset !important;
  height: unset !important;
}

.input_rect {
  /*border: 1px solid #585858;*/
  border: 1px solid #bbb;
  padding: 15px 0 1px 5px;
}

.input_add {
  text-align: center;
  border: 1px solid #bbb;
}

.input_60 {
  width: 60%;
}

.input_40 {
  width: 40%;
}

.input_20 {
  width: 20%;
}

.serial_number-input-container {
  position: relative;
  border: solid #000000 1px;
}

.serial_number-input-container * {
  height: 100%;
  vertical-align: middle;
}

.serial_number-input-container > input {
  border: none;
}

.container-input {
  position: relative;
  margin: 1em 0;
}

.container-input > div {
  position: absolute;
  top: 1px;
  left: 5px;
  font-size: 12px;
  color: #616161;
}

a {
  text-decoration: none;
  color: #585858;
}

a:hover {
  color: var(--accroma_blue);
}

.hoverBlue {
  color: var(--accroma_blue);
}

.qTitle {
  color: var(--accroma_blue);
  margin: 20px;
}

.flexbox {
  display: flex !important;
}

.titleFlex {
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
}

.horizontalFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.verticalFlex {
  display: flex;
  flex-direction: column;
  list-style-position: inside;
  justify-content: space-around;
}

.center {
  text-align: center;
}

.irrelevant {
  pointer-events: none;
}

.irrelevant > td > label {
  font-weight: lighter;
  font-style: italic;
  color: #999998;
}

.padding_center {
  padding: auto;
}

.margin_center {
  margin: auto;
}

.bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.navigationGrid {
  display: grid;
  grid-template-columns: [left] 1fr [middle] 1fr [right] 1fr;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.navigation_left {
  grid-column: left;
}

.middlePadding {
  padding: auto;
}

.navigation_middle {
  text-align: center;
  grid-column: middle;
}

.navigation_right {
  grid-column: right;
}

.questionContainer {
  display: grid;
  grid-template-columns: [void] 15% [text] 35% [yes] 5% [no] 5% [comment] 20% [edit] 5% [void] 15%;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.result_grid {
  display: grid;
  grid-template-columns: [void] 1fr [relevant] 80% [void2] 1fr;
  align-items: center;
  height: 100%;
}

.middleOfGrid {
  height: 100%;
  position: relative;
}

.questionFlexContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.question2Rows {
  grid-column-start: text;
  grid-row: span 2;
}

.survey_grid {
  height: 100%;
  background-color: white;
  padding: 20px;
}

.questionText {
  grid-column: text;
  font-size: 20px;
  font-weight: 600;
  color: black;
}

.guideGrid {
  display: grid;
  grid-template-columns: 1fr auto [guideText] auto 1fr;
  align-items: center;
  gap: 20px;
}

.guideGrid > li {
  grid-column: guideText;
}

.YesNoGrid {
  grid-column-start: 3;
  grid-column: span 2;
  justify-self: center;
}

.questionRadioButtons {
  justify-self: center;
}

.questionRadioButtonYes {
  grid-column: yes;
}

.questionRadioButtonNo {
  grid-column: no;
}

.questionComment {
  grid-column: comment;
}

.editGrid {
  grid-column: edit;
}

.title {
  font-size: 18pt;
  color: var(--accroma_blue);
}

.table_double_header th:first-child {
  background-color: var(--accroma_blue_dark_1);
}

.tr_hover_survey_radio_table tr:hover td {
  background-color: rgb(223, 223, 223);
  cursor: pointer;
}

.tr_hover_survey_radio_table .not_grey_hover:hover td {
  background-color: white;
  cursor: default;
}

.survey_radio_table {
  color: var(--accroma_font_grey_2);
  border-collapse: collapse;
  width: 100%;
}

.survey_radio_table > thead > tr > th {
  padding: 0 20px;
  color: white;
  text-align: left;
}

.survey_radio_table tr {
  height: 50px;
}

.survey_radio_table > tbody tr td {
  background-color: white;
  border-top: 1px solid var(--light_grey);
}

.survey_radio_table > tbody tr td {
  padding-left: 20px;
}

.survey_radio_table > tbody {
  text-align: left;
}

.survey_radio_table > thead {
  background: var(--accroma_blue);
  font-size: 16px;
}

.text_center_th {
  text-align: center !important;
}

.text_center_td {
  padding-left: 0px !important;
  text-align: center;
}

.survey_radio_tr_highlight {
  color: black;
}

.survey_radio_tr_highlight > td {
  font-weight: 600;
}

.survey_radio {
  margin-left: 60px;
  margin-right: 60px;
  table-layout: fixed;
  overflow: hidden;
}

.survey_radio_text {
  width: 80%;
  text-align: left;
}

.survey_radio_box {
  font-size: 20px;
  width: 5%;
  text-align: center;
}

.survey_radio_box > input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.survey_description {
  word-wrap: normal;
  background-color: var(--light_grey);
  padding: 20px 40px 20px 40px;
  margin: 20px 0px 20px 0px;
  text-align: center;
  color: var(--accroma_font_grey);
}

.info {
  font-size: 11pt;
  color: #ea756a;
  z-index: 10;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: 120px;
  background-color: var(--light_grey);
  color: black;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  z-index: 30;
  position: absolute;
  bottom: 105%;
  right: 100%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  transition: 0.4s opacity 0.6s;
}

.bread_crumbs > * {
  margin-left: 100px;
  margin-top: 0.5em;
}

.bread_crumbs a {
  color: white;
}

.bread_crumbs a:hover {
  color: black;
}

.header {
  display: grid;
  grid-template-columns: 60px repeat(2, 1fr) 60px;
  grid-template-areas: ". headerLeft headerRight .";
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  height: 4.5em;
  padding: 10px 0;

  background-color: #f9f9f9;
}

.breadcrumbs {
  position: relative;
  margin-bottom: 10px;
}

.header_shadow {
  /*
  border-bottom: 1px solid #C6C6C6;
  */
  box-shadow: 0px 2px 10px #999998;
}

.header_navigation {
  display: none;
  position: fixed;
  top: 4em;
  width: 100%;
  height: 80px;
  background-color: var(--accroma_blue);
  color: white;
  box-shadow: 0px 2px 10px #999998;
}

.header-left {
  grid-column: headerLeft;
  vertical-align: middle;
}

.header-right {
  height: 100%;
  grid-column: headerRight;
}

#headerHome {
  display: none;
}

.main {
  grid-area: main;
  max-width: 1400px;
  width: 100%;
}

.testClassJB {
  margin-top: 3.5em;
  min-height: calc(100vh - 70px);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;

  padding: 40px 60px;
  height: min-content;
  background-color: #222;
  color: #ffffff;
  line-height: 1.9em;
}

.footer > div {
  min-width: 250px;
}

.footer a {
  color: #ffffff;
}

.footer .wrapper-footer-img {
  line-height: 0;
}

.footer .wrapper-footer-img img {
  width: auto;
  height: 150px;
}

.footer-bottom {
  display: block;
  height: min-content;
  background-color: #222;
  line-height: 1.9em;
  font-size: 12px;
  color: #aaaaaa;
}

.container-footer-bottom {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  grid-template-areas: ". subFooter .";
  background-color: rgba(0, 0, 0, 0.32);

  padding: 8px 0;
}

.sub-footer {
  grid-area: subFooter;
}

.sub-footer > div {
  line-height: 1.5;
}
/* HEADER */

.header-left {
  display: grid;
}

.header-left img {
  width: 160px;
}

.header-left a {
  line-height: 0;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.header-right > .header-short-link {
  font-size: 18pt;
  margin-right: 1em;
}
/* ----------------- FOOTER ------------------------------ */

.footer-1 {
  display: grid;
}

.footer-1 a {
  width: min-content;
  height: min-content;
  line-height: 1;
  font-size: 0;
  align-self: center;
}

.footer-1 img {
  width: 200px;
}

.font_color_blue {
  color: var(--accroma_blue);
}

.accroma_view_table {
  border-collapse: collapse;
  width: 100%;
}

.accroma_view_table * {
  padding: 5px;
  text-align: center;
}

.width_100pc {
  width: 100%;
}
/* table for finished tests */

.normal_table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.normal_table td,
.normal_table th {
  border: 1px solid rgb(221, 221, 221);
  padding: 8px;
}

.normal_table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.normal_table tr:hover {
  background-color: #ddd;
}

.normal_table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--accroma_blue);
  color: white;
}

.timer_div-container {
  display: none;
  opacity: 0;
  align-items: center;
  position: fixed;
  top: 7em;
  right: 2em;
  width: 200px;
  height: 30px;
  background-color: #0074d9;
  color: #ffffff;
  border-radius: 5px;
  z-index: 98;
  text-align: center;
}

.timer_div-info {
  padding-left: 1em;
}
/* HAS SAVED INFO */

.has-saved-container {
  display: none;
  opacity: 0;
  align-items: center;
  position: fixed;
  bottom: 3.5em;
  right: 50%;
  margin-right: -150px;
  width: 300px;
  height: 50px;
  background-color: #0074d9;
  color: #ffffff;
  border-radius: 5px;
  z-index: 98;
}

.has-saved-container.close {
  transition: opacity 2s;
}

.has-saved-info {
  padding-left: 1em;
}

.has-saved-close {
  position: absolute;
  right: 10px;
  cursor: pointer;
}

.settings-expl-text {
  padding-bottom: 1em;
}

.blue_line {
  width: 100%;
  height: 2px;
  background-color: #2fcfff;
  color: #2fcfff;
}

.component-add-grid {
  display: grid;
  grid-template-columns: [left] 10% [Object] auto [ManSerialNumber] auto [accSerialNumber] auto [pump] auto [right] 10%;
  align-items: center;
  gap: 15px;
}

.component-grid {
  display: grid;
  grid-template-columns: [left] 15px [Object] auto [ManSerialNumber] auto [accSerialNumber] auto [right] 15px;
  align-items: center;
  gap: 15px;
  grid-auto-flow: dense;
}

.component-object {
  grid-column: Object;
}

.component-ManSerialNumber {
  grid-column: ManSerialNumber;
}

.component-accSerialNumber {
  grid-column: accSerialNumber;
}
/*---------------add customer---------------*/

.grid_split_two {
  display: grid;
  grid-template-columns: [void] 10px [split_left] 1fr [split_right] 1fr [void] 10px;
  grid-auto-flow: dense;
  gap: 15px;
}

.split_left {
  margin-top: 4px;
  margin-right: 5px;
  grid-column: split_left;
}

.split_right {
  margin-top: 4px;
  margin-left: 5px;
  grid-column: split_right;
}

.editor {
  display: grid;
  grid-template-columns: [work] 1fr [menu] auto [else] auto;
  align-items: center;
  gap: 2px;
  grid-auto-flow: dense;
}

.editor > input {
  border: none;
  margin: 0px;
  border-width: 0px;
  background-color: #ddd;
  color: #ddd;
}

.editor_left {
  align-self: stretch;
  background-color: white;
  grid-column: rien;
}

.editor_right {
  padding: 10px;
  align-self: stretch;
  grid-column: menu;
}

.editor_middle {
  align-self: stretch;
  background-color: white;
  grid-column: work;
}

.editor_layout {
  display: grid;
  grid-template-columns: [inventory] auto [workbench] 1fr;
  align-items: center;
  gap: 2px;
  grid-auto-flow: dense;
}

.editor_frame {
  overflow-y: scroll;
  align-self: start;
  grid-row: 1 / 6;
  grid-column: workbench;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 180px);
}

.editor_middle input {
  border-radius: 0px;
  padding: 4px;
  background-color: var(--light_grey);
  border: none;
}

.editor_middle textarea {
  border-radius: 0px;
  background-color: var(--light_grey);
  border: none;
}

.editor_frame input:disabled,
.editor_frame textarea:disabled,
.editor_frame select:disabled {
  background-color: white;
  border: none;
}

.editor_frame > div:last-of-type {
  margin-top: 32px;
}

.editor_normal {
  font-family: Arial;
  color: #ffffff;
  border-radius: 2px;
  font-size: 1rem;
}

.editor_menu_bar {
  grid-column: inventory;
  flex-direction: column;
  justify-content: center;
  justify-self: stretch;
  align-items: center;
  background-color: #d2f2f9;
  margin: 7px;
  height: 120px;
  width: 120px;
  cursor: pointer;
  border-radius: 10px;
}

.editor_menu_bar_element {
  justify-content: center;
  display: flex;
  align-items: center;
  width: 120px;
  justify-self: stretch;
  align-items: center;
  height: 120px;
  font-size: 1rem;
  background-color: #d2f2f9;
  cursor: pointer;
  justify-self: stretch;
  align-self: stretch;
  flex-grow: 1;
  border-radius: 10px;
}

.editor_menu_bar:hover {
  box-shadow: 4px 4px 10px -4px #666;
  font-size: large;
}

.workbench_element {
  width: 100%;
  background-color: #d2f2f9;
}

.editor_shadow {
  box-shadow: 2px 2px 5px -2px #666;
}

.element_grid {
  display: grid;
  grid-template-columns: [title] 25% [inputs] 1fr;
  align-items: center;
  grid-auto-flow: dense;
  gap: 5px;
  cursor: pointer;
}

.question_element_grid {
  display: grid;
  grid-template-columns: [title] 80px [inputs] auto [comp] auto [comp2] auto [comp3] auto [comp4] auto;
  align-items: center;
  grid-auto-flow: dense;
  gap: 5px;
}

.element_title {
  grid-column: title;
}

.text {
  display: inline-block;
  vertical-align: middle;
}

.editor_workbench {
  margin-right: 20px;
  display: flex;
  min-height: 120px;
  background-color: #ddd;
  float: left;
  margin-top: 5px;
  text-align: center;
}

.betweener {
  grid-column: workbench;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto + 5px;
  min-height: 30px;
}

.hoverRed {
  background-color: #ff0000;
}

.color-red {
  color: red;
}

/* TILES */
.wrapper-plate {
  min-width: 550px;
  padding: 15px;

  border-radius: 10px;
  background-color: #fff;
}

.wrapper-plate-single {
  min-width: unset;
  max-width: 400px;
}

.container-plate {
}

.dataTables_filter input {
  font-size: 14px;
}

.wrapper-border-plate {
  padding: 15px;

  border: 1px solid #c1c1c1;
  border-radius: 10px;
}

.wrapper-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: dense;
  gap: 20px;
  width: 100%;

  margin-bottom: 25px;
}

@media screen and (max-width: 920px) {
  .wrapper-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: dense;
    gap: 20px;
    width: 100%;
  }
}

.wrapper-plate-button {
  flex: 1;
  min-width: 450px;
  min-height: 200px;

  border: none;
  border-radius: 5px;

  color: #fff;
  background-color: var(--accroma_blue);
  box-shadow: 5px 5px 15px rgba(56, 56, 56, 0.4);
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;

  cursor: pointer;
}

.wrapper-plate-button:hover,
.wrapper-plate-button:active {
  box-shadow: 5px 5px 15px rgba(56, 56, 56, 0.6);
}

.wrapper-plate-button i {
  font-size: 50px;
}

.disabled {
  cursor: not-allowed !important;
  background-color: var(--accroma_blue_light_2) !important;
  box-shadow: 5px 5px 15px rgba(164, 222, 238, 0.5) !important;
}

.container-tile {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  background-color: var(--accroma_blue);
  cursor: pointer;
  text-align: center;
  height: 150px;
  padding: 10px;
}

.container-tile-disabled {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  background-color: var(--light_grey);
  cursor: pointer;
  text-align: center;
  height: 150px;
  padding: 10px;
  cursor: default;
}

.container-tile-shadow {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100px;
  background-color: var(--accroma_blue);
  box-shadow: 2px 2px 5px #585858;
}

.container-options {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 200px;
  background-color: var(--accroma_blue);
  color: black;
}

.container-tile-title {
  color: #ffffff;
  font-size: 20pt;
  margin: auto;
}

.container-tile-options {
  height: 100%;
}

.container-tile-menu {
  align-self: flex-start;
  display: flex;
  justify-content: center;
  color: #ffffff;
  align-items: center;
  font-size: 20pt;
}

.container-tile:hover {
  box-shadow: 2px 2px 5px #585858;
}

.container-tile:hover i {
  font-size: 1.25em;
}

.container-tile:hover span {
  font-size: 1.25em;
}

.cons {
  margin: 10px;
  padding: 10px;
  border: 1px solid black;
}

.add-container-tile:hover {
  box-shadow: 2px 2px 5px #585858;
}
/* PAGE WINDOW */

.wrapper-page-window {
  width: max-content;
  max-width: 300px;
  height: max-content;
  margin: 3em auto;
  box-shadow: 2px 2px 5px #585858;
}
/* SIGN IN WINDOW */

.container-login {
  padding: 1em 2em;
}

.container-login > .login-additional {
  margin: 0.5em 0;
}

.container-login > .login-additional a {
  font-weight: bold;
}

.container-login > .login-bttn {
  display: flex;
  justify-content: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.survey_info {
  color: black;
  font-size: 18pt;
}
/* SIGN UP */

.container-login > .login-main > .sign-up-msg {
  text-align: center;
  display: none;
}
/* Button used to open the contact form - fixed at the bottom of the page */

.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
}
/* The popup form - hidden by default */

.blue_border {
  border: var(--accroma_blue);
  border-width: 3px;
  border-style: solid;
}

.middle-popup {
  display: none;

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;

  border-radius: 10px;
  box-shadow: 0px 0px 50px #1c1c1c;
  background-color: #fff;

  padding: 20px;
}

.form-popup {
  display: none;

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;

  border-radius: 10px;
  box-shadow: 0px 0px 50px #1c1c1c;
  background-color: #fff;

  padding: 15px;
}
/* Add styles to the form container */

.form-container {
  width: 90%;
  height: 90%;
  padding: 10px;
  background-color: white;
}
/* Full-width input fields */
/*
.form-popup input[type="text"],
.form-popup input[type="password"] {
  width: 50%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}
// When the inputs get focus, do something

.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus {
  background-color: #ddd;
  outline: none;
}

*/
/* Set a style for the submit/login button */

.form-container .btn {
  background-color: #04aa6d;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}
/* Add a red background color to the cancel button */

.form-container .cancel {
  background-color: red;
}

.clipboard {
  display: none;
  text-align: center;
  z-index: 48;
  position: fixed;
  top: 6.2em;
  left: 1em;
  background: rgb(219, 219, 219);
  padding: 4px;
  border: solid 3px #4bbcdb;
  width: 12em;
  height: 20em;
}

.clipboard > textarea {
  position: relative;
  max-height: 14em;
  max-width: 11em;
  min-height: 14em;
  min-width: 11em;
  background: white;
}

.clipboard_icon {
  color: var(--accroma_blue);
  z-index: 48;
  font-size: 2em;
  position: fixed;
  top: 4.2em;
  right: 2em;
}

.clipboard_icon > i:hover {
  color: #02a2ce;
  font-size: 2.1em;
  cursor: pointer;
}
/* Add some hover effects to buttons */

.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}

.on_hover_color_blue {
}

.on_hover_color_blue:hover {
  color: var(--accroma_blue);
}

.hover-pointer {
}

.hover-pointer:hover {
  cursor: pointer;
}

.on_hover_dark_grey {
}

.on_hover_dark_grey:hover {
  color: var(--accroma_font_grey);
}

.on_hover_shadow {
}

.on_hover_shadow:hover {
  box-shadow: 0px 2px 10px #999998;
}

.wrapper {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  grid-template-areas: ". main .";
  justify-items: center;
  padding: 8em 0 5em 0;
  min-height: calc(100vh - 220px);

  background-color: #f6f6f6;
  /* Fix the footer on bottom*/
}
/* The container <div> - needed to position the dropdown content */

.dropdown {
  position: relative;
  display: inline-block;
}
/* Dropdown Content (Hidden by Default) */

.color-light-grey {
  color: var(--light_grey);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: max-content;
  left: -160px;
  box-shadow: 0px 8px 16px 0px rgba(85, 85, 85, 0.2);
  z-index: 1;
  animation-name: fold-in;
  animation-duration: 0.6s;
}

.dropdown-simple-grid {
  display: grid;
  grid-template-columns: auto 1fr;
}
/* Links inside the dropdown */

.dropdown-content button {
  color: var(--accroma_font_grey_2);
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-size: 18pt;
  outline: none;
  padding: 8px 8px;
  text-decoration: none;
  display: block;
  text-align: left;
  width: 100%;
  font-weight: lighter;
  border: none;
  cursor: pointer;
  background-color: white;
}

.dropdown i {
  color: var(--accroma_font_grey_2);
}
/* Change color of dropdown links on hover */

.dropdown-content button:hover i {
  color: var(--accroma_blue);
}

.dropdown-content button:hover {
  color: var(--accroma_blue);
}
/* Show the dropdown menu on hover */

.dropdown:hover .dropdown-content {
  display: block;
}

/* */
.title-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* accroma table */
.table {
  width: 100%;
  margin: unset !important;

  border-collapse: collapse;
}

.table td,
.table th {
  padding: 10px 20px;
}

.table thead tr {
  height: 50px;

  color: #fff;
  background-color: var(--accroma_blue);

  text-align: left;
  font-size: 16px;
}

.table tbody tr {
  height: 50px;

  background-color: #f9f9f9;
}

.table tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}

.tablesorter-icon {
  color: red !important;
}

/* Change the background color of the dropdown button when the dropdown content is shown */

.display-block {
  display: block;
}

.display-none {
  display: none;
}

.fold-out {
  animation-name: foldout;
  animation-duration: 0.5s;
}

@keyframes foldout {
  0% {
    transform: scale(0.2, 0.2);
  }
  65% {
    transform: scale(1, 0.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

.textarea_in_survey {
  width: 98px;
  height: 50px;
}

.expand_input {
  position: absolute;
  left: 10vw;
  width: 40vw;
  height: 40vh;
  z-index: 60;
}

.color_grey {
  color: var(--light_grey);
}

.color_accroma_blue {
  color: var(--accroma_blue);
}

.hover-help {
  cursor: help;
}

.hover-default {
  cursor: default;
}

.width-100 {
  min-width: 60%;
  margin-left: 20px;
  margin-right: 20px;
}

.title_add_button {
  font-size: 20pt;
}
.pvt_table {
  text-align: left;
}
.pvt_table h3 {
  margin-top: 12px;
}

.wrapper-new-robot-general {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 20px;
}

.wrapper-new-robot-general > div {
  display: flex;
  align-items: center;
}

.wrapper-new-robot-general > div > * {
  flex: 1;
}

.label-input-baseline {
  display: flex;
  align-items: center;
}

.label-input-baseline > label {
  display: flex;
  align-items: center;
  margin-right: 2px;
}

.label-input-baseline > input:focus {
  margin: -2px;
}

.info_grid {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.info_grid-no_gap {
  gap: 3px;
}

.info_grid p {
  margin: 0 0 0 0;
}

.info_grid > * {
  align-self: center;
}

.info_grid input {
  padding: 4px;

  border: 1px solid #bbb;
  border-radius: 2px;
}

.info_grid .input_rect {
  border: none;
  background-color: var(--light_grey);
  padding: 4px;
}

.background-grey {
  background-color: var(--accroma_font_grey);
}

.background-green {
  background-color: rgb(97, 243, 97);
}

.background-red {
  background-color: rgb(255, 0, 0);
}

.table-template {
  border-collapse: collapse;
}

.table-template th {
  padding: 4px;
}

.table-template th,
.table-template td {
  text-align: center;
  border: 1px black solid;
}
.table-template td {
  max-width: calc(1400px / 8);
  border-collapse: collapse;
}

.table-template input {
  border: none;
  background-color: var(--light_grey);
  padding: 4px;
  max-width: calc(100% - 20px);
}
.table-template p {
  margin: 0;
}

.calculated_input {
  background-color: white;
}

.accroma_input {
  border: none;
  background-color: var(--light_grey);
  padding: 4px;
}

.part_in_five {
  display: grid;
  grid-template-columns: 100px 200px 1fr 1fr 1fr;
  gap: 20px;
  min-height: 32px;
}

.checkbox_input {
  margin: auto;
}

.white_input {
  border: none;
  background-color: white;
  cursor: default;
  padding: 4px;
}

.bimaru_actions {
  z-index: 222;
  display: flex;
  justify-content: center;

  border-radius: 20px;
}

.bimaru_actions span {
  width: 30px;
  height: 18px;
}

.bimaru_actions > *:hover {
  cursor: pointer;
  opacity: 0.6;
}

.bimaru_right,
.bimaru_left,
.bimaru_middle {
  background-color: var(--accroma_action);
  box-shadow: 2px 6px 6px rgba(0, 181, 229, 0.1);

  padding: 5px 2px;
}

.bimaru_left {
  padding-left: 3px;

  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-left: 1px solid var(--accroma_action);
  border-top: 1px solid var(--accroma_action);
  border-bottom: 1px solid var(--accroma_action);
}

.bimaru_right {
  padding-right: 3px;

  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-right: 1px solid var(--accroma_action);
  border-top: 1px solid var(--accroma_action);
  border-bottom: 1px solid var(--accroma_action);
}

.bimaru_middle {
  margin: 0 2px;

  border-top: 1px solid var(--accroma_action);
  border-bottom: 1px solid var(--accroma_action);
}

.inside_button {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.inside_button i {
  padding: none;
  margin: 0px 0px 0px 0px;
  font-size: 1.2em;
  color: #fff;
}

.disabled_base_button {
  padding: 0;
  border: none;
  background: none;
  cursor: default;
  text-align: center;
  vertical-align: middle;
}

.background_circle {
  background-color: white;
  border-radius: 50%;
  z-index: 49;
  text-align: center;
  line-height: 0px;
  vertical-align: middle;
}

/*
input[type=text]:not(.search_input), input[type=email], input[type=password], input[type=date]{
  border: 2px solid transparent;
  border-radius: 1px;
}
*/

input[type="text"]:not(.search_input):focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus {
  border: 2px solid var(--accroma_blue);
  margin-right: -2px;
}

.search_input {
  all: none;
  appearance: none;
  width: 200px;
  border: 1px solid #585858;
  padding: 3px 30px 2px 10px;
  /*background: url(/assets/img/search_icon.png) no-repeat right;*/
}

table {
  margin-top: 10px !important;
}

.result_table {
  border-collapse: collapse;
  border-spacing: 2px;
}

.result_table td {
  border-bottom: solid 1px var(--light_grey);
}

.result_table th {
  border-bottom: solid 1px var(--light_grey);
}

.result_table tr:last-child td,
.result_table tr:last-child th {
  border-bottom: solid 0px var(--light_grey);
}

.close_button_div {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.close_button_div > button {
  position: absolute;
}
