/**
 * angular-calendar - A calendar component for angular 4.0+ that can display events on a month, week or day view
 * @version v0.20.0
 * @author Matt Lewis
 * @link https://github.com/mattlewis92/angular-calendar#readme
 * @license MIT
 */

.cal-month-view .cal-header {
    text-align: center;
    font-weight: bolder;
}

.cal-month-view .cal-cell-row:hover {
    background-color: #fafafa;
}

.cal-month-view .cal-header .cal-cell {
    padding: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
    font-size: 11px;
}

.cal-month-view .cal-cell-row .cal-cell:hover,
.cal-month-view .cal-cell.cal-has-events.cal-open {
    background-color: #ededed;
}

.cal-month-view .cal-days {
    border: 1px solid #e1e1e1;
    border-bottom: 0;
}

.cal-month-view .cal-cell-top {
    min-height: 30px;
    flex: 1;
    cursor: pointer;
}

.cal-month-view .cal-cell-row {
    -js-display: flex;
    display: flex;
}

.cal-month-view .cal-cell {
    float: left;
    flex: 1;
    -js-display: flex;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.cal-month-view .cal-day-cell {
    min-height: 50px;
}

.cal-month-view .cal-day-cell:not(:last-child) {
    border-right: 1px solid #e1e1e1;
}

.cal-month-view .cal-days .cal-cell-row {
    border-bottom: 1px solid #e1e1e1;
}

.cal-month-view .cal-day-badge {
    margin-top: 18px;
    margin-left: 10px;
    background-color: #b94a48;
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: white;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
}

.cal-month-view .cal-day-number {
    font-size: 1.2em;
    font-weight: 400;
    opacity: 0.5;
    margin-top: 15px;
    margin-right: 15px;
    float: right;
    margin-bottom: 10px;
}

.cal-month-view .cal-events {
    flex: 1;
    align-items: flex-end;
    margin: 3px;
    line-height: 10px;
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
}

.cal-month-view .cal-event {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 2px;
}

.cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
    cursor: pointer;
}

.cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
    opacity: 0.1;
    cursor: default;
}

.cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
    color: darkred;
}

.cal-month-view .cal-day-cell.cal-today {
    /*background-color: #e8fde7;*/
}


/*.cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 1.9em; }*/

.cal-month-view .cal-day-cell.cal-drag-over {
    background-color: #e0e0e0 !important;
}

.cal-month-view .cal-open-day-events {
    padding: 15px;
    color: white;
    background-color: #555;
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
}

.cal-month-view .cal-open-day-events .cal-event {
    position: relative;
    top: 2px;
}

.cal-month-view .cal-event-title {
    color: white;
}

.cal-month-view .cal-out-month .cal-day-badge,
.cal-month-view .cal-out-month .cal-event {
    opacity: 0.3;
}

.cal-week-view .cal-day-headers {
    -js-display: flex;
    display: flex;
    margin-bottom: 3px;
    border: 1px solid #e1e1e1;
    margin-left: 2px;
    margin-right: 2px;
}

.cal-week-view .cal-day-headers .cal-header {
    flex: 1;
    text-align: center;
    padding: 5px;
}

.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
    border-right: 1px solid #e1e1e1;
}

.cal-week-view .cal-day-headers .cal-header:hover,
.cal-week-view .cal-day-headers .cal-drag-over {
    background-color: #ededed;
}

.cal-week-view .cal-day-headers span {
    font-weight: 400;
    opacity: 0.5;
}

.cal-week-view .cal-events-row {
    position: relative;
    height: 33px;
}

.cal-week-view .cal-event-container {
    display: inline-block;
    position: absolute;
}

.cal-week-view .cal-event {
    padding: 0 10px;
    font-size: 12px;
    margin-left: 2px;
    margin-right: 2px;
    height: 30px;
    line-height: 30px;
}

.cal-week-view .cal-draggable {
    cursor: move;
}

