@charset "UTF-8";

:root {
  /*Colors Palette*/
  --pakajo_orange: #EF7B1A;
  --pakajo_orange_focus: #BF5A03;
  --pakajo_turquoise_dark: #306774; 
  --pakajo_turquoise_light: #2C9FB1; 
  --pakajo_black: #2C2E35;
  --pakajo_hellgrau: #A9B6B5;
  --pakajo_aliceblue: #f0f8ff;
  --pakajo_warning:#FFB300;
  
  --pakajo_bg_color: #f4f7fe;/*#edf3f8;*/
  --pakajo_bg_color_white: #ffffff;
  --pakajo_color_border: #DFEAF2;
  --pakajo_text_color: #575757;
  --pakajo-app-menu-color: #ABBDC8;

  --pakajo_table_header_color: #f4f7fe;
  --pakajo_table_side_header_color: #c6d8d8;
  --pakajo_table_even_color: #ffffff;
  --pakajo_table_odd_color: #f9fafd;

  /*Font Sizes*/
  --font-size-300: .7000rem;
  --font-size-325: .8125rem;
  --font-size-350: .875rem;
  --font-size-400: 1rem;
  --font-size-800: 2rem;

  --radius-1xl: 5px;
  --radius-2xl: 10px;
  --radius-3xl: 15px;
  --radius-xxl: 5000px;
}


* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--pakajo_bg_color_white);
  color: var(--pakajo_text_color);
  font-family: "Open Sans", sans-serif;
}

html, body, button {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
/*  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;*/
}
label {
  color: var(--pakajo_text_color);
}

/*<!-- google-Material+Symbols+Outlined -->*/
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.md-8 { font-size: 8px!important; }
.material-symbols-outlined.md-10 { font-size: 10px!important; }
.material-symbols-outlined.md-12 { font-size: 12px!important; }
.material-symbols-outlined.md-16 { font-size: 16px!important; }
.material-symbols-outlined.md-18 { font-size: 18px!important; }
.material-symbols-outlined.md-20 { font-size: 20px!important; }
.material-symbols-outlined.md-24 { font-size: 24px!important; }
.material-symbols-outlined.md-26 { font-size: 26px!important; }
.material-symbols-outlined.md-28 { font-size: 28px!important; }
.material-symbols-outlined.md-30 { font-size: 30px!important; }
.material-symbols-outlined.md-32 { font-size: 32px!important; }
.material-symbols-outlined.md-34 { font-size: 34px!important; }
.material-symbols-outlined.md-36 { font-size: 36px!important; }
.material-symbols-outlined.md-48 { font-size: 48px!important; }

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], 
[type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], 
[type=time], [type=url], [type=color], textarea, select, .select2-selection {
  border-radius: var(--radius-2xl);
  -webkit-box-shadow: unset;
  box-shadow: unset;
  background-color: var(--pakajo_bg_color_white);
  border: 1px solid var(--pakajo_color_border);!important;
}

