@font-face {
  font-family: "circular";
  src: url("/CircularStd-Medium.woff2") format("woff2"),
    url("/CircularStd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "circular";
  src: url("/CircularStd-Bold.woff2") format("woff2"),
    url("/CircularStd-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "circular";
  src: url("/CircularStd-Black.woff2") format("woff2"),
    url("/CircularStd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "circular";
  src: url("/CircularStd-Book.woff2") format("woff2"),
    url("/CircularStd-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --circular: "circular", sans-serif;

  --c1: #005197;
  --c2: #0ca4dd;
  --c2-light: #66e0ff;
  --c3: #00aeef;
  --c3-light: #3cd1f3;

  --success: #52c788;
  --success-light: #e8fdf1;
  --warning: #f1b045;
  --warning-ligh: #fdf4e6;
  --error: #bc204b;
  --error-light: #ffcfcb;

  --black: #0e141b;
  --dark-gray: #181e25;
  --dark-background: #1e242b;
  --charcoal: #22282f;
  --text-disabled: #60656a;
  --gray: #2c3239;
  --light-gray: #c2c8cf;
  --eggshell: #f0f0f0;
  --white: #ffffff;

  --border: #898c8f;
  --dark-border: #343b43;
  --border-radius: 4px;

  --spacing-xxs: 6px;
  --spacing-xs: 12px;
  --spacing-s: 16px;
  --spacing-m: 20px;
  --spacing-l: 36px;
  --spacing-xl: 40px;
  --spacing-xxl: 48px;

  --t1: 0.15s;
  --t2: 0.25s;
  --t3: 0.5s;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  color: var(--charcoal);
  font-size: 62.5%;
  height: 100%;
  font-variant-ligatures: none !important;
}

body {
  height: 100%;
  width: 100%;
  position: relative;
  font-size: 1.5rem;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--circular);
  line-height: 1.73;
  padding-bottom: 0;
  height: 100%;
  width: 100%;
  position: relative;
}

.wrapAll {
  flex: 1 0 auto;
  width: 100%;
}

.wrapper {
  max-width: 100%;
  padding: 0 var(--spacing-xl);
  margin: 0 auto;
}

.wrapper-grey {
  background-color: #363c43;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--white);
  font-weight: bold;
  font-family: var(--circular);
}

.version{
    color : var(--c3);
}

.mainContent {
  display: flex;
  gap: var(--spacing-xxl);
  align-items: stretch;
  padding: var(--spacing-xl) 0;
  min-height: 1200px;
}

.mainContent-content {
  width: 100%;
  max-width: 35%;
  flex-shrink: 0;
  position: relative;
  padding-right: calc(var(--spacing-l) + 1px);
}

.mainContent-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--dark-border);
}

.mainContent-aside {
  width: 100%;
}

.form {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(max(min(275px, 100%), (100% - 24px) / 2), 1fr)
  );
  gap: var(--spacing-m);
}

.form_small {
                
        
    grid-template-columns: repeat( auto-fill, minmax(max(min(196px, 100%), (100% - 24px) / 8), 0fr) );
  
}

.form-cell_full {
  grid-column: 1/-1;
}

.form-cell-disabled label {
  opacity: 0.4;
  margin: 0;
}

.sc-saas-error {
    font-size: 1.4em;
    text-align: justify;
    color: #f0f0f08a;
}

label {
  margin-bottom: var(--spacing-xxs);
  font-weight: normal;
}

input[type="text"],
input[type="number"],
div.dateRange,
textarea {
  --_border-width: 1px;
  width: 100%;
  background: none;
  color: var(--white);
  padding: calc(0.8em - var(--_border-width))
    calc(1.06em - var(--_border-width));
  border: solid var(--_border-width) var(--border);
  border-radius: var(--border-radius);
  transition: border-color var(--t1);
  line-height: 1.5em;
}

input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: #00aeef;
}

input[type="text"][readonly],
input[type="number"][readonly],
textarea[readonly],
.form-cell-disabled input[type="text"],
.form-cell-disabled input[type="number"],
.form-cell-disabled textarea {
  padding: 0;
  border: none;
  resize: none;
}

select {
  --_border-width: 1px;
  width: 100%;
  background: none;
  color: var(--white);
  padding: calc(0.8em - var(--_border-width))
    calc(1.06em - var(--_border-width));
  padding-right: calc(30px + 1.06em - var(--_border-width));
  border: solid var(--_border-width) var(--border);
  border-radius: var(--border-radius);
  transition: border-color var(--t1);
  width: 100%;
  line-height: 1.5em;
  appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDE0IDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMy43ODEyIDEuMjVDMTMuOTM3NSAxLjM3NSAxMy45Mzc1IDEuNjI1IDEzLjc4MTIgMS43ODEyNUw3LjI1IDguMzEyNUM3LjA5Mzc1IDguNDY4NzUgNi44NzUgOC40Njg3NSA2LjcxODc1IDguMzEyNUwwLjE4NzUgMS43ODEyNUMwLjAzMTI1IDEuNjI1IDAuMDMxMjUgMS4zNzUgMC4xODc1IDEuMjVMMC43ODEyNSAwLjYyNUMwLjkzNzUgMC40Njg3NSAxLjE4NzUgMC40Njg3NSAxLjMxMjUgMC42MjVMNyA2LjI4MTI1TDEyLjY1NjIgMC42MjVDMTIuNzgxMiAwLjQ2ODc1IDEzLjAzMTIgMC40Njg3NSAxMy4xODc1IDAuNjI1TDEzLjc4MTIgMS4yNVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: right 1em center;
}

select option {
    background: #0e141b;
    color: #fff;
}

.formActions {
  grid-column: 1/-1;
  width: 100%;
  display: flex;
  gap: var(--spacing-s);
  align-items: baseline;
}

.formActions h2 {
  margin: 0;
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--light-gray);
}

.formActions-right {
  margin-left: auto;
}

input.datepicker {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNCAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuNjI1IDlDNC44MTI1IDkgNSA4Ljg0Mzc1IDUgOC42MjVWNy4zNzVDNSA3LjE4NzUgNC44MTI1IDcgNC42MjUgN0gzLjM3NUMzLjE1NjI1IDcgMyA3LjE4NzUgMyA3LjM3NVY4LjYyNUMzIDguODQzNzUgMy4xNTYyNSA5IDMuMzc1IDlINC42MjVaTTggOC42MjVWNy4zNzVDOCA3LjE4NzUgNy44MTI1IDcgNy42MjUgN0g2LjM3NUM2LjE1NjI1IDcgNiA3LjE4NzUgNiA3LjM3NVY4LjYyNUM2IDguODQzNzUgNi4xNTYyNSA5IDYuMzc1IDlINy42MjVDNy44MTI1IDkgOCA4Ljg0Mzc1IDggOC42MjVaTTExIDguNjI1VjcuMzc1QzExIDcuMTg3NSAxMC44MTI1IDcgMTAuNjI1IDdIOS4zNzVDOS4xNTYyNSA3IDkgNy4xODc1IDkgNy4zNzVWOC42MjVDOSA4Ljg0Mzc1IDkuMTU2MjUgOSA5LjM3NSA5SDEwLjYyNUMxMC44MTI1IDkgMTEgOC44NDM3NSAxMSA4LjYyNVpNOCAxMS42MjVWMTAuMzc1QzggMTAuMTg3NSA3LjgxMjUgMTAgNy42MjUgMTBINi4zNzVDNi4xNTYyNSAxMCA2IDEwLjE4NzUgNiAxMC4zNzVWMTEuNjI1QzYgMTEuODQzOCA2LjE1NjI1IDEyIDYuMzc1IDEySDcuNjI1QzcuODEyNSAxMiA4IDExLjg0MzggOCAxMS42MjVaTTUgMTEuNjI1VjEwLjM3NUM1IDEwLjE4NzUgNC44MTI1IDEwIDQuNjI1IDEwSDMuMzc1QzMuMTU2MjUgMTAgMyAxMC4xODc1IDMgMTAuMzc1VjExLjYyNUMzIDExLjg0MzggMy4xNTYyNSAxMiAzLjM3NSAxMkg0LjYyNUM0LjgxMjUgMTIgNSAxMS44NDM4IDUgMTEuNjI1Wk0xMSAxMS42MjVWMTAuMzc1QzExIDEwLjE4NzUgMTAuODEyNSAxMCAxMC42MjUgMTBIOS4zNzVDOS4xNTYyNSAxMCA5IDEwLjE4NzUgOSAxMC4zNzVWMTEuNjI1QzkgMTEuODQzOCA5LjE1NjI1IDEyIDkuMzc1IDEySDEwLjYyNUMxMC44MTI1IDEyIDExIDExLjg0MzggMTEgMTEuNjI1Wk0xNCAzLjVDMTQgMi42ODc1IDEzLjMxMjUgMiAxMi41IDJIMTFWMC4zNzVDMTEgMC4xODc1IDEwLjgxMjUgMCAxMC42MjUgMEg5LjM3NUM5LjE1NjI1IDAgOSAwLjE4NzUgOSAwLjM3NVYySDVWMC4zNzVDNSAwLjE4NzUgNC44MTI1IDAgNC42MjUgMEgzLjM3NUMzLjE1NjI1IDAgMyAwLjE4NzUgMyAwLjM3NVYySDEuNUMwLjY1NjI1IDIgMCAyLjY4NzUgMCAzLjVWMTQuNUMwIDE1LjM0MzggMC42NTYyNSAxNiAxLjUgMTZIMTIuNUMxMy4zMTI1IDE2IDE0IDE1LjM0MzggMTQgMTQuNVYzLjVaTTEyLjUgMTQuMzEyNUMxMi41IDE0LjQzNzUgMTIuNDA2MiAxNC41IDEyLjMxMjUgMTQuNUgxLjY4NzVDMS41NjI1IDE0LjUgMS41IDE0LjQzNzUgMS41IDE0LjMxMjVWNUgxMi41VjE0LjMxMjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: top 50% right var(--spacing-s);
}