.cal-week-view .cal-starts-within-week .cal-event {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.cal-week-view .cal-ends-within-week .cal-event {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}


/*.cal-week-view .cal-header.cal-today {
  background-color: #e8fde7; }*/

.cal-week-view .cal-header.cal-weekend span {
    color: #8b0000;
}

.cal-week-view .cal-event,
.cal-week-view .cal-header {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cal-day-view {
    /* stylelint-disable-next-line selector-type-no-unknown */
}

.cal-day-view .cal-hour-rows {
    width: 100%;
    border: solid 1px #e1e1e1;
    overflow-x: scroll;
    position: relative;
}

.cal-day-view .cal-hour:nth-child(odd) {
    background-color: #fafafa;
}

.cal-day-view mwl-calendar-day-view-hour-segment,
.cal-day-view .cal-hour-segment {
    display: block;
    height: 30px;
}

.cal-day-view .cal-hour-segment::after {
    content: '\A0';
}

.cal-day-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-day-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
    border-bottom: thin dashed #e1e1e1;
}

.cal-day-view .cal-time {
    font-weight: bold;
    padding-top: 5px;
    width: 70px;
    text-align: center;
}

.cal-day-view .cal-hour-segment.cal-after-hour-start .cal-time {
    display: none;
}

.cal-day-view .cal-hour-segment:hover,
.cal-day-view .cal-drag-over .cal-hour-segment {
    background-color: #ededed;
}

.cal-day-view .cal-event-container {
    position: absolute;
}

.cal-day-view .cal-event {
    border: solid 1px;
    padding: 5px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 100%;
    box-sizing: border-box;
}

.cal-day-view .cal-draggable {
    cursor: move;
}

.cal-day-view .cal-starts-within-day .cal-event {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.cal-day-view .cal-ends-within-day .cal-event {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.cal-day-view .cal-all-day-event {
    padding: 8px;
    border: solid 1px;
}

.cal-tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    font-size: 11px;
    word-wrap: break-word;
    opacity: 0.9;
}

.cal-tooltip.cal-tooltip-top {
    padding: 5px 0;
    margin-top: -3px;
}

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.cal-tooltip.cal-tooltip-right {
    padding: 0 5px;
    margin-left: 3px;
}

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.cal-tooltip.cal-tooltip-bottom {
    padding: 5px 0;
    margin-top: 3px;
}

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.cal-tooltip.cal-tooltip-left {
    padding: 0 5px;
    margin-left: -3px;
}

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.cal-tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.cal-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
/*!
 * Timepicker Component for Twitter Bootstrap
 *
 * Copyright 2013 Joris de Wit
 *
 * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
 .bootstrap-timepicker {
    position: relative;
  }
  .bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
    left: auto;
    right: 0;
  }
  .bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
    left: auto;
    right: 12px;
  }
  .bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
    left: auto;
    right: 13px;
  }
  .bootstrap-timepicker .input-group-addon {
    cursor: pointer;
  }
  .bootstrap-timepicker .input-group-addon i {
    display: inline-block;
    width: 16px;
    height: 16px;
  }
  .bootstrap-timepicker-widget.dropdown-menu {
    padding: 4px;
  }
  .bootstrap-timepicker-widget.dropdown-menu.open {
    display: inline-block;
    top: 3rem!important;
    left:0!important;
  }
  .bootstrap-timepicker-widget.dropdown-menu:before {
    border-bottom: 7px solid rgba(0, 0, 0, 0.2);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
  }
  .bootstrap-timepicker-widget.dropdown-menu:after {
    border-bottom: 6px solid #FFFFFF;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
  }
  .bootstrap-timepicker-widget.timepicker-orient-left:before {
    left: 6px;
  }
  .bootstrap-timepicker-widget.timepicker-orient-left:after {
    left: 7px;
  }
  .bootstrap-timepicker-widget.timepicker-orient-right:before {
    right: 6px;
  }
  .bootstrap-timepicker-widget.timepicker-orient-right:after {
    right: 7px;
  }
  .bootstrap-timepicker-widget.timepicker-orient-top:before {
    top: -7px;
  }
  .bootstrap-timepicker-widget.timepicker-orient-top:after {
    top: -6px;
  }
  .bootstrap-timepicker-widget.timepicker-orient-bottom:before {
    bottom: -7px;
    border-bottom: 0;
    border-top: 7px solid #999;
  }
  .bootstrap-timepicker-widget.timepicker-orient-bottom:after {
    bottom: -6px;
    border-bottom: 0;
    border-top: 6px solid #ffffff;
  }
  .bootstrap-timepicker-widget a.btn,
  .bootstrap-timepicker-widget input {
    border-radius: 4px;
  }
  .bootstrap-timepicker-widget table {
    width: 100%;
    margin: 0;
  }
  .bootstrap-timepicker-widget table td {
    text-align: center;
    height: 30px;
    margin: 0;
    padding: 2px;
  }
  .bootstrap-timepicker-widget table td:not(.separator) {
    min-width: 30px;
  }
  .bootstrap-timepicker-widget table td span {
    width: 100%;
  }
  .bootstrap-timepicker-widget table td a {
    border: 1px transparent solid;
    width: 100%;
    display: inline-block;
    margin: 0;
    padding: 8px 0;
    outline: 0;
    color: #333;
  }
  .bootstrap-timepicker-widget table td a:hover {
    text-decoration: none;
    background-color: #eee;
    border-radius: 4px;
    border-color: #ddd;
  }
  .bootstrap-timepicker-widget table td a i {
    margin-top: 2px;
    font-size: 18px;
  }
  .bootstrap-timepicker-widget table td input {
    width: 25px;
    margin: 0;
    text-align: center;
  }
  .bootstrap-timepicker-widget .modal-content {
    padding: 4px;
  }
  @media (min-width: 767px) {
    .bootstrap-timepicker-widget.modal {
      width: 200px;
      margin-left: -100px;
    }
  }
  @media (max-width: 767px) {
    .bootstrap-timepicker {
      width: 100%;
    }
    .bootstrap-timepicker .dropdown-menu {
      width: 100%;
    }
  }
  .input-group{
    width: 13rem !important;
    margin-bottom: 1rem;
  }

  .bootstrap-timepicker-widget table td input{
    border: 1px solid #cccccc;
    border-radius: 0px;
  }

  .bootstrap-timepicker-widget table td a{
    color: #46a393 !important;
    padding: 0 !important;
  }


  .bootstrap-timepicker-widget table td{
    height: 20px !important;
    padding: 0 !important;
  }

  .bootstrap-timepicker-widget.timepicker-orient-bottom:before,
  .bootstrap-timepicker-widget.timepicker-orient-bottom:after,
  .bootstrap-timepicker-widget.timepicker-orient-top:after,
  .bootstrap-timepicker-widget.timepicker-orient-top:before{
    display: none;
  }


@charset "UTF-8";@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url('opensans-regular.1d0529a8807675e4.woff2') format("woff2"),url('opensans-regular.af6528dae689ee54.woff') format("woff"),url('opensans-regular.4543090a37b427da.ttf') format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url('opensans-italic.d32c035c309e6931.woff2') format("woff2"),url('opensans-italic.45502ee4911d2447.woff') format("woff"),url('opensans-italic.a35161630d917929.ttf') format("truetype")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url('opensans-semibold.a2a0cc50fb666950.woff2') format("woff2"),url('opensans-semibold.f1677f3059e7fc8a.woff') format("woff"),url('opensans-semibold.363dd9fef233662b.ttf') format("truetype")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url('opensans-semibolditalic.cb1ca87d3f6bc945.woff2') format("woff2"),url('opensans-semibolditalic.242b5e1f117a7eca.woff') format("woff"),url('opensans-semibolditalic.21a0a8f3122f3e72.ttf') format("truetype")}/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1.2rem}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:"Open Sans",Arial,Helvetica,sans-serif;font-size:100%;line-height:normal;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}html{box-sizing:border-box;font-size:62.5%;line-height:1.5}body{color:#272727;font-family:"Open Sans",Arial,Helvetica,sans-serif;font-size:1.4rem;height:100vh}*,:after,:before{box-sizing:inherit}ol,ul{list-style:none}dl,fieldset,h1,h2,h3,h4,h5,h6,ol,p,ul{margin:0;padding:0}hr{border:0;border-bottom-width:1px;border-top-color:#e0e0e0;margin-bottom:2.4rem;margin-top:2.4rem}a{color:inherit;cursor:pointer;font-size:inherit;position:relative;text-align:inherit}a:hover{color:#217d7e}a:visited{color:#757575}.screenreader-visible{position:absolute;width:1px!important;height:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.bz-skip-focus-color{background:#cff2f2!important}.bz-skip-focus-transition{transition:all .3s}.cdk-keyboard-focused :focus,.focus{outline:0!important;box-shadow:0 0 0 2px rgba(51,191,193,.5),0 0 0 4px rgba(51,191,193,.25)}:focus{outline:0!important}.cdk-keyboard-focused .bz-focus-inset:focus,.cdk-keyboard-focused .bz-focus-inset>:focus,.cdk-keyboard-focused .bz-link:focus,.cdk-keyboard-focused .bz-link:focus>:focus,.cdk-keyboard-focused .bz-option--active:focus,.cdk-keyboard-focused :focus.focus-inset{box-shadow:inset 0 0 0 2px rgba(51,191,193,.5),inset 0 0 0 3px rgba(51,191,193,.25)!important}.bz-shadow--xs{box-shadow:0 0 4px rgba(0,0,0,.06),0 2px 2px rgba(0,0,0,.12)}.bz-shadow--s{box-shadow:0 2px 2px rgba(0,0,0,.12),0 2px 6px rgba(0,0,0,.24)}.bz-shadow--m{box-shadow:0 2px 8px rgba(0,0,0,.14),0 4px 4px rgba(0,0,0,.12),0 8px 8px rgba(0,0,0,.06)}.bz-shadow--l{box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16)}.bz-border-radius--s{border-radius:2px}.bz-border-radius--m{border-radius:4px}.bz-border-radius--l{border-radius:8px}h1,h2,h3,h4{font-weight:600}h1{font-size:3.6rem;line-height:1.25;margin-bottom:.8rem}h2{font-size:2.7rem;line-height:1.25;margin-bottom:.8rem}h3{font-size:2.4rem;line-height:1.25;margin-bottom:.8rem}h4{font-size:1.6rem;font-weight:400;line-height:1.25;margin-bottom:.8rem}h5{font-size:1.4rem;font-weight:400;line-height:1.5}p{margin-bottom:2.4rem}strong{font-weight:600}.bz-font-size{font-size:1.4rem}.bz-font-size--caption{font-size:1rem}.bz-font-size--body-small{font-size:1.2rem}.bz-font-size--body{font-size:1.4rem}.bz-font-size--subheading{font-size:1.6rem}.bz-font-size--title{font-size:2.4rem}.bz-font-size--heading{font-size:2.7rem}.bz-font-size--display{font-size:3.6rem}.bz-font-weight--light{font-weight:600}.bz-font-weight--regular{font-weight:400}.bz-font-weight--semibold{font-weight:600}.bz-font-style--italic{font-style:italic;font-weight:400}.bz-space-reset{margin:0;padding:0}.bz-space--reset{margin:0;padding:0}.bz-space--stack-xs{margin-bottom:.4rem}.bz-space--stack-s{margin-bottom:.8rem}.bz-space--stack-m{margin-bottom:1.6rem}.bz-space--stack-l{margin-bottom:2.4rem}.bz-space--stack-xl{margin-bottom:3.2rem}.bz-space--inline-xs{margin-right:.4rem}.bz-space--inline-s{margin-right:.8rem}.bz-space--inline-m{margin-right:1.6rem}.bz-space--inline-l{margin-right:2.4rem}.bz-space--inline-xl{margin-right:3.2rem}.bz-space--inset-xs{padding:.4rem}.bz-space--inset-s{padding:.8rem}.bz-space--inset-m{padding:1.6rem}.bz-space--inset-l{padding:2.4rem}.bz-space--inset-xl{padding:3.2rem}.bz-space--inset-squish-xs{padding:.4rem .8rem}.bz-space--inset-squish-s{padding:.8rem 1.6rem}.bz-space--inset-squish-m{padding:1.6rem 2.4rem}.bz-space--inset-squish-l{padding:1.6rem 3.2rem}[dir=rtl] .bz-space--inline-xs{margin-left:.4rem;margin-right:0}[dir=rtl] .bz-space--inline-s{margin-left:.8rem;margin-right:0}[dir=rtl] .bz-space--inline-m{margin-left:1.6rem;margin-right:0}[dir=rtl] .bz-space--inline-l{margin-left:2.4rem;margin-right:0}[dir=rtl] .bz-space--inline-xl{margin-left:3.2rem;margin-right:0}@media (max-width:480px){.bz-form-item--display-reversed .bz-space--stack-xs{margin-bottom:0;margin-top:.4rem}.bz-form-item--display-reversed .bz-space--stack-s{margin-bottom:0;margin-top:.8rem}.bz-form-item--display-reversed .bz-space--stack-m{margin-bottom:0;margin-top:1.6rem}.bz-form-item--display-reversed .bz-space--stack-l{margin-bottom:0;margin-top:2.4rem}.bz-form-item--display-reversed .bz-space--stack-xl{margin-bottom:0;margin-top:3.2rem}}.bz-color--theme-100{color:#cff2f2}.bz-color-border--theme-100{border-color:#cff2f2}.bz-color-bg--theme-100{background-color:#cff2f2}.bz-color--theme-200{color:#7edbdd}.bz-color-border--theme-200{border-color:#7edbdd}.bz-color-bg--theme-200{background-color:#7edbdd}.bz-color--theme-300{color:#33bfc1}.bz-color-border--theme-300{border-color:#33bfc1}.bz-color-bg--theme-300{background-color:#33bfc1}.bz-color--theme-400{color:#217d7e}.bz-color-border--theme-400{border-color:#217d7e}.bz-color-bg--theme-400{background-color:#217d7e}.bz-color--theme-500{color:#1a6061}.bz-color-border--theme-500{border-color:#1a6061}.bz-color-bg--theme-500{background-color:#1a6061}.bz-color--theme-600{color:#114040}.bz-color-border--theme-600{border-color:#114040}.bz-color-bg--theme-600{background-color:#114040}.bz-color--neutral-100{color:#fff}.bz-color-border--neutral-100{border-color:#fff}.bz-color-bg--neutral-100{background-color:#fff}.bz-color--neutral-200{color:#fafafa}.bz-color-border--neutral-200{border-color:#fafafa}.bz-color-bg--neutral-200{background-color:#fafafa}.bz-color--neutral-300{color:#e0e0e0}.bz-color-border--neutral-300{border-color:#e0e0e0}.bz-color-bg--neutral-300{background-color:#e0e0e0}.bz-color--neutral-400{color:#9e9e9e}.bz-color-border--neutral-400{border-color:#9e9e9e}.bz-color-bg--neutral-400{background-color:#9e9e9e}.bz-color--neutral-500{color:#757575}.bz-color-border--neutral-500{border-color:#757575}.bz-color-bg--neutral-500{background-color:#757575}.bz-color--neutral-600{color:#272727}.bz-color-border--neutral-600{border-color:#272727}.bz-color-bg--neutral-600{background-color:#272727}.bz-color--success{background-color:#2d8631}.bz-color--warning{background-color:#f9a825}.bz-color--error{background-color:#da3b3b}.bz-color--info{background-color:#1377d9}.bz-border-color--warning{border-color:#f9a825}.bz-icon-color--warning svg{fill:#F9A825}.bz-icon-color--error svg{fill:#DA3B3B}.bz-icon-color--info svg{fill:#1377D9}.bz-icn{fill:#9E9E9E}.bz-icn--active{fill:#217D7E}.bz-icn--disabled{fill:#E0E0E0}.bz-icn--success{fill:#2D8631}.bz-icn--warning{fill:#F9A825}.bz-icn--error{fill:#DA3B3B}.bz-icn--info{fill:#1377D9}.bz-icn--light{fill:#FFFFFF}.bz-icn--dark{fill:#272727}.bz-initials--light .bz-icn{fill:#757575}.bz-hidden{display:none}.bz-visible{display:initial}.bz-block{display:block}.bz-disabled{background-color:#fafafa}.bz-flex{display:flex}.bz-flex--centered{justify-content:center}.bz-flex--end{justify-content:flex-end}.bz-flex--spaced{justify-content:space-between}.bz-flex--direction-row{flex-direction:row}.bz-flex--direction-row-reverse{flex-direction:row-reverse}.bz-flex--direction-column{flex-direction:column}.bz-flex--direction-column-reverse{flex-direction:column-reverse}.bz-flex--wrap-nowrap{flex-wrap:nowrap}.bz-flex--wrap-wrap{flex-wrap:wrap}.bz-flex--wrap-wrap-reverse{flex-wrap:wrap-reverse}.bz-flex--justify-content-flex-start{justify-content:flex-start}.bz-flex--justify-content-flex-end{justify-content:flex-end}.bz-flex--justify-content-center{justify-content:center}.bz-flex--justify-content-space-between{justify-content:space-between}.bz-flex--justify-content-space-around{justify-content:space-around}.bz-flex--justify-content-start{justify-content:start}.bz-flex--justify-content-end{justify-content:end}.bz-flex--justify-content-left{justify-content:left}.bz-flex--justify-content-right{justify-content:right}.bz-text--break{word-break:break-word}.bz-text--lowercase{text-transform:lowercase}.bz-text--uppercase{text-transform:uppercase}.bz-text--capitalize{text-transform:capitalize}.bz-text--line-height{line-height:1.5}.bz-align--right{text-align:right}.bz-align--left{text-align:left}.bz-align--center{text-align:center}.bz-align--justify{text-align:justify}.bz-layout-simple{background-color:#fafafa}.bz-layout__sidebar{display:flex;flex-direction:column}@media (min-width:48em){.bz-layout__sidebar{bottom:0;left:0;position:fixed;top:0;width:30rem}}.bz-layout__main{background-color:#fff;padding:1.6rem}@media (min-width:48em){.bz-layout__main{border-top-left-radius:8px;box-shadow:-2px 0 50px 0 rgba(0,0,0,.2);margin-left:30rem;min-height:100vh;padding:3.2rem 6.4rem;position:relative;z-index:10}.bz-layout__main>div{max-width:768px;margin:0 auto}}.bz-banner{align-items:center;display:flex;max-width:30rem;padding:1.6rem}@media (min-width:48em){.bz-banner{padding:2.4rem}}.bz-banner>.bz-symbol-genome{fill:#217D7E;margin-right:.8rem;max-width:48px}.bz-logo-bizagi{fill:#114040;height:auto;max-width:4.8rem;position:relative;top:.8rem}.bz-logo-genome__name{letter-spacing:1px}.bz-logo-genome__name,.bz-logo-genome__version{margin:0}.bz-logo-genome__version{font-size:1rem;font-weight:400}.bz-layout-triplets,bz-triplets{display:block;overflow:auto;width:100%}.bz-layout-triplets>*,bz-triplets>*{margin-bottom:1em;position:relative;overflow:hidden}.bz-accordion__custom-margin{margin:2px 0}.bz-accordion__head{align-items:center;background:#fff;border-bottom:1px solid #e0e0e0;color:#272727;cursor:pointer;display:flex;font-weight:400;justify-content:space-between}.bz-accordion__head--active{background:rgba(207,242,242,.25);border-bottom:1px solid #217d7e}.bz-accordion__head--disabled{background:#fafafa;color:#9e9e9e;pointer-events:none}.bz-accordion__head--custom-style{background:#fafafa;border-bottom:0}.bz-accordion__head--custom-style-active{border-radius:4px 4px 0 0;border:1px solid #e0e0e0;border-bottom:0}.bz-accordion__head--compact{padding:.4rem .8rem}.bz-accordion__head--compact span{font-size:1.2rem}.bz-accordion__head--normal{padding:.8rem 1.6rem}.bz-accordion__head--normal span{font-size:1.4rem}.bz-accordion__head--comfortable{padding:1.6rem}.bz-accordion__head--comfortable span{font-size:1.4rem}.bz-accordion__head--comfortable .bz-accordion__head--icon{width:16px;height:16px}.bz-accordion__head--icon{fill:#9E9E9E;width:12px;height:12px}.bz-accordion__head--icon--active{fill:#217D7E;transform:rotate(180deg)}.bz-accordion__head--titleIcon{fill:#9E9E9E;padding-right:.4rem}.bz-accordion__head--first-icons{align-items:center;display:flex}.bz-accordion__head--dragg-icon{margin-right:.8rem;display:none;cursor:move}.bz-accordion__head:hover .bz-accordion__head--dragg-icon{display:block}.bz-accordion__body{display:none}.bz-accordion__body--compact{padding:.4rem .8rem}.bz-accordion__body--normal{padding:.8rem 1.6rem}.bz-accordion__body--comfortable{padding:1.6rem}.bz-accordion__body--active{border-bottom:1px solid #e0e0e0;animation:fadeIn .3s;display:block}.bz-accordion__body--custom-style{border-radius:0 0 4px 4px;border:1px solid #e0e0e0;border-top:0}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.bz-action-launcher-fake__container-info{background:#fff;border:1px solid #e0e0e0;border-radius:4px;color:#272727;font-size:1.4rem;padding:1.8rem 1.6rem 1.8rem 1.6rem;display:flex;margin-bottom:1rem}.bz-action-launcher-fake__container-info .bz-image-template-container{margin-right:1.4rem;width:96px;min-height:96px;height:auto;order:0;flex-grow:1;border:2px solid #e0e0e0;border-radius:4px;display:flex;justify-content:center;align-items:center}.bz-action-launcher-fake__container-info .info-template-container{order:1;flex-grow:3}.bz-action-launcher-fake__container-info .info-template-container .bz-title-template{margin:0;padding-bottom:8px;border-bottom:1px solid #c1c3c3;height:32px;background:#ddd;background-clip:content-box}.bz-action-launcher-fake__container-info .info-template-container .bz-list-template{margin-top:10px;background:#ddd;height:18px}.bz-action-launcher-fake__container-vertical{flex-direction:column;padding-left:.8rem;padding-right:.8rem}.bz-action-launcher-fake__container-vertical.bz-action-launcher-fake__container-actions .bz-pill{width:100%}.bz-action-launcher-fake__container-vertical.bz-action-launcher-fake__container-actions .bz-pill:first-child{margin-left:0}.bz-action-launcher-fake__container-vertical.bz-action-launcher-fake__container-actions .bz-pill-search{justify-content:flex-end}.bz-action-launcher-fake__container-actions{padding-top:.8rem;border:1px solid #e0e0e0;border-radius:4px;justify-content:space-between;display:flex;flex-wrap:nowrap}.bz-action-launcher-fake__container-actions .bz-pill{padding-left:.8rem;flex-grow:1}.bz-action-launcher-fake__container-actions .bz-pill:first-child{margin-left:.8rem}.bz-action-launcher-fake__container-actions .bz-pill .bz-btn-icn{cursor:auto}.bz-action-launcher-fake__container-actions .bz-pill .bz-btn-icn:hover .bz-icn{fill:#9e9e9e}.bz-action-launcher-fake__container-actions .bz-label-template{height:10px;background:#ddd;border-radius:4px;margin-right:.8rem;flex-grow:1}.bz-action-launcher .bz-template-more-or-less .bz-show-more{display:none}.bz-action-launcher .bz-template-more-or-less .bz-show-less{display:block}.bz-action-launcher .bz-template{max-height:1000px;overflow:hidden;transition:max-height .5s ease-in}.bz-action-launcher .bz-template~.bz-template-more-or-less{display:block}.bz-action-launcher .bz-template--collapsed{max-height:300px;transition:max-height .5s cubic-bezier(0, .99, .18, 1)}.bz-action-launcher .bz-template--collapsed~.bz-template-more-or-less .bz-show-more{display:block}.bz-action-launcher .bz-template--collapsed~.bz-template-more-or-less .bz-show-less{display:none}.bz-action-launcher .bz-template--collapsed~.bz-template-fade{background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,.75));height:90px;margin-top:-90px;opacity:1;position:relative;transition:opacity .5s ease-in}.bz-action-launcher .bz-template-fade{height:0;opacity:0;transition:opacity .5s ease-in,height 0 linear .5s}.bz-action-launcher .bz-template-more-or-less{background-color:#fff;display:none;text-align:right}.bz-action-launcher .bz-actions-to-execute{display:flex;flex-wrap:wrap}[dir=rtl] .bz-action-launcher .bz-template-more-or-less{text-align:left}.bz-alert{align-items:flex-start;background-color:#272727;display:flex;overflow:hidden;padding:1.6rem 2.4rem;word-wrap:break-word;width:100%}.bz-alert__icon{margin-top:.4rem}.bz-alert__message{color:#fff;flex:1;max-height:4.5em;min-height:1.5em;overflow:auto}.bz-alert__message--warning{color:#272727}.bz-alert--success{background-color:#2d8631}.bz-alert--error{background-color:#da3b3b}.bz-alert--warning{background-color:#f9a825}.bz-alert--info{background-color:#1377d9}.bz-alert__close-icon{cursor:pointer}.bz-body-alert{display:grid;display:-ms-grid;grid-template-columns:1fr;-ms-grid-columns:1fr;grid-template-rows:auto 1fr;-ms-grid-rows:auto 1fr}.bz-body-alert>:first-child{grid-row-start:1;grid-row-end:2;-ms-grid-row:1;-ms-grid-row-span:1}.bz-body-alert>:nth-child(2){grid-row-start:2;grid-row-end:3;-ms-grid-row:2;-ms-grid-row-span:1}.bz-attachments{border-top:1px solid #e0e0e0;display:flex;flex-wrap:wrap;justify-content:space-between;max-height:230px;overflow-y:scroll;padding:.4rem;width:100%}.bz-attachments .bz-attachment{align-items:center;background:#fafafa;border:1px solid #e0e0e0;border-radius:4px;display:flex;justify-content:space-between;margin:.4rem auto;min-height:65px;min-width:65px;position:relative}.bz-attachments .bz-attachment__check{top:0;right:0;position:absolute;padding:.4rem}.bz-attachments .bz-attachment>svg{vertical-align:middle;width:100%}.bz-attachments .bz-attachment>img{max-width:64px;max-height:64px;vertical-align:middle;width:100%}.bz-attachments .bz-attachment-item--hidden{display:none}.bz-attachment-list{border-top:1px solid #e0e0e0;display:flex;justify-content:space-between;padding:.4rem .8rem}.bz-attachment-list--hidden{display:none}.bz-attachment-list .bz-btn.bz-btn--xs{font-size:1.2rem;line-height:16px;margin:.4rem;padding:.4rem .8rem}.bz-attribute{display:flex;flex-direction:row;flex-wrap:nowrap;max-width:100%;padding:.8rem 1.6rem;width:100%;justify-content:flex-start;font-size:12px}.bz-attribute__icon{order:0;align-self:center;padding:0 .6rem}.bz-attribute__text{order:0;align-self:auto;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.bz-attribute__info{order:0;align-self:center;padding:0 .6rem}.bz-autocomplete-searchbox{align-items:center;background-color:#fff;border:1px solid #e0e0e0;border-radius:4px;display:flex;padding:.8rem 1.6rem;position:relative}.bz-autocomplete-searchbox__input{background:0 0;border:none;flex-grow:1;font-size:1.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-autocomplete-searchbox__input__small{font-size:12px}.bz-autocomplete-searchbox__input::placeholder{color:#757575}.bz-autocomplete-searchbox__input:focus{outline:0;box-shadow:none}.bz-autocomplete-searchbox__input::-ms-clear{display:none}.bz-autocomplete-searchbox__clear-icon{position:absolute;right:8px;top:3px}.bz-autocomplete-searchbox:focus{border:1px solid #217d7e}.bz-autocomplete-searchbox--focused{border:1px solid #217d7e}.bz-autocomplete-searchbox--small{padding:.2rem .8rem}.bz-autocomplete-searchbox--error{border:1px solid #da3b3b}.bz-autocomplete-searchbox--opened-below{border-radius:4px 4px 0 0}.bz-autocomplete-searchbox--opened-above{border-radius:0 0 4px 4px}.bz-autocomplete-panel{background-color:#fff;border:1px solid #217d7e;display:flex;flex-direction:column;overflow:auto;-webkit-user-select:none;user-select:none;width:100%}.bz-autocomplete-panel--opened-below{border-top:0;border-radius:0 0 4px 4px;transform:translateY(-2px)}.bz-autocomplete-panel--opened-above{border-bottom:0;border-radius:4px 4px 0 0;transform:translateY(2px)}.bz-autocomplete-panel .bz-option.bz-option--selected:not(.bz-option--active):not(:hover){color:#272727;background-color:#fff}.bz-autocomplete-panel--xs{max-height:132px;scrollbar-color:#9E9E9E rgba(224,224,224,0.5);scrollbar-width:thin}.bz-autocomplete-panel--xs .option-autocomplete-text{display:flex;width:100%;align-items:center}.bz-autocomplete-panel--xs .option-autocomplete-text bzg-icon.bz-space--inline-xs{padding-right:.4rem}.bz-autocomplete-panel--xs .option-autocomplete-text div{flex-grow:1;text-overflow:ellipsis;overflow:hidden;margin-right:15px}.bz-autocomplete-panel--xs .option-autocomplete-text bzg-icon.bz-space--inline-s{padding-top:.4rem;position:absolute;right:0}.bz-autocomplete-panel--xs .option-autocomplete-text em{color:#757575;font-style:italic}.bz-autocomplete-panel--xs .option-autocomplete .bz-option{padding:.4rem .8rem;height:auto;min-height:auto;font-size:12px}.bz-autocomplete-panel--xs .bz-option__label{width:100%}.bz-autocomplete-panel--xs::-webkit-scrollbar-track{border-radius:4px;background-color:rgba(224,224,224,.5)}.bz-autocomplete-panel--xs::-webkit-scrollbar{width:8px;border-radius:4px;background-color:rgba(224,224,224,.5)}.bz-autocomplete-panel--xs::-webkit-scrollbar-thumb{border-radius:4px;background-color:#9e9e9e}.bz-autocomplete-panel--s{max-height:185px}.bz-autocomplete-panel--s .bz-option{height:37px;min-height:37px}.bz-autocomplete-panel--m{max-height:275px}.bz-autocomplete-panel--m .bz-option{height:55px;min-height:55px}.bz-association{border:1px solid #e0e0e0;border-radius:4px;overflow:hidden}.bz-association__header{align-items:flex-start;background:#fafafa;border-bottom:1px solid #e0e0e0;display:flex;justify-content:space-between}.bz-association__header .bz-icn{transition:transform .26s ease;position:inherit;align-self:center;width:35px}.bz-association__header .bz-form-label{margin-bottom:0;padding-bottom:1.6rem;padding-left:.8rem;padding-right:.8rem;padding-top:1.6rem}.bz-association-group__header{align-items:flex-start;border-bottom:1px solid #e0e0e0;display:flex;justify-content:space-between}.bz-association-group__header .bz-form-label{margin-bottom:0;padding:.8rem}.bz-association-group__header .bz-icn{transition:transform .26s ease;position:inherit;align-self:center;width:35px}.bz-association-group__header.bz-icn--expanded .bz-icn{transform:rotate(-180deg)}.bz-association-group__list{border-bottom:1px solid #e0e0e0;padding:.4rem .8rem}.bz-association-group__list--hidden{display:none}.bz-user{align-items:center;display:flex}.bz-user__info{margin-right:1.6rem}.bz-user__info>p{color:#fff;margin-bottom:0;text-align:right}.bz-user__info>p.bz-user__name,.bz-user__info>p:first-child{color:#fff;font-weight:600;line-height:1.5}.bz-user__info>p.bz-user__email,.bz-user__info>p:last-child{font-size:1.2rem}.bz-user__avatar{display:flex;justify-content:center;align-items:center;width:48px;min-width:48px;height:48px;border-radius:50%;background-color:#e0e0e0;cursor:pointer;position:relative;transition:all .3s ease-in-out}.bz-user__avatar:hover{background-color:#cff2f2}.bz-user__avatar:hover .bz-user__avatar-label{color:#1a6061}.bz-user__avatar-label{color:#272727;font-size:1.6rem;font-weight:600;line-height:48px;text-transform:uppercase}.bz-nav-panel{background-color:#fff;border-radius:4px;box-shadow:0 0 4px rgba(0,0,0,.06),0 2px 2px rgba(0,0,0,.12);color:#fff;display:none;min-width:18rem;padding:.8rem;position:absolute;right:0;top:100%;z-index:1000}.bz-nav-panel.show{display:block}.bz-nav-panel>li>a{display:block;padding:.8rem 1.6rem;text-decoration:none}.bz-nav-panel>li>a:focus,.bz-nav-panel>li>a:hover{background-color:rgb(242.25,242.25,242.25)}.badge-box{background:var(--badge-color,#ddd);color:var(--badge-text-color,#333);border:1px solid transparent;border-radius:12px;display:inline-block;font-size:1rem;font-weight:600;padding:.4rem .8rem;text-align:center}.badge-box__icon,.badge-box__quantity{display:none}.badge-box--no-box{background:0 0;font-style:italic;color:var(--badge-color,#333)}.badge-box--no-box__icon,.badge-box--no-box__quantity{display:none}.badge-box--rounded-square{background:var(--badge-color,#ddd);color:var(--badge-text-color,#333);border:1px solid transparent;display:inline-block;font-size:1rem;font-weight:600;padding:.4rem .8rem;text-align:center;border-radius:2px}.badge-box--rounded-square__icon,.badge-box--rounded-square__quantity{display:none}.badge-box--quantity{background:0 0;color:#333}.badge-box--quantity:before{content:"";display:inline-block;width:.8rem;height:.8rem;border-radius:100%;background:var(--badge-color,#ddd);margin-right:.4rem}.badge-box--quantity__icon{display:none}.badge-box--quantity__quantity{background:var(--badge-color,#ddd);color:var(--badge-text-color,#333);border:1px solid transparent;border-radius:12px;display:inline-block;font-size:1rem;font-weight:600;text-align:center;padding-left:.4rem;padding-right:.4rem;margin-left:.4rem}.badge-box--icon{background:var(--badge-color,#ddd);color:var(--badge-text-color,#333);border:1px solid transparent;border-radius:2px;display:inline-block;font-size:1rem;font-weight:600;padding:.4rem .8rem;text-align:center}.badge-box--icon__text{vertical-align:super}.badge-box--icon__icon{display:inline-block;margin-left:.8rem;padding:0}.badge-box--icon__quantity{display:none}.badge-box--icon-only{background:var(--badge-color,#ddd);color:var(--badge-text-color,#333);border:1px solid transparent;border-radius:12px;display:inline-block;font-size:1rem;font-weight:600;padding:.4rem .8rem;text-align:center}.badge-box--icon-only__quantity,.badge-box--icon-only__text{display:none}.badge-box--icon-only__icon{display:inline-block}.badge-box--inverted{--badge-text-color:#FFF;--badge-color:#333}.badge-box--success{--badge-color:#5DBB5D;--badge-text-color:#FFF}.badge-box--warning{--badge-color:#FFC107;--badge-text-color:#FFF}.badge-box--error{--badge-color:#F82B60;--badge-text-color:#FFF}.badge-box--info{--badge-color:#17BFFF;--badge-text-color:#FFF}.bz-btn{align-items:center;background-color:#217d7e;border:1px solid transparent;border-radius:4px;color:#fff;cursor:pointer;display:inline-flex;font-size:1.4rem;font-weight:600;line-height:1.5;padding:.8rem 1.6rem;white-space:normal;word-break:break-all;word-wrap:break-word}.bz-btn[disabled]{background-color:#e0e0e0;border-color:transparent;color:#757575;cursor:auto;pointer-events:none}.bz-btn:focus,.bz-btn:hover{outline:0}.bz-btn:hover:not([disabled]){background-color:#1a6061}.bz-btn:active:not([disabled]){background-color:#114040}.bz-btn .bz-icn{fill:#FFFFFF}.bz-btn--info{background-color:#1377d9}.bz-btn--info:hover:not([disabled]){background-color:rgb(16.9470338983,106.1419491525,193.5529661017)}.bz-btn--success{background-color:#2d8631}.bz-btn--success:hover:not([disabled]){background-color:rgb(38.5893854749,114.9106145251,42.0195530726)}.bz-btn--warning{background-color:#f9a825}.bz-btn--warning:hover:not([disabled]){background-color:rgb(248.3169642857,158.0959821429,12.1830357143)}.bz-btn--error{background-color:#da3b3b}.bz-btn--error:hover:not([disabled]){background-color:rgb(211.5622317597,39.9377682403,39.9377682403)}.bz-btn--secondary{background-color:transparent;border-color:#217d7e;color:#217d7e}.bz-btn--secondary .bz-icn{fill:#217D7E}.bz-btn--secondary[disabled]{background-color:transparent;border-color:#e0e0e0;color:#757575;cursor:auto;pointer-events:none}.bz-btn--secondary[disabled] .bz-icn{fill:#9E9E9E}.bz-btn--secondary:hover:not([disabled]){background-color:transparent;border-color:#1a6061;color:#1a6061}.bz-btn--secondary:hover:not([disabled]) .bz-icn{fill:#1A6061}.bz-btn--secondary:active:not([disabled]){background-color:transparent;border-color:#1a6061;color:#1a6061}.bz-btn--secondary:active:not([disabled]) .bz-icn{fill:#1A6061}.bz-btn--secondary.bz-btn--error{background-color:#fff;border-color:#da3b3b;color:#da3b3b}.bz-btn--secondary.bz-btn--error .bz-icn{fill:#DA3B3B}.bz-btn--secondary.bz-btn--error:hover:not([disabled]){border-color:#da3b3b;background-color:rgba(218,59,59,.05);color:#da3b3b}.bz-btn--secondary.bz-btn--warning{background-color:#fff;border-color:#f9a825;color:#f9a825}.bz-btn--secondary.bz-btn--warning .bz-icn{fill:#F9A825}.bz-btn--secondary.bz-btn--warning:hover:not([disabled]){border-color:#f9a825;background-color:rgba(249,168,37,.05);color:#f9a825}.bz-btn--secondary.bz-btn--success{background-color:#fff;border-color:#2d8631;color:#2d8631}.bz-btn--secondary.bz-btn--success .bz-icn{fill:#2D8631}.bz-btn--secondary.bz-btn--success:hover:not([disabled]){border-color:#2d8631;background-color:rgba(45,134,49,.05);color:#2d8631}.bz-btn--secondary.bz-btn--info{background-color:#fff;border-color:#1377d9;color:#1377d9}.bz-btn--secondary.bz-btn--info .bz-icn{fill:#1377D9}.bz-btn--secondary.bz-btn--info:hover:not([disabled]){border-color:#1377d9;background-color:rgba(19,119,217,.05);color:#1377d9}.bz-btn--white{background-color:transparent;border-color:transparent;color:#757575}.bz-btn--white .bz-icn{fill:#757575}.bz-btn--white:hover:not([disabled]){background-color:transparent}.bz-btn--white:active:not([disabled]){background-color:transparent}.bz-btn--light .bz-icn{fill:#FFFFFF}.bz-btn--light:hover:not([disabled]){background-color:rgba(255,255,255,.25)}.bz-btn--light:hover:not([disabled]) .bz-icn{fill:#FFFFFF}.bz-btn--white-secondary{background-color:transparent;border-color:transparent;color:#217d7e}.bz-btn--white-secondary .bz-icn{fill:#217D7E}.bz-btn--white-secondary:hover:not([disabled]){background-color:transparent}.bz-btn--white-secondary:active:not([disabled]){background-color:transparent}.bz-btn--s{font-size:1.2rem;line-height:16px;padding:.4rem .8rem}.bz-btn--m{font-size:1.4rem;padding:.8rem 1.6rem}.bz-btn--right{border-radius:0 4px 4px 0}.bz-btn--left{border-radius:4px 0 0 4px}.bz-btn--full{width:100%;justify-content:center}a.bz-btn{text-decoration:none}a.bz-btn:active,a.bz-btn:hover,a.bz-btn:visited{color:#fff}.bz-btn-group{display:inline-flex}.bz-btn-icn{align-items:center;background-color:transparent;border:0;border-radius:8px;cursor:pointer;display:flex;height:16px;justify-content:center;padding:0;width:16px}.bz-btn-icn[disabled]{background-color:transparent;cursor:auto;pointer-events:none}.bz-btn-icn[disabled]:hover .bz-icn{fill:#E0E0E0}.bz-btn-icn[disabled] .bz-icn{fill:#E0E0E0}.bz-btn-icn--16{height:16px;min-height:16px;min-width:16px;width:16px}.bz-btn-icn--24{height:24px;min-height:24px;min-width:24px;width:24px}.bz-btn-icn--32{height:32px;min-height:32px;min-width:32px;width:32px}.bz-btn-icn--40{height:40px;min-height:40px;min-width:40px;width:40px}.bz-btn-icn:hover{border-radius:8px}.bz-btn-icn:hover .bz-icn{fill:#217D7E}.bz-btn-icn--active:not([disabled]){background-color:rgba(158,158,158,.15);border-radius:8px}.bz-btn-icn--active:not([disabled]) .bz-icn{fill:#217D7E}.bz-btn-icn--filled{background-color:#217d7e}.bz-btn-icn--filled:hover:not([disabled]){background-color:#1a6061}.bz-btn-icn--filled:hover:not([disabled]) .bz-icn{fill:#FFFFFF}.bz-btn-icn--filled[disabled]{background-color:#e0e0e0;border-color:transparent;color:#757575;cursor:auto;pointer-events:none}.bz-btn-icn--filled[disabled] .bz-icn{fill:#FFFFFF}.bz-btn-icn--filled .bz-icn{fill:#FFFFFF}.bz-card{background:#fff;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.14),0 4px 4px rgba(0,0,0,.12),0 8px 8px rgba(0,0,0,.06);display:flex;flex-direction:column;margin:1.6rem 0;min-width:128px;position:relative}.bz-card__header{display:flex;padding:1.6rem}.bz-card__header-state{border-radius:4px 0 0 4px;height:100%;position:absolute;width:8px}.bz-card__header-state--orange{background-image:linear-gradient(-180deg,#f9ca3e 0,#f19a1d 100%)}.bz-card__header-state--green{background-image:linear-gradient(-180deg,#4cd642 0,#25ad1f 100%)}.bz-card__header-icon{align-items:center;display:flex;justify-content:center;margin:0 1.6rem 0 0}.bz-card__header-text{margin-right:auto}.bz-card__header-title{color:#217d7e;font-size:1.4rem;font-weight:600;margin-bottom:0}.bz-card__header-subtitle{color:#272727;font-size:1.2rem;font-weight:600;margin-bottom:0}.bz-card__header-subtitle--orange{color:#f19a1d;font-weight:600}.bz-card__header-subtitle--green{color:#25ad1f;font-weight:600}.bz-card__moreactions{align-items:center;display:flex;justify-content:center}.bz-card__content,.bz-card__header{border-bottom:1px solid #e0e0e0}.bz-card__content:last-child,.bz-card__header:last-child{border-bottom:0}.bz-card__content figure{margin:0}.bz-card__content-image{align-items:center;background:rgba(248,248,248,.8);border-radius:4px 4px 0 0;display:flex;height:250px;justify-content:center}.bz-card__content-image img{max-height:100%;max-width:100%}.bz-card__content-details{padding:1.6rem}.bz-card__content-title{font-size:2.4rem;font-weight:600;margin-bottom:1.6rem}.bz-card__content-subtitle{font-size:1.4rem;margin-bottom:1.6rem}.bz-card__footer{padding:1.6rem;text-align:right}.bz-card-list{background-color:#fff;display:block;height:100%;overflow:auto}.bz-card-list__transparent{background-color:transparent}.bz-card-list-item{background-color:#fff;border-bottom:1px solid #e0e0e0}.bz-card-list-item__header{align-items:center;background:#fafafa;display:flex;padding:.8rem 2.4rem}.bz-card-list-item__header .bookmark{cursor:pointer}.bz-card-list-item__case-number{color:#272727;flex:1;font-weight:600}.bz-card-list-item__content{display:flex;flex-direction:column;padding:.8rem 2.4rem}.bz-card-list-item__content--selected{background-color:#cff2f2}.bz-card-list-item__content:hover:not(.bz-card-list-item__content--selected){background-color:#fafafa;cursor:pointer}.bz-card-list-item__content--unread .bz-card-list-item__title:after{display:block}.bz-card-list-item__header-title{display:flex;font-weight:600;justify-content:space-between}.bz-card-list-item__title{align-items:center;display:flex;position:relative}.bz-card-list-item__title span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bz-card-list-item__title:after{background:#217d7e;border-radius:50%;content:"";display:none;height:8px;left:-16px;position:absolute;width:8px}.bz-card-list-item__info{display:flex;align-items:baseline}.bz-card-list-item__info-content{flex:1;display:flex;flex-direction:column;width:calc(100% - 24px)}.bz-card-list-item__subtitle-container{display:flex}.bz-card-list-item__subtitle{font-size:1.2rem;color:#272727;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bz-card-list-item__subtitle--complete{overflow:visible}.bz-card-list-item__text{color:#757575;font-size:1.2rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bz-card-list-item__success{color:#2d8631}.bz-card-list-item__warning{color:#f9a825}.bz-card-list-item__error{color:#da3b3b}.bz-card-list-item__info{color:#1377d9}.cdk-keyboard-focused .bz-card-list__list.bz-focus-inset>:focus,.cdk-keyboard-focused .bz-card-list__list.bz-link:focus>:focus{box-shadow:none!important;background-color:#fafafa}.bz-checkbox-list{display:flex;flex-direction:column}.bz-checkbox-list--horizontal{flex-direction:row}.bz-checkbox{display:inline;padding:.8rem 0;position:relative}.bz-checkbox__label{clear:both;cursor:pointer;line-height:1.25em;padding-left:1.75em;position:relative;vertical-align:top;width:100%;display:inline-flex}.bz-checkbox__label:after,.bz-checkbox__label:before{content:"";left:0;position:absolute;top:0}.bz-checkbox__label:before{background-color:#fff;border:1px solid #9e9e9e;border-radius:2px;cursor:pointer;height:1.25em;transition:background .3s;width:1.25em}.bz-checkbox__label--compact{font-size:1.2rem}.bz-checkbox__input:checked+.bz-checkbox__label:before{background-color:#217d7e;border-color:#217d7e}.bz-checkbox__input:checked+.bz-checkbox__label.bz-checkbox__label--reversed:before{background-color:#fff}.bz-checkbox__input:checked+.bz-checkbox__label:after{border:.125em solid #fff;border-right-style:none;border-top-style:none;height:.375em;transform:translate(.25em,.3365384615em) rotate(-45deg);width:.75em}.bz-checkbox__input:checked+.bz-checkbox__label.bz-checkbox__label--reversed:after{border:.125em solid #217d7e;border-right-style:none;border-top-style:none}.bz-checkbox__input:disabled+.bz-checkbox__label{color:#757575;cursor:not-allowed}.bz-checkbox__input:disabled+.bz-checkbox__label:before{background-color:#fafafa;border-color:#e0e0e0}.bz-checkbox__input:disabled:checked+.bz-checkbox__label:before{background-color:#fafafa;border-color:#e0e0e0}.bz-checkbox__input:disabled:checked+.bz-checkbox__label:after{border-color:#e0e0e0}.bz-checkbox__input.cdk-keyboard-focused:focus+.bz-checkbox__label:before{outline:0!important;box-shadow:0 0 0 2px rgba(51,191,193,.5),0 0 0 4px rgba(51,191,193,.25)}.bz-checkbox .bz-checkbox__state{background:0 0;border-radius:50%;height:2em;left:-.38em;opacity:1;position:absolute;top:50%;transform:translateY(-50%) scale(.3);transition:all .5s,opacity .2s .5s;width:2em}.bz-checkbox .bz-checkbox__state--focus{background:#e0e0e0;opacity:0;transform:translateY(-50%) scale(1)}[dir=rtl] .bz-checkbox__label{padding-left:0;padding-right:1.75em}[dir=rtl] .bz-checkbox__label:after,[dir=rtl] .bz-checkbox__label:before{left:auto;right:0}[dir=rtl] .bz-checkbox__label:after{left:auto;right:.5em}[dir=rtl] .bz-checkbox .bz-checkbox__state--focus{left:auto;right:-.38em;transform:translateY(-47%) scale(1)}.bz-yes-no.bz-checkbox{display:flex}.bz-yes-no .bz-checkbox__label{padding-right:0;padding-left:1.25em}@media only screen and (min-width:768px){.bz-checkbox__input:hover+.bz-checkbox__label:before{border-color:#217d7e}.bz-checkbox__input:checked:hover+.bz-checkbox__label:before{border-color:#217d7e}.bz-checkbox__input:checked:hover+.bz-checkbox__label:after{border-right-style:none;border-top-style:none}.bz-checkbox__input:disabled:hover+.bz-checkbox__label:before{border-color:#e0e0e0}.bz-checkbox__input:disabled:hover+.bz-checkbox__label:after{display:none}.bz-checkbox__input:disabled:hover:checked+.bz-checkbox__label:after{display:block}}@media only screen and (max-width:768px){.bz-checkbox-list--horizontal .bz-checkbox{width:50%}}@media only screen and (min-width:769px){.bz-checkbox-list--horizontal .bz-checkbox{width:33%}}.bz-checkList__add{align-items:center;border-bottom:1px solid #e0e0e0;display:flex;justify-content:space-between;padding:.8rem}.bz-checkList__item{align-items:center;display:flex;padding:.8rem}.bz-checkList__input.bz-input{margin:0;width:100%}.bz-checkList.bz-input-container{padding:0}.bz-checkList .bz-checkbox__label{top:-.625em;width:0}.bz-checkList .bz-checkbox__label-fake{border:1px solid transparent;cursor:pointer;line-height:1.5;padding:.8rem 0;position:relative;vertical-align:top;width:100%}.code{background-color:#fafafa;border:1px solid #e0e0e0;border-radius:4px;display:block;font-size:1.4rem;margin-bottom:2.4rem;padding:1.6rem;position:relative}.code--center{text-align:center}.code--pre{overflow-x:auto;white-space:pre}.code-snippet__copy{position:absolute;right:.6rem;top:.6rem}.bz-column-explorer{display:flex;overflow-x:auto;overflow-y:hidden;height:100%}.bz-column-explorer__column{border-right:1px solid #e0e0e0;height:100%;list-style-type:none;overflow-y:auto;padding:0;width:220px}.bz-column-explorer__item{align-items:center;cursor:pointer;display:flex;padding:.8rem 1.6rem}.bz-column-explorer__item--active{background-color:#fafafa}.bz-column-explorer__item--leaf{align-items:center;cursor:pointer;display:flex;font-size:1.2rem;line-height:21px;padding:.8rem 1.6rem}.bz-column-explorer__item--title{padding-left:.4rem}.bz-column-explorer__item:hover:not(.bz-column-explorer__item--active){background-color:#fafafa}.bz-column-explorer__item:focus{outline:0}.bz-column-explorer__name{width:calc(100% - 16px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bz-column-explorer__name--title{font-weight:600}[dir=rtl] .bz-column-explorer__item--title{padding-right:.4rem;padding-left:1.6rem}@media screen and (min-width:481px){.bz-column-explorer__item--title{display:none}}.bz-combo__arrow,.bz-form-item[dir=ltr] .bz-combo__arrow{padding:1.6rem 2.4rem;position:absolute;right:0;top:0}.bz-form-item[dir=rtl] .bz-combo__arrow{left:0}.bz-form-combo.bz-input-icon .bz-icn{padding:.8rem}.bz-form-combo__input{color:#272727}.bz-modal-view__header .bz-btn--s{color:#217d7e;margin-right:.8rem}.bz-modal-view__search{font-size:1.4rem}.bz-modal-view__clear>svg{vertical-align:middle}.bz-document-template.bz-input-icon{align-items:normal;flex-direction:column}.bz-document-template.bz-input-icon--hidden{display:none}.bz-document-template__input{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;visibility:visible;white-space:nowrap;width:1px}.bz-document-template__container{align-items:center;display:flex;width:100%}.bz-document-template__container>.bz-icn{padding:.8rem}.bz-document-template__container--hidden{display:none}.bz-documents{border-top:1px solid #e0e0e0;width:100%}.bz-documents .bz-document{border:0;justify-content:space-between;margin-bottom:0}.bz-documents .bz-document .bz-document-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-documents .bz-document .bz-document-download{align-items:center;display:flex}.bz-empty-state{width:100%}.bz-empty-state__content{width:100%;padding:1.6rem}.bz-empty-state__title{display:block;font-size:1.6rem;font-weight:600;margin-bottom:.8rem}.bz-empty-state__message{display:block;margin:0;margin-bottom:.8rem}.bz-empty-state__messages{margin-bottom:1.6rem}.bz-empty-state__illustration{max-width:100%;height:auto;object-fit:contain;max-height:40vh}.bz-file-upload.bz-input-icon{align-items:normal;flex-direction:column}.bz-file-upload__input{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;visibility:visible;white-space:nowrap;width:1px}.bz-file-upload__container{align-items:center;display:flex;width:100%}.bz-file-upload__container>.bz-icn{padding:.8rem}.bz-file-upload__container--hidden{display:none}.bz-file-upload__container--disabled{background-color:#fafafa}.bz-files{border-top:1px solid #e0e0e0;width:100%}.bz-files .bz-file{border:0;justify-content:space-between;margin-bottom:0}.bz-files .bz-file .bz-file-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-files .bz-file .bz-file-download{align-items:center;display:flex}.bz-readonly-lists .bz-file{border:0;display:list-item;list-style-position:inside;list-style-type:disc;padding-left:0}.bz-readonly-lists .bz-file .bz-input-icon__input{padding:0}.bz-select-filter{background-color:#fff;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.14),0 4px 4px rgba(0,0,0,.12),0 8px 8px rgba(0,0,0,.06);display:flex;flex-direction:column;max-height:185px;max-width:250px;min-width:125px;position:absolute;-webkit-user-select:none;user-select:none;overflow:hidden auto}.bz-select-filter .bz-option.bz-option--selected{color:#fff;background-color:#217d7e}.bz-select-filter-trigger{background-color:#f6f6f6;border-radius:8px;color:#272727;cursor:pointer;display:flex;font-size:1.2rem;padding:.8rem 1.6rem}.bz-select-filter-trigger__placeholder{font-weight:600}.bz-select-filter-trigger__value{flex-grow:1}[dir=rtl]{text-align:right}[dir=ltr]{text-align:left}::placeholder{color:#757575}select::-ms-expand{display:none}.bz-form-group{margin-bottom:1.6rem}.bz-form-label{color:#272727;flex:1 1 auto;font-size:1.4rem;font-weight:600;line-height:1.5em;margin-bottom:.4rem;width:50%}.bz-form-label--compact{font-size:1.2rem}.bz-form-label--full{width:100%}.bz-form-label--hidden{display:none}.bz-control{max-width:100%;position:relative;width:100%}.bz-form-item__info{display:flex;flex-direction:column}.bz-form-item{display:flex;flex-direction:row;flex-wrap:wrap;max-width:100%;padding:.8rem 1.6rem;width:100%}.bz-form-item__control{flex:1 1 auto;max-width:100%;width:50%}.bz-form-item__control--full{width:100%}.bz-form-item__control--hidden{display:none}.bz-form-item--error .bz-input,.bz-form-item--error .bz-input-icon{border-color:#da3b3b}.bz-form-item--error .bz-container-message__help,.bz-form-item--error .bz-form-cell-message__help,.bz-form-item--error .bz-form-message__help{display:none}.bz-form-item--error .bz-container-message__error,.bz-form-item--error .bz-form-cell-message__error,.bz-form-item--error .bz-form-message__error{display:flex}.bz-form-item--error .bz-required__icon{color:#da3b3b}.bz-form-item--display-value,.bz-form-item--display-vertical{flex-direction:column}.bz-form-item--display-value .bz-form-item__control,.bz-form-item--display-vertical .bz-form-item__control{max-width:100%;width:100%}.bz-form-item--display-value .bz-form-label,.bz-form-item--display-vertical .bz-form-label{max-width:100%;width:100%}.bz-form-item--display-normal .bz-form-label,.bz-form-item--display-normal[dir=ltr] .bz-form-label{padding-right:.8rem}.bz-form-item--display-reversed{flex-direction:row-reverse}.bz-form-item--display-reversed .bz-form-label,.bz-form-item--display-reversed[dir=ltr] .bz-form-label{padding-left:.8rem}.bz-form-item--display-label .bz-form-item__control{flex:0 0 auto}.bz-form-item--display-label .bz-control{display:none}.bz-form-item--display-label .bz-form-label{flex:auto;width:100%}.bz-form-item .bz-required__icon{display:none}.bz-form-item--display-value label.bz-form-label label{display:none}.bz-form-item--display-value.bz-form-item--required .bz-required__icon{display:inline-block}.bz-form-item--required .bz-required__icon{display:inline}[dir=rtl] .bz-form-item--display-normal .bz-form-label{padding-left:.8rem;padding-right:0}[dir=rtl] .bz-form-item--display-reversed .bz-form-label{padding-left:0;padding-right:.8rem}.bz-form-item--display-normal[dir=rtl] .bz-form-label{padding-left:.8rem;padding-right:0}.bz-form-item--display-reversed[dir=rtl] .bz-form-label{padding-left:0;padding-right:.8rem}.bz-form-container{position:relative}@keyframes cdk-text-field-autofill-color{to{background:#cff2f2;color:#272727}}input:-webkit-autofill{animation-name:cdk-text-field-autofill-color;animation-fill-mode:both}input::-ms-clear{display:none}.bz-input,.bz-input-button,.bz-input-container,.bz-input-icon{appearance:none;background:#fff;border:1px solid #e0e0e0;border-radius:4px;color:#272727;font-size:1.4rem;line-height:1.5;padding:.8rem 1.6rem;text-align:inherit;width:100%;resize:vertical;-moz-appearance:textfield}.bz-input-button::placeholder,.bz-input-container::placeholder,.bz-input-icon::placeholder,.bz-input::placeholder{color:#757575;font-size:1.4rem}.bz-input--disabled,.bz-input-button--disabled,.bz-input-button[disabled],.bz-input-container--disabled,.bz-input-container[disabled],.bz-input-icon--disabled,.bz-input-icon[disabled],.bz-input[disabled]{background-color:#fafafa}.bz-input--readonly,.bz-input-button--readonly,.bz-input-button[readonly],.bz-input-container--readonly,.bz-input-container[readonly],.bz-input-icon--readonly,.bz-input-icon[readonly],.bz-input[readonly]{background:0 0;border:0;margin-bottom:.4rem;overflow:hidden;padding:0}.bz-input--readonly::placeholder,.bz-input-button--readonly::placeholder,.bz-input-button[readonly]::placeholder,.bz-input-container--readonly::placeholder,.bz-input-container[readonly]::placeholder,.bz-input-icon--readonly::placeholder,.bz-input-icon[readonly]::placeholder,.bz-input[readonly]::placeholder{color:#272727}.bz-input--active,.bz-input-button--active,.bz-input-button:focus,.bz-input-container--active,.bz-input-container:focus,.bz-input-icon--active,.bz-input-icon:focus,.bz-input:focus{border-color:#217d7e;outline:0;box-shadow:none}.bz-form-item--error .bz-input--active,.bz-form-item--error .bz-input-button--active,.bz-form-item--error .bz-input-button:focus,.bz-form-item--error .bz-input-container--active,.bz-form-item--error .bz-input-container:focus,.bz-form-item--error .bz-input-icon--active,.bz-form-item--error .bz-input-icon:focus,.bz-form-item--error .bz-input:focus{border-color:#da3b3b}.bz-input--error,.bz-input-button--error,.bz-input-container--error,.bz-input-icon--error{border-color:#da3b3b}.bz-input--error:focus,.bz-input-button--error:focus,.bz-input-container--error:focus,.bz-input-icon--error:focus{border-color:#da3b3b}.bz-input--error+.bz-status>.bz-status__message,.bz-input-button--error+.bz-status>.bz-status__message,.bz-input-container--error+.bz-status>.bz-status__message,.bz-input-icon--error+.bz-status>.bz-status__message{color:#da3b3b}.bz-input-button[type=number]::-webkit-inner-spin-button,.bz-input-button[type=number]::-webkit-outer-spin-button,.bz-input-container[type=number]::-webkit-inner-spin-button,.bz-input-container[type=number]::-webkit-outer-spin-button,.bz-input-icon[type=number]::-webkit-inner-spin-button,.bz-input-icon[type=number]::-webkit-outer-spin-button,.bz-input[type=number]::-webkit-inner-spin-button,.bz-input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.bz-input--compact,.bz-input-button--compact,.bz-input-container--compact,.bz-input-icon--compact{font-size:1.2rem;padding:.4rem .8rem}.bz-input--compact::placeholder,.bz-input-button--compact::placeholder,.bz-input-container--compact::placeholder,.bz-input-icon--compact::placeholder{font-size:1.2rem;padding:.4rem .8rem}.bz-input-icon{align-items:center;display:flex;padding:0}.bz-input-icon__input{background:0 0;border:0;flex:1;min-width:0;padding:.8rem 1.6rem;text-align:inherit}.bz-input-icon>.bz-icn{padding:.8rem}.bz-input-icon:focus{border-color:#217d7e;box-shadow:none;outline:0}.bz-input-icon--disabled,.bz-input-icon--readonly{background-color:#fafafa}.bz-input-icon--disabled+.bz-icn,.bz-input-icon--readonly+.bz-icn{display:block}.bz-input-icon--focused{border-color:#217d7e;outline:0}.bz-textarea-readonly{overflow:hidden;transition:all 1s}.bz-textarea-readonly .bz-morecontent span{display:none}.bz-textarea-readonly--active .bz-morecontent span{display:inline}.bz-text-readonly{overflow:hidden;transition:all 1s}.bz-text-readonly .bz-morecontent span{display:none}.bz-text-readonly--active .bz-morecontent span{display:inline}.bz-read-more{color:#757575}.bz-container-message,.bz-form-cell-message,.bz-form-message{display:flex;font-size:1.2rem;margin-top:.4rem}.bz-container-message__text,.bz-form-cell-message__text,.bz-form-message__text{line-height:1.5em;width:100%}.bz-container-message__help,.bz-form-cell-message__help,.bz-form-message__help{color:#757575;font-size:1.2rem;line-height:1.5em;overflow:hidden}.bz-container-message__char-counter,.bz-form-cell-message__char-counter,.bz-form-message__char-counter{color:#757575;font-size:1.2rem;line-height:1.5em;overflow:hidden}.bz-container-message__char-counter--error,.bz-form-cell-message__char-counter--error,.bz-form-message__char-counter--error{color:#da3b3b;font-weight:600}.bz-container-message__spacer,.bz-form-cell-message__spacer,.bz-form-message__spacer{flex:1 0 1em}.bz-container-message__error,.bz-form-cell-message__error,.bz-form-message__error{color:#da3b3b;display:none;overflow:hidden}.bz-container-message__error .bz-icn,.bz-form-cell-message__error .bz-icn,.bz-form-message__error .bz-icn{fill:#DA3B3B}.bz-container-message__error span,.bz-form-cell-message__error span,.bz-form-message__error span{width:100%}.bz-form-item-grid--error .bz-form-message__error{display:flex}.bz-dropdown{display:inline-block;position:relative;vertical-align:middle}.bz-dropdown::after{content:"";pointer-events:none;position:absolute}.bz-dropdown::after{content:"▼";font-size:.625em;height:1em;line-height:1;margin-top:-.5em;right:1.2em;top:50%}.bz-dropdown__select{appearance:none;background-color:#fff;border:1px solid #e0e0e0;border-radius:8px;padding:.8rem 1.6rem}.bz-dropdown__select[disabled]{color:rgba(0,0,0,.3)}.bz-dropdown__select::after{color:rgba(0,0,0,.1)}textarea.bz-input--compact::placeholder{line-height:.9rem;text-indent:-.6rem}[dir=rtl] .bz-document-template__container>.bz-icn,[dir=rtl] .bz-file-upload__container>.bz-icn,[dir=rtl] .bz-input-icon>.bz-icn{left:.4rem;right:auto}@media (max-width:480px){.bz-form-label{max-width:100%;width:100%}.bz-form-item{flex-direction:column}.bz-form-item__control{max-width:100%;width:100%}.bz-form-item--display-normal .bz-form-label{padding:0}.bz-form-item--display-reversed{flex-direction:column-reverse}.bz-form-item--display-reversed .bz-form-label{margin-bottom:0;margin-top:.4rem;padding:0}.bz-form-item--display-normal[dir=rtl] .bz-form-label{padding:0}.bz-form-item--display-reversed[dir=rtl] .bz-form-label{padding:0}[dir=rtl] .bz-form-item--display-normal .bz-form-label{padding:0}[dir=rtl] .bz-form-item--display-reversed .bz-form-label{padding:0}}@media (min-width:48em){.bz-row::after{clear:both;content:"";display:block}.bz-column__2{width:calc(16.6666666667% - 1.8666666667rem);float:left;margin-left:1.6rem}.bz-column__3{width:calc(25% - 2rem);float:left;margin-left:1.6rem}.bz-column__4{width:calc(33.3333333333% - 2.1333333333rem);float:left;margin-left:1.6rem}.bz-column__5{width:calc(41.6666666667% - 2.2666666667rem);float:left;margin-left:1.6rem}.bz-column__6{width:calc(50% - 2.4rem);float:left;margin-left:1.6rem}.bz-column__7{width:calc(58.3333333333% - 2.5333333333rem);float:left;margin-left:1.6rem}.bz-column__8{width:calc(66.6666666667% - 2.6666666667rem);float:left;margin-left:1.6rem}.bz-column__9{width:calc(75% - 2.8rem);float:left;margin-left:1.6rem}.bz-column__10{width:calc(83.3333333333% - 2.9333333333rem);float:left;margin-left:1.6rem}.bz-column__11{width:calc(91.6666666667% - 3.0666666667rem);float:left;margin-left:1.6rem}}.bz-collapsible .bz-collapsible__header,.bz-collapsible[dir=ltr] .bz-collapsible__header{background-color:rgba(207,242,242,.25);border-bottom:1px solid #217d7e;color:#272727;font-size:1.4rem;margin:0;min-height:25px;padding:1.6rem;padding-right:4.8rem;position:relative;width:100%}.bz-collapsible .bz-collapsible__header>svg,.bz-collapsible[dir=ltr] .bz-collapsible__header>svg{fill:#217D7E;left:initial;margin-top:-16px;padding:.8rem;position:absolute;right:.8rem;top:50%;transition:transform .26s ease}.bz-collapsible .bz-collapsible__content,.bz-collapsible[dir=ltr] .bz-collapsible__content{border-bottom:1px solid #e0e0e0;max-height:100000px;overflow:hidden;transition:max-height .26s ease-in,opacity .26s linear}.bz-collapsible.bz-collapsible--collapsed .bz-collapsible__content,.bz-collapsible[dir=ltr].bz-collapsible--collapsed .bz-collapsible__content{max-height:0;opacity:0;transition:max-height .26s cubic-bezier(0, .98, .58, 1),opacity .26s linear}.bz-collapsible.bz-collapsible--collapsed .bz-collapsible__header,.bz-collapsible[dir=ltr].bz-collapsible--collapsed .bz-collapsible__header{background-color:#fff;border-bottom:1px solid #e0e0e0}.bz-collapsible.bz-collapsible--collapsed>.bz-collapsible__header>svg,.bz-collapsible[dir=ltr].bz-collapsible--collapsed>.bz-collapsible__header>svg{fill:#9E9E9E;transform:rotate(-180deg)}.bz-collapsible[dir=rtl] .bz-collapsible__header,[dir=rtl] .bz-collapsible .bz-collapsible__header{padding-left:4.8rem;padding-right:1.6rem}.bz-collapsible[dir=rtl] .bz-collapsible__header>svg,[dir=rtl] .bz-collapsible .bz-collapsible__header>svg{left:.8rem;right:initial}.bz-collapsible[dir=rtl].bz-collapsible--collapsed>.bz-collapsible__header>svg,[dir=rtl] .bz-collapsible.bz-collapsible--collapsed>.bz-collapsible__header>svg{transform:rotate(180deg)}.bz-header{background:#217d7e;display:flex}.bz-header__icon{background-color:#33bfc1;height:64px;width:64px}.bz-header__container{align-items:center;background-repeat:no-repeat;background-size:contain;display:flex;flex:1;justify-content:space-between;padding:.8rem 1.6rem}.bz-logo-link{align-items:flex-end;display:flex;text-decoration:none}.bz-logo-link__img{margin-right:.8rem;position:relative;top:.5rem;width:110px}.bz-logo-link__tag{color:#fff;font-size:1.4rem;margin-bottom:4px}@media screen and (min-width:768px){.bz-logo-link__img{margin-right:1.6rem}}.bz-image{border-radius:2px;vertical-align:middle}.bz-image__input{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;visibility:visible;white-space:nowrap;width:1px}.bz-image--24{height:24px;min-height:24px;min-width:24px;width:24px}.bz-image--32{height:32px;min-height:32px;min-width:32px;width:32px}.bz-image--40{height:40px;min-height:40px;min-width:40px;width:40px}.bz-image--48{height:48px;min-height:48px;min-width:48px;width:48px}.bz-image--h48{height:48px;min-height:48px}.bz-image--w96{min-width:96px;width:96px}.bz-image:after,.bz-image:before{content:""}.bz-initials{background-color:#9e9e9e;border-radius:50%;color:#fff;display:flex;font-size:1rem;font-weight:600;height:24px;justify-content:center;align-items:center;line-height:24px;min-width:24px;text-transform:uppercase;width:24px}.bz-initials--s{font-size:1rem;height:16px;line-height:16px;min-width:16px;width:16px}.bz-initials--l{font-size:1.2rem;height:32px;line-height:32px;min-width:32px;width:32px}.bz-initials--xl{font-size:1.6rem;height:48px;line-height:48px;min-width:48px;width:48px}.bz-initials--xxl{font-size:2.7rem;height:64px;line-height:64px;min-width:64px;width:64px}.bz-initials--light{background-color:#e0e0e0;color:#272727}.bz-initials--light .bz-icon{fill:#272727}.bz-input-group{display:flex;flex-direction:column}.bz-input-group label{color:#555;font-size:14px;font-weight:600;margin-bottom:4px;width:288px}.bz-input-group input{border:1px solid #e1e1e1;border-radius:4px;color:#555;font-size:14px;height:37px;margin-bottom:4px}.bz-input-group input::placeholder{color:#b7b7b7;font-size:14px}.bz-input-group input:disabled{background-color:#f8f8f8}.bz-input-group__info{color:#b7b7b7;font-size:12px}.bz-input-group__error{color:#f82b60;display:flex;flex-direction:column;font-size:12px}.bz-input-group__error :first-child{display:inline}.bz-input-group__error :first-child svg{height:16px;width:16px}.bz-input-group__error :not(:first-child){display:none}.bz-form-list{align-items:center;background-color:#fff;display:flex;justify-content:space-between;position:relative}.bz-list__item{color:#272727;font-size:1.4rem;margin-bottom:.4rem;padding:.8rem 1.6rem}.bz-list__item--selected{background:#cff2f2}.bz-readonly-lists .bz-search-list__item{border:0;display:list-item;list-style-position:inside;list-style-type:disc;padding-left:0}.bz-readonly-lists .bz-search-list__item .bz-input-icon__input{padding:0}.bz-link-list{display:flex;justify-content:space-between;padding:.4rem 0}.bz-link-list--hidden{display:none}.bz-link{color:#272727;cursor:pointer;font-size:1.4rem;line-height:1.5em;text-decoration:underline}.bz-link--hidden{display:none}.bz-link--disabled{color:#9e9e9e;cursor:not-allowed;pointer-events:none}.bz-link:active,.bz-link:hover{color:#217d7e}.bz-link:visited{color:#757575}.loader__icon{fill:transparent;margin-bottom:.8rem;stroke:#217D7E;stroke-width:10;stroke-linecap:round}.loader__icon--l{stroke-width:18}.loader__icon--m{stroke-width:22}.loader__icon--s{stroke-width:22}.loader-poly{stroke-dasharray:1032;stroke-dashoffset:1032;animation:polyBZ 2s ease-in-out infinite}@keyframes polyBZ{0%{stroke-dashoffset:1032}35%{stroke-dashoffset:0}60%{stroke-dashoffset:0}95%{stroke-dashoffset:-1032}100%{stroke-dashoffset:-1032}}.loader-small{stroke:#217D7E;fill:transparent;stroke-width:30;width:20px;stroke-linecap:round}.loader-small__poly{stroke-dasharray:1032;stroke-dashoffset:1032;animation:polyBZsmall 2s linear infinite}@keyframes polyBZsmall{0%{stroke-dashoffset:1032}50%{stroke-dashoffset:0}100%{stroke-dashoffset:-1032}}.lineOne{stroke-dasharray:550;stroke-dashoffset:550;animation:lineOne 2s ease-in-out infinite}.lineTwo{stroke-dasharray:550;stroke-dashoffset:550;animation:lineTwo 2s ease-in-out infinite}.lineThree{stroke-dasharray:550;stroke-dashoffset:550;animation:lineThree 2s ease-in-out infinite}@keyframes lineOne{35%{stroke-dashoffset:550}60%{stroke-dashoffset:0}95%{stroke-dashoffset:-550}100%{stroke-dashoffset:-550}}@keyframes lineTwo{35%{stroke-dashoffset:550}60%{stroke-dashoffset:0}95%{stroke-dashoffset:-550}100%{stroke-dashoffset:-550}}@keyframes lineThree{35%{stroke-dashoffset:550}60%{stroke-dashoffset:0}95%{stroke-dashoffset:-550}100%{stroke-dashoffset:-550}}.loader__icon--explorer{animation:explorer .8s linear infinite;transform:rotate(0)}.line-two{opacity:0}.line-three{opacity:.2}.line-four{opacity:.4}.line-five{opacity:.6}.line-six{opacity:.8}@keyframes explorer{0%{transform:rotate(0)}16%{transform:rotate(0)}16.6%{transform:rotate(60deg)}33%{transform:rotate(60deg)}33.2%{transform:rotate(120deg)}49%{transform:rotate(120deg)}49.8%{transform:rotate(180deg)}66%{transform:rotate(180deg)}66.4%{transform:rotate(240deg)}82%{transform:rotate(240deg)}83%{transform:rotate(300deg)}99%{transform:rotate(300deg)}100%{transform:rotate(360deg)}}.bz-map-item{display:flex;align-items:center}.bz-map-item__attribute{width:50%}.bz-map-item__icon{width:5%;padding-top:5px}.bz-map-item__autocomplete{width:45%;padding-right:1.6rem}.bz-message{align-items:center;border-radius:4px;display:flex;justify-content:space-between;margin-bottom:1.6rem;overflow:hidden;padding:.8rem 1.6rem;position:relative}.bz-message__state-bar{height:100%;position:absolute;left:0;top:0;width:6px}.bz-message__close{cursor:pointer;color:#9e9e9e}.bz-message__content{flex:1;display:flex;align-items:center}.bz-message__inner-content{flex:1}.bz-message--success{background:rgba(45,134,49,.05);color:#2d8631}.bz-message--success .bz-message__state-bar{background:#2d8631}.bz-message--success .bz-message__icon{color:#2d8631}.bz-message--success .bz-message__icon .bz-icn{fill:#2D8631}.bz-message--warning{background:rgba(249,168,37,.05)}.bz-message--warning .bz-message__state-bar{background:#f9a825}.bz-message--warning .bz-message__icon{color:#f9a825}.bz-message--warning .bz-message__icon .bz-icn{fill:#F9A825}.bz-message--error{background:rgba(218,59,59,.05);color:#da3b3b}.bz-message--error .bz-message__state-bar{background:#da3b3b}.bz-message--error .bz-message__icon{color:#da3b3b}.bz-message--error .bz-message__icon .bz-icn{fill:#DA3B3B}.bz-message--info{background:rgba(19,119,217,.05)}.bz-message--info .bz-message__state-bar{background:#1377d9}.bz-message--info .bz-message__icon{color:#1377d9}.bz-message--info .bz-message__icon .bz-icn{fill:#1377D9}[dir=rtl] .bz-message__state-bar{left:auto;right:0}.bz-menu-accordion-container{overflow:auto}.bz-menu-accordion{padding:.4rem 0;border-bottom:1px solid #e0e0e0}.bz-menu-accordion-container--hideContent .bz-menu-accordion{display:none}.bz-menu-accordion__title{cursor:pointer;display:flex;font-weight:400;justify-content:space-between;padding:1.6rem 2.4rem;border-bottom:1px solid #217d7e;background-color:rgba(207,242,242,.25)}.bz-menu-accordion__title .bz-icn{vertical-align:middle;width:12px;height:12px;fill:#217D7E}.bz-menu-accordion-container--hideContent:last-child .bz-menu-accordion__title{border-bottom:none}.bz-menu-accordion-container--hideContent .bz-menu-accordion__title{background-color:transparent;border-bottom-color:#e0e0e0}.bz-menu-accordion-container--hideContent .bz-menu-accordion__title .bz-icn{fill:#9E9E9E}.bz-menu-accordion__item{padding:.8rem 2.4rem}.bz-menu-accordion__item :not(a):first-child{margin-right:.8rem}.bz-menu-accordion__item a{display:block;text-decoration:none}.bz-menu-accordion__item input,.bz-menu-accordion__item label{vertical-align:middle}.bz-modal{background-color:#fff;border-radius:4px;box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16);display:flex;flex-direction:column;height:100%;overflow:auto;position:relative;width:100%}.bz-modal__header{align-items:center;border-bottom:1px solid #e0e0e0;display:flex;font-size:1.6rem;font-weight:600;min-height:64px;padding:1.6rem 1.6rem 1.6rem 2.4rem}.bz-modal__title{flex-grow:1;font-size:1.6rem;line-height:16px}.bz-modal__body{display:block;flex-grow:1;overflow-y:auto;padding:2.4rem;position:relative}.bz-modal__footer{align-items:center;border-top:1px solid #e0e0e0;display:flex;justify-content:flex-end;padding:1.6rem 2.4rem}.bz-modal--fullscreen{border-radius:0}.bz-mobile-grid{border:1px solid #e0e0e0;border-radius:4px}.bz-mobile-grid .bz-form-item{padding:0}.bz-mobile-grid .bz-form-item:last-child{border-bottom:none}.bz-mobile-grid.bz-mobile-grid--empty .bz-mobile-grid__header{border-top:none}.bz-mobile-grid__empty{text-align:center;padding:.8rem}.bz-mobile-grid__header{align-items:center;background-color:#fafafa;border-bottom:1px solid #e0e0e0;border-radius:4px 4px 0 0;display:flex;font-size:1.6rem;font-weight:700;justify-content:space-between;padding:.8rem}.bz-mobile-grid__body{border-bottom:1px solid #e0e0e0}.bz-mobile-grid__totalizer{padding:.8rem}.bz-mobile-grid__totalizer .bz-mobile-grid__totalizer-item{padding:.4rem}.bz-mobile-grid__totalizer .bz-mobile-grid__totalizer-item span{display:block}.bz-mobile-grid__cell{padding:.8rem}.bz-mobile-grid__cell:nth-child(2){border-top:1px solid #e0e0e0}.bz-mobile-grid__row-buttons{border-bottom:1px solid #e0e0e0;display:flex;flex-wrap:wrap;padding:.4rem}.bz-mobile-grid__row-buttons .bz-btn{margin:.4rem;justify-content:center;text-align:center;min-width:47%;flex-grow:1}.bz-mobile-grid__pager{align-items:center;display:flex;justify-content:space-between;padding:.8rem}.bz-mobile-grid__pager input{max-width:30px}.bz-mobile-grid__page-number{color:#757575;display:inline-flex}.bz-form-item[dir=rtl] .bz-mobile-grid__row-buttons .bz-btn{margin-left:.4rem;margin-right:0}.bz-form-item[dir=rtl] .bz-mobile-grid__row-buttons .bz-btn:last-child{margin-left:0}.bz-form-item[dir=rtl] .bz-mobile-grid__pager .bz-btn-icn svg{transform:rotate(180deg)}.bz-modal-view--totalizer .bz-modal-view__header{background-color:#fafafa;padding:0}.bz-modal-view--totalizer .bz-modal-view__title{color:#272727;font-size:1.4rem;padding:1.6rem}.bz-modal-view--totalizer .bz-modal-view__close{padding:.8rem}.bz-modal-view--totalizer .bz-btn-icn{fill:#9E9E9E}.bz-modal-view{background-color:#fff;color:#272727}.bz-modal-view--hidden{display:none}.bz-modal-view__header{align-items:center;border-bottom:1px solid #e0e0e0;display:flex;justify-content:space-between;padding-bottom:.8rem;padding-top:.8rem}.bz-modal-view__header--active{border-bottom:1px solid #217d7e}.bz-modal-view__header-multiple .bz-search__header{align-items:center;border-bottom:1px solid #e0e0e0;display:flex;justify-content:space-between;padding-bottom:.8rem;padding-top:.8rem}.bz-modal-view__header-multiple .bz-search__header--active{border-bottom:1px solid #217d7e}.bz-modal-view__content .bz-checkbox-list{padding:.8rem 1.6rem}.bz-modal-view__title{color:#272727;font-size:1.6rem;font-weight:600;padding:.8rem 1.6rem}.bz-modal-view__footer{align-items:center;background-color:#fff;border-top:1px solid #e0e0e0;display:flex;justify-content:flex-end;padding:1.6rem}.bz-modal-view__clear{opacity:0;padding:.8rem;pointer-events:none;position:relative;transition:opacity .3s}.bz-modal-view__clear::after{background:#e0e0e0;bottom:0;content:"";position:absolute;right:-.4rem;top:0;width:1px}.bz-modal-view__clear--visible{opacity:1;pointer-events:auto}.bz-modal-view__search{border:0;flex:1;line-height:1.5;padding:.8rem 1.6rem}.bz-modal-view__close{padding:.8rem;right:0}.bz-modal-view--bordered{border:1px solid #fff;background-color:#fff;border-radius:8px}[dir=rtl] .bz-modal-view__clear::after{left:-.4rem;right:auto}[dir=rtl] .bz-modal-view__content{text-align:right}.bz-nav-sidebar__item{align-items:center;color:#1a6061;display:flex;padding:.8rem 1.6rem;text-decoration:none}.bz-nav-sidebar__item>.bz-icn{fill:#1A6061;margin-right:.8rem}.bz-nav-sidebar__item:hover:not(.bz-nav-sidebar__item--active){color:#217d7e;cursor:pointer}.bz-nav-sidebar__item:hover:not(.bz-nav-sidebar__item--active)>.bz-icn{fill:#217D7E}.bz-nav-sidebar__item--active{color:#217d7e;position:relative}.bz-nav-sidebar__item--active>.bz-icn{fill:#217D7E}.bz-nav-sidebar__item--active::before{background-color:#217d7e;bottom:0;content:"";left:0;position:absolute;top:0;width:2px}.bz-option{cursor:pointer;font-size:1.4rem;overflow:hidden;padding:.8rem 1.6rem;text-overflow:ellipsis;-webkit-user-select:none;user-select:none;white-space:nowrap;min-height:37px}.bz-select-options--compact .bz-option{min-height:2.8rem;font-size:1.2rem;padding:.4rem .8rem}.bz-option:hover{background-color:#fafafa}.bz-option--selected{background-color:#fafafa;color:#217d7e}.bz-option--active{background-color:#fafafa}.bz-option--active .bz-initials{background-color:#217d7e;color:#fff}.bz-option__content{align-items:center;display:flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-option__info{display:flex;flex-direction:column;overflow:hidden}.bz-option__label{align-items:center;display:flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-option__title{font-size:1.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-option__subtitle{color:#757575;font-size:1.2rem;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap}.bz-overflow-menu{background-color:#fff;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.14),0 4px 4px rgba(0,0,0,.12),0 8px 8px rgba(0,0,0,.06);list-style:none;max-width:250px;min-width:125px;position:absolute;-webkit-user-select:none;user-select:none}.bz-overflow-menu__divider{background-color:#e0e0e0;height:1px}.bz-overflow-menu__item{align-items:center;cursor:pointer;display:flex;font-size:1.4rem;overflow:hidden;padding:.8rem 1.6rem;text-overflow:ellipsis;-webkit-user-select:none;user-select:none;white-space:nowrap}.bz-overflow-menu__item:focus,.bz-overflow-menu__item:hover:not(.bz-overflow-menu__item--active){background-color:#fafafa}.bz-overflow-menu__item:focus .bz-icn,.bz-overflow-menu__item:hover:not(.bz-overflow-menu__item--active) .bz-icn{fill:#217D7E}.bz-overflow-menu__item:focus{outline:0}.bz-overflow-menu__item--comfortable{padding:1.6rem 2.4rem}.bz-overflow-menu__item-combo{overflow:initial}.bz-overflow-menu__item-text{overflow:hidden;text-overflow:ellipsis}.bz-overflow-menu__item--link{padding:0}.bz-overflow-menu__item--active{background-color:#cff2f2}.bz-overflow-menu__item--active .bz-icn{fill:#217D7E}.bz-overflow-menu__item--disabled{pointer-events:none}.bz-overflow-menu__item>a,.bz-overflow-menu__item>span{display:block;min-height:100%;flex:1;overflow:hidden;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}.bz-overflow-menu__item>a:hover,.bz-overflow-menu__item>span:hover{color:#272727}.bz-overflow-menu__item>a:visited,.bz-overflow-menu__item>span:visited{color:#757575}.bz-overflow-menu__allow-overflow{overflow:visible}.bz-overflow-menu__icon{align-items:center;display:flex;overflow:hidden}.bz-overflow-menu__title{font-weight:600;padding:.8rem 1.6rem}.bz-overflow-menu__sub-title{color:#757575;font-size:1.2rem;padding:.8rem 1.6rem;text-transform:uppercase}.bz-nav-pagination{align-items:center;display:flex;font-size:1.2rem}.bz-nav-pagination__controls{display:flex}[dir=rtl] .bz-nav-pagination__controls .bz-btn-icn svg{transform:rotate(180deg)}.bz-pill{align-items:center;align-self:center;border:1px solid #e0e0e0;border-radius:2rem;display:flex;padding-left:1.6rem;padding-right:.8rem}.bz-pill__label{color:#272727;max-width:100%;overflow:hidden;padding-bottom:.4rem;padding-top:.4rem;text-overflow:ellipsis;white-space:nowrap}.bz-pill .bz-btn-icn{display:inline-flex;vertical-align:middle}[dir=rtl] .bz-pill{padding-left:.8rem;padding-right:1.6rem}.bz-progress-bar{background-clip:padding-box;background-color:#cff2f2;height:2px;left:0;overflow:hidden;position:relative;right:0;z-index:20}.bz-progress-bar__indeterminate{background-color:#217d7e}.bz-progress-bar__indeterminate::before{animation:indeterminate 2.1s cubic-bezier(.65,.815,.735,.395) infinite;background-color:inherit;bottom:0;content:"";left:0;position:absolute;top:0;will-change:left,right}.bz-progress-bar__indeterminate::after{-webkit-animation:indeterminate-short 2.1s cubic-bezier(.165,.84,.44,1) infinite;-webkit-animation-delay:1.15s;animation:indeterminate-short 2.1s cubic-bezier(.165,.84,.44,1) infinite;animation-delay:1.15s;background-color:inherit;bottom:0;content:"";left:0;position:absolute;top:0;will-change:left,right}@keyframes indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}100%{left:100%;right:-90%}}@keyframes indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}100%{left:107%;right:-8%}}.bz-polymorphic-launcher{border:1px solid #e0e0e0;border-radius:4px;overflow:hidden}.bz-polymorphic-launcher__header{align-items:baseline;background:#fafafa;border-bottom:1px solid #e0e0e0;display:flex;justify-content:space-between;padding:.4rem .8rem}.bz-polymorphic-launcher__content{padding:.4rem .8rem}.bz-polymorphic-launcher__item{align-items:center;display:flex;justify-content:space-between;margin-bottom:.4rem}.bz-polymorphic-launcher__name{padding:.8rem 0}.bz-polymorphic-launcher__actions{display:flex;flex-wrap:wrap;padding:.8rem 1.6rem;padding-top:0}.bz-polymorphic-launcher__title{border-top:1px solid #e0e0e0;padding:.8rem 1.6rem}.bz-polymorphic-launcher ul{padding-left:.8rem}.bz-polymorphic-launcher-group__list{border-bottom:1px solid #e0e0e0;padding-bottom:1.6rem}[dir=rtl] .bz-polymorphic-launcher ul{padding-left:0;padding-right:.8rem}.bz-popover-content{background:#fff;border:1px solid #e0e0e0;border-radius:4px;box-shadow:0 4px 6px 0 rgba(0,0,0,.24);margin:10px}.bz-placeholder{display:flex;flex-direction:column;max-width:400px;text-align:center}.bz-placeholder>span{margin-top:1.6rem;font-weight:600}bzg-quick-mapping .bz-quick-mapping__title-container{display:flex;color:#272727;font-size:12px;font-weight:600;height:34px;line-height:34px}bzg-quick-mapping .bz-quick-mapping__title-container .title-left{width:50%;padding-left:2.4rem}bzg-quick-mapping .bz-quick-mapping__title-container .title-right{width:45%;padding-left:.8rem}bzg-quick-mapping .bz-quick-mapping__title-container .title-arrow-span{width:5%}bzg-quick-mapping bzg-map-item:nth-child(odd)>div{background-color:#fff}bzg-quick-mapping bzg-map-item:nth-child(2n)>div{background-color:#fafafa}.bz-radio-list{display:flex;flex-direction:column}.bz-radio-list--horizontal{flex-direction:row;flex-wrap:wrap}.bz-radio-btn{display:inline-block;position:relative;width:1.4rem;height:1.4rem;flex-shrink:0}.bz-radio-btn__outer-circle{background-color:#fff;border-color:#9e9e9e;border-width:1px;border-style:solid;border-radius:50%;height:1.4rem;left:0;position:absolute;top:0;transition:border-color ease 280ms;width:1.4rem}.bz-radio-btn__inner-circle{background-color:#217d7e;border-radius:50%;height:1.4rem;left:0;position:absolute;top:0;transition:transform ease 280ms;width:1.4rem;transform:scale(.001)}.bz-radio{display:inline;position:relative;width:100%}.bz-radio__label{align-items:center;clear:both;cursor:pointer;display:inline-flex;padding:.8rem 0;position:relative;width:100%}.bz-radio__label-content{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.bz-radio__input{display:block;float:left;font-size:inherit;height:1em;margin:0;outline:0;visibility:hidden;width:0}.bz-radio__input:checked+.bz-radio__label>.bz-radio-btn>.bz-radio-btn__inner-circle{transform:scale(.65)}.bz-radio__input:checked+.bz-radio__label>.bz-radio-btn>.bz-radio-btn__outer-circle{border-color:#217d7e}.bz-radio__input:disabled+.bz-radio__label{color:#757575;cursor:not-allowed}.bz-radio__input:disabled+.bz-radio__label>.bz-radio-btn>.bz-radio-btn__outer-circle{border-color:#e0e0e0;background-color:#fafafa}.bz-radio__input:disabled+.bz-radio__label>.bz-radio-btn>.bz-radio-btn__inner-circle{background-color:#e0e0e0}.bz-radio__input:hover:not(:disabled)+.bz-radio__label>.bz-radio-btn>.bz-radio-btn__outer-circle{border-color:#217d7e}@media only screen and (max-width:768px){.bz-radio-list--horizontal .bz-radio{justify-content:space-between;width:48%}}@media only screen and (min-width:769px){.bz-radio-list--horizontal .bz-radio{justify-content:space-between;width:31%}}.bz-sidebar-badge{align-items:center;background-color:#da3b3b;border:1px solid #da3b3b;border-radius:8px;color:#fff;display:flex;font-size:1rem;font-weight:400;justify-content:center;line-height:1rem;min-width:16px;padding:.2rem .4rem;position:absolute;right:12px;top:12px}.bz-sidebar-badge--s{border:0;border-radius:5px;font-size:0;line-height:0;min-width:0;position:absolute;padding:.5rem;right:16px;text-align:center;top:16px}.bz-sidebar-footer{align-items:center;display:flex;flex-direction:column}.bz-sidebar-footer-item{position:relative}.bz-sidebar-footer-item:hover{background-color:#1a6061}.bz-sidebar-footer-item--active,.bz-sidebar-footer-item--active:hover{background-color:rgba(255,255,255,.15)}.bz-sidebar-footer-item--active:before,.bz-sidebar-footer-item--active:hover:before{border-left:4px solid #33bfc1;bottom:0;content:"";left:0;position:absolute;top:0}[dir=rtl] .bz-sidebar-footer-item--active:before,[dir=rtl] .bz-sidebar-footer-item--active:hover:before{left:auto;right:0}.bz-sidebar-footer-item__container{align-items:center;cursor:pointer;display:flex;height:64px;justify-content:center;position:relative;width:64px}.bz-sidebar-footer-item__container .bz-icn{fill:#FFFFFF}.bz-sidebar-footer-item__container:focus{outline:0}.cdk-keyboard-focused .bz-sidebar-footer-item:focus{background-color:#1a6061!important;box-shadow:none!important}.bz-sidebar-item{align-items:center;cursor:pointer;display:flex;height:64px;justify-content:center;position:relative;transition:all .2s ease-in-out;width:64px}.bz-sidebar-item:hover{background-color:#1a6061}.bz-sidebar-item--active,.bz-sidebar-item--active:hover{background-color:rgba(255,255,255,.15)}.bz-sidebar-item--active:before,.bz-sidebar-item--active:hover:before{border-left:4px solid #33bfc1;bottom:0;content:"";left:0;position:absolute;top:0}[dir=rtl] .bz-sidebar-item--active:before,[dir=rtl] .bz-sidebar-item--active:hover:before{left:auto;right:0}.bz-sidebar-item__icon-container{align-items:center;display:flex;height:100%;justify-content:center}.cdk-keyboard-focused .bz-sidebar-item:focus,.cdk-keyboard-focused .bz-sidebar__brand-icon:focus{background-color:#1a6061!important;box-shadow:none!important}.bz-sidebar-responsive-container{display:flex;height:100%}@media screen and (max-width:1024px){.bz-sidebar-responsive-container{position:fixed;z-index:1;box-shadow:0 0 15px rgba(158,158,158,.5)}.bz-sidebar-responsive-container::before{content:"";position:absolute;left:0;width:100vw;top:0;bottom:0;background:rgba(39,39,39,.5);z-index:-1}.bz-sidebar-responsive-container--closed{display:none}}@media screen and (max-width:480px){.bz-sidebar-responsive-container{width:100%}}.bz-sidebar-responsive-header{align-items:center;border-bottom:1px solid #e0e0e0;display:none;padding:1.6rem 2.4rem 1.6rem 1.6rem}.bz-sidebar-responsive-header__title{align-items:center;color:#272727;display:flex;flex:1;font-size:1.6rem;font-weight:600}@media screen and (max-width:1024px){.bz-sidebar-responsive-header{display:flex}}.bz-sidebar-user{align-items:center;border-top:1px solid rgba(255,255,255,.25);cursor:pointer;display:flex;padding:1.6rem}.bz-sidebar-user>.bz-initials{background-color:#cff2f2;color:#1a6061}.bz-sidebar-user__avatar{height:32px;width:32px;border-radius:50%}.cdk-keyboard-focused .bz-sidebar-user:focus{background-color:rgba(255,255,255,.15)!important;box-shadow:none!important}.bz-sidebar-panel{background-color:#fafafa;display:flex;flex:1;flex-direction:column;height:100%;width:244px}.bz-sidebar-panel__header{align-items:center;display:flex;font-size:1.6rem;font-weight:600;height:64px;padding:1.6rem 2.4rem}.bz-sidebar-panel__header span{flex:1;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;user-select:none;white-space:nowrap}.bz-sidebar-panel__header--close{display:none}.bz-sidebar-panel__list{flex-direction:column;flex-grow:1;overflow-x:hidden;overflow-y:auto}.bz-sidebar-panel__list h2{color:#757575;font-size:1.2rem;font-weight:400;margin:0;padding:.8rem 2.4rem;text-transform:uppercase}@media screen and (max-width:1024px){.bz-sidebar-panel__header--close{display:block}}.bz-sidebar-panel-action{align-items:center;cursor:pointer;display:flex;height:64px;padding:0 2.4rem}.bz-sidebar-panel-action__icon{align-items:center;background-color:#217d7e;border-radius:8px;display:flex;height:24px;justify-content:center;min-height:24px;min-width:24px;width:24px}.bz-sidebar-panel-action__icon>.bz-icn{fill:#FFFFFF}.bz-sidebar-panel-action__title{font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-sidebar-panel-item{align-items:center;cursor:pointer;display:flex;transition:all .2s ease-in-out}.bz-sidebar-panel-item__wrapper{padding:.8rem 2.4rem;display:flex}.bz-sidebar-panel-item>.bz-sidebar-panel-item__wrapper:hover{background-color:#cff2f2}.bz-sidebar-panel-item--active,.bz-sidebar-panel-item--active:hover{background-color:#cff2f2;font-weight:600}.bz-sidebar-panel-item--active .bz-icn,.bz-sidebar-panel-item--active:hover .bz-icn{fill:#757575;transition:all .2s ease-in-out}.bz-sidebar-panel-item--active-subitems .bz-sidebar-panel-item__title{font-weight:600}.bz-sidebar-panel-item--active-subitems .bz-icn{fill:#757575;transition:all .2s ease-in-out}.bz-sidebar-panel-item__title{flex-grow:1;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;user-select:none;white-space:nowrap}.bz-sidebar-panel-item__subtitle{display:block;font-style:italic;font-size:1.2rem;color:#757575}.bz-sidebar-panel-item__badge{-webkit-user-select:none;user-select:none;margin-right:.3rem}.bz-sidebar-panel-item__sub-items{width:100%;overflow:hidden}.bz-sidebar-panel-subitem{display:flex;font-size:1.2rem}.bz-sidebar-panel-subitem:focus{outline:0}.bz-sidebar-panel-subitem:hover{background-color:#cff2f2}.bz-sidebar-panel-subitem--active,.bz-sidebar-panel-subitem--active:hover{background-color:#cff2f2;color:#272727;font-weight:600}.bz-sidebar-panel-subitem__title{flex-grow:1;line-height:21px;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;user-select:none;white-space:nowrap}.bz-sidebar-panel-subitem__badge{font-size:1.2rem;-webkit-user-select:none;user-select:none;margin-right:.4rem}.bz-sidebar-panel-subitem__wrapper{padding:.8rem 2.4rem;display:flex}.bz-sidebar-container{height:100%;display:flex;flex-direction:row;overflow:hidden}.bz-sidebar-content{height:100%;border-radius:8px;box-shadow:-2px 0 50px 0 rgba(0,0,0,.2);flex-grow:1;overflow:auto}.bz-sidebar{height:100%;background-color:#217d7e;display:flex;flex-direction:column;overflow:hidden;width:64px;min-width:64px;z-index:0}.bz-sidebar__brand-icon{display:flex;min-height:64px;padding:1.6rem}.bz-sidebar__brand-icon .bz-icn,.bz-sidebar__brand-icon:hover .bz-icn{fill:#FFFFFF}.bz-sidebar__list{flex-direction:column;flex-grow:1;overflow-x:hidden;overflow-y:auto}.bz-sidebar__list .bz-icn{fill:#FFFFFF}.bz-sidebar__footer{display:flex;flex-direction:column}.bz-select-option{padding:.8rem 1.6rem;cursor:pointer;width:inherit;display:block;background-color:#fff;color:#272727}.bz-select-option__content{-webkit-user-select:none;user-select:none}.bz-select-option:hover{background-color:#fafafa}.bz-select-option.selected{background-color:#cff2f2!important;color:#fff}.bz-select-trigger{align-items:center;background:#fff;border:1px solid #e0e0e0;border-radius:4px;display:flex;padding:.8rem 1.6rem;width:inherit;outline:0}.bz-select-trigger:focus:not(.bz-select-trigger--disabled){outline:0}.bz-select-trigger--below{border-color:#217d7e;border-bottom-color:#fff;border-radius:4px 4px 0 0}.bz-select-trigger--multiple{padding:0 1.6rem 0 0;min-height:3.9rem}.bz-select-trigger--above{border-color:#217d7e;border-top-color:#fff;border-radius:0 0 4px 4px}.bz-select-trigger--disabled{background-color:#fafafa;border-color:#e0e0e0;color:#9e9e9e}.bz-select-trigger__value{flex-grow:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-select-trigger__value--multiple{display:flex;flex-direction:column;padding-left:1.6rem}.bz-select-trigger__placeholder{flex-grow:1;color:#757575;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-select-trigger__placeholder--multiple{margin-left:.8rem}.bz-select-trigger--compact{font-size:1.2rem;padding:.4rem .8rem}.bz-select-trigger--compact::placeholder{font-size:1.2rem;padding:.4rem .8rem}.bz-select-options{background-color:#fff;border-radius:4px;border:0;display:flex;flex-direction:column;max-height:186px;overflow:auto;-webkit-user-select:none;user-select:none;width:100%}.bz-select-options--above{border-radius:4px;border:0}.bz-select{width:100%;border-radius:4px;position:relative}.bz-select__input{border:1px solid #e0e0e0;padding:.4rem .8rem;color:#272727;height:35px;background-color:#fafafa;width:inherit;outline:0}.bz-select__input--active{border-color:#217d7e}.bz-select__content{position:absolute;top:35px;left:0;right:0;margin:0;padding:0;max-height:120px;border:1px solid #ccc;border-radius:4px;background-color:#fff;box-shadow:0 2px 2px rgba(0,0,0,.12),0 2px 6px rgba(0,0,0,.24);z-index:100;overflow:auto}.bz-select__search{display:flex;align-items:center;margin-left:1.6rem}.bz-select__select-all-container{display:flex;align-items:center;justify-content:space-between;padding:.8rem 1.6rem}.bz-select i{height:16px;width:16px;position:absolute;top:0;bottom:0;right:10px;margin:auto auto auto -20px;background-size:contain;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iRWJlbmVfM19Lb3BpZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4Ig0KCSB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1OSAzMS45IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1OSAzMS45OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDpub25lO3N0cm9rZTojMDAwMDAwO3N0cm9rZS13aWR0aDoxLjU7c3Ryb2tlLW1pdGVybGltaXQ6MTA7fQ0KPC9zdHlsZT4NCjxwb2x5bGluZSBjbGFzcz0ic3QwIiBwb2ludHM9IjU3LjYsMS44IDI5LjUsMjkuOCAyOS41LDI5LjggMS41LDEuOCAiLz4NCjwvc3ZnPg0K) no-repeat center center;cursor:pointer;transition:all .25s ease-in-out}.bz-select i.active{transform:rotate(180deg)}.bz-select__pill{max-height:2.6rem;margin-right:.4rem}.bz-select__pill--closed{margin-top:.2rem;margin-bottom:.4rem}.bz-select__pills{width:100%;display:flex;flex-wrap:wrap}.bz-select__pills__counter{background:#217d7e;padding:.2em .8em;border:1px solid #e0e0e0;color:#fff;border-radius:2rem;text-align:center;display:flex}.bz-select__pills__counter--hidden{visibility:hidden}.bz-select__pills--closed{flex-wrap:wrap;overflow:hidden;max-height:3.7rem}.bz-select__pills--open{border-bottom:1px solid #e0e0e0;border-top:0;max-height:12.3rem;overflow:auto;padding:.4rem 1.6rem}.bz-select__pills--above{border-top:1px solid #e0e0e0;border-bottom:0}.bz-select__pills--compact{font-size:1.2rem;padding:.4rem .8rem}.bz-select-overlay-content{display:flex;flex-direction:column;width:100%;background-color:#fff;border:1px solid #217d7e;border-top:0;border-radius:0 0 4px 4px}.bz-select-overlay-content--above{border-top:1px solid #217d7e;border-bottom:0;border-radius:4px 4px 0 0}.bz-select-overlay-content__multiple{border-top:1px solid #217d7e;border-radius:4px}.bz-select-overlay-content__multiple--above{flex-direction:column-reverse}.bz-select-trigger--multiple{padding:0 1.6rem 0 0;min-height:3.9rem}.bz-select-trigger--active{border-color:#217d7e;border-bottom-color:#fff;border-radius:4px 4px 0 0}.bz-select-trigger__placeholder--multiple{margin-left:.8rem}.bz-select-trigger__value--multiple{display:flex;flex-direction:column;padding-left:1.6rem}.bz-search{align-items:center;background-color:#fff;border:1px solid #e0e0e0;border-radius:4px;display:flex;padding:.8rem 1.6rem;position:relative}.bz-search__input{background:0 0;border:none;flex-grow:1;font-size:1.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-search__input::placeholder{color:#757575}.bz-search__input:focus{outline:0;box-shadow:none}.bz-search__input::-ms-clear{display:none}.bz-search__clear-icon{position:absolute;right:8px;top:3px}.bz-search:focus{border:1px solid #217d7e}.bz-search--focused{border:1px solid #217d7e}.bz-input-icon .bz-icn--clear{opacity:1;pointer-events:auto;transition:opacity .3s}.bz-input-icon .bz-icn--search{opacity:0;padding:0;transition:opacity .3s;width:0}.bz-input-icon--empty .bz-icn--clear{opacity:0;pointer-events:none}.bz-input-icon--empty .bz-icn--search{opacity:1;padding:.8rem;width:auto}.bz-multiselect__input,.bz-search-list__input{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-multiselect__item,.bz-search-list__item{padding-right:.4rem}.bz-btn-icn--expand{position:absolute;right:.8rem;top:1.6rem}.bz-btn-icn--expand .bz-icn{fill:#217D7E}@keyframes selectedpills{from{max-height:0}to{max-height:48px}}@keyframes emptypills{from{max-height:0}to{max-height:48px}}@keyframes expandpills{from{max-height:48px}to{max-height:300px}}@keyframes collapsedpills{from{max-height:300px}to{max-height:48px}}@keyframes closepills{from{flex-wrap:wrap}to{flex-wrap:no-wrap}}.bz-search-pill{align-items:center;display:flex;overflow:hidden;padding-bottom:.8rem;padding-top:.8rem}.bz-search-pill--selected{animation:selectedpills 1s}.bz-search-pill--empty{animation:emptypills 1s}.bz-search-pill__selected{align-items:center;border-bottom:1px solid #e0e0e0;display:flex;flex-wrap:wrap;overflow:hidden;padding-left:1.6rem;padding-right:.8rem;width:100%}.bz-search-pill__selected--expanded{align-items:flex-start;animation:expandpills 1s;border-bottom-color:#cff2f2}.bz-search-pill__selected--expanded .bz-search-pill__results{flex-wrap:wrap;padding-right:.4rem}.bz-search-pill__selected--expanded .bz-btn-icn--expand{transform:rotate(180deg)}.bz-search-pill__selected--collapsed{animation:collapsedpills 1s forwards}.bz-search-pill__selected--collapsed .bz-search-pill__results{animation:closepills 1.5s forwards}.bz-search-pill__selected--hidden{display:none}.bz-search-pill__results{display:flex;flex:1;overflow-x:scroll;padding:.8rem 1.6rem;position:relative}[dir=rtl] .bz-search-pill__results{padding-left:3.2rem;padding-right:.8rem}[dir=rtl] .bz-search-pill__selected{padding-left:.8rem;padding-right:1.6rem}[dir=rtl] .bz-search-pill__selected--expanded .bz-search-pill__results{padding-left:.4rem}[dir=rtl] .bz-btn-icn--expand{left:.8rem;right:auto}.bz-section__header{background-color:#fff;border-bottom:1px solid #e0e0e0;border-top:1px solid #e0e0e0;color:#272727;font-size:1.4rem;margin:0;min-height:25px;padding:1.6rem;position:relative;width:100%}.bz-section__header>svg.bz-icn{left:initial;margin-top:-1.6rem;padding:.8rem;position:absolute;right:.8rem;top:50%;transition:transform .26s ease}.bz-section__header>span{margin-left:0}.bz-section__content{display:none}.bz-section .expanded .bz-section__header{display:none}.bz-section .expanded .bz-section__content{display:block}.bz-section .bz-mobile-modal-root{position:fixed}[dir=rtl] .bz-section__header>svg.bz-icn{transform:rotate(180deg);left:.8rem;right:initial}.bz-signature.bz-input{height:150px}.bz-signature__guideline{border-bottom:2px solid #9e9e9e;border-top:1px solid #e0e0e0;height:50%;position:relative;top:25%}.bz-signature__guideline:after{border-top-color:#e0e0e0;border-top-style:dashed;border-top-width:2px;content:"";height:1px;position:absolute;top:50%;width:100%}.bz-signature__wrapper{height:100%;left:0;position:absolute;top:0;width:100%}.bz-signature__container{position:relative}.bz-signature-footer{align-items:center;display:flex;font-size:1.2rem;justify-content:space-between;padding:.8rem 0}.bz-signature-footer__message{color:#757575;line-height:1.5em;overflow:hidden}.bz-signature-footer__clear{align-items:center;color:#217d7e;display:flex;line-height:1.5em;padding:.4rem .8rem}.bz-signature-footer__clear:active:not(.bz-signature-footer__clear--disabled),.bz-signature-footer__clear:hover:not(.bz-signature-footer__clear--disabled),.bz-signature-footer__clear:visited:not(.bz-signature-footer__clear--disabled){color:#1a6061}.bz-signature-footer__clear:active:not(.bz-signature-footer__clear--disabled) .bz-icn,.bz-signature-footer__clear:hover:not(.bz-signature-footer__clear--disabled) .bz-icn,.bz-signature-footer__clear:visited:not(.bz-signature-footer__clear--disabled) .bz-icn{fill:#1A6061}.bz-signature-footer__clear:active:not(.bz-signature-footer__clear--disabled) span,.bz-signature-footer__clear:hover:not(.bz-signature-footer__clear--disabled) span,.bz-signature-footer__clear:visited:not(.bz-signature-footer__clear--disabled) span{color:#1a6061}.bz-signature-footer__clear .bz-icn{fill:#217D7E}.bz-signature-footer__clear span{color:#217d7e;font-weight:600}.bz-signature-footer__clear--disabled{cursor:not-allowed;pointer-events:none}.bz-signature-footer__clear--disabled span{color:#757575}.bz-signature-footer__clear--disabled .bz-icn{fill:#757575}.bz-status-pages{align-items:center;display:flex;flex:1;flex-direction:column;height:100%;justify-content:center;padding:2.4rem}.bz-status-pages__background{background:linear-gradient(#7edbdd,#33bfc1);height:100%;overflow:hidden;position:fixed;width:100%}.bz-status-pages__background-stroke{left:0;margin:0 50px;position:absolute;top:0}.bz-status-pages__background-line-container{height:100%;margin:auto;max-width:100%;overflow:hidden;width:1200px}.bz-status-pages__background-line{height:100%;position:absolute;width:1200px}.bz-status-pages__container{align-items:center;background:#fff;border-radius:4px;box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16);display:flex;justify-content:center;max-width:956px;padding:3.2rem;position:relative;width:100%}.bz-status-pages__message-container{align-items:center;display:flex;flex:1;flex-direction:column;height:100%;max-width:615px;white-space:pre-line;width:100%;word-wrap:break-word}.bz-status-pages__image{height:400px;width:100%}.bz-status-pages__title{color:#217d7e;font-size:2.4rem;margin-bottom:1.6rem;text-align:center}.bz-status-pages__message{color:#272727;font-size:1.4rem;margin-bottom:3.2rem;max-width:600px;text-align:center}.bz-status-pages__logo{fill:#E0E0E0;height:37.92px;position:absolute;max-height:37.92px;max-width:80px;right:3.2rem;top:3.2rem}@media only screen and (max-height:768px) and (max-width:1024px) and (orientation:landscape),(max-height:1024px) and (max-width:768px) and (orientation:portrait){.bz-status-pages{padding:0}.bz-status-pages__container{border-radius:0;flex:1;height:100%;max-width:none;overflow:auto;width:100%}}.bz-status-pages-IE{align-items:center;display:flex;height:100%;justify-content:center;min-height:100vh;padding:3.2rem;width:100%;z-index:1}.bz-status-pages-IE__content{align-items:center;background:#fff;border-radius:4px;box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16);display:flex;flex-direction:column;justify-content:center;max-width:956px;padding:3.2rem;width:100%}.bz-status-pages-IE__title{color:#217d7e;font-size:2.4rem;margin-bottom:2.4rem;max-width:400px;text-align:center;width:100%}.bz-status-pages-IE__message{color:#272727;font-size:1.4rem;margin-bottom:3.2rem;max-width:600px;text-align:center;width:100%;word-wrap:break-word}.bz-status-pages-IE__image{height:400px}.bz-status-pages-IE__logo{fill:#E0E0E0;height:37.92px;max-height:37.92px;max-width:80px}.bz-status-pages-IE__logo-container{display:flex;flex-direction:row;justify-content:flex-end;width:100%}@media only screen and (max-height:768px) and (max-width:1024px) and (orientation:landscape),(max-height:1024px) and (max-width:768px) and (orientation:portrait){.bz-status-pages-IE{padding:0}.bz-status-pages-IE__content{border-radius:0;height:100%;margin:0}}.bz-switch{align-items:center;border:1px solid #e0e0e0;border-radius:20px;box-shadow:#dfdfdf 0 0 0 0 inset;box-sizing:content-box;cursor:pointer;display:flex;height:1.8rem;margin:0;overflow:visible;padding:0;position:relative;transition:all 80ms linear;transition-property:transform;width:3.6rem}.bz-switch__circle{background-color:#9e9e9e;border-radius:100%;height:1.6rem;left:0;margin-left:2px;margin-right:2px;transform:translate3d(0,0,0);transition:all 80ms linear;transition-property:transform;width:1.6rem;position:absolute;top:50%;margin-top:-.8rem}.bz-switch--checked{border:1px solid #217d7e}.bz-switch--checked .bz-switch__circle{background-color:#217d7e;transform:translate3d(1.6rem,0,0)}.bz-switch--disabled{background-color:#fafafa;border:1px solid #e0e0e0;cursor:not-allowed;opacity:.5}.bz-switch--disabled .bz-switch__circle{background-color:#757575}.bz-skip-to-main{align-items:center;background-color:#1377d9;border-radius:8px;box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16);color:#fff;cursor:pointer;display:inline-flex;left:80px;padding:2.4rem;position:fixed;text-decoration:underline;top:-200px;transition:all 1s;z-index:1000}.cdk-keyboard-focused .bz-skip-to-main:focus{top:24px;transition:all .3s;box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16)}[dir=rtl] .bz-skip-to-main{right:80px;left:0}.bz-table{border-collapse:collapse;border-spacing:0;width:100%}.bz-table>thead>tr>th{border-bottom:1px solid #272727;font-weight:600;position:relative;text-align:left}.bz-table>thead>tr>th>div{overflow:hidden}.bz-table>thead>tr>th .bz-icn{fill:#217D7E}.bz-table>tbody>tr:not(:last-child){border-bottom:1px solid #e0e0e0}.bz-table>tbody>tr:hover{background-color:#fafafa}.bz-table>tbody>tr:hover>td.bz-table__cell--buttons button{opacity:1}.bz-table--responsive{overflow-x:auto;width:100%}.bz-table--fixed-header{display:flex;flex-direction:column;height:100%}.bz-table--fixed-header>thead{display:block;position:relative}.bz-table--fixed-header>tbody{display:block;overflow-y:auto;overflow-x:hidden}.bz-table--fixed-header.bz-table--loading thead::after{animation:table-loader 4s ease infinite;background-color:#217d7e;bottom:0;content:"";display:block;height:2px;left:0;position:absolute}.bz-table--fixed-header.bz-table--loading thead>tr>th{border-color:#cff2f2}.bz-table .bz-badge{max-width:96px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-table__col-title{display:flex;align-items:center}.bz-table__col-title span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-table__cell{font-size:1.2rem;padding:.8rem 1.6rem;position:relative}.bz-table__cell--compact{padding-bottom:.4rem;padding-top:.4rem}.bz-table__cell--compact .bz-table__content>*{margin-bottom:.4rem}.bz-table__cell--normal{padding-bottom:.8rem;padding-top:.8rem}.bz-table__cell--normal .bz-table__content>*{margin-bottom:.8rem}.bz-table__cell--comfortable{padding-bottom:1.6rem;padding-top:1.6rem}.bz-table__cell--comfortable .bz-table__content>*{margin-bottom:1.6rem}.bz-table__cell--buttons .bz-btn-icn{opacity:0;padding:0}.bz-table__cell--buttons .bz-btn-icn:focus{opacity:1}.bz-table__cell--buttons .bz-btn-icn--active{opacity:1}.bz-table__cell--actions{padding:0}th.bz-table__cell{padding:0}th.bz-table__cell .bz-table__col-title{padding:.8rem 1.6rem;cursor:pointer}th.bz-table__cell--compact .bz-table__col-title{padding-bottom:.4rem;padding-top:.4rem}th.bz-table__cell--normal .bz-table__col-title{padding-bottom:.8rem;padding-top:.8rem}th.bz-table__cell--comfortable .bz-table__col-title{padding-bottom:1.6rem;padding-top:1.6rem}.bz-table__content{display:flex;flex-direction:column}.bz-table__content>*{margin-bottom:.8rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.bz-table__content>:last-child{margin-bottom:0}.bz-table__col-sort{display:inline-block;cursor:pointer;height:16px;vertical-align:middle}.bz-table__col-resize{align-items:stretch;bottom:-2px;cursor:col-resize;display:flex;justify-content:center;opacity:0;position:absolute;right:-5px;top:0;transition:opacity .3s ease;width:9px}.bz-table__col-resize::after{background-color:#cff2f2;content:"";transition:background-color .3s ease;width:1px}.bz-table__col-resize:hover::after{background-color:#217d7e}thead:hover .bz-table__col-resize{opacity:1}.bz-table__col-border{border-right-color:transparent;border-right-style:solid;border-right-width:1px;transition:border-right-color .3s ease}.bz-table__col-border--active{border-right-color:#217d7e}.bz-table__responsive-label{color:#272727;font-weight:600}@keyframes table-loader{from{left:0;width:0%}50%{left:0;width:100%}to{left:100%;width:0%}}@media screen and (max-width:719px){.bz-table,.bz-table tbody,.bz-table th,.bz-table thead,.bz-table tr,.bz-table__cell{display:block}.bz-table thead tr{position:absolute;top:-9999px;left:-9999px}.bz-table tr{border:1px solid #e0e0e0}.bz-table__cell{border:none;display:flex;position:relative}}.bz-table-adv{width:100%;display:flex;flex-direction:column}.bz-table-adv table,.bz-table-adv__table{border-collapse:collapse;border-spacing:0;min-width:100%;overflow:auto;flex:1 1 auto;position:relative}.bz-table-adv table>tbody,.bz-table-adv__body{display:block;overflow-y:auto;height:100%}.bz-table-adv table>thead>tr,.bz-table-adv__header{display:flex;align-items:center;border-bottom:1px solid #272727}.bz-table-adv table>tbody>tr,.bz-table-adv__row{display:flex;align-items:stretch;min-width:100%}.bz-table-adv table>tbody>tr:not(:last-child),.bz-table-adv__row:not(:last-child){border-bottom:1px solid #e0e0e0}.bz-table-adv table>tbody>tr:hover,.bz-table-adv__row:hover{background-color:#fafafa}.bz-table-adv__row-wrapper{position:relative}.bz-table-adv__row-wrapper:not(:last-child){border-bottom:1px solid #e0e0e0}.bz-table-adv table>thead>tr>th,.bz-table-adv__col-header{font-weight:600;position:relative;text-align:left;flex:1 1 auto}.bz-table-adv table>tbody>tr>td,.bz-table-adv__cell{flex:1 1 auto;display:flex;align-items:center;justify-content:flex-start;position:relative;vertical-align:middle;min-width:0;font-size:1.2rem;padding:.8rem 1.6rem}.bz-table-adv__col-sort{fill:#9E9E9E;margin:0 .4rem;display:inline-block;vertical-align:middle;visibility:hidden}.bz-table-adv__col-sort .bz-icn{fill:inherit}.bz-table-adv__col-sort svg{height:16px;width:16px;fill:inherit}.bz-table-adv__col-sort--active{fill:#217D7E;visibility:visible}.bz-table-adv table>thead>tr>th:hover .bz-table-adv__col-sort,.bz-table-adv__col-header:hover .bz-table-adv__col-sort{visibility:visible}.bz-table-adv--compact .bz-table-adv__cell{padding-bottom:.4rem;padding-top:.4rem}.bz-table-adv--normal .bz-table-adv__cell{padding-bottom:.8rem;padding-top:.8rem}.bz-table-adv--comfortable .bz-table-adv__cell{padding-bottom:1.6rem;padding-top:1.6rem}.bz-table-adv-pagination{border-top:1px solid #e0e0e0;padding:1.6rem;display:flex;justify-content:flex-end}.bz-table-adv__row-selector--selected{visibility:visible}.bz-table-adv__row:hover .bz-table-adv__row-selector,table>tbody>tr:hover .bz-table-adv__row-selector{visibility:visible}@-moz-document url-prefix(){.bz-table-adv .bz-checkbox__input{display:none}}.bz-table-adv__row-wrapper.active{background-color:#e0e0e0}.bz-table-adv__row-wrapper.active .bz-table-adv__row:first-child{border-bottom:1px solid #fff;font-weight:700}.bz-table-adv__row-wrapper.active .bz-table-adv__row:hover{background:0 0}.bz-table-adv__row-wrapper.active .bz-table-adv__cell--floating-actions>div{background:#e0e0e0}.bz-table-adv__row-wrapper.active .bz-table-adv__cell--floating-actions>div::before{background-image:linear-gradient(90deg,rgba(224,224,224,0) 0,#e0e0e0 100%);opacity:0}.bz-table-adv__row-wrapper--allow-event{cursor:pointer}.bz-table-adv__row-detail{width:100%}.bz-table-adv__detail-toggle{cursor:pointer;width:30px;min-width:30px;max-width:30px;text-align:center;line-height:1;display:block}.bz-table-adv--fixed-header{display:flex;flex-direction:column}.bz-table-adv--fixed-header .bz-table-adv__table{overflow-y:hidden;display:flex;flex-direction:column}.bz-table-adv--fixed-header .bz-table-adv__body{overflow-y:auto}.bz-table-adv--horizontal-scroll .bz-table-adv__table{overflow-x:hidden}.bz-table-adv--horizontal-scroll .bz-table-adv__header{display:block}.bz-table-adv--horizontal-scroll .bz-table-adv__col-header{float:left}.bz-table-adv--horizontal-scroll .bz-table-adv__cell{float:left}.bz-table-adv--loading .bz-table-adv__header,.bz-table-adv--loading thead{border-color:#cff2f2;position:relative}.bz-table-adv--loading .bz-table-adv__header::after,.bz-table-adv--loading thead::after{animation:table-loader 4s ease infinite;background-color:#217d7e;bottom:-1px;content:"";display:block;height:2px;left:0;position:absolute}@keyframes table-loader{from{left:0;width:0%}50%{left:0;width:100%}to{left:100%;width:0%}}.bz-table-adv__body--singleline .bz-table-adv__cell{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:100%;display:block}.bz-table-adv__col-title{-webkit-user-select:none;user-select:none}.bz-table-adv__header--singleline .bz-table-adv__col-title{overflow:hidden;white-space:nowrap;width:100%;display:flex}.bz-table-adv__header--singleline .bz-table-adv__col-title>span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:inline-block;max-width:100%;vertical-align:middle}.bz-table-adv__header--singleline .bz-table-adv__col-header--sortable{cursor:pointer}.bz-table-adv__header--singleline .bz-table-adv__col-header--sortable>.bz-table-adv__col-title>span{max-width:calc(100% - 14px)}.bz-table-adv__header:hover .bz-table-adv__col-resize{opacity:1}.bz-table-adv__col-resize{align-items:stretch;bottom:0;cursor:e-resize;display:flex;justify-content:center;opacity:0;position:absolute;right:-4px;top:0;transition:opacity .3s ease;width:9px;z-index:1}.bz-table-adv__col-resize::after{background-color:#cff2f2;content:"";transition:background-color .3s ease;width:1px}.bz-table-adv__col-resize:hover::after{background-color:#217d7e}.bz-table-adv__col-resize--active{opacity:1}.bz-table-adv__col-resize--active::after{background-color:#217d7e}.bz-table-adv__col-border{border-right:1px solid transparent;transition:border-right-color .3s ease}.bz-table-adv__col-border--active{border-right-color:#217d7e}.bz-table-adv__cell>.bz-checkbox{padding:0}.bz-table-adv .bz-table-adv__cell--selection,.bz-table-adv table>tbody>tr>td--selection{justify-content:center;display:flex;min-width:30px;max-width:30px}.bz-table-adv .bz-table-adv__cell--icon,.bz-table-adv table>tbody>tr>td--icon{justify-content:center;display:flex;padding-left:0;padding-right:0}.bz-table-adv .bz-table-adv__cell--floating-actions,.bz-table-adv table>tbody>tr>td--floating-actions{position:absolute;position:sticky;right:0;width:100%;top:0;bottom:0}.bz-table-adv .bz-table-adv__cell--floating-actions>div,.bz-table-adv table>tbody>tr>td--floating-actions>div{background:#fafafa;display:flex;opacity:0;padding:0 8px;position:absolute;right:0;justify-content:flex-end;overflow:visible;height:100%;align-items:center;top:0;bottom:0}.bz-table-adv .bz-table-adv__cell--floating-actions>div::before,.bz-table-adv table>tbody>tr>td--floating-actions>div::before{width:32px;transition:all .1s;content:"";height:100%;margin-left:-32px;position:absolute;top:0;left:0;background-image:linear-gradient(90deg,rgba(250,250,250,0) 0,#fafafa 100%);opacity:0}.bz-table-adv .bz-table-adv__cell--actions,.bz-table-adv table>tbody>tr>td--actions{justify-content:flex-end;display:flex}.bz-table-adv .bz-table-adv__cell--actions .bz-btn-icn,.bz-table-adv .bz-table-adv__cell--actions a,.bz-table-adv table>tbody>tr>td--actions .bz-btn-icn,.bz-table-adv table>tbody>tr>td--actions a{opacity:0;padding:0}.bz-table-adv .bz-table-adv__cell--actions .bz-btn-icn:focus,.bz-table-adv .bz-table-adv__cell--actions a:focus,.bz-table-adv table>tbody>tr>td--actions .bz-btn-icn:focus,.bz-table-adv table>tbody>tr>td--actions a:focus{opacity:1}.bz-table-adv .bz-table-adv__cell--actions a,.bz-table-adv table>tbody>tr>td--actions a{text-decoration:underline}.bz-table-adv .bz-table-adv__cell--actions .bz-btn-icn--active,.bz-table-adv table>tbody>tr>td--actions .bz-btn-icn--active{opacity:1}.bz-table-adv table>tbody>tr:hover .bz-table-adv__cell--actions .bz-btn-icn,.bz-table-adv table>tbody>tr:hover .bz-table-adv__cell--actions a,.bz-table-adv__row:hover .bz-table-adv__cell--actions .bz-btn-icn,.bz-table-adv__row:hover .bz-table-adv__cell--actions a{opacity:1}.bz-table-adv table>tbody>tr:hover .bz-table-adv__cell--floating-actions>div,.bz-table-adv__row:hover .bz-table-adv__cell--floating-actions>div{opacity:1}.bz-table-adv table>tbody>tr:hover .bz-table-adv__cell--floating-actions>div::before,.bz-table-adv__row:hover .bz-table-adv__cell--floating-actions>div::before{opacity:1}.bz-table-adv__responsive-label{color:#272727;font-weight:600}.bz-table-adv__options{align-items:center;background-color:#fff;border-bottom:1px solid #e0e0e0;display:flex;justify-content:space-between;padding:.5rem 1.6rem .5rem 2.4rem}.bz-table-adv__options__left{flex:1;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bz-table-adv__options__left,.bz-table-adv__options__right{align-items:center;display:flex}.bz-table-adv__virtual-scroll{height:100%}@media screen and (max-width:719px){.bz-table-adv.bz-table-adv--responsive{display:block}.bz-table-adv.bz-table-adv--responsive table>tbody,.bz-table-adv.bz-table-adv--responsive table>tbody>tr,.bz-table-adv.bz-table-adv--responsive table>thead,.bz-table-adv.bz-table-adv--responsive table>thead th{display:block}.bz-table-adv.bz-table-adv--responsive .bz-table-adv__body,.bz-table-adv.bz-table-adv--responsive .bz-table-adv__col-header,.bz-table-adv.bz-table-adv--responsive .bz-table-adv__header,.bz-table-adv.bz-table-adv--responsive .bz-table-adv__row,.bz-table-adv.bz-table-adv--responsive .bz-table-adv__row-wrapper{display:block}.bz-table-adv.bz-table-adv--responsive .bz-table-adv__header,.bz-table-adv.bz-table-adv--responsive thead tr{position:absolute;top:-9999px;left:-9999px}.bz-table-adv.bz-table-adv--responsive .bz-table-adv__row,.bz-table-adv.bz-table-adv--responsive tr{border:1px solid #e0e0e0;border-bottom:none}.bz-table-adv.bz-table-adv--responsive .bz-table-adv__cell,.bz-table-adv.bz-table-adv--responsive table>tbody>tr>td{border:none;display:flex;position:relative;width:100%!important;max-width:100%!important;align-items:center;justify-content:flex-start}}@media screen and (max-width:719px) and (-ms-high-contrast:none),screen and (max-width:719px) and (-ms-high-contrast:active){.bz-table-adv.bz-table-adv--responsive table>tbody>tr>td{display:block}}@media screen and (min-width:720px){.bz-table-adv__row-selector{visibility:hidden}.bz-table-adv__row-selector--selected{visibility:visible}.bz-table-adv__detail-toggle{padding-left:0;padding-right:0}.bz-table-adv table>tbody>tr>td.bz-table-adv__cell--selection,.bz-table-adv__cell.bz-table-adv__cell--selection{padding-left:0;padding-right:0;justify-content:center}}.bz-tablet-grid{border:1px solid #e0e0e0;border-radius:4px}.bz-tablet-grid__empty{padding:.8rem;text-align:center}.bz-tablet-grid__header{align-items:center;background-color:#fafafa;display:flex;font-size:1.6rem;font-weight:600;justify-content:space-between;padding:.8rem 1.6rem}.bz-tablet-grid__label{display:flex;padding:.8rem 1.6rem}.bz-tablet-grid__wrapper{overflow-x:scroll}.bz-tablet-grid__table{border-collapse:collapse;width:100%}.bz-tablet-grid__table .bz-tablet-grid__table-header{border-bottom:1px solid #e0e0e0;font-size:1.6rem;font-weight:700;padding:.8rem}.bz-tablet-grid__menu{width:32px}.bz-tablet-grid .bz-tablet-grid__totalizer{padding:.8rem}.bz-tablet-grid .bz-tablet-grid__totalizer .bz-tablet-grid__totalizer-item{padding:.4rem}.bz-tablet-grid .bz-tablet-grid__totalizer .bz-tablet-grid__totalizer-item span{display:block}.bz-tablet-grid__buttons{display:flex;flex-direction:row}.bz-tablet-grid__buttons--hidden{display:none}.bz-tablet-grid__row{padding:.8rem}.bz-tablet-grid__row-buttons{border-bottom:1px solid #e0e0e0;display:flex;padding:.8rem}.bz-tablet-grid__row-buttons .bz-btn{margin-right:.4rem;text-transform:capitalize}.bz-tablet-grid__row-buttons .bz-btn:last-child{margin-right:0}.bz-tablet-grid__pager{padding:.8rem}.bz-column-sort{display:none}.bz-column-sort--active{display:inline-block}.bz-column-sort__item{display:none}.bz-column-sort__item--active{display:inline-block}.bzg-tab-item{display:flex;flex-direction:column;padding:0;transition:all .3s ease;width:100%}.bzg-tab-set__bzg-tab--secondary{background-color:#fafafa}.bzg-tab-set__btn{align-items:center;background-color:#fff;border-bottom:1px solid #e0e0e0;display:flex;list-style:none;margin:0;overflow-x:auto;overflow-y:hidden;padding:0;white-space:nowrap}.bzg-tab-set__btn::-webkit-scrollbar{width:0;visibility:hidden;height:0;background:0 0}.bzg-tab-set__btn--primary{background-color:#fafafa}.bzg-tab-set__btn--secondary{background-color:transparent}.bzg-tab-set__btn li{border:none;flex:1 1 auto;font-weight:400;list-style:none;margin:0;padding:0;position:relative;text-align:center;text-transform:uppercase;top:1px;cursor:pointer}.bzg-tab-set__btn li.active{border-bottom:2px solid #217d7e}.bzg-tab-set__btn li.active .bz-tab-button{color:#272727}.bzg-tab-set__btn li .bz-tab-button{color:#757575;display:flex;font-size:1.2rem;letter-spacing:1px;padding:.8rem 1.6rem;text-decoration:none;background:0 0;border:0;text-transform:unset;cursor:pointer}.bzg-tab-set__btn li .bz-tab-button .bz-btn-icn{background:#fff;opacity:0;position:absolute;right:0;top:1px;transition:opacity .15s}.bzg-tab-set__btn li .bz-tab-button .bz-btn-icn:focus{opacity:1}.bzg-tab-set__btn li .bz-tab-button:hover .bz-btn-icn{opacity:1}.bzg-tab-set__badge{margin-left:.4rem;margin-top:-.4rem}@media only screen and (min-width:1024px){ul.bzg-tab-set__btn li{flex:none}}.bz-tabs{border-bottom:1px solid #e0e0e0;margin-bottom:1.6rem;overflow-y:hidden;padding:0;position:relative;scroll-behavior:smooth;white-space:nowrap}.bz-tabs--right{display:flex;justify-content:flex-end}.bz-tabs--secondary{border:0}.bz-tabs .bz-indicator-bar{-webkit-transition:left .2s ease;background:#217d7e;bottom:0;display:block;height:1px;left:0;position:absolute;transition:left .2s ease;will-change:left,width;z-index:10}.bz-tab{border-bottom:1px solid transparent;cursor:pointer;display:inline-block;margin:0 .8rem;padding:0 .8rem 1.6rem;position:relative;top:1px}.bz-tab>a{color:#217d7e;display:inline-block;font-size:1.2rem;letter-spacing:1px;text-decoration:none;text-transform:uppercase}.bz-tab.active{border-bottom-color:#217d7e;border-bottom-width:2px}.bz-tab.active>a{color:#217d7e}.bz-tab-inner{background-color:#fafafa;margin-bottom:1.6rem;padding:1.6rem}.bz-time-picker{display:flex}.bz-time-picker__section{position:relative;width:80px}.bz-time-picker__section__input{margin:0;height:100%}.bz-time-picker__arrows{position:absolute;top:0;right:16px;display:flex;height:100%;justify-content:center;flex-direction:column}.bz-time-picker__arrows__item{height:10px;width:10px;cursor:pointer}.bz-time-picker__separator{display:flex;align-items:center}.bz-time-picker__period{word-break:normal;padding:0 1.6rem}.bz-toast-list{display:flex;flex-direction:column;max-width:50vw;padding:2.4rem 3.2rem}.bz-toast-list--top{flex-direction:column-reverse}.bz-toast-list--right{align-items:flex-end}.bz-toast-list--center{align-items:center}.bz-toast-list--no-space{padding:0}.bz-toast{align-items:center;background-color:#272727;border-radius:8px;box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16);display:inline-flex;margin-top:1.6rem;padding:1.6rem 3.2rem}.bz-toast__message{color:#fff;word-break:break-word}.bz-toast__message--warning{color:#272727}.bz-toast__action{color:#217d7e;cursor:pointer;font-weight:600;text-transform:uppercase;white-space:nowrap}.bz-toast__close-icon{cursor:pointer}.bz-toast--top{margin-top:0;margin-bottom:1.6rem}.bz-toast--success{background-color:#2d8631}.bz-toast--success>.bz-toast__action{color:#fff}.bz-toast--warning{background-color:#f9a825}.bz-toast--warning>.bz-toast__action{color:#272727}.bz-toast--error{background-color:#da3b3b}.bz-toast--error>.bz-toast__action{color:#fff}.bz-toast--info{background-color:#1377d9}.bz-toast--info>.bz-toast__action{color:#fff}.bz-toast-countdown-bar{height:5px;position:absolute;width:100%;left:0;bottom:0;border-radius:0 0 4px 8px;background:rgba(0,0,0,.4)}.bz-toast-countdown-bar__default{background:rgba(255,255,255,.4)}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.bz-toast-list{display:block;overflow:hidden}}.bz-tooltip{background:#fff;border:1px solid #e0e0e0;border-radius:4px;box-shadow:0 2px 2px rgba(0,0,0,.12),0 2px 6px rgba(0,0,0,.24);color:#272727;font-size:1rem;margin:.8rem;overflow:hidden;padding:.8rem;text-overflow:ellipsis;-webkit-user-select:none;user-select:none}.up-arrow:before{content:"";display:block;position:absolute;left:50%;transform:translateX(-39%);top:-11px;width:0;height:0;border:10px solid transparent;border-bottom-color:#e0e0e0}.up-arrow:after{content:"";display:block;position:absolute;left:50%;transform:translateX(-50%);top:-11px;width:0;height:0;border:10px solid transparent;border-bottom-color:#fff}.down-arrow:before{content:"";display:block;position:absolute;left:50%;width:0;height:0;border:10px solid transparent;border-bottom-color:#e0e0e0;transform:translateX(-50%) rotate(180deg);bottom:-11px}.down-arrow:after{content:"";display:block;position:absolute;left:50%;width:0;height:0;border:9px solid transparent;border-bottom-color:#fff;-webkit-transform:translateX(-50%) rotate(180deg);bottom:-8px;transform:translateX(-50%) rotate(180deg)}.left-arrow:before{content:"";display:block;position:absolute;left:-11px;width:0;height:0;border:10px solid transparent;border-bottom-color:#e0e0e0;transform:translateY(24%) rotate(270deg)}.left-arrow:after{content:"";display:block;position:absolute;left:-9px;width:0;height:0;border:10px solid transparent;border-bottom-color:#fff;transform:translateY(-118%) rotate(270deg)}.right-arrow:before{content:"";display:block;position:absolute;right:-9px;width:0;height:0;border:10px solid transparent;border-bottom-color:#e0e0e0;transform:translateY(28%) rotate(90deg)}.right-arrow:after{content:"";display:block;position:absolute;right:-8px;width:0;height:0;border:10px solid transparent;border-bottom-color:#fff;transform:translateY(-118%) rotate(90deg)}.bz-welcome-landing{background:linear-gradient(315deg,#33bfc1 0,#1a6061 60%,#114040 100%);width:100%;height:100%;display:flex}.bz-welcome-landing__bizagi-logo{color:#fff;top:32px;left:32px;height:32px;fill:currentColor;position:absolute;width:88px}.bz-welcome-landing__wrapper{width:100%;height:100%;display:flex}.bz-welcome-landing__top-title{color:#fff;font-size:32px;font-weight:100;line-height:1;z-index:1;margin-bottom:0}.bz-welcome-landing__middle-title{color:#fff;font-size:54px;font-weight:300;letter-spacing:-1px;line-height:1;z-index:1;margin-bottom:0}.bz-welcome-landing__bottom-title{color:#fff;font-size:54px;font-weight:600;letter-spacing:-1px;line-height:1.5;z-index:1;margin-bottom:0}.bz-welcome-landing__left{background-image:url("data:image/png;base64,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")!important;background-size:cover;position:relative;width:40%;display:flex;justify-content:flex-end;align-items:center;padding-right:88px}.bz-welcome-landing__left__square{top:50%;transform:translateY(-50%);opacity:.5;height:600px;background-size:cover;width:540px;position:absolute;right:0}.bz-welcome-landing__left__container{display:flex;flex-direction:column;text-align:right}.bz-welcome-landing__right{background-color:#fff;width:60%;display:flex;flex-direction:column;padding:0 64px;justify-content:center;align-items:center;z-index:1;position:relative}.bz-welcome-landing__right__wrapper{max-width:520px;width:100%;position:relative}@media only screen and (min-width:2px) and (max-width:700px){.bz-welcome-landing__bizagi-logo{height:32px;position:absolute;width:88px;top:2rem;left:3rem}.bz-welcome-landing__wrapper{background-size:contain;display:block}.bz-welcome-landing__top-title{color:#fff;font-size:32px;font-weight:100;line-height:1;z-index:1;margin-bottom:0}.bz-welcome-landing__middle-title{color:#fff;font-size:54px;font-weight:300;letter-spacing:-1px;line-height:1;z-index:1;margin-bottom:0}.bz-welcome-landing__bottom-title{color:#fff;font-size:54px;font-weight:600;letter-spacing:-1px;line-height:1.5;z-index:1;margin-bottom:0}.bz-welcome-landing__left{display:block;width:100%;padding:0;height:7rem;z-index:0;overflow:hidden}.bz-welcome-landing__left__container,.bz-welcome-landing__left__square{display:none}.bz-welcome-landing__right{width:100%;display:block;flex-direction:column;padding:2.4rem;justify-content:center;align-items:center;z-index:1;border-radius:15px 15px 0 0;overflow-y:auto;height:calc(100% - 7rem)}.bz-welcome-landing__right__wrapper{max-width:520px;width:100%}}.bz-button-toggle-group{display:flex}.bz-btn-toggle{flex:1;width:100%;border:1px solid #217d7e;color:#217d7e;background:#fff;height:37px;cursor:pointer;display:flex;justify-content:center;align-items:center}.bz-btn-toggle--active{color:#fff;background:#217d7e}.bz-btn-toggle:first-child{border-radius:4px 0 0 4px}.bz-btn-toggle:last-child{border-radius:0 4px 4px 0}.bz-chip{position:relative;-webkit-tap-highlight-color:transparent;font-size:1.4rem;font-weight:400;background:#fff;color:#272727;padding:0 .8rem;border-radius:24px;border:1px solid #e0e0e0;margin-right:.4rem;margin-left:.4rem;display:inline-block;outline:0;max-width:100%;vertical-align:middle}.bz-chip__content{display:flex;align-items:center;max-width:100%;margin:0 .4rem 0 .8rem}.bz-chip__label-wrapper{flex:1 1 auto;overflow:hidden;text-overflow:ellipsis}.bz-chip__close_button{cursor:pointer;margin-left:.8rem}.bz-chip:hover{background:#fafafa}.bz-chip:focus{outline:0}.bz-chip:focus::after{opacity:.16}.bz-chip-field{line-height:1.5;width:100%}.bz-chip-field-wrapper{display:inline-block;float:none;min-width:30px;outline:0;align-items:center;width:100%;border:1px solid #e0e0e0;border-radius:4px;background:#fff;margin-top:.4rem;padding:.4rem .8rem;max-height:160px;overflow:hidden auto;min-height:37px}.bz-chip-field-wrapper .bz-chip{margin:.4rem}.bz-chip-field-input{display:inline-block;float:none;width:auto;min-width:40px;max-width:100%;border:none;outline:0;appearance:none;background:#fff;color:#272727;font-size:1.4rem;text-align:inherit;padding:0 .8rem;vertical-align:middle;margin:.4rem}.tour-step-spot__header{width:310px;display:flex;justify-content:space-between;padding:1.6rem 1.6rem;font-weight:600}.tour-step-spot__content{width:310px;display:flex;border-top:1px solid #dadada;padding:1.6rem 1.6rem}.tour-step-spot__footer{width:310px;display:flex;justify-content:flex-end;padding:1.6rem 1.6rem;border-top:1px solid #dadada}.tour-step-spot__close-icon{cursor:pointer;align-self:center}.hotspot{display:block;position:absolute;transform:translate(-50%,-50%);transform-origin:center center;border-radius:50%;cursor:pointer}.hotspot.main-wrapper{position:absolute}.dot{background:#217d7e;border-radius:50%;margin:10px;height:10px;width:10px;box-shadow:#1a6061;transform:scale(1);animation:pulse 2s infinite}@keyframes pulse{0%{transform:scale(.95);box-shadow:0 0 0 0 #217d7e}70%{transform:scale(1);box-shadow:0 0 0 9px #33bfc1}100%{transform:scale(.95);box-shadow:0 0 0 0 #7edbdd}}.bz-carousel{position:fixed;background-color:#fff;top:50%;left:50%;width:90%;height:383px;max-width:670px;transform:translate(-50%,-50%);border-radius:.8rem;box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16)}.bz-carousel__overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;background:rgba(158,158,158,.6)}.bz-carousel__content{width:100%;background-color:#fff;height:350px;border-radius:8px;padding:2.4rem;min-height:33rem;max-height:43rem;overflow:auto}.bz-carousel__footer{border-top:1px solid #e0e0e0;display:flex;background-color:#fff;padding:1.6rem;align-items:center;justify-content:space-between;border-radius:0 0 8px 8px}.bz-carousel__list{list-style-type:none;margin:0;padding:0;overflow:hidden;text-align:center}.bz-carousel__item{float:left;margin-right:.4rem;width:10px;height:10px;border-radius:50%;cursor:pointer}.bz-carousel__item--active{background:#217d7e}.bz-carousel__item--inactive{background:#e0e0e0}.bz-carousel__footer bzg-button-primary,.bz-carousel__footer bzg-button-secondary{flex:1}.bz-carousel__footer bzg-button-primary:last-child,.bz-carousel__footer bzg-button-secondary:last-child{text-align:right}.bz-overflow-menu--active svg{fill:#217D7E}.bz-wizard{position:fixed;background-color:#fff;top:50%;left:50%;width:90%;height:620px;max-width:740px;transform:translate(-50%,-50%);border-radius:8px;box-shadow:0 2px 8px 0 rgba(0,0,0,.14),0 4px 4px 0 rgba(0,0,0,.12),0 8px 8px 0 rgba(0,0,0,.06)}.bz-wizard__overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;background-color:rgba(255,255,255,.8)}.bz-wizard__header{align-items:center;border-bottom:1px solid #e0e0e0;display:flex;font-size:1.6rem;font-weight:600;min-height:64px;padding:1.6rem 1.6rem 1.6rem 2.4rem}.bz-wizard__title{flex-grow:1;font-size:1.6rem;line-height:16px}.bz-wizard__body{display:block;flex-grow:1;overflow-y:auto;padding:0 2.4rem 2.4rem;height:410px;position:relative}.bz-wizard__footer{align-items:center;border-top:1px solid #e0e0e0;display:flex;justify-content:space-between;padding:1.6rem 2.4rem}.bz-wizard__steps{text-align:left;color:#757575;margin:0}.bz-wizard__pills{display:flex;justify-content:center;padding:1.6rem 2.4rem}.bz-wizard__pill{font-size:1.2rem;font-weight:600;padding:.4rem .8rem}.bz-wizard__pill__number{background-color:#e0e0e0;font-size:1rem;font-weight:600;color:#272727;margin-right:.8rem;width:1.5rem;height:1.5rem;border-radius:50%}.bz-wizard__pill[disabled]{background-color:#fafafa;border-color:transparent;color:#757575;cursor:auto;pointer-events:none}.bz-wizard__conector{display:flex;flex-direction:row;justify-content:center;align-items:center}.bz-wizard__conector:before{content:"";border-bottom:1px solid;width:16px;height:1px;position:relative}.bz-wizard__conector:first-child:before{display:none}.bz-wizard__item{cursor:pointer}.bz-wizard__item--active:before{border-bottom-color:#217d7e}.bz-wizard__item--active button{color:#272727;background:#fff;border:1px solid #33bfc1;font-size:1.2rem;font-weight:600}.bz-wizard__item--active svg{fill:#217D7E}.bz-wizard__item--active .bz-wizard__pill__number{background-color:#217d7e;color:#fff}.bz-wizard__item--complete:before{border-bottom-color:#217d7e}.bz-wizard__item--complete svg{fill:#217D7E}.bz-wizard__item--complete button{color:#1a6061;background:rgba(126,219,221,.25);border:1px solid #33bfc1;font-size:1.2rem;font-weight:400}.bz-wizard__item--pending:before{border-bottom-color:#e0e0e0}.bz-wizard__item--pending button{background-color:#fafafa;border:1px solid #33bfc1;color:#757575;font-size:1.2rem;font-weight:400}.bz-wizard__fullscreen{width:100%;height:100%;max-width:100%;display:flex;flex-direction:column}.bz-wizard__fullscreen #container-slider{flex:1}.bz-wizard__fullscreen .bz-wizard__body{height:auto}.bz-wizard__footer bzg-button-primary:last-child,.bz-wizard__footer bzg-button-secondary:last-child{text-align:right}.bz-wizard__footer bzg-button-primary,.bz-wizard__footer bzg-button-secondary{flex:1;margin-right:1.6rem}.bz-autocomplete-multiple-searchbox{background-color:#fff;border:1px solid #e0e0e0;border-radius:4px;position:relative;padding:.8rem 1.6rem;display:flex;justify-content:space-between;align-items:flex-start;height:100%;overflow:hidden;transition:all .3s ease-in-out}.bz-autocomplete-multiple-searchbox--focused,.bz-autocomplete-multiple-searchbox:focus,.bz-autocomplete-multiple-searchbox__hover{flex-direction:column;overflow:auto}.bz-autocomplete-multiple-searchbox--focused .bz-chip,.bz-autocomplete-multiple-searchbox:focus .bz-chip,.bz-autocomplete-multiple-searchbox__hover .bz-chip{margin:0 .4rem .4rem 0!important;padding:.2rem .8rem}.bz-autocomplete-multiple-searchbox--focused .badge-count,.bz-autocomplete-multiple-searchbox:focus .badge-count,.bz-autocomplete-multiple-searchbox__hover .badge-count{display:none}.bz-autocomplete-multiple-searchbox__input-span{display:flex;justify-content:space-between;align-items:center}.bz-autocomplete-multiple-searchbox__input-span>input{width:100%}.bz-autocomplete-multiple-searchbox__input--visible{visibility:visible;width:100%}.bz-autocomplete-multiple-searchbox__input--hidden{visibility:hidden;width:0}.bz-autocomplete-multiple-searchbox .bz-chip{transition:all .2s ease-in-out;margin:0 .4rem .8rem 0;padding:.2rem .8rem}.bz-autocomplete-multiple-searchbox .bz-chip__close_button{display:flex;align-items:center;padding:3px 0 0 .8rem}.bz-autocomplete-multiple-searchbox .bz-chip__close_button::ng-deep svg{fill:#757575}.bz-autocomplete-multiple-searchbox .bz-chip>div{display:flex;justify-content:space-between;align-items:center}.bz-autocomplete-multiple-searchbox .bz-chip a{margin-left:10px;color:gray;min-width:16px}.bz-autocomplete-multiple-searchbox .badge-count{border-radius:12px;-moz-border-radius:12px;-webkit-border-radius:12px;border:1px solid #217d7e;color:#217d7e;padding:0 10px;font-size:12px;position:relative;top:4px}.bz-autocomplete-multiple-searchbox--focused{border:1px solid #217d7e}.bz-autocomplete-multiple-searchbox--opened{border-radius:4px 4px 0 0;border-bottom:2px solid #fff;box-shadow:0 2px 4px rgba(0,0,0,.08),0 2px 4px rgba(0,0,0,.12),0 2px 8px rgba(0,0,0,.06)}.bz-autocomplete-multiple-searchbox .searchIcon{width:30px}.bz-autocomplete-multiple-searchbox input{background:0 0;border:none;flex-grow:1;font-size:1.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;position:relative;top:1px}.bz-autocomplete-multiple-searchbox input::placeholder{color:#757575}.bz-autocomplete-multiple-searchbox input:focus{outline:0}.bz-autocomplete-multiple-panel{background-color:#fff;border:1px solid #217d7e;border-top:0;border-radius:0 0 4px 4px;box-shadow:0 4px 4px rgba(0,0,0,.08),0 4px 4px rgba(0,0,0,.12),0 8px 8px rgba(0,0,0,.06);display:flex;flex-direction:column;overflow:auto;position:absolute;-webkit-user-select:none;user-select:none;width:100%}.bz-autocomplete-multiple-panel .bz-option{display:flex;align-items:center}.bz-autocomplete-multiple-panel--s{max-height:185px}.bz-autocomplete-multiple-panel--s .bz-option{height:37px;min-height:37px}.bz-autocomplete-multiple-panel--m{max-height:275px}.bz-autocomplete-multiple-panel--m .bz-option{height:55px;min-height:55px}.bz-autocomplete-multiple-panel .bz-option.bz-option--selected:not(.bz-option--active):not(:hover){color:#272727;background-color:#fff}.bz-accordion__custom-margin{margin:2px 0}.bz-accordion__head{align-items:center;background:#fff;border-bottom:1px solid #e0e0e0;color:#272727;cursor:pointer;display:flex;font-weight:400;justify-content:space-between}.bz-accordion__head--active{background:rgba(207,242,242,.25);border-bottom:1px solid #217d7e}.bz-accordion__head--disabled{background:#fafafa;color:#9e9e9e;pointer-events:none}.bz-accordion__head--custom-style{background:#fafafa;border-bottom:0}.bz-accordion__head--custom-style-active{border-radius:4px 4px 0 0;border:1px solid #e0e0e0;border-bottom:0}.bz-accordion__head--compact{padding:.4rem .8rem}.bz-accordion__head--compact span{font-size:1.2rem}.bz-accordion__head--normal{padding:.8rem 1.6rem}.bz-accordion__head--normal span{font-size:1.4rem}.bz-accordion__head--comfortable{padding:1.6rem}.bz-accordion__head--comfortable span{font-size:1.4rem}.bz-accordion__head--comfortable .bz-accordion__head--icon{width:16px;height:16px}.bz-accordion__head--icon{fill:#9E9E9E;width:12px;height:12px}.bz-accordion__head--icon--active{fill:#217D7E;transform:rotate(180deg)}.bz-accordion__head--titleIcon{fill:#9E9E9E;padding-right:.4rem}.bz-accordion__head--first-icons{align-items:center;display:flex}.bz-accordion__head--dragg-icon{margin-right:.8rem;display:none;cursor:move}.bz-accordion__head:hover .bz-accordion__head--dragg-icon{display:block}.bz-accordion__body{display:none}.bz-accordion__body--compact{padding:.4rem .8rem}.bz-accordion__body--normal{padding:.8rem 1.6rem}.bz-accordion__body--comfortable{padding:1.6rem}.bz-accordion__body--active{border-bottom:1px solid #e0e0e0;animation:fadeIn .3s;display:block}.bz-accordion__body--custom-style{border-radius:0 0 4px 4px;border:1px solid #e0e0e0;border-top:0}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.stepper__nav-bar{display:flex;flex-direction:row;justify-content:flex-start;background-color:#fafafa;padding:2.4rem 3.2rem}.stepper__step-title{display:flex;flex-direction:row;justify-items:flex-start;align-items:center;cursor:pointer;color:#757575}.stepper__step-title span{font-size:x-small}.stepper__step-title--active{color:#000;font-weight:700}.stepper__step-title-separator{border-top:1px solid #9e9e9e;width:3rem;height:0;margin:0 10px}.stepper__step-title-icon{display:flex;flex-direction:row;justify-content:center;align-items:center;margin-right:10px;width:2.4rem;min-width:2.4rem;max-width:2.4rem;height:2.4rem;min-height:2.4rem;max-height:2.4rem;border-radius:50%;background-color:#fff;border:1px solid #9e9e9e;color:#757575}.stepper__step-title-icon--active{background-color:#217d7e;border:1px solid #217d7e;color:#fff}.stepper__content{padding:2.4rem 3.2rem}.bz-card-collection-list{padding:2.4rem 1.6rem;display:grid;gap:1.5rem;grid-template-columns:repeat(auto-fill,minmax(22rem,1fr));overflow:auto;align-content:center}@media only screen and (max-width:481px){.bz-card-collection-list{gap:16px;grid-template-columns:repeat(auto-fill,minmax(140px,1fr))}}.bz-card-collection-item{display:flex;min-width:22rem;min-height:22rem;flex-direction:column;align-items:center;justify-content:center;padding:1.6rem 2.4rem;aspect-ratio:1/1;background:#fff;border:1px solid #e0e0e0;border-radius:32px;transition:.3s;overflow:hidden}.bz-card-collection-item:hover:not(.disabled):not(.loading):not(.empty){background:#fff;border:1px solid #6464de;box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16);transition:.3s;cursor:pointer}.bz-card-collection-item:hover:not(.disabled):not(.loading):not(.empty) .bz-card-collection-item__footer *{display:block;transition:.3s}.bz-card-collection-item.focused:not(.disabled):not(.loading):not(.empty){background:#fff;border:1px solid #6464de;box-shadow:0 4px 16px 2px rgba(0,0,0,.08),0 6px 32px 6px rgba(0,0,0,.08),0 8px 8px rgba(0,0,0,.16);transition:.3s;cursor:pointer}.bz-card-collection-item__header{display:flex;width:100%;height:32px;min-height:32px;justify-content:flex-end}.bz-card-collection-item__header bzg-icon{align-items:center;padding-top:2.5px;border-radius:5px;border:1px solid transparent}.bz-card-collection-item__header bzg-icon.focused{border:1px solid #6464de}.bz-card-collection-item__body{display:flex;flex-direction:column;gap:18px;justify-content:center;align-items:center;margin:auto 0}.bz-card-collection-item__avatar{display:flex;flex-direction:column;justify-content:center;align-items:center;white-space:nowrap;padding:.8rem;width:84px;height:84px;border-radius:32px;background-color:#5856f1;background-image:linear-gradient(147.61deg,#a0a5ff 7.21%,#5856f1 93.15%);box-shadow:0 2px 20px rgba(71,71,71,.25),inset 1px 2px 4px rgba(255,255,255,.07)}.bz-card-collection-item__avatar span{font-style:normal;font-weight:600;font-size:2.7rem;line-height:34px;color:#fff}.bz-card-collection-item__title{width:137px;max-width:98%;height:20px;font-style:normal;font-weight:600;font-size:600;line-height:20px;text-align:center;color:#272727;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.bz-card-collection-item__footer{display:flex;justify-content:flex-end;width:100%;height:0}.bz-card-collection-item__footer *{display:none;transition:.3s}.disabled{opacity:.65}.loading .bz-card-collection-item__avatar{border-radius:32px}.loading .bz-card-collection-item__title{border-radius:4px}.loading .bz-card-collection-item__avatar,.loading .bz-card-collection-item__title{background:rgba(0,0,0,.1019607843);background:linear-gradient(100deg,#e0e0e0 7.14%,rgba(224,224,224,0) 49.77%,#e0e0e0 94.2%);box-shadow:none;-webkit-backdrop-filter:none;backdrop-filter:none;background-size:200% 100%;animation:1.5s skeleton_animation linear infinite}@media only screen and (max-width:481px){.bz-card-collection-item{min-width:140px;min-height:140px;gap:0;background:#fff;border-radius:32px;border:1px solid #e0e0e0;padding:1.6rem 1.6rem}.bz-card-collection-item__header{display:flex;width:100%;height:32px;min-height:32px;justify-content:flex-end}.bz-card-collection-item__avatar{border-radius:24px}.bz-card-collection-item__title{width:110px;font-size:1.4rem}.bz-card-collection-item__footer{display:none}}@keyframes skeleton_animation{to{background-position-x:-200%}}.bzg-case-card{border-radius:16px;background:rgba(255,255,255,.8)}.bzg-case-card__body{padding:24px 16px 16px;position:relative;border-bottom:1px solid #e0e0e0}.bzg-case-card__body__title{display:grid;grid-template-columns:1fr 16px;grid-gap:5px;margin-bottom:8px}.bzg-case-card__body__title__text{font-size:1.6rem;font-weight:600;line-height:20px;color:#000}.bzg-case-card__body__title__icon{display:flex;align-items:center}.bzg-case-card__body__title__icon .icon{width:16px;height:16px}.bzg-case-card__body__items{display:grid;grid-gap:8px}.bzg-case-card__body__item{overflow-y:hidden}.bzg-case-card__body__item__key{font-weight:600;font-size:1.4rem;line-height:20px;display:inline-block;color:#272727}.bzg-case-card__body__item__key::first-letter{text-transform:uppercase}.bzg-case-card__body__item__value{max-height:42px;font-size:1.4rem;line-height:20px}.bzg-case-card__footer .view-more{padding:17.5px 16px;display:grid;grid-template-columns:1fr 16px;cursor:pointer}.bzg-case-card__footer .view-more__text{font-size:1.4rem;font-weight:600;color:#6464de;cursor:pointer}.bzg-case-card__footer .view-more__icon{display:flex;align-items:center;cursor:pointer}.bzg-case-card__footer .view-more__icon svg{fill:#6464de;color:#6464de}.bzg-case-card__footer .view-more--open{padding:17.5px 16px 9.5px}.bzg-case-card__footer .view-more--open .view-more__icon__svg{transform:rotate(180deg)}.bzg-case-card__footer .bzg-case-card__body__items{padding:0 16px 16px}.bzg-case-card--no-border{background:0 0;border-radius:0;border-bottom:1px solid #dcdcdf}.bzg-case-card--no-border .bzg-case-card__body{padding:32px 16px 0;border-bottom:none}.bzg-case-card--no-border .bzg-case-card__footer{padding-bottom:17px}.bzg-case-card--no-border .bzg-case-card__footer .view-more{padding-bottom:9.5px}.bzg-case-card--no-border .bzg-case-card__footer .bzg-case-card__body__items{padding:0 16px 8px}.bzg-case-card.mb-8{margin-bottom:8px}.about-modal-container{display:flex;flex-direction:column;align-items:center;justify-content:center}.about-modal-container__message{margin-top:1rem;text-align:center}.about-modal-container__message__title{font-weight:700}.about-modal-container__message__footer{margin-top:1rem}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

.mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0, 0, 0.2, 1);transform:scale3d(0, 0, 0)}.cdk-high-contrast-active .mat-ripple-element{display:none}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0 !important;box-sizing:content-box !important;height:auto !important;overflow:hidden !important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0 !important;box-sizing:content-box !important;height:0 !important}@keyframes cdk-text-field-autofill-start{/*!*/}@keyframes cdk-text-field-autofill-end{/*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.mat-focus-indicator{position:relative}.mat-focus-indicator::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus::before{content:""}.cdk-high-contrast-active{--mat-focus-indicator-display: block}.mat-mdc-focus-indicator{position:relative}.mat-mdc-focus-indicator::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.mat-mdc-focus-indicator:focus::before{content:""}.cdk-high-contrast-active{--mat-mdc-focus-indicator-display: block}.mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-mdc-option{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mat-mdc-option:hover:not(.mdc-list-item--disabled),.mat-mdc-option:focus:not(.mdc-list-item--disabled),.mat-mdc-option.mat-mdc-option-active,.mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled){background:rgba(0,0,0,.04)}.mat-primary .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:var(--mdc-theme-primary, #3f51b5)}.mat-accent .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:var(--mdc-theme-secondary, #ff4081)}.mat-warn .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:var(--mdc-theme-error, #f44336)}.mat-mdc-optgroup-label{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mat-pseudo-checkbox-full{color:rgba(0,0,0,.54)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#b0b0b0}.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after{color:#3f51b5}.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#3f51b5}.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after{color:#fafafa}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after{color:#ff4081}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#ff4081}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after{color:#fafafa}.mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after{color:#ff4081}.mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#ff4081}.mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after{color:#fafafa}.mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after{color:#f44336}.mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#f44336}.mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after{color:#fafafa}.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after{color:#b0b0b0}.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#b0b0b0}.mat-app-background{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12)}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12)}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12)}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12)}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12)}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12)}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12)}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12)}.mat-theme-loaded-marker{display:none}.mat-mdc-option{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body1-font-size, 16px);line-height:var(--mdc-typography-body1-line-height, 24px);font-weight:var(--mdc-typography-body1-font-weight, 400);letter-spacing:var(--mdc-typography-body1-letter-spacing, 0.03125em)}.mat-mdc-card{box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);--mdc-elevated-card-container-color:#fff}.mat-mdc-card-outlined{box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);--mdc-outlined-card-outline-color:#e0e0e0}.mat-mdc-card-subtitle{color:rgba(0,0,0,.54)}.mat-mdc-card-title{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-headline6-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-headline6-font-size, 20px);line-height:var(--mdc-typography-headline6-line-height, 32px);font-weight:var(--mdc-typography-headline6-font-weight, 500);letter-spacing:var(--mdc-typography-headline6-letter-spacing, 0.0125em);-webkit-text-decoration:var(--mdc-typography-headline6-text-decoration, inherit);text-decoration:var(--mdc-typography-headline6-text-decoration, inherit);text-transform:var(--mdc-typography-headline6-text-transform, none)}.mat-mdc-card-subtitle{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-subtitle2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-subtitle2-font-size, 14px);line-height:var(--mdc-typography-subtitle2-line-height, 22px);font-weight:var(--mdc-typography-subtitle2-font-weight, 500);letter-spacing:var(--mdc-typography-subtitle2-letter-spacing, 0.0071428571em);-webkit-text-decoration:var(--mdc-typography-subtitle2-text-decoration, inherit);text-decoration:var(--mdc-typography-subtitle2-text-decoration, inherit);text-transform:var(--mdc-typography-subtitle2-text-transform, none)}.mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color:#3f51b5}.mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(63, 81, 181, 0.25)'/%3E%3C/svg%3E")}.mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:rgba(63, 81, 181, 0.25)}.mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color:#ff4081}.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 64, 129, 0.25)'/%3E%3C/svg%3E")}.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:rgba(255, 64, 129, 0.25)}.mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color:#f44336}.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(244, 67, 54, 0.25)'/%3E%3C/svg%3E")}.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:rgba(244, 67, 54, 0.25)}.mat-mdc-tooltip{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:white}.mat-mdc-tooltip{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:rgba(0, 0, 0, 0.6)}.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input{color:rgba(0, 0, 0, 0.87)}@media all{.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:rgba(0, 0, 0, 0.6)}}@media all{.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:rgba(0, 0, 0, 0.6)}}.mdc-text-field .mdc-text-field__input{caret-color:var(--mdc-theme-primary, #3f51b5)}.mdc-text-field:not(.mdc-text-field--disabled)+.mdc-text-field-helper-line .mdc-text-field-helper-text{color:rgba(0, 0, 0, 0.6)}.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field-character-counter,.mdc-text-field:not(.mdc-text-field--disabled)+.mdc-text-field-helper-line .mdc-text-field-character-counter{color:rgba(0, 0, 0, 0.6)}.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon--leading{color:rgba(0, 0, 0, 0.54)}.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing{color:rgba(0, 0, 0, 0.54)}.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__affix--prefix{color:rgba(0, 0, 0, 0.6)}.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__affix--suffix{color:rgba(0, 0, 0, 0.6)}.mdc-text-field--filled .mdc-text-field__ripple::before,.mdc-text-field--filled .mdc-text-field__ripple::after{background-color:var(--mdc-ripple-color, rgba(0, 0, 0, 0.87))}.mdc-text-field--filled:hover .mdc-text-field__ripple::before,.mdc-text-field--filled.mdc-ripple-surface--hover .mdc-text-field__ripple::before{opacity:var(--mdc-ripple-hover-opacity, 0.04)}.mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,.mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{opacity:var(--mdc-ripple-focus-opacity, 0.12)}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:whitesmoke}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:rgba(0, 0, 0, 0.42)}.mdc-text-field--filled:not(.mdc-text-field--disabled):hover .mdc-line-ripple::before{border-bottom-color:rgba(0, 0, 0, 0.87)}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-color:var(--mdc-theme-primary, #3f51b5)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:rgba(0, 0, 0, 0.38)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:rgba(0, 0, 0, 0.87)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-theme-primary, #3f51b5)}.mdc-text-field--outlined .mdc-text-field__ripple::before,.mdc-text-field--outlined .mdc-text-field__ripple::after{background-color:var(--mdc-ripple-color, transparent)}.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label{color:rgba(63, 81, 181, 0.87)}.mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-theme-error, #f44336)}.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-theme-error, #f44336)}.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label{color:var(--mdc-theme-error, #f44336)}.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{color:var(--mdc-theme-error, #f44336)}.mdc-text-field--invalid .mdc-text-field__input{caret-color:var(--mdc-theme-error, #f44336)}.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing{color:var(--mdc-theme-error, #f44336)}.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-theme-error, #f44336)}.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mdc-text-field--disabled .mdc-text-field__input{color:rgba(0, 0, 0, 0.38)}@media all{.mdc-text-field--disabled .mdc-text-field__input::placeholder{color:rgba(0, 0, 0, 0.38)}}@media all{.mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder{color:rgba(0, 0, 0, 0.38)}}.mdc-text-field--disabled .mdc-floating-label{color:rgba(0, 0, 0, 0.38)}.mdc-text-field--disabled+.mdc-text-field-helper-line .mdc-text-field-helper-text{color:rgba(0, 0, 0, 0.38)}.mdc-text-field--disabled .mdc-text-field-character-counter,.mdc-text-field--disabled+.mdc-text-field-helper-line .mdc-text-field-character-counter{color:rgba(0, 0, 0, 0.38)}.mdc-text-field--disabled .mdc-text-field__icon--leading{color:rgba(0, 0, 0, 0.3)}.mdc-text-field--disabled .mdc-text-field__icon--trailing{color:rgba(0, 0, 0, 0.3)}.mdc-text-field--disabled .mdc-text-field__affix--prefix{color:rgba(0, 0, 0, 0.38)}.mdc-text-field--disabled .mdc-text-field__affix--suffix{color:rgba(0, 0, 0, 0.38)}.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:rgba(0, 0, 0, 0.06)}.mdc-text-field--disabled .mdc-notched-outline__leading,.mdc-text-field--disabled .mdc-notched-outline__notch,.mdc-text-field--disabled .mdc-notched-outline__trailing{border-color:rgba(0, 0, 0, 0.06)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-text-field__input::placeholder{color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder{color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-floating-label{color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled+.mdc-text-field-helper-line .mdc-text-field-helper-text{color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-text-field-character-counter,.mdc-text-field--disabled+.mdc-text-field-helper-line .mdc-text-field-character-counter{color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-text-field__icon--leading{color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-text-field__icon--trailing{color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-text-field__affix--prefix{color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-text-field__affix--suffix{color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:GrayText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-text-field--disabled .mdc-notched-outline__leading,.mdc-text-field--disabled .mdc-notched-outline__notch,.mdc-text-field--disabled .mdc-notched-outline__trailing{border-color:GrayText}}.mdc-text-field--disabled.mdc-text-field--filled{background-color:#fafafa}.mat-mdc-form-field-error{color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field-focus-overlay{background-color:rgba(0,0,0,.87)}.mat-mdc-form-field:hover .mat-mdc-form-field-focus-overlay{opacity:.04}.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay{opacity:.12}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{color:rgba(0,0,0,.54)}.mat-mdc-form-field-type-mat-native-select.mat-focused.mat-primary .mat-mdc-form-field-infix::after{color:rgba(63,81,181,.87)}.mat-mdc-form-field-type-mat-native-select.mat-focused.mat-accent .mat-mdc-form-field-infix::after{color:rgba(255,64,129,.87)}.mat-mdc-form-field-type-mat-native-select.mat-focused.mat-warn .mat-mdc-form-field-infix::after{color:rgba(244,67,54,.87)}.mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after{color:rgba(0,0,0,.38)}.mat-mdc-form-field.mat-accent .mdc-text-field__input{caret-color:var(--mdc-theme-secondary, #ff4081)}.mat-mdc-form-field.mat-accent:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-theme-secondary, #ff4081)}.mat-mdc-form-field.mat-accent .mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label{color:rgba(255, 64, 129, 0.87)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label{color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid .mdc-text-field__input{caret-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing{color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mat-mdc-form-field.mat-accent .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-accent .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mat-mdc-form-field.mat-accent .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mat-mdc-form-field.mat-accent .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-theme-secondary, #ff4081)}.mat-mdc-form-field.mat-warn .mdc-text-field__input{caret-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label{color:rgba(244, 67, 54, 0.87)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label{color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid .mdc-text-field__input{caret-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing{color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mat-mdc-form-field.mat-warn .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-warn .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mat-mdc-form-field.mat-warn .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mat-mdc-form-field.mat-warn .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-theme-error, #f44336)}.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:1px solid rgba(0,0,0,0)}[dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:none;border-right:1px solid rgba(0,0,0,0)}.mat-mdc-form-field-infix{min-height:56px}.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:28px}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{--mat-mdc-form-field-label-transform: translateY( -34.75px) scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));transform:var(--mat-mdc-form-field-label-transform)}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix{padding-top:16px;padding-bottom:16px}.mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix{padding-top:24px;padding-bottom:8px}.mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix{padding-top:16px;padding-bottom:16px}.mdc-text-field__input{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-subtitle1-font-size, 16px);font-weight:var(--mdc-typography-subtitle1-font-weight, 400);letter-spacing:var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);-webkit-text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-transform:var(--mdc-typography-subtitle1-text-transform, none)}.mdc-text-field__affix{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-subtitle1-font-size, 16px);font-weight:var(--mdc-typography-subtitle1-font-weight, 400);letter-spacing:var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);-webkit-text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-transform:var(--mdc-typography-subtitle1-text-transform, none)}.mdc-text-field--textarea .mdc-text-field__input{line-height:1.5rem}.mdc-floating-label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-subtitle1-font-size, 16px);font-weight:var(--mdc-typography-subtitle1-font-weight, 400);letter-spacing:var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);-webkit-text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-transform:var(--mdc-typography-subtitle1-text-transform, none)}.mat-mdc-form-field-subscript-wrapper,.mat-mdc-form-field-bottom-align::before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-caption-font-size, 12px);line-height:var(--mdc-typography-caption-line-height, 20px);font-weight:var(--mdc-typography-caption-font-weight, 400);letter-spacing:var(--mdc-typography-caption-letter-spacing, 0.0333333333em);-webkit-text-decoration:var(--mdc-typography-caption-text-decoration, inherit);text-decoration:var(--mdc-typography-caption-text-decoration, inherit);text-transform:var(--mdc-typography-caption-text-transform, none)}.mat-mdc-form-field,.mat-mdc-floating-label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body1-font-size, 16px);line-height:var(--mdc-typography-body1-line-height, 24px);font-weight:var(--mdc-typography-body1-font-weight, 400);letter-spacing:var(--mdc-typography-body1-letter-spacing, 0.03125em);-webkit-text-decoration:var(--mdc-typography-body1-text-decoration, inherit);text-decoration:var(--mdc-typography-body1-text-decoration, inherit);text-transform:var(--mdc-typography-body1-text-transform, none)}.mat-mdc-form-field .mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(16px * var(--mat-mdc-form-field-floating-label-scale, 0.75))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:16px}.mdc-menu-surface{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);background-color:var(--mdc-theme-surface, #fff);color:var(--mdc-theme-on-surface, #000)}.mdc-list-item__primary-text{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mdc-list-item__secondary-text{color:var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54))}.mdc-list-item__overline-text{color:var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38))}.mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-trailing-icon .mdc-list-item__end{background-color:transparent}.mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38))}.mdc-list-item__end{color:var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38))}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:0.38}.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled .mdc-list-item__secondary-text{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled .mdc-list-item__overline-text{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--selected .mdc-list-item__primary-text,.mdc-list-item--activated .mdc-list-item__primary-text{color:var(--mdc-theme-primary, #3f51b5)}.mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-theme-primary, #3f51b5)}.mdc-deprecated-list-group__subheader{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mdc-list-divider::after{border-bottom-color:white}.mdc-list-divider{background-color:rgba(0, 0, 0, 0.12)}.mat-mdc-select-value{color:rgba(0,0,0,.87)}.mat-mdc-select-placeholder{color:rgba(0,0,0,.6)}.mat-mdc-select-disabled .mat-mdc-select-value{color:rgba(0,0,0,.38)}.mat-mdc-select-arrow{color:rgba(0,0,0,.54)}.mat-mdc-form-field.mat-focused.mat-primary .mat-mdc-select-arrow{color:rgba(63,81,181,.87)}.mat-mdc-form-field.mat-focused.mat-accent .mat-mdc-select-arrow{color:rgba(255,64,129,.87)}.mat-mdc-form-field.mat-focused.mat-warn .mat-mdc-select-arrow{color:rgba(244,67,54,.87)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-invalid .mat-mdc-select-arrow{color:rgba(244,67,54,.87)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:rgba(0,0,0,.38)}.mat-mdc-select-panel{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-subtitle1-font-size, 16px);line-height:var(--mdc-typography-subtitle1-line-height, 28px);font-weight:var(--mdc-typography-subtitle1-font-weight, 400);letter-spacing:var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);-webkit-text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-transform:var(--mdc-typography-subtitle1-text-transform, none);line-height:24px}.mat-mdc-select{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body1-font-size, 16px);line-height:var(--mdc-typography-body1-line-height, 24px);font-weight:var(--mdc-typography-body1-font-weight, 400);letter-spacing:var(--mdc-typography-body1-letter-spacing, 0.03125em);-webkit-text-decoration:var(--mdc-typography-body1-text-decoration, inherit);text-decoration:var(--mdc-typography-body1-text-decoration, inherit);text-transform:var(--mdc-typography-body1-text-transform, none)}.mdc-menu-surface{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);background-color:var(--mdc-theme-surface, #fff);color:var(--mdc-theme-on-surface, #000)}.mdc-list-item__primary-text{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mdc-list-item__secondary-text{color:var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54))}.mdc-list-item__overline-text{color:var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38))}.mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-trailing-icon .mdc-list-item__end{background-color:transparent}.mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38))}.mdc-list-item__end{color:var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38))}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:0.38}.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled .mdc-list-item__secondary-text{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled .mdc-list-item__overline-text{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--selected .mdc-list-item__primary-text,.mdc-list-item--activated .mdc-list-item__primary-text{color:var(--mdc-theme-primary, #3f51b5)}.mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-theme-primary, #3f51b5)}.mdc-deprecated-list-group__subheader{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mdc-list-divider::after{border-bottom-color:white}.mdc-list-divider{background-color:rgba(0, 0, 0, 0.12)}.mat-mdc-autocomplete-panel{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-subtitle1-font-size, 16px);line-height:var(--mdc-typography-subtitle1-line-height, 28px);font-weight:var(--mdc-typography-subtitle1-font-weight, 400);letter-spacing:var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);-webkit-text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-transform:var(--mdc-typography-subtitle1-text-transform, none);line-height:24px}.mat-mdc-dialog-container{--mdc-dialog-container-color:white;--mdc-dialog-with-divider-divider-color:rgba(0, 0, 0, 0.12);--mdc-dialog-subhead-color:rgba(0, 0, 0, 0.87);--mdc-dialog-supporting-text-color:rgba(0, 0, 0, 0.6)}.mat-mdc-dialog-container{--mdc-dialog-subhead-font:Roboto, sans-serif;--mdc-dialog-subhead-line-height:32px;--mdc-dialog-subhead-size:20px;--mdc-dialog-subhead-weight:500;--mdc-dialog-subhead-tracking:0.0125em;--mdc-dialog-supporting-text-font:Roboto, sans-serif;--mdc-dialog-supporting-text-line-height:24px;--mdc-dialog-supporting-text-size:16px;--mdc-dialog-supporting-text-weight:400;--mdc-dialog-supporting-text-tracking:0.03125em}.mat-mdc-standard-chip{--mdc-chip-elevated-container-color:#e0e0e0;--mdc-chip-elevated-disabled-container-color:#e0e0e0;--mdc-chip-label-text-color:#212121;--mdc-chip-disabled-label-text-color:#212121;--mdc-chip-with-icon-icon-color:#212121;--mdc-chip-with-icon-disabled-icon-color:#212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:#212121;--mdc-chip-with-trailing-icon-trailing-icon-color:#212121;--mdc-chip-with-icon-selected-icon-color:#212121}.mat-mdc-standard-chip.mat-primary.mat-mdc-chip-selected,.mat-mdc-standard-chip.mat-primary.mat-mdc-chip-highlighted{--mdc-chip-elevated-container-color:#3f51b5;--mdc-chip-elevated-disabled-container-color:#3f51b5;--mdc-chip-label-text-color:white;--mdc-chip-disabled-label-text-color:white;--mdc-chip-with-icon-icon-color:white;--mdc-chip-with-icon-disabled-icon-color:white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:white;--mdc-chip-with-trailing-icon-trailing-icon-color:white;--mdc-chip-with-icon-selected-icon-color:white}.mat-mdc-standard-chip.mat-accent.mat-mdc-chip-selected,.mat-mdc-standard-chip.mat-accent.mat-mdc-chip-highlighted{--mdc-chip-elevated-container-color:#ff4081;--mdc-chip-elevated-disabled-container-color:#ff4081;--mdc-chip-label-text-color:white;--mdc-chip-disabled-label-text-color:white;--mdc-chip-with-icon-icon-color:white;--mdc-chip-with-icon-disabled-icon-color:white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:white;--mdc-chip-with-trailing-icon-trailing-icon-color:white;--mdc-chip-with-icon-selected-icon-color:white}.mat-mdc-standard-chip.mat-warn.mat-mdc-chip-selected,.mat-mdc-standard-chip.mat-warn.mat-mdc-chip-highlighted{--mdc-chip-elevated-container-color:#f44336;--mdc-chip-elevated-disabled-container-color:#f44336;--mdc-chip-label-text-color:white;--mdc-chip-disabled-label-text-color:white;--mdc-chip-with-icon-icon-color:white;--mdc-chip-with-icon-disabled-icon-color:white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color:white;--mdc-chip-with-trailing-icon-trailing-icon-color:white;--mdc-chip-with-icon-selected-icon-color:white}.mat-mdc-chip-focus-overlay{background:#000}.mat-mdc-chip{height:32px}.mat-mdc-standard-chip{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body2-font-size, 14px);line-height:var(--mdc-typography-body2-line-height, 20px);font-weight:var(--mdc-typography-body2-font-weight, 400);letter-spacing:var(--mdc-typography-body2-letter-spacing, 0.0178571429em);-webkit-text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-transform:var(--mdc-typography-body2-text-transform, none)}.mat-mdc-slide-toggle{--mdc-switch-disabled-selected-handle-color:#424242;--mdc-switch-disabled-unselected-handle-color:#424242;--mdc-switch-disabled-selected-track-color:#424242;--mdc-switch-disabled-unselected-track-color:#424242;--mdc-switch-unselected-focus-state-layer-color:#424242;--mdc-switch-unselected-pressed-state-layer-color:#424242;--mdc-switch-unselected-hover-state-layer-color:#424242;--mdc-switch-unselected-focus-track-color:#e0e0e0;--mdc-switch-unselected-hover-track-color:#e0e0e0;--mdc-switch-unselected-pressed-track-color:#e0e0e0;--mdc-switch-unselected-track-color:#e0e0e0;--mdc-switch-unselected-focus-handle-color:#212121;--mdc-switch-unselected-hover-handle-color:#212121;--mdc-switch-unselected-pressed-handle-color:#212121;--mdc-switch-handle-surface-color:var(--mdc-theme-surface, #fff);--mdc-switch-unselected-handle-color:#616161;--mdc-switch-selected-icon-color:#fff;--mdc-switch-disabled-selected-icon-color:#fff;--mdc-switch-disabled-unselected-icon-color:#fff;--mdc-switch-unselected-icon-color:#fff}.mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mat-mdc-slide-toggle .mdc-switch--disabled+label{color:rgba(0,0,0,.38)}.mat-mdc-slide-toggle.mat-primary{--mdc-switch-selected-focus-state-layer-color:#3949ab;--mdc-switch-selected-handle-color:#3949ab;--mdc-switch-selected-hover-state-layer-color:#3949ab;--mdc-switch-selected-pressed-state-layer-color:#3949ab;--mdc-switch-selected-focus-handle-color:#1a237e;--mdc-switch-selected-hover-handle-color:#1a237e;--mdc-switch-selected-pressed-handle-color:#1a237e;--mdc-switch-selected-focus-track-color:#7986cb;--mdc-switch-selected-hover-track-color:#7986cb;--mdc-switch-selected-pressed-track-color:#7986cb;--mdc-switch-selected-track-color:#7986cb}.mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color:#d81b60;--mdc-switch-selected-handle-color:#d81b60;--mdc-switch-selected-hover-state-layer-color:#d81b60;--mdc-switch-selected-pressed-state-layer-color:#d81b60;--mdc-switch-selected-focus-handle-color:#880e4f;--mdc-switch-selected-hover-handle-color:#880e4f;--mdc-switch-selected-pressed-handle-color:#880e4f;--mdc-switch-selected-focus-track-color:#f06292;--mdc-switch-selected-hover-track-color:#f06292;--mdc-switch-selected-pressed-track-color:#f06292;--mdc-switch-selected-track-color:#f06292}.mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color:#e53935;--mdc-switch-selected-handle-color:#e53935;--mdc-switch-selected-hover-state-layer-color:#e53935;--mdc-switch-selected-pressed-state-layer-color:#e53935;--mdc-switch-selected-focus-handle-color:#b71c1c;--mdc-switch-selected-hover-handle-color:#b71c1c;--mdc-switch-selected-pressed-handle-color:#b71c1c;--mdc-switch-selected-focus-track-color:#e57373;--mdc-switch-selected-hover-track-color:#e57373;--mdc-switch-selected-pressed-track-color:#e57373;--mdc-switch-selected-track-color:#e57373}.mat-mdc-slide-toggle{--mdc-switch-state-layer-size:48px}.mdc-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body2-font-size, 14px);line-height:var(--mdc-typography-body2-line-height, 20px);font-weight:var(--mdc-typography-body2-font-weight, 400);letter-spacing:var(--mdc-typography-body2-letter-spacing, 0.0178571429em);-webkit-text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-transform:var(--mdc-typography-body2-text-transform, none)}.mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-selected-focus-icon-color:#3f51b5;--mdc-radio-selected-hover-icon-color:#3f51b5;--mdc-radio-selected-icon-color:#3f51b5;--mdc-radio-selected-pressed-icon-color:#3f51b5;--mat-mdc-radio-ripple-color: #000;--mat-mdc-radio-checked-ripple-color: #3f51b5}.mat-mdc-radio-button.mat-primary .mdc-radio--disabled+label{color:rgba(0,0,0,.38)}.mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-selected-focus-icon-color:#ff4081;--mdc-radio-selected-hover-icon-color:#ff4081;--mdc-radio-selected-icon-color:#ff4081;--mdc-radio-selected-pressed-icon-color:#ff4081;--mat-mdc-radio-ripple-color: #000;--mat-mdc-radio-checked-ripple-color: #ff4081}.mat-mdc-radio-button.mat-accent .mdc-radio--disabled+label{color:rgba(0,0,0,.38)}.mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-selected-focus-icon-color:#f44336;--mdc-radio-selected-hover-icon-color:#f44336;--mdc-radio-selected-icon-color:#f44336;--mdc-radio-selected-pressed-icon-color:#f44336;--mat-mdc-radio-ripple-color: #000;--mat-mdc-radio-checked-ripple-color: #f44336}.mat-mdc-radio-button.mat-warn .mdc-radio--disabled+label{color:rgba(0,0,0,.38)}.mat-mdc-radio-button .mdc-radio{padding:calc((40px - 20px) / 2)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{top:calc(-1 * (40px - 20px) / 2);left:calc(-1 * (40px - 20px) / 2);width:40px;height:40px}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control{top:calc((40px - 40px) / 2);right:calc((40px - 40px) / 2);left:calc((40px - 40px) / 2);width:40px;height:40px}.mdc-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body2-font-size, 14px);line-height:var(--mdc-typography-body2-line-height, 20px);font-weight:var(--mdc-typography-body2-font-weight, 400);letter-spacing:var(--mdc-typography-body2-letter-spacing, 0.0178571429em);-webkit-text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-transform:var(--mdc-typography-body2-text-transform, none)}.mat-mdc-slider{--mdc-slider-label-container-color:black;--mdc-slider-label-label-text-color:white;--mdc-slider-disabled-handle-color:#000;--mdc-slider-disabled-active-track-color:#000;--mdc-slider-disabled-inactive-track-color:#000;--mdc-slider-with-tick-marks-disabled-container-color:#000;--mat-mdc-slider-value-indicator-opacity: 0.6}.mat-mdc-slider.mat-primary{--mdc-slider-handle-color:#3f51b5;--mdc-slider-focus-handle-color:#3f51b5;--mdc-slider-hover-handle-color:#3f51b5;--mdc-slider-active-track-color:#3f51b5;--mdc-slider-inactive-track-color:#3f51b5;--mdc-slider-with-tick-marks-active-container-color:#fff;--mdc-slider-with-tick-marks-inactive-container-color:#3f51b5;--mat-mdc-slider-ripple-color: #3f51b5;--mat-mdc-slider-hover-ripple-color: rgba(63, 81, 181, 0.05);--mat-mdc-slider-focus-ripple-color: rgba(63, 81, 181, 0.2)}.mat-mdc-slider.mat-accent{--mdc-slider-handle-color:#ff4081;--mdc-slider-focus-handle-color:#ff4081;--mdc-slider-hover-handle-color:#ff4081;--mdc-slider-active-track-color:#ff4081;--mdc-slider-inactive-track-color:#ff4081;--mdc-slider-with-tick-marks-active-container-color:#fff;--mdc-slider-with-tick-marks-inactive-container-color:#ff4081;--mat-mdc-slider-ripple-color: #ff4081;--mat-mdc-slider-hover-ripple-color: rgba(255, 64, 129, 0.05);--mat-mdc-slider-focus-ripple-color: rgba(255, 64, 129, 0.2)}.mat-mdc-slider.mat-warn{--mdc-slider-handle-color:#f44336;--mdc-slider-focus-handle-color:#f44336;--mdc-slider-hover-handle-color:#f44336;--mdc-slider-active-track-color:#f44336;--mdc-slider-inactive-track-color:#f44336;--mdc-slider-with-tick-marks-active-container-color:#fff;--mdc-slider-with-tick-marks-inactive-container-color:#f44336;--mat-mdc-slider-ripple-color: #f44336;--mat-mdc-slider-hover-ripple-color: rgba(244, 67, 54, 0.05);--mat-mdc-slider-focus-ripple-color: rgba(244, 67, 54, 0.2)}.mat-mdc-slider{--mdc-slider-label-label-text-font:Roboto, sans-serif;--mdc-slider-label-label-text-size:14px;--mdc-slider-label-label-text-line-height:22px;--mdc-slider-label-label-text-tracking:0.0071428571em;--mdc-slider-label-label-text-weight:500}.mdc-menu-surface{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);background-color:var(--mdc-theme-surface, #fff);color:var(--mdc-theme-on-surface, #000)}.mdc-list-item__primary-text{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mdc-list-item__secondary-text{color:var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54))}.mdc-list-item__overline-text{color:var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38))}.mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-trailing-icon .mdc-list-item__end{background-color:transparent}.mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38))}.mdc-list-item__end{color:var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38))}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:0.38}.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled .mdc-list-item__secondary-text{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled .mdc-list-item__overline-text{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--disabled.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mdc-theme-on-surface, #000)}.mdc-list-item--selected .mdc-list-item__primary-text,.mdc-list-item--activated .mdc-list-item__primary-text{color:var(--mdc-theme-primary, #3f51b5)}.mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-theme-primary, #3f51b5)}.mdc-deprecated-list-group__subheader{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mdc-list-divider::after{border-bottom-color:white}.mdc-list-divider{background-color:rgba(0, 0, 0, 0.12)}.mat-mdc-menu-item[disabled],.mat-mdc-menu-item[disabled] .mat-mdc-menu-submenu-icon,.mat-mdc-menu-item[disabled] .mat-icon-no-color{color:var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38))}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-submenu-icon{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mat-mdc-menu-item:hover:not([disabled]),.mat-mdc-menu-item.cdk-program-focused:not([disabled]),.mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.mat-mdc-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.mat-mdc-menu-content{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-subtitle1-font-size, 16px);line-height:var(--mdc-typography-subtitle1-line-height, 28px);font-weight:var(--mdc-typography-subtitle1-font-weight, 400);letter-spacing:var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);-webkit-text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-decoration:var(--mdc-typography-subtitle1-text-decoration, inherit);text-transform:var(--mdc-typography-subtitle1-text-transform, none);line-height:24px}.mat-mdc-menu-content,.mat-mdc-menu-content .mat-mdc-menu-item .mdc-list-item__primary-text{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body1-font-size, 16px);line-height:var(--mdc-typography-body1-line-height, 24px);font-weight:var(--mdc-typography-body1-font-weight, 400);letter-spacing:var(--mdc-typography-body1-letter-spacing, 0.03125em);-webkit-text-decoration:var(--mdc-typography-body1-text-decoration, inherit);text-decoration:var(--mdc-typography-body1-text-decoration, inherit);text-transform:var(--mdc-typography-body1-text-transform, none)}.mat-mdc-list-base{--mdc-list-list-item-label-text-color:rgba(0, 0, 0, 0.87);--mdc-list-list-item-supporting-text-color:rgba(0, 0, 0, 0.54);--mdc-list-list-item-leading-icon-color:rgba(0, 0, 0, 0.38);--mdc-list-list-item-trailing-supporting-text-color:rgba(0, 0, 0, 0.38);--mdc-list-list-item-trailing-icon-color:rgba(0, 0, 0, 0.38);--mdc-list-list-item-selected-trailing-icon-color:rgba(0, 0, 0, 0.38);--mdc-list-list-item-disabled-label-text-color:black;--mdc-list-list-item-disabled-leading-icon-color:black;--mdc-list-list-item-disabled-trailing-icon-color:black;--mdc-list-list-item-hover-label-text-color:rgba(0, 0, 0, 0.87);--mdc-list-list-item-hover-leading-icon-color:rgba(0, 0, 0, 0.38);--mdc-list-list-item-hover-trailing-icon-color:rgba(0, 0, 0, 0.38);--mdc-list-list-item-focus-label-text-color:rgba(0, 0, 0, 0.87);--mdc-list-list-item-hover-state-layer-color:black;--mdc-list-list-item-hover-state-layer-opacity:0.04;--mdc-list-list-item-focus-state-layer-color:black;--mdc-list-list-item-focus-state-layer-opacity:0.12}.mat-mdc-list-option .mdc-list-item__start,.mat-mdc-list-option .mdc-list-item__end{--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#3f51b5;--mdc-checkbox-selected-hover-icon-color:#3f51b5;--mdc-checkbox-selected-icon-color:#3f51b5;--mdc-checkbox-selected-pressed-icon-color:#3f51b5;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-disabled-selected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54)}.mat-mdc-list-option .mdc-list-item__start,.mat-mdc-list-option .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-selected-focus-icon-color:#3f51b5;--mdc-radio-selected-hover-icon-color:#3f51b5;--mdc-radio-selected-icon-color:#3f51b5;--mdc-radio-selected-pressed-icon-color:#3f51b5;--mat-mdc-radio-ripple-color: #000;--mat-mdc-radio-checked-ripple-color: #3f51b5}.mat-mdc-list-option .mdc-list-item__start .mdc-radio--disabled+label,.mat-mdc-list-option .mdc-list-item__end .mdc-radio--disabled+label{color:rgba(0,0,0,.38)}.mat-mdc-list-option.mat-accent .mdc-list-item__start,.mat-mdc-list-option.mat-accent .mdc-list-item__end{--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#ff4081;--mdc-checkbox-selected-hover-icon-color:#ff4081;--mdc-checkbox-selected-icon-color:#ff4081;--mdc-checkbox-selected-pressed-icon-color:#ff4081;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-disabled-selected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54)}.mat-mdc-list-option.mat-accent .mdc-list-item__start,.mat-mdc-list-option.mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-selected-focus-icon-color:#ff4081;--mdc-radio-selected-hover-icon-color:#ff4081;--mdc-radio-selected-icon-color:#ff4081;--mdc-radio-selected-pressed-icon-color:#ff4081;--mat-mdc-radio-ripple-color: #000;--mat-mdc-radio-checked-ripple-color: #ff4081}.mat-mdc-list-option.mat-accent .mdc-list-item__start .mdc-radio--disabled+label,.mat-mdc-list-option.mat-accent .mdc-list-item__end .mdc-radio--disabled+label{color:rgba(0,0,0,.38)}.mat-mdc-list-option.mat-warn .mdc-list-item__start,.mat-mdc-list-option.mat-warn .mdc-list-item__end{--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#f44336;--mdc-checkbox-selected-hover-icon-color:#f44336;--mdc-checkbox-selected-icon-color:#f44336;--mdc-checkbox-selected-pressed-icon-color:#f44336;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-disabled-selected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54)}.mat-mdc-list-option.mat-warn .mdc-list-item__start,.mat-mdc-list-option.mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color:#000;--mdc-radio-disabled-unselected-icon-color:#000;--mdc-radio-unselected-focus-icon-color:#212121;--mdc-radio-unselected-hover-icon-color:#212121;--mdc-radio-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54);--mdc-radio-selected-focus-icon-color:#f44336;--mdc-radio-selected-hover-icon-color:#f44336;--mdc-radio-selected-icon-color:#f44336;--mdc-radio-selected-pressed-icon-color:#f44336;--mat-mdc-radio-ripple-color: #000;--mat-mdc-radio-checked-ripple-color: #f44336}.mat-mdc-list-option.mat-warn .mdc-list-item__start .mdc-radio--disabled+label,.mat-mdc-list-option.mat-warn .mdc-list-item__end .mdc-radio--disabled+label{color:rgba(0,0,0,.38)}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text{color:#3f51b5}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#3f51b5}.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.mat-mdc-list-base{--mdc-list-list-item-one-line-container-height:48px;--mdc-list-list-item-two-line-container-height:64px;--mdc-list-list-item-three-line-container-height:88px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}.mat-mdc-list-base{--mdc-list-list-item-label-text-font:Roboto, sans-serif;--mdc-list-list-item-label-text-line-height:24px;--mdc-list-list-item-label-text-size:16px;--mdc-list-list-item-label-text-tracking:0.03125em;--mdc-list-list-item-label-text-weight:400;--mdc-list-list-item-supporting-text-font:Roboto, sans-serif;--mdc-list-list-item-supporting-text-line-height:20px;--mdc-list-list-item-supporting-text-size:14px;--mdc-list-list-item-supporting-text-tracking:0.0178571429em;--mdc-list-list-item-supporting-text-weight:400;--mdc-list-list-item-trailing-supporting-text-font:Roboto, sans-serif;--mdc-list-list-item-trailing-supporting-text-line-height:20px;--mdc-list-list-item-trailing-supporting-text-size:12px;--mdc-list-list-item-trailing-supporting-text-tracking:0.0333333333em;--mdc-list-list-item-trailing-supporting-text-weight:400}.mdc-list-group__subheader{font-size:16px;font-weight:400;line-height:28px;font-family:Roboto, sans-serif;letter-spacing:.009375em}.mat-mdc-paginator{background:#fff;color:rgba(0,0,0,.87)}.mat-mdc-paginator-icon{fill:rgba(0,0,0,.54)}.mat-mdc-paginator-decrement,.mat-mdc-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.mat-mdc-paginator-first,.mat-mdc-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.mat-mdc-icon-button[disabled] .mat-mdc-paginator-decrement,.mat-mdc-icon-button[disabled] .mat-mdc-paginator-increment,.mat-mdc-icon-button[disabled] .mat-mdc-paginator-first,.mat-mdc-icon-button[disabled] .mat-mdc-paginator-last{border-color:rgba(0,0,0,.12)}.mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon{fill:rgba(0,0,0,.12)}.mat-mdc-paginator .mat-mdc-form-field-infix{min-height:40px}.mat-mdc-paginator .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:20px}.mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{--mat-mdc-form-field-label-transform: translateY( -26.75px) scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));transform:var(--mat-mdc-form-field-label-transform)}.mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix{padding-top:8px;padding-bottom:8px}.mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix{padding-top:8px;padding-bottom:8px}.mat-mdc-paginator .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix{padding-top:8px;padding-bottom:8px}.mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label{display:none}.mat-mdc-paginator-container{min-height:56px}.mat-mdc-paginator{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-caption-font-size, 12px);line-height:var(--mdc-typography-caption-line-height, 20px);font-weight:var(--mdc-typography-caption-font-weight, 400);letter-spacing:var(--mdc-typography-caption-letter-spacing, 0.0333333333em);-webkit-text-decoration:var(--mdc-typography-caption-text-decoration, inherit);text-decoration:var(--mdc-typography-caption-text-decoration, inherit);text-transform:var(--mdc-typography-caption-text-transform, none)}.mat-mdc-paginator .mat-mdc-select-value{font-size:12px}.mat-mdc-tab,.mat-mdc-tab-link{background-color:rgba(0,0,0,0)}.mat-mdc-tab .mdc-tab__text-label,.mat-mdc-tab-link .mdc-tab__text-label{color:rgba(0, 0, 0, 0.6)}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab.mat-mdc-tab-disabled .mat-ripple-element,.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab-link.mat-mdc-tab-disabled .mat-ripple-element{background-color:rgba(0,0,0,.38)}.mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label{color:#3f51b5}.mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color, #3f51b5)}.mdc-tab__ripple::before,.mat-mdc-tab .mat-ripple-element,.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-link .mat-ripple-element{background-color:#3f51b5}.mat-mdc-tab-group.mat-accent .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.mat-mdc-tab-group.mat-accent .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.mat-mdc-tab-nav-bar.mat-accent .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.mat-mdc-tab-nav-bar.mat-accent .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label{color:#ff4081}.mat-mdc-tab-group.mat-accent .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.mat-mdc-tab-group.mat-accent .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.mat-mdc-tab-nav-bar.mat-accent .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.mat-mdc-tab-nav-bar.mat-accent .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color, #ff4081)}.mat-mdc-tab-group.mat-accent .mdc-tab__ripple::before,.mat-mdc-tab-group.mat-accent .mat-mdc-tab .mat-ripple-element,.mat-mdc-tab-group.mat-accent .mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-group.mat-accent .mat-mdc-tab-link .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-accent .mdc-tab__ripple::before,.mat-mdc-tab-nav-bar.mat-accent .mat-mdc-tab .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-accent .mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-accent .mat-mdc-tab-link .mat-ripple-element{background-color:#ff4081}.mat-mdc-tab-group.mat-warn .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.mat-mdc-tab-group.mat-warn .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.mat-mdc-tab-nav-bar.mat-warn .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.mat-mdc-tab-nav-bar.mat-warn .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label{color:#f44336}.mat-mdc-tab-group.mat-warn .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.mat-mdc-tab-group.mat-warn .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.mat-mdc-tab-nav-bar.mat-warn .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.mat-mdc-tab-nav-bar.mat-warn .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color, #f44336)}.mat-mdc-tab-group.mat-warn .mdc-tab__ripple::before,.mat-mdc-tab-group.mat-warn .mat-mdc-tab .mat-ripple-element,.mat-mdc-tab-group.mat-warn .mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-group.mat-warn .mat-mdc-tab-link .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-warn .mdc-tab__ripple::before,.mat-mdc-tab-nav-bar.mat-warn .mat-mdc-tab .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-warn .mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-warn .mat-mdc-tab-link .mat-ripple-element{background-color:#f44336}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-mdc-tab-header-with-background-background-color: #3f51b5;--mat-mdc-tab-header-with-background-foreground-color: #fff}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-mdc-tab-header-with-background-background-color: #ff4081;--mat-mdc-tab-header-with-background-foreground-color: #fff}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-mdc-tab-header-with-background-background-color: #f44336;--mat-mdc-tab-header-with-background-foreground-color: #fff}.mat-mdc-tab-header-pagination-chevron{border-color:var(--mdc-theme-on-surface, #000)}.mat-mdc-tab-header .mdc-tab{height:48px}.mdc-tab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-button-font-size, 14px);line-height:var(--mdc-typography-button-line-height, 36px);font-weight:var(--mdc-typography-button-font-weight, 500);letter-spacing:var(--mdc-typography-button-letter-spacing, 0.0892857143em);-webkit-text-decoration:var(--mdc-typography-button-text-decoration, none);text-decoration:var(--mdc-typography-button-text-decoration, none);text-transform:var(--mdc-typography-button-text-transform, none)}.mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))}.mat-mdc-checkbox .mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-mdc-checkbox .mdc-checkbox__ripple{background:#000}.mat-mdc-checkbox.mat-primary{--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#3f51b5;--mdc-checkbox-selected-hover-icon-color:#3f51b5;--mdc-checkbox-selected-icon-color:#3f51b5;--mdc-checkbox-selected-pressed-icon-color:#3f51b5;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-disabled-selected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54)}.mat-mdc-checkbox.mat-primary .mdc-checkbox--selected~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:rgba(63,81,181,.1)}.mat-mdc-checkbox.mat-primary .mdc-checkbox--selected~.mdc-checkbox__ripple{background:#3f51b5}.mat-mdc-checkbox.mat-accent{--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#ff4081;--mdc-checkbox-selected-hover-icon-color:#ff4081;--mdc-checkbox-selected-icon-color:#ff4081;--mdc-checkbox-selected-pressed-icon-color:#ff4081;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-disabled-selected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54)}.mat-mdc-checkbox.mat-accent .mdc-checkbox--selected~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:rgba(255,64,129,.1)}.mat-mdc-checkbox.mat-accent .mdc-checkbox--selected~.mdc-checkbox__ripple{background:#ff4081}.mat-mdc-checkbox.mat-warn{--mdc-checkbox-selected-checkmark-color:#fff;--mdc-checkbox-selected-focus-icon-color:#f44336;--mdc-checkbox-selected-hover-icon-color:#f44336;--mdc-checkbox-selected-icon-color:#f44336;--mdc-checkbox-selected-pressed-icon-color:#f44336;--mdc-checkbox-unselected-focus-icon-color:#212121;--mdc-checkbox-unselected-hover-icon-color:#212121;--mdc-checkbox-disabled-selected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-disabled-unselected-icon-color:rgba(0, 0, 0, 0.38);--mdc-checkbox-unselected-icon-color:rgba(0, 0, 0, 0.54);--mdc-checkbox-unselected-pressed-icon-color:rgba(0, 0, 0, 0.54)}.mat-mdc-checkbox.mat-warn .mdc-checkbox--selected~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:rgba(244,67,54,.1)}.mat-mdc-checkbox.mat-warn .mdc-checkbox--selected~.mdc-checkbox__ripple{background:#f44336}.mat-mdc-checkbox-disabled label{color:rgba(0,0,0,.38)}.mat-mdc-checkbox .mdc-checkbox{padding:calc((var(--mdc-checkbox-ripple-size, 40px) - 18px) / 2);margin:calc((var(--mdc-checkbox-touch-target-size, 40px) - 40px) / 2)}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__background{top:calc((var(--mdc-checkbox-ripple-size, 40px) - 18px) / 2);left:calc((var(--mdc-checkbox-ripple-size, 40px) - 18px) / 2)}.mat-mdc-checkbox .mdc-checkbox .mdc-checkbox__native-control{top:calc((40px - var(--mdc-checkbox-touch-target-size, 40px)) / 2);right:calc((40px - var(--mdc-checkbox-touch-target-size, 40px)) / 2);left:calc((40px - var(--mdc-checkbox-touch-target-size, 40px)) / 2);width:var(--mdc-checkbox-touch-target-size, 40px);height:var(--mdc-checkbox-touch-target-size, 40px)}@media all and (-ms-high-contrast: none){.mdc-checkbox .mdc-checkbox__focus-ring{display:none}}.mdc-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body2-font-size, 14px);line-height:var(--mdc-typography-body2-line-height, 20px);font-weight:var(--mdc-typography-body2-font-weight, 400);letter-spacing:var(--mdc-typography-body2-letter-spacing, 0.0178571429em);-webkit-text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-transform:var(--mdc-typography-body2-text-transform, none)}.mat-mdc-button.mat-unthemed{--mdc-text-button-label-text-color:#000}.mat-mdc-button.mat-primary{--mdc-text-button-label-text-color:#3f51b5}.mat-mdc-button.mat-accent{--mdc-text-button-label-text-color:#ff4081}.mat-mdc-button.mat-warn{--mdc-text-button-label-text-color:#f44336}.mat-mdc-button[disabled][disabled]{--mdc-text-button-disabled-label-text-color:rgba(0, 0, 0, 0.38);--mdc-text-button-label-text-color:rgba(0, 0, 0, 0.38)}.mat-mdc-unelevated-button.mat-unthemed{--mdc-filled-button-container-color:#fff;--mdc-filled-button-label-text-color:#000}.mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color:#3f51b5;--mdc-filled-button-label-text-color:#fff}.mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color:#ff4081;--mdc-filled-button-label-text-color:#fff}.mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color:#f44336;--mdc-filled-button-label-text-color:#fff}.mat-mdc-unelevated-button[disabled][disabled]{--mdc-filled-button-disabled-container-color:rgba(0, 0, 0, 0.12);--mdc-filled-button-disabled-label-text-color:rgba(0, 0, 0, 0.38);--mdc-filled-button-container-color:rgba(0, 0, 0, 0.12);--mdc-filled-button-label-text-color:rgba(0, 0, 0, 0.38)}.mat-mdc-raised-button.mat-unthemed{--mdc-protected-button-container-color:#fff;--mdc-protected-button-label-text-color:#000}.mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color:#3f51b5;--mdc-protected-button-label-text-color:#fff}.mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color:#ff4081;--mdc-protected-button-label-text-color:#fff}.mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color:#f44336;--mdc-protected-button-label-text-color:#fff}.mat-mdc-raised-button[disabled][disabled]{--mdc-protected-button-disabled-container-color:rgba(0, 0, 0, 0.12);--mdc-protected-button-disabled-label-text-color:rgba(0, 0, 0, 0.38);--mdc-protected-button-container-color:rgba(0, 0, 0, 0.12);--mdc-protected-button-label-text-color:rgba(0, 0, 0, 0.38);--mdc-protected-button-container-elevation:0}.mat-mdc-outlined-button{--mdc-outlined-button-outline-color:rgba(0, 0, 0, 0.12)}.mat-mdc-outlined-button.mat-unthemed{--mdc-outlined-button-label-text-color:#000}.mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color:#3f51b5}.mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color:#ff4081}.mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color:#f44336}.mat-mdc-outlined-button[disabled][disabled]{--mdc-outlined-button-label-text-color:rgba(0, 0, 0, 0.38);--mdc-outlined-button-disabled-label-text-color:rgba(0, 0, 0, 0.38);--mdc-outlined-button-outline-color:rgba(0, 0, 0, 0.12);--mdc-outlined-button-disabled-outline-color:rgba(0, 0, 0, 0.12)}.mat-mdc-button,.mat-mdc-outlined-button{--mat-mdc-button-persistent-ripple-color: #000;--mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1)}.mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before{opacity:.04}.mat-mdc-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:.12}.mat-mdc-button:active .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before{opacity:.12}.mat-mdc-button.mat-primary,.mat-mdc-outlined-button.mat-primary{--mat-mdc-button-persistent-ripple-color: #3f51b5;--mat-mdc-button-ripple-color: rgba(63, 81, 181, 0.1)}.mat-mdc-button.mat-accent,.mat-mdc-outlined-button.mat-accent{--mat-mdc-button-persistent-ripple-color: #ff4081;--mat-mdc-button-ripple-color: rgba(255, 64, 129, 0.1)}.mat-mdc-button.mat-warn,.mat-mdc-outlined-button.mat-warn{--mat-mdc-button-persistent-ripple-color: #f44336;--mat-mdc-button-ripple-color: rgba(244, 67, 54, 0.1)}.mat-mdc-raised-button,.mat-mdc-unelevated-button{--mat-mdc-button-persistent-ripple-color: #000;--mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1)}.mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before{opacity:.04}.mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:.12}.mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before{opacity:.12}.mat-mdc-raised-button.mat-primary,.mat-mdc-unelevated-button.mat-primary{--mat-mdc-button-persistent-ripple-color: #fff;--mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1)}.mat-mdc-raised-button.mat-accent,.mat-mdc-unelevated-button.mat-accent{--mat-mdc-button-persistent-ripple-color: #fff;--mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1)}.mat-mdc-raised-button.mat-warn,.mat-mdc-unelevated-button.mat-warn{--mat-mdc-button-persistent-ripple-color: #fff;--mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1)}.mat-mdc-button.mat-mdc-button-base,.mat-mdc-raised-button.mat-mdc-button-base,.mat-mdc-unelevated-button.mat-mdc-button-base,.mat-mdc-outlined-button.mat-mdc-button-base{height:36px}.mdc-button{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-button-font-size, 14px);line-height:var(--mdc-typography-button-line-height, 36px);font-weight:var(--mdc-typography-button-font-weight, 500);letter-spacing:var(--mdc-typography-button-letter-spacing, 0.0892857143em);-webkit-text-decoration:var(--mdc-typography-button-text-decoration, none);text-decoration:var(--mdc-typography-button-text-decoration, none);text-transform:var(--mdc-typography-button-text-transform, none)}.mat-mdc-icon-button{--mat-mdc-button-persistent-ripple-color: #000;--mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1)}.mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before{opacity:.04}.mat-mdc-icon-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:.12}.mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before{opacity:.12}.mat-mdc-icon-button.mat-primary{--mat-mdc-button-persistent-ripple-color: #3f51b5;--mat-mdc-button-ripple-color: rgba(63, 81, 181, 0.1)}.mat-mdc-icon-button.mat-accent{--mat-mdc-button-persistent-ripple-color: #ff4081;--mat-mdc-button-ripple-color: rgba(255, 64, 129, 0.1)}.mat-mdc-icon-button.mat-warn{--mat-mdc-button-persistent-ripple-color: #f44336;--mat-mdc-button-ripple-color: rgba(244, 67, 54, 0.1)}.mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color:#3f51b5}.mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color:#ff4081}.mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color:#f44336}.mat-mdc-icon-button[disabled][disabled]{--mdc-icon-button-icon-color:rgba(0, 0, 0, 0.38);--mdc-icon-button-disabled-icon-color:rgba(0, 0, 0, 0.38)}.mat-mdc-icon-button.mat-mdc-button-base{width:48px;height:48px;padding:12px}.mat-mdc-icon-button.mat-mdc-button-base .mdc-icon-button__focus-ring{max-height:48px;max-width:48px}.mat-mdc-icon-button.mat-mdc-button-base.mdc-icon-button--reduced-size .mdc-icon-button__ripple{width:40px;height:40px;margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mat-mdc-icon-button.mat-mdc-button-base.mdc-icon-button--reduced-size .mdc-icon-button__focus-ring{max-height:40px;max-width:40px}.mat-mdc-icon-button.mat-mdc-button-base .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mat-mdc-fab,.mat-mdc-mini-fab{--mat-mdc-button-persistent-ripple-color: #000;--mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1)}.mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab:hover .mat-mdc-button-persistent-ripple::before{opacity:.04}.mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:.12}.mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before{opacity:.12}.mat-mdc-fab.mat-primary,.mat-mdc-mini-fab.mat-primary{--mat-mdc-button-persistent-ripple-color: #fff;--mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1)}.mat-mdc-fab.mat-accent,.mat-mdc-mini-fab.mat-accent{--mat-mdc-button-persistent-ripple-color: #fff;--mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1)}.mat-mdc-fab.mat-warn,.mat-mdc-mini-fab.mat-warn{--mat-mdc-button-persistent-ripple-color: #fff;--mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1)}.mat-mdc-fab.mat-unthemed,.mat-mdc-mini-fab.mat-unthemed{--mdc-fab-container-color:#fff;--mdc-fab-icon-color:#000;--mat-mdc-fab-color: #000}.mat-mdc-fab.mat-primary,.mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color:#3f51b5;--mdc-fab-icon-color:#fff;--mat-mdc-fab-color: #fff}.mat-mdc-fab.mat-accent,.mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color:#ff4081;--mdc-fab-icon-color:#fff;--mat-mdc-fab-color: #fff}.mat-mdc-fab.mat-warn,.mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color:#f44336;--mdc-fab-icon-color:#fff;--mat-mdc-fab-color: #fff}.mat-mdc-fab[disabled][disabled],.mat-mdc-mini-fab[disabled][disabled]{--mdc-fab-container-color:rgba(0, 0, 0, 0.12);--mdc-fab-icon-color:rgba(0, 0, 0, 0.38);--mat-mdc-fab-color: rgba(0, 0, 0, 0.38)}.mdc-fab--extended{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-button-font-size, 14px);line-height:var(--mdc-typography-button-line-height, 36px);font-weight:var(--mdc-typography-button-font-weight, 500);letter-spacing:var(--mdc-typography-button-letter-spacing, 0.0892857143em);-webkit-text-decoration:var(--mdc-typography-button-text-decoration, none);text-decoration:var(--mdc-typography-button-text-decoration, none);text-transform:var(--mdc-typography-button-text-transform, none)}.mat-mdc-snack-bar-container{--mat-mdc-snack-bar-button-color: #ff4081;--mdc-snackbar-container-color:#333333;--mdc-snackbar-supporting-text-color:rgba(255, 255, 255, 0.87)}.mat-mdc-snack-bar-container{--mdc-snackbar-supporting-text-font:Roboto, sans-serif;--mdc-snackbar-supporting-text-line-height:20px;--mdc-snackbar-supporting-text-size:14px;--mdc-snackbar-supporting-text-weight:400}.mdc-data-table{background-color:var(--mdc-theme-surface, #fff);border-color:rgba(0, 0, 0, 0.12)}.mdc-data-table__row{background-color:inherit}.mdc-data-table__header-cell{background-color:var(--mdc-theme-surface, #fff)}.mdc-data-table__row--selected{background-color:rgba(63, 81, 181, 0.04)}.mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading,.mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch,.mdc-data-table__pagination-rows-per-page-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing{border-color:rgba(0, 0, 0, 0.12)}.mdc-data-table__cell,.mdc-data-table__header-cell{border-bottom-color:rgba(0, 0, 0, 0.12)}.mdc-data-table__pagination{border-top-color:rgba(0, 0, 0, 0.12)}.mdc-data-table__row:not(.mdc-data-table__row--selected):hover{background-color:rgba(0, 0, 0, 0.04)}.mdc-data-table__header-cell{color:rgba(0, 0, 0, 0.87)}.mdc-data-table__pagination-total,.mdc-data-table__pagination-rows-per-page-label,.mdc-data-table__cell{color:rgba(0, 0, 0, 0.87)}.mat-mdc-table{background:#fff}.mat-mdc-table .mdc-data-table__row{height:52px}.mat-mdc-table .mdc-data-table__pagination{min-height:52px}.mat-mdc-table .mdc-data-table__header-row{height:56px}.mdc-data-table__content{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body2-font-size, 14px);line-height:var(--mdc-typography-body2-line-height, 20px);font-weight:var(--mdc-typography-body2-font-weight, 400);letter-spacing:var(--mdc-typography-body2-letter-spacing, 0.0178571429em);-webkit-text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-transform:var(--mdc-typography-body2-text-transform, none)}.mdc-data-table__cell{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-body2-font-size, 14px);line-height:var(--mdc-typography-body2-line-height, 20px);font-weight:var(--mdc-typography-body2-font-weight, 400);letter-spacing:var(--mdc-typography-body2-letter-spacing, 0.0178571429em);-webkit-text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-decoration:var(--mdc-typography-body2-text-decoration, inherit);text-transform:var(--mdc-typography-body2-text-transform, none)}.mdc-data-table__header-cell{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-subtitle2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:var(--mdc-typography-subtitle2-font-size, 14px);line-height:var(--mdc-typography-subtitle2-line-height, 22px);font-weight:var(--mdc-typography-subtitle2-font-weight, 500);letter-spacing:var(--mdc-typography-subtitle2-letter-spacing, 0.0071428571em);-webkit-text-decoration:var(--mdc-typography-subtitle2-text-decoration, inherit);text-decoration:var(--mdc-typography-subtitle2-text-decoration, inherit);text-transform:var(--mdc-typography-subtitle2-text-transform, none)}.mat-mdc-progress-spinner{--mdc-circular-progress-active-indicator-color:#3f51b5}.mat-mdc-progress-spinner.mat-accent{--mdc-circular-progress-active-indicator-color:#ff4081}.mat-mdc-progress-spinner.mat-warn{--mdc-circular-progress-active-indicator-color:#f44336}.mat-badge{position:relative}.mat-badge.mat-badge{overflow:visible}.mat-badge-hidden .mat-badge-content{display:none}.mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform 200ms ease-in-out;transform:scale(0.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.mat-badge-content{color:#fff;background:#3f51b5}.cdk-high-contrast-active .mat-badge-content{outline:solid 1px;border-radius:0}.mat-badge-accent .mat-badge-content{background:#ff4081;color:#fff}.mat-badge-warn .mat-badge-content{color:#fff;background:#f44336}.mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:rgba(0,0,0,.38)}.mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto, sans-serif}.mat-badge-small .mat-badge-content{font-size:9px}.mat-badge-large .mat-badge-content{font-size:24px}.mat-bottom-sheet-container{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);background:#fff;color:rgba(0,0,0,.87)}.mat-bottom-sheet-container{font-size:14px;font-weight:400;line-height:20px;font-family:Roboto, sans-serif;letter-spacing:.0178571429em}.mat-button-toggle-standalone:not([class*=mat-elevation-z]),.mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.mat-button-toggle{color:rgba(0,0,0,.38)}.mat-button-toggle .mat-button-toggle-focus-overlay{background-color:rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard{color:rgba(0,0,0,.87);background:#fff}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.mat-button-toggle-checked{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:rgba(0,0,0,.87)}.mat-button-toggle-disabled{color:rgba(0,0,0,.26);background-color:#eee}.mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#fff}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}.mat-button-toggle{font-family:Roboto, sans-serif}.mat-calendar-arrow{fill:rgba(0,0,0,.54)}.mat-datepicker-toggle,.mat-datepicker-content .mat-calendar-next-button,.mat-datepicker-content .mat-calendar-previous-button{color:rgba(0,0,0,.54)}.mat-calendar-table-header-divider::after{background:rgba(0,0,0,.12)}.mat-calendar-table-header,.mat-calendar-body-label{color:rgba(0,0,0,.54)}.mat-calendar-body-cell-content,.mat-date-range-input-separator{color:rgba(0,0,0,.87);border-color:rgba(0,0,0,0)}.mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:rgba(0,0,0,.38)}.mat-form-field-disabled .mat-date-range-input-separator{color:rgba(0,0,0,.38)}.mat-calendar-body-in-preview{color:rgba(0,0,0,.24)}.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:rgba(0,0,0,.38)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:rgba(0,0,0,.18)}.mat-calendar-body-in-range::before{background:rgba(63,81,181,.2)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(63, 81, 181, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(63, 81, 181, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.mat-calendar-body-selected{background-color:#3f51b5;color:#fff}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(63,81,181,.4)}.mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(63,81,181,.3)}@media(hover: hover){.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(63,81,181,.3)}}.mat-datepicker-content{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);background-color:#fff;color:rgba(0,0,0,.87)}.mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before{background:rgba(255,64,129,.2)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(255, 64, 129, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(255, 64, 129, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#ff4081;color:#fff}.mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(255,64,129,.4)}.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(255,64,129,.3)}@media(hover: hover){.mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(255,64,129,.3)}}.mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before{background:rgba(244,67,54,.2)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#f44336;color:#fff}.mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(244,67,54,.4)}.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(244,67,54,.3)}@media(hover: hover){.mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(244,67,54,.3)}}.mat-datepicker-content-touch{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12)}.mat-datepicker-toggle-active{color:#3f51b5}.mat-datepicker-toggle-active.mat-accent{color:#ff4081}.mat-datepicker-toggle-active.mat-warn{color:#f44336}.mat-date-range-input-inner[disabled]{color:rgba(0,0,0,.38)}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base{width:40px;height:40px;padding:8px}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mdc-icon-button__focus-ring{max-height:40px;max-width:40px}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base.mdc-icon-button--reduced-size .mdc-icon-button__ripple{width:40px;height:40px;margin-top:0px;margin-bottom:0px;margin-right:0px;margin-left:0px}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base.mdc-icon-button--reduced-size .mdc-icon-button__focus-ring{max-height:40px;max-width:40px}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mdc-icon-button__touch{position:absolute;top:50%;height:40px;left:50%;width:40px;transform:translate(-50%, -50%)}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target{display:none}.mat-calendar{font-family:Roboto, sans-serif}.mat-calendar-body{font-size:13px}.mat-calendar-body-label,.mat-calendar-period-button{font-size:14px;font-weight:500}.mat-calendar-table-header th{font-size:11px;font-weight:400}.mat-divider{border-top-color:rgba(0,0,0,.12)}.mat-divider-vertical{border-right-color:rgba(0,0,0,.12)}.mat-expansion-panel{background:#fff;color:rgba(0,0,0,.87)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-action-row{border-top-color:rgba(0,0,0,.12)}.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media(hover: none){.mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#fff}}.mat-expansion-panel-header-title{color:rgba(0,0,0,.87)}.mat-expansion-panel-header-description,.mat-expansion-indicator::after{color:rgba(0,0,0,.54)}.mat-expansion-panel-header[aria-disabled=true]{color:rgba(0,0,0,.26)}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}.mat-expansion-panel-header{font-family:Roboto, sans-serif;font-size:14px;font-weight:500}.mat-expansion-panel-content{font-size:14px;font-weight:400;line-height:20px;font-family:Roboto, sans-serif;letter-spacing:.0178571429em}.mat-grid-tile-header,.mat-grid-tile-footer{font-size:14px}.mat-grid-tile-header .mat-line,.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2),.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}.mat-icon.mat-primary{color:#3f51b5}.mat-icon.mat-accent{color:#ff4081}.mat-icon.mat-warn{color:#f44336}.mat-drawer-container{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-drawer{background-color:#fff;color:rgba(0,0,0,.87)}.mat-drawer.mat-drawer-push{background-color:#fff}.mat-drawer:not(.mat-drawer-side){box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}.mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.mat-drawer-side.mat-drawer-end{border-left:solid 1px rgba(0,0,0,.12);border-right:none}[dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.mat-drawer-backdrop.mat-drawer-shown{background-color:rgba(0,0,0,.6)}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused,.mat-step-header:hover:not([aria-disabled]),.mat-step-header:hover[aria-disabled=false]{background-color:rgba(0,0,0,.04)}.mat-step-header:hover[aria-disabled=true]{cursor:default}@media(hover: none){.mat-step-header:hover{background:none}}.mat-step-header .mat-step-label,.mat-step-header .mat-step-optional{color:rgba(0,0,0,.54)}.mat-step-header .mat-step-icon{background-color:rgba(0,0,0,.54);color:#fff}.mat-step-header .mat-step-icon-selected,.mat-step-header .mat-step-icon-state-done,.mat-step-header .mat-step-icon-state-edit{background-color:#3f51b5;color:#fff}.mat-step-header.mat-accent .mat-step-icon{color:#fff}.mat-step-header.mat-accent .mat-step-icon-selected,.mat-step-header.mat-accent .mat-step-icon-state-done,.mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#ff4081;color:#fff}.mat-step-header.mat-warn .mat-step-icon{color:#fff}.mat-step-header.mat-warn .mat-step-icon-selected,.mat-step-header.mat-warn .mat-step-icon-state-done,.mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#f44336;color:#fff}.mat-step-header .mat-step-icon-state-error{background-color:rgba(0,0,0,0);color:#f44336}.mat-step-header .mat-step-label.mat-step-label-active{color:rgba(0,0,0,.87)}.mat-step-header .mat-step-label.mat-step-label-error{color:#f44336}.mat-stepper-horizontal,.mat-stepper-vertical{background-color:#fff}.mat-stepper-vertical-line::before{border-left-color:rgba(0,0,0,.12)}.mat-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after,.mat-stepper-horizontal-line{border-top-color:rgba(0,0,0,.12)}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px 24px}.mat-stepper-vertical-line::before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}.mat-stepper-vertical,.mat-stepper-horizontal{font-family:Roboto, sans-serif}.mat-step-label{font-size:14px;font-weight:400}.mat-step-sub-label-error{font-weight:normal}.mat-step-label-error{font-size:16px}.mat-step-label-selected{font-size:16px;font-weight:400}.mat-sort-header-arrow{color:#757575}.mat-toolbar{background:#f5f5f5;color:rgba(0,0,0,.87)}.mat-toolbar.mat-primary{background:#3f51b5;color:#fff}.mat-toolbar.mat-accent{background:#ff4081;color:#fff}.mat-toolbar.mat-warn{background:#f44336;color:#fff}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font-size:20px;font-weight:500;line-height:32px;font-family:Roboto, sans-serif;letter-spacing:.0125em;margin:0}.mat-tree{background:#fff}.mat-tree-node,.mat-nested-tree-node{color:rgba(0,0,0,.87)}.mat-tree-node{min-height:48px}.mat-tree{font-family:Roboto, sans-serif}.mat-tree-node,.mat-nested-tree-node{font-weight:400;font-size:14px}.mat-h1,.mat-headline-5,.mat-typography .mat-h1,.mat-typography .mat-headline-5,.mat-typography h1{font-size:24px;font-weight:400;line-height:32px;font-family:Roboto, sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h2,.mat-headline-6,.mat-typography .mat-h2,.mat-typography .mat-headline-6,.mat-typography h2{font-size:20px;font-weight:500;line-height:32px;font-family:Roboto, sans-serif;letter-spacing:.0125em;margin:0 0 16px}.mat-h3,.mat-subtitle-1,.mat-typography .mat-h3,.mat-typography .mat-subtitle-1,.mat-typography h3{font-size:16px;font-weight:400;line-height:28px;font-family:Roboto, sans-serif;letter-spacing:.009375em;margin:0 0 16px}.mat-h4,.mat-body-1,.mat-typography .mat-h4,.mat-typography .mat-body-1,.mat-typography h4{font-size:16px;font-weight:400;line-height:24px;font-family:Roboto, sans-serif;letter-spacing:.03125em;margin:0 0 16px}.mat-h5,.mat-typography .mat-h5,.mat-typography h5{font:400 calc(14px * 0.83)/20px Roboto, sans-serif;margin:0 0 12px}.mat-h6,.mat-typography .mat-h6,.mat-typography h6{font:400 calc(14px * 0.67)/20px Roboto, sans-serif;margin:0 0 12px}.mat-body-strong,.mat-subtitle-2,.mat-typography .mat-body-strong,.mat-typography .mat-subtitle-2{font-size:14px;font-weight:500;line-height:22px;font-family:Roboto, sans-serif;letter-spacing:.0071428571em}.mat-body,.mat-body-2,.mat-typography .mat-body,.mat-typography .mat-body-2,.mat-typography{font-size:14px;font-weight:400;line-height:20px;font-family:Roboto, sans-serif;letter-spacing:.0178571429em}.mat-body p,.mat-body-2 p,.mat-typography .mat-body p,.mat-typography .mat-body-2 p,.mat-typography p{margin:0 0 12px}.mat-small,.mat-caption,.mat-typography .mat-small,.mat-typography .mat-caption{font-size:12px;font-weight:400;line-height:20px;font-family:Roboto, sans-serif;letter-spacing:.0333333333em}.mat-headline-1,.mat-typography .mat-headline-1{font-size:96px;font-weight:300;line-height:96px;font-family:Roboto, sans-serif;letter-spacing:-0.015625em;margin:0 0 56px}.mat-headline-2,.mat-typography .mat-headline-2{font-size:60px;font-weight:300;line-height:60px;font-family:Roboto, sans-serif;letter-spacing:-.0083333333em;margin:0 0 64px}.mat-headline-3,.mat-typography .mat-headline-3{font-size:48px;font-weight:400;line-height:50px;font-family:Roboto, sans-serif;letter-spacing:normal;margin:0 0 64px}.mat-headline-4,.mat-typography .mat-headline-4{font-size:34px;font-weight:400;line-height:40px;font-family:Roboto, sans-serif;letter-spacing:.0073529412em;margin:0 0 64px}
.bz-grid {
  display: flex;
  flex-wrap: wrap;
  /* Base classes for all media */
  /* Small to medium screens */
  /* Large screens */
}
.bz-grid--fit > .grid-cell {
  flex: 1 auto;
}
.bz-grid--full > .grid-cell {
  flex: 0 0 100%;
}
.bz-grid--1of2 > .grid-cell {
  flex: 0 0 50%;
}
.bz-grid--1of3 > .grid-cell {
  flex: 0 0 33.3333%;
}
.bz-grid--1of4 > .grid-cell {
  flex: 0 0 25%;
}
@media (min-width: 24em) {
  .bz-grid-small--fit > .grid-cell {
    flex: 1 auto;
  }
  .bz-grid-small--full > .grid-cell {
    flex: 0 0 100%;
  }
  .bz-grid-small--1of2 > .grid-cell {
    flex: 0 0 50%;
  }
  .bz-grid-small--1of3 > .grid-cell {
    flex: 0 0 33.3333%;
  }
  .bz-grid-small--1of4 > .grid-cell {
    flex: 0 0 25%;
  }
}
@media (min-width: 48em) {
  .bz-grid-large--fit > .grid-cell {
    flex: 1 auto;
  }
  .bz-grid-large--full > .grid-cell {
    flex: 0 0 100%;
  }
  .bz-grid-large--1of2 > .grid-cell {
    flex: 0 0 50%;
  }
  .bz-grid-large--1of3 > .grid-cell {
    flex: 0 0 33.3333%;
  }
  .bz-grid-large--1of4 > .grid-cell {
    flex: 0 0 25%;
  }
}

.bz-switch-field {
  background-color: #f7f7f7;
  color: #7f7f7f;
  letter-spacing: -0.2px;
  font-weight: 600;
  font-size: 11px;
  display: flex;
  flex-direction: row;
  padding: 15px 6% 15px 6%;
  font-family: "Open Sans", Verdana, Serif;
  margin-bottom: 20px;
}
.bz-switch-field span {
  align-self: center;
  flex-grow: 2;
}

.checked {
  color: #417505;
  background-color: transparent;
}

.bz-info {
  background-color: #c7e2dc;
  color: #177C66;
  font-size: 12px;
  padding: 10px 2px 10px 2px;
  display: flex;
  flex-direction: row;
  margin: 0px 0 10px 0px;
}
.bz-info i {
  color: #1aaba1;
  padding: 10px;
}
.bz-info p {
  margin: 0;
  padding: 0;
  align-self: center;
}

.bz-alert-completed,
.bz-alert {
  height: 0%;
  position: fixed;
  top: 5em;
  right: 0;
  left: 0;
  display: inline-block;
  font-family: "Open Sans", Verdana, Serif;
  font-size: 11px;
  z-index: 2;
  padding: 0px 0px 0px 0px;
}
@media (min-width: 24em) {
  .bz-alert-completed,
  .bz-alert {
    bottom: 0;
    right: 1em;
    font-size: 13px;
    left: auto;
  }
}
@media (min-width: 48em) {
  .bz-alert-completed,
  .bz-alert {
    bottom: 0;
    right: 1em;
    font-size: 13px;
    left: auto;
  }
}
.bz-alert-completed .alert-completed,
.bz-alert .alert-completed {
  color: #1aaba1;
  background-color: rgb(230, 239, 237);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.12);
}
.bz-alert-completed .alert-completed i,
.bz-alert .alert-completed i {
  color: #1aaba1;
  font-size: 20px;
  font-weight: 600;
}
.bz-alert-completed .alert-error,
.bz-alert .alert-error {
  color: #D8000C;
  background-color: #FFBABA;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.12);
}
.bz-alert-completed .alert-error i,
.bz-alert .alert-error i {
  color: #D8000C;
  font-size: 20px;
  font-weight: 600;
}
.bz-alert-completed .alert-warning,
.bz-alert .alert-warning {
  color: #9F6000;
  background-color: #FEEFB3;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.12);
}
.bz-alert-completed .alert-warning i,
.bz-alert .alert-warning i {
  color: #9F6000;
  font-size: 20px;
  font-weight: 600;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Open Sans", Verdana, Serif;
}