[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, 
[type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, 
[type=time]:focus, [type=url]:focus, [type=color]:focus, textarea:focus, select:focus {
  outline: none;
  border: 1px solid #ABBDC8;
  background-color: #fefefe;
  -webkit-box-shadow: 0 0 5px #ABBDC8;
  box-shadow: 0 0 5px #ABBDC8;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

.select2-dropdown{
  border: 1px solid var(--pakajo_color_border);!important;
}
.select2-results__option {
  padding: 3px 10px !important;
}
.select2-container {
  margin-bottom: 1rem;
  width: 100%!important;
}
.select2-container--default .select2-selection--single {
  height: 2.4375rem;
  padding: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--pakajo_color_border);
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  border-radius: var(--radius-2xl);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 23px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
  right: 5px;
}
.select2-container--default .select2-selection--multiple {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--pakajo_color_border);
}
.select2-container--default.select2-container--focus .select2-selection--multiple{
  border: 1px solid #ABBDC8;
  -webkit-box-shadow: 0 0 5px #ABBDC8;
  box-shadow: 0 0 5px #ABBDC8;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}
.select2-container .select2-search--inline .select2-search__field{
  margin: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 10px;
  border: 1px solid red;
  border-radius: var(--radius-xxl);
  padding: 0px 4px;
  font-size: small;
  font-weight: normal;
  color: red;
  line-height: normal;
  margin-top: 0px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--pakajo_table_header_color);
  border: 1px solid var(--pakajo_color_border);
}

/*Button Styling--*/
.button {
  border-radius: var(--radius-2xl);
}
.button span.material-symbols-outlined {
  font-size: inherit;
  vertical-align: middle;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: var(--pakajo_turquoise_dark);
  color: var(--pakajo_bg_color_white);
}
.button:hover, .button:focus {
  background-color: #37a7b0;
  color: var(--pakajo_bg_color_white);
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: var(--pakajo_turquoise_dark);
  color: var(--pakajo_bg_color_white);
}
.button.primary:hover, .button.primary:focus {
  background-color: #37a7b0;
  color: var(--pakajo_bg_color_white);
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: var(--pakajo_hellgrau);
  color: #fefefe;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: rgb(94.4, 94.4, 94.4);
  color: #fefefe;
}
.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus {
  background-color: var(--pakajo_turquoise_light);
  color: var(--pakajo_bg_color_white);
}
.button.success:hover, .button.success:focus {
  background-color: #2ea291;
  color: var(--pakajo_bg_color_white);
}
.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus {
  background-color: var(--pakajo_orange);
  color: var(--pakajo_bg_color_white);
}
.button.warning:hover, .button.warning:focus {
  background-color: rgb(204, 139.2, 0);
  color: var(--pakajo_bg_color_white);
}
.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
  background-color: #EF5466;
  color: #fefefe;
}
.button.alert:hover, .button.alert:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #fefefe;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  border: 1px solid var(--pakajo_turquoise_dark);
  color: var(--pakajo_turquoise_dark);
}
.button.hollow:hover, .button.hollow:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 1px solid var(--pakajo_turquoise_dark);
  color: var(--pakajo_turquoise_dark);
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 1px solid var(--pakajo_hellgrau);
  color: var(--pakajo_hellgrau);
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 1px solid var(--pakajo_turquoise_light);
  color: var(--pakajo_turquoise_light);
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 1px solid var(--pakajo_orange);
  color: var(--pakajo_orange);
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 1px solid #EF5466;
  color: #EF5466;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: var(--pakajo_turquoise_dark);
}
.button.clear:hover, .button.clear:focus {
  color: rgb(11.5, 60.5, 93);
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
  color: var(--pakajo_turquoise_dark);
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: rgb(11.5, 60.5, 93);
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
  color: var(--pakajo_hellgrau);
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: #3b3b3b;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: var(--pakajo_turquoise_light);
}
.button.clear.success:hover, .button.clear.success:focus {
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: var(--pakajo_orange);
}
.button.clear.warning:hover, .button.clear.warning:focus {
  color: rgb(127.5, 87, 0);
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #EF5466;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}


/*---button-group-----*/
.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus {
  background-color: var(--pakajo_turquoise_dark);
  color: var(--pakajo_bg_color_white);
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #37a7b0;
  color: var(--pakajo_bg_color_white);
}
.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus {
  background-color: var(--pakajo_hellgrau);
  color: #fefefe;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: rgb(94.4, 94.4, 94.4);
  color: #fefefe;
}
.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus {
  background-color: var(--pakajo_turquoise_light);
  color: var(--pakajo_bg_color_white);
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #2ea291;
  color: var(--pakajo_bg_color_white);
}
.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus {
  background-color: var(--pakajo_orange);
  color: var(--pakajo_bg_color_white);
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: rgb(204, 139.2, 0);
  color: var(--pakajo_bg_color_white);
}
.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus {
  background-color: #EF5466;
  color: #fefefe;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #fefefe;
}
.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus {
  background-color: transparent;
}
.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus {
  border: 1px solid var(--pakajo_turquoise_dark);
  color: var(--pakajo_turquoise_dark);
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
  border: 1px solid var(--pakajo_turquoise_dark);
  color: var(--pakajo_turquoise_dark);
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
  border: 1px solid var(--pakajo_hellgrau);
  color: var(--pakajo_hellgrau);
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
  border: 1px solid var(--pakajo_turquoise_light);
  color: var(--pakajo_turquoise_light);
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
  border-color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
  border: 1px solid var(--pakajo_orange);
  color: var(--pakajo_orange);
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
  border: 1px solid #EF5466;
  color: #EF5466;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
  color: var(--pakajo_turquoise_dark);
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: rgb(11.5, 60.5, 93);
}
.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus {
  color: var(--pakajo_turquoise_dark);
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
  color: rgb(11.5, 60.5, 93);
}
.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus {
  color: var(--pakajo_hellgrau);
}
.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus {
  color: #3b3b3b;
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
  color: var(--pakajo_turquoise_light);
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
  color: var(--pakajo_orange);
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
  color: rgb(127.5, 87, 0);
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
  color: #EF5466;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button-group .button {
  margin-right: 5px;
}
.id-hashed::before {
  content: '#';
}

/*----Check - radio - file styling----*/
[type=file], [type=checkbox], [type=radio] {
  accent-color: var(--pakajo_turquoise_light);
  /*-ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);*/
}

/*------pk-callout styling -----*/
.pk-callout.callout {
  margin: 0 0 .5rem 0;
  padding: .3rem .5rem;
  border: 1px solid var(--pakajo_color_border);
  border-radius: var(--radius-1xl);
}
.pk-callout.callout .close-button {
  border: unset;
  border-radius: unset;
  width: unset;
  box-shadow: unset;
}
.pk-callout.callout .close-button span {
  display: block;
  height: .5em;
  margin-top: -10px;
  margin-right: -10px;
}
.pk-callout.callout .callout-header {
  font-size: smaller;
    font-weight: 600;
    margin: 0;
}
.pk-callout.callout .callout-text {
  font-size: smaller;
    font-weight: 400;
    margin: 0;
}

/*------pk-responsive-table styling -----*/
.pk-responsive-table-view {
  margin: auto;
  width: auto;
}
.pk-responsive-table-view .pk-responsive-table-wrapper {
  position: relative;
  overflow: auto;
  white-space: nowrap;
  max-height: 800px;
}
table.pk-responsive-table th {
  border-right: 2px solid #ffffff;
  background: var(--pakajo_table_header_color);
  color: var(--pakajo_text_color);
  text-transform: uppercase;
}
table.pk-responsive-table td {
  border-right: 2px solid #ffffff;
  background: var(--pakajo_table_even_color);
    color: var(--pakajo_text_color);
}
table.pk-responsive-table tr:nth-of-type(2n+2) td {
  background: var(--pakajo_table_odd_color);
}
.pk-responsive-table-view .sticky-col {
  position: -webkit-sticky;
  position: sticky;
}
.pk-responsive-table-view .first-col {
  left: 0px;
  font-stretch: semi-condensed;
}
.pk-responsive-table-view .first-col.data-menu {
  min-width: 140px;
}
.pk-responsive-table-view .first-col .id-cover {
  padding: 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  display: flex;
}
.pk-responsive-table-view .first-col .id:before {
  content: '# ';
}
.pk-responsive-table-view .first-col .option-btn {
  margin: -3px 5px 0px 0px;
  padding: 0px 5px;
  color: var(--pakajo-app-menu-color);
}
.pk-responsive-table-view .first-col .option-btn:hover, .pk-responsive-table-view .first-col .option-btn:focus {
   color: #000000;
}
.pk-responsive-table-view .first-col.data-menu .option-btn {
  display: inline-block;
}
.pk-responsive-table-view .first-col .id .button:hover, .pk-responsive-table-view .first-col .id .button:focus {
  background-color: aliceblue;
}
.pk-responsive-table-view .option-col .button {
  margin: 0px;
  padding: 5px 10px;
  border-radius: var(--radius-1xl);
}
.pk-responsive-table-view .option-col .option-col-btn-cover {
  list-style: none;
  margin: auto;
  column-gap: 5px;
  display: flex;
  justify-content: flex-end;
}
.option-col-menu {
  display: inline-block;
  list-style: none;
  margin: auto;
}
.option-col-menu .button {
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 6px 0px;
}
.option-col-menu .button:hover, .option-col-menu .button:focus {
  font-weight: 600;
  background-color: var(--pakajo_aliceblue);
}
.option-col-menu .button span.material-symbols-outlined {
  margin-right: 10px;
}

.page-navigation {
  border: 0px;
  padding: 0px;
  margin: 0px;
  position: sticky;
    left: 0;
}
.page-navigation span {
  font-size: smaller;
}
.pagination {
  margin: 0px;
}
a.pagination-btn {
   padding: 7px 10px;
  border-radius: 5px;
  margin: 0px;
  border: 1px solid var(--pakajo_color_border)!important;
}
a.pagination-btn:hover {
  background-color: var(--pakajo_color_border)!important;
    color: #ffffff!important;
}
.pagination .current {
  padding: 0px;
    background-color: transparent;
}
.pagination .current a.pagination-btn {
  background-color: var(--pakajo_color_border)!important;
    color: var(--pakajo_turquoise_dark)!important;
}
.pagenav_counter span {
   font-weight: 600;
   padding-left: 10px;
}

.filter-dropdown {
  min-width: 350px;
}
.badge.filter-btn-cover {
  position: relative;
  top: 0px;
  left: 0px;
  padding: 0;
  background-color: var(--pakajo_turquoise_dark);
  border-radius: 15px 0px 40px;
  width: 3rem;
  height: 2.7rem;
}
.badge.filter-btn-cover:hover {
  background-color: var(--pakajo_turquoise_light);
}
.badge.filter-btn-cover .filter-btn {
  margin: 0;
  padding: .5em;
  color: var(--pakajo_bg_color_white) !important;
}
/*----END--pk-responsive-table styling -----*/

/*------data-picker styling -----*/
input[date-picker], input[date-picker-range-start], input[date-picker-range-end]  {
  background-image: url('/include/images/date-picker.svg');
  background-position: right;
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: 25px 25px;
  padding-right: 25px;
}

.datepicker > div, .datepicker-dropdown::before, .datepicker-dropdown::after {
  display: contents; 
  padding: 10px;
}
.datepicker-days thead, tbody, tfoot {
  border: none;
}
.datepicker-days table tr, table th, table td {
  border: none;
  border-bottom: 0px;
  font-size: var(--font-size-325);
}
.datepicker-days .day:hover {
    background-color: var(--pakajo_table_side_header_color);
    border-radius: var(--radius-1xl);
    color: #ffffff;
}
.datepicker td span.active, .datepicker td.active.day, .datepicker td.active.year {
    background: var(--pakajo_turquoise_dark);
    border-radius: var(--radius-1xl);
    color: #ffffff;
}
.datepicker.dropdown-menu td, .datepicker.dropdown-menu th {
  padding: 5px 8px;
}
.datepicker th.date-switch {
  font-weight: 800;
}

/*--Labels Styling--*/
.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: var(--radius-1xl);
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #EBF0FA;
  color: #2264E5;
}
.label.tiny {
  font-size: x-small;
}
.label.primary {
  background: #EBF0FA;
  color: #2264E5;
}
.label.secondary {
  background: #E9EDF5;
  color: #687182;
}
.label.success {
  background: #E1FCEF;
  color: #38A06C;
}
.label.warning {
  background: #FCF2E6;
  color: #ffae00;
}
.label.alert {
  background: #FFEDEF;
  color: #EF5466;
}
.label span.material-symbols-outlined {
  font-size: inherit;
  vertical-align: middle;
}