.btnContainer {
  display: flex;
          
  gap: var(--spacing-xs);
  align-items: center;
}

.btn {
    background: var(--c3);
    color: var(--charcoal);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bold;
    border: none;
    padding: 1em;
    transition: background-color var(--t1);
    text-decoration: none;
    display: inline-flex;
    gap: initial;
    align-items: baseline;
    background: linear-gradient(#00aeef , #00aeef 50%, #66e0ff 50%, #66e0ff);
    background-size: 100% 200%;
    transition: background 0.6s;
}

.gen_quickquote-btn:hover, .gen_quickquote-btn:active{
  color: #66e0ff !important;
  background: linear-gradient(#181e25, #181e25 50%, #00aeef 50%, #00aeef) !important;
  background-size: 100% 200% !important;
  background-position: 100% 100% !important;
  transition: background 0.4s ease-in-out, background 0.4s ease-in-out !important;
}


.btn:hover,
.btn:focus {
  color: var(--charcoal);
  background: linear-gradient(#00aeef, #00aeef 50%, #66e0ff 50%, #66e0ff);
  background-size: 100% 200%;
  background-position: 100% 100%;
  transition: background 0.4s ease-in-out, background 0.4s ease-in-out;
}

.btn:active {
  background: var(--c3);
}

.btn:visited {
  color: var(--charcoal);
}

.btn_alt {
  --_border-width: 1px;
  background: none;
  color: var(--light-gray);
  border: solid var(--_border-width) #898c8f52;
  padding: calc(1em - var(--_border-width));
  transition: border-color var(--t1);
  background: linear-gradient(#22282f , #22282f 50%, #181e25 50%, #181e25 );
  background-size: 100% 200%;
  transition: background 0.6s;
}

.btn_alt:hover,
.btn_alt:focus {
  color: #66e0ff;
  border-color: #66e0ff;
  background: linear-gradient(#22282f , #22282f 50%, #181e25 50%, #181e25 );
  background-size: 100% 200%;
  transition: background 0.6s;
  background-position: 100% 100%;
}

.btn_alt:active {
  border-color: var(--c3);
}

.btn_alt:visited {
  color: var(--eggshell);
}

#btn_addFile {
  border-radius: 50px;
  padding: 1.6em 2em;
  font-size: 1.2em;
  color: var(--c3);
  background: none;
  border-color: 1px solid var(--c3);
}

#btn_addFile:hover,
#btn_addFile:focus {
  color: black;
  background-color: var(--c3-light);
  border-color: var(--c3-light);
}

a {
  color: var(--c3);
  text-decoration: underline;
  display: inline-flex;
  gap: var(--spacing-xs);
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--c3);
}

a:focus {
  outline: 1px solid var(--white);
}

.alert {
  --_border-width: 2px;
  grid-column: 1/-1;
  margin: 0;
  border: solid var(--_border-width) var(--c3);
  padding: calc(var(--spacing-m) - var(--_border-width));
  background: var(--eggshell);
  color: var(--black);
  border-radius: var(--border-radius);
}

.alert h1,
.alert .h1,
.alert h2,
.alert .h2,
.alert h3,
.alert .h3,
.alert h4,
.alert .h4,
.alert h5,
.alert .h5,
.alert h6,
.alert .h6 {
  color: var(--black);
}

.alert .fa {
  color: var(--c3);
}

.alert-error {
  border-color: var(--error);
  background-color: var(--eggshell);
  color: var(--error);
}

.alert-error h1,
.alert-error .h1,
.alert-error h2,
.alert-error .h2,
.alert-error h3,
.alert-error .h3,
.alert-error h4,
.alert-error .h4,
.alert-error h5,
.alert-error .h5,
.alert-error h6,
.alert-error .h6 {
  color: var(--error);
}

.alert-error a {
  color: var(--error) !important;
}

.alert-error .fa {
  color: var(--error);
}

.alert-error a {
  color: var(--black);
}

.lookup {
  display: flex;
}

.lookup-input {
  border-right: none !important;
  border-radius: var(--border-radius) 0 0 var(--border-radius) !important;
}

input.lookup-input[readonly],
.form-cell-disabled input.lookup-input {
  padding: calc(0.8em - var(--_border-width))
    calc(1.06em - var(--_border-width));
  border: solid var(--_border-width) var(--border);
  opacity: 0.65;
}

.lookup-btnContainer {
  display: flex;
}

.lookup .btnClear {
  background: none;
  color: var(--white);
  border: solid 1px var(--border);
  border-left: none;
  border-right: none;
  border-radius: 0;
  display: none;
}

.lookup .btnClear:hover,
.lookup .btnClear:focus,
.lookup_simple .lookup-searchBtn:hover {
  color: var(--border);
}

.lookup .btnOpen {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.lookup_simple {
  position: relative;
}

.lookup_simple .lookup-input {
  border: solid 1px var(--border) !important;
  border-radius: var(--border-radius) !important;
}

.lookup_simple .lookup-searchBtn {
  background: none;
  color: var(--white);
  border-left: none;
  border-right: none;
  border-radius: 0;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
}


.ui-autocomplete {
  max-height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
  border: none;
  background: transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ui-autocomplete::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.ui-autocomplete .ui-menu-item {
  padding: 10px;
  color: white;
  background-color: var(--gray);;
  font-size: 1.2rem;
}

.ui-autocomplete .ui-menu-item:hover,
.ui-autocomplete .ui-menu-item .ui-state-focus,
.ui-autocomplete .ui-menu-item .ui-state-active {
  background-color: #1A2229 !important;
  border: none;
  color: #00aeef;
  cursor: pointer;
}

.space-around {
  display: flex;
  justify-content: space-between;
}

.autocomplete-svg {
  position: absolute; 
  right: 10px; 
  top: 35%;
}

.autocomplete-column {
  width: 100%;
  padding-left: 10px;
}

#divSystemID > #systemDescription {
  padding: 20px;
  margin-top: 10px;
  background-color: #181E25;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#systemDescription > #systemNameTitle {
  margin-bottom: 20px;
  color: var(--c3);
  font-size: large;
}

#divSystemID > #systemDescription::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}


.ui-datepicker {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  padding: var(--spacing-xs);
  /*! transform: translateY(20px); */
  transform-style: preserve-3d;
  width: auto;
}

/* .ui-datepicker::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--black);
  top: 0;
  left: 15px;
  transform: translateY(-50%) rotate(45deg) translateZ(-10px);
  z-index: -1;
} */

.ui-datepicker .ui-datepicker-header {
  border: none;
  margin: 0;
  color: var(--white);
}

.ui-datepicker-prev,
.ui-datepicker-next {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDcgMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02LjMxNjQxIDEyLjIxMDlMNi44NjMyOCAxMS42OTE0QzYuOTcyNjYgMTEuNTU0NyA2Ljk3MjY2IDExLjMzNTkgNi44NjMyOCAxMS4yMjY2TDEuOTE0MDYgNi4yNUw2Ljg2MzI4IDEuMzAwNzhDNi45NzI2NiAxLjE5MTQxIDYuOTcyNjYgMC45NzI2NTYgNi44NjMyOCAwLjgzNTkzOEw2LjMxNjQxIDAuMzE2NDA2QzYuMTc5NjkgMC4xNzk2ODggNS45ODgyOCAwLjE3OTY4OCA1Ljg1MTU2IDAuMzE2NDA2TDAuMTA5Mzc1IDYuMDMxMjVDMCA2LjE2Nzk3IDAgNi4zNTkzOCAwLjEwOTM3NSA2LjQ5NjA5TDUuODUxNTYgMTIuMjEwOUM1Ljk4ODI4IDEyLjM0NzcgNi4xNzk2OSAxMi4zNDc3IDYuMzE2NDEgMTIuMjEwOVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: 50%;
  padding: 0;
  border: none;
  opacity: 1;
  transition: opacity var(--t1);
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
  background: none;
  border: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDcgMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02LjMxNjQxIDEyLjIxMDlMNi44NjMyOCAxMS42OTE0QzYuOTcyNjYgMTEuNTU0NyA2Ljk3MjY2IDExLjMzNTkgNi44NjMyOCAxMS4yMjY2TDEuOTE0MDYgNi4yNUw2Ljg2MzI4IDEuMzAwNzhDNi45NzI2NiAxLjE5MTQxIDYuOTcyNjYgMC45NzI2NTYgNi44NjMyOCAwLjgzNTkzOEw2LjMxNjQxIDAuMzE2NDA2QzYuMTc5NjkgMC4xNzk2ODggNS45ODgyOCAwLjE3OTY4OCA1Ljg1MTU2IDAuMzE2NDA2TDAuMTA5Mzc1IDYuMDMxMjVDMCA2LjE2Nzk3IDAgNi4zNTkzOCAwLjEwOTM3NSA2LjQ5NjA5TDUuODUxNTYgMTIuMjEwOUM1Ljk4ODI4IDEyLjM0NzcgNi4xNzk2OSAxMi4zNDc3IDYuMzE2NDEgMTIuMjEwOVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: 50%;
  opacity: 0.5;
}

.ui-datepicker-next {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDcgMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wLjY1NjI1IDAuMzE2NDA2TDAuMTA5Mzc1IDAuODM1OTM4QzAgMC45NzI2NTYgMCAxLjE5MTQxIDAuMTA5Mzc1IDEuMzAwNzhMNS4wNTg1OSA2LjI1TDAuMTA5Mzc1IDExLjIyNjZDMCAxMS4zMzU5IDAgMTEuNTU0NyAwLjEwOTM3NSAxMS42OTE0TDAuNjU2MjUgMTIuMjEwOUMwLjc5Mjk2OSAxMi4zNDc3IDAuOTg0Mzc1IDEyLjM0NzcgMS4xMjEwOSAxMi4yMTA5TDYuODYzMjggNi40OTYwOUM2Ljk3MjY2IDYuMzU5MzggNi45NzI2NiA2LjE2Nzk3IDYuODYzMjggNi4wMzEyNUwxLjEyMTA5IDAuMzE2NDA2QzAuOTg0Mzc1IDAuMTc5Njg4IDAuNzkyOTY5IDAuMTc5Njg4IDAuNjU2MjUgMC4zMTY0MDZaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
}

.ui-datepicker-next:hover {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDcgMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wLjY1NjI1IDAuMzE2NDA2TDAuMTA5Mzc1IDAuODM1OTM4QzAgMC45NzI2NTYgMCAxLjE5MTQxIDAuMTA5Mzc1IDEuMzAwNzhMNS4wNTg1OSA2LjI1TDAuMTA5Mzc1IDExLjIyNjZDMCAxMS4zMzU5IDAgMTEuNTU0NyAwLjEwOTM3NSAxMS42OTE0TDAuNjU2MjUgMTIuMjEwOUMwLjc5Mjk2OSAxMi4zNDc3IDAuOTg0Mzc1IDEyLjM0NzcgMS4xMjEwOSAxMi4yMTA5TDYuODYzMjggNi40OTYwOUM2Ljk3MjY2IDYuMzU5MzggNi45NzI2NiA2LjE2Nzk3IDYuODYzMjggNi4wMzEyNUwxLjEyMTA5IDAuMzE2NDA2QzAuOTg0Mzc1IDAuMTc5Njg4IDAuNzkyOTY5IDAuMTc5Njg4IDAuNjU2MjUgMC4zMTY0MDZaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
}

.ui-datepicker .ui-state-default {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 0.214em 0.643em;
  text-align: center;
}

.ui-datepicker .ui-state-default:hover {
  opacity: 0.5;
}

.ui-datepicker .ui-state-default.ui-state-active {
  background: var(--c3);
  border-radius: var(--border-radius);
}

table.ui-datepicker-calendar {
  margin-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane {
  margin-top: var(--spacing-s);
  border: none;
  padding-top: var(--spacing-m);
  background: none;
  position: relative;
}

.ui-datepicker .ui-datepicker-buttonpane::before {
  content: "";
  width: calc(100% + calc(var(--spacing-xs) * 2));
  height: 1px;
  background: var(--charcoal);
  position: absolute;
  top: 0;
  left: calc(var(--spacing-xs) * -1);
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: none;
}

.gen_quote_trial {
  background: #181e25;
  padding: 3.4rem 3.4rem;
  border-radius: 4px;
  box-shadow: none;
}

.gen_quote-trial-title {
  color: var(--c2-light);
  font-size: calc();
}

.modal {
  background: #22282ff7;
}

.modal-content {
  width: 100%;
  max-width: 900px;
  position: inherit;
  right: 50%;
  top: 2vw;
  transform: translateX(50%);
  background: #22282f;
  color: var(--white);
  padding: var(--spacing-xxl);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-xs);
  flex-shrink: 0;
  border: none;
  padding: 0;
  align-items: center;
  margin-bottom: var(--spacing-xxl);
}

.modal-header::before,
.modal-header::after {
  content: none;
}

.modal-footer {
  padding: 0;
  border: none;
  margin: 2em 1em;
}

.modal .modal-header .form-close {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--spacing-xxl);
  height: var(--spacing-xxl);
  color: var(--white);
  transition: color var(--t1);
  font-weight: 400;
}

.modal .modal-header .form-close:hover {
  color: var(--light-gray);
}

.modal-body {
  height: 100%;
  overflow: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  padding-right: 2rem;
  width: calc(100% + 2rem);
}

.modal-title,
h1.modal-title {
  font-size: 4.2rem;
  font-weight: 700;
  font-family: var(--circular);
  color: var(--c3);
}

h1.modal-title-error {
    font-size: 4.2rem;
    font-weight: 700;
    font-family: var(--circular);
    color: #f0f0f08a;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 var(--spacing-xs);
}

.table tr > th:first-child,
.table tr > td:first-child {
  padding-left: var(--spacing-m);
}

.table > tbody > tr > td {
  background: #181e25;
  border: none;
  font-size: 1.4rem;
  line-height: 2;
  padding: var(--spacing-xs) var(--spacing-m) var(--spacing-xs) 0;
}

.table > tbody > tr > td.bold {
  font-weight: 700;
}

.table > tbody > tr > td:first-child {
  border-radius: 1em 0 0 1em;
}

.table > tbody > tr > td:last-child {
  border-radius: 0 1em 1em 0;
}

.table > thead > tr > th {
  border: none;
  padding: var(--spacing-xs) var(--spacing-xs) var(--spacing-xs) 0;
  color: var(--c3);
  background: #181e25 !important;
}

.table > thead > tr > th a {
  color: var(--c3);
}

.table > thead > tr > th a:hover {
  color: var(--c3-light);
}


.table.table_selectable > tbody > tr {
  cursor: pointer;
}

.table.table_selectable > tbody > tr > td {
  transition: background-color var(--t1);
}

.table.table_selectable > tbody > tr:hover > td {
  background-color: #005197;
}

.table.table_selectable > tbody > tr .table-checkbox {
  border: none;
  position: relative;
  width: 20px;
  height: 20px;
}

.table.table_selectable > tbody > tr .table-checkbox:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNzMwNDcgMTEuMjgxMkM2LjAwMzkxIDExLjU1NDcgNi40Njg3NSAxMS41NTQ3IDYuNzQyMTkgMTEuMjgxMkwxNC43ODEyIDMuMjQyMTlDMTUuMDU0NyAyLjk2ODc1IDE1LjA1NDcgMi41MDM5MSAxNC43ODEyIDIuMjMwNDdMMTMuNzk2OSAxLjI0NjA5QzEzLjUyMzQgMC45NzI2NTYgMTMuMDg1OSAwLjk3MjY1NiAxMi44MTI1IDEuMjQ2MDlMNi4yNSA3LjgwODU5TDMuMTYwMTYgNC43NDYwOUMyLjg4NjcyIDQuNDcyNjYgMi40NDkyMiA0LjQ3MjY2IDIuMTc1NzggNC43NDYwOUwxLjE5MTQxIDUuNzMwNDdDMC45MTc5NjkgNi4wMDM5MSAwLjkxNzk2OSA2LjQ2ODc1IDEuMTkxNDEgNi43NDIxOUw1LjczMDQ3IDExLjI4MTJaIiBmaWxsPSIjMDBBRUVGIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity var(--t1);
}

.table.table_selectable > tbody > tr .table-checkbox_selected:before {
  opacity: 1;
}

.table thead tr a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.table_sticky thead tr th {
  position: sticky;
  top: 0;
  background: var(--charcoal);
  z-index: 99;
}

.table_sticky thead tr th:after {
  content: "";
  position: absolute;
  height: var(--spacing-xs);
  width: 100%;
  top: 100%;
  left: 0;
  background: var(--charcoal);
}

.pagination.pagination {
    margin: 0;
    background: #1e242b;
    padding: 5px;
    border-radius: 10px;
    display:inline-flex;
}
.pagination.pagination > li > a {
  background: none;
  border: solid 1px transparent;
  border-radius: 5px;
  color: var(--white);
  transition: opacity var(--t1), border-color var(--t1), background var(--t1);
  min-width: 36px;
  height: 36px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.pagination.pagination > li.active > a {
  background: var(--c3) !important;
}

.pagination.pagination > li > a:hover {
    opacity: 1;
    background: #005197;
}

.pagination.pagination > li.active > a:hover {
  background: var(--dark-gray) !important;
  border-color: var(--c3);
  opacity: 1;
}

.pagination.pagination > li > a.selected {
  border-color: var(--c3);
}

.gen_quickquote-modal {
  min-height: 68vh;
  padding: 8.5rem !important;
  min-width: 116vh;
}

.gen_quickquote-modal-body {
  margin: auto;
}

.gen_quickquote-btn {
  width: 22%;
  min-width: 125px;
  justify-content: flex-end;
  aspect-ratio: 1.17;
  flex-direction: column;
  padding: 4rem;
  align-items: center;
  background: linear-gradient(#181e25, #181e25 50%, #00aeef 50%, #00aeef);
  border-radius: 19px;
  background-size: 100% 200%;
  transition: background 0.6s;
}

.gen_quickquote-btn-content {
    margin: 0 auto;
    color: white;
    padding-top: 0.5em;
}

.gen_quickquote-radio {
  margin: var(--spacing-s) 0;
  display: flex;
  flex-direction: column;
}

.gen_quickquote-footer {
  justify-content: flex-end;
}

.internalScroll {
  min-height: 1px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.internalScroll > * {
  flex-shrink: 0;
}

.internalScroll > .internalScroll-fill {
  flex-shrink: 1;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.titleSection {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-m);
}

.status_open {
  color: var(--light-gray);
}

.status_closed {
  color: var(--error);
}

.status_won {
  color: var(--success);
}

.radios {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.radios-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
  font-size: 1.5rem;
}
.radios-label:hover .radios-fakeInput,
.radios-label-input:focus + .radios-fakeInput {
  border-color: var(--c3);
}
.radios-label:hover .radios-input:checked + .radios-fakeInput {
  border-color: var(--c3-light);
}
.radios-input,
input[type="radio"].radios-input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.radios-input + .radios-fakeInput {
  margin: 0.2em 1em 0 0;
  width: 20px;
  height: 20px;
  border: solid 1px var(--border);
  border-radius: 100%;
  display: inline-grid;
  place-items: center;
  transition: border-color 0.25s, border-width 0.25s;
  color: var(--white);
  background: none;
  overflow: hidden;
  flex-shrink: 0;
}
.radios-input:checked + .radios-fakeInput {
  border-width: 0.65rem;
  border-color: var(--c3);
  background: var(--white);
}

.checkboxes {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.checkboxes-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
  font-size: 1.5rem;
}
.checkboxes-label:hover .checkboxes-fakeInput,
.checkboxes-label-input:focus + .checkboxes-fakeInput {
  border-color: var(--c3);
}
.checkboxes-label:hover .checkboxes-input:checked + .checkboxes-fakeInput {
  border-color: var(--c1);
  background: var(--c1);
}
.checkboxes-input,
input[type="radio"].checkboxes-input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.checkboxes-input + .checkboxes-fakeInput {
  margin: 0.2em 1em 0 0;
  width: 20px;
  height: 20px;
  border: solid 2px var(--border);
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
  transition: border-color 0.25s, border-width 0.25s, background 0.25s;
  color: var(--white);
  background: none;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.checkboxes-input + .checkboxes-fakeInput:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNzMwNDcgMTAuNzgxMkM2LjAwMzkxIDExLjA1NDcgNi40Njg3NSAxMS4wNTQ3IDYuNzQyMTkgMTAuNzgxMkwxNC43ODEyIDIuNzQyMTlDMTUuMDU0NyAyLjQ2ODc1IDE1LjA1NDcgMi4wMDM5MSAxNC43ODEyIDEuNzMwNDdMMTMuNzk2OSAwLjc0NjA5NEMxMy41MjM0IDAuNDcyNjU2IDEzLjA4NTkgMC40NzI2NTYgMTIuODEyNSAwLjc0NjA5NEw2LjI1IDcuMzA4NTlMMy4xNjAxNiA0LjI0NjA5QzIuODg2NzIgMy45NzI2NiAyLjQ0OTIyIDMuOTcyNjYgMi4xNzU3OCA0LjI0NjA5TDEuMTkxNDEgNS4yMzA0N0MwLjkxNzk2OSA1LjUwMzkxIDAuOTE3OTY5IDUuOTY4NzUgMS4xOTE0MSA2LjI0MjE5TDUuNzMwNDcgMTAuNzgxMloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateY(100%);
  opacity: 0;
}

.checkboxes-input:checked + .checkboxes-fakeInput {
  border-color: var(--c3);
  background: var(--c3);
}

.checkboxes-input:checked + .checkboxes-fakeInput:before {
  transform: none;
  opacity: 1;
}

span[role="checkbox"] {
  border-color: var(--c3);
  border-radius: 3px;
}

span[role="checkbox"][aria-checked="true"] {
  background: var(--c3);
}

.bloker.alert-warning {
  width: 100%;
  color: white;
  background: #005197;
  border: none;
  padding: 1rem;
  text-align: center;
}

.alert-warning {
  display: inline-block;
  padding: 0.5rem;
}

.alert-warning {
    background-color: #1e242b;
    border-color: #1e242b;
    color: #707478;
    font-size: 14px;
}

.alert-note {
  background-color: var(--dark-background);
  border-color: var(--dark-background);
  color: white;
  padding: 24px 60px;
}

.alert .important {
  font-weight: bold;
  color: var(--text-disabled);
}

.filterBar-header {
  display: flex;
  gap: var(--spacing-s);
}

.filterBar-headerRight {
  margin-left: auto;
}

.toggleFilterBtn {
  border: none;
  padding: var(--spacing-s);
  color: var(--white);
  background: var(--dark-background);
  font-weight: 400;
  transition: background, border-radius;
  transition-duration: var(--t1);
  border-radius: 4px;
  padding: 1.5em 1em;
}

.toggleFilterBtn:after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMC41MzUyIDdDMTEuMTY4IDcgMTEuNDg0NCA2LjIyNjU2IDExLjAyNzMgNS43Njk1M0w2LjUyNzM1IDEuMjY5NTNDNi4yNDYxIDAuOTg4MjgxIDUuNzg5MDYgMC45ODgyODEgNS41MDc4MSAxLjI2OTUzTDEuMDA3ODEgNS43Njk1M0MwLjU1MDc4MiA2LjIyNjU2IDAuODY3MTg4IDcgMS41IDdMMTAuNTM1MiA3WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  transition: transform var(--t1);
}

.toggleFilterBtn.opened {
  border-radius: 4px 4px 0px 0px;
}

.toggleFilterBtn.opened:after {
  transform: none;
}

.toggleFilterBtn:hover,
.toggleFilterBtn:focus {
  background: var(--dark-gray);
  color: var(--white);
}

.filterBar .filters {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows, margin, padding;
  margin-top: 0;
  transition-duration: var(--t3);
  background: var(--dark-background);
  border-radius: 0px 4px 4px 4px;
  padding: 0 var(--spacing-s);
}

.filterBar .filters .form {
  align-items: flex-end;
}

.filterBar .filters-container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
}

.filterBar .filters.opened {
  grid-template-rows: 1fr;
  padding: var(--spacing-m) var(--spacing-s);
}

.spacer {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
}

.form-search {
  width: 100%;
  max-width: 600px;
}

.form-search .input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.form-search .input-group .input-group-btn {
  width: auto;
  display: flex;
  align-items: stretch;
}

.form-search .input-group .input-group-btn .btn {
  height: 100%;
}

.form-search .input-group .input-group-btn.btn-select .btn {
  border: solid 1px var(--border);
  border-right: 0;
  color: var(--white);
  background: none;
  border-radius: 4px 0px 0px 4px;
  transition: border-radius var(--t1);
}

.form-search .input-group .input-group-btn.btn-select .btn .caret {
  width: 10px;
  height: 10px;
  border: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wLjk2ODc1IDBDMC40MDYyNSAwIDAuMTI1IDAuNjg3NSAwLjUzMTI1IDEuMDkzNzVMNC41MzEyNSA1LjA5Mzc1QzQuNzgxMjUgNS4zNDM3NSA1LjE4NzUgNS4zNDM3NSA1LjQzNzUgNS4wOTM3NUw5LjQzNzUgMS4wOTM3NUM5Ljg0Mzc1IDAuNjg3NSA5LjU2MjUgMCA5IDBIMC45Njg3NVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=")
    no-repeat center;
  transition: transform var(--t1);
}

.form-search input[type="text"] {
  border-radius: 0;
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
}

.form-search .dropdown-submenu.open .btn .caret {
  transform: rotate(180deg);
}

.form-search
  .input-group
  .input-group-btn.btn-select
  .dropdown-submenu.open
  .btn {
  border-radius: 4px 0 0 0;
}

.form-search .dropdown-menu {
  background: var(--dark-background);
  color: var(--white);
  border-radius: 0 0 4px 4px;
  border: none;
  border: solid 1px var(--border);
  border-top: none;
  margin: 0;
}

.form-search .dropdown-menu a {
  color: var(--white);
  text-decoration: none;
  border: none;
  margin: 0;
  padding: 0.2em 1em;
}

.form-search .dropdown-menu a:hover,
.form-search .dropdown-menu a:focus {
  background: var(--c2);
  border: none;
  padding: 0.2em 1em;
}

.table .table {
  background: inherit;
}

.row-choice {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}

.rowExpendable {
  position: relative;
  cursor: pointer;
}

.rowExpendable td {
  transition: background var(--t1);
}

.rowExpendable:hover td {
  background: var(--dark-background);
}

.rowExpendable td:last-child {
  padding-right: var(--spacing-xl);
}

.rowExpendable:after {
  content: "";
  position: absolute;
  right: var(--spacing-s);
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDE0IDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMy43ODEyIDEuNzUwMTJMMTMuMTg3NSAxLjEyNTEyQzEzLjAzMTIgMC45Njg4NzIgMTIuNzgxMiAwLjk2ODg3MiAxMi42NTYyIDEuMTI1MTJMNyA2Ljc4MTM3TDEuMzEyNSAxLjEyNTEyQzEuMTg3NSAwLjk2ODg3MiAwLjkzNzUgMC45Njg4NzIgMC43ODEyNSAxLjEyNTEyTDAuMTg3NSAxLjc1MDEyQzAuMDMxMjUgMS44NzUxMiAwLjAzMTI1IDIuMTI1MTIgMC4xODc1IDIuMjgxMzdMNi43MTg3NSA4LjgxMjYyQzYuODc1IDguOTY4ODcgNy4wOTM3NSA4Ljk2ODg3IDcuMjUgOC44MTI2MkwxMy43ODEyIDIuMjgxMzdDMTMuOTM3NSAyLjEyNTEyIDEzLjkzNzUgMS44NzUxMiAxMy43ODEyIDEuNzUwMTJaIiBmaWxsPSIjMENBNEREIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--t2);
}

.rowExpendable .description {
  line-height: 1.5em;
  height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rowExpendable td[data-attribute="description"] {
    max-width: 200px;
    vertical-align: middle;
}

.rowExpendable_opened .description {
  height: auto;
  overflow: hidden;
  text-overflow: unset;
  white-space: normal;
}

.rowExpendable_opened:after {
  transform: translateY(-50%) rotate(180deg);
}

.summaryContent {
  background: var(--dark-gray);
  padding: var(--spacing-m);
  margin-bottom: var(--spacing-l);
}

.summaryContent .formActions {
  padding-bottom: var(--spacing-xs);
  border-bottom: solid 1px var(--gray);
  margin-bottom: var(--spacing-m);
}

.summaryContent-body {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.summaryContent-body input {
  display: block;
  width: auto;
}

.summaryContent-left .form-cell {
  display: inline-block;
}

.summaryContent-right {
  text-align: right;
}

.summaryContent-right input {
  margin-left: auto;
  text-align: right;
}

.summaryContent .total input {
  font-size: 2.2rem;
}

.summaryContent .priceInfo {
  color: var(--light-gray);
  font-size: 1.2rem;
}

#cpqModal.modal .modal-content {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin-top: -31px;
  border: none;
}

#cpqModal.modal .modal-dialog {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;     
}

#cpqModal .modal-body .xFrameHost {
  height: 100%;
  flex: 1;
}

