@charset "UTF-8";
/* ----------------------------------- */
/* Base responsive sass-scss framework */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Provides a light weight, container-based and modulair CSS framework with SASS support for applications created by Autotelex. */
/* Designed for new and existing applications. */
/* Dependencies: None */
/* ------------------------------- */
/* ------------------------------- */
/* Base elements scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Formats and equalizes elements for each major browser using Autotelex styling. */
/* Dependencies: None */
/* ------------------------------- */
/* ------------------------------- */
/* Base variables scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Stylizes and provides attributes to exclude/specialize elements for wide devices. */
/* Influences: base-elements.scss, base-attributes.scss, base-custom-controls.scss, base-masterpage.scss */
/* ------------------------------- */
/* ------------------------------- */
/* Colors. */
/* ------------------------------- */
/* ------------------------------- */
/* Dimensions. */
/* ------------------------------- */
/* ------------------------------- */
/* Fonts. */
/* ------------------------------- */
/* ------------------------------- */
/* Responsiveness. */
/* ------------------------------- */
/* ------------------------------- */
/* Spacing. */
/* ------------------------------- */
/* Elements */
html, body, form {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%; /* Safari-mobile landscape fix */
}

body {
  background-color: #ecf0f1;
  min-width: 320px;
  min-height: 320px;
  font-family: Verdana;
  overflow-x: hidden;
  overflow-y: scroll;
}

body, figure, ul, li {
  margin: 0;
}

form {
  display: inline;
}

h1, h2 {
  margin: 0 0 10px;
}

h3, h4 {
  margin: 0 0 4px;
}

hr {
  border: 1px inset white;
  opacity: 0.5;
}

iframe, img {
  border: 0;
}

img {
  display: inline-block;
}

a,
a:visited {
  display: inline-block;
  cursor: pointer;
  line-height: 40px;
}

a.disabled,
a.disabled:hover {
  cursor: default;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

button,
input[type=button],
input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=reset],
input[type=search],
input[type=submit],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border: none;
  font-family: inherit;
  border-radius: 0;
  vertical-align: middle;
}

input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
select {
  border: 1px solid #ccc;
}

button,
input[type=button],
input[type=submit] {
  overflow: hidden;
  text-overflow: ellipsis;
  height: 40px;
  color: white;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
}

input[type=submit] {
  background-color: #2c3e50;
}

input[type=button] {
  background-color: #bdc3c7;
}

button {
  white-space: nowrap;
  background-color: #3498db;
}
buttondisabled {
  background-color: #bdc3c7;
  color: #ddd;
  cursor: default;
}

input[type=button],
input[type=submit],
a.button {
  padding: 0 10px;
}

input[type=button].active,
input[type=button]:active {
  background-color: #2c3e50;
}

button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled {
  background-color: #bdc3c7;
  color: #e8e8e8;
  cursor: default;
}

input[type=button].active:disabled,
input[type=submit].active:disabled {
  background-color: #4c5e70;
}

a.button:hover {
  color: white;
}

select,
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 40px;
  box-sizing: border-box;
  padding-left: 10px;
}