#container {
  height: 100%;
}

.bz-icon-svg {
  max-width: 100px;
  fill: currentColor;
}
.bz-icon-svg--12 {
  height: 12px;
  width: 12px;
}
.bz-icon-svg--16 {
  height: 16px;
  width: 16px;
}
.bz-icon-svg--24 {
  height: 24px;
  width: 24px;
}
.bz-icon-svg--32 {
  height: 32px;
  width: 32px;
}
.bz-icon-svg--48 {
  height: 48px;
  width: 48px;
}
.bz-icon-svg--64 {
  height: 64px;
  width: 64px;
}

.bmc .theme-green .bs-datepicker-head {
  background-color: #217d7e;
}

.bmc .theme-green .bs-datepicker-body table td span.selected {
  background-color: #217d7e;
}

.bmc ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ececec;
}

.bmc ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #ececec;
}

.bmc ::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #d4d4d4;
}

.bz-table__cell-row--center {
  text-align: center;
}

.bz-form-item {
  padding: 0;
}

.cdk-overlay-container .cdk-overlay-pane .bz-overflow-menu {
  position: relative;
  left: 2.6rem;
  min-width: 160px;
}

p {
  line-height: 1.5em;
}

.cdk-overlay-container .bmc-maintenance-window {
  padding: 0;
}
.cdk-overlay-container .bmc-maintenance-window .bz-toast {
  padding: 1em;
}