#cpqModal .modal-body .xFrameHost iframe {
  height: 99%;
}

.modal-center {
  text-align: center;
}

#submit_order_succes {
  font-size: 2rem;
  line-height: 1.25;
}

.order-success-text {
  margin-top: var(--spacing-xs);
}

.order-success-order {
  color: var(--c3);
  font-weight: bold;
  font-size: 2.5rem;
}

#submit_order_succes h2 {
  font-size: 4rem;
  font-weight: 700;
  margin: 1em 0 0.5em;
}

.order-success-email {
  color: var(--c3);
}

/*---------------CALENDAR---------------*/
#dtOrderDateRangeValue {
  white-space: nowrap;
}

.daterangepicker {
  background-color: #0e141b !important;
  border: 0 !important;
  border-radius: 0.29rem !important;
  font-family: circular !important;
}

.daterangepicker:before,
.daterangepicker:after {
  border-bottom: 7px solid #0e141b !important;
}

.daterangepicker .ranges {
  margin-top: 1px !important;
}

.daterangepicker .ranges li {
  line-height: 1.5;
}

.daterangepicker .ranges li:hover {
  background-color: #22282f !important;
}

.daterangepicker .ranges li.active {
  background: #00aeef !important;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left,
.daterangepicker .drp-buttons {
  border-color: #22282f !important;
}

.daterangepicker .calendar-table {
  background: none !important;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: #0e141b !important;
  color: #999 !important;
}

.daterangepicker td.in-range {
  background-color: #22282f !important;
  color: #fff !important;
}

.daterangepicker .drp-calendar.left .calendar-table {
  background: none !important;
  border: 0 !important;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  border: solid white !important;
  border-width: 0 2px 2px 0 !important;
}

.daterangepicker .calendar-table th.month {
  font-size: 1.07rem !important;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  font-size: 1rem !important;
}

@media (min-width: 564px) {
  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 0 !important;
    border: 0 !important;
  }

  .daterangepicker .drp-calendar.right .calendar-table {
    border: 0 !important;
  }
}

