/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */

/* position */

.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* toast styles */

.toast-title {
  font-weight: bold;
}

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

.toast-message a,
.toast-message label {
  color: #FFFFFF;
}

.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/

button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}

.toast-container * {
  box-sizing: border-box;
}

.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}

.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */

.toast-info {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */

.toast-error {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */

.toast-success {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */

.toast-warning {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' width='576' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'/%3E%3C/svg%3E");
}

.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}

.toast-success {
  background-color: #51A351;
}

.toast-error {
  background-color: #BD362F;
}

.toast-info {
  background-color: #2F96B4;
}

.toast-warning {
  background-color: #F89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}

/* Responsive Design */

@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

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

.iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }

.iti__hide {
    display: none; }

.iti__v-hide {
    visibility: hidden; }

.iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }

.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px; }

.iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555; }

.iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }

.iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }

.iti__country-list--dropup {
      bottom: 100%;
      margin-bottom: -1px; }

@media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }

.iti__flag-box {
    display: inline-block;
    width: 20px; }

.iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }

.iti__country {
    padding: 5px 10px;
    outline: none; }

.iti__dial-code {
    color: #999; }

.iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }

.iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }

.iti__flag-box, .iti__country-name {
    margin-right: 6px; }

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }

.iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
  .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default; }

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
    .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
      background-color: transparent; }

.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05); }

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px; }

.iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }

.iti--container:hover {
      cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }

.iti__flag.iti__be {
    width: 18px; }

.iti__flag.iti__ch {
    width: 15px; }

.iti__flag.iti__mc {
    width: 19px; }

.iti__flag.iti__ne {
    width: 18px; }

.iti__flag.iti__np {
    width: 13px; }

.iti__flag.iti__va {
    width: 15px; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }

.iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }

.iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }

.iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }

.iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }

.iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }

.iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }

.iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }

.iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }

.iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }

.iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }

.iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }

.iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }

.iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }

.iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }

.iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }

.iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }

.iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }

.iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }

.iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }

.iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }

.iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }

.iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }

.iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }

.iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }

.iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }

.iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }

.iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }

.iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }

.iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }

.iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }

.iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }

.iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }

.iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }

.iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }

.iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }

.iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }

.iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }

.iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }

.iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }

.iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }

.iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }

.iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }

.iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }

.iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }

.iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }

.iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }

.iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }

.iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }

.iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }

.iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }

.iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }

.iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }

.iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }

.iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }

.iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }

.iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }

.iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }

.iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }

.iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }

.iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }

.iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }

.iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }

.iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }

.iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }

.iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }

.iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }

.iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }

.iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }

.iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }

.iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }

.iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }

.iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }

.iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }

.iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }

.iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }

.iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }

.iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }

.iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }

.iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }

.iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }

.iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }

.iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }

.iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }

.iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }

.iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }

.iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }

.iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }

.iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }

.iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }

.iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }

.iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }

.iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }

.iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }

.iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }

.iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }

.iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }

.iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }

.iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }

.iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }

.iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }

.iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }

.iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }

.iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }

.iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }

.iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }

.iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }

.iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }

.iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }

.iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }

.iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }

.iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }

.iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }

.iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }

.iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }

.iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }

.iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }

.iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }

.iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }

.iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }

.iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }

.iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }

.iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }

.iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }

.iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }

.iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }

.iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }

.iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }

.iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }

.iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }

.iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }

.iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }

.iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }

.iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }

.iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }

.iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }

.iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }

.iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }

.iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }

.iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }

.iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }

.iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }

.iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }

.iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }

.iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }

.iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }

.iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }

.iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }

.iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }

.iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }

.iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }

.iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }

.iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }

.iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }

.iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }

.iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }

.iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }

.iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }

.iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }

.iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }

.iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }

.iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }

.iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }

.iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }

.iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }

.iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }

.iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }

.iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }

.iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }

.iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }

.iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }

.iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }

.iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }

.iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }

.iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }

.iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }

.iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }

.iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }

.iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }

.iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }

.iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }

.iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }

.iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }

.iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }

.iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }

.iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }

.iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }

.iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }

.iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }

.iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }

.iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }

.iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }

.iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }

.iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }

.iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }

.iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }

.iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }

.iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }

.iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }

.iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }

.iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }

.iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }

.iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }

.iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }

.iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }

.iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }

.iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }

.iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }

.iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }

.iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }

.iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }

.iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }

.iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }

.iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }

.iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }

.iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }

.iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }

.iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }

.iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }

.iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }

.iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }

.iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }

.iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }

.iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }

.iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }

.iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }

.iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }

.iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }

.iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }

.iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }

.iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }

.iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }

.iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }

.iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }

.iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }

.iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }

.iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }

.iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }

.iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }

.iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }

.iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }

.iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }

.iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }

.iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }

.iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }

.iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }

.iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }

.iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }

.iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }

.iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }

.iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }

.iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }

.iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }

.iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }

.iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }

.iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }

.iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }

.iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }

.iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url('flags.png');
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url('flags@2x.png'); } }

.iti__flag.iti__np {
  background-color: transparent; }

body {
    overflow-x: hidden;
}

.confirm-btn-container>button {
    width: 100% !important;
}

label.star {
    color: white !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.bg-primary-custom {
    background-color: #242965 !important;
    color: white !important;
}

.badge-secondary-custom {
    background-color: #890137 !important;
    color: white !important;
}

input.star-5:checked~label.star:before {
    color: #e7a91c !important;
    text-shadow: none !important;
}

.btn-link,
a {
    text-decoration: none !important;
}

.item-custom {
    position: relative !important;
    background-color: #232f3e !important;
}

.multiselect-item-checkbox-div {
    color: #ffffff !important;
}

.multiselect-item-checkbox-div:hover {
    color: #1e2125 !important;
}

.overflow-wrap {
    overflow-wrap: break-word !important;
}

.multiselect-dropdown .dropdown-btn .selected-item-container .selected-item{
    max-width: 100% !important;
    margin-bottom: 4px !important;
}

.popover .popover-header h3 {
    color: black !important
}

.timepicker-overlay {
    z-index: 10000000 !important;
}

.timepicker-backdrop-overlay {
    z-index: 10000000 !important;
}


.ngx-datatable {
  display: block;
  overflow: hidden;
  justify-content: center;
  position: relative;
  transform: translate3d(0, 0, 0);
  /**
   * Vertical Scrolling Adjustments
   */
  /**
   * Horizontal Scrolling Adjustments
   */
  /**
   * Fixed Header Height Adjustments
   */
  /**
   * Fixed row height adjustments
   */
  /**
   * Shared Styles
   */
  /**
   * Header Styles
   */
  /**
   * Body Styles
   */
  /**
   * Footer Styles
   */ }
  .ngx-datatable [hidden] {
    display: none !important; }
  .ngx-datatable *,
  .ngx-datatable *:before,
  .ngx-datatable *:after {
    box-sizing: border-box; }
  .ngx-datatable.scroll-vertical .datatable-body {
    overflow-y: auto; }
  .ngx-datatable.scroll-vertical.virtualized .datatable-body .datatable-row-wrapper {
    position: absolute; }
  .ngx-datatable.scroll-horz .datatable-body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
  .ngx-datatable.fixed-header .datatable-header .datatable-header-inner {
    white-space: nowrap; }
  .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
  .ngx-datatable.fixed-row .datatable-scroll {
    white-space: nowrap; }
  .ngx-datatable.fixed-row .datatable-scroll .datatable-body-row {
      white-space: nowrap; }
  .ngx-datatable.fixed-row .datatable-scroll .datatable-body-row .datatable-body-cell {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
  .ngx-datatable.fixed-row .datatable-scroll .datatable-body-row .datatable-body-group-cell {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
  .ngx-datatable .datatable-body-row,
  .ngx-datatable .datatable-row-center,
  .ngx-datatable .datatable-header-inner {
    display: flex;
    flex-direction: row;
    -o-flex-flow: row;
    flex-flow: row; }
  .ngx-datatable .datatable-body-cell,
  .ngx-datatable .datatable-header-cell {
    overflow-x: hidden;
    vertical-align: top;
    display: inline-block;
    line-height: 1.625; }
  .ngx-datatable .datatable-body-cell:focus,
    .ngx-datatable .datatable-header-cell:focus {
      outline: none; }
  .ngx-datatable .datatable-row-left,
  .ngx-datatable .datatable-row-right {
    z-index: 9; }
  .ngx-datatable .datatable-row-left,
  .ngx-datatable .datatable-row-center,
  .ngx-datatable .datatable-row-group,
  .ngx-datatable .datatable-row-right {
    position: relative; }
  .ngx-datatable .datatable-header {
    display: block;
    overflow: hidden; }
  .ngx-datatable .datatable-header .datatable-header-inner {
      align-items: stretch;
      -webkit-align-items: stretch; }
  .ngx-datatable .datatable-header .datatable-header-cell {
      position: relative;
      display: inline-block; }
  .ngx-datatable .datatable-header .datatable-header-cell.sortable .datatable-header-cell-wrapper {
        cursor: pointer; }
  .ngx-datatable .datatable-header .datatable-header-cell.longpress .datatable-header-cell-wrapper {
        cursor: move; }
  .ngx-datatable .datatable-header .datatable-header-cell .sort-btn {
        line-height: 100%;
        vertical-align: middle;
        display: inline-block;
        cursor: pointer; }
  .ngx-datatable .datatable-header .datatable-header-cell .resize-handle,
      .ngx-datatable .datatable-header .datatable-header-cell .resize-handle--not-resizable {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        padding: 0 4px;
        visibility: hidden; }
  .ngx-datatable .datatable-header .datatable-header-cell .resize-handle {
        cursor: ew-resize; }
  .ngx-datatable .datatable-header .datatable-header-cell.resizeable:hover .resize-handle {
        visibility: visible; }
  .ngx-datatable .datatable-header .datatable-header-cell:hover .resize-handle--not-resizable {
        visibility: visible; }
  .ngx-datatable .datatable-header .datatable-header-cell .targetMarker {
        position: absolute;
        top: 0;
        bottom: 0; }
  .ngx-datatable .datatable-header .datatable-header-cell .targetMarker.dragFromLeft {
          right: 0; }
  .ngx-datatable .datatable-header .datatable-header-cell .targetMarker.dragFromRight {
          left: 0; }
  .ngx-datatable .datatable-header .datatable-header-cell .datatable-header-cell-template-wrap {
        height: inherit; }
  .ngx-datatable .datatable-body {
    position: relative;
    z-index: 10;
    display: block; }
  .ngx-datatable .datatable-body .datatable-scroll {
      display: inline-block; }
  .ngx-datatable .datatable-body .datatable-row-detail {
      overflow-y: hidden; }
  .ngx-datatable .datatable-body .datatable-row-wrapper {
      display: flex;
      flex-direction: column; }
  .ngx-datatable .datatable-body .datatable-body-row {
      outline: none; }
  .ngx-datatable .datatable-body .datatable-body-row > div {
        display: flex; }
  .ngx-datatable .datatable-footer {
    display: block;
    width: 100%;
    overflow: auto; }
  .ngx-datatable .datatable-footer .datatable-footer-inner {
      display: flex;
      align-items: center;
      width: 100%; }
  .ngx-datatable .datatable-footer .selected-count .page-count {
      flex: 1 1 40%; }
  .ngx-datatable .datatable-footer .selected-count .datatable-pager {
      flex: 1 1 60%; }
  .ngx-datatable .datatable-footer .page-count {
      flex: 1 1 20%; }
  .ngx-datatable .datatable-footer .datatable-pager {
      flex: 1 1 80%;
      text-align: right; }
  .ngx-datatable .datatable-footer .datatable-pager .pager,
      .ngx-datatable .datatable-footer .datatable-pager .pager li {
        padding: 0;
        margin: 0;
        display: inline-block;
        list-style: none; }
  .ngx-datatable .datatable-footer .datatable-pager .pager li,
      .ngx-datatable .datatable-footer .datatable-pager .pager li a {
        outline: none; }
  .ngx-datatable .datatable-footer .datatable-pager .pager li a {
        cursor: pointer;
        display: inline-block; }
  .ngx-datatable .datatable-footer .datatable-pager .pager li.disabled a {
        cursor: not-allowed; }

/*
  This stylesheet uses scss valiables for most of the colors / background-colors of the table
  to enable the customization of the displayed table without cloning the stylesheet into the
  own application.

  To modify table colors, add the following lines to the scss file of your application
  (this example modifies the color of the selected row - selectionType = single, multi or multiClick):

  $ngx-datatable-selected-active-background: yellow;
  $ngx-datatable-selected-active-background-hover: rgba(yellow, 0.2);

  @import '~@swimlane/ngx-datatable/index.css';
  @import '~@swimlane/ngx-datatable/themes/material.scss';
  @import '~@swimlane/ngx-datatable/assets/icons.css';

That's all.
*/
.ngx-datatable.material {
  background: #fff;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  /**
  * Shared Styles
  */
  /**
  * Global Row Styles
  */
  /**
  * Header Styles
  */
  /**
  * Body Styles
  */
  /**
  * Footer Styles
  */
}
.ngx-datatable.material.striped .datatable-row-odd {
  background: #eee;
}
.ngx-datatable.material.single-selection .datatable-body-row.active, .ngx-datatable.material.single-selection .datatable-body-row.active .datatable-row-group, .ngx-datatable.material.multi-selection .datatable-body-row.active, .ngx-datatable.material.multi-selection .datatable-body-row.active .datatable-row-group, .ngx-datatable.material.multi-click-selection .datatable-body-row.active, .ngx-datatable.material.multi-click-selection .datatable-body-row.active .datatable-row-group {
  background-color: #304ffe;
  color: #fff;
}
.ngx-datatable.material.single-selection .datatable-body-row.active:hover, .ngx-datatable.material.single-selection .datatable-body-row.active:hover .datatable-row-group, .ngx-datatable.material.multi-selection .datatable-body-row.active:hover, .ngx-datatable.material.multi-selection .datatable-body-row.active:hover .datatable-row-group, .ngx-datatable.material.multi-click-selection .datatable-body-row.active:hover, .ngx-datatable.material.multi-click-selection .datatable-body-row.active:hover .datatable-row-group {
  background-color: #193ae4;
  color: #fff;
}
.ngx-datatable.material.single-selection .datatable-body-row.active:focus, .ngx-datatable.material.single-selection .datatable-body-row.active:focus .datatable-row-group, .ngx-datatable.material.multi-selection .datatable-body-row.active:focus, .ngx-datatable.material.multi-selection .datatable-body-row.active:focus .datatable-row-group, .ngx-datatable.material.multi-click-selection .datatable-body-row.active:focus, .ngx-datatable.material.multi-click-selection .datatable-body-row.active:focus .datatable-row-group {
  background-color: #2041ef;
  color: #fff;
}
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:hover, .ngx-datatable.material:not(.cell-selection) .datatable-body-row:hover .datatable-row-group {
  background-color: #eee;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:focus, .ngx-datatable.material:not(.cell-selection) .datatable-body-row:focus .datatable-row-group {
  background-color: #ddd;
}
.ngx-datatable.material.cell-selection .datatable-body-cell:hover, .ngx-datatable.material.cell-selection .datatable-body-cell:hover .datatable-row-group {
  background-color: #eee;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.ngx-datatable.material.cell-selection .datatable-body-cell:focus, .ngx-datatable.material.cell-selection .datatable-body-cell:focus .datatable-row-group {
  background-color: #ddd;
}
.ngx-datatable.material.cell-selection .datatable-body-cell.active, .ngx-datatable.material.cell-selection .datatable-body-cell.active .datatable-row-group {
  background-color: #304ffe;
  color: #fff;
}
.ngx-datatable.material.cell-selection .datatable-body-cell.active:hover, .ngx-datatable.material.cell-selection .datatable-body-cell.active:hover .datatable-row-group {
  background-color: #193ae4;
  color: #fff;
}
.ngx-datatable.material.cell-selection .datatable-body-cell.active:focus, .ngx-datatable.material.cell-selection .datatable-body-cell.active:focus .datatable-row-group {
  background-color: #2041ef;
  color: #fff;
}
.ngx-datatable.material .empty-row {
  height: 50px;
  text-align: left;
  padding: 0.5rem 1.2rem;
  vertical-align: top;
  border-top: 0;
}
.ngx-datatable.material .loading-row {
  text-align: left;
  padding: 0.5rem 1.2rem;
  vertical-align: top;
  border-top: 0;
}
.ngx-datatable.material .datatable-header .datatable-row-left,
.ngx-datatable.material .datatable-body .datatable-row-left {
  background-color: #fff;
  background-position: 100% 0;
  background-repeat: repeat-y;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQIHWPSkNeSBmJhTQVtbiDNCgASagIIuJX8OgAAAABJRU5ErkJggg==);
}
.ngx-datatable.material .datatable-header .datatable-row-right,
.ngx-datatable.material .datatable-body .datatable-row-right {
  background-position: 0 0;
  background-color: #fff;
  background-repeat: repeat-y;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQI12PQkNdi1VTQ5gbSwkAsDQARLAIGtOSFUAAAAABJRU5ErkJggg==);
}
.ngx-datatable.material .datatable-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.ngx-datatable.material .datatable-header .datatable-header-cell {
  text-align: left;
  padding: 0.9rem 1.2rem;
  font-weight: 400;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.54);
  vertical-align: bottom;
  font-size: 12px;
  font-weight: 500;
}
.ngx-datatable.material .datatable-header .datatable-header-cell .datatable-header-cell-wrapper {
  position: relative;
}
.ngx-datatable.material .datatable-header .datatable-header-cell.longpress .draggable::after {
  transition: transform 400ms ease, opacity 400ms ease;
  opacity: 0.5;
  transform: scale(1);
}
.ngx-datatable.material .datatable-header .datatable-header-cell .draggable::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  height: 60px;
  width: 60px;
  background: #eee;
  border-radius: 100%;
  opacity: 1;
  filter: none;
  transform: scale(0);
  z-index: 9999;
  pointer-events: none;
}
.ngx-datatable.material .datatable-header .datatable-header-cell.dragging .resize-handle {
  border-right: none;
}
.ngx-datatable.material .datatable-header .resize-handle {
  border-right: solid 1px #eee;
}
.ngx-datatable.material .datatable-body {
  position: relative;
}
.ngx-datatable.material .datatable-body .datatable-row-detail {
  background: #f5f5f5;
  padding: 10px;
}
.ngx-datatable.material .datatable-body .datatable-group-header {
  background: #f5f5f5;
  border-bottom: solid 1px #d9d8d9;
  border-top: solid 1px #d9d8d9;
}
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-cell {
  text-align: left;
  padding: 0.9rem 1.2rem;
  vertical-align: top;
  border-top: 0;
  color: rgba(0, 0, 0, 0.87);
  transition: width 0.3s ease;
  font-size: 14px;
  font-weight: 400;
}
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-group-cell {
  text-align: left;
  padding: 0.9rem 1.2rem;
  vertical-align: top;
  border-top: 0;
  color: rgba(0, 0, 0, 0.87);
  transition: width 0.3s ease;
  font-size: 14px;
  font-weight: 400;
}
.ngx-datatable.material .datatable-body .progress-linear {
  display: block;
  position: sticky;
  width: 100%;
  height: 5px;
  padding: 0;
  margin: 0;
  top: 0;
}
.ngx-datatable.material .datatable-body .progress-linear .container {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 5px;
  transform: translate(0, 0) scale(1, 1);
  background-color: #aad1f9;
}
.ngx-datatable.material .datatable-body .progress-linear .container .bar {
  transition: all 0.2s linear;
  animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.2s linear;
  background-color: #106cc8;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
}
.ngx-datatable.material .datatable-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.54);
}
.ngx-datatable.material .datatable-footer .page-count {
  line-height: 50px;
  height: 50px;
  padding: 0 1.2rem;
}
.ngx-datatable.material .datatable-footer .datatable-pager {
  margin: 0 10px;
}
.ngx-datatable.material .datatable-footer .datatable-pager li {
  vertical-align: middle;
}
.ngx-datatable.material .datatable-footer .datatable-pager li.disabled a {
  color: rgba(0, 0, 0, 0.26) !important;
  background-color: transparent !important;
}
.ngx-datatable.material .datatable-footer .datatable-pager li.active a {
  background-color: rgba(158, 158, 158, 0.2);
  font-weight: bold;
}
.ngx-datatable.material .datatable-footer .datatable-pager a {
  height: 22px;
  min-width: 24px;
  line-height: 22px;
  padding: 0 6px;
  border-radius: 3px;
  margin: 6px 3px;
  text-align: center;
  vertical-align: top;
  color: rgba(0, 0, 0, 0.54);
  text-decoration: none;
  vertical-align: bottom;
}
.ngx-datatable.material .datatable-footer .datatable-pager a:hover {
  color: rgba(0, 0, 0, 0.75);
  background-color: rgba(158, 158, 158, 0.2);
}
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-left,
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-skip,
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-right,
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-prev {
  font-size: 20px;
  line-height: 20px;
  padding: 0 3px;
}
.ngx-datatable.material .datatable-summary-row .datatable-body-row {
  background-color: #ddd;
}
.ngx-datatable.material .datatable-summary-row .datatable-body-row:hover {
  background-color: #ddd;
}
.ngx-datatable.material .datatable-summary-row .datatable-body-row .datatable-body-cell {
  font-weight: bold;
}
/**
 * Checkboxes
**/
.datatable-checkbox {
  position: relative;
  margin: 0;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
  padding: 0;
}
.datatable-checkbox input[type=checkbox] {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
  outline: none;
}
.datatable-checkbox input[type=checkbox]:before {
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border: 2px solid #f2f2f2;
}
.datatable-checkbox input[type=checkbox]:checked:before {
  transform: rotate(-45deg);
  height: 0.5rem;
  border-color: #009688;
  border-top-style: none;
  border-right-style: none;
}
.datatable-checkbox input[type=checkbox]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: #fff;
  cursor: pointer;
}
/**
 * Progress bar animations
 */
