/* Standard style definitions
==========================================
========================================== */
.panel-shadow {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 190, 0.05);
}
.dialog-shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
/* ATI Toolkit style definitions
==========================================
========================================== */
/* Colours
========================================== */
/* Fonts
========================================== */
/* Misc
========================================== */
/* Navbar
-------------------------------------------------- */
.navbar {
  font-weight: 500;
}
.navbar .navbar-brand img {
  height: 3rem;
}
.navbar-nav .dropdown-menu.user-menu {
  position: absolute;
}
.navbar .nav-item .nav-link,
.navbar .nav-item .nav-link:hover,
.nav-link,
.nav-link:hover {
  color: #2F2E79;
}
.navbar .navbar-nav .nav-link,
.nav-tabs .nav-link {
  transition: background-color 0.2s;
  background-color: transparent;
  padding: 0.5rem 1rem;
  height: 100%;
}
.navbar .navbar-nav .nav-link:hover,
.nav-tabs .nav-link:hover {
  background-color: #e0e0ff;
  transition: background-color 0s;
}
.navbar .navbar-nav .nav-link {
  padding: 1.2rem 1rem;
}
.nav-link.active {
  position: relative;
}
.nav-link.active:before {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 4px;
  background-color: #E11930;
  transition: left 0.2s, right 0.2s;
}
.nav-link.active:hover:before {
  left: 0;
  right: 0;
}
.nav-tabs .nav-link {
  border-radius: 0;
  border: none;
}
.nav-tabs .nav-link.active {
  color: black;
  background-color: transparent;
}
.nav-tabs .nav-link.active:hover {
  background-color: #e0e0ff;
}
.nav-tabs .nav-link.disabled {
  color: #777;
}
.navbar .dropdown-menu {
  min-width: 25em;
  top: calc(100% - 2px);
}
/* Tabstrip
-------------------------------------------------- */
.subnav-tab {
  cursor: pointer;
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 10px 10px;
  border-bottom: 5px solid transparent;
  color: #2F2E79 !important;
}
.subnav-tab.selected {
  border-bottom-color: #E11930;
}
.subnav-tab:hover {
  color: black !important;
}
.tab-disabled {
  border-bottom: 5px solid transparent;
  color: #c7c7c7 !important;
}
.tab-disabled.selected {
  border-bottom: 5px solid transparent;
}
.tab-disabled:hover {
  color: #c7c7c7 !important;
}
/* Message banner
======================== */
.msg-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}
.msg-panel > a {
  cursor: pointer;
}
.msg-panel > a.subtle {
  font-size: 0.9em;
  padding: 0.25em 2em;
}
.msg-panel i {
  vertical-align: baseline;
}
.msg-panel .msg-icon {
  font-size: 1.5em;
  margin-top: 0.1em;
  float: left;
}
.msg-panel .title {
  margin: 0 1em 0 1.5em;
  font-size: 1.5em;
  font-weight: normal;
}
.msg-panel .message {
  margin: 1em 0 0 0;
}
.msg-panel .container {
  padding: 1em;
  -webkit-box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.35);
  position: relative;
}
.msg-panel .msg-panel-close {
  height: auto;
  padding: 14px 15px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background-color: transparent;
  cursor: pointer;
}
.msg-panel .msg-panel-close i {
  font-size: 2em;
}
.msg-panel .msg-panel-close:hover,
.msg-panel .msg-panel-close:focus {
  background-color: rgba(0, 0, 0, 0.35);
  color: white;
}
.danger-block {
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 8px, rgba(255, 255, 255, 0.05) 8px, rgba(255, 255, 255, 0.05) 16px), #ac2000;
  color: white;
}
.danger-block h1,
.danger-block h2,
.danger-block h3,
.danger-block h4,
.danger-block h5,
.danger-block h6 {
  color: white;
}
.danger-block::before {
  background: #791700;
}
.warning-block {
  background: #ec8200;
  color: white;
}
.warning-block::before {
  background: #b96600;
}
.success-block {
  background: #348b41;
  color: white;
}
.success-block::before {
  background: #266630;
}
.info-block {
  background: #e0e0ff;
  color: black;
}
.info-block::before {
  background: #c6c6ff;
}
.help-block {
  background: #199FFF;
  color: white;
}
.help-block::before {
  background: #0068b2;
}
.card-link {
  background-color: #251E66;
  color: white;
}
a:hover .card-link {
  background-color: #2F2E79;
}
/* Loading panel
-------------------------------------------------- */
.loading-panel {
  background-color: #f8f8f8;
  padding: 5rem 1rem;
  font-size: 1.5em;
}
.loading-full-page {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(220, 220, 220, 0.3);
  font-size: 1.5em;
}
.loading-full-page p {
  position: absolute;
  top: 50%;
  margin-top: -2rem;
  width: 100%;
}
/* Autocomplete 
======================== */
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
}
.autocomplete input {
  background-image: url(/images/autocomplete-icon.svg);
  background-position: calc(100% - 0.6rem) center;
  background-repeat: no-repeat;
  background-size: 1.5em;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  max-height: 60vh;
  overflow-y: auto;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.35);
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(/images/select-icon.svg);
  background-position: calc(100% - 0.6rem) center;
  background-repeat: no-repeat;
  background-size: 1.5em;
}
.selectized {
  background-image: url(/images/search-solid.svg) !important;
}
.selectized:focus {
  /*border-color: @ATI_blue !important;
		box-shadow: @ATI_primary-focus !important;*/
}
.selectize-input {
  background-image: none !important;
}
.all-available::after {
  width: 30px;
  height: 28px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  position: absolute;
  top: 5px;
  z-index: 1;
  right: 20px;
  font-size: 21px;
  text-align: left;
  padding-left: 3px;
  pointer-events: none;
  background-color: white;
}
.selectize-dropdown-content {
  font-size: 17px;
}
input[type=date] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  background-image: url(/images/date-icon.svg);
  background-position: calc(100% - 0.6rem) center;
  background-repeat: no-repeat;
  background-size: 1.5em;
}
input[type=time] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(/images/time-icon.svg);
  background-position: calc(100% - 0.6rem) center;
  background-repeat: no-repeat;
  background-size: 1.5em;
  padding-right: 0.25rem;
}
::-webkit-inner-spin-button,
::-webkit-calendar-picker-indicator {
  opacity: 0;
}
/* make the native arrow invisible and stretch it over the whole field so you can click anywhere in the input field to trigger the native datepicker*/
input[type="date"].no-picker {
  background-image: none;
}
input[type="date"].no-picker::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
}
.selectize-prefix input {
  position: absolute;
  width: 62px;
  left: -46px;
  text-align: center;
  height: 38px;
  border-radius: 0.25rem 0px 0px 0.25rem;
}
.selectize-prefix .selectize-input {
  border-radius: 0px 0.25rem 0.25rem 0px !important;
}
.table.fixed {
  table-layout: fixed;
}
.no-results-row {
  text-align: center;
  padding: 0.75rem;
  font-weight: bold;
  font-size: 1.2em;
  color: #444;
}
.card > .table th,
.card-table th {
  border-top: none;
  border-bottom-width: 1px;
  background-color: white;
}
.table tr:hover td {
  background-color: #fbfbff;
  cursor: pointer;
}
.table {
  margin-bottom: 0px !important;
}
.table th {
  position: sticky;
  top: 0;
  /* Don't forget this, required for the stickiness */
  z-index: 100;
}
.table th.sortable {
  cursor: pointer;
}
.table th.sortable:hover {
  background-color: #cceaff;
}
.table th.sortable .sort-by {
  margin-left: 1rem;
  color: #711fb3;
}
.table td {
  vertical-align: middle;
}
.table .bom-section th {
  top: 2.5rem;
}
.dialog-body .table th {
  top: -22px;
}
.pagination-toggle {
  padding: 7px 10px 8px 10px;
  cursor: pointer;
}
.table th.sortable:hover {
  background-color: #e0e0ff;
}
.busy-container:not(.inline),
.busy-container-back {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
}
.busy-container.inline {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.busy-container.inline img,
.busy-container.inline i {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  width: 30px;
}
.busy-container-back {
  background-color: rgba(220, 220, 220, 0.7);
}
.dialog-container .busy-container-back {
  background-color: rgba(255, 255, 255, 0.7);
}
.busy-container:not(.inline) img,
.busy-container:not(.inline) i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  width: 50px;
  z-index: 110;
}
.busy-container.page-scope,
.busy-container.page-scope .busy-container-back {
  position: fixed;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Dialog & message panel close button
======================================== */
a.msg-panel-close {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  padding: 1em;
  background-color: transparent;
  cursor: pointer;
}
a.msg-panel-close i {
  font-size: 2em;
}
a.msg-panel-close:hover,
a.msg-panel-close:focus {
  background-color: rgba(0, 0, 0, 0.35);
  color: white;
}
/* Dialog panel
======================== */
.dialog-panel {
  position: fixed;
  display: none;
  left: 50%;
  top: 50%;
  min-width: 20em;
  max-width: 30em;
  height: auto;
  margin-top: -12em;
  z-index: 2000;
  border: solid 1px silver;
  background-color: white;
  box-shadow: 0 0.2em 20px 0 rgba(0, 0, 0, 0.35);
}
.dialog-panel > p,
.dialog-panel > a,
.dialog-panel > a::after hover {
  display: block;
  padding: 1.3em 1.8em 1.3em 2em;
  color: inherit;
  margin: 0;
}
.dialog-panel > a {
  cursor: pointer;
}
.dialog-panel > a.subtle {
  font-size: 0.9em;
  padding: 0.25em 2em;
}
.dialog-panel i {
  vertical-align: baseline;
}
.dialog-panel .dialog-content {
  padding: 15px;
}
.dialog-panel .msg-icon {
  font-size: 1.5em;
  margin-right: 0.6em;
}
.dialog-panel > h3 {
  padding: 10px 15px;
}
.dialog-container-scroll {
  overflow-y: auto;
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.dialog-container-scroll .dialog-panel {
  position: absolute;
  display: block;
  top: 2em;
  margin-top: 0;
  margin-left: 0;
  left: 25%;
  width: 50%;
  height: auto;
  max-width: 40em;
  margin-bottom: 2em;
}
@media screen and (max-width: 960px) {
  .dialog-container-scroll .dialog-panel {
    left: 15%;
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .dialog-container-scroll .dialog-panel {
    left: 5%;
    width: 90%;
  }
}
/* Full page overlay
	======================== */
.full-page-overlay {
  position: fixed;
  display: table;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(220, 220, 220, 0.7);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: unset;
}
.full-page-overlay .dialog-shim {
  display: table-cell;
  vertical-align: middle;
}
.full-page-overlay .full-page-container {
  position: fixed;
  left: 2em;
  top: 2em;
  right: 2em;
  bottom: 2em;
  background-color: #888;
  -webkit-box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.35);
}
.full-page-overlay .full-page-container .full-page-container-title {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.75);
}
.full-page-overlay .full-page-container .msg-panel-close {
  background: rgba(255, 255, 255, 0.75);
  padding: 10px 15px;
}
.full-page-overlay .full-page-container a.msg-panel-close:hover {
  color: #e0e0ff;
}
.full-page-overlay .full-page-container .scroll-container {
  position: absolute;
  left: 0;
  top: 3.2em;
  right: 0;
  bottom: 0;
  padding: 30px 15px;
  overflow-y: scroll;
}
.full-page-overlay .dialog-container {
  position: relative;
  margin: 0 auto;
  width: 90%;
  min-width: 20em;
  max-width: 60em;
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.full-page-overlay .dialog-container .dialog-title {
  position: relative;
  margin: 0;
  padding: 10px 15px 7px 15px;
  background: linear-gradient(282.77deg, #B0170E -113.62%, #2F2870 93.04%), #2F2870;
  color: white;
}
.full-page-overlay .dialog-container .dialog-title h3 {
  margin: 0;
  padding: 11px 0;
  color: white;
}
.full-page-overlay .dialog-container .dialog-title .msg-panel-close {
  height: auto;
  bottom: 0;
  padding: 18px 15px;
}
.full-page-overlay .dialog-container .dialog-body,
.full-page-overlay .dialog-container .dialog-footer {
  width: 100%;
  padding: 10px 15px;
  margin: 0;
}
.full-page-overlay .dialog-container .dialog-body {
  max-height: calc(100vh - 10.5em);
  overflow-y: auto;
  padding-top: 20px;
}
.full-page-overlay .dialog-container .dialog-footer .btn-tray {
  margin-top: 10px;
}
.selectize-control .avatar {
  margin: 0;
  height: unset;
}
.selectize-control .avatar img {
  top: -1px;
  height: 2em;
  margin-right: 0.25em;
}
.selectize-dropdown .avatar {
  line-height: 2.5em;
  padding-left: 1em;
}
.selectize-input {
  background-color: white;
  border: solid 1px #d0d0d0;
  padding: 0 0 0 10px;
  margin: 2px 0;
  border-radius: 0.25rem;
  width: 100%;
  display: block;
  font-weight: normal;
  line-height: 30px;
  min-height: 38px;
  box-shadow: none;
  box-sizing: border-box;
}
.selectize-input.input-validation-error {
  border-color: #ac2000;
  color: #ac2000;
}
.selectize-input.focus {
  border-color: #2F2E79 !important;
  box-shadow: inset 0 1px 1px rgb(0 0 0%), 0 0 8px rgb(48 46 2.03333333%) !important;
  outline: 0;
}
.selectize-control .selectize-input.has-items,
.selectize-control.multi .selectize-input.has-items {
  padding: 1px 35px 1px 1px;
}
.selectize-control.multi .selectize-input,
.selectize-control.single .selectize-input {
  background-image: url(/images/select-icon.svg);
  background-position: calc(100% - 0.6rem) center;
  background-repeat: no-repeat;
  background-size: 1.5em;
}
.selectize-control.multi .selectize-input:after,
.selectize-control.single .selectize-input:after,
.selectize-control.multi .selectize-input.dropdown-active:after,
.selectize-control.single .selectize-input.dropdown-active:after {
  display: none;
}
.selectize-control.multi .selectize-input.dropdown-active,
.selectize-control.single .selectize-input.dropdown-active {
  background-image: url(/images/select-icon.svg);
  background-position: calc(100% - 0.6rem) center;
  background-repeat: no-repeat;
  background-size: 1.5em;
}
.selectize-control.plugin-remove_button .selectize-input [data-value] {
  position: relative;
  padding-left: 10px !important;
  padding-right: 36px !important;
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 1px 3px 1px 1px;
  padding: 0px 6px;
  background: #f2f2f2;
  border: none;
  border-radius: 3px;
}
.selectize-control.plugin-remove_button .selectize-input [data-value] .remove,
.selectize-control.plugin-remove_button .selectize-input [data-value] .remove-single {
  padding: 2px 6px 0 6px;
  width: 26px;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.5em;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  border-left: 1px solid #d0d0d0;
  color: #ac2000;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-dropdown .create::before {
  content: '\0044';
  display: inline-block;
  font-family: 'HcsSafetyIconFont';
  padding-right: 0.5em;
}
.selectize-dropdown .create {
  padding: 5px 8px;
}
.selectize-dropdown .active,
.selectize-dropdown .create.active {
  background-color: #199FFF;
  color: white;
  cursor: pointer;
}
.selectize-dropdown [data-selectable] .highlight {
  background-color: rgba(190, 200, 255, 0.6);
  color: black;
}
/* Custom slider checkbox 
======================== */
.slidercheck-form-wrapper {
  position: relative;
  margin: 4px 0;
}
.slidercheck-form-wrapper input {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.slidercheck-form-wrapper .slidercheck-label {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 0.75em;
  line-height: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.slidercheck-form-wrapper .slidercheck-fill {
  display: block;
  position: relative;
  width: 48px;
  height: 100%;
  background-color: white;
  border: 2px solid #d0d0d0;
  border-radius: 12px;
}
.slidercheck-form-wrapper .slidercheck-fill:after {
  content: "No";
  position: absolute;
  left: 48px;
  padding: 3px 6px;
}
.slidercheck-form-wrapper input:active ~ .slidercheck-fill,
.slidercheck-form-wrapper input:focus ~ .slidercheck-fill,
.slidercheck-form-wrapper .slidercheck-label:hover > .slidercheck-fill {
  border-color: #199FFF;
}
.slidercheck-form-wrapper input:active ~ .slidercheck-fill .slidercheck-handle,
.slidercheck-form-wrapper input:focus ~ .slidercheck-fill .slidercheck-handle,
.slidercheck-form-wrapper .slidercheck-label:hover > .slidercheck-fill .slidercheck-handle {
  background-color: #199FFF;
}
.slidercheck-form-wrapper input:checked ~ .slidercheck-fill {
  background-color: #348b41;
  border-color: #348b41;
}
.slidercheck-form-wrapper input:checked ~ .slidercheck-fill:after {
  content: "Yes";
}
.slidercheck-form-wrapper .slidercheck-handle {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 16px;
  border-radius: 50%;
  background-color: #199FFF;
  transition: left 0.2s;
}
.slidercheck-form-wrapper input:checked ~ .slidercheck-fill .slidercheck-handle {
  left: 26px;
  background-color: white;
}
.slidercheck-form-wrapper input.on-off ~ .slidercheck-fill:after {
  content: "Off";
}
.slidercheck-form-wrapper input.on-off:checked ~ .slidercheck-fill:after {
  content: "On";
}
/* Meter
======================== */
.meter-container {
  display: block;
  height: 0.5rem;
  width: 10rem;
  margin: 0.5em 0;
  background-color: #ddd;
}
.meter-container .meter-bar {
  display: block;
  width: 0;
  height: 100%;
  background-color: #199FFF;
}
.meter-container .meter-bar.worst {
  background-color: #ac2000;
  width: 20%;
}
.meter-container .meter-bar.bad {
  background-color: #ec8200;
  width: 40%;
}
.meter-container .meter-bar.weak {
  background-color: #7030a0;
  width: 60%;
}
.meter-container .meter-bar.good {
  background-color: #199FFF;
  width: 80%;
}
.meter-container .meter-bar.strong {
  background-color: #348b41;
  width: 100%;
}
.info-block .meter-container {
  background-color: white;
}
.drag-handle {
  position: absolute;
  left: 0;
  top: 0;
  right: -8px;
  bottom: 0;
  cursor: move;
}
.drag-handle .handle {
  position: absolute;
  left: 4px;
  top: 4px;
  right: 7px;
  bottom: 4px;
}
.drag-handle .handle.light {
  background-image: url(/images/draggable-light.png);
}
.drag-handle .handle.dark {
  background-image: url(/images/draggable-dark.png);
}
.dragging {
  background-color: #3badff !important;
}
/* Cookie Consent
   ======================== */
#cookieConsentContainer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
  background-color: rgba(220, 220, 220, 0.7);
}
#cookieConsent {
  width: 100%;
  padding: 30px 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  text-align: center;
  font-size: 15px;
  border-top: 1px solid #000;
  z-index: 9999999;
}
#cookieConsent a,
#cookieConsent button {
  border: none;
  display: inline-block;
  line-height: 1.5em;
  background-color: #000;
  padding: 2px 10px;
  border-radius: 5px;
  color: #fff;
  margin: 0 6px 0 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
#cookieConsent a:hover,
#cookieConsent button:hover {
  background-color: #44f;
}
#cookieConsent #buttons {
  margin-top: 10px;
}
.hidden {
  display: none;
}
/* Classes
========================================== */
html,
body {
  font-size: 17px;
  font-family: 'Heebo', sans-serif;
  font-weight: 300;
  color: #212121;
}
.ati-main-title {
  font-size: 50px;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  color: #212121;
}
.ati-title {
  font-size: 36px;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  color: #212121;
}
.ati-subtitle {
  font-size: 22px;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  color: #212121;
}
.ati.text-red {
  color: #E11930;
}
.ati-text-over-colour {
  color: #FFFFFF;
}
.ati-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 300;
  padding: 10px;
  line-height: 20px;
  cursor: pointer;
  outline: none;
  background-color: #FFFFFF;
  color: #212121;
  border: 1px solid #212121;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
  -moz-transition: background-color 0.18s;
  -o-transition: background-color 0.18s;
  -webkit-transition: background-color 0.18s;
  transition: background-color 0.18s;
  text-decoration: none !important;
}
.ati-btn:hover,
.ati-btn:focus {
  outline: none;
  text-decoration: none !important;
}
.ati-btn:hover {
  background-color: #f2f2f2;
}
.ati-btn:active,
.ati-btn:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.26);
}
.ati-btn:disabled {
  background-color: #f2f2f2;
  color: transparent;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.ati-btn-proceed,
.ati-btn-download,
.ati-btn-upload {
  padding: 0px 0px 0px 10px;
}
.ati-btn-proceed::after,
.ati-btn-download::after,
.ati-btn-upload::after {
  color: #212121;
  background-color: #f2f2f2;
  display: inline-flex;
  margin-left: 10px;
  height: 40px;
  padding: 10px;
}
.ati-btn-back,
.ati-btn-add,
.ati-btn-save,
.ati-btn-filter,
.ati-btn-open {
  padding: 0px 10px 0px 0px;
}
.ati-btn-back::before,
.ati-btn-add::before,
.ati-btn-save::before,
.ati-btn-filter::before,
.ati-btn-open::before {
  color: #212121;
  background-color: #f2f2f2;
  display: inline-flex;
  margin-right: 10px;
  height: 40px;
  padding: 10px;
}
.ati-btn-blue {
  background-color: #2F2E79;
  color: #FFFFFF !important;
  border: none;
}
.ati-btn-blue:hover,
.ati-btn-blue::after,
.ati-btn-blue::before {
  color: #FFFFFF;
  background-color: #251E66;
}
.ati-info-card .ati-btn-blue:active,
.ati-info-card .ati-btn-blue:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.ati-btn-blue:disabled {
  background-color: #ADADC7;
  color: transparent;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.ati-btn-dark-blue {
  background-color: #251E66;
  color: #FFFFFF !important;
  border: none;
}
.ati-btn-dark-blue:hover,
.ati-btn-dark-blue::after,
.ati-btn-dark-blue::before {
  color: #FFFFFF;
  background-color: #2F2E79;
}
.ati-info-card .ati-btn-dark-blue:active,
.ati-info-card .ati-btn-dark-blue:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.ati-btn-red {
  background-color: #E11930;
  color: #FFFFFF !important;
  border: none;
}
.ati-btn-red:hover,
.ati-btn-red::after,
.ati-btn-red::before {
  color: #FFFFFF;
  background-color: #BB0720;
}
.ati-info-card .ati-btn-red:active,
.ati-info-card .ati-btn-red:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.ati-btn-red:disabled {
  background-color: #AF737A;
  color: transparent;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.ati-btn-dark-red {
  background-color: #BB0720;
  color: #FFFFFF !important;
  border: none;
}
.ati-btn-dark-red:hover,
.ati-btn-dark-red::after,
.ati-btn-dark-red::before {
  color: #FFFFFF;
  background-color: #E11930;
}
.ati-info-card .ati-btn-dark-red:active,
.ati-info-card .ati-btn-dark-red:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.ati-btn-plumb {
  background-color: #5C1B53;
  color: #FFFFFF !important;
  border: none;
}
.ati-btn-plumb:hover,
.ati-btn-plumb::after,
.ati-btn-plumb::before {
  color: #FFFFFF;
  background-color: #401239;
}
.ati-info-card .ati-btn-plumb:active,
.ati-info-card .ati-btn-plumb:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.ati-btn-dark-plumb {
  background-color: #401239;
  color: #FFFFFF !important;
  border: none;
}
.ati-btn-dark-plumb:hover,
.ati-btn-dark-plumb::after,
.ati-btn-dark-plumb::before {
  color: #FFFFFF;
  background-color: #5C1B53;
}
.ati-info-card .ati-btn-dark-plumb:active,
.ati-info-card .ati-btn-dark-plumb:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.ati-btn-purple {
  background-color: #980D84;
  color: #FFFFFF !important;
  border: none;
}
.ati-btn-purple:hover,
.ati-btn-purple::after,
.ati-btn-purple::before {
  color: #FFFFFF;
  background-color: #790068;
}
.ati-info-card .ati-btn-purple:active,
.ati-info-card .ati-btn-purple:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.ati-btn-purple:disabled {
  background-color: #5c3a58;
  color: transparent;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.ati-btn-purple:disabled::after,
.ati-btn-purple:disabled::before {
  color: #FFFFFF;
  background-color: #93718e;
}
.ati-btn-dark-purple {
  background-color: #790068;
  color: #FFFFFF !important;
  border: none;
}
.ati-btn-dark-purple:hover,
.ati-btn-dark-purple::after,
.ati-btn-dark-purple::before {
  color: #FFFFFF;
  background-color: #980D84;
}
.ati-info-card .ati-btn-dark-purple:active,
.ati-info-card .ati-btn-dark-purple:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.ati-ref-model {
  white-space: nowrap;
}
.ati-heading {
  font-size: 19px;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  color: #212121;
}
.toggle-expand.expanded .ati-btn-blue {
  background-color: #251E66;
  color: #FFFFFF !important;
  border: none;
}
.toggle-expand.expanded .ati-btn-blue:hover,
.toggle-expand.expanded .ati-btn-blue::after,
.toggle-expand.expanded .ati-btn-blue::before {
  color: #FFFFFF;
  background-color: #2F2E79;
}
.ati-info-card .toggle-expand.expanded .ati-btn-blue:active,
.ati-info-card .toggle-expand.expanded .ati-btn-blue:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.toggle-expand.expanded .ati-btn-dark-blue {
  background-color: #2F2E79;
  color: #FFFFFF !important;
  border: none;
}
.toggle-expand.expanded .ati-btn-dark-blue:hover,
.toggle-expand.expanded .ati-btn-dark-blue::after,
.toggle-expand.expanded .ati-btn-dark-blue::before {
  color: #FFFFFF;
  background-color: #251E66;
}
.ati-info-card .toggle-expand.expanded .ati-btn-dark-blue:active,
.ati-info-card .toggle-expand.expanded .ati-btn-dark-blue:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.toggle-expand.expanded .ati-btn-dark-blue:disabled {
  background-color: #ADADC7;
  color: transparent;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.toggle-expand.expanded .ati-btn-red {
  background-color: #BB0720;
  color: #FFFFFF !important;
  border: none;
}
.toggle-expand.expanded .ati-btn-red:hover,
.toggle-expand.expanded .ati-btn-red::after,
.toggle-expand.expanded .ati-btn-red::before {
  color: #FFFFFF;
  background-color: #E11930;
}
.ati-info-card .toggle-expand.expanded .ati-btn-red:active,
.ati-info-card .toggle-expand.expanded .ati-btn-red:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.toggle-expand.expanded .ati-btn-dark-red {
  background-color: #E11930;
  color: #FFFFFF !important;
  border: none;
}
.toggle-expand.expanded .ati-btn-dark-red:hover,
.toggle-expand.expanded .ati-btn-dark-red::after,
.toggle-expand.expanded .ati-btn-dark-red::before {
  color: #FFFFFF;
  background-color: #BB0720;
}
.ati-info-card .toggle-expand.expanded .ati-btn-dark-red:active,
.ati-info-card .toggle-expand.expanded .ati-btn-dark-red:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.toggle-expand.expanded .ati-btn-dark-red:disabled {
  background-color: #AF737A;
  color: transparent;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.toggle-expand.expanded .ati-btn-plumb {
  background-color: #401239;
  color: #FFFFFF !important;
  border: none;
}
.toggle-expand.expanded .ati-btn-plumb:hover,
.toggle-expand.expanded .ati-btn-plumb::after,
.toggle-expand.expanded .ati-btn-plumb::before {
  color: #FFFFFF;
  background-color: #5C1B53;
}
.ati-info-card .toggle-expand.expanded .ati-btn-plumb:active,
.ati-info-card .toggle-expand.expanded .ati-btn-plumb:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.toggle-expand.expanded .ati-btn-dark-plumb {
  background-color: #5C1B53;
  color: #FFFFFF !important;
  border: none;
}
.toggle-expand.expanded .ati-btn-dark-plumb:hover,
.toggle-expand.expanded .ati-btn-dark-plumb::after,
.toggle-expand.expanded .ati-btn-dark-plumb::before {
  color: #FFFFFF;
  background-color: #401239;
}
.ati-info-card .toggle-expand.expanded .ati-btn-dark-plumb:active,
.ati-info-card .toggle-expand.expanded .ati-btn-dark-plumb:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.toggle-expand.expanded .ati-btn-purple {
  background-color: #790068;
  color: #FFFFFF !important;
  border: none;
}
.toggle-expand.expanded .ati-btn-purple:hover,
.toggle-expand.expanded .ati-btn-purple::after,
.toggle-expand.expanded .ati-btn-purple::before {
  color: #FFFFFF;
  background-color: #980D84;
}
.ati-info-card .toggle-expand.expanded .ati-btn-purple:active,
.ati-info-card .toggle-expand.expanded .ati-btn-purple:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.toggle-expand.expanded .ati-btn-dark-purple {
  background-color: #980D84;
  color: #FFFFFF !important;
  border: none;
}
.toggle-expand.expanded .ati-btn-dark-purple:hover,
.toggle-expand.expanded .ati-btn-dark-purple::after,
.toggle-expand.expanded .ati-btn-dark-purple::before {
  color: #FFFFFF;
  background-color: #790068;
}
.ati-info-card .toggle-expand.expanded .ati-btn-dark-purple:active,
.ati-info-card .toggle-expand.expanded .ati-btn-dark-purple:active:hover {
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.18);
}
.toggle-expand.expanded .ati-btn-dark-purple:disabled {
  background-color: #5c3a58;
  color: transparent;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.toggle-expand.expanded .ati-btn-dark-purple:disabled::after,
.toggle-expand.expanded .ati-btn-dark-purple:disabled::before {
  color: #FFFFFF;
  background-color: #93718e;
}
.toggle-expand {
  cursor: pointer;
}
.ati-btn-download::after {
  font-family: "shaun-hall-icon-font";
  content: "\0041";
}
.ati-btn-upload::after {
  font-family: "shaun-hall-icon-font";
  content: "\0041";
  transform: rotate(180deg);
}
.ati-btn-proceed::after {
  font-family: "shaun-hall-icon-font";
  content: "\0042";
}
.ati-btn-back::before {
  font-family: "shaun-hall-icon-font";
  content: "\0042";
  transform: rotate(180deg);
}
.ati-btn-add::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
}
.ati-btn-save::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}
.ati-btn-filter::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f1de";
}
.ati-btn-open::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.ati-info-card {
  padding: 10px;
  border: 1px solid #EDEDED;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
}
.ati-info-card .ati-subtitle {
  color: black;
  align-self: center;
}
.ati-info-card .ati-btn-toggle {
  align-self: flex-end;
}
.ati-btn-toggle {
  line-height: 0px;
}
.ati-btn-toggle i {
  transition: transform ease 0.6s;
}
.expanded .ati-btn-toggle i {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ati-gradient-background {
  background: linear-gradient(282.77deg, #B0170E -113.62%, #2F2870 93.04%), #2F2870;
  mix-blend-mode: normal;
}
.signin-body-art {
  /*position: absolute;
	height: 100%;
	width: calc(100vh * 2.049);
	background: @ATI_gradient;
	clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 90% 23%, 80% 26%, 70% 44%, 60% 43%, 50% 51%, 40% 65%, 30% 63%, 20% 79%, 10% 84%);
	overflow: hidden;

	@media (min-width: 768px) {
		aspect-ratio: 2;
		bottom: 0;
		left: 0;
		width: 100%;
		height: auto;
		overflow-x: hidden !important;
	}*/
  position: absolute;
  aspect-ratio: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(282.77deg, #B0170E -113.62%, #2F2870 93.04%), #2F2870;
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 90% 23%, 80% 26%, 70% 44%, 60% 43%, 50% 51%, 40% 65%, 30% 63%, 20% 79%, 10% 84%);
  overflow: hidden;
}
.signin-body-art div {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.signin-body-art .plane-top {
  clip-path: polygon(-0.3% 100%, 10% 98.1%, 20% 91.4%, 30% 95%, 40% 88%, 50% 93%, 59.9% 68%, 70% 63%, 80% 73%, 90% 47%, 88.1% 47.6%, 90.8% 45%, 90.4% 51%, 90% 47.1%, 80.1% 74%, 70% 63.9%, 60.2% 68.8%, 50.2% 94%, 40% 89%, 30.1% 96%, 20.1% 92.4%, 10.1% 99.1%, 5.3% 99.8%);
  background-color: #E11930;
}
.signin-body-art .plane-bottom {
  clip-path: polygon(-0.3% 100%, 10% 93.1%, 20% 95.4%, 30% 82%, 39.8% 79%, 50.2% 61.7%, 60.3% 82.6%, 69.7% 68%, 80.3% 63.9%, 90% 66.1%, 88.9% 63.5%, 91.6% 66.5%, 88.8% 68.5%, 90% 66.1%, 80.3% 64.9%, 70% 68.9%, 60.2% 83.8%, 50.2% 63%, 40% 80%, 30.1% 83%, 20.1% 96.4%, 10.1% 94.1%, 1.3% 99.8%);
  background-color: #1f1ea0;
}
.signin-body-art-overflow {
  aspect-ratio: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(282.77deg, #B0170E -113.62%, #2F2870 93.04%), #2F2870;
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 90% 23%, 80% 26%, 70% 44%, 60% 43%, 50% 51%, 40% 65%, 30% 63%, 20% 79%, 10% 84%);
  overflow: hidden;
}
/* General
-------------------------------------------------- */
.w-narrow {
  width: 15em;
}
.d-inline-soft {
  display: inline-block;
}
.d-inline-soft.alert {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.bold {
  font-weight: bold;
}
/* Avatar
-------------------------------------------------- */
.avatar {
  height: 2em;
  vertical-align: middle;
}
.avatar-1em {
  height: 1.2em;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}
/* Validation
-------------------------------------------------- */
.validation-summary-valid {
  display: none;
}
.validation-summary-errors ul + h5 {
  margin-top: 0.5em;
}
.validation-summary-errors ul {
  margin: 0;
}
.input-validation-error {
  background-color: #fee;
  border-left: solid 5px red;
}
/* Page Header
-------------------------------------------------- */
.page-header {
  background-color: white;
}
.page-header .nav-tabs {
  border-bottom: none;
  color: inherit;
}
/* Bootstrap tweaks
-------------------------------------------------- */
.form-check-label {
  vertical-align: middle;
  padding-left: 0.5em;
}
body {
  overflow-x: hidden;
}
.break-out {
  width: 100vw;
  position: relative;
  left: calc(-1 * (100vw - 100%) / 2);
}
table.hover tr:hover td {
  background-color: #eef;
}
.btn-primary.disabled,
.btn-secondary.disabled,
.btn-primary:disabled,
.btn-secondary:disabled {
  background-color: #ddd;
  color: #777;
  border-color: transparent;
}
.alert.validation-summary-valid {
  display: none;
}
.alert.alert-white {
  background-color: white;
  border: solid 1px #d0d0d0;
}
.text-accent {
  color: #711fb3;
}
@media (min-width: 1400px) {
  .container {
    width: calc(100% - 6rem);
    max-width: calc(100% - 6rem);
  }
}
@media (min-width: 1200px) {
  .container {
    width: calc(100% - 6rem);
    max-width: calc(100% - 6rem);
  }
}
@media (min-width: 992px) {
  .container {
    width: calc(100% - 6rem);
    max-width: calc(100% - 6rem);
  }
}
@media (min-width: 768px) {
  .container {
    width: calc(100% - 6rem);
    max-width: calc(100% - 6rem);
  }
}
@media (min-width: 576px) {
  .container {
    width: calc(100% - 6rem);
    max-width: calc(100% - 6rem);
  }
}
/* Dropdown menu
-------------------------------------------------- */
.dropdown-menu {
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.dropdown-item {
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}
.dropdown-toggle::after {
  font-family: "shaun-hall-icon-font";
  content: "\0043";
  vertical-align: middle;
  margin-left: 5px;
  border: none;
  transition: transform ease 0.15s;
}
li.nav-item.dropdown.show .dropdown-toggle::after {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* Card styles
-------------------------------------------------- */
.card {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 190, 0.05);
}
.card-icon {
  font-size: 3em;
  margin-bottom: 1rem;
  color: #711fb3;
}
a .card {
  text-decoration: none;
}
.settings-card {
  width: 16rem;
}
.settings-card h5 {
  color: black;
}
.settings-card .card-text {
  color: #444;
}
a:hover .card {
  background-color: #2F2E79;
  color: white;
}
a:hover .card-icon,
a:hover .settings-card h5,
a:hover .settings-card .card-text {
  color: white;
}
/* Fields
-------------------------------------------------- */
.unit {
  display: inline-block;
  padding: 4px 0;
}
input ~ .unit {
  min-width: 8em;
  margin-left: 0.5em;
}
.unit:first-child {
  position: absolute;
  left: 26px;
  margin: 2px 0 0 0;
  pointer-events: none;
}
.unit + input {
  padding-left: 1.75em;
}
input[type=color] {
  background-color: white;
  padding: 0px 2px;
  width: 80px;
  height: 30px;
  cursor: pointer;
  width: 8em;
  margin: 4px 0;
}
/* Sign-in page styles
-------------------------------------------------- */
.siginin-page-panel {
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  right: 50vw;
  background-image: url(/images/siginin-back.jpg);
  background-position: center right;
  background-size: cover;
  background-color: white;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 768px) {
  .siginin-page-panel {
    display: none;
  }
}
.siginin-logo {
  max-width: 100%;
  height: 12vh;
}
/* Sticky footer styles
-------------------------------------------------- */
.btn-icon {
  margin-right: 0.5em;
}
/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
footer {
  /*position: absolute;*/
  position: relative;
  bottom: 0;
  width: 100%;
  color: #FFFFFF;
}
.footer-logo {
  width: 15em;
  max-width: 100%;
}
.disabled-row {
  color: #aeaeae;
}
.disabled-row * {
  color: #aeaeae;
}
.rotate180 {
  transform: rotate(180deg);
}
.navbar .navbar-brand img {
  height: 4rem;
}
.form-control:focus {
  border-color: #2F2E79;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(48, 46, 122, 0.6);
}
.text-danger {
  color: #E11930 !important;
}
.input-validation-error {
  border-left: solid 5px #E11930;
}
.navbar-nav .nav-link.active {
  color: #2F2E79 !important;
}
.lookup-table {
  display: none;
  position: absolute;
  background-color: #fff;
  width: calc(100% - 6.35vw);
  border: 1px solid #6c757d;
  z-index: 1000;
  width: calc(100% - 29px);
}
#company-lookup-table .dataTables_empty {
  cursor: pointer;
}
/* Checkbox
-------------------------------------------------- */
.ati-cbrd {
  display: block;
  position: relative;
  padding-left: 44px;
  margin-bottom: 19px;
  margin-right: 32px;
  padding-top: 3px;
  cursor: pointer;
}
.ati-cbrd input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.ati-cbrd_indicator {
  position: absolute;
  top: 0px;
  left: 0;
  height: 30px;
  width: 30px;
  background: #e6e6e6;
  border: 0px solid #000000;
  border-radius: 2px;
}
.ati-cbrd:hover input ~ .ati-cbrd_indicator,
.ati-cbrd input:focus ~ .ati-cbrd_indicator {
  background: #cccccc;
}
.ati-cbrd input:checked ~ .ati-cbrd_indicator {
  background: #2F2E79;
}
.ati-cbrd:hover input:not([disabled]):checked ~ .ati-cbrd_indicator,
.ati-cbrd input:checked:focus ~ .ati-cbrd_indicator {
  border-color: #2F2E79;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(48, 46, 122, 0.6);
}
.ati-cbrd input:disabled ~ .ati-cbrd_indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.ati-cbrd_indicator:after {
  box-sizing: unset;
  content: '';
  position: absolute;
  display: none;
}
.ati-cbrd input:checked ~ .ati-cbrd_indicator:after {
  display: block;
}
.ati-cbrd-checkbox .ati-cbrd_indicator:after {
  left: 11px;
  top: 5px;
  width: 5px;
  height: 13px;
  border: solid #FFFFFF;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.ati-cbrd-radio .ati-cbrd_indicator {
  border-radius: 50%;
}
.ati-cbrd-radio .ati-cbrd_indicator:after {
  left: 10px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFFFFF;
  transition: background 250ms;
}
.ati-cbrd-checkbox input:disabled ~ .ati-cbrd_indicator:after,
.ati-cbrd-radio input:disabled ~ .ati-cbrd_indicator:after {
  border-color: #7b7b7b;
}
.ati-cbrd-checkbox .ati-cbrd_indicator::before,
.ati-cbrd-radio .ati-cbrd_indicator::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  margin-left: -0.63rem;
  margin-top: -0.55rem;
  background: #2F2E79;
  border-radius: 3rem;
  opacity: 0.2;
  z-index: 99999;
  transform: scale(0);
}
@keyframes s-ripple {
  0% {
    transform: scale(0);
  }
  20% {
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes s-ripple-dup {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.ati-cbrd-checkbox input + .ati-cbrd_indicator::before,
.ati-cbrd-radio input + .ati-cbrd_indicator::before {
  animation: s-ripple 250ms ease-out;
}
.ati-cbrd-checkbox input:checked + .ati-cbrd_indicator::before,
.ati-cbrd-radio input:checked + .ati-cbrd_indicator::before {
  animation-name: s-ripple-dup;
}
.hidden-upload {
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
/*
 *  SCROLLBAR
 */
.scrollbar {
  overflow-y: scroll;
}
.scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #e0e0ff;
}
.scrollbar::-webkit-scrollbar {
  width: 13px;
  background-color: #2F2E79;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #2F2E79;
  border: 2px solid #2F2E79;
}
.scrollbar::-webkit-scrollbar-thumb:vertical:hover {
  cursor: pointer !important;
  background-color: #251E66;
}
.chart-legend {
  max-height: 36vh;
  overflow-y: overlay;
}
@media (min-width: 992px) {
  .chart-legend {
    position: absolute;
    overflow: auto;
    overflow-y: scroll;
    top: 0;
    left: 0;
    background-color: white;
    transform: translateX(-100%);
    padding: 16px;
    border-radius: 10px 0px 0px 10px;
    border: 1px solid #d9d9d9;
    margin: -1px -1px 0px 0px;
    max-height: -webkit-fill-available !important;
    z-index: 1;
  }
}
.chart-legend ul {
  display: block !important;
}
.chart-legend li span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.chart-legend li {
  cursor: pointer;
}
.axis-legend {
  overflow: hidden;
}
.axis-legend li {
  margin-right: 20px;
}
.axis-legend li p {
  white-space: nowrap;
}
.side-legend-button-container {
  position: absolute;
  right: 13px;
  bottom: 13px;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 40px, #ffffff 100%);
}
.side-legend-button {
  margin-left: 40px;
  border: none;
  padding: 5px 10px 5px 3px;
  background-color: #f1f1f1;
}
.side-legend-button:hover {
  background-color: #e0e0ff;
}
.yAxis {
  position: absolute;
  left: -85px;
  top: 50%;
}
.yAxis span {
  transform: rotate(270deg);
  display: block;
  height: 18px;
  width: 200px;
  white-space: nowrap;
}
.yAxis,
.xAxis {
  font-style: italic;
}
.chart-title {
  white-space: nowrap;
  cursor: pointer;
}
.chart-title-overflow {
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 70%, #ffffff 100%);
}
.tippy-box[data-theme~="tippy-description"] .tippy-content {
  padding: 10px 20px 10px 20px;
}
.progress-bar {
  background-color: #2F2E79;
}
.ati-bg-blue {
  background-color: #2F2E79;
}
.ati-bg-red {
  background-color: #E11930;
}
.sidenav {
  height: 100%;
  position: fixed;
  display: flex;
  z-index: 1030;
  top: 0;
  right: -400px;
  background-color: white;
  overflow-x: hidden;
  padding: 97px 0px 20px 20px;
  transition: 0.8s;
  width: 350px;
  border-left: 1px solid #e3e3e3;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.sidenav.active {
  right: 0px;
}
.sidenav .modal-header {
  margin-left: -20px;
  border-radius: 0;
}
.sidenav .modal-header .msg-panel-close {
  position: relative;
  top: -17px;
  right: -17px;
  border-radius: 0px 0px 0px 20px;
}
.sidenav #help-pages-list {
  margin-top: 40px;
  margin-bottom: auto;
  list-style-type: disclosure-closed;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 576px) {
  .position-sm-static {
    position: static !important;
  }
  .position-sm-relative {
    position: relative !important;
  }
  .position-sm-absolute {
    position: absolute !important;
  }
  .position-sm-fixed {
    position: fixed !important;
  }
  .position-sm-sticky {
    position: sticky !important;
  }
  .z-index-sm-auto {
    z-index: auto !important;
  }
  .z-index-sm-3000 {
    z-index: 3000 !important;
  }
}
@media (min-width: 768px) {
  .position-md-static {
    position: static !important;
  }
  .position-md-relative {
    position: relative !important;
  }
  .position-md-absolute {
    position: absolute !important;
  }
  .position-md-fixed {
    position: fixed !important;
  }
  .position-md-sticky {
    position: sticky !important;
  }
  .z-index-md-auto {
    z-index: auto !important;
  }
  .z-index-md-3000 {
    z-index: 3000 !important;
  }
}
@media (min-width: 992px) {
  .position-lg-static {
    position: static !important;
  }
  .position-lg-relative {
    position: relative !important;
  }
  .position-lg-absolute {
    position: absolute !important;
  }
  .position-lg-fixed {
    position: fixed !important;
  }
  .position-lg-sticky {
    position: sticky !important;
  }
  .z-index-lg-auto {
    z-index: auto !important;
  }
  .z-index-lg-3000 {
    z-index: 3000 !important;
  }
}
@media (min-width: 1200px) {
  .position-xl-static {
    position: static !important;
  }
  .position-xl-relative {
    position: relative !important;
  }
  .position-xl-absolute {
    position: absolute !important;
  }
  .position-xl-fixed {
    position: fixed !important;
  }
  .position-xl-sticky {
    position: sticky !important;
  }
  .z-index-xl-auto {
    z-index: auto !important;
  }
  .z-index-xl-3000 {
    z-index: 3000 !important;
  }
}
.modal-header {
  background: linear-gradient(282.77deg, #B0170E -113.62%, #2F2870 93.04%), #2F2870;
  color: white;
}
.btn-ati-toggle {
  background-color: #2F2E79;
  color: white;
}
.btn-ati-toggle:hover {
  color: white;
  background-color: #251E66;
}
.btn-ati-toggle-destructive {
  background-color: #E11930;
  color: white;
}
.btn-ati-toggle-destructive:hover {
  color: white;
  background-color: #BB0720;
}
.ati-text-red {
  color: #E11930;
}
.selectize-input {
  margin: 0px !important;
  color: #495057 !important;
  border: 1px solid #ced4da !important;
  border-radius: 0.25rem !important;
}
.selectize-input.focus {
  outline: 0;
  border-color: #2F2E79;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(48, 46, 122, 0.6);
}
.selectize-input.items .item {
  padding-top: 8px !important;
  padding-bottom: 6px !important;
  font-size: 15px;
}
.selectize-input.items a.remove {
  padding-top: 8px !important;
}
div.all-available div.selectize-input:not(.focus):not(.has-items)::before {
  content: "All available (default)";
  position: absolute;
  z-index: 10;
  left: 14px;
  top: 27%;
  font-style: italic;
  pointer-events: none;
  font-size: 16px;
  color: #959595;
}
.selectize-control.multi .selectize-input > div.active {
  background: #f2f2f2 !important;
  border: none !important;
}
select.decorated option:hover {
  box-shadow: 0 0 10px 100px #1882A8 inset;
}
div.selectize-dropdown {
  border-radius: 0px;
  font-style: normal;
  border: 1px solid #7E7A76;
  z-index: 1100;
}
div.selectize-dropdown::after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
}
div.selectize-dropdown .selectize-dropdown-content {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(48, 46, 122, 0.6);
  font-weight: 400;
  max-height: 175px;
}
div.selectize-dropdown .selectize-dropdown-content .option {
  cursor: default;
}
div.selectize-dropdown .selectize-dropdown-content .option .highlight {
  background: #e0e0ff;
}
div.selectize-dropdown .selectize-dropdown-content .option.active {
  background-color: dodgerblue;
  color: white;
}
div#preview-avatar-upload-container div.avatar-image {
  float: none;
  display: inline-block;
}
div#preview-avatar-upload-container div.avatar-image div {
  width: 100px;
  height: 100px;
  background-size: cover;
  border: 1px solid #d3d3d3;
  background-position: center;
}
div#preview-avatar-upload-container div.avatar-uploaded {
  cursor: pointer;
  display: inline-block;
  vertical-align: bottom;
  padding-bottom: 3px;
}
div#preview-avatar-upload-container div.avatar-uploaded i {
  font-size: 20px;
}
div#preview-avatar-upload-container div.avatar-preview-container {
  vertical-align: top;
  text-align: center;
}
div#preview-avatar-upload-container div.avatar-preview-container div.avatar-image {
  display: inline-block;
  width: 63px;
  height: 63px;
  float: none;
  background-size: cover;
  background-position: center;
}
.sub-nav-item {
  margin-left: -7px !important;
}
.sub-nav-item .nav-link {
  background-color: #e9e9e9 !important;
  border-radius: 19px 19px 0px 0px !important;
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0% 100%);
}
.sub-nav-item .nav-link:before {
  display: none !important;
}
.sub-nav-tabs {
  margin: 0 !important;
  padding: 0 !important;
  max-height: 40px !important;
}
.sub-nav-tabs ul.nav-tabs {
  margin: 0 !important;
  list-style-type: none !important;
  line-height: 40px !important;
  max-height: 47px !important;
  overflow: hidden !important;
  display: inline-block !important;
  display: -webkit-flex !important;
  display: flex !important;
}
.sub-nav-tabs ul.nav-tabs > li {
  margin: 5px -14px 0 !important;
  -moz-border-radius-topleft: 28px 145px !important;
  -webkit-border-top-left-radius: 28px 145px !important;
  border-top-left-radius: 28px 145px !important;
  -moz-border-radius-topright: 28px 145px !important;
  -webkit-border-top-right-radius: 28px 145px !important;
  border-top-right-radius: 28px 145px !important;
  height: 170px !important;
  background: #f7f7f7 !important;
  position: relative !important;
  max-width: 200px !important;
  min-width: 20px !important;
  border: 1px solid #dfdfdf !important;
}
.sub-nav-tabs ul.nav-tabs > li:first-child {
  margin-left: 0 !important;
}
.sub-nav-tabs ul.nav-tabs > li:last-of-type {
  margin-right: 0 !important;
}
.sub-nav-tabs ul.nav-tabs > li > a {
  display: block !important;
  max-width: 100% !important;
  text-decoration: none !important;
  color: #222 !important;
  padding: 3px 22px !important;
}
.sub-nav-tabs ul.nav-tabs > li > a span {
  overflow: hidden !important;
  white-space: nowrap !important;
  display: block !important;
}
.sub-nav-tabs ul.nav-tabs > li > a:focus,
.sub-nav-tabs ul.nav-tabs > li > a:hover {
  background-color: transparent !important;
  border-color: transparent !important;
}
.sub-nav-tabs ul.nav-tabs > li > a .glyphicon-remove {
  color: #777 !important;
  display: inline-block !important;
  padding: 3px !important;
  font-size: 10px !important;
  position: absolute !important;
  z-index: 10 !important;
  top: 7px !important;
  right: -10px !important;
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
}
.sub-nav-tabs ul.nav-tabs > li > a .glyphicon-remove:hover {
  background: #d39ea3 !important;
  color: white !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) !important;
}
.sub-nav-tabs ul.nav-tabs > li.active {
  z-index: 2 !important;
  background-size: 100% !important;
  background-color: white !important;
}
.sub-nav-tabs ul.nav-tabs > li.active > a {
  background-color: transparent !important;
  border-color: transparent !important;
  border-bottom-color: transparent !important;
}
.sub-nav-tabs ul.nav-tabs > li.active > a:focus,
.sub-nav-tabs ul.nav-tabs > li.active > a:hover {
  background-color: transparent !important;
  border-color: transparent !important;
  border-bottom-color: transparent !important;
}
.sub-nav-tabs ul.nav-tabs .btn {
  float: left !important;
  height: 20px !important;
  width: 35px !important;
  min-width: 35px !important;
  max-width: 35px !important;
  margin: 10px 0 0 0 !important;
  border-color: #71a0c9 !important;
  outline: none !important;
  -moz-transform: skew(30deg) !important;
  -ms-transform: skew(30deg) !important;
  -webkit-transform: skew(30deg) !important;
  transform: skew(30deg) !important;
}
.sub-nav-tabs ul.nav-tabs .btn.btn-default {
  background: #c3d5e6 !important;
}
.sub-nav-tabs ul.nav-tabs .btn.btn-default:hover {
  background: #d2deeb !important;
}
.sub-nav-tabs ul.nav-tabs .btn.btn-default:active {
  background: #9cb5cc !important;
}
.sub-nav-tabs .tab-pane {
  padding: 60px 40px !important;
  text-align: center !important;
}
.sub-nav-tabs .tab-pane.active {
  border-top: 1px solid #ddd !important;
}
/*#filters-modal.modal {
	.modal-content {
		margin: 20px;
	}
}*/
.modal-backdrop {
  width: 100% !important;
  height: 100% !important;
}
.rounded-tex-wrap-background {
  word-break: break-word;
}
.rounded-tex-wrap-background span {
  padding: 4px 8px 4px 8px;
  margin-left: -8px;
  -moz-border-bottom-right-radius: 50px;
  -webkit-border-bottom-right-radius: 50px;
  border-bottom-right-radius: 50px;
  -moz-border-top-right-radius: 50px;
  -webkit-border-top-right-radius: 50px;
  border-top-right-radius: 50px;
  -moz-border-bottom-left-radius: 50px;
  -webkit-border-bottom-left-radius: 50px;
  border-bottom-left-radius: 50px;
  -moz-border-top-left-radius: 50px;
  -webkit-border-top-left-radius: 50px;
  border-top-left-radius: 50px;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
}
.filter-dropdown {
  min-width: 24rem;
}
#filter-area {
  max-height: 42rem !important;
}
.ati-ftc-results {
  margin-bottom: 5rem !important;
}
#helpModal table {
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
#helpModal td,
#helpModal th {
  border-right: 1px solid #dcdcdc;
  padding: 8px 12px;
}
#helpModal td:last-child,
#helpModal th:last-child {
  border-right: 0;
}
#helpModal td {
  border-top: 1px solid #dcdcdc;
}
#live-demos .mock-monitor {
  border-radius: 30px;
  border: 40px solid black;
}
:root {
  --header-height: 60px;
}
.monitor-stand {
  text-align: center;
  margin-top: -52px;
}
.monitor-stand img {
  width: 40vw;
}
@media (max-width: 767.98px) {
  .slick-arrow {
    display: none !important;
  }
}
#digital-form-designer {
  margin-top: -40px;
  scroll-margin-top: calc(var(--header-height) + 40px);
}
#ati-market-model-tool {
  scroll-margin-top: var(--header-height);
}
@media (max-width: 1479px) {
  .monitor-stand {
    display: none;
  }
  #digital-form-designer {
    margin-top: -80px;
    scroll-margin-top: calc(var(--header-height) + 80px);
  }
  #ati-market-model-tool {
    scroll-margin-top: calc(var(--header-height));
  }
}
.case-study-heading {
  margin-top: -20px;
  margin-bottom: -20px;
}
.summary-section {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  text-align: center;
  font-size: 20px;
}
.summary-section > div {
  margin: 0 1rem;
}
@media (max-width: 945px) {
  .summary-section {
    flex-direction: column;
    margin-left: -25px;
  }
  .summary-section > div {
    margin: 0.5rem auto;
    width: 100%;
  }
}
@media (max-width: 1156px) {
  .solution-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
solution-col {
  /* default for *all* widths: no offset */
  margin-top: 0;
}
/* kick in as soon as we reach 768px: −60px */
@media (min-width: 768px) {
  .solution-col {
    margin-top: -50px;
  }
}
/* ≥1316px → −130px */
@media (min-width: 1316px) {
  .solution-col {
    margin-top: -120px;
  }
}
/* ≥1440px → −200px */
@media (min-width: 1440px) {
  .solution-col {
    margin-top: -190px;
  }
}
/* ≥1518px → −260px */
@media (min-width: 1518px) {
  .solution-col {
    margin-top: -250px;
  }
}
/* ≥1620px → −330px */
@media (min-width: 1620px) {
  .solution-col {
    margin-top: -320px;
  }
}
/* ≥1800px → −400px */
@media (min-width: 1800px) {
  .solution-col {
    margin-top: -390px;
  }
}
.case-study-section-heading {
  min-height: 55px;
}
section#ati-toolkit {
  scroll-margin-top: 4rem;
}
section#hcs-safetynet {
  scroll-margin-top: 6rem;
}
section#cts-capss {
  scroll-margin-top: 5rem;
}
.icon-container {
  height: 67px;
  align-content: center;
}