.daterangepicker .available {
  transition: 0.25s;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background: #00aeef !important;
}

.daterangepicker td.active.in-range {
  background: #00aeef !important;
}

.daterangepicker td.active.ends.in-range {
  background: none !important;
}

.daterangepicker th.available:hover {
  background: #2c3239 !important;
}

.daterangepicker td.available:hover {
  background: #00aeef !important;
}

.daterangepicker td.ends.available:hover {
  background: #00aeef !important;
  color: #fff !important;
}

.daterangepicker .drp-calendar.left {
  padding-left: 1rem !important;
}

.daterangepicker .drp-calendar.right {
  padding-left: 1.43rem !important;
  padding-right: 1rem !important;
}

.btn-sm,
.btn-group-sm > .btn {
  font-size: 1rem;
}

.daterangepicker .drp-buttons {
  padding-right: 1rem !important;
}

.daterangepicker .drp-selected {
  font-size: 1rem !important;
}

.daterangepicker .drp-buttons .btn.cancelBtn {
  border: 0;
  text-decoration: underline;
  color: #00aeef;
  font-weight: 400;
  font-size: 1rem;
  background: none;
}

.daterangepicker .drp-buttons .btn.cancelBtn:hover {
  background: none;
  border: 0;
  text-decoration: none;
}