.header {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--pakajo_turquoise_dark);
}
.header span.material-symbols-outlined {
  font-size: inherit;
  vertical-align: middle;
}
.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: #8a8a8a;
}
.subheader span.material-symbols-outlined {
  font-size: inherit;
  vertical-align: middle;
}


.page-container {
  background: inherit;
}

.menu-item.divider {
  width: 80% !important;
  margin-left: 15px;
  border-top: 1px solid #e6e6e6;
  list-style: none;
}

/*---------Pakajo Custom Checkbox & Radio Buttons-----*/
/* The checkmark container */
.checkmark-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkmark-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkmark-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkmark-container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkmark-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkmark-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* The radiomark container */
.radiomark-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radiomark-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radiomark-container:hover input ~ .radiomark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radiomark-container input:checked ~ .radiomark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiomark-container input:checked ~ .radiomark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radiomark-container .radiomark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.button.more_vert-btn {
  margin: 0;
  padding: 4px;
  border-radius: var(--radius-1xl);
  background-color: var(--pakajo_aliceblue);
  font-size: x-large;
}
.button.more_vert-btn:hover, .button.more_vert-btn:focus {
  border: 1px solid #dedede;
}
/*---------END Pakajo Custom Checkbox & Radio Buttons-----*/

.reveal {
  border-radius: var(--radius-3xl);
  box-shadow: 0 3px 10px 1px #cbd5e1, 0px 1px 0px -1px #cbd5e1;
  border: 0;
  background-color: var(--pakajo_bg_color_white);
}
.reveal .close-button {
  border: 1px solid #dedede;
  border-radius: var(--radius-2xl);
  width: 1em;
  box-shadow: 0 3px 10px 1px #cbd5e1, 0px 1px 0px -1px #cbd5e1;
}
.reveal .close-button span {
  display: block;
  height: 1.1em;
  margin-top: -3px;
}
.reveal-overlay {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/*------Login Styling--------*/
.login-page {
  position: relative;
  height: 100%;
  flex: 1;
  display: flex;
  align-items: normal;
}

.login-page .login-page-grid {
  position: relative;
  height: 100%;
  flex: 1;
  display: flex;
  align-items: normal;
}

.login-page-signin {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  
}

@media print, screen and (min-width: 64em) {
  .login-page-signin {
    /*max-width: 60%;*/
  }

  .login-page .login-page-grid {
    position: fixed;
  }
}

.login-page-signin .toggle-password {
  cursor: pointer;
  float: right;
  margin-right: 5px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  font-size: x-large;
  color: var(--pakajo-app-menu-color);
}

.login-page-signin .type-sidelines {
  display: block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  color: var(--pakajo_table_side_header_color);
    font-size: xx-small;
}

.login-page-signin .type-sidelines span {
  display: inline-block;
  position: relative;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.login-page-signin .type-sidelines span:before, .login-page-signin .type-sidelines span:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 9999px;
  top: 50%;
  border-top-style: solid;
  border-top-width: 1px;
}

.login-page-signin .type-sidelines span:before {
  right: 100%;
}

.login-page-signin .type-sidelines span:after {
  left: 100%;
}

.login-page .login-page-top-cell {
  background: url("/include/images/login-gb.png") 50% no-repeat;
  background-size: cover;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -ms-flex-align: center;
        align-items: center;
  -webkit-justify-content: center;
     -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 1rem 2rem;
    border-radius: var(--font-size-325);
}

.login-page .login-page-top-cell .login-page-top-cell-logo {
  padding: 1rem 2rem;
}

.login-page .login-page-top-cell .login-page-top-cell-logo img {
  width: 15rem;
}

.login-page-bottom-cell {
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -ms-flex-align: center;
         align-items: center;
  -webkit-justify-content: center;
     -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  font-size: var(--font-size-325);
  font-weight: 600;
}

.login-page-bottom-cell p {
  line-height: 1.2;
}

.login-page .login-page-right-cell {
  background: url("/include/images/login-gb.png") 50% no-repeat;
  background-size: cover;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -ms-flex-align: center;
         align-items: center;
  -webkit-justify-content: center;
     -ms-flex-pack: center;
         justify-content: center;
         border-radius: 0 0 0 10rem;
         height: 100%;
}

.login-page .login-page-right-cell .login-page-right-cell-text {
  color: var(--pakajo_text_color);
  font-size: var(--font-size-325);
  font-weight: 600;
  padding: 2rem;
  text-align: center;
}

.login-page .login-page-right-cell .login-page-right-cell-logo {
  margin-bottom: 8rem;
}

.login-page .login-page-right-cell .login-page-right-cell-logo img {
  transform: translateY(+0%);
    padding: 5rem;
}

/*------END Login Styling--------*/

/*--------- dashboard-card Styling-----*/
.dashboard-card {
    background-color: var(--pakajo_bg_color_white);
    color: var(--pakajo_turquoise_dark);
    border-radius: var(--radius-3xl);
    box-shadow: 0 8px 14px 1px rgba(0, 0, 0, 0.04), 0px 2px 4px -1px rgba(0, 0, 0, 0.04);
    min-width: 0;
    width: 100%;
    overflow: hidden;
    max-width: 1950px;
}

.dashboard-card-header {
    padding: 24px 24px 8px 24px;
    display: flex;
    justify-content: space-between;
    border-radius: var(--radius-3xl);
}

.dashboard-card-title {
    font-size: 18px;
}

.dashboard-card-content {
    padding: 8px 24px 24px 24px;
}

.dashboard-card-icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #edf3f8;
    border-radius: 9999px;
    align-self: flex-start;
}