p,
table,
ul {
  margin: 0 0 10px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table tr {
  vertical-align: middle;
}
table td {
  box-sizing: border-box;
  padding: 4px 8px;
}
table ul {
  margin: 0;
}
table ul li {
  padding: 4px 0;
}
table thead,
table tfoot {
  font-weight: bold;
}
table thead tr {
  background-color: #e8e8e8;
}
table tbody tr {
  border-bottom: 1px solid #eee;
}
table tbody tr:last-child {
  border: none;
}

/* ------------------------------- */
/* Masterpage scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Provides common masterpage controls such as a topbar, logo, and content-container using Autotelex styling. */
/* Dependencies: base-elements.scss */
/* ------------------------------- */
/* ------------------------------- */
/* Base variables scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Stylizes and provides attributes to exclude/specialize elements for wide devices. */
/* Influences: base-elements.scss, base-attributes.scss, base-custom-controls.scss, base-masterpage.scss */
/* ------------------------------- */
/* ------------------------------- */
/* Colors. */
/* ------------------------------- */
/* ------------------------------- */
/* Dimensions. */
/* ------------------------------- */
/* ------------------------------- */
/* Fonts. */
/* ------------------------------- */
/* ------------------------------- */
/* Responsiveness. */
/* ------------------------------- */
/* ------------------------------- */
/* Spacing. */
/* ------------------------------- */
/* Topbar */
.topbar {
  position: fixed;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 0 5%;
  background-color: #bf392b;
  z-index: 10;
}
.topbar .title {
  float: left;
  font-family: sans-serif;
  font-size: 28px;
  font-weight: bold;
  line-height: 50px;
  color: white;
}
.topbar {
  /* Topbar - ATX logo */
}
.topbar .atx-logo {
  float: left;
  line-height: normal;
  height: 100%;
}
.topbar .atx-logo img {
  width: 200px;
  height: 100%;
}
.topbar {
  /* Topbar - User */
}
.topbar .user {
  display: inline-block;
  float: right;
  cursor: pointer;
  color: white;
  line-height: 50px;
  height: 50px;
  padding: 0 20px;
}
.topbar .user span {
  float: right;
  line-height: 50px;
}
.topbar {
  /* Topbar - Side-menu button */
}
.topbar .side-menu-button {
  float: left;
  padding: 0 10px;
  line-height: 50px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.topbar {
  /* Topbar - Hover effects */
}
.topbar .user:hover {
  transition: 200ms;
  transition-timing-function: ease-in-out;
  background-color: #e74c3c;
}

/* Content */
.content {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  min-width: 320px;
  box-sizing: border-box;
}
.content .contentPlaceHolder {
  width: 100%;
  overflow: auto;
}

/* ------------------------------- */
/* Base print scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Stylizes and provides attributes to exclude/specialize elements for printing using Autotelex styling. */
/* Dependencies: base-elements.scss */
/* Special attributes:
    - print-only (displays the element only in compact-mode)
    - no-print (hides the element in compact-mode) */
/* ------------------------------- */
/* ------------------------------- */
/* Base variables scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Stylizes and provides attributes to exclude/specialize elements for wide devices. */
/* Influences: base-elements.scss, base-attributes.scss, base-custom-controls.scss, base-masterpage.scss */
/* ------------------------------- */
/* ------------------------------- */
/* Colors. */
/* ------------------------------- */
/* ------------------------------- */
/* Dimensions. */
/* ------------------------------- */
/* ------------------------------- */
/* Fonts. */
/* ------------------------------- */
/* ------------------------------- */
/* Responsiveness. */
/* ------------------------------- */
/* ------------------------------- */
/* Spacing. */
/* ------------------------------- */
/* Attributes */
.print-only,
.print-only * {
  display: none;
}

/* Print button */
.print-button {
  float: right;
  line-height: 50px;
  font-size: 40px;
  color: white;
  padding: 0 10px;
  cursor: pointer;
}

.print-button:hover {
  transition: 200ms;
  transition-timing-function: ease-in-out;
  background-color: #e74c3c;
}

/* Print mark-up */
@media print {
  body {
    font-size: 0.5em; /* Half the defined font-size is considered plenty for printing */
  }
  table tr td,
  table tr th {
    page-break-inside: avoid;
  }
  /* Exclusion attribute */
  .no-print,
  .no-print * {
    display: none;
  }
  /* Page-block printing styles */
  .pageblock {
    border-bottom: 1px solid silver;
    margin-bottom: 20px;
  }
  .pageblock-section:first-child {
    padding: 10px 5px 10px 0;
  }
  .pageblock-section:nth-child(2) {
    padding: 10px 0 10px 5px;
  }
  /* Specialization attributes */
  .print-only,
  .print-only * {
    display: inherit; /* Support for IE */
    display: initial;
  }
}
/* ------------------------------- */
/* Base custom controls css */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Defines custom-built controls using Autotelex styling. */
/* Dependencies: base-elements.scss  */
/* Custom controls:
    - Date picker (custom-styled date picker control)
    - Messagebox (stylizes a div element as a fixed messagebox control)
    - Overlay (transforms an element into a full-page overlay. Can be negated with the no-overlay attribute modifier)
    - Page block (stylizes and provides the ability to seperate a page into responsive, horizontally splitted blocks)
    - Page block section (provides the ability to split a page block in two responsive sections)
*/
/* ------------------------------- */
/* ------------------------------- */
/* Base variables scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Stylizes and provides attributes to exclude/specialize elements for wide devices. */
/* Influences: base-elements.scss, base-attributes.scss, base-custom-controls.scss, base-masterpage.scss */
/* ------------------------------- */
/* ------------------------------- */
/* Colors. */
/* ------------------------------- */
/* ------------------------------- */
/* Dimensions. */
/* ------------------------------- */
/* ------------------------------- */
/* Fonts. */
/* ------------------------------- */
/* ------------------------------- */
/* Responsiveness. */
/* ------------------------------- */
/* ------------------------------- */
/* Spacing. */
/* ------------------------------- */
/* Date picker control */
/* https://github.com/kekeh/mydatepicker */
div.ng-mydp {
  position: absolute;
  z-index: 10000;
}

div.myDpSelector {
  border-radius: 0;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

/* AM-charts control */
.amcharts-chart-div a {
  display: none !important;
}

/* Messagebox */
.messagebox {
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: white;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
  text-align: center;
  color: #7f7f7f;
}
.messagebox img {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 150px;
  line-height: normal;
}
.messagebox .messagebox-topbar {
  position: relative;
  height: 32px;
  width: 100%;
  background: #bf392b;
}
.messagebox .copyright {
  position: absolute;
  bottom: 4px;
  left: 4px;
  line-height: normal;
  font-size: 0.75em;
}

/* Messagebox for loader */
.messagebox.loader {
  margin-left: -150px;
  margin-top: -50px;
  width: 300px;
  height: 100px;
  line-height: 50px;
}

/* Overlay */
.overlay {
  position: fixed;
  left: 0;
  top: 50px;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.5;
}

/* Page-block control */
.pageblock {
  display: flex;
  background-color: white;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
}
.pageblock .pageblock-section {
  display: inline-block;
  width: 50%;
  box-sizing: border-box;
}
.pageblock .pageblock-section-single {
  width: 100%;
  float: none;
  padding: 0;
  margin-top: 0;
}

.validation-summary-errors {
  color: red;
  font-weight: bold;
}

/* -------------------------------- */
/* Base attributes scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Allows usage of quick-attributes on existing elements using Autotelex styling. */
/* Dependencies: base-elements.scss, base-variables.scss */
/* -------------------------------- */
/* ------------------------------- */
/* Base variables scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Stylizes and provides attributes to exclude/specialize elements for wide devices. */
/* Influences: base-elements.scss, base-attributes.scss, base-custom-controls.scss, base-masterpage.scss */
/* ------------------------------- */
/* ------------------------------- */
/* Colors. */
/* ------------------------------- */
/* ------------------------------- */
/* Dimensions. */
/* ------------------------------- */
/* ------------------------------- */
/* Fonts. */
/* ------------------------------- */
/* ------------------------------- */
/* Responsiveness. */
/* ------------------------------- */
/* ------------------------------- */
/* Spacing. */
/* ------------------------------- */
/* Exclusive base element attributes */
input.small-input {
  height: 30px;
  padding: 2px;
}

table.disabled tr td {
  pointer-events: none;
}

table.disabled tr td input[type=button] {
  color: #e8e8e8;
}

table.disabled tr td input,
table.disabled .collapsible-header {
  color: #bdc3c7;
}

table.table-keyvalue td {
  white-space: nowrap;
}

table.table-keyvalue td:first-child {
  padding-left: 0;
}

table.table-keyvalue td:last-child {
  padding-right: 0;
}

table.table-keyvalue td:nth-child(n+2) {
  font-weight: bold;
  text-align: right;
}

table.table-keyvalue tr.item td:nth-child(n+2) {
  font-weight: normal;
}

table.table-keyvalue.wrap td:first-child {
  white-space: normal;
}

table.table-keyvalue.wrap td:nth-child(2),
table.table-keyvalue td.wrap {
  white-space: normal;
}

table.no-border,
table.no-border tr,
table.no-border td {
  border: none;
}

table.no-push,
table.no-push tr,
table.no-push td {
  padding: 0;
}

table.no-push-hz,
table.no-push-hz tr,
table.no-push-hz td {
  padding-left: 0;
  padding-right: 0;
}

table.no-push-vt,
table.no-push-vt tr,
table.no-push-vt td {
  padding-top: 0;
  padding-bottom: 0;
}

table td.push-down-small {
  padding-bottom: 4px;
}
table td.push-down-medium {
  padding-bottom: 10px;
}
table td.push-down-large {
  padding-bottom: 20px;
}
table td.push-up-small {
  padding-top: 4px;
}
table td.push-up-medium {
  padding-top: 10px;
}
table td.push-up-large {
  padding-top: 20px;
}
table td.push-left-small {
  padding-left: 4px;
}
table td.push-left-medium {
  padding-left: 10px;
}
table td.push-left-large {
  padding-left: 20px;
}
table td.push-right-small {
  padding-right: 4px;
}
table td.push-right-medium {
  padding-right: 10px;
}
table td.push-right-large {
  padding-right: 20px;
}

/* General attributes */
.align-bottom,
table.align-bottom td {
  vertical-align: bottom;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-top,
table.align-top td {
  vertical-align: top;
}

.ellipsis {
  text-overflow: ellipsis;
}

.ellipsis-loader {
  display: inline-block;
  width: 20px;
  text-align: left;
}

.error,
input[type=text].ng-invalid {
  border: 1px solid red !important; /* Enforce border-style to prevent browsers from overriding this. */
  box-shadow: none; /* Fix which prevents browsers from adding unwanted shadows. */
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.font-size-double {
  font-size: 2em;
}

.font-size-triple {
  font-size: 3em;
}

.font-size-quadruple {
  font-size: 4em;
}

.half-width {
  width: 50%;
  max-width: 50%;
}

.hidden {
  display: none;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.lowercase {
  text-transform: lowercase;
}

.max-height,
button.max-height,
input.max-height {
  height: 100%;
}

.max-width {
  width: 100%;
}

.monospaced {
  font-family: Consolas;
}

.no-bold {
  font-weight: normal;
}

.no-border {
  border: none;
}

.no-overlay {
  z-index: 1;
}

.no-push {
  margin: 0;
  padding: 0;
}

.no-push-hz {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.no-push-vt {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}

.no-wrap {
  white-space: nowrap;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.padding-small,
table td.padding-small {
  padding: 4px;
}

.padding-small-hz,
table td.padding-small-hz {
  padding-left: 4px;
  padding-right: 4px;
}

.padding-small-vt,
table td.padding-small-vt {
  padding-top: 4px;
  padding-bottom: 4px;
}

.padding-medium,
table td.padding-medium {
  padding: 10px;
}

.padding-medium-hz,
table td.padding-medium-hz {
  padding-left: 10px;
  padding-right: 10px;
}

.padding-medium-vt,
table td.padding-medium-vt {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-large,
table td.padding-large {
  padding: 20px;
}

.padding-large-hz,
table td.padding-large-hz {
  padding-left: 20px;
  padding-right: 20px;
}

.padding-large-vt,
table td.padding-large-vt {
  padding-top: 20px;
  padding-bottom: 20px;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-relative {
  position: relative;
}

.push-down-small {
  margin-bottom: 4px;
}

.push-down-medium {
  margin-bottom: 10px;
}

.push-down-large {
  margin-bottom: 20px;
}

.push-up-small {
  margin-top: 4px;
}

.push-up-medium {
  margin-top: 10px;
}

.push-up-large {
  margin-top: 20px;
}

.push-left-small {
  margin-left: 4px;
}

.push-left-medium {
  margin-left: 10px;
}

.push-left-large {
  margin-left: 20px;
}

.push-right-small {
  margin-right: 4px;
}

.push-right-medium {
  margin-right: 10px;
}

.push-right-large {
  margin-right: 20px;
}

.quarter-width {
  width: 25%;
}

.small-text {
  font-size: 0.8em;
}

.square-control {
  width: 16px;
  height: 16px;
  padding: 2px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1 4px;
  font-size: 12px;
  background-color: #2c3e50;
  color: white;
}

.table-layout-fixed {
  table-layout: fixed;
}

.third-width {
  width: 33.33%;
}

.tiny-text {
  font-size: 0.6em;
}

.word-break {
  word-break: break-word;
}

/* Color attributes */
.atx-blue {
  color: #3498db;
}

.atx-blue-bg {
  background-color: #3498db;
}

.atx-dark-blue {
  color: #2c3e50;
}

.atx-dark-blue-bg {
  background-color: #2c3e50;
}

.atx-gray {
  color: #bdc3c7;
}

.atx-gray-bg {
  background-color: #bdc3c7;
}

.atx-green {
  color: #5fbe54;
}

.atx-green-bg {
  background-color: #5fbe54;
}

.atx-orange {
  color: #ff7005;
}

.atx-orange-bg {
  background-color: #ff7005;
}

.atx-purple {
  color: #702bbf;
}

.atx-purple-bg {
  background-color: #702bbf;
}

.atx-purple-hl {
  color: #913ce7;
}

.atx-purple-hl-bg {
  background-color: #913ce7;
}

.atx-red {
  color: #bf392b;
}

.atx-red-bg {
  background-color: #bf392b;
}

.atx-red-hl {
  color: #e74c3c;
}

.atx-red-hl-bg {
  background-color: #e74c3c;
}

.black {
  color: black;
}

.black-bg {
  background-color: black;
}

.red {
  color: red;
}

.red-bg {
  background-color: red;
}

.white {
  color: white;
}

.white-bg {
  background-color: white;
}

/* Cursor attributes */
.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

/* Text font-style attributes */
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

/* Text transform attributes */
.capitalize {
  text-transform: capitalize;
}

.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

/* Animation attributes */
.ellipsis-loader:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 900ms infinite;
  animation: ellipsis steps(4, end) 900ms infinite;
  content: "…";
  width: 0;
}

@keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
/* ------------------------------- */
/* Base responsiveness scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Stylizes and provides attributes to exclude/specialize elements for various screen sizes. */
/* Influences: base-elements.scss, base-attributes.scss, base-custom-controls.scss, base-masterpage.scss */
/* Remarks: Screen sizes are a qualification with a specific width range. */
/* eg. $screen-m's size is defined at 1920px. This means $min-screen-m has a min-width of 1920px, but $max-screen-m should then technically be 1919px. */
/* This prevents clashing styling rules since $min-screen-m will be visible at 1920px, while elements with $max-screen-m will be hidden by the 1px of difference. */
/* ------------------------------- */
/* ------------------------------- */
/* Base variables scss */
/* Created by: Gilian v.d. Weijden */
/* Created on: 2017-1-4 */
/* Description: Stylizes and provides attributes to exclude/specialize elements for wide devices. */
/* Influences: base-elements.scss, base-attributes.scss, base-custom-controls.scss, base-masterpage.scss */
/* ------------------------------- */
/* ------------------------------- */
/* Colors. */
/* ------------------------------- */
/* ------------------------------- */
/* Dimensions. */
/* ------------------------------- */
/* ------------------------------- */
/* Fonts. */
/* ------------------------------- */
/* ------------------------------- */
/* Responsiveness. */
/* ------------------------------- */
/* ------------------------------- */
/* Spacing. */
/* ------------------------------- */
/* -------------------------------- */
/* Minimum screen size declarations */
/* -------------------------------- */
/* >= 2xl */
@media screen and (min-width: 4096px) {
  .max-screen-2xl {
    display: none;
  }
}
/* >= xl */
@media screen and (min-width: 2560px) {
  .max-screen-xl {
    display: none;
  }
}
/* >= l */
@media screen and (min-width: 1920px) {
  .max-screen-l {
    display: none;
  }
}
/* >= m */
@media screen and (min-width: 1600px) {
  .max-screen-m {
    display: none;
  }
}
/* >= s */
@media screen and (min-width: 1024px) {
  .max-screen-s {
    display: none;
  }
}
/* >= xs */
@media screen and (min-width: 720px) {
  .max-screen-xs {
    display: none;
  }
}
/* >= 2xs */
@media screen and (min-width: 480px) {
  .max-screen-2xs {
    display: none;
  }
}
/* >= 3xs */
@media screen and (min-width: 320px) {
  .max-screen-3xs {
    display: none;
  }
}
/* -------------------------------- */
/* Maximum screen size declarations */
/* -------------------------------- */
/* < 2xl */
@media screen and (max-width: 4095px) {
  .min-screen-2xl {
    display: none;
  }
}
/* < xl */
@media screen and (max-width: 2559px) {
  .min-screen-xl {
    display: none;
  }
}
/* < l */
@media screen and (max-width: 1919px) {
  .min-screen-l {
    display: none;
  }
}
/* < m */
@media screen and (max-width: 1599px) {
  .min-screen-m {
    display: none;
  }
}
/* < s */
@media screen and (max-width: 1023px) {
  .min-screen-s {
    display: none;
  }
}
/* < xs */
@media screen and (max-width: 719px) {
  .min-screen-xs {
    display: none;
  }
}
/* < 2xs */
@media screen and (max-width: 479px) {
  .min-screen-2xs {
    display: none;
  }
}
/* < 3xs */
@media screen and (max-width: 319px) {
  .min-screen-3xs {
    display: none;
  }
}
/* ----- */
/* Fonts */
/* ----- */
@media screen and (max-width: 479px) {
  input[type=number],
  input[type=text] {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  body {
    font-size: 0.75em;
  }
}
@media screen and (min-width: 320px) {
  body {
    font-size: 0.75em;
  }
}
@media screen and (min-width: 480px) {
  body {
    font-size: 0.75em;
  }
}
@media screen and (min-width: 720px) {
  body {
    font-size: 0.75em;
  }
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 0.75em;
  }
}
@media screen and (min-width: 1600px) {
  body {
    font-size: 0.75em;
  }
}
@media screen and (min-width: 1920px) {
  body {
    font-size: 0.75em;
  }
}
@media screen and (min-width: 2560px) {
  body {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 4096px) {
  body {
    font-size: 0.9em;
  }
}
/* --------------------- */
/* Controls and elements */
/* --------------------- */
/* >= xl */
@media screen and (min-width: 4096px) {
  /* Masterpage */
  .topbar,
  .content {
    padding: 0 33.33%;
  }
  /* Messagebox */
  .messagebox img {
    top: 8px;
    left: 4px;
    width: 170px;
  }
  .messagebox .copyright {
    bottom: 4px;
    left: 4px;
  }
  /* Messagebox for loader */
  .messagebox.loader {
    margin-left: -225px;
    margin-top: -75px;
    width: 450px;
    height: 150px;
    line-height: 75px;
  }
}
@media screen and (max-width: 4096px) {
  /* Masterpage */
  .topbar,
  .content {
    padding: 0 25%;
  }
}
@media screen and (min-width: 2560px) {
  /* Tile-group */
  .tilegroup .tilegroup-button.icon span {
    margin-top: 15px;
    font-size: 60px;
  }
  .tilegroup {
    /* Tile-group control */
  }
  .tilegroup .tilegroup-button {
    margin: 0 20px 20px 0;
  }
}
@media screen and (min-width: 1920px) {
  /* Page-block */
  .pageblock {
    padding: 20px;
  }
  .pageblock .pageblock-section:first-child {
    padding-right: 10px;
  }
  .pageblock .pageblock-section:not(:first-child) {
    padding-left: 10px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  /* Masterpage */
  .topbar {
    padding: 0;
  }
  .content {
    padding: 0 10px;
  }
  /* Page-block */
  .pageblock {
    padding: 20px;
  }
  .pageblock .pageblock-section:first-child {
    padding-right: 10px;
  }
  .pageblock .pageblock-section:not(:first-child) {
    padding-left: 10px;
  }
}
@media screen and (min-width: 2560px) and (max-width: 4095px) {
  /* Masterpage */
  .topbar,
  .content {
    padding: 0 20%;
  }
}
@media screen and (min-width: 1600px) and (max-width: 2559px) {
  /* Masterpage */
  .topbar,
  .content {
    padding: 0 15%;
  }
  .topbar .title {
    padding: 0;
  }
}
@media screen and (max-width: 1600px) {
  /* Elements */
  table thead td {
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  table td {
    padding: 4px;
  }
  ul {
    padding-left: 20px;
  }
  /* Page-block */
  .pageblock {
    padding: 20px;
  }
  .pageblock-section:first-child {
    padding-right: 10px;
  }
  .pageblock-section:not(:first-child) {
    padding-left: 10px;
  }
  /* SVG-container */
  .svg-container svg {
    min-height: initial;
    margin: 0 auto;
  }
  /* Topbar */
  .topbar {
    padding: 0;
  }
  .topbar .title {
    padding: 0 10px;
  }
  /* Content */
  .content {
    padding: 0 10px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1600px) {
  .atx-logo {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1023px) {
  table thead td {
    font-kerning: auto;
  }
  /* Page-block */
  .pageblock {
    display: block;
    padding: 10px;
  }
  .pageblock .pageblock-section {
    display: block;
    margin-left: 0;
    width: 100%;
  }
  .pageblock .pageblock-section:first-child {
    margin-bottom: 20px;
    padding: 0;
  }
  .pageblock .pageblock-section:nth-child(2) {
    padding: 0;
  }
  .pageblock .pageblock-section.no-push:first-child {
    padding: 0;
    margin: 0;
  }
  /* Content-block */
  .content {
    top: 50px;
    padding: 0;
  }
  /* Messagebox */
  .messagebox img {
    top: 4px;
    left: 2px;
    width: 100px;
  }
  .messagebox .fadebar {
    height: 20px;
  }
  .messagebox .copyright {
    bottom: 2px;
    left: 2px;
  }
  /* Messagebox for loader */
  .messagebox.loader {
    margin-left: -100px;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    line-height: 50px;
  }
}
@media screen and (max-width: 720px) {
  /* List button control */
  .listbutton .multi-row .image {
    width: 60px;
    height: 90px;
  }
}
/* Navigation menu - Topbar menu */
.topbar-menu {
  overflow: auto;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 400px) {
  .topbar-menu {
    font-size: 11px;
  }
}
@media screen and (max-width: 365px) {
  .topbar-menu {
    font-size: 9px;
  }
}
@media screen and (max-width: 325px) {
  .topbar-menu {
    font-size: 8px;
  }
}
.navmenu {
  float: right;
}

@media screen and (max-width: 325px) {
  .topbar {
    height: auto;
  }
  .content {
    top: 100px;
  }
}
.topbar-menu a {
  display: inline-block;
  float: left;
  padding: 0 16px;
  height: 50px;
  line-height: 50px;
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 500px) {
  .topbar-menu a {
    padding: 0 8px;
  }
}
.topbar-menu a:hover,
.topbar-menu a.active {
  background-color: #e74c3c;
  transition: 200ms;
  transition-timing-function: ease-in-out;
}

.topbar-menu a.disabled {
  color: #f88;
}

.topbar-menu a.disabled:hover {
  background-color: transparent;
  cursor: default;
}

/* Navigation menu - Side menu */
.side-menu {
  position: fixed;
  left: 0;
  top: 50px;
  background-color: #2e353d;
  width: 250px;
  height: 100%;
  font-weight: bold;
  overflow-y: auto;
  box-sizing: border-box;
  padding-bottom: 50px;
}

.side-menu a {
  float: left;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #23282e;
  padding-left: 20px;
  box-sizing: border-box;
  line-height: 50px;
  color: white;
  cursor: pointer;
}

.side-menu a:hover,
.side-menu a.active {
  background-color: #e74c3c;
  transition: 200ms;
  transition-timing-function: ease-in-out;
}

.side-menu a.disabled {
  color: #4e555d;
}

.side-menu a.disabled:hover {
  background-color: transparent;
  cursor: default;
}

/* Language menu */
.languageMenu {
  float: right;
}

.languageMenu:hover .languageSubmenu {
  display: block;
}

.languageMenu .languageMenuMainItem img {
  vertical-align: middle;
  margin-right: 4px;
  position: relative;
  top: -2px;
  width: 32px;
}

.languageSubmenu {
  background-color: #bf392b;
  min-width: 150px;
  display: none;
  z-index: 1;
  position: absolute;
  top: 50px;
  margin-left: -64px;
}

.languageSubmenu .languageSubmenuItem {
  float: none;
  display: block;
}

.languageSubmenu .languageSubmenuItem img {
  vertical-align: middle;
  margin-right: 4px;
  position: relative;
  top: -2px;
  width: 32px;
}

.example-block {
  background-color: lightgray;
  padding: 5px 5px 5px 15px;
  word-break: break-word;
  margin: 5px 0px;
}

.example-block p {
  margin: 0;
}

a.default-link-color {
  color: #0000EE;
}

/*# sourceMappingURL=base.css.map */