.daterangepicker .drp-buttons .btn.applyBtn {
  font-size: 1.07rem;
  min-width: 90px;
  height: 2.57rem;
  border-radius: 0.29rem;
  transition: 0.25s;
  text-align: center;
  display: inline-block;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom {
  top: 110% !important;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-bottom: 6px solid #181e25;
}

.datetimepicker:focus-visible,
.datetimepicker input:focus-visible,
.datetimepicker span:focus-visible {
  outline: 0;
}

.datetimepicker > span.input-group-addon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: none;
  border: 0;
  cursor: pointer;
}

.datetimepicker > span.input-group-addon > span.fa {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  pointer-events: none;
}

.bootstrap-datetimepicker-widget tr td button {
  background: none;
  color: #fff;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover,
.bootstrap-datetimepicker-widget tr td.active button {
  background: #00aeef;
}

.bootstrap-datetimepicker-widget table td.today:before {
  border-bottom-color: #00aeef;
}

.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover,
.bootstrap-datetimepicker-widget tr td:hover button {
  background: #2c3239;
  color: #fff;
}

.bootstrap-datetimepicker-widget tr td.old button,
.bootstrap-datetimepicker-widget tr td.new button {
  color: #6e7276;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #2c3239;
  color: #fff;
}

/* toggles */
.customoptionset {
  display: flex;
  margin-bottom: 1rem;
}

.customoptionset .section_left {
  margin-right: 1rem;
}

.customoptionset .section_right > label {
  width: 100%;
}

.customoptionset .section_right > label:last-child {
  font-weight: 400;
  color: #9fa2a5;
  font-size: 1rem;
}

.customoptionset input {
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
}

.customoptionset input + label {
  display: block;
  width: 2.5rem;
  height: 1rem;
  border-radius: 1rem;
  background: #686b70;
  position: relative;
  margin-top: 2px;
}

.customoptionset input + label:after {
  content: "";
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  background: #f0f0f0;
  border-radius: 100%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: left 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.customoptionset input[value="YES"] + label:after {
  left: 100%;
  transform: translate(-100%, -50%);
}

.customoptionset input + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  border-radius: 5rem;
  background: #00aeef;
  transition: width 0.15s ease-in-out;
}

.customoptionset input[value="YES"] + label:before {
  width: 100%;
}

/* page notification settings */
.notificationSettings h2 {
  font-weight: 400;
  color: #9fa2a5;
  font-size: 1rem;
  margin: 3rem 0 1rem;
}

img[name="loading-160x160.gif"] {
    margin: 0 auto !important;
    display: block;
    background-color: #22272f !important;
    
}

/*autocomplete*/
.pac-container {
  z-index: 9999 !important;
}

.modal .modal-dialog {
  top: 50%;
  transform: translateY(-50%) !important;
  
}

.modal-content {
  background: #22282f;
  padding: 3.4rem 3.4rem;
  border-radius: 4px;
  box-shadow: none;
  border: .2em solid #181e25;
}

    
               
 

 
.checkboxes_disabled .checkboxes-label {
  color: var(--border);
  pointer-events: none;
}

.checkboxes_disabled .checkboxes-input + .checkboxes-fakeInput {
  border-color: var(--border);        
}

.modal_fullscreen .modal-content {
    max-height: 100%!important;
    max-width: 96%!important;
}
button#btnCancel {
    display: none;
}
[data-name="tab_Discount"] {
    margin-bottom: 0.8em;
    padding: 1em 0em 0;
    border-bottom: 1px solid #2c3239;
}