.dashboard-info {
    margin-top: 6px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xxl);
    padding: 8px;
    background-color: #edf3f8;
}

.dashboard-note-card {
  background-color: var(--pakajo_bg_color_white);
  color: var(--pakajo_turquoise_dark);
  border-radius: var(--radius-3xl);
  box-shadow: 0 8px 14px 1px rgba(0, 0, 0, 0.04), 0px 2px 4px -1px rgba(0, 0, 0, 0.04);
  min-width: 0;
  width: 100%;
  overflow: auto;
  padding: 0px 5px 5px;
  margin-bottom: 10px;
  max-height: 150px;
}
.dashboard-note-card .dashboard-note-card-header {
  font-size: small;
  margin-bottom: 0;
  display: inline-block;
}
.dashboard-note-card .dashboard-note-card-header .material-symbols-outlined {
  margin-right: 5px;
}
.dashboard-note-card .dashboard-note-card-header .label {
  margin-right: 5px;
  display: inline-flex;
}
.dashboard-note-card .dashboard-note-card-header .label .material-symbols-outlined {
  margin-right: 5px;
}
.dashboard-note-card .dashboard-note-card-header .dashboard-note-card-header-text {
  line-height: normal;
  padding-top: 1px;
}
.dashboard-note-card .dashboard-note-card-content {
  font-size: small; 
  line-height: normal; 
  color: #898989;
}
/*---------END dashboard-card Styling-----*/

/*--------- app-dashboard Styling-----*/