.bz-divider {
  background: #E0E0E0;
}
.bz-divider--horizontal {
  height: 1px;
  width: 100%;
}
.bz-divider--vertical {
  height: 100%;
  width: 1px;
}

.bz-option__label {
  width: 100% !important;
}
/* Generated by grunt-webfont */


@font-face {
	font-family:"bizagi-font";
	src:url('bizagi-font.ff00227946dadee3.woff') format("woff"),
		url('bizagi-font.03f0606cc629c6f3.ttf') format("truetype");
	font-weight:normal;
	font-style:normal;
}

.bz-icon {

		font-family:"bizagi-font";

	display:inline-block;
	vertical-align:middle;
	line-height:1;
	font-weight:normal;
	font-style:normal;
	speak:none;
	text-decoration:inherit;
	text-transform:none;
	text-rendering:auto;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}


.bz-icon-16{
	font-size: 16px;
}

.bz-icon-24{
	font-size: 24px;
}

.bz-icon-thin,
.bz-icon-32{
	font-size: 32px;
}

.bz-icon-64{
	font-size: 64px;
}

.bz-icon-128{
	font-size: 128px;
}

/* Icons */


.bz-icon-1-point:before {
	content:"\f10a";
}


.bz-icon-2-point:before {
	content:"\f116";
}