[data-name="tab_Document"] {
    margin-bottom: 2em;
/*    padding: 1em;
*/
    border-bottom: 1px solid #2c3239;
}

[id="cpqModalLabel"] {
    font-size: 16px;
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    background: #2c3239;
    opacity: 0.2 !important;
    color: #191e25 !important;
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn:hover {
    background: #56616e !important;
    border: 1px solid #65696d70 !important;
}
input#totalamount {
    color: #66e0ff;
    font-size: 1.8em;
}
.discountText, input.discountText {
    color: #35a16e;
}
div#iframeHost .xFrame {
    height: 1024px;
}
div#modal-special-discount-dialog .mainContent {
    min-height: 800px;
}
table#contact_list th {
    width: fit-content !important;
}
input#quotenumber {
    color: #00aeef;
    font-size: 20px;
    font-weight: 500;
}
input#ordernumber {
    color: #66e0ff;
    font-size: 20px;
    font-weight: 500;
}
/*div#modal-discount-consent .modal-content {
    margin-top: -19em;
}

divgen_quote_blocked_notify .modal-content {
    margin-top: -19em;
}
*/

#trial-countdown {
  margin-left: 10px;
  color: var(--c3);
  padding: 5px 25px;
  border-radius: 6px;
  background: #181e25;  
}

#span_status {
    padding: 5px 25px;
    color: #66e0ff;
    border-radius: 6px;
    background: #181e25;
}

#gen_blendeddiscountamount {
  text-align: end; 
  font-size: 1.3em;
  font-size: 15px;
  margin-top: 7px;
}

.column-direction {
  display: flex;
  flex-direction: column;
}

.gen_order-status-label {
  color: white !important;
  background-color: #2c3239 !important;
  border-radius: 0px !important;
  width: 38%;
}

.gen_order-information-container {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  grid-column: 1 / -1;
  height: 41rem;
}

.gen_order-information-a {
  color: #66e0ff;
  font-size: 20px;
  font-weight: 500;
}
div#submit_order_succes .modal-content {
    background: #181e25;
}
.gen_order-status-state {
  text-align: center;
  border-radius: 0px !important;
  width: 62%;
}

.gen_order-price-container {
  display: flex;
  width: 50%;
  margin-left: auto;
  gap: 20px;
}

.formActions a {
    padding: 10px 15px 10px 25px;
    border: 1px solid;
    border-radius: var(--border-radius);
    text-decoration: none;
}
.formActions a:hover {
    background: #181e25;
    color: #ffffff;
}
.modal-header a {
    background: var(--c3);
    color: var(--charcoal);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bold;
    border: none;
    padding: 1em;
    text-decoration: none;
    display: inline-flex;
    gap: var(--spacing-s);
    align-items: baseline;
    background: linear-gradient(#00aeef , #00aeef 50%, #66e0ff 50%, #66e0ff);
    background-size: 100% 200%;
    transition: background 0.6s;
}
.modal-header a:hover, .modal-header a:focus {
    color: var(--charcoal);
    background: linear-gradient(#00aeef, #00aeef 50%, #66e0ff 50%, #66e0ff);
    background-size: 100% 200%;
    background-position: 100% 100%;
    transition: background 0.4s ease-in-out, background 0.4s ease-in-out;
}
[onclick="showCreateShipToAddress();"] {
    background: var(--c3);
    color: var(--charcoal) !important;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bold;
    border: none;
    padding: 1em;
    text-decoration: none;
    display: inline-flex;
    gap: var(--spacing-s);
    align-items: baseline;
    background: linear-gradient(#00aeef , #00aeef 50%, #66e0ff 50%, #66e0ff);
    background-size: 100% 200%;
    transition: background 0.6s;
}
[onclick="showCreateShipToAddress();"] a:hover{
    color: var(--charcoal) !important;
    background: linear-gradient(#00aeef, #00aeef 50%, #66e0ff 50%, #66e0ff);
    background-size: 100% 200%;
    background-position: 100% 100%;
    transition: background 0.4s ease-in-out, background 0.4s ease-in-out;
}
.rowFlex.priceInfo {
    color: #6d7175;
}
.filterBar-header button.btn.btn_alt {
    background: var(--c3);
    color: var(--charcoal) !important;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: bold;
    border: 1px solid #005197;
    padding: 1em 5.5em 1em 5.5em;
    text-decoration: none;
    display: inline-flex;
    gap: var(--spacing-s);
    align-items: baseline;
    background: linear-gradient(#00aeef , #00aeef 50%, #66e0ff 50%, #66e0ff);
    background-size: 100% 200%;
    transition: background 0.6s;
}
.filterBar-header button.btn.btn_alt path {
    fill: #22282f;
}
.filterBar-header button.btn.btn_alt:hover {
    background: linear-gradient(#00aeef, #00aeef 50%, #66e0ff 50%, #66e0ff);
    background-size: 100% 200%;
    background-position: 100% 100%;
    transition: background 0.4s ease-in-out, background 0.4s ease-in-out;
}
input[type="file"] {
    background: #181e25;
    padding: 1em 2em 1em 1em;
    border-radius: 6px;
}
.mainContent [class="mainContent-content "] {
    max-width: 100%;
}
i.fa.fa-cloud-download:hover {
    color: #f0f0f0;
}

div#modal-discount-review-dialog .form-cell.form-cell_full label {
    margin-left: 0px;
             
}

div#modal-discount-review-dialog .modal-footer.formActions-right.btnContainer a {
    padding: 10px 10px 10px 20px;
    border: 1px solid;
    border-radius: var(--border-radius);
}
div#modal-discount-review-dialog .modal-footer.formActions-right.btnContainer a:hover {
    background: #181e25;
    color: #ffffff;
}

[data-logicalname="statecode"] {
    font-size: 12px;
    font-weight: 100;
}

div#gen_Quotes_List div#filterlist .form > div:nth-child(2) {
    display: none;
}
div#gen_Quotes_List div#filterlist .form > div:nth-child(5) {
    display: none;
}
div#gen_Orders_List div#filterlist .form > div:nth-child(8) {
    display: none;
}
div#gen_Orders_List div#filterlist .form > div:nth-child(1) {
    display: none;
}
div#gen_Orders_List div#filterlist .form > div:nth-child(5) {
    display: none;
}
form#filter_form {
    font-size: 14px;
    color:#666;
}
.form-cell:hover {
    color: var(--c3);
}
div#modal-special-discount-dialog h2 {
    color: #00aeef;
    font-size: 1.6em;
}
div#modal-discount-review-dialog h2 {
    color: rgb(0, 174, 239);
    font-size: 1.6em;
}