.app-dashboard {
  height: 100vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.app-dashboard-body {
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.app-dashboard-top-nav-bar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #2c3840;
  height: 55px;
  width: 100%;
  -webkit-flex: 0 0 55px;
      -ms-flex: 0 0 55px;
          flex: 0 0 55px;
}

.app-dashboard-top-nav-bar .menu-icon {
  vertical-align: text-bottom;
}

.app-dashboard-logo {
  color: var(--pakajo_orange);
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  display: block;
}
.app-dashboard-header-logo{
  /*margin-top: 16px;
  text-align: right;*/

  /*position: absolute;
  top: 49px;
  right: 12px;*/
  text-align: right;
  margin-top: 3px;
}
.app-dashboard-header-logo .app-dashboard-logo img {
  width: 6rem;
  transform: translateY(+0%);
}

.app-dashboard-header-logo .app-dashboard-logo {
  text-align: right;
  display: inline-block;
}

.menu-button {
  padding: 2px;
  margin-bottom: 0px;
  /*font-size: x-large;
  width: 2rem;
  height: 2rem;*/
  /*position: absolute;
  top: 40px;*/
}

.app-dashboard-search-btn {
  width: 100%;
  position: unset;
}

.app-dashboard-top-bar-actions {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.app-dashboard-top-bar-actions button {
  margin-bottom: 0;
  margin-right: 2rem;
}

.app-dashboard-top-bar-actions button.hollow {
  border-color: #fefefe;
  color: #fefefe;
}

.app-dashboard-top-bar-actions button.hollow:hover {
  background: #fefefe;
  color: #1779ba;
}

.app-dashboard-top-bar-actions .fa-info-circle {
  color: #fefefe;
  font-size: 1.5rem;
}

.app-dashboard-sidebar {
  background-color: #fefefe;
  height: 100%;
  overflow-x: visible;
  overflow-y: auto;
  transition: all 0.5s ease;
  box-shadow: unset!important;
  z-index: 1!important;
}

.app-dashboard-sidebar .app-dashboard-open-sidebar, .app-dashboard-sidebar .app-dashboard-close-sidebar {
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 1rem;
}

.app-dashboard-sidebar .app-dashboard-sidebar-close-button {
  font-size: 14px;
}

.app-dashboard-sidebar .app-dashboard-sidebar-inner {
  height: 80%;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 4rem;
  font-size: var(--font-size-325);
}

.app-dashboard-sidebar .app-dashboard-sidebar-inner .menu > li > a {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
          display: flex;
          padding: 0.4rem 1rem;
          margin: .3rem 0rem;
}

.menu-item a {
  color: var(--pakajo-app-menu-color);
  font-weight: 600;
  font-size: var(--font-size-325);
  display: inline-flex;
}

.app-dashboard-sidebar-inner .menu-item a:hover, .app-dashboard-sidebar-inner .menu-item a.is-active {
  color: var(--pakajo_turquoise_dark);
  border-right: 3px solid var(--pakajo_turquoise_dark);
}

.app-dashboard-sidebar-footer .menu-item a:hover, .app-dashboard-sidebar-footer .menu-item a.is-active {
  color: var(--pakajo_turquoise_dark);
}


.app-dashboard-sidebar .material-symbols-outlined {
  width: 30px;
}

.app-dashboard-sidebar .app-dashboard-sidebar-text {
  width: 100%;
}

.reveal-for-medium .app-dashboard-open-sidebar {
  display: none;
}

.app-dashboard-header {
  margin-bottom: 20px;
}

.app-dashboard-page {
  height: 100vh;
  overflow-y: auto;
  background-color: var(--pakajo_bg_color);
  border-radius: var(--radius-3xl) var(--radius-3xl) 0px 0px;
  padding-top: 15px;
  border: 1px solid var(--pakajo_bg_color);
}

.app-dashboard-page.login-hide {
  height: 100%;
  background-color: var(--pakajo_bg_color_white);
  padding: 0;
}

.app-dashboard-page::-webkit-scrollbar {
  display: none;
}

.app-dashboard-page .page-content-grid {
  height: 100%;
}
.app-dashboard-page .page-content-grid .page-content {
  height: 100%;
}
.app-dashboard-page .page-content-grid .page-notifications-content {
  height: 85vh;
  padding-top: 15px;
  background-color: var(--pakajo_bg_color_white);
  color: var(--pakajo_turquoise_dark);
  border-radius: var(--radius-3xl);
  box-shadow: 0 8px 14px 1px rgba(0, 0, 0, 0.04), 0px 2px 4px -1px rgba(0, 0, 0, 0.04);
  overflow: auto;
  /*position: sticky;
  top: 0;*/
  padding: 15px 10px 5px;
}
.app-dashboard-page .page-content-grid .page-notifications-content.dropdown-pane {
  height: unset;
  min-height: 60vh;
  position: absolute;
}

.app-dashboard-sidebar-footer {
  background: var(--pakajo_bg_color_white);;
  bottom: 0;
  left: 0;
  padding: 1rem;
  position: absolute;
  width: 100%;
}

.app-dashboard-open-sidebar {
  text-align: center;
}

.app-dashboard-body-content {
  transition: all 0.5s ease;
  /*overflow: auto;*/
  display: inline-grid;
  position: relative;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  padding: 20px 5px;
  background-color: var(--pakajo_bg_color_white);
}

.app-dashboard-body-content.hide-sidebar {
  margin-left: 0px!important;
  background-color: var(--pakajo_bg_color_white)!important;
}

.app-dashboard-sidebar-title-area{
  display: block;
  margin-top: 2rem;
}

.app-dashboard-header-menu {
  /*position: absolute;
  border: 1px solid;
  width: max-content;
  right: 0;*/

  /*justify-content: flex-end;
  display: flex;*/
}
.app-dashboard-header-menu .menu {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.app-dashboard-header-menu .menu li a {
  padding: 0.3rem 0.3rem;
  font-size: var(--font-size-350);
  font-weight: 600;
  -webkit-align-items: center;
  -ms-flex-align: center;
  display: inline-flex;
  align-items: center;
  background-color: var(--pakajo_bg_color_white);
  margin: 0px 3px;
  border: 1px solid #dedede;
}
.app-dashboard-header-menu .menu li a:hover {
  color: var(--pakajo_text_color);
  background-color: #E9EDF0;
}


.app-dashboard-header-menu #user-dropdown-btn {
  text-transform: uppercase;
  /*position: absolute;
  top: -23px;
  left: 155px;
  padding: 0;*/
}
.app-dashboard-header-menu #user-dropdown-btn .account-icon {
  margin-right: 0rem;
}
.app-dashboard-header-menu #user-dropdown-btn .account-name {
  display: none;
}
.app-dashboard-header-menu #user-dropdown-btn .account-arrow {
  margin-left: 0rem;
}
.app-dashboard-header-menu #language-dropdown-btn {
  background-color: var(--pakajo_bg_color_white);
  border: 1px solid #dedede;
}
.app-dashboard-header-menu #language-dropdown-btn img{
  border-radius: var(--radius-xxl);
  margin: 0px 10px 0px 3px;
  width: 25px;
}
.app-dashboard-header-menu #notifications-dropdown-btn {
  /*position: absolute;
  top: -23px;
  left: 85px;
  padding: 0;*/
}

.app-dashboard-header-menu #messages-dropdown-btn {
  /*position: absolute;
  top: -23px;
  left: 120px;
  padding: 0;*/
}
.app-dashboard-header-menu .menu-badge {
  position: relative;
  top: -10px;
  right: 10px;
  font-size: .5em;
  padding: .3em;
}

.rounded-flag-buttons {
  text-align: center;
  display: grid;
}

.rounded-flag-buttons .flag-button {
  cursor: pointer;
  transition: 0.5s ease all;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
  display: inline-block;
  margin: 0px 3px 0px 3px;
  padding: 0.6rem 0.3rem!important;
  border: 0 !important;
  border-bottom: 2px solid #dedede !important;
}

.rounded-flag-buttons .flag-button img {
  border-radius: var(--radius-xxl);
  margin: 0px 10px 0px 3px;
  width: 25px;
}

/*----quick_help_modal----*/
.quick_help_wrapper {
  display: contents;
}