.bz-icon-3-point:before {
	content:"\f118";
}


.bz-icon-abort-outline:before {
	content:"\f120";
}


.bz-icon-accessibility-outline:before {
	content:"\f121";
}


.bz-icon-accessibility:before {
	content:"\e1014";
}


.bz-icon-activity-outline:before {
	content:"\f122";
}


.bz-icon-activity:before {
	content:"\e1015";
}


.bz-icon-activityfeed-overdue:before {
	content:"\f10b";
}


.bz-icon-activityfeed-upcoming:before {
	content:"\f10c";
}


.bz-icon-add-attribute:before {
	content:"\e1071";
}


.bz-icon-add-options:before {
	content:"\f10d";
}


.bz-icon-add-register:before {
	content:"\f123";
}


.bz-icon-add-sentence:before {
	content:"\e1072";
}


.bz-icon-admin-template-outline:before {
	content:"\f125";
}


.bz-icon-alarm-outline:before {
	content:"\f126";
}


.bz-icon-alarm:before {
	content:"\e1016";
}


.bz-icon-alert:before {
	content:"\f101";
}


.bz-icon-applications-outline:before {
	content:"\f127";
}


.bz-icon-arrow-down-outline:before {
	content:"\f128";
}


.bz-icon-arrow-left-outline:before {
	content:"\f104";
}