.gen_modal_request_discount-tbpa-th {
    color: #8e9195 !important;
    font-weight: 400;
    padding: 0 5px !important;
}

.gen_modal_request_discount-tbpa-tr {
  height: 40px;
}

.tab_discount-td {
  color: #C2C8CF;
  vertical-align: middle !important;
}

.td-separator {
  height: 90%;
  display: block;
  border-left: solid 1px #f0f0f033;
  padding-left: 10px;
}

.td-svg {
  padding: 13px 5px 5px !important;
  text-align: center;
}

.gen_modal_request_discount-tbpa-checkbox-container {
  padding: 5px 10px !important;
}

.gen_modal_request_discount-tbpa-checkbox-label {
  font-size: smaller;
  margin-left: 0.75em;
}

.gen_modal_request_discount-tbpa-checkbox-box {
    margin-left: 1em !important;
    width: 12.3px !important;
    height: 12px !important;
}

.selectCheckbox-input:checked + .selectCheckbox-container .gen_modal_request_discount-tbpa-checkbox-box {
  background: #005197 !important;
  border: 2px solid white !important;
}

.tab_discount-th {
  padding: 0 5px !important;
}

.tab_discount-th > a {
  color: white !important;
  opacity: 75%;
}

button#submitFilter {
    border: 1px solid rgb(0, 174, 239);
    background: #181e25;
    color: white;
}
button#submitFilter:hover {
    border-color: antiquewhite;
}
div#gen_Quotes_List [data-logicalname="opportunityid"] {
    display: none;
}
div#gen_Orders_List [data-logicalname="opportunityid"] {
    display: none;
}
a#resetFilter {
    cursor: pointer;
}
.table > tbody > tr:hover > td {
    background-color: #2c3239;
    color:#66e0ff;
}
.table > tbody > tr:hover > td a{
    color:#66e0ff;
}
table#contact_list [aria-label="Email"]:after {
/*    content: "Phone No";
*/
    right: -4em;
    position: absolute;
}
div#gen_modal_create_enduser .chk-input-cell.form-cell_full {
    display: flex;
}
div#gen_modal_create_enduser span#chkAddEnduserContact {
    margin-right: 10px;
    margin-top: 1px;
}
button.btn.btn_alt span.btn-icon:before {
/*    content: "Project";
*/
    margin-left: -10px;
    margin-right: 4px;
}
                                   
         
 
@media only screen and (min-width: 600px) {

  .btnContainer {
  flex-wrap: wrap;
  }
}

p.info {
  color: var(--text-disabled);
          
          
            
           
            
         
          
           
             
               
                  
        
}
.form_cell-required{
          color: #73767a;
                                    
          
         
            
           
            
         
    font-size: 1.2rem;
           
             
               
                  
        
}

.selectCheckbox {
                                     
          
  margin: 0;
            
           
            
         
          
           
             
               
                  
        
}

.selectCheckbox-input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
          
           
             
               
                  
        
}

.selectCheckbox-input + .selectCheckbox-container {
  background: var(--dark-background);
          
          
            
  padding: 0.5em 0.75em;
  border-radius: 0.5em;
  display: inline-flex;
  align-items: center;
  color: white;
  transition: background var(--t1);
               
                  
        
}

.selectCheckbox-input + .selectCheckbox-container .selectCheckbox-box {
  margin-left: 1.75em;
  width: 1.25em;
  height: 1.25em;
  background: var(--text-disabled);
  border: 1px solid var(--light-gray);
  border-radius: 0.15em;
  transition: opacity var(--t1);
}

.selectCheckbox:hover .selectCheckbox-input + .selectCheckbox-container {
  background: var(--c2);
}

.selectCheckbox:hover .selectCheckbox-input[disabled] + .selectCheckbox-container {
  cursor: not-allowed;
  background: var(--dark-background);
}

.selectCheckbox-input:checked + .selectCheckbox-container {
  background: var(--c2);
          
}

.selectCheckbox-input:checked + .selectCheckbox-container .selectCheckbox-box {
  opacity: 0;      
}

.selectCheckbox:hover .selectCheckbox-input:checked + .selectCheckbox-container {
  background: var(--c1);
}

.selectCheckbox:hover .selectCheckbox-input[disabled]:checked + .selectCheckbox-container {
  background: var(--c2);
}

.titleCheckbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.titleCheckbox-label {
  font-weight: 700;
  font-size: 3rem;
  color: var(--c2);
  transition: color var(--t1);
}

.titleCheckbox-input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.titleCheckbox-input + .titleCheckbox-fakeInput {
  margin: 0.2em 1em 0 0;
  width: 20px;
  height: 20px;
  border: solid 2px var(--border);
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
  transition: border-color 0.25s, border-width 0.25s, background 0.25s;
  color: var(--white);
  background: none;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.titleCheckbox-input + .titleCheckbox-fakeInput:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNzMwNDcgMTAuNzgxMkM2LjAwMzkxIDExLjA1NDcgNi40Njg3NSAxMS4wNTQ3IDYuNzQyMTkgMTAuNzgxMkwxNC43ODEyIDIuNzQyMTlDMTUuMDU0NyAyLjQ2ODc1IDE1LjA1NDcgMi4wMDM5MSAxNC43ODEyIDEuNzMwNDdMMTMuNzk2OSAwLjc0NjA5NEMxMy41MjM0IDAuNDcyNjU2IDEzLjA4NTkgMC40NzI2NTYgMTIuODEyNSAwLjc0NjA5NEw2LjI1IDcuMzA4NTlMMy4xNjAxNiA0LjI0NjA5QzIuODg2NzIgMy45NzI2NiAyLjQ0OTIyIDMuOTcyNjYgMi4xNzU3OCA0LjI0NjA5TDEuMTkxNDEgNS4yMzA0N0MwLjkxNzk2OSA1LjUwMzkxIDAuOTE3OTY5IDUuOTY4NzUgMS4xOTE0MSA2LjI0MjE5TDUuNzMwNDcgMTAuNzgxMloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateY(100%);
  opacity: 0;
}

.titleCheckbox-input:checked + .titleCheckbox-fakeInput {
  border-color: var(--c3);
  background: var(--c3);
}

.titleCheckbox-input:checked + .titleCheckbox-fakeInput:before {
  transform: none;
  opacity: 1;
}

.titleCheckbox:hover .titleCheckbox-fakeInput,
.titleCheckbox:focus + .titleCheckbox-fakeInput {
  border-color: var(--c3);
}

.titleCheckbox:hover .titleCheckbox-label {
  color: var(--c2-light)
}

.titleCheckbox:hover .titleCheckbox-input:checked + .titleCheckbox-fakeInput, .titleCheckbox:focus .titleCheckbox-input:checked + .titleCheckbox-fakeInput {
  border-color: var(--c1);
  background: var(--c1);
}

.tripleColumns {
  display: flex;
  gap: 2rem;
}

.tripleColumns-column {
  width: 100%;
  position: relative;
}

.tripleColumns-column:not(:last-child) {
  padding-right: 2rem;
}

.tripleColumns-column:not(:last-child):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--dark-border);
}

@media screen and (max-width: 1200px) {
  .tripleColumns {
    flex-wrap: wrap;
    gap: 4rem;
  }

  .tripleColumns-column:not(:last-child) {
    padding-right: 0;
  }

  .tripleColumns-column:not(:last-child):before {
    content: none;
    display: none;
  }
}

[data-name="tab_Document"] p {
    background: #20242b;
    margin-top: -1em;
    font-size: 12px;
    padding: 5px 10px 10px;
    color: #717478;
}
[data-name="tab_Document"] p.important {
    color: #c4c8cf;
    margin-bottom: -10px;
}


#document_iframe {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 550px;
}

textarea {
    max-width: 100%;
    min-width: 100%;
}

#cpqModal {
    overflow-y: hidden;
    padding-left: 0px !important;
    bottom: -30px;
}