.quick_help_bubble {
  min-height: 500px;
  min-width: 330px;
  display: none;
  margin: 0 auto;
  margin-top: 50px;
  padding: 20px;

  background-color: var(--pakajo_bg_color_white);
  color: var(--pakajo_turquoise_dark);
  border-radius: var(--radius-3xl);
  box-shadow: 0 8px 14px 1px rgb(0 0 0 / 25%), 0px 2px 4px 5px rgb(0 0 0 / 10%);
  overflow: hidden;

  position: fixed;
  font-size: 1.5em;
  bottom: 125px;
  right: 20px;
  z-index: 1000;
}

.quick_help_pointer {
  height: 40px;
  width: 40px;
  background-color: var(--pakajo_bg_color_white);
  margin: 0 auto;
  display: none;
  transform: rotate(45deg);
  border-radius: 0 0 3px 0;
  margin-top: -22px;
  position: fixed;
  font-size: 1.5em;
  bottom: 110px;
  right: calc(0.5vw - -30px);
  box-shadow: 1px 1px rgba(0, 0, 0, 0.04), 0px 2px 4px -1px rgba(0, 0, 0, 0.04);
  z-index: 1001;
}

.quick-help-btn-cover {
  position: fixed;
  font-size: 1.5em;
  bottom: 65px;
  right: 10px;
  padding: 0;
  background-color: var(--pakajo_turquoise_dark);
  z-index: 1000;
}

.quick-help-btn-cover:hover {
  transform: scale(1.05); 
}

.quick-help-btn {
  margin: 0;
  padding: .8em;
  color: var(--pakajo_bg_color_white)!important;
  transform: rotate(10deg);
}

.quick_help_wrapper .orbit-container {
    position: unset;
}
.quick_help_wrapper .orbit-next {
  position: relative;
  top: 150px;
  left: 0px;
  padding: 10px 35px 10px 10px;
  margin: 0;
  border-radius: var(--radius-1xl);
  font-weight: 600;
}
.quick_help_wrapper .orbit-next span {
  position: absolute;
  margin: -3px 0px 0px 5px;
}
.quick_help_wrapper .orbit-previous {
  position: relative;
  top: -30px;
  left: 270px;
  padding: 5px 5px;
  margin: 0;
}
/*----END quick_help_modal----*/

/*----quick_tracker_modal----*/

.quick-tracker {
  background-color: transparent;
  bottom: 125px;
  left: 0;
  padding: 1rem 0rem;
  position: absolute;
  width: 100%;
}
.quick-tracker-cover {
  background-color: #eeeeee;
   text-decoration: none;
   padding: .7rem;
   position: relative;
   display: inline-block;
   border-radius: var(--radius-3xl);
   transition: all ease 0.4s;
   margin: 1rem .5rem;
   text-align: center;
   color: var(--pakajo_turquoise_dark);
   width: -webkit-fill-available;
}
.quick-tracker-badge {
   position: absolute;
   top: -16px;
   right: 41%;
   font-size: .8em;
   background-color: var(--pakajo_table_header_color);
   border: 3px solid #c6d8d8;
}
/*----END quick_tracker_modal----*/

/*----quick_level_overview----*/
.quick-level-overview {
  margin-top: 100px;
  .tooltip-lens {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 5;
    animation: shake cubic-bezier(0.36, 0.07, 0.19, 0.97)  1000ms forwards;
    animation-delay:2000ms;

    .tooltip-ballon {
      width: 50px;
      height: 50px;
      border-radius: 5px;
      background: #FFFFFF;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
      animation: ballong cubic-bezier(0.68, -0.55, 0.27, 1.55) 2000ms forwards;

      &:after {
        content: '';
        height: 20px;
        width: 20px;
        background: #FFFFFF;
        transform: rotate(45deg);
        position: absolute;
        bottom: -5px;
        opacity: 0;
        animation: ballongContentArrow cubic-bezier(0.68, -0.55, 0.27, 1.55) 2000ms forwards;
        animation-delay:800ms;
      }

      .tooltip-wrapper-content {
        /*width: 90%;
        display: flex;
        justify-content: center;*/
        align-items: center;
        opacity: 0;
        animation: ballongContent cubic-bezier(0.68, -0.55, 0.27, 1.55) 2000ms forwards;
        animation-delay: 1000ms;
        padding: 10px;

        p {
          font-family: 'Poppins';
          color: #7c37a6;
          font-size: 14px;
          text-align: center;
          line-height: 10px;
          padding: 5px;
          border-radius: 5px;
          font-weight: 700;
        }
      }
    }
  }
}

@keyframes ballong {
  0% {
    transform: translateY(28px);
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  50% {
    transform: translateY(-18px);
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;

  }
  100% {
    transform: translateY(-10px);
    opacity: 1;
    width: 180px;
    height: 90px;
    border-radius: 5px;
  }
}

@keyframes ballongContentArrow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ballongContent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/*----END quick_level_overview----*/

/*----SPINNER STYLING----*/
#spinnerBackground {
  height:100%; 
  position:absolute; 
  top:0; 
  left:0; 
  right:0; 
  bottom:0; 
  position:fixed; 
  z-index:9999999; 
  background: #000000;
  opacity:0.70; 
  visibility:hidden;
}
#spinnerDIV {
  position: fixed;
  z-index: 999999998;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
  margin-left: -80px;
  visibility:hidden;
}
#spinnerText {
  position: fixed;
  z-index: 999999999;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
  margin-left: -50px;
  text-align: center;
  vertical-align: middle;
  line-height: 100px;
  font-weight: 600;
  font-size: smaller;
  color: #ffffff;
  visibility:hidden;
}
#spinnerDIV .dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
}

/* Corner decorations for all animation containers */
#spinnerDIV .corner {
  position: absolute;
  width: 16px;
  height: 16px;
  color: white;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#spinnerDIV:hover .corner {
  opacity: 1;
}

#spinnerDIV .top-left {
  top: -8px;
  left: -8px;
  transition-delay: 0s;
}

#spinnerDIV .top-right {
  top: -8px;
  right: -8px;
  transform: rotate(90deg);
  transition-delay: 0.1s;
}