.bz-icon-arrow-new-process:before {
	content:"\f129";
}


.bz-icon-arrow-right-outline:before {
	content:"\f124";
}


.bz-icon-arrow-up-outline:before {
	content:"\f12a";
}


.bz-icon-assign-outline:before {
	content:"\f12b";
}


.bz-icon-association:before {
	content:"\f12c";
}


.bz-icon-asynchronous-outline:before {
	content:"\f12d";
}


.bz-icon-asynchronous:before {
	content:"\e1017";
}


.bz-icon-attributes-mod:before {
	content:"\f12e";
}


.bz-icon-attributes:before {
	content:"\e1059";
}


.bz-icon-authentication-outline:before {
	content:"\f12f";
}


.bz-icon-authentication:before {
	content:"\e1018";
}


.bz-icon-bell:before {
	content:"\f130";
}


.bz-icon-bex-upload:before {
	content:"\f131";
}


.bz-icon-bizagi-font-category:before {
	content:"\f132";
}


.bz-icon-bizagi:before {
	content:"\f133";
}


.bz-icon-bookmark:before {
	content:"\e1070";
}


.bz-icon-boolean:before {
	content:"\f134";
}


.bz-icon-bottom-to-top:before {
	content:"\f135";
}


.bz-icon-bz-above:before {
	content:"\f136";
}