.sectionDisabled {
    pointer-events: none;
    opacity: 0.5;
}


/* Boutons */
button#btnSubmit:hover:after {
    color: #1a1e25 !important;
    content: "Proceed to convert your Quote to an Order.";
    position: fixed;
    margin-top: 4em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: -5em;
    z-index: 2;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:160px;
}
button#btnValidate:hover:after {
    color: #1a1e25 !important;
    content: "Apply any pending discounts or Request a Quote review.";
    position: fixed;
    margin-top: 4em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: -5em;
    z-index: 2;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:160px;
}
button#btnActivate:hover:after {
    color: #1a1e25 !important;
    content: "Protect the pricing on your Quote for the next 30 days.";
    position: fixed;
    margin-top: 4em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: -4em;
    z-index: 2;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:160px;
}
button#btnCpq:hover:after {
    color: #1a1e25 !important;
    content: "Start adding or updating Products to your Quote. ";
    position: fixed;
        
    margin-top: 4em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: -5em;
    z-index: 2;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:160px;
}
button#btnPrint:hover:after {
    color: #1a1e25 !important;
    content: "Download a copy of your Quote in PDF. ";
    position: fixed;
    margin-top: 4em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: -5em;
    z-index: 2;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:160px;
}
button#btnReview:hover:after {
    color: #1a1e25 !important;
    content: "Get your Quote reviewed by a channel sales expert";
    position: fixed;
    margin-top: 4em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: -5em;
    z-index: 2;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:160px;
}

button#btnRevise:hover:after {
    color: #1a1e25 !important;
    content: "Create another version of your quote to make changes. ";
    position: fixed;
    margin-top: 4em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: -5em;
    z-index: 2;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:160px;
}           
 
textarea#order_description {
    resize: none;
}
textarea#quote_description {
    resize: none;
}                      
          
.crmEntityFormView .cell {
    padding: 0 !Important;
  
}
 
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: var(--charcoal) !Important;
}

button#btn_quote, button#btn_submit_order{
    line-height: 2.3;
    padding: 1em 5.5em 1em 5.5em;
    transition: background 0.6s;
    display: inline;
    width: 100%;
    border-radius: 3em;
}

button#btnTrial {
    background: #191e25;
    padding: 1em 2.5em 1em 2.5em;
    color: #43afed;
    border: 1px solid #43aeed;
}
button#btnTrial:hover {
    background: #66e0ff;
    color: #191e25;
}
button#btnRequestDiscount {
    padding: 1em 2.5em 1em 2.5em;
    border: 1px solid #1B365D;
    background: linear-gradient(#005197 , #005197 50%, #00aeef 50%, #00aeef);
    background-size: 100% 200%;
    transition: background 0.6s;
}
button#btnRequestDiscount:hover {
    padding: 1em 2.5em 1em 2.5em;
    border: 1px solid #1B365D;
    color: var(--charcoal);
    background: linear-gradient(#005197, #005197 50%, #66e0ff 50%, #66e0ff);
    background-size: 100% 200%;
    background-position: 100% 100%;
    transition: background 0.4s ease-in-out, background 0.4s ease-in-out;
}

button#btnTrial:hover:after {
    color: #1a1e25 !important;
    content: "Start your 45-day free trial for Security Center SaaS";
    position: fixed;
    margin-top: 4em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: -4.3em;
    z-index: 2;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:160px;
}
button#btnRequestDiscount:hover:after {
    color: #1a1e25 !important;
    content: "Request project discounts, additional discounts and apply your approved TBPAs";
    position: fixed;
    margin-top: 4em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: -5.5em;
    z-index: 2;
    font-size: 10px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:240px;
}
label#gen_implementerid_label:hover:after {
    color: #1a1e25 !important;
    content: " Tier 2 Partner ";
    position:inherit;
    margin-top: 0em;
    background: #f1f7fd;
    padding: 1em 1em;
    margin-left: 1em;
    z-index: 2;
    font-size: 11px;
    line-height: 1.2;
    border-radius: 1px;
    animation-name: bounce;
    animation-timing-function: ease;
    width:100px;
}
.mainContent-aside .tab.clearfix .summaryContent-right {
    background: #1e242b;
    float: right;
    padding: 0.5em 1em;
    font-size: 12px;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: hidden;
}
div#filterDiv [role="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
}
div#gen_modal_confirmation .modal-content {
    background: #22272f;
    border: none;
}
div#gen_Orders_List th:nth-child(8) {
    font-size: 1.2rem;
}

#reactDocument {
  margin: 20px;
}

.control input {
  background: #22282f;
  color: white;
  text-decoration: none !important;
}

.control select {
  background: #22282f;
  color: white;
  text-decoration: none !important;
}

td .dropdown.action {
  padding: 5px;
}

.control select#gen_technology {
  background: #22282f;
  color: white;
  text-decoration: none !important;
}

.control select#gen_protocol {
  background: #22282f;
  color: white;
  text-decoration: none !important;
}

.control select#gen_color {
  background: #22282f;
  color: white;
  text-decoration: none !important;
}

.control textarea#gen_comments {
  background: #22282f;
  color: white;
  text-decoration: none !important;
}

.control input#gen_scsaasdatacenter_name {
  background: #22282f;
  color: white;
  text-decoration: none !important;
  border: 1px solid white;
  margin: 5px 10px;
  height: 39px;
}

.control input#gen_clearancedatacenter_name {
  background: #22282f;
  border: 1px solid white;
  margin: 5px 10px;
  height: 39px;
  color: white;
  text-decoration: none !important;
}


.bootstrap-datetimepicker-widget.dropdown-menu.usetwentyfour.bottom {
  background: #22282f;
  border: 1px solid #181e25;
}

.control input#gen_cleariddatacenter_name {
  background: #22282f;
  color: white;
  text-decoration: none !important;
  border: 1px solid white;
  margin: 5px 10px;
  height: 39px;
}

.popover-content {
  background: #22282f;
}

.control input#fullname {
  background: #22282f;
  color: white;
  text-decoration: none !important;
  border: 1px solid white;
}

.control input#emailaddress1 {
  background: #22282f;
  color: white;
  text-decoration: none !important;
  border: 1px solid white;
}

.form-inline-version{
    display: inline-flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
}

.form-inline-version > input{
       width: 75%;
}
.grid-actions {
    border: none !important;
}
.selectCheckbox-input:checked + .selectCheckbox-container .selectCheckbox-box {
    opacity: 1;
    background: #ffffff;
    border-radius: 1em;
    border: 5px solid #005197;
    transition: border-color 0.25s, border-width 0.25s;
}

button#btnReview {
    margin-left: 8px;
    background: #2d3239;
    color: #43aeed;
    border: 1px solid #00aeef;
    padding: 1em 2em;
    background: linear-gradient(#2d3239 , #2d3239 50%, #00aeef 50%, #00aeef);
    background-size: 100% 200%;
    transition: background 0.2s;
}
button#btnReview:hover {
    color: var(--charcoal);
    background: linear-gradient(#2d3239, #2d3239 50%, #00aeef 50%, #00aeef);
    background-size: 100% 200%;
    background-position: 100% 100%;
    transition: background 0.2s ease-in-out, background 0.4s ease-in-out;
}

button#btnRevise {
    background: #2d3239;
    color: #43aeed;
    border: 1px solid #00aeef;
    padding: 1em 2em;
    background: linear-gradient(#2d3239 , #2d3239 50%, #00aeef 50%, #00aeef);
    background-size: 100% 200%;
    transition: background 0.2s;
}
button#btnRevise:hover {
    color: var(--charcoal);
    background: linear-gradient(#2d3239, #2d3239 50%, #00aeef 50%, #00aeef);
    background-size: 100% 200%;
    background-position: 100% 100%;
    transition: background 0.2s ease-in-out, background 0.4s ease-in-out;
}
.form-inline-version span {margin-left: -5px;}

.form-inline-version span.version {
    margin-left: 0px;
}
.form_clearfix {
    clear: both;
    padding: 1.5rem 0 1rem;
}

#ui-id-1 {
  z-index: 9999!Important;
}

/*animation*/

.circle_animation {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #22282f;
}
.circle {
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #f0f0f0, #f0f0f0);
  margin: 10px;
  animation: circle 5s linear infinite;
  border-radius: 20px;
}
.circle:nth-child(2) {
  animation-delay: 0.3s;
}
.circle:nth-child(3) {
  animation-delay: 0.6s;
}
.circle:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes circle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(.5);
  }
  100% {
    transform: scale(0.1);
    background: linear-gradient(45deg, #66e0ff, #66e0ff);
  }
}
div#quickquote-menu {
    min-height: 400px;
}