#spinnerDIV .bottom-left {
  bottom: -8px;
  left: -8px;
  transform: rotate(-90deg);
  transition-delay: 0.2s;
}

#spinnerDIV .bottom-right {
  bottom: -8px;
  right: -8px;
  transform: rotate(180deg);
  transition-delay: 0.3s;
}

/* 1. Pulsating Circles */
#spinnerDIV .pulse-dot {
  opacity: 0;
  transform-origin: center;
  animation: pulseFadeIn 3s infinite ease-in-out;
}
@keyframes pulseFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  40%,
  60% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.2);
  }
}

/* 2. Rotating Orbits */
#spinnerDIV .orbit-container {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: rotate 8s infinite linear;
}
@keyframes rotate {
  to {
    transform: rotateZ(360deg);
  }
}

/* 3. Sequential Rings */
@keyframes expandRing {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  40%,
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* 4. Concentric Rotations */
#spinnerDIV .concentric-container {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
#spinnerDIV .concentric-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: rotateRing linear infinite;
}
@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

/* 5. Circular Waves */
#spinnerDIV .circular-wave-dot {
  animation: circularWave 3s infinite ease-in-out;
  transform-origin: center;
}
@keyframes circularWave {
  0% {
    transform: scale(0.7);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.7);
    opacity: 0.3;
  }
}

/* 6. Expanding Lines */
#spinnerDIV .line-container {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateLines 8s infinite linear;
  transform-origin: center;
}
@keyframes rotateLines {
  to {
    transform: rotate(360deg);
  }
}
#spinnerDIV .expanding-line {
  position: absolute;
  height: 1px;
  left: 50%;
  top: 50%;
  transform-origin: left center;
  background: rgba(255, 255, 255, 0.3);
  animation: expandLine 4s infinite ease-in-out;
}
@keyframes expandLine {
  0% {
    width: 0;
    opacity: 0;
  }
  20%,
  80% {
    width: 70px;
    opacity: 1;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}

/* 7. Breathing Grid */
#spinnerDIV .breathing-dot {
  animation: breathe 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
@keyframes breathe {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

/* 8. Ripple Effect */
#spinnerDIV .ripple-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
#spinnerDIV .ripple-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 4s infinite cubic-bezier(0, 0.5, 0.5, 1);
}
@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 180px;
    height: 180px;
    opacity: 0;
  }
}

/* New ripple wave dot animation */
#spinnerDIV .ripple-wave-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  transform-origin: center;
}

@keyframes rippleWave {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.8);
    opacity: 1;
  }
}

/* 9. Fibonacci Spiral (div version) */
#spinnerDIV .fibonacci-container {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateSlow 30s infinite linear;
  transform-origin: center;
}
@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}
#spinnerDIV .fibonacci-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: fibPulse 3s infinite ease-in-out;
}
@keyframes fibPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* 10. Halftone Gradient */
#spinnerDIV .halftone-container {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateSlow 20s infinite linear;
  transform-origin: center;
}
#spinnerDIV .halftone-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: halftoneFade 4s infinite ease-in-out;
}
@keyframes halftoneFade {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 11. Silver Spiral */
#spinnerDIV .silver-container {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateSlow 25s infinite reverse linear;
  transform-origin: center;
}
#spinnerDIV .silver-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: silverPulse 3s infinite ease-in-out;
}
@keyframes silverPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/*----END SPINNER STYLING----*/

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  /*---- ONLY MOBILE & LARGE SCREEN -----*/

  .app-dashboard-body-content {
    /*background-color: var(--pakajo_bg_color);*/
    margin-left: 0px;
    padding: 20px 10px;
  }
  .app-dashboard.shrink-medium .app-dashboard-close-sidebar, .app-dashboard.shrink-medium .app-dashboard-sidebar-text {
    display: none;
  }
  .app-dashboard.shrink-medium .app-dashboard-open-sidebar {
    display: block;
  }
  .app-dashboard.shrink-medium .app-dashboard-sidebar {
    width: 80px;
  }
  /*.app-dashboard-sidebar-title-area{
    display: none;
  }*/
  .app-dashboard.shrink-medium .app-dashboard-sidebar .material-symbols-outlined {
    width: auto;
  }
  .app-dashboard.shrink-medium .off-canvas-content {
    margin-left: 80px;
    width: calc(100% - 80px);
  }
  .app-dashboard.shrink-medium .navigation {
    margin-top: 2rem;
    text-align: center;
  }
  .app-dashboard.shrink-medium .menu.vertical > li > a {
    -webkit-justify-content: center
        -ms-flex-pack: center;
            justify-content: center;
  }
  .app-dashboard.shrink-medium .menu li::after {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .app-dashboard.shrink-medium .menu li a {
    padding: 0.75rem;
  }
  .app-dashboard.shrink-medium .menu li a svg {
    margin: 0;
  }
  .app-dashboard.shrink-medium .menu li a span {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

}

@media print, screen and (min-width: 40em) {
  /*---- ONLY MOBILE SCREEN -----*/

  .login-page-signin {
    width: 410px;
  }

  .app-dashboard-header {
    margin-bottom: 5px;
  }

  .app-dashboard-header-menu #user-dropdown-btn {
   /* position: unset;
    padding: 0.5rem 0.5rem;*/
  }
  .app-dashboard-header-menu #user-dropdown-btn .account-icon {
    margin-right: .5rem;
  }
  .app-dashboard-header-menu #user-dropdown-btn .account-name {
    display: block;
  }
  .app-dashboard-header-menu #user-dropdown-btn .account-arrow {
    margin-left: .5rem;
  }
  .app-dashboard-header-menu #language-dropdown-btn {
    /*position: unset;
    padding: 0.4rem 0.5rem;*/
    /*border: 0;*/
  }
  .app-dashboard-header-menu #notifications-dropdown-btn {
    /*position: sticky;
    padding: 0.4rem 0.5rem;
    display: inline-block;*/
  }
  .app-dashboard-header-menu #messages-dropdown-btn {
    /*position: sticky;
    padding: 0.5rem 0.5rem;
    display: inline-block;*/
  }
  .app-dashboard-header-menu .menu-badge {
    /*top: 4px;
    right: 2px;*/
  }
  .app-dashboard-header-menu .menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .quick-help-btn-cover {
    bottom: 50px;
    right: 30px;
  }
}