.bz-icon-bz-actions:before {
	content:"\f137";
}


.bz-icon-bz-add-massive-vocabulary:before {
	content:"\f138";
}


.bz-icon-bz-add-new-actions:before {
	content:"\f139";
}


.bz-icon-bz-add-process:before {
	content:"\f13a";
}


.bz-icon-bz-add-subpage:before {
	content:"\f13b";
}


.bz-icon-bz-add-sugested:before {
	content:"\f13c";
}


.bz-icon-bz-add-window:before {
	content:"\f13d";
}


.bz-icon-bz-addPage:before {
	content:"\f13f";
}


.bz-icon-bz-admin-user:before {
	content:"\f140";
}


.bz-icon-bz-ai:before {
	content:"\f141";
}


.bz-icon-bz-alarm-jobs:before {
	content:"\f142";
}


.bz-icon-bz-all:before {
	content:"\f143";
}


.bz-icon-bz-alow:before {
	content:"\f144";
}


.bz-icon-bz-arrow-process:before {
	content:"\f145";
}


.bz-icon-bz-attributes:before {
	content:"\f146";
}


.bz-icon-bz-cascading-combo:before {
	content:"\f147";
}


.bz-icon-bz-cases:before {
	content:"\f148";
}


.bz-icon-bz-change-process:before {
	content:"\f149";
}


.bz-icon-bz-checked:before {
	content:"\f13e";
}


.bz-icon-bz-collapsed-process:before {
	content:"\f14a";
}


.bz-icon-bz-connect-to:before {
	content:"\f14b";
}


.bz-icon-bz-context:before {
	content:"\f14c";
}


.bz-icon-bz-control-panel:before {
	content:"\f14d";
}


.bz-icon-bz-copy:before {
	content:"\f14e";
}


.bz-icon-bz-customize-columns:before {
	content:"\f14f";
}


.bz-icon-bz-dataset-table-new:before {
	content:"\f150";
}


.bz-icon-bz-dataset-table:before {
	content:"\f151";
}


.bz-icon-bz-date:before {
	content:"\f152";
}


.bz-icon-bz-delete-3:before {
	content:"\f153";
}


.bz-icon-bz-development:before {
	content:"\f154";
}


.bz-icon-bz-diagram:before {
	content:"\f155";
}


.bz-icon-bz-diagrams:before {
	content:"\f156";
}


.bz-icon-bz-direct-collections:before {
	content:"\f158";
}


.bz-icon-bz-discussion:before {
	content:"\f159";
}


.bz-icon-bz-discussions:before {
	content:"\f15a";
}


.bz-icon-bz-document:before {
	content:"\f15b";
}


.bz-icon-bz-drag-horizontal:before {
	content:"\f15d";
}


.bz-icon-bz-duplicate:before {
	content:"\f15e";
}


.bz-icon-bz-edit-entity:before {
	content:"\f15f";
}


.bz-icon-bz-edit-outline:before {
	content:"\f160";
}


.bz-icon-bz-edit-process:before {
	content:"\f161";
}


.bz-icon-bz-edit-proess:before {
	content:"\f162";
}


.bz-icon-bz-edit:before {
	content:"\f163";
}


.bz-icon-bz-editable:before {
	content:"\f164";
}


.bz-icon-bz-element-receive:before {
	content:"\f165";
}


.bz-icon-bz-embedded-process:before {
	content:"\f166";
}


.bz-icon-bz-entity-properties:before {
	content:"\f167";
}


.bz-icon-bz-environment:before {
	content:"\f168";
}


.bz-icon-bz-expand:before {
	content:"\f169";
}


.bz-icon-bz-flash:before {
	content:"\f16a";
}


.bz-icon-bz-folder:before {
	content:"\f16b";
}


.bz-icon-bz-free-support:before {
	content:"\f16c";
}


.bz-icon-bz-general-options:before {
	content:"\f16d";
}


.bz-icon-bz-group-process:before {
	content:"\f16e";
}


.bz-icon-bz-hexagon-double:before {
	content:"\f170";
}


.bz-icon-bz-hide:before {
	content:"\f171";
}


.bz-icon-bz-hold-move:before {
	content:"\f172";
}


.bz-icon-bz-home:before {
	content:"\f173";
}


.bz-icon-bz-indirect-collections:before {
	content:"\f174";
}


.bz-icon-bz-interface-connector:before {
	content:"\f175";
}


.bz-icon-bz-jobs-outline:before {
	content:"\f176";
}


.bz-icon-bz-jobs:before {
	content:"\f177";
}


.bz-icon-bz-layout:before {
	content:"\f178";
}


.bz-icon-bz-light-box:before {
	content:"\f179";
}


.bz-icon-bz-link-suggested:before {
	content:"\f17a";
}


.bz-icon-bz-localization-external:before {
	content:"\f17b";
}


.bz-icon-bz-m-call-activity:before {
	content:"\f17c";
}


.bz-icon-bz-m-custom-artifact:before {
	content:"\f17d";
}


.bz-icon-bz-m-diagram-task:before {
	content:"\f17e";
}


.bz-icon-bz-m-end-event:before {
	content:"\f17f";
}


.bz-icon-bz-m-event-subprocess:before {
	content:"\f180";
}


.bz-icon-bz-m-lane:before {
	content:"\f181";
}


.bz-icon-bz-m-milestone:before {
	content:"\f182";
}


.bz-icon-bz-m-pool:before {
	content:"\f183";
}


.bz-icon-bz-m-sequence-flow:before {
	content:"\f184";
}


.bz-icon-bz-m-start-event:before {
	content:"\f185";
}


.bz-icon-bz-m-start-none:before {
	content:"\f186";
}


.bz-icon-bz-manageContent:before {
	content:"\f187";
}


.bz-icon-bz-manufacturing:before {
	content:"\f188";
}


.bz-icon-bz-map-bundle:before {
	content:"\f189";
}


.bz-icon-bz-moon:before {
	content:"\f18a";
}


.bz-icon-bz-move-1:before {
	content:"\f18b";
}


.bz-icon-bz-move-2:before {
	content:"\f18c";
}


.bz-icon-bz-new-diagrams:before {
	content:"\f18d";
}


.bz-icon-bz-new-entity:before {
	content:"\f18e";
}


.bz-icon-bz-new-environment:before {
	content:"\f18f";
}


.bz-icon-bz-new-quick-process:before {
	content:"\f190";
}


.bz-icon-bz-new-searches:before {
	content:"\f191";
}


.bz-icon-bz-number-range:before {
	content:"\f192";
}


.bz-icon-bz-number:before {
	content:"\f193";
}


.bz-icon-bz-off:before {
	content:"\f194";
}


.bz-icon-bz-page-settings:before {
	content:"\f195";
}


.bz-icon-bz-pendings:before {
	content:"\f196";
}


.bz-icon-bz-pilots:before {
	content:"\f197";
}


.bz-icon-bz-plans-closed:before {
	content:"\f198";
}


.bz-icon-bz-plans-in-action:before {
	content:"\f19a";
}


.bz-icon-bz-plans-pending:before {
	content:"\f19b";
}


.bz-icon-bz-preview:before {
	content:"\f19c";
}


.bz-icon-bz-process-element:before {
	content:"\f19d";
}


.bz-icon-bz-process:before {
	content:"\f19e";
}


.bz-icon-bz-production:before {
	content:"\f19f";
}


.bz-icon-bz-publish:before {
	content:"\f1a0";
}


.bz-icon-bz-published:before {
	content:"\f1a1";
}


.bz-icon-bz-radio:before {
	content:"\f1a2";
}


.bz-icon-bz-refresh:before {
	content:"\f1a4";
}


.bz-icon-bz-related-entity:before {
	content:"\f1a5";
}


.bz-icon-bz-reports:before {
	content:"\f1a6";
}


.bz-icon-bz-reusable-process:before {
	content:"\f1a7";
}


.bz-icon-bz-save:before {
	content:"\f1a8";
}


.bz-icon-bz-scheduler:before {
	content:"\f1a9";
}


.bz-icon-bz-settings:before {
	content:"\f1ab";
}


.bz-icon-bz-skins:before {
	content:"\f1ac";
}


.bz-icon-bz-speedometer:before {
	content:"\f1ad";
}


.bz-icon-bz-steps:before {
	content:"\f1ae";
}


.bz-icon-bz-suggested:before {
	content:"\f1af";
}


.bz-icon-bz-sun:before {
	content:"\f1b0";
}


.bz-icon-bz-system-jobs:before {
	content:"\f1b1";
}


.bz-icon-bz-test-add:before {
	content:"\f1b2";
}


.bz-icon-bz-test:before {
	content:"\f1b3";
}


.bz-icon-bz-text-note:before {
	content:"\f1b4";
}


.bz-icon-bz-theme:before {
	content:"\f1b5";
}


.bz-icon-bz-tracing-error:before {
	content:"\f1b7";
}


.bz-icon-bz-tracing:before {
	content:"\f1b8";
}


.bz-icon-bz-up-down:before {
	content:"\f1ba";
}


.bz-icon-bz-user-group:before {
	content:"\f1bb";
}


.bz-icon-bz-user-jobs:before {
	content:"\f1bc";
}


.bz-icon-bz-view-dependencies:before {
	content:"\f1bd";
}


.bz-icon-bz-view-detail:before {
	content:"\f1be";
}


.bz-icon-bz-view-grid:before {
	content:"\f1bf";
}


.bz-icon-bz-view-only-context-entity-model:before {
	content:"\f1c0";
}


.bz-icon-bz-views:before {
	content:"\f1c1";
}


.bz-icon-bz-wait-jobs:before {
	content:"\f1c2";
}


.bz-icon-bz-work-items:before {
	content:"\f1c3";
}


.bz-icon-bz-world:before {
	content:"\f1c4";
}


.bz-icon-calendar-outline:before {
	content:"\f1c5";
}


.bz-icon-camera:before {
	content:"\f11e";
}


.bz-icon-case-add-outline:before {
	content:"\f1c7";
}


.bz-icon-case-fav-outline:before {
	content:"\f1c8";
}


.bz-icon-case-outline:before {
	content:"\f1c9";
}


.bz-icon-case-pending-outline:before {
	content:"\f1ca";
}


.bz-icon-case-recent:before {
	content:"\e101a";
}


.bz-icon-case-time-outline:before {
	content:"\f1cb";
}


.bz-icon-case:before {
	content:"\e1019";
}


.bz-icon-change-shape:before {
	content:"\f1cc";
}


.bz-icon-change:before {
	content:"\f1cd";
}


.bz-icon-check-in:before {
	content:"\f1ce";
}


.bz-icon-check-out:before {
	content:"\f1cf";
}


.bz-icon-check-outline:before {
	content:"\e1092";
}


.bz-icon-check:before {
	content:"\f1d0";
}


.bz-icon-checkbox-checked:before {
	content:"\f1d1";
}


.bz-icon-checkbox-unchecked:before {
	content:"\f1d2";
}


.bz-icon-checklist-outline:before {
	content:"\f1d3";
}


.bz-icon-checklist:before {
	content:"\e101b";
}


.bz-icon-childrens:before {
	content:"\f1d4";
}


.bz-icon-clip-add-outline:before {
	content:"\e1088";
}


.bz-icon-clip-outline:before {
	content:"\f157";
}


.bz-icon-clip:before {
	content:"\e101c";
}


.bz-icon-close-outline:before {
	content:"\f105";
}


.bz-icon-close:before {
	content:"\e1057";
}


.bz-icon-closed-outline:before {
	content:"\e1089";
}


.bz-icon-cloud:before {
	content:"\e1083";
}


.bz-icon-code-conditional-active:before {
	content:"\e1074";
}


.bz-icon-code-conditional:before {
	content:"\e106f";
}


.bz-icon-code-rule:before {
	content:"\e106e";
}


.bz-icon-cog-outline:before {
	content:"\f11f";
}


.bz-icon-cog:before {
	content:"\e101d";
}


.bz-icon-cogs:before {
	content:"\e101e";
}


.bz-icon-coin:before {
	content:"\e1058";
}


.bz-icon-collections:before {
	content:"\f1d5";
}


.bz-icon-columns-outline:before {
	content:"\f1d6";
}


.bz-icon-comment-add-outline:before {
	content:"\f1d7";
}


.bz-icon-comment-outline:before {
	content:"\f15c";
}


.bz-icon-comment:before {
	content:"\e101f";
}


.bz-icon-comments:before {
	content:"\f1d8";
}


.bz-icon-connector-outline:before {
	content:"\f1d9";
}


.bz-icon-connector:before {
	content:"\e1006";
}


.bz-icon-cross-deployment:before {
	content:"\f1da";
}


.bz-icon-csv-upload:before {
	content:"\f1db";
}


.bz-icon-currency-outline:before {
	content:"\e1096";
}


.bz-icon-currency:before {
	content:"\e1008";
}


.bz-icon-database-outline:before {
	content:"\f1dc";
}


.bz-icon-database:before {
	content:"\e1020";
}


.bz-icon-date:before {
	content:"\f1dd";
}


.bz-icon-desktop:before {
	content:"\f1de";
}


.bz-icon-development-outline:before {
	content:"\e1094";
}


.bz-icon-development:before {
	content:"\e1009";
}


.bz-icon-diagram-outline:before {
	content:"\f1df";
}


.bz-icon-diagram:before {
	content:"\e1021";
}


.bz-icon-diagram2:before {
	content:"\f1e0";
}


.bz-icon-dimension-outline:before {
	content:"\f1e1";
}


.bz-icon-dimension:before {
	content:"\e1022";
}


.bz-icon-disk:before {
	content:"\e100a";
}


.bz-icon-document-templates:before {
	content:"\f1e2";
}


.bz-icon-down-outline:before {
	content:"\f1e3";
}


.bz-icon-down:before {
	content:"\e1023";
}


.bz-icon-download:before {
	content:"\f1e4";
}


.bz-icon-drag-and-drop:before {
	content:"\f1e5";
}


.bz-icon-drag-outline:before {
	content:"\e1095";
}


.bz-icon-drag:before {
	content:"\e1000";
}


.bz-icon-edit-core-process:before {
	content:"\f1e6";
}


.bz-icon-edit-management-process:before {
	content:"\f1e7";
}


.bz-icon-edit-support-process:before {
	content:"\f1e8";
}


.bz-icon-edit:before {
	content:"\e1024";
}


.bz-icon-entity-master:before {
	content:"\f1e9";
}


.bz-icon-entity-outline:before {
	content:"\e1097";
}


.bz-icon-entity-parametric:before {
	content:"\f1ea";
}


.bz-icon-entity-stakeholder:before {
	content:"\f1eb";
}


.bz-icon-entity:before {
	content:"\e100b";
}


.bz-icon-envelope-outline:before {
	content:"\f1ec";
}


.bz-icon-environment-custom:before {
	content:"\e1082";
}


.bz-icon-environment-default:before {
	content:"\e1081";
}


.bz-icon-environment-shared:before {
	content:"\e107a";
}


.bz-icon-environment:before {
	content:"\e1079";
}


.bz-icon-error:before {
	content:"\e106b";
}


.bz-icon-event-outline:before {
	content:"\f1ed";
}


.bz-icon-execute:before {
	content:"\e1056";
}


.bz-icon-executing-outline:before {
	content:"\e108a";
}


.bz-icon-extended-text:before {
	content:"\f1ee";
}


.bz-icon-extended-text:before {
	content:"\e100c";
}


.bz-icon-eye:before {
	content:"\e1025";
}


.bz-icon-file-text-o-o:before {
	content:"\e1005";
}


.bz-icon-file:before {
	content:"\f1ef";
}


.bz-icon-filter-native:before {
	content:"\f10e";
}


.bz-icon-filter-outline:before {
	content:"\f1f0";
}


.bz-icon-filter:before {
	content:"\e1026";
}


.bz-icon-folder-add-outline:before {
	content:"\f1f1";
}


.bz-icon-folder-move-outline:before {
	content:"\f1f2";
}


.bz-icon-folder-outline:before {
	content:"\f1f3";
}


.bz-icon-folder:before {
	content:"\e1027";
}


.bz-icon-form-outline:before {
	content:"\f16f";
}


.bz-icon-form:before {
	content:"\e1028";
}


.bz-icon-gateway:before {
	content:"\f1f4";
}


.bz-icon-gift-outline:before {
	content:"\f1f5";
}


.bz-icon-grid-outline:before {
	content:"\f1f6";
}


.bz-icon-grid:before {
	content:"\e105a";
}


.bz-icon-group:before {
	content:"\f1f7";
}


.bz-icon-help-outline:before {
	content:"\e109d";
}


.bz-icon-help:before {
	content:"\f1f8";
}


.bz-icon-hexagon-all:before {
	content:"\e1080";
}


.bz-icon-hexagon-development:before {
	content:"\e107c";
}


.bz-icon-hexagon-download:before {
	content:"\e105f";
}


.bz-icon-hexagon-empty:before {
	content:"\f1f9";
}


.bz-icon-hexagon-execute:before {
	content:"\e1076";
}


.bz-icon-hexagon-external:before {
	content:"\e1077";
}


.bz-icon-hexagon-info:before {
	content:"\e1060";
}


.bz-icon-hexagon-isolated:before {
	content:"\e107b";
}


.bz-icon-hexagon-new:before {
	content:"\e1061";
}


.bz-icon-hexagon-person:before {
	content:"\e1078";
}


.bz-icon-hexagon-production:before {
	content:"\e107f";
}


.bz-icon-hexagon-staging:before {
	content:"\e107d";
}


.bz-icon-hexagon-support:before {
	content:"\e1062";
}


.bz-icon-hexagon-testing:before {
	content:"\e107e";
}


.bz-icon-hexagon-upload:before {
	content:"\e1063";
}


.bz-icon-hide:before {
	content:"\e1029";
}


.bz-icon-holidays-outline:before {
	content:"\f1fa";
}


.bz-icon-holidays:before {
	content:"\f1fb";
}


.bz-icon-home-outline:before {
	content:"\f1fc";
}


.bz-icon-home:before {
	content:"\e102a";
}


.bz-icon-icondataset-empty:before {
	content:"\f1fd";
}


.bz-icon-icons:before {
	content:"\f1fe";
}


.bz-icon-if-active:before {
	content:"\e1087";
}


.bz-icon-if:before {
	content:"\e1075";
}


.bz-icon-image:before {
	content:"\f1ff";
}


.bz-icon-inbox-outline:before {
	content:"\f200";
}


.bz-icon-inbox:before {
	content:"\e102b";
}


.bz-icon-indirect-collections:before {
	content:"\f201";
}


.bz-icon-info-outline:before {
	content:"\f202";
}


.bz-icon-info:before {
	content:"\e102c";
}


.bz-icon-integer-unique:before {
	content:"\f203";
}


.bz-icon-integer:before {
	content:"\e100d";
}


.bz-icon-interface-o:before {
	content:"\e1004";
}


.bz-icon-interface:before {
	content:"\e1001";
}


.bz-icon-key-outline:before {
	content:"\e1099";
}


.bz-icon-leave-outline:before {
	content:"\f204";
}


.bz-icon-leave:before {
	content:"\e102d";
}


.bz-icon-left-outline:before {
	content:"\f102";
}


.bz-icon-left-to-right:before {
	content:"\f205";
}


.bz-icon-license-outline:before {
	content:"\f206";
}


.bz-icon-license:before {
	content:"\e102e";
}


.bz-icon-list-outline:before {
	content:"\f10f";
}


.bz-icon-list:before {
	content:"\e105b";
}


.bz-icon-live-process:before {
	content:"\f207";
}


.bz-icon-localization:before {
	content:"\e1007";
}


.bz-icon-locate:before {
	content:"\f208";
}


.bz-icon-lock-outline:before {
	content:"\f106";
}


.bz-icon-lock-user-outline:before {
	content:"\f209";
}


.bz-icon-lock:before {
	content:"\e102f";
}


.bz-icon-log-out:before {
	content:"\e105c";
}


.bz-icon-log-outline:before {
	content:"\f20a";
}


.bz-icon-log:before {
	content:"\e1030";
}


.bz-icon-login-outline:before {
	content:"\f20b";
}


.bz-icon-login-qr:before {
	content:"\f107";
}


.bz-icon-login-server:before {
	content:"\f108";
}


.bz-icon-login-user:before {
	content:"\f109";
}


.bz-icon-logout-outline:before {
	content:"\f11d";
}


.bz-icon-machine-learning:before {
	content:"\f20c";
}


/* .bz-icon-maintenance:before {
	content:"\f20d";
} */


.bz-icon-management-process:before {
	content:"\f20e";
}


.bz-icon-master:before {
	content:"\e100e";
}


.bz-icon-maximize-outline:before {
	content:"\f20f";
}


.bz-icon-menu-h-items-outline:before {
	content:"\f210";
}


.bz-icon-menu-h-items:before {
	content:"\f211";
}


.bz-icon-menu-items:before {
	content:"\f119";
}


.bz-icon-menu-outline:before {
	content:"\f212";
}


.bz-icon-menu:before {
	content:"\e1031";
}


.bz-icon-minimize-close-outline:before {
	content:"\f213";
}


.bz-icon-minimize-outline:before {
	content:"\f214";
}


.bz-icon-minus-outline:before {
	content:"\f215";
}


.bz-icon-minus:before {
	content:"\e105d";
}


.bz-icon-mobile-horizontal:before {
	content:"\f216";
}


.bz-icon-mobile:before {
	content:"\f217";
}


.bz-icon-modeler-download-outline:before {
	content:"\f218";
}


.bz-icon-modeler-help-outline:before {
	content:"\f219";
}


.bz-icon-modeler-upload-outline:before {
	content:"\f21a";
}


.bz-icon-money:before {
	content:"\f21b";
}


.bz-icon-move-folder:before {
	content:"\f21c";
}


.bz-icon-new-diagram:before {
	content:"\f21d";
}


.bz-icon-new-close-outline:before {
	content:"\f21e";
}


.bz-icon-new-diagram:before {
	content:"\f21f";
}


.bz-icon-new-down-outline:before {
	content:"\f220";
}


.bz-icon-new-entity-outline:before {
	content:"\f221";
}


.bz-icon-new-entity:before {
	content:"\f222";
}


.bz-icon-new-outline:before {
	content:"\f223";
}


.bz-icon-new-shortcut-outline:before {
	content:"\f224";
}


.bz-icon-new-up-outline:before {
	content:"\f225";
}


.bz-icon-new-value-chain-diagram:before {
	content:"\f226";
}


.bz-icon-new:before {
	content:"\e1032";
}


.bz-icon-next:before {
	content:"\e1033";
}


.bz-icon-none:before {
	content:"\f227";
}


.bz-icon-not-found:before {
	content:"\f228";
}


.bz-icon-number-outline:before {
	content:"\f229";
}


.bz-icon-ontime:before {
	content:"\f111";
}


.bz-icon-open-outline:before {
	content:"\f22a";
}


.bz-icon-open:before {
	content:"\e1034";
}


.bz-icon-order-ascendant-outline:before {
	content:"\f22b";
}


.bz-icon-order-ascendant:before {
	content:"\e1036";
}


.bz-icon-order-descendant-outline:before {
	content:"\f22c";
}


.bz-icon-order-descendant:before {
	content:"\e1037";
}


.bz-icon-order:before {
	content:"\e1035";
}


.bz-icon-overdue-normal:before {
	content:"\f22d";
}


.bz-icon-overview-outline:before {
	content:"\f199";
}


.bz-icon-overview:before {
	content:"\e1038";
}


.bz-icon-paint-outline:before {
	content:"\f22e";
}


.bz-icon-paint:before {
	content:"\e1039";
}


.bz-icon-panel-outline:before {
	content:"\e1098";
}


.bz-icon-parameter-outline:before {
	content:"\f22f";
}


.bz-icon-parameter:before {
	content:"\e100f";
}


.bz-icon-path:before {
	content:"\e103a";
}


.bz-icon-pencil-outline:before {
	content:"\e1093";
}


.bz-icon-pencil:before {
	content:"\f230";
}


.bz-icon-pending-outline:before {
	content:"\e108b";
}


.bz-icon-personas:before {
	content:"\e1086";
}


.bz-icon-picture-outline:before {
	content:"\f231";
}


.bz-icon-picture:before {
	content:"\e106c";
}


.bz-icon-pin:before {
	content:"\f232";
}


.bz-icon-pins:before {
	content:"\f233";
}


.bz-icon-place-holder:before {
	content:"\f234";
}


.bz-icon-plan-activities-outline:before {
	content:"\f235";
}


.bz-icon-plan-activities:before {
	content:"\e103c";
}


.bz-icon-plan-add-outline:before {
	content:"\f236";
}


.bz-icon-plan-closed-outline:before {
	content:"\f237";
}


.bz-icon-plan-closed:before {
	content:"\e103d";
}


.bz-icon-plan-enable:before {
	content:"\e103e";
}


