/**
    New global CSS 2020

    Developer   - Ollie Tan

    BEM         - http://getbem.com

    Block       - block-name
    Element     - block-name__element-name
    Modifier    - block-name__element-name--modifier-name
    Utils       - -type-size (-p-md: padding medium)
*/
/**
    Import external
*/
/*@import 'https://fonts.googleapis.com/css?family=Roboto&display=swap';*/
@import '../../Content/roboto.css';
/**
    Import Partials
*/
/*@import 'reset';*/
/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
.sub-header-wrp, .form-dropdown-options__option {
  display: flex;
  align-items: center;
}

.form-input, .form-dropdown {
  border-radius: 0.1875rem;
  border-color: #e0e0e0;
  border-style: solid;
  border-width: 1px;
  background-color: #ebebeb;
  color: #000;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.form-input:focus:not(:disabled), .form-dropdown:focus:not(:disabled) {
  border-color: #2275D3;
  border-width: 1px;
  border-style: solid;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    Oneliner classes
*/
/**
    Cross browzer
*/
/**
    Update Log:

    2020-04-06::Ollie::Changed btn--primary-link to btn--primary-link (reserve -outline to btns with border color matching said color)
*/
.btn {
  text-decoration: none;
  -moz-text-decoration: none;
  -webkit-text-decoration: none;
  width: auto;
  display: inline-block;
  border-radius: 0.1875rem;
  border-style: solid;
  border-width: 1px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  justify-content: center;
  /**
      States
  */
  /**
      Sizes
  */
  /**
      Themes
  */
}
.btn:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.btn:disabled {
  cursor: default;
}
.btn--md {
  height: 30px;
  font-size: 0.875rem;
}
.btn--sm {
  height: 21px;
  font-size: 0.75rem;
}
.btn--xs {
  height: 18px;
  font-size: 0.6875rem;
}
.btn--dark {
  border-color: #dadcdf;
  /**
      Tertiary
  */
}
.btn--dark-link {
  background-color: #fff;
  border-color: #DADCDF;
  color: #4a4a4a;
}
.btn--dark-link:hover {
  background-color: #f5f5f5;
  box-shadow: none;
}
.btn--dark-link:disabled {
  background-color: rgba(255, 255, 255, 0);
  border-color: #dadcdf;
  color: #939393;
}
.btn--dark-link:active {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #3c3c3c;
}
.btn--primary {
  background-color: #2275D3;
  border-color: #2275D3;
  color: #fff;
}
.btn--primary:hover {
  background-color: #2A81E3;
  border-color: #2A81E3;
}
.btn--primary:disabled {
  background-color: #a3c6f2;
  border-color: #a3c6f2;
}
.btn--primary:active {
  background-color: #0364c8;
  border-color: #0364c8;
}
.btn--primary-secondary {
  color: #2275D3;
  border-color: #dadcdf;
  background-color: #fff;
}
.btn--primary-secondary:hover {
  color: #2A81E3;
}
.btn--primary-secondary:disabled {
  color: #a3c6f2;
}
.btn--primary-secondary:active {
  color: #0364c8;
}
.btn--primary-link {
  background-color: #fff;
  border-color: #dadcdf;
  color: #2275D3;
}
.btn--primary-link:hover {
  background-color: #f5f5f5;
  border-color: #dadcdf;
  color: #2A81E3;
  box-shadow: none;
}
.btn--primary-link:disabled {
  background: #fff;
  border: 1px solid #F5F5F5;
  border-radius: 3px;
  font-family: Roboto-Medium;
  font-size: 11px;
  color: #A3C6F2;
  letter-spacing: 0;
  text-align: center;
}
.btn--primary-link:active {
  background-color: #dadcdf;
  border-color: #dadcdf;
  color: #0364c8;
}
.btn--danger {
  background-color: #e02020;
  border-color: #e02020;
  color: #fff;
}
.btn--danger:hover {
  background-color: #de011c;
  border-color: #de011c;
}
.btn--danger:disabled {
  background-color: #ee98a3;
  border-color: #ee98a3;
}
.btn--danger:active {
  background-color: #ba0017;
  border-color: #ba0017;
}
.btn--danger-link {
  background-color: #fff;
  border-color: #dadcdf;
  color: #e02020;
}
.btn--danger-link:hover {
  background-color: #f5f5f5;
  border-color: #dadcdf;
  color: #de011c;
  box-shadow: none;
}
.btn--danger-link:disabled {
  background-color: rgba(255, 255, 255, 0);
  color: #f097a2;
}
.btn--info {
  background-color: #32bcd4;
  border-color: #32bcd4;
  color: #fff;
}
.btn--outline-light {
  background-color: #fff;
  border-color: #dadcdf;
  color: #4a4a4a;
}
.btn--outline-light:disabled {
  color: #dadcdf;
}
.btn--outline-light:active {
  background-color: #dadcdf;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
.sub-header-wrp, .form-dropdown-options__option {
  display: flex;
  align-items: center;
}

.form-input, .form-dropdown {
  border-radius: 0.1875rem;
  border-color: #e0e0e0;
  border-style: solid;
  border-width: 1px;
  background-color: #ebebeb;
  color: #000;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.form-input:focus:not(:disabled), .form-dropdown:focus:not(:disabled) {
  border-color: #2275D3;
  border-width: 1px;
  border-style: solid;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    Oneliner classes
*/
/**
    Cross browzer
*/
/**
    NOTICE:: Design flaws:: Every non floating form-input need to use form-input--clear-text
*/
input[type=checkbox] {
  margin: 0;
  margin-right: 0.125rem;
}

/**
    Utils
*/
.-select-appearance-none {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.-select-appearance-checkbox {
  appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
}

/**
    Inputs
*/
.form-input, .form-dropdown {
  width: auto;
  box-sizing: border-box;
}
.form-input--xl, .form-dropdown--xl {
  height: 60px;
  font-size: 0.6875rem;
  padding-left: 15px;
  padding-top: 24px;
}
.form-input--lg, .form-dropdown--lg {
  height: 50px;
  padding-left: 15px;
}
.form-input--md, .form-dropdown--md {
  height: 40px;
  font-size: 0.75rem;
  padding-left: 15px;
}
.form-input--sm, .form-dropdown--sm {
  height: 30px;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}
.form-input--xs, .form-dropdown--xs {
  height: 20px;
  font-size: 0.6875rem;
  padding-left: 0.25rem;
}
.form-input:hover, .form-dropdown:hover {
  background-color: #e0e0e0;
}

.form-input {
  padding-top: 16px;
  padding-bottom: 4px;
}
.form-input:disabled, .form-input[readonly=readonly] {
  background-color: #f5f5f5;
  border: 0;
  color: #4a4a4a;
  outline: none;
  user-select: none !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
}
.form-input:disabled:hover, .form-input:disabled:focus, .form-input[readonly=readonly]:hover, .form-input[readonly=readonly]:focus {
  background-color: #f5f5f5 !important;
  border: 0 !important;
}
.form-input:focus {
  outline: none;
}
.form-input--disabled:disabled, .form-input--disabled[readonly=readonly] {
  background-color: #fff !important;
  border: 0 !important;
  color: #4a4a4a;
  padding: 0 !important;
  user-select: none !important;
  -moz-user-select: none !important;
  -webkit-user-select: none !important;
}
.form-input--disabled:disabled:hover, .form-input--disabled[readonly=readonly]:hover {
  background-color: #fff !important;
  border: 0 !important;
}
.form-input--disabled:disabled:focus, .form-input--disabled[readonly=readonly]:focus {
  background-color: #fff !important;
  border: 0 !important;
}
.form-input--area {
  padding: 0.5rem;
  height: 50px;
  resize: both;
  z-index: 100;
  font-size: 0.6875rem;
}
.form-input--area:disabled, .form-input--area[readonly=readonly] {
  background-color: #fff;
  border: 0;
  color: #4a4a4a;
  padding: 0;
}
.form-input--area:disabled:hover, .form-input--area:disabled:focus, .form-input--area[readonly=readonly]:hover, .form-input--area[readonly=readonly]:focus {
  border: 0 !important;
  background-color: #fff !important;
}
.form-input--area--disabled:disabled, .form-input--area--disabled[readonly=readonly] {
  opacity: 0.5;
  background-color: #ebebeb;
}
.form-input--area--disabled:disabled:hover, .form-input--area--disabled[readonly=readonly]:hover {
  background-color: #ebebeb;
}
.form-input--area--sm {
  font-size: 0.75rem;
}
.form-input--md:not(:focus):not(:valid) + .form-input-wrp__floating-label {
  top: 10px;
  font-size: 0.875rem;
}
.form-input--md:focus + .form-input-wrp__floating-label, .form-input--md:not(:focus):valid + .form-input-wrp__floating-label {
  top: 5px;
  font-size: 0.6875rem;
}
.form-input--xl {
  font-size: 0.875rem;
}
.form-input--xl:not(:focus):not(:valid) + .form-input-wrp__floating-label {
  top: 22px;
  font-size: 1rem;
}
.form-input--xl:focus + .form-input-wrp__floating-label, .form-input--xl:not(:focus):valid + .form-input-wrp__floating-label {
  top: 12px;
}
.form-input--clear-text {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.form-dropdown {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("../../Images/icon_dropdown.svg");
  background-position: center right 0.25rem;
  background-repeat: no-repeat;
  padding-right: 0.75rem;
  cursor: pointer;
}
.form-dropdown:focus {
  border-color: #2275D3 !important;
}
.form-dropdown:disabled {
  opacity: 0.5;
}
.form-dropdown:disabled:hover {
  background-color: #ebebeb;
}
.form-dropdown--xl {
  background-position: center right 1.5rem;
}
.form-dropdown--xs {
  background-size: 0.5rem;
}
.form-dropdown--lite {
  background-image: url("../../Images/icons/dropdown_down.svg");
  background-color: #fff !important;
  border-color: #fff !important;
  color: #707070 !important;
  font-size: 0.75rem;
}
.form-dropdown--white {
  background-image: url("../../Images/icons/dropdown_down.svg");
  background-color: #fff !important;
  color: #707070 !important;
  font-size: 0.75rem;
}

/** Input borders based on valid, focus states */
input[type=text]:not(:valid):hover, input[type=text]:not(:valid):focus, input[type=password]:not(:valid):hover, input[type=password]:not(:valid):focus {
  background-color: #e0e0e0;
}
input[type=text]:valid:focus, input[type=password]:valid:focus {
  border-color: #2275D3;
}

.form-dropdown-options {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 8px 10px 1px rgba(0, 0, 0, 0.14);
  border-radius: 0.1875rem;
  z-index: 100;
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.form-dropdown-options__option {
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #4a4a4a;
  text-overflow: ellipsis;
  text-decoration: none;
  padding: 0.25rem;
}
.form-dropdown-options__option--selected, .form-dropdown-options__option:hover {
  background-color: #eeeeee;
}
.form-dropdown-options__option--lg {
  min-height: 44px;
  line-height: 24px;
}
.form-dropdown-options__option--md {
  min-height: 32px;
  line-height: 24px;
}
.form-dropdown-options__option--xs {
  min-height: 22px;
  line-height: unset !important;
}

.form-input-wrp {
  position: relative;
}
.form-input-wrp__floating-label {
  position: absolute;
  pointer-events: none;
  color: #707070;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  left: 15px;
}

/**
    Input groups
*/
.form-input-group {
  position: relative;
  display: flex;
}
.form-input-group__input {
  border-left: none;
  border-right: none;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
}
.checkbox-label input[type=checkbox] {
  margin: 0;
  margin-right: 0.125rem;
}
.checkbox-label label {
  color: #4a4a4a;
  font-size: 0.6875rem;
}

/**
    Radio
*/
.radio-label {
  display: flex;
  align-items: center;
}
.radio-label input[type=radio] {
  margin-top: 0;
}

.--nm {
  top: 3px;
}
.--nm input {
  margin: 0;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    Oneliner classes
*/
/**
    Cross browzer
*/
.-m-none {
  margin: 0;
}

.-m-auto {
  margin: auto;
}

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

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

.-ml-none {
  margin-left: 0 !important;
}

.-mr-none {
  margin-right: 0 !important;
}

.-m-xs {
  margin: 0.25rem !important;
}

.-mt-xs {
  margin-top: 0.25rem !important;
}

.-mt-auto {
  margin-top: auto;
}

.-mb-xs {
  margin-bottom: 0.25rem !important;
}

.-mb-auto {
  margin-bottom: auto;
}

.-ml-xs {
  margin-left: 0.25rem !important;
}

.-ml-auto {
  margin-left: auto;
}

.-mr-xs {
  margin-right: 0.25rem !important;
}

.-mr-auto {
  margin-right: auto;
}

.-m-sm {
  margin: 0.5rem !important;
}

.-mt-sm {
  margin-top: 0.5rem !important;
}

.-mt-auto {
  margin-top: auto;
}

.-mb-sm {
  margin-bottom: 0.5rem !important;
}

.-mb-auto {
  margin-bottom: auto;
}

.-ml-sm {
  margin-left: 0.5rem !important;
}

.-ml-auto {
  margin-left: auto;
}

.-mr-sm {
  margin-right: 0.5rem !important;
}

.-mr-auto {
  margin-right: auto;
}

.-m-md {
  margin: 0.75rem !important;
}

.-mt-md {
  margin-top: 0.75rem !important;
}

.-mt-auto {
  margin-top: auto;
}

.-mb-md {
  margin-bottom: 0.75rem !important;
}

.-mb-auto {
  margin-bottom: auto;
}

.-ml-md {
  margin-left: 0.75rem !important;
}

.-ml-auto {
  margin-left: auto;
}

.-mr-md {
  margin-right: 0.75rem !important;
}

.-mr-auto {
  margin-right: auto;
}

.-m-lg {
  margin: 1.5rem !important;
}

.-mt-lg {
  margin-top: 1.5rem !important;
}

.-mt-auto {
  margin-top: auto;
}

.-mb-lg {
  margin-bottom: 1.5rem !important;
}

.-mb-auto {
  margin-bottom: auto;
}

.-ml-lg {
  margin-left: 1.5rem !important;
}

.-ml-auto {
  margin-left: auto;
}

.-mr-lg {
  margin-right: 1.5rem !important;
}

.-mr-auto {
  margin-right: auto;
}

.-m-xl {
  margin: 3rem !important;
}

.-mt-xl {
  margin-top: 3rem !important;
}

.-mt-auto {
  margin-top: auto;
}

.-mb-xl {
  margin-bottom: 3rem !important;
}

.-mb-auto {
  margin-bottom: auto;
}

.-ml-xl {
  margin-left: 3rem !important;
}

.-ml-auto {
  margin-left: auto;
}

.-mr-xl {
  margin-right: 3rem !important;
}

.-mr-auto {
  margin-right: auto;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    Oneliner classes
*/
/**
    Cross browzer
*/
.-p-none {
  padding: 0;
}

.-pt-none {
  padding-top: 0 !important;
}

.-pb-none {
  padding-bottom: 0 !important;
}

.-pl-none {
  padding-left: 0 !important;
}

.-pr-none {
  padding-right: 0 !important;
}

.-p-xs {
  padding: 0.25rem !important;
}

.-pt-xs {
  padding-top: 0.25rem !important;
}

.-pt-auto {
  padding-top: auto;
}

.-pb-xs {
  padding-bottom: 0.25rem !important;
}

.-pb-auto {
  padding-bottom: auto;
}

.-pl-xs {
  padding-left: 0.25rem !important;
}

.-pl-auto {
  padding-left: auto;
}

.-pr-xs {
  padding-right: 0.25rem !important;
}

.-pr-auto {
  padding-right: auto;
}

.-p-sm {
  padding: 0.5rem !important;
}

.-pt-sm {
  padding-top: 0.5rem !important;
}

.-pt-auto {
  padding-top: auto;
}

.-pb-sm {
  padding-bottom: 0.5rem !important;
}

.-pb-auto {
  padding-bottom: auto;
}

.-pl-sm {
  padding-left: 0.5rem !important;
}

.-pl-auto {
  padding-left: auto;
}

.-pr-sm {
  padding-right: 0.5rem !important;
}

.-pr-auto {
  padding-right: auto;
}

.-p-md {
  padding: 0.75rem !important;
}

.-pt-md {
  padding-top: 0.75rem !important;
}

.-pt-auto {
  padding-top: auto;
}

.-pb-md {
  padding-bottom: 0.75rem !important;
}

.-pb-auto {
  padding-bottom: auto;
}

.-pl-md {
  padding-left: 0.75rem !important;
}

.-pl-auto {
  padding-left: auto;
}

.-pr-md {
  padding-right: 0.75rem !important;
}

.-pr-auto {
  padding-right: auto;
}

.-p-lg {
  padding: 1.5rem !important;
}

.-pt-lg {
  padding-top: 1.5rem !important;
}

.-pt-auto {
  padding-top: auto;
}

.-pb-lg {
  padding-bottom: 1.5rem !important;
}

.-pb-auto {
  padding-bottom: auto;
}

.-pl-lg {
  padding-left: 1.5rem !important;
}

.-pl-auto {
  padding-left: auto;
}

.-pr-lg {
  padding-right: 1.5rem !important;
}

.-pr-auto {
  padding-right: auto;
}

.-p-xl {
  padding: 3rem !important;
}

.-pt-xl {
  padding-top: 3rem !important;
}

.-pt-auto {
  padding-top: auto;
}

.-pb-xl {
  padding-bottom: 3rem !important;
}

.-pb-auto {
  padding-bottom: auto;
}

.-pl-xl {
  padding-left: 3rem !important;
}

.-pl-auto {
  padding-left: auto;
}

.-pr-xl {
  padding-right: 3rem !important;
}

.-pr-auto {
  padding-right: auto;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    Oneliner classes
*/
/**
    Cross browzer
*/
.-d-none {
  display: none;
}

.-d-flex {
  display: flex;
}

.-d-inline-flex {
  display: inline-flex;
}

.-d-block {
  display: block;
}

.-d-inline {
  display: inline;
}

.-d-inline-block {
  display: inline-block;
}

.-visibility-hidden {
  visibility: hidden;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    Oneliner classes
*/
/**
    Cross browzer
*/
/**
    Decorations
*/
.-text-decoration-none {
  text-decoration: none;
}

.-text-italic {
  font-style: italic;
}

.-text-underline {
  text-decoration: underline !important;
}

.-font-weight-xs {
  font-weight: 300 !important;
}

.-font-weight-sm {
  font-weight: 400 !important;
}

.-font-weight-md {
  font-weight: 500 !important;
}

.-font-weight-lg {
  font-weight: 700 !important;
}

.-font-weight-xl {
  font-weight: 900 !important;
}

/**
    Colors
*/
.-text-dark {
  color: #4a4a4a !important;
}

.-text-black {
  color: #000 !important;
}

.-text-white {
  color: #fff !important;
}

.-text-primary {
  color: #2275D3 !important;
}

.-text-danger {
  color: #e02020 !important;
}

.-text-secondary {
  color: #707070 !important;
}

.-text-light {
  color: #dadcdf !important;
}

.-text-success {
  color: #06a00e !important;
}

/**
    Sizes
*/
.-text-xs {
  font-size: 0.6875rem !important;
}

.-text-sm {
  font-size: 0.75rem !important;
}

.-text-md {
  font-size: 0.875rem !important;
}

.-text-lg {
  font-size: 1rem !important;
}

.-text-xl {
  font-size: 1.125rem !important;
}

/**
    Alignments
*/
.-text-center {
  text-align: center !important;
}

@media print {
  .-text-center-print {
    text-align: center;
  }
}
.-text-left {
  text-align: left !important;
}

.-text-right {
  text-align: right !important;
}

.-text-end {
  text-align: end !important;
}

/**
    Truncate texts
*/
.-text-ellipsis, #_cblCustomerFlag tr td label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.-no-wrap {
  white-space: nowrap;
}

.-break-word {
  word-wrap: break-word;
  word-break: break-word;
}

.-break-all {
  word-break: break-all;
}

.-line-height-15 {
  line-height: 1.5;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    Oneliner classes
*/
/**
    Cross browzer
*/
/**
    Alignments
*/
.-justify-center {
  justify-content: center;
}

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

.-justify-flex-start {
  justify-content: flex-start;
}

.-justify-flex-end {
  justify-content: flex-end;
}

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

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

.-align-flex-start {
  align-items: flex-start;
}

.-valign-middle {
  vertical-align: middle;
}

.-valign-top {
  vertical-align: top !important;
}

.-valign-bottom {
  vertical-align: bottom;
}

.-valign-text-top {
  vertical-align: text-top;
}

.-valign-text-bottom {
  vertical-align: text-bottom;
}

.-flex-row {
  flex-direction: row;
}

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

/**
    Positions
*/
.-position-absolute {
  position: absolute;
}

.-position-relative {
  position: relative;
}

.-position-block {
  position: relative;
}

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

.-position-fixed {
  position: fixed;
}

/**
    Border radius
*/
.-rounded-none {
  border-radius: 0rem;
}

.-rounded-xs {
  border-radius: 0.1875rem;
}

.-rounded-sm, dialog {
  border-radius: 0.375rem;
}

.-rounded-md {
  border-radius: 0.75rem;
}

.-rounded-lg {
  border-radius: 1.5rem;
}

.-rounded-xl {
  border-radius: 3rem;
}

/**
    Height/Width
*/
.-h-auto {
  height: auto !important;
}

.-w-auto {
  width: auto;
}

.-h-5 {
  height: 5%;
}

.-w-5 {
  width: 5%;
}

.-h-10 {
  height: 10%;
}

.-w-10 {
  width: 10%;
}

.-h-15 {
  height: 15%;
}

.-w-15 {
  width: 15%;
}

.-h-20 {
  height: 20%;
}

.-w-20 {
  width: 20%;
}

.-h-25 {
  height: 25%;
}

.-w-25 {
  width: 25%;
}

.-h-30 {
  height: 30%;
}

.-w-30 {
  width: 30%;
}

.-h-35 {
  height: 35%;
}

.-w-35 {
  width: 35%;
}

.-h-40 {
  height: 40%;
}

.-w-40 {
  width: 40%;
}

.-h-45 {
  height: 45%;
}

.-w-45 {
  width: 45%;
}

.-h-50 {
  height: 50%;
}

.-w-50 {
  width: 50%;
}

.-h-55 {
  height: 55%;
}

.-w-55 {
  width: 55%;
}

.-h-60 {
  height: 60%;
}

.-w-60 {
  width: 60%;
}

.-h-65 {
  height: 65%;
}

.-w-65 {
  width: 65%;
}

.-h-70 {
  height: 70%;
}

.-w-70 {
  width: 70%;
}

.-h-75 {
  height: 75%;
}

.-w-75 {
  width: 75%;
}

.-h-80 {
  height: 80%;
}

.-w-80 {
  width: 80%;
}

.-h-85 {
  height: 85%;
}

.-w-85 {
  width: 85%;
}

.-h-90 {
  height: 90%;
}

.-w-90 {
  width: 90%;
}

.-h-95 {
  height: 95%;
}

.-w-95 {
  width: 95%;
}

.-h-100 {
  height: 100%;
}

.-w-100 {
  width: 100%;
}

/**
    Borders
*/
.-border-none, dialog {
  border: 0 !important;
}
.-border-none--top {
  border-top-width: 0px;
  border-top-style: solid;
  border-top-color: #fff;
  border-top-color: #fff;
  border-top-style: solid;
  border-top-width: 1px;
}
.-border-primary {
  border-color: #2275D3;
}
.-border-dark {
  border-color: #4a4a4a;
}

/**
    Backgrounds
*/
.-bg-dark {
  background-color: #4a4a4a;
  font-weight: 600;
}
.-bg-white {
  background-color: #fff !important;
}
.-bg-light {
  background-color: #dadcdf !important;
}
.-bg-lighter {
  background-color: #eeeeee;
}
.-bg-even-lighter {
  background-color: #fafafa;
}
.-bg-secondary {
  background-color: #707070;
}
.-bg-gray-88 {
  background-color: #e0e0e0 !important;
}
.-bg-gray-88:hover {
  background-color: #e0e0e0 !important;
}

/**
    User select
*/
.-user-select-none {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

/**
    Mouse pointer
*/
.-cursor-default {
  cursor: default;
}

.-cursor-pointer {
  cursor: pointer;
}

/**
    Overflows
*/
.-overflow-hidden {
  overflow: hidden;
}

.-overflow-auto {
  overflow: auto;
}

.-overflow-scroll {
  overflow: scroll;
}

.-overflow-x-hidden {
  overflow-x: hidden;
}

.-overflow-x-auto {
  overflow-x: auto;
}

.-overflow-x-scroll {
  overflow-x: scroll;
}

.-overflow-y-hidden {
  overflow-y: hidden;
}

.-overflow-y-auto {
  overflow-y: auto !important;
}

.-overflow-y-scroll {
  overflow-y: scroll;
}

@media print {
  .-overflow-y-hidden--print {
    overflow-y: hidden;
  }
}
/**
    Floats
*/
.-float-left {
  float: left;
}

.-float-right {
  float: right;
}

/**
    Lists
*/
.-list-style-none {
  list-style-type: none;
}

/**
    Opacity
*/
.-opacity-50 {
  opacity: 0.5;
}

/**
    General shadow
*/
.-shadow-sm, dialog {
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.-shadow-none {
  box-shadow: none;
}

/**
    Border wrp with header
*/
.block-wrp {
  border-radius: 0.1875rem;
  border-color: #dadcdf;
  border-width: 1px;
  border-style: solid;
  margin-right: 0.25rem;
  padding: 0.5rem;
  padding-top: 0.75rem;
  position: relative;
}
.block-wrp__header {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-weight: 500;
  font-size: 0.75rem;
}

.-border-bottom {
  border-left: 0 !important;
  border-right: 0 !important;
}
.-border-bottom:first-child {
  border: 0 !important;
}
.-border-bottom:not(:first-child) {
  border-bottom: 0 !important;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
a[disabled=disabled] {
  color: #a4a4a4 !important;
  cursor: default;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.link {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-weight: 400;
  font-size: 0.6875rem;
}
.link:disabled, .link[disabled=true] {
  color: #a4a4a4 !important;
  cursor: default;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.link--primary {
  color: #2275D3 !important;
}
.link--primary:hover {
  color: #2A81E3;
}
.link--primary:active {
  color: #0364c8;
}
.link--inline {
  display: inline-block;
}
.link--danger {
  color: #e02020;
}
.link--danger:hover {
  color: #de011c;
}
.link--danger:active {
  color: #ba0017;
}
.link--dark {
  color: #4a4a4a;
}
.link--dark:hover {
  color: #707070;
}
.link--dark:active {
  color: #e1e1e1;
}
.link--secondary {
  color: #707070;
}
.link--info {
  color: #32bcd4;
}
.link--white {
  color: #fff;
}
.link--underline {
  text-decoration: underline;
}

.isDisabled {
  color: #dadcdf;
  cursor: not-allowed;
  pointer-events: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
.label--error {
  color: #e02020;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
.sub-header-wrp, .form-dropdown-options__option {
  display: flex;
  align-items: center;
}

.form-input, .form-dropdown {
  border-radius: 0.1875rem;
  border-color: #e0e0e0;
  border-style: solid;
  border-width: 1px;
  background-color: #ebebeb;
  color: #000;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.form-input:focus:not(:disabled), .form-dropdown:focus:not(:disabled) {
  border-color: #2275D3;
  border-width: 1px;
  border-style: solid;
}

/**
    Subheaders
*/
.sub-header-wrp {
  width: 100%;
  height: 30px;
  color: #e1e1e1;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #4a4a4a;
}
.sub-header-wrp__dynamic-text {
  color: #fff;
}

/**
    Loading icon
*/
#_b4t_loadingDiv_, #divLoading, #loadingDiv {
  z-index: 10000;
  background-color: #f5f5f5 !important;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
#_b4t_loadingDiv_ table, #divLoading table, #loadingDiv table {
  width: auto;
  height: auto;
  margin: 0;
}

/**
    VaultPrint
*/
.print_body {
  text-align: left;
  width: 400px;
  font-size: 12px;
}

@media print {
  .screen_only {
    display: none;
  }

  .print_body {
    text-align: left;
    width: 400px;
    font-size: 16px;
  }
}
.mw-100px {
  max-width: 100px;
}

.mw-200px {
  max-width: 200px;
}

.mw-250px {
  max-width: 250px;
}

.mw-300px {
  max-width: 300px;
}

.mw-550px {
  max-width: 550px;
}

.row-border-spacing--xs tbody tr {
  border-style: solid;
  border-width: 4px;
  border-color: #fff;
}

.tblItemFocused {
  background-color: #e1e1e1;
}
.tblItemFocused * {
  background-color: #e1e1e1;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
/**
    Adjust label space
*/
/*td {
    label {
        position: relative;
        top: $mp-xs;
    }
}*/
.table-layout-fixed {
  table-layout: fixed;
}

.report-table {
  font-size: 0.6875rem;
}
.report-table tr {
  height: 20px;
  transition: background-color 0.3s ease;
}
.report-table tr th, .report-table tr td {
  padding-left: 0.25rem;
  vertical-align: middle;
  border: 0;
}
.report-table__header {
  background-color: #4a4a4a;
  font-weight: 500;
  border-style: solid;
  border-width: 1px;
  border-color: #4a4a4a;
}
.report-table__header th, .report-table__header td {
  color: #fff;
  text-align: left;
  vertical-align: middle;
}
.report-table__header th a, .report-table__header td a {
  color: #fff;
  text-decoration: none;
}
.report-table__header th a:hover, .report-table__header td a:hover {
  text-decoration: underline;
}
.report-table__row {
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #ededed;
  border-top: 0;
}
.report-table__row:hover {
  background-color: #dadcdf;
  z-index: 500;
}
.report-table__row td {
  vertical-align: middle;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.report-table--text-left tr th, .report-table--text-left tr td {
  text-align: left;
}

.-border-collapse {
  border-collapse: collapse !important;
}

.-border-separate {
  border-collapse: separate !important;
}

.table--valign-middle tbody tr td {
  vertical-align: middle;
}

/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
.sub-nav {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #f0f0f0;
  list-style: none;
  padding: 0;
}
.sub-nav__tab {
  color: #2275D3;
  text-decoration: none;
  color: #2275D3;
  text-decoration: none;
  font-size: 0.875rem !important;
  position: relative;
  top: 2px;
  height: 20px;
  display: inline-flex;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-right: 1.5rem;
  font-weight: 500;
}
.sub-nav__tab * {
  color: #2275D3;
  text-decoration: none;
  font-size: 0.875rem !important;
}
.sub-nav__tab[data-active=true], .sub-nav__tab[data-current=true], .sub-nav__tab--selected {
  border-bottom-color: #4a4a4a;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  color: #4a4a4a;
  font-weight: 500 !important;
}
.sub-nav__tab[data-active=true] *, .sub-nav__tab[data-current=true] *, .sub-nav__tab--selected * {
  color: #4a4a4a;
  font-weight: 500 !important;
}
.sub-nav__tab[data-disabled=true], .sub-nav__tab:disabled, .sub-nav__tab--disabled {
  color: #dadcdf !important;
}
.sub-nav__tab[data-disabled=true] *, .sub-nav__tab:disabled *, .sub-nav__tab--disabled * {
  color: #dadcdf !important;
}

.viewTab {
  border-bottom: solid 2px #ededed;
}

.tabItem {
  display: table-cell;
  position: relative;
  bottom: -2px;
  padding-bottom: 4px;
  font-weight: 500;
}
.tabItem * {
  font-weight: 500;
}
.tabItem--slected {
  border-bottom: solid 2px black;
}

/**
    Import variables
*/
/**
    SCSS Variables
*/
/**
    Colors
*/
/**
    Font sizes
*/
/**
    Font weights
*/
/**
    Margins/Paddings
*/
/**
    Border radius
*/
:root {
  /** Theme variables/hooks */
  --background-color: $white;
  --font-color: $dark;
}

*, ::before, ::after {
  /** Override all fonts */
  font-family: "Roboto", sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.04);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  outline: 0px none !important;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #707070;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #707070;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #707070;
}

/** Hide arrow down on IE */
select::-ms-expand {
  display: none;
}

body {
  background-color: #fff;
  color: #4a4a4a;
  font-size: 0.75rem;
}

iframe {
  border: none;
}

ul, ol, dl {
  list-style-type: disc;
  list-style-position: inside;
}

hr {
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  border: 0;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #4a4a4a;
}

/** BFT-17119 */
sup {
  position: relative;
  top: -3px;
}

sub {
  position: relative;
  top: 3px;
}

/**
    All pages
*/
#_cblCustomerFlag tr {
  height: 20px;
}
#_cblCustomerFlag tr td {
  display: inline-flex;
  align-items: center;
  min-width: 105px;
}
#_cblCustomerFlag tr td label {
  width: 90px;
  margin-right: 0.25rem;
}

.radio-list tr {
  height: 20px;
}
.radio-list tr td {
  display: inline-flex;
  align-items: center;
}
.radio-list tr td input[type=radio] {
  margin: 0;
  margin-right: 0.25rem;
}
.radio-list tr td label {
  margin-right: 0.25rem;
}

.ui-widget.ui-widget-content {
  /* border: 1px solid #C5C5C5; */
  background: #ebebeb;
}

.updating {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  filter: alpha(opacity=5);
  opacity: 0.05;
  background-color: #e1e1e1;
  z-index: 100;
}

/* late-binding dropdown list */
.loadingList {
  display: none;
  background-color: White;
  border: solid 1px #7F9DB9;
  z-index: 100;
  position: absolute;
  margin-top: 0;
  padding-left: 0;
  vertical-align: middle;
}

.list-bullet li {
  list-style-type: disc;
}

/**
    Print screen
*/
@media print {
  .HideFromPrint {
    display: none;
  }
}
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 180px;
  background-color: #fff;
  color: #4a4a4a;
  border-radius: 3px;
  padding: 10px;
  display: inline-block;
  word-break: break-word;
  /* Position the tooltip */
  position: absolute;
  left: 15px;
  z-index: 1;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.31);
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.txtNote {
  width: 14px;
  height: 14px;
  position: relative;
  top: 2px;
  margin-left: 5px;
}

.txtNote:hover {
  cursor: pointer;
}

/*# sourceMappingURL=styles.css.map */