@keyframes query {
  0% {
    opacity: 1;
    transform: translateX(35%) scale(0.3, 1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0, 1);
  }
}
/*
bootstrap table theme
*/
.ngx-datatable.bootstrap {
  box-shadow: none;
  font-size: 13px;
}
.ngx-datatable.bootstrap .datatable-header {
  height: unset !important;
}
.ngx-datatable.bootstrap .datatable-header .datatable-header-cell {
  vertical-align: bottom;
  padding: 0.75rem;
  border-bottom: 1px solid #d1d4d7;
}
.ngx-datatable.bootstrap .datatable-header .datatable-header-cell .datatable-header-cell-label {
  line-height: 24px;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row {
  vertical-align: top;
  border-top: 1px solid #d1d4d7;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row.datatable-row-even {
  background-color: rgba(0, 0, 0, 0.05);
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row.active {
  background-color: #1483ff;
  color: #fff;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}
.ngx-datatable.bootstrap .datatable-body .empty-row {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
}
.ngx-datatable.bootstrap .datatable-footer {
  background: #424242;
  color: #ededed;
  margin-top: -1px;
}
.ngx-datatable.bootstrap .datatable-footer .page-count {
  line-height: 50px;
  height: 50px;
  padding: 0 1.2rem;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager {
  margin: 0 10px;
  vertical-align: top;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager ul li {
  margin: 10px 0px;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager ul li:not(.disabled).active a, .ngx-datatable.bootstrap .datatable-footer .datatable-pager ul li:not(.disabled):hover a {
  background-color: #545454;
  font-weight: bold;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager a {
  height: 22px;
  min-width: 24px;
  line-height: 22px;
  padding: 0;
  border-radius: 3px;
  margin: 0 3px;
  text-align: center;
  vertical-align: top;
  text-decoration: none;
  vertical-align: bottom;
  color: #ededed;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-left,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-skip,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-right,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-prev {
  font-size: 18px;
  line-height: 27px;
  padding: 0 3px;
}
.ngx-datatable.bootstrap .datatable-summary-row .datatable-body-row .datatable-body-cell {
  font-weight: bold;
}
@charset "UTF-8";

@font-face {
  font-family: 'data-table';
  src: url('data-table.eot');
  src: url('data-table.eot?#iefix') format('embedded-opentype'), url('data-table.woff') format('woff'),
    url('data-table.ttf') format('truetype'), url('data-table.svg#data-table') format('svg');
  font-weight: normal;
  font-style: normal;
}

[data-icon]::before {
  font-family: 'data-table' !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^='datatable-icon-']::before,
[class*=' datatable-icon-']::before {
  font-family: 'data-table' !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.datatable-icon-filter::before {
  content: '\62';
}

.datatable-icon-collapse::before {
  content: '\61';
}

.datatable-icon-expand::before {
  content: '\63';
}

.datatable-icon-close::before {
  content: '\64';
}

.datatable-icon-up::before {
  content: '\65';
}

.datatable-icon-down::before {
  content: '\66';
}

.datatable-icon-sort-unset::before {
  content: '\63';
  opacity: 0.5;
}

.datatable-icon-sort::before {
  content: '\67';
}

.datatable-icon-done::before {
  content: '\68';
}

.datatable-icon-done-all::before {
  content: '\69';
}

.datatable-icon-search::before {
  content: '\6a';
}

.datatable-icon-pin::before {
  content: '\6b';
}

.datatable-icon-add::before {
  content: '\6d';
}

.datatable-icon-left::before {
  content: '\6f';
}

.datatable-icon-right::before {
  content: '\70';
}

.datatable-icon-skip::before {
  content: '\71';
}

.datatable-icon-prev::before {
  content: '\72';
}

/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */

/* position */

.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* toast styles */

.toast-title {
  font-weight: bold;
}

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

.toast-message a,
.toast-message label {
  color: #FFFFFF;
}

.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/

button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}

.toast-container * {
  box-sizing: border-box;
}

.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}

.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */

.toast-info {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */

.toast-error {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */

.toast-success {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */

.toast-warning {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' width='576' height='512'%3E%3Cpath fill='rgb(255,255,255)' d='M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'/%3E%3C/svg%3E");
}

.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}

.toast-success {
  background-color: #51A351;
}

.toast-error {
  background-color: #BD362F;
}

.toast-info {
  background-color: #2F96B4;
}

.toast-warning {
  background-color: #F89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}

/* Responsive Design */

@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

.ng-wizard-main{position:relative;display:block;margin:0;padding:0;border-radius:.25rem!important}.ng-wizard-main .ng-wizard-container{display:block;margin:0;padding:0;position:relative}.ng-wizard-main .step-content{display:none;position:relative;margin:0}.ng-wizard-main .ng-wizard-toolbar{margin-left:0}.ng-wizard-theme-default{box-shadow:0 1px 3px rgba(0,0,0,.3)}.ng-wizard-theme-default .ng-wizard-container{min-height:250px}.ng-wizard-theme-default .step-content{padding:10px;border:0 solid #d4d4d4;background-color:#fff;text-align:left}.ng-wizard-theme-default .ng-wizard-toolbar{background:#f9f9f9;border-radius:0!important;padding-left:10px;padding-right:10px;padding:10px;margin-bottom:0!important}.ng-wizard-theme-default .ng-wizard-toolbar-top{border-bottom-color:#ddd!important}.ng-wizard-theme-default .ng-wizard-toolbar-bottom{border-top-color:#ddd!important}.ng-wizard-theme-default>ul.step-anchor>li{position:relative;margin-right:2px}.ng-wizard-theme-default>ul.step-anchor>li>a,.ng-wizard-theme-default>ul.step-anchor>li>a:hover{border:none!important;color:#bbb;text-decoration:none;outline-style:none;background:0 0!important;border:none!important;cursor:not-allowed}.ng-wizard-theme-default>ul.step-anchor>li.clickable>a:hover{color:#4285f4!important;background:0 0!important;cursor:pointer}.ng-wizard-theme-default>ul.step-anchor>li>a::after{content:"";background:#4285f4;height:2px;position:absolute;width:100%;left:0;bottom:0;transition:all 250ms ease 0s;transform:scale(0)}.ng-wizard-theme-default>ul.step-anchor>li.active>a{border:none!important;color:#4285f4!important;background:0 0!important;cursor:pointer}.ng-wizard-theme-default>ul.step-anchor>li.active>a::after{transform:scale(1)}.ng-wizard-theme-default>ul.step-anchor>li.done>a{border:none!important;color:#000!important;background:0 0!important;cursor:pointer}.ng-wizard-theme-default>ul.step-anchor>li.done>a::after{background:#5cb85c;transform:scale(1)}.ng-wizard-theme-default>ul.step-anchor>li.danger>a{border:none!important;color:#d9534f!important;cursor:pointer}.ng-wizard-theme-default>ul.step-anchor>li.danger>a::after{background:#d9534f;border-left-color:#f8d7da;transform:scale(1)}.ng-wizard-theme-default>ul.step-anchor>li.disabled>a,.ng-wizard-theme-default>ul.step-anchor>li.disabled>a:hover{color:#eee!important;cursor:not-allowed}@media screen and (max-width:768px){.ng-wizard-theme-default>.nav-tabs>li{float:none!important}}.ng-wizard-loading::after{position:absolute;display:block;opacity:1;content:"";top:0;left:0;height:100%;width:100%;background:rgba(255,255,255,.7);transition:all .2s ease;z-index:2}.ng-wizard-loading::before{content:'';display:inline-block;position:absolute;top:50%;left:50%;z-index:10;border:10px solid #f3f3f3;border-radius:50%;border-top:10px solid #3498db;width:80px;height:80px;margin-top:-40px;margin-left:-40px;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}
.ng-wizard-theme-circles .ng-wizard-container{min-height:300px}.ng-wizard-theme-circles .step-content{padding:10px 0;background-color:#fff;text-align:left}.ng-wizard-theme-circles .ng-wizard-toolbar{background:#fff;padding-left:10px;padding-right:10px;margin-bottom:0!important}.ng-wizard-theme-circles .ng-wizard-toolbar-bottom{border-top-color:#ddd!important;border-bottom-color:#ddd!important}.ng-wizard-theme-circles>ul.step-anchor{position:relative;background:#fff;border:none;list-style:none;margin-bottom:40px}.ng-wizard-theme-circles>ul.step-anchor:before{content:" ";position:absolute;top:50%;bottom:0;width:100%;height:5px;background-color:#f5f5f5;border-radius:3px;z-index:0}.ng-wizard-theme-circles>ul.step-anchor>li{border:none;margin-left:40px;z-index:98}.ng-wizard-theme-circles>ul.step-anchor>li>a{border:2px solid #f5f5f5;background:#f5f5f5;width:75px;height:75px;text-align:center;padding:25px 0;border-radius:50%;box-shadow:inset 0 0 0 3px #fff!important;text-decoration:none;outline-style:none;z-index:99;color:#bbb;background:#f5f5f5;line-height:1}.ng-wizard-theme-circles>ul.step-anchor>li>a:hover{color:#bbb;background:#f5f5f5;border-width:2px}.ng-wizard-theme-circles>ul.step-anchor>li>a>small{position:relative;bottom:-40px;color:#ccc}.ng-wizard-theme-circles>ul.step-anchor>li.clickable>a:hover{color:#4285f4!important}.ng-wizard-theme-circles>ul.step-anchor>li.active>a{border-color:#5bc0de;color:#fff;background:#5bc0de}.ng-wizard-theme-circles>ul.step-anchor>li.active>a>small{color:#5bc0de}.ng-wizard-theme-circles>ul.step-anchor>li.done>a{border-color:#5cb85c;color:#fff;background:#5cb85c}.ng-wizard-theme-circles>ul.step-anchor>li.done>a>small{color:#5cb85c}.ng-wizard-theme-circles>ul.step-anchor>li.danger>a{border-color:#d9534f;color:#d9534f;background:#fff}.ng-wizard-theme-circles>ul.step-anchor>li.danger>a>small{color:#d9534f}.ng-wizard-theme-circles>ul.step-anchor>li.disabled>a,.ng-wizard-theme-circles>ul.step-anchor>li.disabled>a:hover{color:#eee!important}

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