.bz-icon-plan-executing-outline:before {
	content:"\f238";
}


.bz-icon-plan-executing:before {
	content:"\f239";
}


.bz-icon-plan-outline:before {
	content:"\f1a3";
}


.bz-icon-plan-pending-outline:before {
	content:"\f23a";
}


.bz-icon-plan:before {
	content:"\e103b";
}


.bz-icon-play-outline:before {
	content:"\f23b";
}


.bz-icon-play:before {
	content:"\e103f";
}


.bz-icon-plus-outline:before {
	content:"\f110";
}


.bz-icon-plus:before {
	content:"\e1064";
}


.bz-icon-point:before {
	content:"\e1040";
}


.bz-icon-policy-outline:before {
	content:"\f23c";
}


.bz-icon-policy-st-outline:before {
	content:"\f23d";
}


.bz-icon-policy:before {
	content:"\e1002";
}


.bz-icon-polymorphic-launcher:before {
	content:"\f23e";
}


.bz-icon-prev:before {
	content:"\e1041";
}


.bz-icon-preview-diagram:before {
	content:"\f23f";
}


.bz-icon-print:before {
	content:"\f240";
}


.bz-icon-process-native:before {
	content:"\f1aa";
}


.bz-icon-process:before {
	content:"\e106d";
}


.bz-icon-production:before {
	content:"\e1010";
}


.bz-icon-project-name-outline:before {
	content:"\f241";
}


.bz-icon-radio-checked-full:before {
	content:"\f242";
}


.bz-icon-radio-checked:before {
	content:"\f243";
}


.bz-icon-radio-unchecked:before {
	content:"\f244";
}


.bz-icon-relevant-add:before {
	content:"\f245";
}


.bz-icon-relevant-fill:before {
	content:"\f246";
}


.bz-icon-relevant:before {
	content:"\f247";
}


.bz-icon-reload:before {
	content:"\e1043";
}


.bz-icon-reply:before {
	content:"\e1065";
}


.bz-icon-reports-outline:before {
	content:"\f248";
}


.bz-icon-reports:before {
	content:"\e1044";
}


.bz-icon-reset:before {
	content:"\e1066";
}


.bz-icon-restore-outline:before {
	content:"\f249";
}


.bz-icon-reverse:before {
	content:"\f24a";
}


.bz-icon-right-outline:before {
	content:"\f103";
}


.bz-icon-right-to-left:before {
	content:"\f24b";
}


.bz-icon-right:before {
	content:"\e1067";
}


.bz-icon-rules:before {
	content:"\e1045";
}


.bz-icon-sap:before {
	content:"\e1003";
}


.bz-icon-save-outline:before {
	content:"\f24c";
}


.bz-icon-save:before {
	content:"\f1b6";
}


.bz-icon-search-down-arrow:before {
	content:"\f24d";
}


.bz-icon-search-list:before {
	content:"\f24e";
}


.bz-icon-search-outline:before {
	content:"\f117";
}


.bz-icon-search-register:before {
	content:"\f24f";
}


.bz-icon-search:before {
	content:"\e1046";
}


.bz-icon-select-register:before {
	content:"\f250";
}


.bz-icon-sentence-form-outline:before {
	content:"\f1b9";
}


.bz-icon-sentence-rule-outline:before {
	content:"\f251";
}


.bz-icon-share-outline:before {
	content:"\e109a";
}


.bz-icon-share:before {
	content:"\e1068";
}


.bz-icon-sheet-pencil:before {
	content:"\e1048";
}


.bz-icon-sheet:before {
	content:"\e1047";
}


.bz-icon-show-actions:before {
	content:"\f113";
}


.bz-icon-sign-out-outline:before {
	content:"\f252";
}


.bz-icon-sign-out:before {
	content:"\e1049";
}


.bz-icon-stakeholder-outline:before {
	content:"\f253";
}


.bz-icon-stakeholder:before {
	content:"\e1011";
}


.bz-icon-stakeholders-outline:before {
	content:"\f254";
}


.bz-icon-stakeholders:before {
	content:"\e1085";
}


.bz-icon-star-outline:before {
	content:"\f11b";
}


.bz-icon-star:before {
	content:"\f11c";
}


.bz-icon-string-outline:before {
	content:"\f255";
}


.bz-icon-string-pencil-outline:before {
	content:"\f256";
}


.bz-icon-string-underline:before {
	content:"\f257";
}


.bz-icon-string:before {
	content:"\e1012";
}


.bz-icon-stuff:before {
	content:"\e105e";
}


.bz-icon-suggested-outline:before {
	content:"\f258";
}


.bz-icon-support-outline:before {
	content:"\f259";
}


.bz-icon-support-process:before {
	content:"\f25a";
}


.bz-icon-tablet-horizontal:before {
	content:"\f25b";
}


.bz-icon-tablet:before {
	content:"\f25c";
}


.bz-icon-tag:before {
	content:"\e104a";
}


.bz-icon-team:before {
	content:"\e1069";
}


.bz-icon-template-outline:before {
	content:"\f25d";
}


.bz-icon-template:before {
	content:"\e1042";
}


.bz-icon-test:before {
	content:"\e1013";
}


.bz-icon-text-area:before {
	content:"\f25e";
}


.bz-icon-text-note:before {
	content:"\f25f";
}


.bz-icon-three-points:before {
	content:"\f1c6";
}


.bz-icon-timeline-outline:before {
	content:"\f260";
}


.bz-icon-top-to-bottom:before {
	content:"\f261";
}


.bz-icon-trace:before {
	content:"\f262";
}


.bz-icon-trash-outline:before {
	content:"\f263";
}


.bz-icon-trash:before {
	content:"\e104b";
}


.bz-icon-turn-outline:before {
	content:"\f264";
}


.bz-icon-type-new-case:before {
	content:"\f114";
}


.bz-icon-unlinked:before {
	content:"\f265";
}


.bz-icon-unlock-outline:before {
	content:"\f266";
}


.bz-icon-unlock:before {
	content:"\e104c";
}


.bz-icon-up-outline:before {
	content:"\f267";
}


.bz-icon-up:before {
	content:"\e1073";
}


.bz-icon-upcoming-normal:before {
	content:"\f115";
}


.bz-icon-update:before {
	content:"\e108e";
}


.bz-icon-upgrade-outline:before {
	content:"\f268";
}


.bz-icon-upgrade:before {
	content:"\e106a";
}


.bz-icon-user-add:before {
	content:"\f269";
}


.bz-icon-user-data:before {
	content:"\e104e";
}


.bz-icon-user-manage-outline:before {
	content:"\f26a";
}


.bz-icon-user-manage:before {
	content:"\e104f";
}


.bz-icon-user-outline:before {
	content:"\f26b";
}


.bz-icon-user:before {
	content:"\e104d";
}


.bz-icon-users-add:before {
	content:"\f26c";
}


.bz-icon-users-outline:before {
	content:"\f26d";
}


.bz-icon-users:before {
	content:"\e1050";
}


.bz-icon-value-chain-diagram-horizontal:before {
	content:"\f26e";
}


.bz-icon-value-chain-diagram:before {
	content:"\f26f";
}


.bz-icon-value-chain-new-group:before {
	content:"\f270";
}


.bz-icon-value-chain-new-process:before {
	content:"\f271";
}


.bz-icon-warning-outline:before {
	content:"\f272";
}


.bz-icon-warning:before {
	content:"\f273";
}


.bz-icon-watch-close:before {
	content:"\e1052";
}


.bz-icon-watch-pending-outline:before {
	content:"\e108f";
}


.bz-icon-watch-progress-outline:before {
	content:"\f274";
}


.bz-icon-watch-progress:before {
	content:"\e1053";
}


.bz-icon-watch:before {
	content:"\e1051";
}


.bz-icon-window-create-outline:before {
	content:"\e109b";
}


.bz-icon-window-export-outline:before {
	content:"\e109c";
}


.bz-icon-wizard-outline:before {
	content:"\f275";
}


.bz-icon-work-items:before {
	content:"\f276";
}


.bz-icon-world-outline:before {
	content:"\f277";
}


.bz-icon-world:before {
	content:"\e1054";
}


.bz-icon-zoom-in-outline:before {
	content:"\f278";
}


.bz-icon-zoom-out-outline:before {
	content:"\f279";
}


.bz-icon-zoom-reset-outline:before {
	content:"\f27a";
}


.bz-icon-zoom:before {
	content:"\e1055";
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url('opensans-light.f708169786475629.woff2') format("woff2"),
  url('opensans-light.0da08086c75c9d3e.woff') format("woff"),
  url('opensans-light.e3e5d59a26782606.ttf') format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src:  url('opensans-regular.1d0529a8807675e4.woff2') format("woff2"),
  url('opensans-regular.af6528dae689ee54.woff') format("woff"),
  url('opensans-regular.4543090a37b427da.ttf') format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url('opensans-italic.d32c035c309e6931.woff2') format("woff2"),
  url('opensans-italic.45502ee4911d2447.woff') format("woff"),
  url('opensans-italic.a35161630d917929.ttf') format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url('opensans-semibold.a2a0cc50fb666950.woff2') format("woff2"),
  url('opensans-semibold.f1677f3059e7fc8a.woff') format("woff"),
  url('opensans-semibold.363dd9fef233662b.ttf') format("truetype");
}

/* .bs-datepicker */
.bs-datepicker {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  background: #fff;
  box-shadow: 0 0 10px 0 #aaa;
  position: relative;
  z-index: 1;
  /* button */
  /* .bs-datepicker-head */
  /* .bs-datepicker-body */
  /* .current-timedate */
  /* .bs-datepicker-multiple */
  /* .bs-datepicker-btns */
  /*.bs-datepicker-custom-range */
  /* .bs-datepicker-predefined-btns */
  /* .bs-datepicker-buttons */ }
  .bs-datepicker:after {
    clear: both;
    content: '';
    display: block; }
  .bs-datepicker bs-day-picker {
    float: left; }
  .bs-datepicker button:hover,
  .bs-datepicker button:focus,
  .bs-datepicker button:active,
  .bs-datepicker input:hover,
  .bs-datepicker input:focus,
  .bs-datepicker input:active,
  .bs-datepicker-btns button:hover,
  .bs-datepicker-btns button:focus,
  .bs-datepicker-btns button:active,
  .bs-datepicker-predefined-btns button:active,
  .bs-datepicker-predefined-btns button:focus {
    outline: none; }
  .bs-datepicker-head {
    min-width: 270px;
    height: 50px;
    padding: 10px;
    border-radius: 3px 3px 0 0;
    text-align: justify;
    /* .bs-datepicker-head button */ }
    .bs-datepicker-head:after {
      content: "";
      display: inline-block;
      vertical-align: top;
      width: 100%; }
    .bs-datepicker-head button {
      display: inline-block;
      vertical-align: top;
      padding: 0;
      height: 30px;
      line-height: 30px;
      border: 0;
      background: transparent;
      text-align: center;
      cursor: pointer;
      color: #fff;
      transition: 0.3s; }
      .bs-datepicker-head button[disabled], .bs-datepicker-head button[disabled]:hover, .bs-datepicker-head button[disabled]:active {
        background: rgba(221, 221, 221, 0.3);
        color: #f5f5f5;
        cursor: not-allowed; }
      .bs-datepicker-head button.next, .bs-datepicker-head button.previous {
        border-radius: 50%;
        width: 30px;
        height: 30px; }
        .bs-datepicker-head button.next span, .bs-datepicker-head button.previous span {
          font-size: 28px;
          line-height: 1;
          display: inline-block;
          position: relative;
          height: 100%;
          width: 100%;
          border-radius: 50%; }
      .bs-datepicker-head button.current {
        border-radius: 15px;
        max-width: 155px;
        padding: 0 13px; }
  .bs-datepicker-head button:hover {
    background-color: rgba(0, 0, 0, 0.1); }
  .bs-datepicker-head button:active {
    background-color: rgba(0, 0, 0, 0.2); }
  .bs-datepicker-body {
    padding: 10px;
    border-radius: 0 0 3px 3px;
    min-height: 232px;
    min-width: 278px;
    border: 1px solid #e9edf0;
    /* .bs-datepicker-body table */ }
    .bs-datepicker-body .days.weeks {
      position: relative;
      z-index: 1; }
    .bs-datepicker-body table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      /* .bs-datepicker-body table.days */
      /* .bs-datepicker-body table.weeks */ }
      .bs-datepicker-body table th {
        font-size: 13px;
        color: #9aaec1;
        font-weight: 400;
        text-align: center; }
      .bs-datepicker-body table td {
        color: #54708b;
        text-align: center;
        position: relative;
        padding: 0; }
        .bs-datepicker-body table td span {
          display: block;
          margin: 0 auto;
          font-size: 13px;
          border-radius: 50%;
          /*z-index: 1;*/
          -moz-user-select: none;
          -webkit-user-select: none;
          -ms-user-select: none; }
        .bs-datepicker-body table td:not(.disabled):not(.week) span:not(.disabled):not(.is-other-month) {
          cursor: pointer; }
        .bs-datepicker-body table td.is-highlighted:not(.disabled):not(.selected) span,
        .bs-datepicker-body table td span.is-highlighted:not(.disabled):not(.selected) {
          background-color: #e9edf0;
          transition: 0s; }
        .bs-datepicker-body table td.is-active-other-month:not(.disabled):not(.selected) span,
        .bs-datepicker-body table td span.is-active-other-month:not(.disabled):not(.selected) {
          background-color: #e9edf0;
          transition: 0s;
          cursor: pointer; }
        .bs-datepicker-body table td span.disabled,
        .bs-datepicker-body table td.disabled span {
          color: #9aaec1; }
        .bs-datepicker-body table td span.selected,
        .bs-datepicker-body table td.selected span {
          color: #fff; }
        .bs-datepicker-body table td span.is-other-month,
        .bs-datepicker-body table td.is-other-month span {
          color: rgba(0, 0, 0, 0.25); }
        .bs-datepicker-body table td.active {
          position: relative; }
          .bs-datepicker-body table td.active.select-start:before {
            left: 35%; }
          .bs-datepicker-body table td.active.select-end:before {
            left: -85%; }
        .bs-datepicker-body table td span.active.select-start:after,
        .bs-datepicker-body table td span.active.select-end:after,
        .bs-datepicker-body table td.active.select-start span:after,
        .bs-datepicker-body table td.active.select-end span:after {
          content: "";
          display: block;
          position: absolute;
          z-index: -1;
          width: 100%;
          height: 100%;
          transition: 0.3s;
          top: 0;
          border-radius: 50%; }
        .bs-datepicker-body table td:before,
        .bs-datepicker-body table td span:before {
          content: "";
          display: block;
          position: absolute;
          z-index: -1;
          top: 6px;
          bottom: 6px;
          left: -3px;
          right: -2px;
          box-sizing: content-box;
          background: transparent; }
        .bs-datepicker-body table td.active.select-start + td.active:before {
          left: -20%; }
        .bs-datepicker-body table td:last-child.active:before {
          border-radius: 0 3px 3px 0;
          width: 125%;
          left: -25%; }
        .bs-datepicker-body table td span[class*="select-"],
        .bs-datepicker-body table td[class*="select-"] span {
          border-radius: 50%;
          color: #fff; }
      .bs-datepicker-body table.days td.active:not(.select-start):before, .bs-datepicker-body table.days td.in-range:not(.select-start):before,
      .bs-datepicker-body table.days span.active:not(.select-start):before,
      .bs-datepicker-body table.days span.in-range:not(.select-start):before {
        background: #e9edf0; }
      .bs-datepicker-body table.days span {
        width: 32px;
        height: 32px;
        line-height: 32px; }
        .bs-datepicker-body table.days span.select-start {
          z-index: 2; }
        .bs-datepicker-body table.days span.is-highlighted.in-range:before {
          right: 3px;
          left: 0; }
        .bs-datepicker-body table.days span.in-range.select-end:before {
          right: 4px;
          left: 0; }
      .bs-datepicker-body table.days td.select-start + td.select-end:before,
      .bs-datepicker-body table.days td.select-start + td.is-highlighted:before,
      .bs-datepicker-body table.days td.active + td.is-highlighted:before,
      .bs-datepicker-body table.days td.active + td.select-end:before,
      .bs-datepicker-body table.days td.in-range + td.is-highlighted:before,
      .bs-datepicker-body table.days td.in-range + td.select-end:before {
        background: #e9edf0;
        width: 100%; }
      .bs-datepicker-body table.weeks tr td:nth-child(2).active:before {
        border-radius: 3px 0 0 3px;
        left: 0;
        width: 100%; }
      .bs-datepicker-body table:not(.weeks) tr td:first-child:before {
        border-radius: 3px 0 0 3px; }
      .bs-datepicker-body table.years td span {
        width: 46px;
        height: 46px;
        line-height: 45px;
        margin: 0 auto; }
      .bs-datepicker-body table.years tr:not(:last-child) td span {
        margin-bottom: 8px; }
      .bs-datepicker-body table.months td {
        height: 52px; }
        .bs-datepicker-body table.months td span {
          padding: 6px;
          border-radius: 15px; }
  .bs-datepicker .current-timedate {
    color: #54708b;
    font-size: 15px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
    border: 1px solid #e9edf0;
    margin-bottom: 10px;
    cursor: pointer;
    text-transform: uppercase;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none; }
    .bs-datepicker .current-timedate span:not(:empty):before {
      content: "";
      width: 15px;
      height: 16px;
      display: inline-block;
      margin-right: 4px;
      vertical-align: text-bottom;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAQCAYAAADJViUEAAABMklEQVQoU9VTwW3CQBCcOUgBtEBKSAukAnBKME+wFCAlYIhk8sQlxFABtJAScAsuAPBEewYcxCP8ouxrPDsza61uiVN1o6RNHD4htSCmq49RfO71BvMJqBBkITRf1kmUW49nQRC9h1I5AZlBClaL8aP1fKgOOxCx8aSLs+Q19eZuNO8QmPqJRtDFguy7OAcDbJPs+/BKVPDIPrvD2ZJgWAmVe7O0rI0Vqs1seyWUXpuJoppYCa5L+U++NpNPkr5OE2oMdARsb3gykJT5ydZcL8Z9Ww60nxg2LhjON9li9OwXZzo+xLbp3nC2s9CL2RrueGyVrgwNm8HpsCzZ9EEW6kqXlo1GQe03FzP/7W8Hl0dBtu7Bf7zt6mIwvX1RvzDCm7+q3mAW0Dl/GPdUCeXrZLT9BrDrGkm4qlPvAAAAAElFTkSuQmCC); }
  .bs-datepicker-multiple {
    border-radius: 4px 0 0 4px; }
    .bs-datepicker-multiple + .bs-datepicker-multiple {
      margin-left: 10px; }
    .bs-datepicker-multiple .bs-datepicker {
      box-shadow: none;
      position: relative; }
      .bs-datepicker-multiple .bs-datepicker:not(:last-child) {
        padding-right: 10px; }
      .bs-datepicker-multiple .bs-datepicker + .bs-datepicker:after {
        content: "";
        display: block;
        width: 14px;
        height: 10px;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAKCAYAAABrGwT5AAAA1ElEQVQoU42RsQrCUAxF77VuDu7O4oMWW//BURBBpZvgKk4uIrjoqKOTf+DopIO4uYggtFTfw3+pkQqCW1/G5J7kJiFy4m5MxUlxAzgIPHX+lzMPzupRYlYgxiR7vqsOP8YKzsTx0yxFMCUZ+q7aZzlr+OvgoWcAFyAHgat2jLWu48252DdqAihDJGSSJNUUxYmQjs3+hPQBlAh2rG2LCOPnaw3IiGDX99TRCs7ASJsNhUOA7d/LcuHvRG22FIZvsNXw1MX6VZExCilOQKEfeLXr/10+aC9Ho7arh7oAAAAASUVORK5CYII=);
        position: absolute;
        top: 25px;
        left: -8px; }
      .bs-datepicker-multiple .bs-datepicker .left {
        float: left; }
      .bs-datepicker-multiple .bs-datepicker .right {
        float: right; }
  .bs-datepicker-container {
    padding: 15px; }
  .bs-datepicker .bs-media-container {
    display: flex; }
    @media (max-width: 768px) {
      .bs-datepicker .bs-media-container {
        flex-direction: column; } }
  .bs-datepicker-custom-range {
    padding: 15px;
    background: #eee; }
  .bs-datepicker-predefined-btns button {
    width: 100%;
    display: block;
    height: 30px;
    background-color: #9aaec1;
    border-radius: 4px;
    color: #fff;
    border: 0;
    margin-bottom: 10px;
    padding: 0 18px;
    text-align: left;
    transition: 0.3s; }
    .bs-datepicker-predefined-btns button:hover {
      background-color: #54708b; }
  .bs-datepicker-buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid #e9edf0; }
    .bs-datepicker-buttons .btn-default {
      margin-left: 10px; }
    .bs-datepicker-buttons .btn-today-wrapper {
      display: flex;
      flex-flow: row wrap; }
    .bs-datepicker-buttons .clear-right,
    .bs-datepicker-buttons .today-right {
      flex-grow: 0; }
    .bs-datepicker-buttons .clear-left,
    .bs-datepicker-buttons .today-left {
      flex-grow: 1; }
    .bs-datepicker-buttons .clear-center,
    .bs-datepicker-buttons .today-center {
      flex-grow: 0.5; }

/* .bs-timepicker */
.bs-timepicker-container {
  padding: 10px 0; }

.bs-timepicker-label {
  color: #54708b;
  margin-bottom: 10px; }

.bs-timepicker-controls {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px; }
  .bs-timepicker-controls button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 0;
    background-color: #e9edf0;
    color: #54708b;
    font-size: 16px;
    font-weight: 700;
    vertical-align: middle;
    line-height: 0;
    padding: 0;
    transition: 0.3s; }
    .bs-timepicker-controls button:hover {
      background-color: #d5dadd; }
  .bs-timepicker-controls input {
    width: 35px;
    height: 25px;
    border-radius: 13px;
    text-align: center;
    border: 1px solid #e9edf0; }

.bs-timepicker .switch-time-format {
  text-transform: uppercase;
  min-width: 54px;
  height: 25px;
  border-radius: 20px;
  border: 1px solid #e9edf0;
  background: #fff;
  color: #54708b;
  font-size: 13px; }
  .bs-timepicker .switch-time-format img {
    vertical-align: initial;
    margin-left: 4px; }

bs-datepicker-container,
bs-daterangepicker-container {
  z-index: 1080; }

/* screen size < 1024px */
@media (max-width: 768px) {
  .bs-datepicker-multiple {
    display: flex; }
    .bs-datepicker-multiple + .bs-datepicker-multiple {
      margin-top: 10px;
      margin-left: 0; } }

/* theming */
.theme-default .bs-datepicker-head {
  background-color: #777; }

.theme-default .btn-today-wrapper .btn-success, .theme-default .btn-clear-wrapper .btn-success {
  background-color: #777;
  border-color: #777; }

.theme-default .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active:focus, .theme-default .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: none; }

.theme-default .btn-today-wrapper .btn-success:focus, .theme-default .btn-clear-wrapper .btn-success:focus {
  box-shadow: none; }

.theme-default .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active, .theme-default .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active {
  background-color: #616161;
  border-color: #616161; }

.theme-default .btn-today-wrapper .btn-success:hover, .theme-default .btn-clear-wrapper .btn-success:hover {
  background-color: #6F6E6E;
  border-color: #6F6E6E; }

.theme-default .bs-datepicker-predefined-btns button.selected {
  background-color: #777; }

.theme-default .bs-datepicker-body table td span.selected,
.theme-default .bs-datepicker-body table td.selected span,
.theme-default .bs-datepicker-body table td span[class*="select-"]:after,
.theme-default .bs-datepicker-body table td[class*="select-"] span:after {
  background-color: #777; }

.theme-default .bs-datepicker-body table td.week span {
  color: #777; }

.theme-default .bs-datepicker-body table td.active-week span:hover {
  cursor: pointer;
  background-color: #777;
  color: #fff;
  opacity: 0.5;
  transition: 0s; }

.theme-green .bs-datepicker-head {
  background-color: #5cb85c; }

.theme-green .btn-today-wrapper .btn-success, .theme-green .btn-clear-wrapper .btn-success {
  background-color: #5cb85c;
  border-color: #5cb85c; }

.theme-green .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active:focus, .theme-green .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: none; }

.theme-green .btn-today-wrapper .btn-success:focus, .theme-green .btn-clear-wrapper .btn-success:focus {
  box-shadow: none; }

.theme-green .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active, .theme-green .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active {
  background-color: #1e7e34;
  border-color: #1e7e34; }

.theme-green .btn-today-wrapper .btn-success:hover, .theme-green .btn-clear-wrapper .btn-success:hover {
  background-color: #218838;
  border-color: #218838; }

.theme-green .bs-datepicker-predefined-btns button.selected {
  background-color: #5cb85c; }

.theme-green .bs-datepicker-body table td span.selected,
.theme-green .bs-datepicker-body table td.selected span,
.theme-green .bs-datepicker-body table td span[class*="select-"]:after,
.theme-green .bs-datepicker-body table td[class*="select-"] span:after {
  background-color: #5cb85c; }

.theme-green .bs-datepicker-body table td.week span {
  color: #5cb85c; }

.theme-green .bs-datepicker-body table td.active-week span:hover {
  cursor: pointer;
  background-color: #5cb85c;
  color: #fff;
  opacity: 0.5;
  transition: 0s; }

.theme-blue .bs-datepicker-head {
  background-color: #5bc0de; }

.theme-blue .btn-today-wrapper .btn-success, .theme-blue .btn-clear-wrapper .btn-success {
  background-color: #5bc0de;
  border-color: #5bc0de; }

.theme-blue .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active:focus, .theme-blue .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: none; }

.theme-blue .btn-today-wrapper .btn-success:focus, .theme-blue .btn-clear-wrapper .btn-success:focus {
  box-shadow: none; }

.theme-blue .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active, .theme-blue .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active {
  background-color: #2AA8CD;
  border-color: #2AA8CD; }

.theme-blue .btn-today-wrapper .btn-success:hover, .theme-blue .btn-clear-wrapper .btn-success:hover {
  background-color: #3AB3D7;
  border-color: #3AB3D7; }

.theme-blue .bs-datepicker-predefined-btns button.selected {
  background-color: #5bc0de; }

.theme-blue .bs-datepicker-body table td span.selected,
.theme-blue .bs-datepicker-body table td.selected span,
.theme-blue .bs-datepicker-body table td span[class*="select-"]:after,
.theme-blue .bs-datepicker-body table td[class*="select-"] span:after {
  background-color: #5bc0de; }

.theme-blue .bs-datepicker-body table td.week span {
  color: #5bc0de; }

.theme-blue .bs-datepicker-body table td.active-week span:hover {
  cursor: pointer;
  background-color: #5bc0de;
  color: #fff;
  opacity: 0.5;
  transition: 0s; }

.theme-dark-blue .bs-datepicker-head {
  background-color: #337ab7; }

.theme-dark-blue .btn-today-wrapper .btn-success, .theme-dark-blue .btn-clear-wrapper .btn-success {
  background-color: #337ab7;
  border-color: #337ab7; }

.theme-dark-blue .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active:focus, .theme-dark-blue .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: none; }

.theme-dark-blue .btn-today-wrapper .btn-success:focus, .theme-dark-blue .btn-clear-wrapper .btn-success:focus {
  box-shadow: none; }

.theme-dark-blue .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active, .theme-dark-blue .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active {
  background-color: #266498;
  border-color: #266498; }

.theme-dark-blue .btn-today-wrapper .btn-success:hover, .theme-dark-blue .btn-clear-wrapper .btn-success:hover {
  background-color: #2C6FA9;
  border-color: #2C6FA9; }

.theme-dark-blue .bs-datepicker-predefined-btns button.selected {
  background-color: #337ab7; }

.theme-dark-blue .bs-datepicker-body table td span.selected,
.theme-dark-blue .bs-datepicker-body table td.selected span,
.theme-dark-blue .bs-datepicker-body table td span[class*="select-"]:after,
.theme-dark-blue .bs-datepicker-body table td[class*="select-"] span:after {
  background-color: #337ab7; }

.theme-dark-blue .bs-datepicker-body table td.week span {
  color: #337ab7; }

.theme-dark-blue .bs-datepicker-body table td.active-week span:hover {
  cursor: pointer;
  background-color: #337ab7;
  color: #fff;
  opacity: 0.5;
  transition: 0s; }

.theme-red .bs-datepicker-head {
  background-color: #d9534f; }

.theme-red .btn-today-wrapper .btn-success, .theme-red .btn-clear-wrapper .btn-success {
  background-color: #d9534f;
  border-color: #d9534f; }

.theme-red .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active:focus, .theme-red .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: none; }

.theme-red .btn-today-wrapper .btn-success:focus, .theme-red .btn-clear-wrapper .btn-success:focus {
  box-shadow: none; }

.theme-red .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active, .theme-red .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active {
  background-color: #D23531;
  border-color: #D23531; }

.theme-red .btn-today-wrapper .btn-success:hover, .theme-red .btn-clear-wrapper .btn-success:hover {
  background-color: #E33732;
  border-color: #E33732; }

.theme-red .bs-datepicker-predefined-btns button.selected {
  background-color: #d9534f; }

.theme-red .bs-datepicker-body table td span.selected,
.theme-red .bs-datepicker-body table td.selected span,
.theme-red .bs-datepicker-body table td span[class*="select-"]:after,
.theme-red .bs-datepicker-body table td[class*="select-"] span:after {
  background-color: #d9534f; }

.theme-red .bs-datepicker-body table td.week span {
  color: #d9534f; }

.theme-red .bs-datepicker-body table td.active-week span:hover {
  cursor: pointer;
  background-color: #d9534f;
  color: #fff;
  opacity: 0.5;
  transition: 0s; }

.theme-orange .bs-datepicker-head {
  background-color: #f0ad4e; }

.theme-orange .btn-today-wrapper .btn-success, .theme-orange .btn-clear-wrapper .btn-success {
  background-color: #f0ad4e;
  border-color: #f0ad4e; }

.theme-orange .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active:focus, .theme-orange .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: none; }

.theme-orange .btn-today-wrapper .btn-success:focus, .theme-orange .btn-clear-wrapper .btn-success:focus {
  box-shadow: none; }

.theme-orange .btn-today-wrapper .btn-success:not(:disabled):not(.disabled):active, .theme-orange .btn-clear-wrapper .btn-success:not(:disabled):not(.disabled):active {
  background-color: #ED9C29;
  border-color: #ED9C29; }

.theme-orange .btn-today-wrapper .btn-success:hover, .theme-orange .btn-clear-wrapper .btn-success:hover {
  background-color: #FFAC35;
  border-color: #FFAC35; }

.theme-orange .bs-datepicker-predefined-btns button.selected {
  background-color: #f0ad4e; }

.theme-orange .bs-datepicker-body table td span.selected,
.theme-orange .bs-datepicker-body table td.selected span,
.theme-orange .bs-datepicker-body table td span[class*="select-"]:after,
.theme-orange .bs-datepicker-body table td[class*="select-"] span:after {
  background-color: #f0ad4e; }

.theme-orange .bs-datepicker-body table td.week span {
  color: #f0ad4e; }

.theme-orange .bs-datepicker-body table td.active-week span:hover {
  cursor: pointer;
  background-color: #f0ad4e;
  color: #fff;
  opacity: 0.5;
  transition: 0s; }

/*# sourceMappingURL=bs-datepicker.css.map */
@charset "UTF-8";
:root {
  --dt-row-selected: 13, 110, 253;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-selected-link: 9, 10, 11;
  --dt-row-stripe: 0, 0, 0;
  --dt-row-hover: 0, 0, 0;
  --dt-column-ordering: 0, 0, 0;
  --dt-html-background: white;
}
:root.dark {
  --dt-html-background: rgb(33, 37, 41);
}

table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}
table.dataTable td.dt-control:before {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  content: "▶";
}
table.dataTable tr.dt-hasChild td.dt-control:before {
  content: "▼";
}

html.dark table.dataTable td.dt-control:before {
  color: rgba(255, 255, 255, 0.5);
}
html.dark table.dataTable tr.dt-hasChild td.dt-control:before {
  color: rgba(255, 255, 255, 0.5);
}

table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  position: absolute;
  display: block;
  opacity: 0.125;
  right: 10px;
  line-height: 9px;
  font-size: 0.8em;
}
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
  bottom: 50%;
  content: "▲";
  content: "▲"/"";
}
table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  top: 50%;
  content: "▼";
  content: "▼"/"";
}
table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:after {
  opacity: 0.6;
}
table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before {
  display: none;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}

div.dataTables_scrollBody > table.dataTable > thead > tr > th:before, div.dataTables_scrollBody > table.dataTable > thead > tr > th:after,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:before,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:after {
  display: none;
}

div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 2px;
  z-index: 10;
}
div.dataTables_processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}
div.dataTables_processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0d6efd;
  background: rgb(var(--dt-row-selected));
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div.dataTables_processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dataTables_processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}
table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}
table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}
table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}
table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}
table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: left;
}
table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}
table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}
table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}
table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}
table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}
table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}
table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}
table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}
table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}
table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
   * Header and footer styles
   */
  /*
   * Body styles
   */
}
table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold;
}
table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable > thead > tr > th:active,
table.dataTable > thead > tr > td:active {
  outline: none;
}
table.dataTable > tfoot > tr > th,
table.dataTable > tfoot > tr > td {
  padding: 10px 10px 6px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable tbody tr {
  background-color: transparent;
}
table.dataTable tbody tr.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
  color: white;
  color: rgb(var(--dt-row-selected-text));
}
table.dataTable tbody tr.selected a {
  color: #090a0b;
  color: rgb(var(--dt-row-selected-link));
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px;
}
table.dataTable.row-border > tbody > tr > th,
table.dataTable.row-border > tbody > tr > td, table.dataTable.display > tbody > tr > th,
table.dataTable.display > tbody > tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.row-border > tbody > tr:first-child > th,
table.dataTable.row-border > tbody > tr:first-child > td, table.dataTable.display > tbody > tr:first-child > th,
table.dataTable.display > tbody > tr:first-child > td {
  border-top: none;
}
table.dataTable.row-border > tbody > tr.selected + tr.selected > td, table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: #0262ef;
}
table.dataTable.cell-border > tbody > tr > th,
table.dataTable.cell-border > tbody > tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border > tbody > tr > th:first-child,
table.dataTable.cell-border > tbody > tr > td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
table.dataTable.cell-border > tbody > tr:first-child > th,
table.dataTable.cell-border > tbody > tr:first-child > td {
  border-top: none;
}
table.dataTable.stripe > tbody > tr.odd > *, table.dataTable.display > tbody > tr.odd > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
}
table.dataTable.stripe > tbody > tr.odd.selected > *, table.dataTable.display > tbody > tr.odd.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.923);
}
table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
}
table.dataTable.hover > tbody > tr.selected:hover > *, table.dataTable.display > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px #0d6efd !important;
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1) !important;
}
table.dataTable.order-column > tbody tr > .sorting_1,
table.dataTable.order-column > tbody tr > .sorting_2,
table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1,
table.dataTable.display > tbody tr > .sorting_2,
table.dataTable.display > tbody tr > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
}
table.dataTable.order-column > tbody tr.selected > .sorting_1,
table.dataTable.order-column > tbody tr.selected > .sorting_2,
table.dataTable.order-column > tbody tr.selected > .sorting_3, table.dataTable.display > tbody tr.selected > .sorting_1,
table.dataTable.display > tbody tr.selected > .sorting_2,
table.dataTable.display > tbody tr.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}
table.dataTable.display > tbody > tr.odd > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
}
table.dataTable.display > tbody > tr.odd > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.047);
}
table.dataTable.display > tbody > tr.odd > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.039);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.954);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.947);
}
table.dataTable.display > tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.939);
}
table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.019);
}
table.dataTable.display > tbody > tr.even > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.011);
}
table.dataTable.display > tbody > tr.even > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.003);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.911);
}
table.dataTable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.903);
}
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.082);
}
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.074);
}
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.062);
}
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.982);
}
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.974);
}
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.962);
}
table.dataTable.no-footer {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
table.dataTable.compact thead th,
table.dataTable.compact thead td,
table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td,
table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px;
}

table.dataTable th,
table.dataTable td {
  box-sizing: content-box;
}

/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
}
.dataTables_wrapper .dataTables_length {
  float: left;
}
.dataTables_wrapper .dataTables_length select {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
  padding: 4px;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}
.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  color: inherit;
  margin-left: 3px;
}
.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: inherit !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.05);
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111;
  background-color: #111;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111 100%);
  /* W3C */
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #0c0c0c;
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* FF3.6+ */
  /* IE10+ */
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111;
}
.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: inherit;
}
.dataTables_wrapper .dataTables_scroll {
  clear: both;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  -webkit-overflow-scrolling: touch;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: middle;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
  border-bottom: none;
}
.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}
html.dark {
  --dt-row-hover: 255, 255, 255;
  --dt-row-stripe: 255, 255, 255;
  --dt-column-ordering: 255, 255, 255;
}
html.dark table.dataTable > thead > tr > th,
html.dark table.dataTable > thead > tr > td {
  border-bottom: 1px solid #595b5e;
}
html.dark table.dataTable > thead > tr > th:active,
html.dark table.dataTable > thead > tr > td:active {
  outline: none;
}
html.dark table.dataTable > tfoot > tr > th,
html.dark table.dataTable > tfoot > tr > td {
  border-top: 1px solid #595b5e;
}
html.dark table.dataTable.row-border > tbody > tr > th,
html.dark table.dataTable.row-border > tbody > tr > td, html.dark table.dataTable.display > tbody > tr > th,
html.dark table.dataTable.display > tbody > tr > td {
  border-top: 1px solid #404346;
}
html.dark table.dataTable.row-border > tbody > tr.selected + tr.selected > td, html.dark table.dataTable.display > tbody > tr.selected + tr.selected > td {
  border-top-color: #0257d5;
}
html.dark table.dataTable.cell-border > tbody > tr > th,
html.dark table.dataTable.cell-border > tbody > tr > td {
  border-top: 1px solid #404346;
  border-right: 1px solid #404346;
}
html.dark table.dataTable.cell-border > tbody > tr > th:first-child,
html.dark table.dataTable.cell-border > tbody > tr > td:first-child {
  border-left: 1px solid #404346;
}
html.dark .dataTables_wrapper .dataTables_filter input,
html.dark .dataTables_wrapper .dataTables_length select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--dt-html-background);
}
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: 1px solid #595b5e;
  background: rgba(255, 255, 255, 0.15);
}
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  color: #666 !important;
}
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: 1px solid #353535;
  background: #353535;
}
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:active {
  background: #3a3a3a;
}


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