@media screen and (max-width: 63.9375em) {
  /*---- ONLY LARGE SCREEN -----*/
      
}

.app-dashboard-footer {
  /*border-top: 1px solid var(--pakajo_turquoise_light);*/
  background-color: var(--pakajo_bg_color_white);
  position: sticky;
  bottom: 0;
  display: inline-grid;
  z-index: 1000;
  /*-webkit-box-shadow: 0 -6px 36px 0 rgba(0, 0, 0, .6);
    -moz-box-shadow: 0 -6px 36px 0 rgba(0,0,0,.6);*/
}
.app-dashboard-footer a {
  font-size: x-small;
  color: var(--pakajo_turquoise_dark);
  font-weight: bold;
}
.app-dashboard-footer.hide-footer {
  position: absolute;
  width: 95%;
  margin: 0 10px;
  /*border-top: 1px solid var(--pakajo_turquoise_light);
  /*margin-top: 0px;*/*/
}
.app-dashboard-footer.hide-footer .menu a, .app-dashboard-footer .menu a {
  color: var(--pakajo_turquoise_light);
  /*padding-top: 7px;*/
  padding-top: 2px;
  padding-bottom: 5px;
}
.dropdown-pane {
  border-radius: var(--font-size-350);
  position: fixed!important;
}

/*------search-control---*/
.search-control {
  width: 100%;
/*  max-width: 675px;*/
  margin: 0px;
  padding: 5px 0px;
}

.search-control .search-control-field {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: left;
      justify-content: left;
}

.search-control .search-control-field input {
  height: 35px;
  /*width: 50px;*/
  width: 100%;
  border: 0;
  display: block;
  cursor: pointer;
  margin: 0px;
  border-radius: var(--radius-2xl);
  /*box-shadow: 0 8px 14px 1px rgba(0, 0, 0, 0.04), 0px 2px 4px 2px rgba(0, 0, 0, 0.04);*/
}

.search-control .search-control-field input.placeholder {
  color: #ccc;
  font-size: 18px;
  font-weight: 300;
  opacity: 1;
}

.search-control .search-control-field input:-moz-placeholder {
  color: #ccc;
  font-size: 18px;
  font-weight: 300;
  opacity: 1;
}

.search-control .search-control-field input::-webkit-input-placeholder {
  color: #ccc;
  font-size: 18px;
  font-weight: 300;
  opacity: 1;
}

.search-control .search-control-field input:hover, .search-control .search-control-field input:focus {
/*  box-shadow: none;*/
  outline: 0;
}

.search-control .search-control-field .search-btn {
  width: 50px;
  height: 38px;
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background: transparent;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease-out;
}

.search-control .search-control-field .search-btn svg {
  fill: #ccc;
  width: 22px;
  height: 22px;
}

.search-control .search-control-field .search-btn:hover, .search-control .search-control-field .search-btn:focus {
  box-shadow: none;
  outline: 0;
}

.search-control .search-control-field .search-btn:hover svg, .search-control .search-control-field .search-btn:focus svg {
  fill: #333;
}
.search-control .search-control-field input {
  padding: 5px 0 5px 50px;
  /*width: 50px;*/
  width: 100%;
  transition: width .2s ease-in;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%23ccc' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3e%3c/svg%3e");
  background-position: 10px 2px;
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: 30px 30px;
  border: 1px solid var(--pakajo_color_border);
}

.search-control .search-control-field input:focus {
  width: 100%;
  padding-right: 60px;
}

.search-control .search-control-field input.isFocus {
  width: 100%;
}

.search-control .search-control-field input.isFocus ~ .search-btn {
  opacity: 1;
}
/*------END search-control---*/

@media print, screen and (min-width: 64em) {
  /*---- ONLY MOBILE & MEDIUM SCREEN -----*/

  .app-dashboard-body-content {
    background-color: var(--pakajo_bg_color);
  }
  .app-dashboard-body-content.hide-sidebar {
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .app-dashboard.shrink-large .app-dashboard-close-sidebar, .app-dashboard.shrink-large .app-dashboard-sidebar-text {
    display: none;
  }
  .app-dashboard.shrink-large .app-dashboard-open-sidebar {
    display: block;
  }
  .app-dashboard.shrink-large .app-dashboard-sidebar {
    width: 80px;
  }
  .app-dashboard.shrink-large .app-dashboard-sidebar .material-symbols-outlined {
    width: auto;
  }
  .app-dashboard.shrink-large .off-canvas-content {
    margin-left: 80px;
    width: calc(100% - 80px);
  }
  .app-dashboard.shrink-large .navigation {
    margin-top: 2rem;
    text-align: center;
  }
  .app-dashboard.shrink-large .menu.vertical > li > a {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .app-dashboard.shrink-large .menu li::after {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .app-dashboard.shrink-large .menu li a {
    padding: 0.75rem;
  }
  .app-dashboard.shrink-large .menu li a svg {
    margin: 0;
  }
  .app-dashboard.shrink-large .menu li a span {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .app-dashboard-header-menu {
    margin-top: 15px;
  }
  .app-dashboard-header-menu .menu {
    -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      margin-right: 12px;
  }
  .app-dashboard-header-menu .menu li a {
    background-color: initial;
    /*border: unset;*/
  }

  .app-dashboard-footer {
    border-top: 2px solid var(--pakajo_turquoise_light);
    background-color: var(--pakajo_bg_color);
    box-shadow: unset;
  }
  .app-dashboard-footer.hide-footer {
    border-top: 0px;
    background-color: transparent;
  }
  .app-dashboard-footer a {
    font-size: var(--font-size-325);
  }
  .app-dashboard-footer.hide-footer .menu a{
    color: var(--pakajo_bg_color_white);
  }
  .app-dashboard-search-btn {
    position: absolute;
    top: 30px;
    left: 33px;
    width: 40%;
    z-index: 1000;
  }
  .search-control .search-control-field input {
    width: 50px;
  }
}
/*--------- END app-dashboard Styling-----*/

@media print, screen and (max-width: 64em) {
  .pk-responsive-table-view .first-col {
    background-color: var(--pakajo_table_header_color)!important;
  }

}
  




