:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}
.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}
@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
  flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}
.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}
.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}
@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}
.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}
@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}
@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}
.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}
@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}
.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}
@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}
.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}
@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}
.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}
@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=ReactToastify.css.map */

.table-icon .service-fill {
  fill: #D0D7DD;
}
.ADkAkg {
  fill: #B2B8BF;
}
.ABUAQw {
  fill: #1F1F22;
}
.AK0A5w {
  fill: #FFFFFF;
}
.AOMAUA {
  fill: #1F1F22;
}
.AMAAKg {
  fill: #107F8C;
}
.ALkAVQ {
  fill: #E4E8EB;
}
.AMkAKw {
  fill: #107F8C;
}
.ACoAow {
  fill: #FFFFFF;
}
.AB4AIA {
  fill: #21A19A;
}
.AJsAKQ {
  fill: #005E7F;
}
.AMQAjA {
  fill: #B2B8BF;
}
.AKsAnw {
  fill: #B2B8BF;
}
.AP4A4A {
  fill: #B2B8BF;
}
.AJQA9g {
  fill: #D0D7DD;
}
.AC0A7g {
  fill: #B2B8BF;
}
.AKsA-A {
  fill: #D0D7DD;
}
.AJYA7A {
  fill: #B2B8BF;
}
.AAcAHA {
  fill: #565B62;
}
.ANAApQ {
  fill: #D0D7DD;
}
.AIcA_w {
  fill: #B2B8BF;
}
.AI8ADg {
  fill: #B2B8BF;
}
.ALcAqQ {
  fill: #B2B8BF;
}
.AOwA-g {
  fill: #198CFE;
}
.ANUA6A {
  fill: #1358BF;
}
.AHMA_g {
  fill: #B2B8BF;
}
.AGYAAA {
  fill: #FF9900;
}
.AFcAxA {
  fill: #B2B8BF;
}
.AJQAgQ {
  fill: #1F1F22;
}
.ACwAGQ {
  fill: #F2F4F7;
}
.ADEApg {
  fill: #565B62;
}
.APUAvw {
  fill: #B2B8BF;
}
.AMsAgw {
  fill: #565B62;
}
.AJsA8w {
  fill: #E4E8EB;
}
.APYAZA {
  fill: #B2B8BF;
}
.AI4Abg {
  fill: #B2B8BF;
}
.ABYAhQ {
  fill: #B2B8BF;
}
.APgA0Q {
  fill: #FFFFFF;
}
.ACAAiQ {
  fill: #1F1F22;
}
.ADUArg {
  fill: #1F1F22;
}
.AOIA5A {
  fill: #7D838A;
}
.ABgAfQ {
  fill: #2D2D30;
}
.AG4AAg {
  fill: #E4E8EB;
}
.AJEAlg {
  fill: #565B62;
}
.ABoAyA {
  fill: #B2B8BF;
}
.ABIASg {
  fill: #D0D7DD;
}
.AJ0AVg {
  fill: #B2B8BF;
}
.ANcA2Q {
  fill: #7D838A;
}
.AMYAjA {
  fill: #FFFFFF;
}
.AKEA0g {
  fill: #FFFFFF;
}
.AM0AGg {
  fill: #B2B8BF;
}
.APEAAQ {
  fill: #E4E8EB;
}
.AAMA4g {
  fill: #565B62;
}
.AIQAjw {
  fill: #FFFFFF;
}
.AIAAsw {
  fill: #7D838A;
}
.ADQA7Q {
  fill: #B2B8BF;
}
.AKsAjA {
  fill: #21A19A;
}
.AKoAqw {
  fill: #107F8C;
}
.AEEA7g {
  fill: #565B62;
}
.AJAA6w {
  fill: #1F1F22;
}
.AH4ADg {
  fill: #565B62;
}
.AAQA4w {
  fill: #565B62;
}
.ABMAIg {
  fill: #E4E8EB;
}
.AHUAdg {
  fill: #FFFFFF;
}
.AJEA5w {
  fill: #B2B8BF;
}
.AL8ADg {
  fill: #B2B8BF;
}
.AIMABA {
  fill: #B2B8BF;
}
.AAUAuw {
  fill: #565B62;
}
.ADkAqw {
  fill: #E4E8EB;
}
.ADMA4g {
  fill: #565B62;
}
.ANcAWQ {
  fill: #E4E8EB;
}
.APcA2A {
  fill: #565B62;
}
.AKIA9A {
  fill: #21A19A;
}
@media (hover: hover) and (pointer: fine), only screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  tr:hover button:enabled .table-icon .service-fill {
    fill: #B2B8BF;
  }
  tr:hover button:enabled:hover .table-icon .service-fill {
    fill: #7D838A;
  }
  .hoverable:hover .AKsAnw {
    fill: #21A19A;
  }
  .hoverable:hover .AP4A4A {
    fill: #107F8C;
  }
  .hoverable:hover .AJQA9g {
    fill: #E4E8EB;
  }
  .hoverable:hover .AC0A7g {
    fill: #B2B8BF;
  }
  .hoverable:hover .AKsA-A {
    fill: #E4E8EB;
  }
  .hoverable:hover .AJYA7A {
    fill: #7D838A;
  }
  .hoverable:hover .AAcAHA {
    fill: #B2B8BF;
  }
  .hoverable:hover .ANAApQ {
    fill: #FFFFFF;
  }
  .hoverable:hover .AIcA_w {
    fill: #E4E8EB;
  }
  .hoverable:hover .AI8ADg {
    fill: #107F8C;
  }
  .hoverable:hover .ALcAqQ {
    fill: #107F8C;
  }
  .hoverable:hover .AOwA-g {
    fill: #21A19A;
  }
  .hoverable:hover .ANUA6A {
    fill: #107F8C;
  }
  .hoverable:hover .AHMA_g {
    fill: #21A19A;
  }
  .hoverable:hover .AGYAAA {
    fill: #FF9900;
  }
  .hoverable:hover .AFcAxA {
    fill: #7D838A;
  }
  .hoverable:hover .AJQAgQ {
    fill: #1F1F22;
  }
  .hoverable:hover .ACwAGQ {
    fill: #E4E8EB;
  }
  .hoverable:hover .ADEApg {
    fill: #1F1F22;
  }
  .hoverable:hover .APUAvw {
    fill: #7D838A;
  }
  .hoverable:hover .AMsAgw {
    fill: #005E7F;
  }
  .hoverable:hover .AJsA8w {
    fill: #90D0CC;
  }
  .hoverable:hover .APgA0Q {
    fill: #FFFFFF;
  }
  .hoverable:hover .ACAAiQ {
    fill: #1F1F22;
  }
  .hoverable:hover .ADUArg {
    fill: #1F1F22;
  }
  .hoverable:hover .AOIA5A {
    fill: #E4E8EB;
  }
  .hoverable:hover .ABgAfQ {
    fill: #2D2D30;
  }
  .hoverable:hover .AG4AAg {
    fill: #E4E8EB;
  }
  .hoverable:hover .AJEAlg {
    fill: #565B62;
  }
  .hoverable:hover .ABoAyA {
    fill: #565B62;
  }
  .hoverable:hover .ABIASg {
    fill: #FFFFFF;
  }
  .hoverable:hover .AJ0AVg {
    fill: #E4E8EB;
  }
  .hoverable:hover .ANcA2Q {
    fill: #565B62;
  }
  .hoverable:hover .AMYAjA {
    fill: #FFFFFF;
  }
  .hoverable:hover .AKEA0g {
    fill: #FFFFFF;
  }
  .hoverable:hover .AM0AGg {
    fill: #7D838A;
  }
  .hoverable:hover .APEAAQ {
    fill: #21A19A;
  }
  .hoverable:hover .AAMA4g {
    fill: #107F8C;
  }
  .hoverable:hover .AIQAjw {
    fill: #FFFFFF;
  }
  .hoverable:hover .AIAAsw {
    fill: #565B62;
  }
  .hoverable:hover .ADQA7Q {
    fill: #E4E8EB;
  }
  .hoverable:hover .AKsAjA {
    fill: #107F8C;
  }
  .hoverable:hover .AKoAqw {
    fill: #005E7F;
  }
  .hoverable:hover .AEEA7g {
    fill: #7D838A;
  }
  .hoverable:hover .AJAA6w {
    fill: #1F1F22;
  }
  .hoverable:hover .AH4ADg {
    fill: #E4E8EB;
  }
  .hoverable:hover .AAQA4w {
    fill: #1F1F22;
  }
  .hoverable:hover .AJEA5w {
    fill: #DB1237;
  }
  .hoverable:hover .AL8ADg {
    fill: #21A19A;
  }
  .hoverable:hover .AIMABA {
    fill: #21A19A;
  }
  .hoverable:hover .AAUAuw {
    fill: #DB1237;
  }
  .hoverable:hover .ADkAqw {
    fill: #FFFFFF;
  }
  .hoverable:hover .ADMA4g {
    fill: #21A19A;
  }
  .hoverable:hover .ANcAWQ {
    fill: #FFFFFF;
  }
  .hoverable:hover .APcA2A {
    fill: #21A19A;
  }
}
tr.selected button:enabled .table-icon .service-fill {
  fill: #B2B8BF;
}
.hoverable:not(:disabled):active .ADkAkg,
.hoverable.active .ADkAkg {
  fill: #E4E8EB;
}
.hoverable:not(:disabled):active .ABUAQw,
.hoverable.active .ABUAQw {
  fill: #1F1F22;
}
.hoverable:not(:disabled):active .AK0A5w,
.hoverable.active .AK0A5w {
  fill: #FFFFFF;
}
.hoverable:not(:disabled):active .AOMAUA,
.hoverable.active .AOMAUA {
  fill: #7D838A;
}
.hoverable:not(:disabled):active .AMQAjA,
.hoverable.active .AMQAjA {
  fill: #D0D7DD;
}
.hoverable:not(:disabled):active .AKsAnw,
.hoverable.active .AKsAnw {
  fill: #21A19A;
}
.hoverable:not(:disabled):active .AP4A4A,
.hoverable.active .AP4A4A {
  fill: #107F8C;
}
.hoverable:not(:disabled):active .AJQA9g,
.hoverable.active .AJQA9g {
  fill: #D0D7DD;
}
.hoverable:not(:disabled):active .AC0A7g,
.hoverable.active .AC0A7g {
  fill: #565B62;
}
.hoverable:not(:disabled):active .AKsA-A,
.hoverable.active .AKsA-A {
  fill: #E4E8EB;
}
.hoverable:not(:disabled):active .AJYA7A,
.hoverable.active .AJYA7A {
  fill: #7D838A;
}
.hoverable:not(:disabled):active .AAcAHA,
.hoverable.active .AAcAHA {
  fill: #B2B8BF;
}
.hoverable:not(:disabled):active .ANAApQ,
.hoverable.active .ANAApQ {
  fill: #FFFFFF;
}
.hoverable:not(:disabled):active .AIcA_w,
.hoverable.active .AIcA_w {
  fill: #E4E8EB;
}
.hoverable:not(:disabled):active .AI8ADg,
.hoverable.active .AI8ADg {
  fill: #107F8C;
}
.hoverable:not(:disabled):active .ALcAqQ,
.hoverable.active .ALcAqQ {
  fill: #21A19A;
}
.hoverable:not(:disabled):active .AOwA-g,
.hoverable.active .AOwA-g {
  fill: #1358BF;
}
.hoverable:not(:disabled):active .ANUA6A,
.hoverable.active .ANUA6A {
  fill: #0F5498;
}
.hoverable:not(:disabled):active .AHMA_g,
.hoverable.active .AHMA_g {
  fill: #21A19A;
}
.hoverable:not(:disabled):active .AGYAAA,
.hoverable.active .AGYAAA {
  fill: #FF9900;
}
.hoverable:not(:disabled):active .AFcAxA,
.hoverable.active .AFcAxA {
  fill: #7D838A;
}
.hoverable:not(:disabled):active .AJQAgQ,
.hoverable.active .AJQAgQ {
  fill: #1F1F22;
}
.hoverable:not(:disabled):active .ACwAGQ,
.hoverable.active .ACwAGQ {
  fill: #E4E8EB;
}
.hoverable:not(:disabled):active .ADEApg,
.hoverable.active .ADEApg {
  fill: #1F1F22;
}
.hoverable:not(:disabled):active .APUAvw,
.hoverable.active .APUAvw {
  fill: #7D838A;
}
.hoverable:not(:disabled):active .AMsAgw,
.hoverable.active .AMsAgw {
  fill: #005E7F;
}
.hoverable:not(:disabled):active .AJsA8w,
.hoverable.active .AJsA8w {
  fill: #90D0CC;
}
.hoverable:not(:disabled):active .APYAZA,
.hoverable.active .APYAZA {
  fill: #21A19A;
}
.hoverable:not(:disabled):active .AI4Abg,
.hoverable.active .AI4Abg {
  fill: #107F8C;
}
.hoverable:not(:disabled):active .ABYAhQ,
.hoverable.active .ABYAhQ {
  fill: #198CFE;
}
.hoverable:not(:disabled):active .APgA0Q,
.hoverable.active .APgA0Q {
  fill: #FFFFFF;
}
.hoverable:not(:disabled):active .ACAAiQ,
.hoverable.active .ACAAiQ {
  fill: #1F1F22;
}
.hoverable:not(:disabled):active .ADUArg,
.hoverable.active .ADUArg {
  fill: #1F1F22;
}
.hoverable:not(:disabled):active .AOIA5A,
.hoverable.active .AOIA5A {
  fill: #E4E8EB;
}
.hoverable:not(:disabled):active .ABgAfQ,
.hoverable.active .ABgAfQ {
  fill: #2D2D30;
}
.hoverable:not(:disabled):active .AG4AAg,
.hoverable.active .AG4AAg {
  fill: #E4E8EB;
}
.hoverable:not(:disabled):active .AJEAlg,
.hoverable.active .AJEAlg {
  fill: #565B62;
}
.hoverable:not(:disabled):active .ABoAyA,
.hoverable.active .ABoAyA {
  fill: #565B62;
}
.hoverable:not(:disabled):active .ABIASg,
.hoverable.active .ABIASg {
  fill: #FFFFFF;
}
.hoverable:not(:disabled):active .AJ0AVg,
.hoverable.active .AJ0AVg {
  fill: #E4E8EB;
}
.hoverable:not(:disabled):active .ANcA2Q,
.hoverable.active .ANcA2Q {
  fill: #565B62;
}
.hoverable:not(:disabled):active .AMYAjA,
.hoverable.active .AMYAjA {
  fill: #FFFFFF;
}
.hoverable:not(:disabled):active .AKEA0g,
.hoverable.active .AKEA0g {
  fill: #FFFFFF;
}
.hoverable:not(:disabled):active .AM0AGg,
.hoverable.active .AM0AGg {
  fill: #7D838A;
}
.hoverable:not(:disabled):active .APEAAQ,
.hoverable.active .APEAAQ {
  fill: #21A19A;
}
.hoverable:not(:disabled):active .AAMA4g,
.hoverable.active .AAMA4g {
  fill: #107F8C;
}
.hoverable:not(:disabled):active .AIAAsw,
.hoverable.active .AIAAsw {
  fill: #1F1F22;
}
.hoverable:not(:disabled):active .ADQA7Q,
.hoverable.active .ADQA7Q {
  fill: #F2F4F7;
}
.hoverable:not(:disabled):active .AKsAjA,
.hoverable.active .AKsAjA {
  fill: #107F8C;
}
.hoverable:not(:disabled):active .AKoAqw,
.hoverable.active .AKoAqw {
  fill: #005E7F;
}
.hoverable:not(:disabled):active .AEEA7g,
.hoverable.active .AEEA7g {
  fill: #7D838A;
}
.hoverable:not(:disabled):active .AJEA5w,
.hoverable.active .AJEA5w {
  fill: #C11030;
}
.hoverable:not(:disabled):active .AL8ADg,
.hoverable.active .AL8ADg {
  fill: #90D0CC;
}
.hoverable:not(:disabled):active .AIMABA,
.hoverable.active .AIMABA {
  fill: #107F8C;
}
.hoverable:not(:disabled):active .AAUAuw,
.hoverable.active .AAUAuw {
  fill: #C11030;
}
.hoverable:not(:disabled):active .ADkAqw,
.hoverable.active .ADkAqw {
  fill: #FFFFFF;
}
.hoverable:not(:disabled):active .ADMA4g,
.hoverable.active .ADMA4g {
  fill: #90D0CC;
}
.hoverable:not(:disabled):active .ANcAWQ,
.hoverable.active .ANcAWQ {
  fill: #1F1F22;
}
.hoverable:not(:disabled):active .APcA2A,
.hoverable.active .APcA2A {
  fill: #107F8C;
}
.hoverable:disabled .AMAAKg,
.hoverable.disabled .AMAAKg {
  fill: #B2B8BF;
}
.hoverable:disabled .ALkAVQ,
.hoverable.disabled .ALkAVQ {
  fill: #E4E8EB;
}
.hoverable:disabled .AMkAKw,
.hoverable.disabled .AMkAKw {
  fill: #D0D7DD;
}
.hoverable:disabled .ACoAow,
.hoverable.disabled .ACoAow {
  fill: #FFFFFF;
}
.hoverable:disabled .AB4AIA,
.hoverable.disabled .AB4AIA {
  fill: #B2B8BF;
}
.hoverable:disabled .AJsAKQ,
.hoverable.disabled .AJsAKQ {
  fill: #D0D7DD;
}
.hoverable:disabled .AKsAnw,
.hoverable.disabled .AKsAnw {
  fill: #565B62;
}
.hoverable:disabled .AP4A4A,
.hoverable.disabled .AP4A4A {
  fill: #D0D7DD;
}
.hoverable:disabled .AJQA9g,
.hoverable.disabled .AJQA9g {
  fill: #565B62;
}
.hoverable:disabled .AC0A7g,
.hoverable.disabled .AC0A7g {
  fill: #D0D7DD;
}
.hoverable:disabled .AKsA-A,
.hoverable.disabled .AKsA-A {
  fill: #565B62;
}
.hoverable:disabled .AJYA7A,
.hoverable.disabled .AJYA7A {
  fill: #D0D7DD;
}
.hoverable:disabled .AIcA_w,
.hoverable.disabled .AIcA_w {
  fill: #565B62;
}
.hoverable:disabled .ALcAqQ,
.hoverable.disabled .ALcAqQ {
  fill: #565B62;
}
.hoverable:disabled .AFcAxA,
.hoverable.disabled .AFcAxA {
  fill: #2D2D30;
}
.hoverable:disabled .AJQAgQ,
.hoverable.disabled .AJQAgQ {
  fill: #565B62;
}
.hoverable:disabled .ACwAGQ,
.hoverable.disabled .ACwAGQ {
  fill: #F2F4F7;
}
.hoverable:disabled .ADEApg,
.hoverable.disabled .ADEApg {
  fill: #D0D7DD;
}
.hoverable:disabled .APUAvw,
.hoverable.disabled .APUAvw {
  fill: #565B62;
}
.hoverable:disabled .AMsAgw,
.hoverable.disabled .AMsAgw {
  fill: #565B62;
}
.hoverable:disabled .AJsA8w,
.hoverable.disabled .AJsA8w {
  fill: #F2F4F7;
}
.hoverable:disabled .APgA0Q,
.hoverable.disabled .APgA0Q {
  fill: #FFFFFF;
}
.hoverable:disabled .ACAAiQ,
.hoverable.disabled .ACAAiQ {
  fill: #1F1F22;
}
.hoverable:disabled .ADUArg,
.hoverable.disabled .ADUArg {
  fill: #D0D7DD;
}
.hoverable:disabled .AOIA5A,
.hoverable.disabled .AOIA5A {
  fill: #565B62;
}
.hoverable:disabled .ABgAfQ,
.hoverable.disabled .ABgAfQ {
  fill: #2D2D30;
}
.hoverable:disabled .AG4AAg,
.hoverable.disabled .AG4AAg {
  fill: #565B62;
}
.hoverable:disabled .AJEAlg,
.hoverable.disabled .AJEAlg {
  fill: #D0D7DD;
}
.hoverable:disabled .ABoAyA,
.hoverable.disabled .ABoAyA {
  fill: #E4E8EB;
}
.hoverable:disabled .ABIASg,
.hoverable.disabled .ABIASg {
  fill: #565B62;
}
.hoverable:disabled .AMYAjA,
.hoverable.disabled .AMYAjA {
  fill: #7D838A;
}
.hoverable:disabled .AIAAsw,
.hoverable.disabled .AIAAsw {
  fill: #D0D7DD;
}
.hoverable:disabled .ADQA7Q,
.hoverable.disabled .ADQA7Q {
  fill: #565B62;
}
.hoverable:disabled .AKsAjA,
.hoverable.disabled .AKsAjA {
  fill: #565B62;
}
.hoverable:disabled .AKoAqw,
.hoverable.disabled .AKoAqw {
  fill: #90D0CC;
}
.hoverable:disabled .ABMAIg,
.hoverable.disabled .ABMAIg {
  fill: #565B62;
}
.hoverable:disabled .AHUAdg,
.hoverable.disabled .AHUAdg {
  fill: #D0D7DD;
}
.hoverable:disabled .AKIA9A,
.hoverable.disabled .AKIA9A {
  fill: #565B62;
}

:root {
  --triplex-Accent-500-13-0-2: #FFDD64;
  --triplex-Basic-0-13-0-2: transparent;
  --triplex-Basic-100-13-0-2: #FFFFFF;
  --triplex-Basic-300-13-0-2: #565B62;
  --triplex-Basic-500-13-0-2: #2D2D30;
  --triplex-Basic-700-13-0-2: #1F1F22;
  --triplex-Basic-900-13-0-2: #181819;
  --triplex-Error-100-13-0-2: #FFE5E8;
  --triplex-Error-300-13-0-2: #FFBDC5;
  --triplex-Error-500-13-0-2: #DB1237;
  --triplex-Error-700-13-0-2: #C11030;
  --triplex-Error-900-13-0-2: #A80E2A;
  --triplex-Info-100-13-0-2: #F2F8FF;
  --triplex-Info-300-13-0-2: #93B7ED;
  --triplex-Info-500-13-0-2: #198CFE;
  --triplex-Info-700-13-0-2: #1358BF;
  --triplex-Info-900-13-0-2: #0F5498;
  --triplex-Neutral-100-13-0-2: #F2F4F7;
  --triplex-Neutral-300-13-0-2: #E4E8EB;
  --triplex-Neutral-500-13-0-2: #D0D7DD;
  --triplex-Neutral-700-13-0-2: #B2B8BF;
  --triplex-Neutral-900-13-0-2: #7D838A;
  --triplex-Primary-100-13-0-2: #E5FCF7;
  --triplex-Primary-300-13-0-2: #90D0CC;
  --triplex-Primary-500-13-0-2: #21A19A;
  --triplex-Primary-700-13-0-2: #107F8C;
  --triplex-Primary-900-13-0-2: #005E7F;
  --triplex-Warning-100-13-0-2: #FFF5E6;
  --triplex-Warning-300-13-0-2: #FFD9A0;
  --triplex-Warning-500-13-0-2: #FFB13B;
  --triplex-Warning-700-13-0-2: #FF9900;
  --triplex-Warning-900-13-0-2: #E58A00;
  --triplex-AccordionForm-Background_Default-13-0-2: #F2F4F7;
  --triplex-AccordionForm-Background_Hover-13-0-2: #E4E8EB;
  --triplex-AccordionForm-BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-AccordionForm-BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-AccordionForm-Divider_Color-13-0-2: #D0D7DD;
  --triplex-AccordionForm-Step_Line_Default-13-0-2: #D0D7DD;
  --triplex-AccordionForm-Step_Line_Error-13-0-2: #C11030;
  --triplex-AccordionForm-Step_Line_Success-13-0-2: #107F8C;
  --triplex-AccordionForm-Step_Line_Warning-13-0-2: #FF9900;
  --triplex-AccordionForm-Title_Color_Default-13-0-2: #1F1F22;
  --triplex-AccordionForm-Title_Color_Disabled-13-0-2: #B2B8BF;
  --triplex-AccordionView-Background-13-0-2: #FFFFFF;
  --triplex-AccordionView-BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-AccordionView-BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-AccordionView-Header_Color-13-0-2: #1F1F22;
  --triplex-AlertContext-Error_Color-13-0-2: #C11030;
  --triplex-AlertContext-Info_Color-13-0-2: #1F1F22;
  --triplex-AlertContext-System_Color-13-0-2: #1F1F22;
  --triplex-AlertContext-Warning_Color-13-0-2: #1F1F22;
  --triplex-AlertProcess-Color-13-0-2: #1F1F22;
  --triplex-AlertProcess-Error_Background-13-0-2: #FFE5E8;
  --triplex-AlertProcess-Error_Border_Color-13-0-2: #C11030;
  --triplex-AlertProcess-Feature_Background-13-0-2: #E5FCF7;
  --triplex-AlertProcess-Feature_Border_Color-13-0-2: #21A19A;
  --triplex-AlertProcess-Info_Background-13-0-2: #F2F8FF;
  --triplex-AlertProcess-Info_Border_Color-13-0-2: #1358BF;
  --triplex-AlertProcess-Warning_Background-13-0-2: #FFF5E6;
  --triplex-AlertProcess-Warning_Border_Color-13-0-2: #FF9900;
  --triplex-Backdrop-background-13-0-2: rgba(31, 31, 34, 0.56);
  --triplex-Body-Background_Darkgray-13-0-2: #7D838A;
  --triplex-Body-Background_Gray-13-0-2: #F2F4F7;
  --triplex-Body-Background_White-13-0-2: #FFFFFF;
  --triplex-Button-General_Background_Active-13-0-2: #005E7F;
  --triplex-Button-General_Background_Default-13-0-2: #107F8C;
  --triplex-Button-General_Background_Disabled-13-0-2: #90D0CC;
  --triplex-Button-General_Background_Hover-13-0-2: #21A19A;
  --triplex-Button-General_Caret_Color_Default-13-0-2: #FFFFFF;
  --triplex-Button-General_Caret_Color_Disabled-13-0-2: #FFFFFF;
  --triplex-Button-General_Color_Active-13-0-2: #FFFFFF;
  --triplex-Button-General_Color_Default-13-0-2: #FFFFFF;
  --triplex-Button-General_Color_Disabled-13-0-2: #FFFFFF;
  --triplex-Button-General_Color_Hover-13-0-2: #FFFFFF;
  --triplex-Button-General_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64 inset;
  --triplex-Button-Secondary_Background_Active-13-0-2: #D0D7DD;
  --triplex-Button-Secondary_Background_Default-13-0-2: #FFFFFF;
  --triplex-Button-Secondary_Background_Disabled-13-0-2: #FFFFFF;
  --triplex-Button-Secondary_Background_Hover-13-0-2: #FFFFFF;
  --triplex-Button-Secondary_Caret_Color_Active-13-0-2: #1F1F22;
  --triplex-Button-Secondary_Caret_Color_Default-13-0-2: #1F1F22;
  --triplex-Button-Secondary_Caret_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-Button-Secondary_Caret_Color_Hover-13-0-2: #1F1F22;
  --triplex-Button-Secondary_Color_Active-13-0-2: #1F1F22;
  --triplex-Button-Secondary_Color_Default-13-0-2: #1F1F22;
  --triplex-Button-Secondary_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-Button-Secondary_Color_Hover-13-0-2: #1F1F22;
  --triplex-Button-Secondary_Shadow_Active-13-0-2: 0px 0px 0px 1px #D0D7DD inset;
  --triplex-Button-Secondary_Shadow_Default-13-0-2: 0px 0px 0px 1px #D0D7DD inset;
  --triplex-Button-Secondary_Shadow_Disabled-13-0-2: 0px 0px 0px 1px #D0D7DD inset;
  --triplex-Button-Secondary_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64 inset;
  --triplex-Button-Secondary_Shadow_Hover-13-0-2: 0px 0px 0px 1px #1F1F22 inset;
  --triplex-Button-Danger_Background_Active-13-0-2: #A80E2A;
  --triplex-Button-Danger_Background_Default-13-0-2: #C11030;
  --triplex-Button-Danger_Background_Disabled-13-0-2: #FFBDC5;
  --triplex-Button-Danger_Background_Hover-13-0-2: #DB1237;
  --triplex-Button-Danger_Caret_Color_Default-13-0-2: #FFFFFF;
  --triplex-Button-Danger_Caret_Color_Disabled-13-0-2: #FFFFFF;
  --triplex-Button-Danger_Color_Active-13-0-2: #FFFFFF;
  --triplex-Button-Danger_Color_Default-13-0-2: #FFFFFF;
  --triplex-Button-Danger_Color_Disabled-13-0-2: #FFFFFF;
  --triplex-Button-Danger_Color_Hover-13-0-2: #FFFFFF;
  --triplex-Button-Danger_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64 inset;
  --triplex-Button-Dots_Background_Active-13-0-2: #D0D7DD;
  --triplex-Button-Dots_Background_Default-13-0-2: #FFFFFF;
  --triplex-Button-Dots_Background_Disabled-13-0-2: #FFFFFF;
  --triplex-Button-Dots_Background_Hover-13-0-2: #FFFFFF;
  --triplex-Button-Dots_Color_Active-13-0-2: #1F1F22;
  --triplex-Button-Dots_Color_Default-13-0-2: #1F1F22;
  --triplex-Button-Dots_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-Button-Dots_Color_Hover-13-0-2: #1F1F22;
  --triplex-Button-Dots_Shadow_Active-13-0-2: 0px 0px 0px 1px #D0D7DD inset;
  --triplex-Button-Dots_Shadow_Default-13-0-2: 0px 0px 0px 1px #D0D7DD inset;
  --triplex-Button-Dots_Shadow_Disabled-13-0-2: 0px 0px 0px 1px #D0D7DD inset;
  --triplex-Button-Dots_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64 inset;
  --triplex-Button-Dots_Shadow_Hover-13-0-2: 0px 0px 0px 1px #1F1F22 inset;
  --triplex-Button-Icon_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64;
  --triplex-Button-Link_Color_Active-13-0-2: #0F5498;
  --triplex-Button-Link_Color_Default-13-0-2: #1358BF;
  --triplex-Button-Link_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-Button-Link_Color_Hover-13-0-2: #107F8C;
  --triplex-Button-Link_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64 inset;
  --triplex-Button-Tile_Background_Active-13-0-2: #E4E8EB;
  --triplex-Button-Tile_Background_Default-13-0-2: #FFFFFF;
  --triplex-Button-Tile_Background_Disabled-13-0-2: #FFFFFF;
  --triplex-Button-Tile_Background_Hover-13-0-2: #F2F4F7;
  --triplex-Button-Tile_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64 inset;
  --triplex-Calendar-Background-13-0-2: #FFFFFF;
  --triplex-Calendar-View_Header_Color-13-0-2: #7D838A;
  --triplex-Calendar-View_Item_Background_Default-13-0-2: transparent;
  --triplex-Calendar-View_Item_Background_Hover-13-0-2: #F2F4F7;
  --triplex-Calendar-View_Item_Background_Range-13-0-2: #F2F4F7;
  --triplex-Calendar-View_Item_Background_Selected_Default-13-0-2: #107F8C;
  --triplex-Calendar-View_Item_Background_Selected_Hover-13-0-2: #21A19A;
  --triplex-Calendar-View_Item_BorderColor_Default-13-0-2: transparent;
  --triplex-Calendar-View_Item_BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-Calendar-View_Item_Color_Default-13-0-2: #1F1F22;
  --triplex-Calendar-View_Item_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-Calendar-View_Item_Color_Muted-13-0-2: #D0D7DD;
  --triplex-Calendar-View_Item_Color_Selected-13-0-2: #FFFFFF;
  --triplex-Calendar-View_Item_Mark_Background-13-0-2: #B2B8BF;
  --triplex-Card-Background-13-0-2: #FFFFFF;
  --triplex-Card-BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-Card-BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-Card-BorderColor_Hover-13-0-2: #D0D7DD;
  --triplex-Card-BorderColor_Selected-13-0-2: #107F8C;
  --triplex-Card-Shadow_Default-13-0-2: 0 1px 3px 0 rgba(31, 31, 34, 0.25);
  --triplex-Card-Shadow_Hover-13-0-2: 0 2px 7px 0 rgba(31, 31, 34, 0.25);
  --triplex-Checkbox-Background_Checked_Default-13-0-2: #107F8C;
  --triplex-Checkbox-Background_Checked_Hover-13-0-2: #21A19A;
  --triplex-Checkbox-Background_Default-13-0-2: #FFFFFF;
  --triplex-Checkbox-Background_Disabled-13-0-2: #F2F4F7;
  --triplex-Checkbox-BorderColor_Checked-13-0-2: #107F8C;
  --triplex-Checkbox-BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-Checkbox-BorderColor_Disabled-13-0-2: #D0D7DD;
  --triplex-Checkbox-BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-Checkbox-BorderColor_Hover-13-0-2: #21A19A;
  --triplex-Checkbox-Checkmark_Fill_Default-13-0-2: #FFFFFF;
  --triplex-Checkbox-Checkmark_Fill_Disabled-13-0-2: #D0D7DD;
  --triplex-Checkbox-Color_Default-13-0-2: #1F1F22;
  --triplex-Checkbox-Color_Disabled-13-0-2: #1F1F22;
  --triplex-Chip-Background_Active-13-0-2: #D0D7DD;
  --triplex-Chip-Background_Default-13-0-2: #F2F4F7;
  --triplex-Chip-Background_Disabled-13-0-2: #F2F4F7;
  --triplex-Chip-Background_Hover-13-0-2: #E4E8EB;
  --triplex-Chip-Background_Selected_Active-13-0-2: #7D838A;
  --triplex-Chip-Background_Selected_Default-13-0-2: #1F1F22;
  --triplex-Chip-Background_Selected_Disabled-13-0-2: #1F1F22;
  --triplex-Chip-Background_Selected_Hover-13-0-2: #565B62;
  --triplex-Chip-Color_Active-13-0-2: #1F1F22;
  --triplex-Chip-Color_Default-13-0-2: #1F1F22;
  --triplex-Chip-Color_Disabled-13-0-2: #B2B8BF;
  --triplex-Chip-Color_Hover-13-0-2: #1F1F22;
  --triplex-Chip-Color_Selected_Active-13-0-2: #FFFFFF;
  --triplex-Chip-Color_Selected_Default-13-0-2: #FFFFFF;
  --triplex-Chip-Color_Selected_Disabled-13-0-2: #565B62;
  --triplex-Chip-Color_Selected_Hover-13-0-2: #FFFFFF;
  --triplex-Chip-Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64 inset;
  --triplex-Confirm-Background-13-0-2: #FFE5E8;
  --triplex-Confirm-Shadow-13-0-2: 0 -1px 0 0 #C11030 inset;
  --triplex-Divider-Background-13-0-2: #D0D7DD;
  --triplex-Dropdown-Background-13-0-2: #FFFFFF;
  --triplex-Dropdown-Shadow-13-0-2: 0px 2px 7px rgba(31, 31, 34, 0.25);
  --triplex-DropdownList-Background_Active-13-0-2: #F2F4F7;
  --triplex-DropdownList-Background_Default-13-0-2: none;
  --triplex-DropdownList-Background_Selected-13-0-2: #D0D7DD;
  --triplex-DropdownList-Color-13-0-2: #1F1F22;
  --triplex-DropdownMobile-Backdrop-13-0-2: #1F1F22;
  --triplex-DropdownMobile-Border_Color-13-0-2: #D0D7DD;
  --triplex-DropdownMobile-Content_Background-13-0-2: #FFFFFF;
  --triplex-DropdownMobile-Footer_Background-13-0-2: #FFFFFF;
  --triplex-DropdownMobile-Header_Background-13-0-2: #F2F4F7;
  --triplex-DropdownMobile-Opacity-13-0-2: 0.6;
  --triplex-DropdownMobileList-Active_Background-13-0-2: #F2F4F7;
  --triplex-DropdownMobileList-Selected_Background-13-0-2: #D0D7DD;
  --triplex-Footer-Background-13-0-2: #F2F4F7;
  --triplex-Footer-Color-13-0-2: #1F1F22;
  --triplex-FormField-Description_Color_Default-13-0-2: #565B62;
  --triplex-FormField-Description_Color_Error-13-0-2: #C11030;
  --triplex-FormField-Label_Background-13-0-2: linear-gradient(transparent 8px, #FFFFFF 8px 9px, transparent 0);
  --triplex-FormField-Label_Color_Default-13-0-2: #7D838A;
  --triplex-FormField-Label_Color_Disabled-13-0-2: #7D838A;
  --triplex-FormField-Placeholder_Color-13-0-2: #B2B8BF;
  --triplex-FormField-Shadow_Default-13-0-2: 0 0 0 1px #D0D7DD inset;
  --triplex-FormField-Shadow_Disabled-13-0-2: 0 0 0 1px #D0D7DD inset;
  --triplex-FormField-Shadow_Error-13-0-2: 0 0 0 1px #C11030 inset;
  --triplex-FormField-Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64 inset;
  --triplex-Header-Background-13-0-2: #F2F4F7;
  --triplex-Header-Title_Color-13-0-2: #1F1F22;
  --triplex-Header-TitleSubhead_Color-13-0-2: #7D838A;
  --triplex-Input-Background_Default-13-0-2: #FFFFFF;
  --triplex-Input-Background_Disabled-13-0-2: #F2F4F7;
  --triplex-Input-BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-Input-BorderColor_Disabled-13-0-2: #D0D7DD;
  --triplex-Input-BorderColor_Error-13-0-2: #C11030;
  --triplex-Input-BorderColor_Focus-13-0-2: #1F1F22;
  --triplex-Input-Caret_Color-13-0-2: #1F1F22;
  --triplex-Input-Color_Default-13-0-2: #1F1F22;
  --triplex-Input-Color_Disabled-13-0-2: #7D838A;
  --triplex-Input-Placeholder_Color-13-0-2: #7D838A;
  --triplex-Label-Code_Color-13-0-2: #B2B8BF;
  --triplex-Label-Color-13-0-2: #1F1F22;
  --triplex-Label-Description_Color-13-0-2: #7D838A;
  --triplex-LightBox-Controls_Background-13-0-2: #565B62;
  --triplex-Link-BorderColor_Default-13-0-2: transparent;
  --triplex-Link-BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-Link-Line_Color_Active-13-0-2: #FFFFFF;
  --triplex-Link-Line_Color_Default-13-0-2: #FFFFFF;
  --triplex-Link-Line_Color_Hover-13-0-2: #7D838A;
  --triplex-Link-Text_Color_Active-13-0-2: #0F5498;
  --triplex-Link-Text_Color_Default-13-0-2: #1358BF;
  --triplex-Link-Text_Color_Hover-13-0-2: #107F8C;
  --triplex-ListItem-Background-13-0-2: #FFFFFF;
  --triplex-ListItem-Background_Selected-13-0-2: #F2F4F7;
  --triplex-ListItemControlsButton-Background-13-0-2: #F2F4F7;
  --triplex-ListItemControlsButton-Color-13-0-2: #1F1F22;
  --triplex-ListMaster-Background-13-0-2: #FFFFFF;
  --triplex-ListMaster-Footer_Background-13-0-2: #E4E8EB;
  --triplex-ListMaster-Footer_Color-13-0-2: #1F1F22;
  --triplex-ListMaster-Header_Background-13-0-2: #E4E8EB;
  --triplex-ListMaster-Header_Color-13-0-2: #1F1F22;
  --triplex-Marker-Background_Error-13-0-2: #DB1237;
  --triplex-Marker-Background_Success-13-0-2: #21A19A;
  --triplex-Marker-Background_Waiting-13-0-2: #B2B8BF;
  --triplex-Marker-Background_Warning-13-0-2: #FF9900;
  --triplex-MarkerStatus-Desc_Color-13-0-2: #7D838A;
  --triplex-MarkerStatus-Text_Color-13-0-2: #1F1F22;
  --triplex-Multiselect-Divider_Color-13-0-2: #D0D7DD;
  --triplex-Notification-Background-13-0-2: #FFFFFF;
  --triplex-Notification-Color-13-0-2: #1F1F22;
  --triplex-Notification-Shadow-13-0-2: 0px 2px 7px rgba(31, 31, 34, 0.25);
  --triplex-Overlay-maskBackground-13-0-2: rgba(255, 255, 255, 0.8);
  --triplex-Pagination-PageButton_Background_Default-13-0-2: transparent;
  --triplex-Pagination-PageButton_Background_Hover-13-0-2: #F2F4F7;
  --triplex-Pagination-PageButton_Background_Selected-13-0-2: #E4E8EB;
  --triplex-Pagination-PageButton_BorderColor_Default-13-0-2: transparent;
  --triplex-Pagination-PageButton_BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-Pagination-PageButton_Color-13-0-2: #1F1F22;
  --triplex-Radio-Background_Checked_Default-13-0-2: #107F8C;
  --triplex-Radio-Background_Checked_Hover-13-0-2: #21A19A;
  --triplex-Radio-Background_Default-13-0-2: #FFFFFF;
  --triplex-Radio-Background_Disabled-13-0-2: #F2F4F7;
  --triplex-Radio-BorderColor_Checked-13-0-2: #107F8C;
  --triplex-Radio-BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-Radio-BorderColor_Disabled-13-0-2: #D0D7DD;
  --triplex-Radio-BorderColor_Focused-13-0-2: #FFDD64;
  --triplex-Radio-BorderColor_Hover-13-0-2: #21A19A;
  --triplex-Radio-Color_Default-13-0-2: #1F1F22;
  --triplex-Radio-Color_Disabled-13-0-2: #1F1F22;
  --triplex-Radio-Dot_Default-13-0-2: #FFFFFF;
  --triplex-Radio-Dot_Disabled-13-0-2: #D0D7DD;
  --triplex-SMSInput-Refresh_Fill_Empty-13-0-2: #B2B8BF;
  --triplex-SMSInput-Refresh_Fill_Full-13-0-2: #565B62;
  --triplex-SegmentedControl-General_Background_Default-13-0-2: #FFFFFF;
  --triplex-SegmentedControl-General_Background_Disabled-13-0-2: #FFFFFF;
  --triplex-SegmentedControl-General_Background_Selected_Default-13-0-2: #107F8C;
  --triplex-SegmentedControl-General_Background_Selected_Disabled-13-0-2: #90D0CC;
  --triplex-SegmentedControl-General_Multiple_Background_Selected_Hover-13-0-2: #21A19A;
  --triplex-SegmentedControl-General_BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-SegmentedControl-General_BorderColor_Disabled-13-0-2: #D0D7DD;
  --triplex-SegmentedControl-General_BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-SegmentedControl-General_BorderColor_Hover-13-0-2: #1F1F22;
  --triplex-SegmentedControl-General_BorderColor_Selected_Default-13-0-2: #107F8C;
  --triplex-SegmentedControl-General_BorderColor_Selected_Disabled-13-0-2: #90D0CC;
  --triplex-SegmentedControl-General_Multiple_BorderColor_Selected_Hover-13-0-2: #21A19A;
  --triplex-SegmentedControl-General_Color_Default-13-0-2: #1F1F22;
  --triplex-SegmentedControl-General_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-SegmentedControl-General_Color_Selected_Default-13-0-2: #FFFFFF;
  --triplex-SegmentedControl-General_Color_Selected_Disabled-13-0-2: #FFFFFF;
  --triplex-SegmentedControl-Secondary_Background_Default-13-0-2: #FFFFFF;
  --triplex-SegmentedControl-Secondary_Background_Disabled-13-0-2: #FFFFFF;
  --triplex-SegmentedControl-Secondary_Background_Selected_Default-13-0-2: #D0D7DD;
  --triplex-SegmentedControl-Secondary_Background_Selected_Disabled-13-0-2: #F2F4F7;
  --triplex-SegmentedControl-Secondary_Multiple_Background_Selected_Hover-13-0-2: #E4E8EB;
  --triplex-SegmentedControl-Secondary_BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-SegmentedControl-Secondary_BorderColor_Disabled-13-0-2: #E4E8EB;
  --triplex-SegmentedControl-Secondary_BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-SegmentedControl-Secondary_BorderColor_Hover-13-0-2: #1F1F22;
  --triplex-SegmentedControl-Secondary_BorderColor_Selected_Default-13-0-2: #D0D7DD;
  --triplex-SegmentedControl-Secondary_BorderColor_Selected_Disabled-13-0-2: #F2F4F7;
  --triplex-SegmentedControl-Secondary_Multiple_BorderColor_Selected_Hover-13-0-2: #E4E8EB;
  --triplex-SegmentedControl-Secondary_Color_Default-13-0-2: #1F1F22;
  --triplex-SegmentedControl-Secondary_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-SegmentedControl-Secondary_Color_Selected_Default-13-0-2: #565B62;
  --triplex-SegmentedControl-Secondary_Color_Selected_Disabled-13-0-2: #D0D7DD;
  --triplex-Select-Background_Default-13-0-2: #FFFFFF;
  --triplex-Select-Background_Disabled-13-0-2: #F2F4F7;
  --triplex-Select-Border_Color_Default-13-0-2: #D0D7DD;
  --triplex-Select-Border_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-Select-Border_Color_Error-13-0-2: #C11030;
  --triplex-Select-Border_Color_Focus-13-0-2: #1F1F22;
  --triplex-Select-Caret_Color_Default-13-0-2: #1F1F22;
  --triplex-Select-Caret_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-Select-Color_Default-13-0-2: #1F1F22;
  --triplex-Select-Color_Disabled-13-0-2: #7D838A;
  --triplex-Select-Color_Placeholder-13-0-2: #7D838A;
  --triplex-Skeleton-BackgroundImage_Dark-13-0-2: linear-gradient(90deg, #F2F4F7 0%, #E4E8EB 71%, #F2F4F7 100%);
  --triplex-Skeleton-BackgroundImage_Light-13-0-2: linear-gradient(90deg, #FFFFFF 0%, #E4E8EB 71%, #FFFFFF 100%);
  --triplex-Slider-Dot_Background_Default-13-0-2: #107F8C;
  --triplex-Slider-Dot_Background_Disabled-13-0-2: #B2B8BF;
  --triplex-Slider-Dot_Background_Hover-13-0-2: #005E7F;
  --triplex-Slider-Dot_Inner_Background-13-0-2: #FFFFFF;
  --triplex-Slider-Mark_Color_Active-13-0-2: #1F1F22;
  --triplex-Slider-Mark_Color_Default-13-0-2: #B2B8BF;
  --triplex-Slider-Mark_Dot_Background_Default-13-0-2: #D0D7DD;
  --triplex-Slider-Mark_Dot_Background_Selected-13-0-2: #107F8C;
  --triplex-Slider-Mark_Dot_Background_Selected_Disabled-13-0-2: #B2B8BF;
  --triplex-Slider-Rail_Background-13-0-2: #D0D7DD;
  --triplex-Slider-Tooltip_Background-13-0-2: #1F1F22;
  --triplex-Slider-Tooltip_Color-13-0-2: #FFFFFF;
  --triplex-Slider-Track_Background_Default-13-0-2: #107F8C;
  --triplex-Slider-Track_Background_Disabled-13-0-2: #B2B8BF;
  --triplex-Slider-Track_Background_Hover-13-0-2: #005E7F;
  --triplex-SmallInput-Background-13-0-2: #FFFFFF;
  --triplex-Spinner-Text_Color-13-0-2: #1F1F22;
  --triplex-Spoiler-Caret_Color-13-0-2: #1F1F22;
  --triplex-Step-Color_Disabled-13-0-2: #B2B8BF;
  --triplex-Step-Color_Error-13-0-2: #FFFFFF;
  --triplex-Step-Color_Success-13-0-2: #FFFFFF;
  --triplex-Step-Color_Wait-13-0-2: #107F8C;
  --triplex-Step-Color_Warning-13-0-2: #FF9900;
  --triplex-Step-Background_Color_Disabled-13-0-2: #FFFFFF;
  --triplex-Step-Background_Color_Error-13-0-2: #C11030;
  --triplex-Step-Background_Color_Success-13-0-2: #107F8C;
  --triplex-Step-Background_Color_Wait-13-0-2: #FFFFFF;
  --triplex-Step-Background_Color_Warning-13-0-2: #FFFFFF;
  --triplex-Step-Border_Color_Disabled-13-0-2: transparent;
  --triplex-Step-Border_Color_Error-13-0-2: transparent;
  --triplex-Step-Border_Color_Success-13-0-2: transparent;
  --triplex-Step-Border_Color_Wait-13-0-2: #107F8C;
  --triplex-Step-Border_Color_Warning-13-0-2: #FF9900;
  --triplex-Stepper-Background-13-0-2: #FFFFFF;
  --triplex-Stepper-ButtonNext_Background-13-0-2: linear-gradient(to left, #FFFFFF 39.06%, transparent);
  --triplex-Stepper-ButtonPrev_Background-13-0-2: linear-gradient(to right, #FFFFFF 39.06%, transparent);
  --triplex-Stepper-Progress_Background_Default-13-0-2: #E4E8EB;
  --triplex-Stepper-Progress_Background_Filled-13-0-2: #107F8C;
  --triplex-Stepper-Step_Background_Default-13-0-2: #FFFFFF;
  --triplex-Stepper-Step_Background_Selected-13-0-2: #F2F4F7;
  --triplex-Stepper-Step_BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-Stepper-Step_BorderColor_Disabled-13-0-2: #E4E8EB;
  --triplex-Stepper-Step_BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-Stepper-Step_BorderColor_Hover-13-0-2: #107F8C;
  --triplex-Stepper-Step_Color_Default-13-0-2: #565B62;
  --triplex-Stepper-Step_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-Stepper-Step_Color_Intact-13-0-2: #7D838A;
  --triplex-Stepper-Step_Color_Selected-13-0-2: #1F1F22;
  --triplex-Stepper-Wrapper_Background-13-0-2: linear-gradient(#FFFFFF 64px, transparent 0);
  --triplex-Stepper-Wrapper_BoxShadow-13-0-2: 0 10px 15px 0 rgba(228, 232, 235, 0.5);
  --triplex-TableBasic-Background_Hover-13-0-2: #F2F4F7;
  --triplex-TableBasic-Background_Selected-13-0-2: #E4E8EB;
  --triplex-TableBasic-Color-13-0-2: #1F1F22;
  --triplex-TableBasic-FilterPanel_Background-13-0-2: #F2F4F7;
  --triplex-TableBasic-Header_Background-13-0-2: #E4E8EB;
  --triplex-TableBasic-PaginationBasic_Color-13-0-2: #1F1F22;
  --triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Default-13-0-2: #F2F4F7;
  --triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Disabled-13-0-2: #F2F4F7;
  --triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Hover-13-0-2: #E4E8EB;
  --triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Default-13-0-2: #565B62;
  --triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Disabled-13-0-2: #D0D7DD;
  --triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Hover-13-0-2: #1F1F22;
  --triplex-TableBasic-TableFooter_Background-13-0-2: #E4E8EB;
  --triplex-TableBasic-TableFooter_Highlight-13-0-2: linear-gradient(transparent, #FFFFFF);
  --triplex-TableBasic-TabsLine_BorderColor_Active-13-0-2: #005E7F;
  --triplex-TableBasic-TabsLine_BorderColor_Default-13-0-2: transparent;
  --triplex-TableBasic-TabsLine_BorderColor_Hover-13-0-2: #21A19A;
  --triplex-TableBasic-TabsLine_Caret_Color-13-0-2: #1F1F22;
  --triplex-TableBasic-TabsLine_Color-13-0-2: #1F1F22;
  --triplex-TableBasic-TabsLine_Notification_Color-13-0-2: #FF9900;
  --triplex-TableBasic-TabsLine_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64 inset;
  --triplex-Tabs-Background-13-0-2: #FFFFFF;
  --triplex-Tabs-Tab_Background_Default-13-0-2: #FFFFFF;
  --triplex-Tabs-Tab_Background_Hover-13-0-2: #F2F4F7;
  --triplex-Tabs-Tab_Background_Selected-13-0-2: #D0D7DD;
  --triplex-Tabs-Tab_BorderColor_Default-13-0-2: transparent;
  --triplex-Tabs-Tab_BorderColor_Focus-13-0-2: #FFDD64;
  --triplex-TabsFolder-Background-13-0-2: #F2F4F7;
  --triplex-TabsFolder-ButtonNext_Background-13-0-2: linear-gradient(to left, #F2F4F7 39.06%, transparent);
  --triplex-TabsFolder-ButtonPrev_Background-13-0-2: linear-gradient(to right, #F2F4F7 39.06%, transparent);
  --triplex-TabsFolder-Shadow-13-0-2: 0 -1px 0 0 #D0D7DD inset;
  --triplex-TabsFolder-Tab_Background_Default-13-0-2: #F2F4F7;
  --triplex-TabsFolder-Tab_Background_Hover-13-0-2: #FFFFFF;
  --triplex-TabsFolder-Tab_Background_Selected-13-0-2: #FFFFFF;
  --triplex-TabsFolder-Tab_BorderColor-13-0-2: #D0D7DD;
  --triplex-TabsFolder-Tab_Color_Default-13-0-2: #1F1F22;
  --triplex-TabsFolder-Tab_Color_Disabled-13-0-2: #D0D7DD;
  --triplex-Tag-BorderColor-13-0-2: #D0D7DD;
  --triplex-Tag-Color-13-0-2: #1F1F22;
  --triplex-Tag-Medium_Background-13-0-2: #FFFFFF;
  --triplex-Tag-Small_Background-13-0-2: #F2F4F7;
  --triplex-Text-Danger_Color-13-0-2: #C11030;
  --triplex-Text-Disabled_Color-13-0-2: #D0D7DD;
  --triplex-Text-General_Color-13-0-2: #1F1F22;
  --triplex-Text-Secondary_Color-13-0-2: #7D838A;
  --triplex-Text-Success_Color-13-0-2: #107F8C;
  --triplex-Text-Warning_Color-13-0-2: #FF9900;
  --triplex-Title-Danger_Color-13-0-2: #C11030;
  --triplex-Title-Disabled_Color-13-0-2: #D0D7DD;
  --triplex-Title-General_Color-13-0-2: #1F1F22;
  --triplex-Title-Secondary_Color-13-0-2: #7D838A;
  --triplex-Title-Success_Color-13-0-2: #107F8C;
  --triplex-Title-Warning_Color-13-0-2: #FF9900;
  --triplex-Tooltip-Background-13-0-2: #1F1F22;
  --triplex-Tooltip-Color-13-0-2: #FFFFFF;
  --triplex-Tooltip-Link_Desktop_Color_Active-13-0-2: #1358BF;
  --triplex-Tooltip-Link_Desktop_Color_Default-13-0-2: #198CFE;
  --triplex-Tooltip-Link_Desktop_Color_Hover-13-0-2: #21A19A;
  --triplex-Tooltip-Link_Desktop_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64;
  --triplex-Tooltip-Link_Mobile_Color_Active-13-0-2: #0F5498;
  --triplex-Tooltip-Link_Mobile_Color_Default-13-0-2: #1358BF;
  --triplex-Tooltip-Link_Mobile_Color_Hover-13-0-2: #107F8C;
  --triplex-Tooltip-Link_Mobile_Shadow_Focus-13-0-2: 0 0 0 1px #FFDD64;
  --triplex-TopOverlay-Background-13-0-2: #FFE5E8;
  --triplex-TopOverlay-Color-13-0-2: #1F1F22;
  --triplex-TopOverlay-Shadow-13-0-2: 0 -1px 0 0 #C11030 inset;
  --triplex-UploadZone-BorderColor_Default-13-0-2: #D0D7DD;
  --triplex-UploadZone-BorderColor_Hover-13-0-2: #1F1F22;
  --triplex-UploadZone-DragArea_Background-13-0-2: #FFFFFF;
  --triplex-UploadZone-DragArea_BorderColor-13-0-2: #1F1F22;
  --triplex-Widget-Background-13-0-2: #FFFFFF;
  --triplex-Widget-Caret_Color-13-0-2: #1F1F22;
  --triplex-Widget-Shadow-13-0-2: 0 0 0 1px #D0D7DD inset;
  --triplex-Widget-Title_Color-13-0-2: #1F1F22;
}
.widgetHeaderTitle__e2685e9e {
  color: #1f1f22;
  color: var(--triplex-Widget-Title_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0 auto 0 -8px;
  outline: none;
  padding: 19px 8px;
  text-transform: none;
}
.widgetHeaderTitle__e2685e9e:focus-visible {
  box-shadow: 0 0 0 1px var(--triplex-Accent-500-13-0-2);
}
.widgetHeaderControls__7539cfa6 {
  padding-left: 24px;
  white-space: nowrap;
}
.widgetHeader__29fefd00 {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  outline: none;
  padding: 0 31px;
}
.widgetHeader__29fefd00 .widgetHeaderArrow__60542764 {
  flex-shrink: 0;
  padding-left: 32px;
}
.widgetHeader__29fefd00 .widgetHeaderArrow__60542764 .caretIcon__c68a156d {
  transition: transform 0.3s ease-in-out;
  vertical-align: middle;
}
.widgetHeader__29fefd00 .widgetHeaderArrow__60542764 .caretIcon__c68a156d path {
  fill: var(--triplex-Widget-Caret_Color-13-0-2);
}
.widgetHeader__29fefd00:not(.isStatic__1768b31d) {
  cursor: pointer;
}
.widgetHeader__29fefd00:focus:not(.focusedByClick__a26ff889):focus {
  border-color: var(--triplex-Accent-500-13-0-2);
}
.widgetHeader__29fefd00.animating__0bc4cf42,
.widgetHeader__29fefd00.opened__4af697d0 {
  border-bottom-color: transparent;
  border-radius: 16px 16px 0 0;
}
.widgetHeader__29fefd00.opened__4af697d0 .widgetHeaderArrow__60542764 .caretIcon__c68a156d {
  transform: rotate(-180deg);
}
.widgetHeader__29fefd00.controlsAlignLeft__98552ee6 .widgetHeaderControls__7539cfa6,
.widgetHeader__29fefd00.controlsAlignRight__600d3a43 .widgetHeaderTitle__e2685e9e {
  flex-grow: 1;
}
@media (max-width: 767px) {
  .widgetHeader__29fefd00 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .widgetHeaderControls__7539cfa6 {
    display: none;
  }
}
.widgetFooter__9b196046 {
  align-items: center;
  border-radius: 0 0 16px 16px;
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
}
.widgetFooterContent__9a570672 {
  flex-grow: 1;
  font-size: 14px;
  line-height: 20px;
  margin-right: auto;
  padding: 22px 0;
}
.widgetFooterControls__52e9683e {
  margin-left: auto;
  padding: 18px 0 18px 24px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .widgetFooter__9b196046 {
    align-items: normal;
    flex-wrap: wrap;
    padding-left: 16px;
    padding-right: 16px;
  }
  .widgetFooterContent__9a570672 {
    margin-bottom: 16px;
    margin-top: 16px;
    padding: 0;
    width: 100%;
  }
  .widgetFooterControls__52e9683e {
    margin-bottom: 16px;
    margin-left: -16px;
    padding: 0;
    white-space: normal;
  }
  .widgetFooterControls__52e9683e > .globalButtonDropdownExtended__434de4f1,
  .widgetFooterControls__52e9683e > button {
    margin-left: 16px;
    margin-top: 16px;
  }
  .widgetFooterContent__9a570672 + .widgetFooterControls__52e9683e {
    margin-top: -16px;
  }
}
.widgetBody__3d3b2473 {
  padding: 0 32px;
}
.widgetBody__3d3b2473.widgetBodyWithoutFooter__bc724365 {
  border-radius: 0 0 16px 16px;
  padding-bottom: 24px;
}
@media (max-width: 767px) {
  .widgetBody__3d3b2473 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.widget__682837d2 {
  background: var(--triplex-Widget-Background-13-0-2);
  border-radius: 16px;
  box-shadow: var(--triplex-Widget-Shadow-13-0-2);
}
.widget__682837d2 .widgetContent__ebac5287 {
  box-sizing: initial;
  visibility: hidden;
}
.widget__682837d2 .widgetContent__ebac5287.globalExpandAnimationAnimating__3d405c4a,
.widget__682837d2 .widgetContent__ebac5287.globalExpandAnimationOpened__f8561d64 {
  visibility: visible;
}
.uploadZone__8ad7fe73 {
  position: relative;
}
.uploadZone__8ad7fe73 .uploadZoneDragArea__07c27ace {
  border: 1px dashed var(--triplex-UploadZone-BorderColor_Default-13-0-2);
  border-radius: 8px;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.uploadZone__8ad7fe73 .uploadZoneDragArea__07c27ace:hover {
  border-color: var(--triplex-UploadZone-BorderColor_Hover-13-0-2);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .uploadZone__8ad7fe73 .uploadZoneDragArea__07c27ace {
    border: 1px dotted var(--triplex-UploadZone-BorderColor_Default-13-0-2);
  }
}
@supports (-ms-ime-align:auto) {
  .uploadZone__8ad7fe73 .uploadZoneDragArea__07c27ace {
    border: 1px dotted var(--triplex-UploadZone-BorderColor_Default-13-0-2);
  }
}
.uploadZone__8ad7fe73 .uploadZoneInput__1008a2ff {
  display: none;
}
.uploadZoneContainerDragArea__ad5e0720 {
  background: var(--triplex-UploadZone-DragArea_Background-13-0-2);
  bottom: 0;
  cursor: pointer;
  left: 0;
  padding: 4px;
  position: absolute;
  right: 0;
  top: 0;
}
.uploadZoneContainerDragArea__ad5e0720 .border__62032081 {
  border: 1px dashed var(--triplex-UploadZone-DragArea_BorderColor-13-0-2);
  border-radius: 8px;
  height: 100%;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .uploadZoneContainerDragArea__ad5e0720 .border__62032081 {
    border: 1px dotted var(--triplex-UploadZone-DragArea_BorderColor-13-0-2);
  }
}
@supports (-ms-ime-align:auto) {
  .uploadZoneContainerDragArea__ad5e0720 .border__62032081 {
    border: 1px dotted var(--triplex-UploadZone-DragArea_BorderColor-13-0-2);
  }
}
.unorderedList__9f45aa83 {
  list-style: none;
  margin: 0;
  padding-left: 14px;
  position: relative;
}
.unorderedListItem__611812e6:before {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  margin: 8px 1px;
  position: absolute;
  width: 4px;
}
.unorderedListItem__611812e6 + .unorderedListItem__611812e6 {
  margin-top: 8px;
}
.title__238f3e77.general__f74507f2 {
  color: var(--triplex-Title-General_Color-13-0-2);
}
.title__238f3e77.secondary__540de0de {
  color: var(--triplex-Title-Secondary_Color-13-0-2);
}
.title__238f3e77.success__364cc226 {
  color: var(--triplex-Title-Success_Color-13-0-2);
}
.title__238f3e77.warning__57fe763f {
  color: var(--triplex-Title-Warning_Color-13-0-2);
}
.title__238f3e77.danger__71d5b69d {
  color: var(--triplex-Title-Danger_Color-13-0-2);
}
.title__238f3e77.disabled__b9e77c03 {
  color: var(--triplex-Title-Disabled_Color-13-0-2);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.h1__38129813,
.h2__fb4fd81e,
.h3__306ae57a,
.h4__102ae42d {
  margin: 0;
}
.h1__38129813 {
  font-size: 30px;
  line-height: 40px;
}
.h2__fb4fd81e {
  font-size: 21px;
  line-height: 32px;
}
.h3__306ae57a {
  font-size: 18px;
  line-height: 24px;
}
.h4__102ae42d {
  font-size: 16px;
  line-height: 24px;
}
.text__cee02775.general__f74507f2 {
  color: var(--triplex-Text-General_Color-13-0-2);
}
.text__cee02775.secondary__540de0de {
  color: var(--triplex-Text-Secondary_Color-13-0-2);
}
.text__cee02775.success__364cc226 {
  color: var(--triplex-Text-Success_Color-13-0-2);
}
.text__cee02775.warning__57fe763f {
  color: var(--triplex-Text-Warning_Color-13-0-2);
}
.text__cee02775.danger__71d5b69d {
  color: var(--triplex-Text-Danger_Color-13-0-2);
}
.text__cee02775.disabled__b9e77c03 {
  color: var(--triplex-Text-Disabled_Color-13-0-2);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.b1__6ba69506 {
  font-size: 14px;
}
.b1__6ba69506.normal__fdae369c {
  line-height: 16px;
}
.b1__6ba69506.extra__228dde81 {
  line-height: 20px;
}
.b2__32d1f4ef {
  font-size: 12px;
}
.b2__32d1f4ef.normal__fdae369c {
  line-height: 16px;
}
.b2__32d1f4ef.extra__228dde81 {
  line-height: 18px;
}
.b3__1cf4ca27 {
  font-size: 10px;
}
.b3__1cf4ca27.normal__fdae369c {
  line-height: 10px;
}
.b3__1cf4ca27.extra__228dde81 {
  line-height: 12px;
}
.underline__13f14ba4 {
  text-decoration: underline;
}
.strikethrough__b8ef732e {
  text-decoration: line-through;
}
.underlineStrikethrough__afdefb9a {
  text-decoration: underline line-through;
}
.light__07b63d62 {
  font-weight: 300;
}
.regular__24006ca3 {
  font-weight: 400;
}
.semibold__08100890 {
  font-weight: 600;
}
.bold__16d63132 {
  font-weight: 700;
}
.treeViewGroup__5c274161,
.treeView__49096c63 {
  margin: 0;
  padding: 0;
}
.treeViewGroup__5c274161 .treeViewNode__8d2ec4d3,
.treeView__49096c63 .treeViewNode__8d2ec4d3 {
  list-style: none;
  margin: 0;
  outline: none;
  padding: 0;
}
.topOverlay__655cf5b2 {
  animation: fadeOutTopOverlay__f1d68b8c 0.6s;
  background: var(--triplex-TopOverlay-Background-13-0-2);
  box-shadow: var(--triplex-TopOverlay-Shadow-13-0-2);
  overflow: hidden;
  pointer-events: none;
  transition: height 0.3s;
}
.topOverlay__655cf5b2 .globalTopOverlayInner__40914899 {
  animation: fadeOutTopOverlayInner__4ae20cb1 0.6s;
  padding: 24px 68px 24px 32px;
}
.topOverlay__655cf5b2 .globalTopOverlayClose__2166c578 {
  display: none;
  position: absolute;
  right: 32px;
  top: 24px;
}
.topOverlay__655cf5b2.opened__7fb7ebba {
  animation: fadeInTopOverlay__9fcb4b6e 0.6s;
  pointer-events: auto;
}
.topOverlay__655cf5b2.opened__7fb7ebba .globalTopOverlayInner__40914899 {
  animation: fadeInTopOverlayInner__327665b3 0.6s;
}
.topOverlay__655cf5b2.opened__7fb7ebba .globalTopOverlayClose__2166c578 {
  display: block;
}
.topOverlay__655cf5b2 .globalTopOverlayContent__156a4c61 {
  margin-bottom: 32px;
}
.topOverlay__655cf5b2 .topOverlayControls__c9ad64b5 {
  white-space: nowrap;
}
.topOverlay__655cf5b2 .globalTopOverlayTitle__78d68373 {
  color: var(--triplex-TopOverlay-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin: 0 32px 0 0;
  overflow: hidden;
  padding: 0;
  text-transform: none;
  white-space: nowrap;
}
.topOverlay__655cf5b2 .topOverlaySubTitle__1a8ffd48 {
  color: #1f1f22;
  color: var(--triplex-TopOverlay-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  text-transform: none;
  white-space: normal;
}
[data-side-overlay-size=MD] .topOverlaySubTitle__1a8ffd48,
[data-side-overlay-size=SM] .topOverlaySubTitle__1a8ffd48 {
  max-height: 40px;
}
@keyframes fadeInTopOverlayInner__327665b3 {
  0%,
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOutTopOverlayInner__4ae20cb1 {
  0% {
    opacity: 1;
  }
  50%,
  to {
    opacity: 0;
  }
}
@keyframes fadeInTopOverlay__9fcb4b6e {
  0% {
    opacity: 0;
  }
  50%,
  to {
    opacity: 1;
  }
}
@keyframes fadeOutTopOverlay__f1d68b8c {
  0%,
  55% {
    opacity: 1;
  }
  85%,
  to {
    opacity: 0;
  }
}
.tooltipMobile__867e92ca .tooltipBody__5b8118f2 {
  text-align: left;
}
.tooltipMobile__867e92ca .tooltipXButton__a6738ca0 {
  position: absolute;
  right: 16px;
  top: 16px;
}
.tooltipMobileContent__077e7cbc {
  padding: 16px;
}
.headerless__d57a41e4 .tooltipMobileContent__077e7cbc {
  padding-right: 40px;
}
.tooltipLink__1ba2b5d3 {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}
.desktop__67c50034 {
  color: var(--triplex-Tooltip-Link_Desktop_Color_Default-13-0-2);
}
.desktop__67c50034:hover {
  color: var(--triplex-Tooltip-Link_Desktop_Color_Hover-13-0-2);
}
.desktop__67c50034:active {
  color: var(--triplex-Tooltip-Link_Desktop_Color_Active-13-0-2);
}
.desktop__67c50034:focus-visible {
  box-shadow: var(--triplex-Tooltip-Link_Desktop_Shadow_Focus-13-0-2);
  outline: none;
}
.mobile__d801bc3f {
  color: var(--triplex-Tooltip-Link_Mobile_Color_Default-13-0-2);
}
.mobile__d801bc3f:hover {
  color: var(--triplex-Tooltip-Link_Mobile_Color_Hover-13-0-2);
}
.mobile__d801bc3f:active {
  color: var(--triplex-Tooltip-Link_Mobile_Color_Active-13-0-2);
}
.mobile__d801bc3f:focus-visible {
  box-shadow: var(--triplex-Tooltip-Link_Mobile_Shadow_Focus-13-0-2);
  outline: none;
}
.tooltipDesktop__0698b294 {
  display: flex;
  left: 0;
  outline: none;
  pointer-events: auto;
  position: absolute;
  top: 0;
  z-index: 10000;
}
.tooltipDesktop__0698b294 .tooltipBody__5b8118f2 {
  color: var(--triplex-Tooltip-Color-13-0-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.tooltipDesktop__0698b294 .tooltipXButton__a6738ca0 {
  position: absolute;
  right: 8px;
  top: 8px;
}
.tooltipDesktopContent__a13ac92a {
  background-color: var(--triplex-Tooltip-Background-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 16px;
  position: relative;
}
.closable__b6e88554 .tooltipDesktopContent__a13ac92a {
  padding-right: 32px;
}
.tooltipSM__a68cf69c .tooltipDesktopContent__a13ac92a {
  min-height: 52px;
  width: 192px;
}
.tooltipLG__0a180ded .tooltipDesktopContent__a13ac92a {
  min-height: 72px;
  width: 384px;
}
.tooltipOverlay__80dfa75e {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.tooltipDesktopTip__5ab5d1fd {
  height: 0;
  width: 0;
}
.tooltipDesktopTip__5ab5d1fd.down__ad3a84be {
  border-left: solid transparent;
  border-right: solid transparent;
  border-top: solid var(--triplex-Tooltip-Background-13-0-2);
}
.tooltipDesktopTip__5ab5d1fd.up__cbe37463 {
  border-bottom: solid var(--triplex-Tooltip-Background-13-0-2);
  border-left: solid transparent;
  border-right: solid transparent;
}
.tooltipDesktopTip__5ab5d1fd.left__b55bd673 {
  border-bottom: solid transparent;
  border-right: solid var(--triplex-Tooltip-Background-13-0-2);
  border-top: solid transparent;
}
.tooltipDesktopTip__5ab5d1fd.right__578b7910 {
  border-bottom: solid transparent;
  border-left: solid var(--triplex-Tooltip-Background-13-0-2);
  border-top: solid transparent;
}
.textArea__eb86fd72 {
  background: var(--triplex-Input-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Input-BorderColor_Default-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  caret-color: var(--triplex-Input-Caret_Color-13-0-2);
  color: var(--triplex-Input-Color_Default-13-0-2);
  font-family: inherit;
  font-size: 14px;
  height: 32px;
  height: auto;
  line-height: 16px;
  line-height: 20px;
  min-width: 0;
  outline: none;
  padding: 7px 11px;
  vertical-align: top;
}
.textArea__eb86fd72::-webkit-input-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.textArea__eb86fd72::-moz-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.textArea__eb86fd72::placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.textArea__eb86fd72:focus {
  border-color: var(--triplex-Input-BorderColor_Focus-13-0-2);
}
.textArea__eb86fd72:disabled {
  -webkit-text-fill-color: var(--triplex-Input-Color_Disabled-13-0-2);
  background: var(--triplex-Input-Background_Disabled-13-0-2);
  border-color: var(--triplex-Input-BorderColor_Disabled-13-0-2);
  color: var(--triplex-Input-Color_Disabled-13-0-2);
  cursor: default;
  opacity: 1;
}
.textArea__eb86fd72.error__f774f092 {
  border-color: var(--triplex-Input-BorderColor_Error-13-0-2);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .textArea__eb86fd72 {
    overflow-y: auto;
  }
}
.fullWidth__af9e4cdd {
  width: 100%;
}
.tagGroup__85d3ebae.md__c7881997 {
  margin: -8px -6px;
}
.tagGroup__85d3ebae.md__c7881997 > .tag__d4271fb5 {
  margin: 8px 6px;
}
.tagGroup__85d3ebae.sm__995ebd7f {
  margin: -4px;
}
.tagGroup__85d3ebae.sm__995ebd7f > .tag__d4271fb5 {
  margin: 4px;
}
.tag__d4271fb5 {
  border-radius: 16px;
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
.tag__d4271fb5 .tagContent__02c28af4 {
  align-items: center;
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
}
.tag__d4271fb5 .text__fe4df1c1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tag__d4271fb5,
.tag__d4271fb5 .edit__00703f27,
.tag__d4271fb5 .remove__cae51c8a,
.tag__d4271fb5 .tagContent__02c28af4,
.tag__d4271fb5 .text__fe4df1c1 {
  color: #1f1f22;
  color: var(--triplex-Tag-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: none;
}
.tag__d4271fb5 .edit__00703f27,
.tag__d4271fb5 .remove__cae51c8a,
.tag__d4271fb5 .text__fe4df1c1 {
  vertical-align: top;
}
.tag__d4271fb5 .edit__00703f27,
.tag__d4271fb5 .remove__cae51c8a {
  display: inline-block;
  margin-left: 4px;
}
.tag__d4271fb5.sm__995ebd7f .tagContent__02c28af4 {
  background: var(--triplex-Tag-Small_Background-13-0-2);
  border: none;
  height: 24px;
  padding: 4px 8px 4px 12px;
}
.tag__d4271fb5.md__c7881997 .tagContent__02c28af4 {
  background: var(--triplex-Tag-Medium_Background-13-0-2);
  border: 1px solid var(--triplex-Tag-BorderColor-13-0-2);
  height: 32px;
  padding: 7px 7px 7px 11px;
}
.tabsLineMobileWrapper__c24d4041 {
  position: relative;
}
.tabsLineMobileWrapper__c24d4041 .tab__c9a51838 {
  flex-shrink: 0;
}
.tabsLineMobileWrapper__c24d4041 .tab__c9a51838:first-child {
  margin-left: 16px;
}
.tabsLineMobileWrapper__c24d4041 .tab__c9a51838:last-child {
  margin-right: 16px;
}
.tabsLineMobile__4d96174b {
  -ms-overflow-style: none;
  display: flex;
  overflow: auto;
  scrollbar-width: none;
}
.tabsLineMobile__4d96174b::-webkit-scrollbar {
  display: none;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="0"] {
  padding-left: 0;
  padding-right: 0;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="4"] {
  padding-left: 4px;
  padding-right: 4px;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="8"] {
  padding-left: 8px;
  padding-right: 8px;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="12"] {
  padding-left: 12px;
  padding-right: 12px;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="16"] {
  padding-left: 16px;
  padding-right: 16px;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="24"] {
  padding-left: 24px;
  padding-right: 24px;
}
.tabsLineWrapper__119f66a8 {
  position: relative;
}
.tabsLineWrapper__119f66a8.withSeparator__56a3f52c:before {
  background: #d0d7dd;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}
.tabsLine__ffc168fc {
  height: 32px;
  line-height: 0;
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
.tab__c9a51838 {
  background: transparent;
  border: none;
  color: #1f1f22;
  color: var(--triplex-TableBasic-TabsLine_Color-13-0-2);
  cursor: pointer;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 32px;
  line-height: 20px;
  outline: none;
  padding: 0 16px;
  position: relative;
  text-transform: none;
}
.tab__c9a51838::-moz-focus-inner {
  border: none;
  padding: 0;
}
.tab__c9a51838:focus-visible {
  box-shadow: var(--triplex-TableBasic-TabsLine_Shadow_Focus-13-0-2);
}
.tab__c9a51838.active__b8eb8837 {
  cursor: default;
}
.tab__c9a51838:after {
  border-color: currentcolor transparent transparent;
  border-radius: 2px 2px 0 0;
  border-top: 4px solid transparent;
  content: "";
  display: block;
  margin: 8px -16px 0;
  position: relative;
  transition: border-color 0.5s;
}
.tab__c9a51838:focus:after,
.tab__c9a51838:hover:after {
  border-top-color: var(--triplex-TableBasic-TabsLine_BorderColor_Hover-13-0-2);
}
.tab__c9a51838.active__b8eb8837:after {
  border-top-color: var(--triplex-TableBasic-TabsLine_BorderColor_Active-13-0-2);
}
.notificationIcon__57025364 {
  background-color: var(--triplex-TableBasic-TabsLine_Notification_Color-13-0-2);
  border-radius: 50%;
  height: 8px;
  position: absolute;
  right: 6px;
  top: 0;
  width: 8px;
}
.tabsLineDropdown__072ba521 {
  display: inline-block;
}
.tabsLineDropdown__072ba521 .dropdownTarget__ffd601c0.active__b8eb8837 {
  cursor: pointer;
}
.tabsLineDropdown__072ba521 .dropdownTargetInner__54c0707f {
  align-items: center;
  display: inline-flex;
}
.tabsLineDropdown__072ba521 .dropdownTargetCaret__66c007ac {
  margin-left: 4px;
  transition: transform 0.3s ease-in-out;
}
.tabsLineDropdown__072ba521 .dropdownTargetCaret__66c007ac.opened__647d2f8a {
  transform: rotate(-180deg);
}
.tabsLineDropdown__072ba521 .dropdownTargetCaret__66c007ac path {
  fill: var(--triplex-TableBasic-TabsLine_Caret_Color-13-0-2);
}
.tabsLineDropdown__072ba521 .dropdown__f775f637 {
  padding: 4px;
  right: 0;
}
.tabsLineDropdown__072ba521 .dropdownItem__64c25b8a.withNotification__8e7b4433 .dropdownItemInner__6484f740 {
  margin-right: 2px;
}
.tabsLineDropdown__072ba521 .dropdownItem__64c25b8a.withNotification__8e7b4433 .notificationIcon__57025364 {
  right: 2px;
  top: 2px;
}
.tabsFolder__97988ed3 {
  background: var(--triplex-TabsFolder-Background-13-0-2);
  box-shadow: var(--triplex-TabsFolder-Shadow-13-0-2);
  position: relative;
}
.tabsFolder__97988ed3 .inner__4bf933a7 {
  padding-left: 32px;
  padding-right: 32px;
}
.tabsFolder__97988ed3 .content__7aad9441 {
  padding: 0;
}
.tabsFolder__97988ed3 .tab__c4019836 + .tab__c4019836 {
  margin-left: -1px;
}
.tabsFolder__97988ed3 .tab__c4019836.disabled__acad0b0f {
  pointer-events: none;
}
.tabsFolder__97988ed3 .tabButton__bb26fee1 {
  background: var(--triplex-TabsFolder-Tab_Background_Default-13-0-2);
  border: 1px solid var(--triplex-TabsFolder-Tab_BorderColor-13-0-2);
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
  color: var(--triplex-TabsFolder-Tab_Color_Default-13-0-2);
  cursor: pointer;
  outline: none;
  padding: 7px 15px;
  white-space: nowrap;
}
.tabsFolder__97988ed3 .tabButton__bb26fee1:hover {
  background: var(--triplex-TabsFolder-Tab_Background_Hover-13-0-2);
}
.tabsFolder__97988ed3 .tabButton__bb26fee1.selected__02a061e2 {
  background: var(--triplex-TabsFolder-Tab_Background_Selected-13-0-2);
  border-bottom-color: var(--triplex-TabsFolder-Tab_Background_Selected-13-0-2);
}
.tabsFolder__97988ed3 .tabButton__bb26fee1:focus {
  z-index: 1;
}
.tabsFolder__97988ed3 .tabButton__bb26fee1:disabled > span {
  color: var(--triplex-TabsFolder-Tab_Color_Disabled-13-0-2);
}
.tabsFolder__97988ed3 .buttonNext__3cc97487,
.tabsFolder__97988ed3 .buttonPrev__446ff34c {
  background-clip: padding-box;
  bottom: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}
.tabsFolder__97988ed3 .buttonNext__3cc97487:after,
.tabsFolder__97988ed3 .buttonPrev__446ff34c:after {
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.tabsFolder__97988ed3 .buttonPrev__446ff34c,
.tabsFolder__97988ed3 .buttonPrev__446ff34c:after {
  background: var(--triplex-TabsFolder-ButtonPrev_Background-13-0-2);
  left: 0;
}
.tabsFolder__97988ed3 .buttonNext__3cc97487,
.tabsFolder__97988ed3 .buttonNext__3cc97487:after {
  background: var(--triplex-TabsFolder-ButtonNext_Background-13-0-2);
  right: 0;
}
@media (max-width: 767px) {
  .tabsFolder__97988ed3 .inner__4bf933a7 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .tabsFolder__97988ed3 .buttonNext__3cc97487,
  .tabsFolder__97988ed3 .buttonPrev__446ff34c {
    display: none;
  }
}
.tabsExtendedTabButton__9476f1f3 {
  background: var(--triplex-Tabs-Tab_Background_Default-13-0-2);
  border: 1px solid var(--triplex-Tabs-Tab_BorderColor_Default-13-0-2);
  border-radius: 14px;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 5px 15px;
  position: relative;
  white-space: nowrap;
}
.tabsExtendedTabButton__9476f1f3::-moz-focus-inner {
  border: none;
}
.tabsExtendedTabButton__9476f1f3 + .tabsExtendedTabButton__9476f1f3 {
  margin-left: 2px;
}
.tabsExtendedTabButton__9476f1f3:hover {
  background: var(--triplex-Tabs-Tab_Background_Hover-13-0-2);
}
.tabsExtendedTabButton__9476f1f3:focus-visible {
  border-color: var(--triplex-Tabs-Tab_BorderColor_Focus-13-0-2);
}
.tabsExtendedTabButton__9476f1f3.selected__5bb75352 {
  background: var(--triplex-Tabs-Tab_Background_Selected-13-0-2);
  cursor: default;
}
.tabsExtendedTabButton__9476f1f3 .tabsExtendedTabButtonInner__a6915c3a {
  display: inline-block;
  position: relative;
}
.tabsExtended__c74d94ee {
  position: relative;
}
.tabsExtendedContent__4690fe91 {
  display: inline-flex;
  padding: 2px;
}
.tabsExtendedDropdown__61f56159,
.tabsExtendedTab__6836f15d + .tabsExtendedTab__6836f15d {
  margin-left: 2px;
}
.tabsFake__2a5e4ed6,
.tabsReal__a9ca86bd {
  box-sizing: border-box;
  display: flex;
  width: 100%;
}
.tabsReal__a9ca86bd.hidden__1444e9c5 {
  visibility: hidden;
}
.tabsReal__a9ca86bd .tabsExtendedTab__6836f15d.hidden__1444e9c5 {
  display: none;
}
.tabsFake__2a5e4ed6 {
  left: -10000px;
  padding: 0 2px;
  position: absolute;
  visibility: hidden;
}
.tabsContent__c21a7b06 {
  background: var(--triplex-Tabs-Background-13-0-2);
  border-radius: 16px;
}
.tabsButtonDropdown__0763d606 {
  height: 28px;
  vertical-align: top;
}
.tabsLinePanelLinks__1abdd427 {
  display: flex;
  height: 32px;
  margin-left: auto;
  padding-right: 24px;
  z-index: 1;
}
.tabsLinePanelLinks__1abdd427 > a:not(:first-child) {
  margin-left: 16px;
}
.tabsLinePanel__4644df49 {
  display: flex;
  justify-content: space-between;
  padding-left: 8px;
}
.paginationWrapper__86290179 {
  padding: 24px 0;
  pointer-events: none;
  position: relative;
}
.paginationWrapper__86290179 .paginationSelectBlock__45acd853 {
  align-items: center;
  display: flex;
  position: absolute;
}
.paginationWrapper__86290179 .paginationSelectBlock__45acd853 .paginationSelectText__2f96c858 {
  color: #1f1f22;
  color: var(--triplex-TableBasic-PaginationBasic_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
}
.paginationWrapper__86290179 .paginationSelectBlock__45acd853 .paginationSelect__b07add18 {
  margin-left: 8px;
  pointer-events: auto;
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e {
  align-items: center;
  display: flex;
  justify-content: center;
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e.hidden__ce9d8a3d {
  visibility: hidden;
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 {
  display: flex;
  pointer-events: auto;
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 circle {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Default-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 path {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Default-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 :hover circle {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Hover-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 :hover path {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Hover-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 :disabled circle {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Disabled-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 :disabled path {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Disabled-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .pageNumber__7f1d062a {
  color: #1f1f22;
  color: var(--triplex-TableBasic-PaginationBasic_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0 24px;
  text-transform: none;
}
@media (max-width: 767px) {
  .paginationWrapper__86290179 {
    display: flex;
  }
  .paginationWrapper__86290179 .paginationSelectBlock__45acd853 {
    position: relative;
  }
  .paginationWrapper__86290179 .paginationIteratorBlock__84fca90e {
    margin-left: 12px;
  }
}
.masterTable__2ec5093f {
  position: relative;
}
.filterPanel__3c43d61c {
  background: var(--triplex-TableBasic-FilterPanel_Background-13-0-2);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 8px var(--triplex-TableBasic-FilterPanel_Background-13-0-2);
  padding: 24px;
}
.tableFooterWrapper__737b6cc9 {
  height: 76px;
  margin-top: 16px;
}
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 {
  background: var(--triplex-TableBasic-TableFooter_Background-13-0-2);
  padding: 24px 12px;
}
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508:before {
  background: var(--triplex-TableBasic-TableFooter_Highlight-13-0-2);
  content: "";
  height: 64px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -64px;
  width: 100%;
}
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 .tableFooterSummary__b49299cc {
  align-items: center;
  display: flex;
}
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 .tableFooterSummary__b49299cc .tableFooterSummaryAmount__50c78f86,
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 .tableFooterSummary__b49299cc .tableFooterSummaryDivider__056842c4,
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 .tableFooterSummary__b49299cc .tableFooterSummarySelectedCount__8cdaccf3 {
  margin-left: 24px;
}
.tableFooterWrapper__737b6cc9.ieBrowser__a5ea3d18 .tableFooter__2164d508 {
  position: relative;
}
.tableFooterWrapper__737b6cc9.ieBrowser__a5ea3d18 .tableFooter__2164d508.fixed__ec0a89ab {
  bottom: 0;
  box-sizing: border-box;
  position: fixed;
  z-index: 1;
}
.tableFooterWrapper__737b6cc9:not(.ieBrowser__a5ea3d18) {
  bottom: 0;
  position: -webkit-sticky;
  position: sticky;
}
@media (max-width: 767px) {
  .tableFooterWrapper__737b6cc9 {
    height: 112px;
  }
}
@media (max-width: 575px) {
  .tableBasic__8eefc427 > table td.hideXS__f35bfa2d,
  .tableBasic__8eefc427 > table th.hideXS__f35bfa2d {
    display: none;
  }
}
@media (max-width: 767px) {
  .tableBasic__8eefc427 > table td.hideSM__6880a684,
  .tableBasic__8eefc427 > table th.hideSM__6880a684 {
    display: none;
  }
}
@media (max-width: 991px) {
  .tableBasic__8eefc427 > table td.hideMD__b5e5798b,
  .tableBasic__8eefc427 > table th.hideMD__b5e5798b {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tableBasic__8eefc427 > table td.hideLG__f15f5ab5,
  .tableBasic__8eefc427 > table th.hideLG__f15f5ab5 {
    display: none;
  }
}
@keyframes fadeIn__d24e6c18 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tableBasic__8eefc427 {
  position: relative;
}
.tableBasic__8eefc427 table {
  border-collapse: initial;
  border-spacing: 0 16px;
  margin-bottom: -16px;
  margin-top: -16px;
  width: 100%;
}
.tableBasic__8eefc427 table td.alignLeft__3f3f6f21,
.tableBasic__8eefc427 table th.alignLeft__3f3f6f21 {
  text-align: left;
}
.tableBasic__8eefc427 table td.alignRight__0abcec35,
.tableBasic__8eefc427 table th.alignRight__0abcec35 {
  text-align: right;
}
.tableBasic__8eefc427 table td.alignCenter__29557cfd,
.tableBasic__8eefc427 table th.alignCenter__29557cfd {
  text-align: center;
}
.tableBasic__8eefc427 table td.verticalAlignBaseline__2a951d5d,
.tableBasic__8eefc427 table th.verticalAlignBaseline__2a951d5d {
  vertical-align: initial;
}
.tableBasic__8eefc427 table td.verticalAlignSub__baea0ac2,
.tableBasic__8eefc427 table th.verticalAlignSub__baea0ac2 {
  vertical-align: sub;
}
.tableBasic__8eefc427 table td.verticalAlignSuper__b89918b5,
.tableBasic__8eefc427 table th.verticalAlignSuper__b89918b5 {
  vertical-align: super;
}
.tableBasic__8eefc427 table td.verticalAlignTextTop__2a716600,
.tableBasic__8eefc427 table th.verticalAlignTextTop__2a716600 {
  vertical-align: text-top;
}
.tableBasic__8eefc427 table td.verticalAlignTextBottom__fbcfd1ea,
.tableBasic__8eefc427 table th.verticalAlignTextBottom__fbcfd1ea {
  vertical-align: text-bottom;
}
.tableBasic__8eefc427 table td.verticalAlignMiddle__818d9cae,
.tableBasic__8eefc427 table th.verticalAlignMiddle__818d9cae {
  vertical-align: middle;
}
.tableBasic__8eefc427 table td.verticalAlignTop__0bc605f3,
.tableBasic__8eefc427 table th.verticalAlignTop__0bc605f3 {
  vertical-align: top;
}
.tableBasic__8eefc427 table td.verticalAlignBottom__85ce16ef,
.tableBasic__8eefc427 table th.verticalAlignBottom__85ce16ef {
  vertical-align: bottom;
}
.tableBasic__8eefc427 table > thead > tr {
  height: 48px;
}
.tableBasic__8eefc427 table > thead > tr > th {
  background-color: var(--triplex-TableBasic-Header_Background-13-0-2);
  box-sizing: border-box;
  color: #1f1f22;
  color: var(--triplex-TableBasic-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding: 16px 12px;
  text-transform: none;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .tableBasic__8eefc427 table > thead > tr > th {
    box-shadow: inset -1px 0 0 var(--triplex-TableBasic-Header_Background-13-0-2), inset 1px 0 0 var(--triplex-TableBasic-Header_Background-13-0-2);
  }
}
.tableBasic__8eefc427 table > thead > tr > th:first-child {
  border-top-left-radius: 8px;
}
.tableBasic__8eefc427 table > thead > tr > th:last-child {
  border-top-right-radius: 8px;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853 {
  display: inline-flex;
  vertical-align: top;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 {
  cursor: pointer;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 .orderButton__6cb76376 {
  display: flex;
  visibility: hidden;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 .orderButton__6cb76376.alignLeft__3f3f6f21 {
  margin-right: 8px;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 .orderButton__6cb76376.alignRight__0abcec35 {
  margin-left: 8px;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 .orderButton__6cb76376.sorted__8ad62fa5,
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49:hover .orderButton__6cb76376 {
  visibility: visible;
}
.tableBasic__8eefc427 table > tbody > tr > td {
  box-sizing: border-box;
  color: #1f1f22;
  color: var(--triplex-TableBasic-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
  vertical-align: top;
}
.tableBasic__8eefc427 table > tbody > tr > td:first-child {
  border-radius: 8px 0 0 8px;
}
.tableBasic__8eefc427 table > tbody > tr > td:last-child {
  border-radius: 0 8px 8px 0;
}
.tableBasic__8eefc427 table > tbody > tr > td.textType__113c72f5 {
  padding: 12px;
}
.tableBasic__8eefc427 table > tbody > tr > td.componentsType__a244bc5c {
  padding: 8px 12px;
}
.tableBasic__8eefc427 table > tbody > tr > td.checkboxType__16e953fa {
  padding: 14px 12px 12px;
}
.tableBasic__8eefc427 table > tbody > tr.selected__23e4849b > td {
  background-color: var(--triplex-TableBasic-Background_Selected-13-0-2);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .tableBasic__8eefc427 table > tbody > tr.selected__23e4849b > td {
    box-shadow: inset -1px 0 0 var(--triplex-TableBasic-Background_Selected-13-0-2), inset 1px 0 0 var(--triplex-TableBasic-Background_Selected-13-0-2);
  }
}
.tableBasic__8eefc427 table > tbody.clickable__c5fdf7a9 > tr {
  cursor: pointer;
}
.tableBasic__8eefc427 table > tbody.hoverable__d86b64d3 > tr:hover > td {
  background-color: var(--triplex-TableBasic-Background_Hover-13-0-2);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .tableBasic__8eefc427 table > tbody.hoverable__d86b64d3 > tr:hover > td {
    box-shadow: inset -1px 0 0 var(--triplex-TableBasic-Background_Hover-13-0-2), inset 1px 0 0 var(--triplex-TableBasic-Background_Hover-13-0-2);
  }
}
.tableBasic__8eefc427 .footerEmptyData__83ace2e5 {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 64px 0;
}
.tableBasic__8eefc427 .spinnerWrapper__ee46b456 {
  height: calc(100% - 16px);
  left: 0;
  position: absolute;
  top: 16px;
  width: 100%;
}
.tableBasic__8eefc427 .overlayCover__93c6cad3 {
  animation: fadeIn__d24e6c18 0.3s;
  background-color: var(--triplex-Overlay-maskBackground-13-0-2);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 16px;
}
.swipeableArea__866900dc {
  overflow: hidden;
  position: relative;
}
.swipeableArea__866900dc .content__00a0216e {
  position: relative;
  touch-action: pan-y;
}
.swipeableArea__866900dc .content__00a0216e.disableScroll__4ae5e530 {
  touch-action: none;
}
.swipeableArea__866900dc .content__00a0216e.disablePointerEvents__5aa43503:after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.swipeableArea__866900dc .swipeAnimationFinish__37b368a1 {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.swipeableArea__866900dc .leftContent__799e2cf5,
.swipeableArea__866900dc .rightContent__515d4703 {
  bottom: 0;
  display: flex;
  left: 0;
  position: absolute;
  top: 0;
}
.swipeableArea__866900dc .rightContent__515d4703 {
  left: auto;
  right: 0;
}
.suggestMobileBody__93c57da3 {
  height: 176px;
}
.suggestMobileTarget__218cd7a0 {
  text-overflow: ellipsis;
}
.suggestMobileDropdownHint__93589f57 {
  padding: 6px 16px;
}
.dropdownInputSpinnerWrapper__bfae345a {
  position: absolute;
  right: 40px;
  top: 12px;
}
.dropdownListSpinnerWrapper__274ee6ba {
  box-sizing: border-box;
  height: 44px;
  padding: 12px 0;
  position: relative;
  text-align: center;
}
.suggest__7fbc3816 {
  position: relative;
  width: 100%;
}
.suggestDesktopTarget__6ede5372.hidden__192586aa {
  opacity: 0;
}
.loading__2ab04661 .suggestDesktopTarget__6ede5372 {
  padding: 7px 40px 7px 11px;
}
.pseudoLabel__6194802a {
  left: 0;
  position: absolute;
  top: 0;
}
.pseudoLabel__6194802a.hidden__192586aa {
  z-index: -1;
}
.spinnerIcon__073dd499 {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 12px;
  top: 0;
}
.suggestDropdownListItem__7b86698b {
  overflow: hidden;
  text-overflow: ellipsis;
}
.suggestListSpinnerWrapper__a86fbdee {
  height: 28px;
  padding: 4px 0;
  position: relative;
  text-align: center;
}
.suggestListSpinnerWrapper__a86fbdee .suggestListSpinner__bbcea503 {
  display: inline-block;
}
.grouped__db322525 {
  flex: 1;
}
.grouped__db322525:not(:first-child) {
  margin-left: -1px;
}
.grouped__db322525.left__c0046730 .suggestDesktopTarget__6ede5372,
.grouped__db322525.left__c0046730 .suggestMobileTarget__218cd7a0 {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__db322525.intermediate__f919596a .suggestDesktopTarget__6ede5372,
.grouped__db322525.intermediate__f919596a .suggestMobileTarget__218cd7a0 {
  border-radius: 0;
}
.grouped__db322525.right__08980aec .suggestDesktopTarget__6ede5372,
.grouped__db322525.right__08980aec .suggestMobileTarget__218cd7a0 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__db322525.error__05f7eda5 {
  z-index: 1;
}
.grouped__db322525.focused__744021be {
  z-index: 2;
}
.subValue__9291ee9f {
  overflow: hidden;
}
.subRow__8f16d8c5 {
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
  padding-bottom: 8px;
}
.subRow__8f16d8c5:last-child {
  padding-bottom: 0;
}
.subLabel__e1cdd3b0 {
  max-height: 40px;
  overflow: hidden;
}
.stepperWrapper__88103e70 {
  background: var(--triplex-Stepper-Background-13-0-2);
  overflow-y: hidden;
  padding: 16px 32px;
  position: relative;
}
.stepperWrapper__88103e70.withShadow__0a8dd5f9 {
  background: var(--triplex-Stepper-Wrapper_Background-13-0-2);
  margin-bottom: -16px;
  padding-bottom: 32px;
}
.stepperWrapper__88103e70.withShadow__0a8dd5f9:before {
  box-shadow: var(--triplex-Stepper-Wrapper_BoxShadow-13-0-2);
  content: "";
  height: 64px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.stepperStep__0c1e9aef {
  cursor: pointer;
  display: inline-flex;
  outline: none;
  position: relative;
}
.stepperStep__0c1e9aef + .stepperStep__0c1e9aef {
  margin-left: 12px;
}
.stepperStep__0c1e9aef:not(:last-child) .content__ec84a1fd {
  border-radius: 6px 0 0 6px;
  border-width: 1px 0 1px 1px;
  padding: 7px 0 7px 11px;
}
.stepperStep__0c1e9aef:last-child .content__ec84a1fd {
  border-radius: 6px;
  border-width: 1px;
  padding: 7px 11px;
}
.stepperStep__0c1e9aef:last-child .arrow__feb724fe {
  display: none;
}
.stepperStep__0c1e9aef:hover .content__ec84a1fd {
  border-color: var(--triplex-Stepper-Step_BorderColor_Hover-13-0-2);
}
.stepperStep__0c1e9aef:hover .arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Hover-13-0-2);
}
.stepperStep__0c1e9aef.intact__c86e70e6 .content__ec84a1fd {
  color: var(--triplex-Stepper-Step_Color_Intact-13-0-2);
}
.stepperStep__0c1e9aef.selected__4a5e8efd {
  cursor: default;
}
.stepperStep__0c1e9aef.selected__4a5e8efd .content__ec84a1fd {
  background: var(--triplex-Stepper-Step_Background_Selected-13-0-2);
  border-color: var(--triplex-Stepper-Step_BorderColor_Hover-13-0-2);
  color: var(--triplex-Stepper-Step_Color_Selected-13-0-2);
}
.stepperStep__0c1e9aef.selected__4a5e8efd .arrow__feb724fe path:first-child {
  fill: var(--triplex-Stepper-Step_Background_Selected-13-0-2);
}
.stepperStep__0c1e9aef.selected__4a5e8efd .arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Hover-13-0-2);
}
.stepperStep__0c1e9aef.disabled__bfe5a716 {
  pointer-events: none;
}
.stepperStep__0c1e9aef.disabled__bfe5a716 .content__ec84a1fd {
  border-color: var(--triplex-Stepper-Step_BorderColor_Disabled-13-0-2);
  color: var(--triplex-Stepper-Step_Color_Disabled-13-0-2);
}
.stepperStep__0c1e9aef.disabled__bfe5a716 .arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Disabled-13-0-2);
}
.stepperStep__0c1e9aef.focusVisible__e31ffb73 .content__ec84a1fd {
  border-color: var(--triplex-Stepper-Step_BorderColor_Focus-13-0-2);
}
.stepperStep__0c1e9aef.focusVisible__e31ffb73 .arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Focus-13-0-2);
}
.content__ec84a1fd {
  background: var(--triplex-Stepper-Step_Background_Default-13-0-2);
  border-color: var(--triplex-Stepper-Step_BorderColor_Default-13-0-2);
  border-style: solid;
  color: var(--triplex-Stepper-Step_Color_Default-13-0-2);
  display: inline-flex;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}
.icon__00cfcc09 {
  line-height: 0;
}
.nonempty__a3c6780a .icon__00cfcc09 {
  margin-right: 4px;
}
.arrow__feb724fe {
  transform: translate(0);
}
.arrow__feb724fe path:first-child {
  fill: var(--triplex-Stepper-Step_Background_Default-13-0-2);
}
.arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Default-13-0-2);
}
.stepperProgress__6891617a {
  background: var(--triplex-Stepper-Progress_Background_Default-13-0-2);
  height: 2px;
  left: 0;
  position: absolute;
  top: 62px;
  width: 100%;
}
.progressBar__8e09e890 {
  background: var(--triplex-Stepper-Progress_Background_Filled-13-0-2);
  height: 100%;
  max-width: 100%;
}
.stepperExtended__72e9180a {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.stepper__2cffc5ea {
  padding-left: 32px;
  padding-right: 32px;
}
.stepperCarousel__ca9febe9 {
  margin-left: -32px;
  margin-right: -32px;
  position: relative;
}
.stepperCarousel__ca9febe9 .buttonNext__a3ea7c9c,
.stepperCarousel__ca9febe9 .buttonPrev__e1fb353d {
  bottom: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}
.stepperCarousel__ca9febe9 .buttonPrev__e1fb353d {
  left: 0;
}
.stepperCarousel__ca9febe9 .buttonNext__a3ea7c9c {
  right: 0;
}
.stepperCarousel__ca9febe9 .buttonPrevIcon__ef7a122f {
  background: var(--triplex-Stepper-ButtonPrev_Background-13-0-2);
}
.stepperCarousel__ca9febe9 .buttonNextIcon__a1439b40 {
  background: var(--triplex-Stepper-ButtonNext_Background-13-0-2);
}
@media (max-width: 767px) {
  .stepper__2cffc5ea {
    padding-left: 16px;
    padding-right: 16px;
  }
  .buttonNext__a3ea7c9c,
  .buttonPrev__e1fb353d {
    display: none;
  }
}
.globalStep__8db0e539 {
  align-items: center;
  border: 2px solid;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(31, 31, 34, 0.08);
  box-sizing: border-box;
  cursor: default;
  display: flex;
  flex-shrink: 0;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  line-height: 16px;
  text-transform: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 24px;
}
.globalStep__8db0e539.wait__5e745adb {
  background-color: var(--triplex-Step-Background_Color_Wait-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Wait-13-0-2);
  color: var(--triplex-Step-Color_Wait-13-0-2);
}
.globalStep__8db0e539.disabled__65891cc2 {
  background-color: var(--triplex-Step-Background_Color_Disabled-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Disabled-13-0-2);
  color: var(--triplex-Step-Color_Disabled-13-0-2);
}
.globalStep__8db0e539.success__502723e9 {
  background-color: var(--triplex-Step-Background_Color_Success-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Success-13-0-2);
  color: var(--triplex-Step-Color_Success-13-0-2);
}
.globalStep__8db0e539.warning__664d2048 {
  background-color: var(--triplex-Step-Background_Color_Warning-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Warning-13-0-2);
  color: var(--triplex-Step-Color_Warning-13-0-2);
}
.globalStep__8db0e539.error__6c68dcd3 {
  background-color: var(--triplex-Step-Background_Color_Error-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Error-13-0-2);
  color: var(--triplex-Step-Color_Error-13-0-2);
}
.statusTracker__98018e95 {
  display: flex;
}
.statusTrackerIcon__5f4cc4fd {
  line-height: 0;
  order: 1;
}
.statusTrackerBody__73ab9f35 {
  flex-grow: 1;
  order: 3;
}
.statusTrackerSidebar__a4d060e6 {
  order: 5;
}
.statusTrackerIcon__5f4cc4fd + .statusTrackerBody__73ab9f35 {
  margin-left: 16px;
}
.statusTrackerBody__73ab9f35 + .statusTrackerSidebar__a4d060e6 {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .statusTracker__98018e95 {
    flex-wrap: wrap;
  }
  .statusTracker__98018e95:before {
    content: "";
    flex: 0 0 100%;
    order: 4;
  }
  .statusTrackerIcon__5f4cc4fd + .statusTrackerBody__73ab9f35 {
    flex-basis: calc(100% - 80px);
  }
  .statusTrackerBody__73ab9f35 + .statusTrackerSidebar__a4d060e6 {
    margin-left: 0;
    margin-top: 24px;
  }
  .statusTrackerIcon__5f4cc4fd ~ .statusTrackerSidebar__a4d060e6 {
    margin-left: 80px;
  }
}
@media screen and (max-width: 576px) {
  .statusTracker__98018e95:after {
    content: "";
    flex: 0 0 100%;
    order: 2;
  }
  .statusTrackerBody__73ab9f35 + .statusTrackerSidebar__a4d060e6,
  .statusTrackerIcon__5f4cc4fd + .statusTrackerBody__73ab9f35 {
    margin-left: 0;
    margin-top: 24px;
  }
}
.spoiler__8f5c523f {
  display: flex;
  flex-direction: column;
}
.spoiler__8f5c523f .head__2f062a86 {
  display: flex;
  justify-content: space-between;
}
.spoiler__8f5c523f .head__2f062a86 .icon__19bdd3d4 {
  margin-left: 4px;
}
.spoiler__8f5c523f .head__2f062a86 .icon__19bdd3d4 path {
  fill: var(--triplex-Spoiler-Caret_Color-13-0-2);
}
.spoiler__8f5c523f .head__2f062a86 .icon__19bdd3d4.animationRotate180__964084b2 {
  transition: transform 0.3s ease-in-out;
}
.spoiler__8f5c523f .head__2f062a86 .icon__19bdd3d4.animationRotate180__964084b2.active__298e1ac6 {
  transform: rotate(-180deg);
}
.spoiler__8f5c523f .head__2f062a86 .toggleButton__52e875bf {
  margin-left: -2px;
}
.spoiler__8f5c523f .content__3dc94972 {
  margin-top: 8px;
}
.spoiler__8f5c523f .content__3dc94972.hidden__6abd8ba8 {
  display: none;
}
@keyframes fadeIn__c2aa3f2f {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.globalSpinnerWidget__cc1e9f83 {
  align-items: center;
  background-color: var(--triplex-Overlay-maskBackground-13-0-2);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10100;
}
@keyframes fadeIn__aad9c414 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.globalSpin__fe21ad24 {
  animation: spin360__092fc963 1s linear infinite;
}
@keyframes spin360__092fc963 {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.spinnerWrapper__e46ddd5e {
  align-items: center;
  animation: fadeIn__aad9c414 1s ease-in;
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.spinnerWrapper__e46ddd5e .textWrapper__c4b136bf {
  color: #1f1f22;
  color: var(--triplex-Spinner-Text_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 16px;
  text-align: center;
  text-transform: none;
  z-index: 1;
}
.spinnerWrapper__e46ddd5e .textWrapper__c4b136bf.sm__3a6e4f3b {
  margin-top: 8px;
}
.smallInput__30a32201 {
  background: var(--triplex-SmallInput-Background-13-0-2);
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--triplex-Input-Color_Default-13-0-2);
  font-family: inherit;
  font-size: 14px;
  height: 20px;
  outline: none;
  padding: 0 8px;
  vertical-align: top;
  width: 100%;
}
.smallInput__30a32201::-webkit-input-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.smallInput__30a32201::-moz-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.smallInput__30a32201::placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.smallInput__30a32201::-ms-clear {
  display: none;
}
.sliderExtendedRail__4664b353 {
  background: var(--triplex-Slider-Rail_Background-13-0-2);
  cursor: pointer;
  height: 4px;
}
.sliderExtended__7f4d5b3a {
  padding-bottom: 26px;
  padding-top: 10px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.sliderExtended__7f4d5b3a.disabled__a9269003 .sliderExtendedRail__4664b353 {
  cursor: default;
  pointer-events: none;
}
.sliderExtendedTrack__ecf8a5e3 {
  background: var(--triplex-Slider-Track_Background_Default-13-0-2);
  cursor: pointer;
  height: 4px;
  outline: none;
  position: absolute;
  top: 10px;
  z-index: 10;
}
.sliderExtendedTrack__ecf8a5e3:focus {
  box-shadow: inset 0 0 1px 1px var(--triplex-Accent-500-13-0-2);
}
.sliderExtendedTrack__ecf8a5e3.focusedByClick__9b6dab58:focus {
  box-shadow: none;
}
.sliderExtendedTrack__ecf8a5e3.hoverOrDragByMouse__1333331a {
  background: var(--triplex-Slider-Track_Background_Hover-13-0-2);
}
.sliderExtendedTrack__ecf8a5e3.staticSlider__d4b4618f {
  cursor: default;
  pointer-events: none;
}
.sliderExtendedTrack__ecf8a5e3.disabled__a9269003 {
  background: var(--triplex-Slider-Track_Background_Disabled-13-0-2);
  pointer-events: none;
}
.sliderExtendedTooltipOverlay__bfb09c49 {
  align-items: center;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%);
  visibility: hidden;
}
.sliderExtendedTooltipOverlay__bfb09c49 .tooltipBody__83210352 {
  background: var(--triplex-Slider-Tooltip_Background-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--triplex-Slider-Tooltip_Color-13-0-2);
  min-height: 52px;
  min-width: 52px;
  padding: 16px;
  position: relative;
  text-align: center;
  white-space: nowrap;
}
.sliderExtendedTooltipOverlay__bfb09c49 .tooltipTip__747545bd {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--triplex-Slider-Tooltip_Background-13-0-2);
  content: "";
  height: 0;
  width: 0;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .sliderExtendedTooltipOverlay__bfb09c49 .tooltipTip__747545bd {
    margin: -0.5px;
  }
}
.sliderExtendedMarks__de027357 {
  left: 0;
  position: absolute;
  right: 0;
  top: 10px;
}
.sliderExtendedMark__07f095c5 {
  cursor: pointer;
  position: absolute;
  top: 15px;
  transform: translateX(-50%);
}
.sliderExtendedMark__07f095c5 .sliderExtendedMarkDot__71fedd80 {
  background: var(--triplex-Slider-Mark_Dot_Background_Default-13-0-2);
  border-radius: 4px;
  display: block;
  height: 8px;
  left: 50%;
  position: absolute;
  top: -17px;
  transform: translateX(-50%);
  width: 8px;
}
.sliderExtendedMark__07f095c5 .sliderExtendedMarkDot__71fedd80.inSelectedRange__d395ebd2 {
  background: var(--triplex-Slider-Mark_Dot_Background_Selected-13-0-2);
}
.sliderExtendedMark__07f095c5 .sliderExtendedMarkText__49de562d {
  color: var(--triplex-Slider-Mark_Color_Default-13-0-2);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.sliderExtendedMark__07f095c5.disabled__a9269003,
.sliderExtendedMark__07f095c5.disabled__a9269003 .sliderExtendedMarkText__49de562d {
  pointer-events: none;
}
.sliderExtendedMark__07f095c5.disabled__a9269003 .sliderExtendedMarkDot__71fedd80.inSelectedRange__d395ebd2 {
  background: var(--triplex-Slider-Mark_Dot_Background_Selected_Disabled-13-0-2);
}
.sliderExtendedMark__07f095c5:first-child,
.sliderExtendedMark__07f095c5:last-child {
  transform: none;
}
.sliderExtendedMark__07f095c5:first-child.reverse__ad5e60ab .sliderExtendedMarkDot__71fedd80 {
  left: auto;
  right: 0;
  transform: translateX(50%);
}
.sliderExtendedMark__07f095c5:first-child.reverse__ad5e60ab .sliderExtendedMarkText__49de562d {
  margin-right: -4px;
}
.sliderExtendedMark__07f095c5:first-child:not(.reverse__ad5e60ab) .sliderExtendedMarkDot__71fedd80 {
  left: 0;
  transform: translateX(-50%);
}
.sliderExtendedMark__07f095c5:first-child .sliderExtendedMarkText__49de562d {
  margin-left: -4px;
}
.sliderExtendedMark__07f095c5:last-child.reverse__ad5e60ab .sliderExtendedMarkDot__71fedd80 {
  left: 0;
  transform: translateX(-50%);
}
.sliderExtendedMark__07f095c5:last-child.reverse__ad5e60ab .sliderExtendedMarkText__49de562d {
  margin-left: -4px;
}
.sliderExtendedMark__07f095c5:last-child:not(.reverse__ad5e60ab) .sliderExtendedMarkDot__71fedd80 {
  left: auto;
  right: 0;
  transform: translateX(50%);
}
.sliderExtendedMark__07f095c5:last-child .sliderExtendedMarkText__49de562d {
  margin-right: -4px;
}
.sliderExtendedMark__07f095c5.active__19c884f6 {
  pointer-events: none;
}
.sliderExtendedMark__07f095c5.active__19c884f6 .sliderExtendedMarkText__49de562d {
  color: var(--triplex-Slider-Mark_Color_Active-13-0-2);
}
.sliderExtendedDot__a1ebfc3e {
  background: var(--triplex-Slider-Dot_Background_Default-13-0-2);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  height: 24px;
  outline: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 24px;
  z-index: 20;
}
.sliderExtendedDot__a1ebfc3e:focus {
  box-shadow: inset 0 0 1px 1px var(--triplex-Accent-500-13-0-2);
}
.sliderExtendedDot__a1ebfc3e.focusedByClick__9b6dab58:focus {
  box-shadow: none;
}
.sliderExtendedDot__a1ebfc3e:after {
  background: var(--triplex-Slider-Dot_Background_Default-13-0-2);
  border-radius: 4px;
  content: "";
  display: block;
  height: 8px;
  left: 8px;
  position: absolute;
  top: 8px;
  width: 8px;
}
.sliderExtendedDot__a1ebfc3e:before {
  background: var(--triplex-Slider-Dot_Inner_Background-13-0-2);
  border-radius: 6px;
  content: "";
  display: block;
  height: 12px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 12px;
}
.sliderExtendedDot__a1ebfc3e.disabled__a9269003 {
  pointer-events: none;
}
.sliderExtendedDot__a1ebfc3e.disabled__a9269003,
.sliderExtendedDot__a1ebfc3e.disabled__a9269003:after {
  background: var(--triplex-Slider-Dot_Background_Disabled-13-0-2);
}
.sliderExtendedDot__a1ebfc3e.dragByMouse__7575d1cc,
.sliderExtendedDot__a1ebfc3e:hover {
  background: var(--triplex-Slider-Dot_Background_Hover-13-0-2);
}
.sliderExtendedDot__a1ebfc3e.dragByMouse__7575d1cc:after,
.sliderExtendedDot__a1ebfc3e:hover:after {
  background: var(--triplex-Slider-Dot_Inner_Background-13-0-2);
}
.sliderExtendedDot__a1ebfc3e:focus .sliderExtendedTooltipOverlay__bfb09c49,
.sliderExtendedDot__a1ebfc3e:hover .sliderExtendedTooltipOverlay__bfb09c49 {
  visibility: visible;
}
.skeleton__cb6c5b60 {
  animation: skeleton-gradient-animation__28562911 3s cubic-bezier(0.59, 0, 0.45, 0.98) infinite;
  background-position: 0 0;
  background-size: 200%;
  border-radius: 16px;
  flex-grow: 1;
}
.skeleton__cb6c5b60.light__7dfa07a9 {
  background-image: var(--triplex-Skeleton-BackgroundImage_Light-13-0-2);
}
.skeleton__cb6c5b60.dark__707bbe7a {
  background-image: var(--triplex-Skeleton-BackgroundImage_Dark-13-0-2);
}
@keyframes skeleton-gradient-animation__28562911 {
  0%,
  10% {
    background-position: 2%;
  }
  40%,
  60% {
    background-position: 99%;
  }
  90%,
  to {
    background-position: 2%;
  }
}
.selectExtendedTarget__8f099864 {
  align-items: center;
  background: var(--triplex-Select-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Select-Border_Color_Default-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  color: #1f1f22;
  color: var(--triplex-Select-Color_Default-13-0-2);
  cursor: pointer;
  display: flex;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 32px;
  justify-content: space-between;
  line-height: 16px;
  outline: none;
  padding: 0 35px 0 11px;
  position: relative;
  text-transform: none;
}
.selectExtendedTarget__8f099864 .label__8b8ddfc8 {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.selectExtendedTarget__8f099864 .caretIcon__9a65cc0f,
.selectExtendedTarget__8f099864 .spinnerIcon__2d8916cc {
  bottom: 0;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 11px;
  top: 0;
}
.selectExtendedTarget__8f099864 .caretIcon__9a65cc0f {
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.selectExtendedTarget__8f099864 .caretIcon__9a65cc0f path {
  fill: var(--triplex-Select-Caret_Color_Default-13-0-2);
}
.selectExtendedTarget__8f099864.placeholder__21dcd17b {
  color: var(--triplex-Select-Color_Placeholder-13-0-2);
}
.selectExtendedTarget__8f099864.selectOpened__963653bc,
.selectExtendedTarget__8f099864:focus {
  border-color: var(--triplex-Select-Border_Color_Focus-13-0-2);
}
.selectExtendedTarget__8f099864.disabled__26a0ef5c,
.selectExtendedTarget__8f099864.disabled__26a0ef5c:active,
.selectExtendedTarget__8f099864.disabled__26a0ef5c:focus {
  background: var(--triplex-Select-Background_Disabled-13-0-2);
  border-color: var(--triplex-Select-Border_Color_Disabled-13-0-2);
  color: var(--triplex-Select-Color_Disabled-13-0-2);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.selectExtendedTarget__8f099864.disabled__26a0ef5c path,
.selectExtendedTarget__8f099864.disabled__26a0ef5c:active path,
.selectExtendedTarget__8f099864.disabled__26a0ef5c:focus path {
  fill: var(--triplex-Select-Caret_Color_Disabled-13-0-2);
}
.selectExtendedTarget__8f099864.error__325cfb02 {
  border-color: var(--triplex-Select-Border_Color_Error-13-0-2);
}
.selectExtendedTarget__8f099864.selectOpened__963653bc .caretIcon__9a65cc0f {
  transform: rotate(180deg);
}
.grouped__7dda36c8 .selectOpened__963653bc {
  z-index: 1;
}
.selectExtended__057ac28e {
  position: relative;
}
.select__26d9044e {
  min-width: 72px;
}
.selectDropdownListItem__0977b1bd {
  overflow: hidden;
  text-overflow: ellipsis;
}
.grouped__46c69590 {
  flex: 1;
}
.grouped__46c69590:not(:first-child) {
  margin-left: -1px;
}
.grouped__46c69590 .left__977da1dc {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__46c69590 .intermediate__61351b78 {
  border-radius: 0;
}
.grouped__46c69590 .right__ac454ca0 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__46c69590 .selectTarget__3fe9d634.error__01124c9f {
  z-index: 1;
}
.grouped__46c69590 .selectTarget__3fe9d634:focus {
  z-index: 2;
}
.segmentedControl__c06cee8c {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.segmentedControlSegment__d72b8570,
.segmentedControl__c06cee8c {
  display: flex;
  font-family: SBSansUI, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.segmentedControlSegment__d72b8570 {
  align-items: center;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  color: #1f1f22;
  cursor: pointer;
  flex: 1;
  font-size: 14px;
  height: 32px;
  justify-content: center;
  line-height: 16px;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0 7px;
  position: relative;
  text-transform: none;
  white-space: nowrap;
  z-index: 20;
}
.segmentedControlSegment__d72b8570::-moz-focus-inner {
  border: none;
}
.segmentedControlSegment__d72b8570:hover {
  z-index: 40;
}
.segmentedControlSegment__d72b8570.selected__20da3f10 {
  z-index: 10;
}
.segmentedControlSegment__d72b8570:focus-visible {
  z-index: 30;
}
.segmentedControlSegment__d72b8570:disabled {
  cursor: default;
}
.segmentedControlSegment__d72b8570:first-child {
  border-radius: 8px 0 0 8px;
}
.segmentedControlSegment__d72b8570:last-child {
  border-radius: 0 8px 8px 0;
}
.segmentedControlSegment__d72b8570 + .segmentedControlSegment__d72b8570 {
  margin-left: -1px;
}
.segmentedControlSegmentContent__5db879e7 {
  display: block;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
}
.segmentedControlSingleSegment__8ecd784d.selected__20da3f10 {
  cursor: default;
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570 {
  background: var(--triplex-SegmentedControl-General_Background_Default-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Default-13-0-2);
  color: var(--triplex-SegmentedControl-General_Color_Default-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570:hover {
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Hover-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570.selected__20da3f10 {
  background: var(--triplex-SegmentedControl-General_Background_Selected_Default-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Selected_Default-13-0-2);
  color: var(--triplex-SegmentedControl-General_Color_Selected_Default-13-0-2);
  font-weight: 600;
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570.selected__20da3f10:disabled {
  background: var(--triplex-SegmentedControl-General_Background_Selected_Disabled-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Selected_Disabled-13-0-2);
  color: var(--triplex-SegmentedControl-General_Color_Selected_Disabled-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570:focus-visible {
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Focus-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570:disabled {
  background: var(--triplex-SegmentedControl-General_Background_Disabled-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Disabled-13-0-2);
  color: var(--triplex-SegmentedControl-General_Color_Disabled-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570.segmentedControlMultipleSegment__0f0de7a7.selected__20da3f10:hover {
  background: var(--triplex-SegmentedControl-General_Multiple_Background_Selected_Hover-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_Multiple_BorderColor_Selected_Hover-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570.segmentedControlMultipleSegment__0f0de7a7.selected__20da3f10:focus-visible {
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Focus-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570 {
  background: var(--triplex-SegmentedControl-Secondary_Background_Default-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Default-13-0-2);
  color: var(--triplex-SegmentedControl-Secondary_Color_Default-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570:hover {
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Hover-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570.selected__20da3f10 {
  background: var(--triplex-SegmentedControl-Secondary_Background_Selected_Default-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Selected_Default-13-0-2);
  color: var(--triplex-SegmentedControl-Secondary_Color_Selected_Default-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570.selected__20da3f10:disabled {
  background: var(--triplex-SegmentedControl-Secondary_Background_Selected_Disabled-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Selected_Disabled-13-0-2);
  color: var(--triplex-SegmentedControl-Secondary_Color_Selected_Disabled-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570:focus-visible {
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Focus-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570:disabled {
  background: var(--triplex-SegmentedControl-Secondary_Background_Disabled-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Disabled-13-0-2);
  color: var(--triplex-SegmentedControl-Secondary_Color_Disabled-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlMultipleSegment__0f0de7a7.selected__20da3f10:hover {
  background: var(--triplex-SegmentedControl-Secondary_Multiple_Background_Selected_Hover-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_Multiple_BorderColor_Selected_Hover-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlMultipleSegment__0f0de7a7.selected__20da3f10:focus-visible {
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Focus-13-0-2);
}
.globalSmsInput__d8608719 {
  display: inline-block;
  position: relative;
  width: 100%;
}
.globalSmsInput__d8608719 .input__ecde47df {
  border-radius: 16px;
  box-sizing: border-box;
  padding-left: 33px;
  padding-right: 33px;
  text-align: center;
}
.globalSmsInput__d8608719 .input__ecde47df.SM__82a5d67f {
  border-radius: 14px;
  height: 28px;
  padding-bottom: 5px;
  padding-top: 5px;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c {
  left: 6px;
  outline: none;
  position: absolute;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c.MD__2ff1c175 {
  top: 6px;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c.SM__82a5d67f {
  top: 4px;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c.disabled__fa7beeee {
  cursor: default;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c .full__2027c508 {
  fill: var(--triplex-SMSInput-Refresh_Fill_Full-13-0-2);
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c .empty__9456fec0 {
  fill: var(--triplex-SMSInput-Refresh_Fill_Empty-13-0-2);
}
.globalSmsInput__d8608719 .btnSubmit__490c796f {
  position: absolute;
  right: 6px;
}
.globalSmsInput__d8608719 .btnSubmit__490c796f.MD__2ff1c175 {
  top: 6px;
}
.globalSmsInput__d8608719 .btnSubmit__490c796f.SM__82a5d67f {
  top: 4px;
}
.row__7b39bcf7 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  padding-bottom: 16px;
}
.row__7b39bcf7.noPaddingBottom__181c8657,
.row__7b39bcf7:last-child {
  padding-bottom: 0;
}
.radioYGroup__98402b43 {
  display: inline-flex;
  flex-flow: column wrap;
  max-width: 100%;
}
.radioYGroup__98402b43 .label__344b436b + .label__344b436b {
  margin-top: 16px;
}
.radioXGroup__1a1def76 {
  display: inline-flex;
  flex-flow: row wrap;
}
.radioXGroup__1a1def76.indent-12__18b4e0a7 {
  margin-left: -6px;
  margin-right: -6px;
}
.radioXGroup__1a1def76.indent-12__18b4e0a7 .label__344b436b {
  margin-left: 6px;
  margin-right: 6px;
}
.radioXGroup__1a1def76.indent-16__118da778 {
  margin-left: -8px;
  margin-right: -8px;
}
.radioXGroup__1a1def76.indent-16__118da778 .label__344b436b {
  margin-left: 8px;
  margin-right: 8px;
}
.radioXGroup__1a1def76.indent-20__1cbf736d {
  margin-left: -10px;
  margin-right: -10px;
}
.radioXGroup__1a1def76.indent-20__1cbf736d .label__344b436b {
  margin-left: 10px;
  margin-right: 10px;
}
.radioXGroup__1a1def76.indent-24__2222bc3f {
  margin-left: -12px;
  margin-right: -12px;
}
.radioXGroup__1a1def76.indent-24__2222bc3f .label__344b436b {
  margin-left: 12px;
  margin-right: 12px;
}
.radioXGroup__1a1def76.indent-28__72f11e65 {
  margin-left: -14px;
  margin-right: -14px;
}
.radioXGroup__1a1def76.indent-28__72f11e65 .label__344b436b {
  margin-left: 14px;
  margin-right: 14px;
}
.radioXGroup__1a1def76.indent-32__950a8b3b {
  margin-left: -16px;
  margin-right: -16px;
}
.radioXGroup__1a1def76.indent-32__950a8b3b .label__344b436b {
  margin-left: 16px;
  margin-right: 16px;
}
.label__344b436b {
  color: var(--triplex-Radio-Color_Default-13-0-2);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  min-height: 16px;
  min-width: 16px;
  position: relative;
}
.label__344b436b.nonempty__c3c744f9 {
  padding-left: 24px;
}
.label__344b436b.disabled__7d98d744 {
  color: var(--triplex-Radio-Color_Disabled-13-0-2);
  cursor: default;
}
.radio__08f36319 {
  margin: 0;
  opacity: 0;
}
.radioIcon__e73bdcb9 {
  background: var(--triplex-Radio-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Radio-BorderColor_Default-13-0-2);
  border-radius: 50%;
  box-sizing: border-box;
}
.radioIcon__e73bdcb9:after {
  background: var(--triplex-Radio-Dot_Default-13-0-2);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 4px;
  position: absolute;
  top: 4px;
  transform: scale(0);
  width: 6px;
}
.radioIcon__e73bdcb9,
.radioIcon__e73bdcb9:after {
  pointer-events: none;
}
.radioIcon__e73bdcb9,
.radio__08f36319 {
  height: 16px;
  left: 0;
  position: absolute;
  width: 16px;
}
.nonempty__c3c744f9 .radioIcon__e73bdcb9,
.nonempty__c3c744f9 .radio__08f36319 {
  top: 2px;
}
.radio__08f36319:enabled {
  cursor: pointer;
}
.radio__08f36319:checked + .radioIcon__e73bdcb9 {
  background: var(--triplex-Radio-Background_Checked_Default-13-0-2);
  border-color: var(--triplex-Radio-BorderColor_Checked-13-0-2);
}
.radio__08f36319:checked + .radioIcon__e73bdcb9:after {
  transform: scale(1);
  transition: transform 0.2s ease-out;
}
.radio__08f36319:hover + .radioIcon__e73bdcb9 {
  border-color: var(--triplex-Radio-BorderColor_Hover-13-0-2);
}
.radio__08f36319:disabled + .radioIcon__e73bdcb9 {
  background: var(--triplex-Radio-Background_Disabled-13-0-2);
  border-color: var(--triplex-Radio-BorderColor_Disabled-13-0-2);
}
.radio__08f36319:disabled + .radioIcon__e73bdcb9:after {
  background: var(--triplex-Radio-Dot_Disabled-13-0-2);
}
.radio__08f36319[data-focus-visible]:focus + .radioIcon__e73bdcb9 {
  border-color: var(--triplex-Radio-BorderColor_Focused-13-0-2);
}
.radio__08f36319:checked:enabled:hover + .radioIcon__e73bdcb9 {
  background-color: var(--triplex-Radio-Background_Checked_Hover-13-0-2);
}
.paginationSelect__b320ace7 {
  align-items: center;
  display: flex;
  left: 0;
  position: absolute;
}
.paginationSelect__b320ace7 .paginationSelectLabel__6b08c1aa {
  color: var(--triplex-TableBasic-PaginationBasic_Color-13-0-2);
}
.paginationSelect__b320ace7 .paginationSelectControl__d64263f9 {
  margin-left: 8px;
}
.pageEllipsis__794fc348 {
  align-items: center;
  border-radius: 50%;
  color: var(--triplex-TableBasic-PaginationBasic_Color-13-0-2);
  cursor: default;
  display: flex;
  height: 24px;
  justify-content: center;
  margin: 0 4px;
  width: 24px;
}
.paginationPageButton__93c1377c {
  align-items: center;
  background-color: var(--triplex-Pagination-PageButton_Background_Default-13-0-2);
  border: 1px solid var(--triplex-Pagination-PageButton_BorderColor_Default-13-0-2);
  border-radius: 50%;
  color: var(--triplex-Pagination-PageButton_Color-13-0-2);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  height: 32px;
  justify-content: center;
  margin: 0 2px;
  width: 32px;
}
.paginationPageButton__93c1377c:focus-visible {
  border-color: var(--triplex-Pagination-PageButton_BorderColor_Focus-13-0-2);
  outline: none;
}
.paginationPageButton__93c1377c:hover {
  background-color: var(--triplex-Pagination-PageButton_Background_Hover-13-0-2);
}
.paginationPageButton__93c1377c.currentPage__21d1408b {
  background-color: var(--triplex-Pagination-PageButton_Background_Selected-13-0-2);
  cursor: default;
}
.paginationNavigationExtended__07f7fa15 {
  align-items: center;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.paginationExtended__c013aa76 {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 24px 0;
  position: relative;
}
.page__2bf248b2 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  max-width: 100%;
}
.bodyPage__47e46fdf {
  flex-grow: 1;
}
.overlay__e44a6ca7 {
  bottom: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: 0;
  visibility: hidden;
}
.overlay__e44a6ca7.fixed__0df23cf8 {
  position: fixed;
}
.overlay__e44a6ca7.closing__70f6e896,
.overlay__e44a6ca7.opened__db9e10e4 {
  left: 0;
  right: 0;
  visibility: visible;
}
.overlayPanel__05ca4e13 {
  background: var(--triplex-Basic-100-13-0-2);
  overflow: auto;
  position: absolute;
  transition: transform 0.3s;
}
.overlayPanel__05ca4e13.bottom__1c05fa82 {
  bottom: 0;
  box-shadow: 0 -13px 17px 0 rgba(0, 0, 0, 0.14);
  left: 0;
  right: 0;
  transform: translateY(100%);
}
.overlayPanel__05ca4e13.left__5486aadf {
  box-shadow: 13px 0 17px 0 rgba(0, 0, 0, 0.14);
  height: 100%;
  left: 0;
  top: 0;
  transform: translateX(-100%);
}
.overlayPanel__05ca4e13.right__3c02cb94 {
  box-shadow: -13px 0 17px 0 rgba(0, 0, 0, 0.14);
  height: 100%;
  right: 0;
  top: 0;
  transform: translateX(100%);
}
.overlayPanel__05ca4e13.top__92ae7ada {
  box-shadow: 0 13px 17px 0 rgba(0, 0, 0, 0.14);
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
.overlayPanel__05ca4e13.left__5486aadf.opened__db9e10e4,
.overlayPanel__05ca4e13.right__3c02cb94.opened__db9e10e4 {
  transform: translateX(0);
}
.overlayPanel__05ca4e13.bottom__1c05fa82.opened__db9e10e4,
.overlayPanel__05ca4e13.top__92ae7ada.opened__db9e10e4 {
  transform: translateY(0);
}
.overlayContent__207e60a8 {
  display: flex;
  min-height: 100%;
}
.overlayMask__0636667c {
  background: var(--triplex-Overlay-maskBackground-13-0-2);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s;
  width: 100%;
}
.overlayMask__0636667c.overlayOpened__59386f93 {
  opacity: 1;
}
.orderedListItem__f42e36ba {
  counter-increment: list-item-tx;
}
.orderedListItem__f42e36ba:before {
  content: counter(list-item-tx) ".";
  display: inline-block;
  left: 0;
  position: absolute;
}
.orderedListItem__f42e36ba + .orderedListItem__f42e36ba {
  margin-top: 8px;
}
.orderedList__42e8915a {
  counter-reset: list-item-tx;
  list-style: none;
  margin: 0;
  padding-left: 25px;
  position: relative;
}
.notification__0d6c581c {
  background: var(--triplex-Notification-Background-13-0-2);
  border-radius: 8px;
  box-shadow: var(--triplex-Notification-Shadow-13-0-2);
  box-sizing: border-box;
  color: var(--triplex-Notification-Color-13-0-2);
  display: flex;
  margin-top: 8px;
  padding: 16px 32px 16px 16px;
  position: relative;
  width: 376px;
  z-index: 300;
}
.notification__0d6c581c:first-child {
  margin-top: 0;
}
.notification__0d6c581c.extraBottomPadding__1b3394be {
  padding-bottom: 24px;
}
.notification__0d6c581c .notificationHeader__8ee3f081 {
  color: var(--triplex-Notification-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
  margin-top: 0;
  width: 100%;
}
.notification__0d6c581c .notificationIcon__e74203a0 {
  line-height: 0;
}
.notification__0d6c581c .notificationBody__cc458120 {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-left: 8px;
}
.notification__0d6c581c .notificationBodyList__b34db948 {
  margin-top: 8px;
}
.notification__0d6c581c .notificationBodyContent__0dfc37db {
  font-size: 14px;
  line-height: 20px;
  width: 100%;
}
.notification__0d6c581c .notificationClose__8f6a70ce {
  background-color: initial;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  line-height: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  right: 8px;
  top: 8px;
}
.notification__0d6c581c.showCloseOnHover__a103afb8 .notificationClose__8f6a70ce {
  opacity: 0;
}
.notification__0d6c581c.showCloseOnHover__a103afb8:hover {
  cursor: pointer;
}
.notification__0d6c581c.showCloseOnHover__a103afb8:hover .notificationClose__8f6a70ce {
  opacity: 1;
}
.notification__0d6c581c .notificationFooter__21c36303 {
  align-items: center;
  display: flex;
  margin-top: 16px;
}
.notification__0d6c581c .notificationFooter__21c36303 button + a {
  margin-left: 16px;
}
.notification__0d6c581c .notificationTime__e6d27ae8 {
  bottom: 8px;
  color: #7d838a;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 8px;
  text-transform: uppercase;
}
.notificationGroupedWrapper__fa1c300b {
  margin-bottom: 32px;
  position: relative;
  width: 376px;
}
.notificationGroupedWrapper__fa1c300b:hover {
  cursor: pointer;
}
.notificationGroupedWrapper__fa1c300b .notificationGroupedFooterItem__b751089e {
  background: var(--triplex-Notification-Background-13-0-2);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--triplex-Notification-Shadow-13-0-2);
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
}
.notificationGroupedWrapper__fa1c300b .notificationGroupedFooterItem__b751089e.first__fa640f03 {
  bottom: -8px;
  z-index: 200;
}
.notificationGroupedWrapper__fa1c300b .notificationGroupedFooterItem__b751089e.second__07cb462f {
  bottom: -16px;
  z-index: 100;
}
@media (max-width: 767px) {
  .notificationGroupedWrapper__fa1c300b,
  .notification__0d6c581c {
    width: 100%;
  }
}
.multiselectHeader__0aefcd96 {
  padding: 16px 12px 0;
}
.multiselectHeader__0aefcd96:after {
  border-bottom: 1px solid var(--triplex-Multiselect-Divider_Color-13-0-2);
  content: "";
  display: block;
  height: 16px;
  margin: 0 -12px;
}
.multiselectFooter__d5852fcb {
  padding: 0 12px 16px;
}
.multiselectFooter__d5852fcb:before {
  border-top: 1px solid var(--triplex-Multiselect-Divider_Color-13-0-2);
  content: "";
  display: block;
  height: 16px;
  margin: 0 -12px;
}
.multiselectContentWrapper__63a6a63c {
  padding: 4px;
}
.multiselectContentWrapper__63a6a63c .multiselectContent__9b7dfd5d {
  box-sizing: border-box;
  height: 196px;
  outline: none;
  overflow-y: auto;
  padding: 8px;
}
.monthYearPickerTarget__4568b606 {
  position: relative;
}
.monthYearPicker__6a49ef12 {
  width: 126px;
}
.modalWindowTopOverlayWrapper__d002ab22 {
  position: absolute;
  top: 0;
  width: inherit;
  z-index: 200;
}
.modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlay__e8e2c08c {
  border-radius: 16px 16px 0 0;
}
.modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayClose__2166c578 {
  top: 30px;
}
@media (max-width: 767px) {
  .modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayInner__40914899 {
    padding: 20px 52px 20px 16px;
  }
  .modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayClose__2166c578 {
    right: 16px;
    top: 22px;
  }
  .modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayContent__156a4c61 {
    margin-bottom: 20px;
  }
  .modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayTitle__78d68373 {
    font-size: 16px;
    line-height: 24px;
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowSm__1edd791b .modalWindowContentWrapper__450d505a {
  max-width: 480px;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowSm__1edd791b .modalWindowContent__4076a3a1 .modalWindowBody__d02356d9 {
  min-height: 200px;
}
@media (max-width: 575px) {
  .modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowSm__1edd791b .modalWindowContentWrapper__450d505a {
    max-width: 100%;
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowMd__c8fcbd36 .modalWindowContentWrapper__450d505a {
  max-width: 600px;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowMd__c8fcbd36 .modalWindowContent__4076a3a1 .modalWindowBody__d02356d9 {
  min-height: 290px;
}
@media (max-width: 767px) {
  .modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowMd__c8fcbd36 .modalWindowContentWrapper__450d505a {
    max-width: 100%;
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowLg__71b72b92 .modalWindowContentWrapper__450d505a {
  max-width: 800px;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowLg__71b72b92 .modalWindowContent__4076a3a1 .modalWindowBody__d02356d9 {
  min-height: 440px;
}
@media (max-width: 991px) {
  .modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowLg__71b72b92 .modalWindowContentWrapper__450d505a {
    max-width: 100%;
  }
}
@keyframes modalWindowContentAnimationOnEnter__ca2285f6 {
  0% {
    transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(-120%);
  }
  to {
    transform: translate(0);
    -ms-transform: translate(0);
  }
}
@keyframes modalWindowContentAnimationOnExit__ff6b7963 {
  0% {
    transform: translate(0);
    -ms-transform: translate(0);
  }
  to {
    transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(-120%);
  }
}
.modalWindowHeader__e8cf9bc1 {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.modalWindowHeader__e8cf9bc1 .globalHeaderTitle__b1c60466 {
  padding-right: 84px;
}
@media (max-width: 767px) {
  .modalWindowHeader__e8cf9bc1 .globalHeaderTitle__b1c60466 {
    padding-right: 52px;
  }
}
.modalWindowFooter__9cf99ffe {
  border-radius: 0 0 16px 16px;
}
.modalWindowClose__7216b86e {
  position: absolute;
  right: 32px;
  top: 30px;
  z-index: 10150;
}
@media (max-width: 767px) {
  .modalWindowClose__7216b86e {
    right: 16px;
    top: 22px;
  }
}
@keyframes modalWindowContentAnimationOnEnter__ca2285f6 {
  0% {
    transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(-120%);
  }
  to {
    transform: translate(0);
    -ms-transform: translate(0);
  }
}
@keyframes modalWindowContentAnimationOnExit__ff6b7963 {
  0% {
    transform: translate(0);
    -ms-transform: translate(0);
  }
  to {
    transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(-120%);
  }
}
.modalWindowContainer__542eadcb {
  bottom: 0;
  left: var(--modalWindow-screen-left, 0);
  position: fixed;
  top: var(--modalWindow-screen-top, 0);
  width: var(--modalWindow-screen-width, 100%);
  z-index: 1400;
}
.modalWindowContainer__542eadcb .modalWindowBackdrop__9e4768dc {
  background-color: var(--triplex-Backdrop-background-13-0-2);
  height: 100%;
  pointer-events: none;
  position: fixed;
  width: 100%;
  width: var(--modalWindow-screen-width, 100%);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .modalWindowContainer__542eadcb .modalWindowBackdrop__9e4768dc {
    bottom: 1px;
    min-height: calc(100% + 1px);
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f {
  height: calc(100% - var(--modalWindow-screen-top, 0));
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  width: var(--modalWindow-screen-width, 100%);
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a {
  animation: modalWindowContentAnimationOnEnter__ca2285f6 0.6s ease;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: calc(100% - 32px);
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 {
  margin-top: 80px;
  width: 100%;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1,
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .globalSpinnerWidget__cc1e9f83 {
  border-radius: 16px;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .modalWindowBody__d02356d9 {
  animation: fadeIn__e16684c1 0.3s ease;
  box-sizing: border-box;
}
@keyframes fadeIn__e16684c1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .spinnerSm__eb72c174 {
  display: none;
}
@media (max-width: 767px) {
  .modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .spinner__ef66a2dd {
    display: none;
  }
  .modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .spinnerSm__eb72c174 {
    display: flex;
  }
}
.modalWindowContainer__542eadcb .modalWindowClose__7216b86e {
  -webkit-tap-highlight-color: transparent;
  transition: visibility 0s 0.3s;
}
.modalWindowContainer__542eadcb.modalTopOverlayActive__781bdc89 .modalWindowClose__7216b86e {
  transition: none;
  visibility: hidden;
}
.modalWindowContainer__542eadcb.modalTopOverlayActive__781bdc89 .modalWindowContent__4076a3a1:after {
  animation: fadeIn__e16684c1 0.3s ease;
  background-color: var(--triplex-Overlay-maskBackground-13-0-2);
  border-radius: 16px;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 150;
}
.modalWindowTransition-exit .modalWindow__e55c967f .modalWindowContentWrapper__450d505a {
  animation: modalWindowContentAnimationOnExit__ff6b7963 0.3s ease;
  transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(-120%);
}
.modalWindowTransition-exit .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowBody__d02356d9 {
  animation: fadeOut__daa014c6 0.3s ease;
}
@keyframes fadeOut__daa014c6 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.no-hash-overflow-hidden {
  overflow: hidden;
}
.maskedInputWrapper__284521e5 {
  position: relative;
}
.maskedInputWrapper__284521e5 .maskedInputPlaceholder__f9faa95d {
  left: 0;
  position: absolute;
  top: 0;
}
.maskedInputWrapper__284521e5 .maskedInputPlaceholder__f9faa95d::-webkit-input-placeholder {
  opacity: 1;
}
.maskedInputWrapper__284521e5 .maskedInputPlaceholder__f9faa95d::-moz-placeholder {
  opacity: 1;
}
.maskedInputWrapper__284521e5 .maskedInputPlaceholder__f9faa95d::placeholder {
  opacity: 1;
}
.maskedInput__4d45c9fa {
  background: none!important;
  display: block;
  position: relative;
}
.grouped__aa3e5e3b {
  flex: 1;
}
.grouped__aa3e5e3b:not(:first-child) {
  margin-left: -1px;
}
.grouped__aa3e5e3b .left__2cc79c73 {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__aa3e5e3b .intermediate__9b67c6a6 {
  border-radius: 0;
}
.grouped__aa3e5e3b .right__c88c2c39 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__aa3e5e3b .maskedInput__4d45c9fa.error__17a35778 {
  z-index: 1;
}
.grouped__aa3e5e3b .maskedInput__4d45c9fa:focus {
  z-index: 2;
}
.globalMarkerStatus__0321ad81 {
  position: relative;
}
.globalMarkerStatus__0321ad81 .markerContainer__5b3483ac {
  position: absolute;
  top: 6px;
}
.globalMarkerStatus__0321ad81 .markerStatusText__428e5111 {
  color: #1f1f22;
  color: var(--triplex-MarkerStatus-Text_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-left: 12px;
  text-transform: none;
}
.globalMarkerStatus__0321ad81 .markerStatusDesc__f03d949e {
  color: #7d838a;
  color: var(--triplex-MarkerStatus-Desc_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 4px 0 0 12px;
  text-transform: none;
}
.marker__9b495083 {
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
.marker__9b495083.markerSuccess__2e5cbd9c {
  background: var(--triplex-Marker-Background_Success-13-0-2);
}
.marker__9b495083.markerError__d3afaaae {
  background: var(--triplex-Marker-Background_Error-13-0-2);
}
.marker__9b495083.markerWarning__4e21a18b {
  background: var(--triplex-Marker-Background_Warning-13-0-2);
}
.marker__9b495083.markerWaiting__737427f5 {
  background: var(--triplex-Marker-Background_Waiting-13-0-2);
}
.selectionControls__65b15327 {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.listMasterHeader__6f03903e {
  background: var(--triplex-ListMaster-Header_Background-13-0-2);
  color: var(--triplex-ListMaster-Header_Color-13-0-2);
  padding: 12px 16px;
}
.listMasterHeader__6f03903e.sticky__0ea2714a {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}
.listMasterFooter__4dd13c22 {
  align-items: center;
  background: var(--triplex-ListMaster-Footer_Background-13-0-2);
  color: var(--triplex-ListMaster-Footer_Color-13-0-2);
  display: flex;
  justify-content: space-between;
  padding: 16px;
}
.listMasterFooter__4dd13c22.sticky__0ea2714a {
  bottom: 0;
  position: -webkit-sticky;
  position: sticky;
}
.listMasterFooterDescription__621f9414 {
  padding-right: 16px;
}
.listMasterFooterControls__d85c625b {
  white-space: nowrap;
}
.listMasterChipGroup__dcc8bc34 {
  padding: 0 16px;
}
.listItemTail__1c9f7f2e {
  bottom: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 20px;
}
.listItemTailLine__820c4a63 {
  background: var(--triplex-ListMaster-Background-13-0-2);
  bottom: 0;
  left: 8px;
  position: absolute;
  top: 0;
  width: 4px;
}
.listItemTailTop__4048fdfe {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.listItemTailTop__4048fdfe:after {
  border-top-left-radius: 8px;
  box-shadow: -2px -2px 0 2px var(--triplex-ListMaster-Background-13-0-2);
  content: "";
  height: 8px;
  left: 12px;
  position: absolute;
  top: 0;
  width: 8px;
}
.listItemTailTop__4048fdfe:before {
  border-top-right-radius: 8px;
  box-shadow: 2px -2px 0 2px var(--triplex-ListMaster-Background-13-0-2);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0;
  width: 8px;
}
.listItemTailBottom__8f542616 {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}
.listItemTailBottom__8f542616:after {
  border-bottom-left-radius: 8px;
  bottom: 0;
  box-shadow: -2px 2px 0 2px var(--triplex-ListMaster-Background-13-0-2);
  content: "";
  height: 8px;
  left: 12px;
  position: absolute;
  width: 8px;
}
.listItemTailBottom__8f542616:before {
  border-bottom-right-radius: 8px;
  bottom: 0;
  box-shadow: 2px 2px 0 2px var(--triplex-ListItem-Tail_Background-13-0-2);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  width: 8px;
}
.listItemTailRight__ac321806 {
  right: -12px;
}
.listItemTailLeft__1f9adb97 {
  left: -12px;
}
.listItemTable__4b78a81f {
  margin-bottom: 4px;
}
.listItemTable__4b78a81f:last-child {
  margin-bottom: 0;
}
.listItemSelectable__5945c512 {
  align-items: center;
  background: var(--triplex-ListItem-Background-13-0-2);
  border-radius: 8px;
  display: flex;
}
.listItemSelectable__5945c512.selected__8626a426 {
  background: var(--triplex-ListItem-Background_Selected-13-0-2);
}
.checkboxWrapper__b4fa05cd {
  line-height: 0;
  padding: 16px 20px 16px 16px;
}
.childrenWrapper__905440d5 {
  flex-grow: 1;
}
.checkboxLabel__1363f3f4 {
  padding: 0!important;
  position: relative;
  transform: scale(1.375) translateY(-2px);
}
.checkboxLabelClickArea__d9a2d0bf {
  bottom: -5px;
  left: -3.6px;
  position: absolute;
  right: -3.6px;
  top: -2.5px;
}
.listItemLoading__06c0ddee {
  height: 76px;
  position: relative;
}
.listItemControlsButton__883b0204 {
  align-items: center;
  background: var(--triplex-ListItemControlsButton-Background-13-0-2);
  border: none;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  justify-content: center;
  margin: 0;
  min-height: 56px;
  padding: 0;
  width: 80px;
}
.listItemControlsButton__883b0204 + .listItemControlsButtonDropdown__4bf2464e,
.listItemControlsButton__883b0204 + .listItemControlsButton__883b0204 {
  margin-left: 4px;
}
.listItemControlsButtonIcon__8c9246a4 {
  line-height: 0;
}
.listItemControlsButton__883b0204.withText__fe4ae1b6 .listItemControlsButtonIcon__8c9246a4 {
  margin-bottom: 8px;
}
.listItemControlsButtonLabel__2b8973fa {
  color: var(--triplex-ListItemControlsButton-Color-13-0-2);
}
div.listItemControlsButtonDropdown__4bf2464e {
  display: flex;
}
.listItemControlsButtonInner__1f76a5e9 {
  display: flex;
  flex-direction: column;
}
.listItemControlsButton__883b0204.withIcon__f48cf7f3.withText__fe4ae1b6 .listItemControlsButtonInner__1f76a5e9 {
  height: 44px;
  overflow: visible;
}
.listItemControls__549e24d5 {
  display: flex;
  padding: 0 16px 0 8px;
}
.listItemContent__ee398d7c {
  background: var(--triplex-ListItem-Background-13-0-2);
  box-sizing: border-box;
  min-height: 56px;
  padding: 12px 16px;
}
.listItemContent__ee398d7c.selected__8626a426 {
  background: var(--triplex-ListItem-Background_Selected-13-0-2);
  border-radius: 8px 0 0 8px;
}
.listEmptyState__a0793790 {
  padding: 80px 16px 16px;
  text-align: center;
}
.list__c4a930d5 {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.link__49ee0132 {
  border: 1px solid var(--triplex-Link-BorderColor_Default-13-0-2);
  cursor: pointer;
  margin: -1px -3px;
  padding: 0 2px;
}
.link__49ee0132:focus {
  outline: none;
}
.link__49ee0132:focus.focusVisible__f6a6bf34 {
  border-color: var(--triplex-Link-BorderColor_Focus-13-0-2);
}
.sm__aa737688 {
  font-size: 12px;
  line-height: 16px;
}
.lg__114bcf59 {
  font-size: 14px;
  line-height: 20px;
}
.text__c4f8c380 {
  color: var(--triplex-Link-Text_Color_Default-13-0-2);
  position: relative;
  text-decoration: none;
}
.text__c4f8c380:hover {
  color: var(--triplex-Link-Text_Color_Hover-13-0-2);
}
.text__c4f8c380:active {
  color: var(--triplex-Link-Text_Color_Active-13-0-2);
}
.line__fdea289d {
  color: var(--triplex-Link-Line_Color_Default-13-0-2);
  text-decoration: underline;
}
.line__fdea289d:hover {
  color: var(--triplex-Link-Line_Color_Hover-13-0-2);
}
.line__fdea289d:active {
  color: var(--triplex-Link-Line_Color_Active-13-0-2);
}
.wordWithContent__c37aaf41 {
  align-items: center;
  display: inline-flex;
  white-space: nowrap;
}
.before__ca8d46a2 :first-child {
  margin-right: 4px;
}
.after__81e78c86 :last-child {
  margin-left: 4px;
}
html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: 100vw;
}
@media (max-width: 1192px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    left: calc(50vw - 500px);
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    position: absolute;
    top: 24px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    left: 32px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8 {
    left: 72px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxClose__cf017f28 {
    right: 32px;
  }
}
@media (min-width: 1192px) and (max-width: 1314px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    left: 96px;
    width: calc(100vw - 192px);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    left: 16px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8 {
    left: calc(-80px + 100vw);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxClose__cf017f28 {
    left: calc(-80px + 100vw);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1314px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    left: calc(50vw - 561px);
    width: 1122px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    left: calc(50vw - 641px);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8 {
    left: calc(50vw + 577px);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxClose__cf017f28 {
    left: calc(50vw + 577px);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1192px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
    display: none;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    height: 0;
    position: static;
    z-index: 100;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
    display: block;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
    display: none;
  }
}
@media (max-width: 1000px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39 {
    min-width: 0;
    position: fixed;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
    overflow: hidden;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    left: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
    box-sizing: border-box;
  }
}
html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(100vw - 15px);
}
@media (max-width: 1207px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    left: calc(50vw - 507.5px);
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    position: absolute;
    top: 24px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    left: 32px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8 {
    left: 72px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxClose__cf017f28 {
    right: 32px;
  }
}
@media (min-width: 1207px) and (max-width: 1329px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    left: 96px;
    width: calc(100vw - 207px);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    left: 16px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8 {
    left: calc(-95px + 100vw);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxClose__cf017f28 {
    left: calc(-95px + 100vw);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1329px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    left: calc(50vw - 568.5px);
    width: 1122px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    left: calc(50vw - 648.5px);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8 {
    left: calc(50vw + 569.5px);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxClose__cf017f28 {
    left: calc(50vw + 569.5px);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1207px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
    display: none;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    height: 0;
    position: static;
    z-index: 100;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
    display: block;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
    display: none;
  }
}
@media (max-width: 1015px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39 {
    min-width: 0;
    position: fixed;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
    overflow: hidden;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    left: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
    box-sizing: border-box;
  }
}
html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(100vw - 16px);
}
@media (max-width: 1208px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    left: calc(50vw - 508px);
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    position: absolute;
    top: 24px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    left: 32px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8 {
    left: 72px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxClose__cf017f28 {
    right: 32px;
  }
}
@media (min-width: 1208px) and (max-width: 1330px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    left: 96px;
    width: calc(100vw - 208px);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    left: 16px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8 {
    left: calc(-96px + 100vw);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxClose__cf017f28 {
    left: calc(-96px + 100vw);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1330px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    left: calc(50vw - 569px);
    width: 1122px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    left: calc(50vw - 649px);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8 {
    left: calc(50vw + 569px);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxClose__cf017f28 {
    left: calc(50vw + 569px);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1208px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
    display: none;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    height: 0;
    position: static;
    z-index: 100;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
    display: block;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
    display: none;
  }
}
@media (max-width: 1016px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39 {
    min-width: 0;
    position: fixed;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
    overflow: hidden;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    left: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
    box-sizing: border-box;
  }
}
html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(100vw - 17px);
}
@media (max-width: 1209px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    left: calc(50vw - 508.5px);
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    position: absolute;
    top: 24px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    left: 32px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8 {
    left: 72px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxClose__cf017f28 {
    right: 32px;
  }
}
@media (min-width: 1209px) and (max-width: 1331px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    left: 96px;
    width: calc(100vw - 209px);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    left: 16px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8 {
    left: calc(-97px + 100vw);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxClose__cf017f28 {
    left: calc(-97px + 100vw);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1331px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    left: calc(50vw - 569.5px);
    width: 1122px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    left: calc(50vw - 649.5px);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8 {
    left: calc(50vw + 568.5px);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxClose__cf017f28 {
    left: calc(50vw + 568.5px);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1209px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
    display: none;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    height: 0;
    position: static;
    z-index: 100;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
    display: block;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
    display: none;
  }
}
@media (max-width: 1017px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39 {
    min-width: 0;
    position: fixed;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
    overflow: hidden;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    left: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
    box-sizing: border-box;
  }
}
.lightBoxControls__634c5d2e {
  background-color: var(--triplex-LightBox-Controls_Background-13-0-2);
  height: 80px;
  position: fixed;
  top: 0;
  top: var(--lightBox-screen-top);
  z-index: 150;
}
.lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: block;
}
.lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: none;
}
.lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21:hover,
.lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25:hover {
  cursor: pointer;
}
.withKeyboardEvent__e49db191 {
  display: inline-block;
}
.lightBox__b50b9c39.isLoading__eb6020ab .withKeyboardEvent__e49db191,
.lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .withKeyboardEvent__e49db191,
.lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .withKeyboardEvent__e49db191,
.withoutKeyboardEvent__5617967d {
  display: none;
}
.lightBox__b50b9c39.isLoading__eb6020ab .withoutKeyboardEvent__5617967d,
.lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .withoutKeyboardEvent__5617967d,
.lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .withoutKeyboardEvent__5617967d {
  display: inline-block;
}
.lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
.lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab {
  display: none;
}
@media (max-width: 767px) {
  .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
    height: 56px;
  }
  .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e .lightBoxClose__cf017f28 {
    right: 16px!important;
    top: 18px !important;
  }
  .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e .lightBoxPrev__6c85b7ab {
    left: 16px!important;
    top: 16px !important;
  }
  .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e .lightBoxNext__d82f3ee8 {
    left: 56px!important;
    top: 16px !important;
  }
}
@media screen and (max-height: 800px) {
  .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
  }
}
html:not(.LightBoxIE__9a260194).scroll-0 .lightBox__b50b9c39 {
  left: var(--lightBox-screen-left);
}
html:not(.LightBoxIE__9a260194).scroll-0 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 500px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxControls__634c5d2e {
  z-index: 400;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 500px + var(--lightBox-screen-left));
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  position: absolute;
  top: 24px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  left: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8 {
  left: 72px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28 {
  right: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 192px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-left));
  width: calc(var(--lightBox-screen-width) - 192px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 16px - var(--lightBox-screen-width)/2);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 80px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28 {
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 561px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 561px + var(--lightBox-screen-left));
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 641px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 577px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxClose__cf017f28 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 577px);
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e {
  height: 0;
  position: static;
  z-index: 100;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: block;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 {
  min-width: 0;
  position: fixed;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
  overflow: hidden;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
  left: 0;
  position: absolute;
  top: 0;
  width: calc(var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d {
  left: 0;
  width: calc(var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  box-sizing: border-box;
}
html:not(.LightBoxIE__9a260194).scroll-15 .lightBox__b50b9c39 {
  left: var(--lightBox-screen-left);
}
html:not(.LightBoxIE__9a260194).scroll-15 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(var(--lightBox-screen-width) - 15px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 507.5px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxControls__634c5d2e {
  z-index: 400;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 507.5px + var(--lightBox-screen-left));
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  position: absolute;
  top: 24px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  left: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8 {
  left: 72px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28 {
  right: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 207px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-left));
  width: calc(var(--lightBox-screen-width) - 207px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 16px - var(--lightBox-screen-width)/2);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 95px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28 {
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 568.5px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 568.5px + var(--lightBox-screen-left));
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 648.5px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 569.5px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxClose__cf017f28 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 569.5px);
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e {
  height: 0;
  position: static;
  z-index: 100;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: block;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 {
  min-width: 0;
  position: fixed;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
  overflow: hidden;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
  left: 0;
  position: absolute;
  top: 0;
  width: calc(var(--lightBox-screen-width) - 15px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d {
  left: 0;
  width: calc(var(--lightBox-screen-width) - 15px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  box-sizing: border-box;
}
html:not(.LightBoxIE__9a260194).scroll-16 .lightBox__b50b9c39 {
  left: var(--lightBox-screen-left);
}
html:not(.LightBoxIE__9a260194).scroll-16 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(var(--lightBox-screen-width) - 16px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 508px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxControls__634c5d2e {
  z-index: 400;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 508px + var(--lightBox-screen-left));
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  position: absolute;
  top: 24px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  left: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8 {
  left: 72px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28 {
  right: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 208px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-left));
  width: calc(var(--lightBox-screen-width) - 208px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 16px - var(--lightBox-screen-width)/2);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28 {
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 569px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 569px + var(--lightBox-screen-left));
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 649px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 569px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxClose__cf017f28 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 569px);
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e {
  height: 0;
  position: static;
  z-index: 100;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: block;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 {
  min-width: 0;
  position: fixed;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
  overflow: hidden;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
  left: 0;
  position: absolute;
  top: 0;
  width: calc(var(--lightBox-screen-width) - 16px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d {
  left: 0;
  width: calc(var(--lightBox-screen-width) - 16px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  box-sizing: border-box;
}
html:not(.LightBoxIE__9a260194).scroll-17 .lightBox__b50b9c39 {
  left: var(--lightBox-screen-left);
}
html:not(.LightBoxIE__9a260194).scroll-17 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(var(--lightBox-screen-width) - 17px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 508.5px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxControls__634c5d2e {
  z-index: 400;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 508.5px + var(--lightBox-screen-left));
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  position: absolute;
  top: 24px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  left: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8 {
  left: 72px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28 {
  right: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 209px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-left));
  width: calc(var(--lightBox-screen-width) - 209px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 16px - var(--lightBox-screen-width)/2);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 97px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28 {
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 569.5px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 569.5px + var(--lightBox-screen-left));
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 649.5px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 568.5px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxClose__cf017f28 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 568.5px);
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e {
  height: 0;
  position: static;
  z-index: 100;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: block;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 {
  min-width: 0;
  position: fixed;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
  overflow: hidden;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
  left: 0;
  position: absolute;
  top: 0;
  width: calc(var(--lightBox-screen-width) - 17px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d {
  left: 0;
  width: calc(var(--lightBox-screen-width) - 17px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  box-sizing: border-box;
}
.firstFocus__5ea3280d {
  height: 0;
  left: -10000px;
  position: absolute;
  width: 0;
}
.lightBox__b50b9c39 {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  min-width: 1024px;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  top: var(--lightBox-screen-top);
  width: 100%;
  width: var(--lightBox-screen-width);
  z-index: 1300;
}
.lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  background-color: var(--triplex-Backdrop-background-13-0-2);
  content: "";
  height: 100%;
  pointer-events: none;
  position: fixed;
  width: 100%;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
    bottom: 1px;
    min-height: calc(100% + 1px);
  }
}
.lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6,
.lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d {
  overflow-y: hidden;
}
.lightBox__b50b9c39 .lightBoxNext__d82f3ee8,
.lightBox__b50b9c39 .lightBoxPrev__6c85b7ab {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  position: relative;
}
.lightBox__b50b9c39 .lightBoxContent__a48b9abc .lightBoxBody__f4e2f00a {
  flex-grow: 1;
}
.lightBox__b50b9c39 .loadingContentOverlay__0c4f885d {
  bottom: 0;
  position: fixed;
  top: 0;
  z-index: 300;
}
.lightBox__b50b9c39 .loadingContentOverlay__0c4f885d.hidden__11cbc05e {
  display: none;
}
.lightBox__b50b9c39 .lightBoxContentResizeWrapper__a37f1186 {
  height: 0;
  left: 0;
  position: absolute;
  right: 0;
}
.lightBox__b50b9c39 .tempElSafariBug__139ee9cc {
  left: -1000px;
  position: absolute;
  top: 0;
  visibility: hidden;
}
.bodyOverflowHidden__91915770 {
  overflow: hidden;
}
.lightBoxTopOverlayMask__c37fa345 {
  transition: opacity 0s;
}
.lightBoxTopOverlayWrapper__e7d610c1 {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.lightBoxTopOverlayWrapper__e7d610c1.closing__8672e857,
.lightBoxTopOverlayWrapper__e7d610c1.opened__db93984d {
  bottom: 0;
}
.lightBoxTopOverlayWrapper__e7d610c1 .lightBoxTopOverlayPanel__14ce7e52 {
  box-shadow: none;
  transition: transform 0.6s;
}
.lightBoxTopOverlay__f746b956 {
  z-index: 500;
}
html.LightBoxIE__9a260194 .lightBoxTopOverlayWrapper__e7d610c1 {
  top: 0;
}
html.LightBoxIE__9a260194 .lightBoxSideOverlayWrapper__6cf549be {
  min-height: 100%;
  top: 0;
}
html.LightBoxIE__9a260194 .lightBoxSideOverlayContent__f008d5da {
  min-height: 100vh;
}
@media (max-width: 1192px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 500px);
    width: 1000px;
  }
}
@media (min-width: 1192px) and (max-width: 1314px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlay__c790db65 {
    left: 96px;
    width: calc(100vw - 192px);
  }
}
@media (min-width: 1314px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 561px);
    width: 1122px;
  }
}
@media (max-width: 1000px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlay__c790db65 {
    left: 0;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
    left: 0;
    position: fixed;
    right: auto;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeLG__da3b4b62 .lightBoxSideOverlay__c790db65 {
    min-width: 840px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeMD__bb6b5d30 .lightBoxSideOverlay__c790db65 {
    min-width: 640px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeSM__8c1115de .lightBoxSideOverlay__c790db65 {
    min-width: 520px;
  }
}
@media (max-width: 1207px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 507.5px);
    width: 1000px;
  }
}
@media (min-width: 1207px) and (max-width: 1329px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlay__c790db65 {
    left: 96px;
    width: calc(100vw - 207px);
  }
}
@media (min-width: 1329px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 568.5px);
    width: 1122px;
  }
}
@media (max-width: 1015px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlay__c790db65 {
    left: 0;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
    left: 0;
    position: fixed;
    right: auto;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeLG__da3b4b62 .lightBoxSideOverlay__c790db65 {
    min-width: 840px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeMD__bb6b5d30 .lightBoxSideOverlay__c790db65 {
    min-width: 640px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeSM__8c1115de .lightBoxSideOverlay__c790db65 {
    min-width: 520px;
  }
}
@media (max-width: 1208px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 508px);
    width: 1000px;
  }
}
@media (min-width: 1208px) and (max-width: 1330px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlay__c790db65 {
    left: 96px;
    width: calc(100vw - 208px);
  }
}
@media (min-width: 1330px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 569px);
    width: 1122px;
  }
}
@media (max-width: 1016px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlay__c790db65 {
    left: 0;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
    left: 0;
    position: fixed;
    right: auto;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeLG__da3b4b62 .lightBoxSideOverlay__c790db65 {
    min-width: 840px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeMD__bb6b5d30 .lightBoxSideOverlay__c790db65 {
    min-width: 640px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeSM__8c1115de .lightBoxSideOverlay__c790db65 {
    min-width: 520px;
  }
}
@media (max-width: 1209px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 508.5px);
    width: 1000px;
  }
}
@media (min-width: 1209px) and (max-width: 1331px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlay__c790db65 {
    left: 96px;
    width: calc(100vw - 209px);
  }
}
@media (min-width: 1331px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 569.5px);
    width: 1122px;
  }
}
@media (max-width: 1017px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlay__c790db65 {
    left: 0;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
    left: 0;
    position: fixed;
    right: auto;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeLG__da3b4b62 .lightBoxSideOverlay__c790db65 {
    min-width: 840px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeMD__bb6b5d30 .lightBoxSideOverlay__c790db65 {
    min-width: 640px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeSM__8c1115de .lightBoxSideOverlay__c790db65 {
    min-width: 520px;
  }
}
.lightBoxSideOverlayMask__c09fa8eb {
  transition: opacity 0s;
}
.lightBoxSideOverlayWrapper__6cf549be {
  left: 0;
  min-height: calc(100% - var(--lightBox-screen-top));
  overflow-y: auto;
  position: fixed;
  top: var(--lightBox-screen-top);
  visibility: hidden;
  width: 0;
  z-index: 200;
}
.lightBoxSideOverlayWrapper__6cf549be.overflowXHidden__4415857a {
  overflow-x: hidden;
}
.lightBoxSideOverlayWrapper__6cf549be.overflowYHidden__5fb033ea {
  overflow-y: hidden;
}
.lightBoxSideOverlayWrapper__6cf549be.closing__8672e857,
.lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  right: 0;
  visibility: visible;
  width: auto;
  width: var(--lightBox-screen-width);
}
.lightBoxSideOverlayWrapper__6cf549be.closing__8672e857 {
  pointer-events: none;
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayContent__f008d5da {
  box-shadow: -13px 0 17px 0 rgba(0, 0, 0, 0.14);
  margin-left: auto;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.6s;
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayContent__f008d5da.opened__db93984d {
  transform: none;
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayContent__f008d5da.opening__7956dfde {
  transform: translateX(0);
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayContent__f008d5da .spinnerWrapper__d4a9ec5b {
  height: 100vh;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 300;
}
.lightBoxSideOverlayWrapper__6cf549be.openedTopLevelSideOverlay__8008f637 .lightBoxSideOverlayContent__f008d5da {
  box-shadow: -13px 0 17px 0 rgba(0, 0, 0, 0.5);
}
.lightBoxSideOverlayWrapper__6cf549be.sizeSM__8c1115de .lightBoxSideOverlayContent__f008d5da {
  max-width: 100%;
  width: 480px;
}
.lightBoxSideOverlayWrapper__6cf549be.sizeMD__bb6b5d30 .lightBoxSideOverlayContent__f008d5da {
  max-width: 100%;
  width: 600px;
}
.lightBoxSideOverlayWrapper__6cf549be.sizeLG__da3b4b62 .lightBoxSideOverlayContent__f008d5da {
  max-width: 100%;
  width: 800px;
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayBase__02fbaf60 {
  bottom: auto;
  height: 100%;
  overflow: visible;
}
@media (max-width: 767px) {
  .lightBoxSideOverlayWrapper__6cf549be .globalHeaderTitleControls__7bdbf258 {
    position: absolute;
    right: 20px;
    top: 0;
  }
  .lightBoxSideOverlayWrapper__6cf549be .globalHeaderTitleContentText__8e68a77c {
    padding-right: 40px !important;
  }
}
.lightBoxSideOverlay__c790db65 {
  display: flex;
  min-height: 100%;
  position: absolute;
  top: 0;
}
.lightBoxSideOverlay__c790db65.closing__8672e857,
.lightBoxSideOverlay__c790db65.opening__7956dfde {
  overflow-x: hidden;
}
.lightBoxSideOverlayCloseButton__707c74bd {
  position: relative;
  top: 6px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 500px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 192px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 561px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlay__c790db65 {
  left: 0;
  width: 100%;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  position: fixed;
  right: auto;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 507.5px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 207px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 568.5px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlay__c790db65 {
  left: 0;
  width: 100%;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  position: fixed;
  right: auto;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 508px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 208px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 569px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlay__c790db65 {
  left: 0;
  width: 100%;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  position: fixed;
  right: auto;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 508.5px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 209px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 569.5px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlay__c790db65 {
  left: 0;
  width: 100%;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  position: fixed;
  right: auto;
  width: var(--lightBox-screen-width);
}
.globalLabelWrapper__243cf80a {
  color: var(--triplex-Label-Color-13-0-2);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.globalLabelWrapper__243cf80a .label__2d375fd4 {
  display: inline;
  margin-bottom: 0;
  white-space: normal;
}
.globalLabelWrapper__243cf80a .codeNumber__cd125e32 {
  color: var(--triplex-Label-Code_Color-13-0-2);
  margin-left: 4px;
}
.globalLabelWrapper__243cf80a .description__0c4168fc {
  color: var(--triplex-Label-Description_Color-13-0-2);
  font-size: 12px;
  line-height: 16px;
  white-space: normal;
}
.inputGroup__effb4286 {
  display: flex;
}
.globalSelectDeprecated__505f97f5 .input__eaa4d8b0 {
  background: none;
  border: none;
  margin: -8px 0 0;
  padding: 0;
  text-overflow: ellipsis;
}
.input__eaa4d8b0 {
  background: var(--triplex-Input-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Input-BorderColor_Default-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  caret-color: var(--triplex-Input-Caret_Color-13-0-2);
  color: var(--triplex-Input-Color_Default-13-0-2);
  font-family: inherit;
  font-size: 14px;
  height: 32px;
  line-height: 16px;
  min-width: 0;
  outline: none;
  padding: 7px 11px;
  width: 100%;
}
.input__eaa4d8b0::-webkit-input-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.input__eaa4d8b0::-moz-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.input__eaa4d8b0::placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.input__eaa4d8b0:focus {
  border-color: var(--triplex-Input-BorderColor_Focus-13-0-2);
}
.input__eaa4d8b0:disabled {
  -webkit-text-fill-color: var(--triplex-Input-Color_Disabled-13-0-2);
  background: var(--triplex-Input-Background_Disabled-13-0-2);
  border-color: var(--triplex-Input-BorderColor_Disabled-13-0-2);
  color: var(--triplex-Input-Color_Disabled-13-0-2);
  cursor: default;
  opacity: 1;
}
.input__eaa4d8b0.error__9066e9e1 {
  border-color: var(--triplex-Input-BorderColor_Error-13-0-2);
}
.input__eaa4d8b0::-ms-clear {
  display: none;
}
.grouped__52c5f297 {
  flex: 1;
}
.grouped__52c5f297:not(:first-child) {
  margin-left: -1px;
}
.grouped__52c5f297.left__a21a8f2d {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__52c5f297.intermediate__63f32a48 {
  border-radius: 0;
}
.grouped__52c5f297.right__b20ecea1 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__52c5f297.error__9066e9e1 {
  z-index: 1;
}
.grouped__52c5f297:focus {
  z-index: 2;
}
.table-icon .service-fill {
  fill: #d0d7dd;
}
.ADkAkg {
  fill: #b2b8bf;
}
.ABUAQw {
  fill: #1f1f22;
}
.AK0A5w {
  fill: #fff;
}
.AOMAUA {
  fill: #1f1f22;
}
.AMAAKg {
  fill: #107f8c;
}
.ALkAVQ {
  fill: #e4e8eb;
}
.AMkAKw {
  fill: #107f8c;
}
.ACoAow {
  fill: #fff;
}
.AB4AIA {
  fill: #21a19a;
}
.AJsAKQ {
  fill: #005e7f;
}
.AKsAnw,
.AMQAjA,
.AP4A4A {
  fill: #b2b8bf;
}
.AJQA9g {
  fill: #d0d7dd;
}
.AC0A7g {
  fill: #b2b8bf;
}
.AKsA-A {
  fill: #d0d7dd;
}
.AJYA7A {
  fill: #b2b8bf;
}
.AAcAHA {
  fill: #565b62;
}
.ANAApQ {
  fill: #d0d7dd;
}
.AI8ADg,
.AIcA_w,
.ALcAqQ {
  fill: #b2b8bf;
}
.AOwA-g {
  fill: #198cfe;
}
.ANUA6A {
  fill: #1358bf;
}
.AHMA_g {
  fill: #b2b8bf;
}
.AGYAAA {
  fill: #f90;
}
.AFcAxA {
  fill: #b2b8bf;
}
.AJQAgQ {
  fill: #1f1f22;
}
.ACwAGQ {
  fill: #f2f4f7;
}
.ADEApg {
  fill: #565b62;
}
.APUAvw {
  fill: #b2b8bf;
}
.AMsAgw {
  fill: #565b62;
}
.AJsA8w {
  fill: #e4e8eb;
}
.ABYAhQ,
.AI4Abg,
.APYAZA {
  fill: #b2b8bf;
}
.APgA0Q {
  fill: #fff;
}
.ACAAiQ,
.ADUArg {
  fill: #1f1f22;
}
.AOIA5A {
  fill: #7d838a;
}
.ABgAfQ {
  fill: #2d2d30;
}
.AG4AAg {
  fill: #e4e8eb;
}
.AJEAlg {
  fill: #565b62;
}
.ABoAyA {
  fill: #b2b8bf;
}
.ABIASg {
  fill: #d0d7dd;
}
.AJ0AVg {
  fill: #b2b8bf;
}
.ANcA2Q {
  fill: #7d838a;
}
.AKEA0g,
.AMYAjA {
  fill: #fff;
}
.AM0AGg {
  fill: #b2b8bf;
}
.APEAAQ {
  fill: #e4e8eb;
}
.AAMA4g {
  fill: #565b62;
}
.AIQAjw {
  fill: #fff;
}
.AIAAsw {
  fill: #7d838a;
}
.ADQA7Q {
  fill: #b2b8bf;
}
.AKsAjA {
  fill: #21a19a;
}
.AKoAqw {
  fill: #107f8c;
}
.AEEA7g {
  fill: #565b62;
}
.AJAA6w {
  fill: #1f1f22;
}
.AAQA4w,
.AH4ADg {
  fill: #565b62;
}
.ABMAIg {
  fill: #e4e8eb;
}
.AHUAdg {
  fill: #fff;
}
.AIMABA,
.AJEA5w,
.AL8ADg {
  fill: #b2b8bf;
}
.AAUAuw {
  fill: #565b62;
}
.ADkAqw {
  fill: #e4e8eb;
}
.ADMA4g {
  fill: #565b62;
}
.ANcAWQ {
  fill: #e4e8eb;
}
.APcA2A {
  fill: #565b62;
}
.AKIA9A {
  fill: #21a19a;
}
@media (-ms-high-contrast: none), (hover: hover) and (pointer: fine), only screen and (-ms-high-contrast: active) {
  tr:hover button:enabled .table-icon .service-fill {
    fill: #b2b8bf;
  }
  tr:hover button:enabled:hover .table-icon .service-fill {
    fill: #7d838a;
  }
  .hoverable:hover .AKsAnw {
    fill: #21a19a;
  }
  .hoverable:hover .AP4A4A {
    fill: #107f8c;
  }
  .hoverable:hover .AJQA9g {
    fill: #e4e8eb;
  }
  .hoverable:hover .AC0A7g {
    fill: #b2b8bf;
  }
  .hoverable:hover .AKsA-A {
    fill: #e4e8eb;
  }
  .hoverable:hover .AJYA7A {
    fill: #7d838a;
  }
  .hoverable:hover .AAcAHA {
    fill: #b2b8bf;
  }
  .hoverable:hover .ANAApQ {
    fill: #fff;
  }
  .hoverable:hover .AIcA_w {
    fill: #e4e8eb;
  }
  .hoverable:hover .AI8ADg,
  .hoverable:hover .ALcAqQ {
    fill: #107f8c;
  }
  .hoverable:hover .AOwA-g {
    fill: #21a19a;
  }
  .hoverable:hover .ANUA6A {
    fill: #107f8c;
  }
  .hoverable:hover .AHMA_g {
    fill: #21a19a;
  }
  .hoverable:hover .AGYAAA {
    fill: #f90;
  }
  .hoverable:hover .AFcAxA {
    fill: #7d838a;
  }
  .hoverable:hover .AJQAgQ {
    fill: #1f1f22;
  }
  .hoverable:hover .ACwAGQ {
    fill: #e4e8eb;
  }
  .hoverable:hover .ADEApg {
    fill: #1f1f22;
  }
  .hoverable:hover .APUAvw {
    fill: #7d838a;
  }
  .hoverable:hover .AMsAgw {
    fill: #005e7f;
  }
  .hoverable:hover .AJsA8w {
    fill: #90d0cc;
  }
  .hoverable:hover .APgA0Q {
    fill: #fff;
  }
  .hoverable:hover .ACAAiQ,
  .hoverable:hover .ADUArg {
    fill: #1f1f22;
  }
  .hoverable:hover .AOIA5A {
    fill: #e4e8eb;
  }
  .hoverable:hover .ABgAfQ {
    fill: #2d2d30;
  }
  .hoverable:hover .AG4AAg {
    fill: #e4e8eb;
  }
  .hoverable:hover .ABoAyA,
  .hoverable:hover .AJEAlg {
    fill: #565b62;
  }
  .hoverable:hover .ABIASg {
    fill: #fff;
  }
  .hoverable:hover .AJ0AVg {
    fill: #e4e8eb;
  }
  .hoverable:hover .ANcA2Q {
    fill: #565b62;
  }
  .hoverable:hover .AKEA0g,
  .hoverable:hover .AMYAjA {
    fill: #fff;
  }
  .hoverable:hover .AM0AGg {
    fill: #7d838a;
  }
  .hoverable:hover .APEAAQ {
    fill: #21a19a;
  }
  .hoverable:hover .AAMA4g {
    fill: #107f8c;
  }
  .hoverable:hover .AIQAjw {
    fill: #fff;
  }
  .hoverable:hover .AIAAsw {
    fill: #565b62;
  }
  .hoverable:hover .ADQA7Q {
    fill: #e4e8eb;
  }
  .hoverable:hover .AKsAjA {
    fill: #107f8c;
  }
  .hoverable:hover .AKoAqw {
    fill: #005e7f;
  }
  .hoverable:hover .AEEA7g {
    fill: #7d838a;
  }
  .hoverable:hover .AJAA6w {
    fill: #1f1f22;
  }
  .hoverable:hover .AH4ADg {
    fill: #e4e8eb;
  }
  .hoverable:hover .AAQA4w {
    fill: #1f1f22;
  }
  .hoverable:hover .AJEA5w {
    fill: #db1237;
  }
  .hoverable:hover .AIMABA,
  .hoverable:hover .AL8ADg {
    fill: #21a19a;
  }
  .hoverable:hover .AAUAuw {
    fill: #db1237;
  }
  .hoverable:hover .ADkAqw {
    fill: #fff;
  }
  .hoverable:hover .ADMA4g {
    fill: #21a19a;
  }
  .hoverable:hover .ANcAWQ {
    fill: #fff;
  }
  .hoverable:hover .APcA2A {
    fill: #21a19a;
  }
}
tr.selected button:enabled .table-icon .service-fill {
  fill: #b2b8bf;
}
.hoverable.active .ADkAkg,
.hoverable:not(:disabled):active .ADkAkg {
  fill: #e4e8eb;
}
.hoverable.active .ABUAQw,
.hoverable:not(:disabled):active .ABUAQw {
  fill: #1f1f22;
}
.hoverable.active .AK0A5w,
.hoverable:not(:disabled):active .AK0A5w {
  fill: #fff;
}
.hoverable.active .AOMAUA,
.hoverable:not(:disabled):active .AOMAUA {
  fill: #7d838a;
}
.hoverable.active .AMQAjA,
.hoverable:not(:disabled):active .AMQAjA {
  fill: #d0d7dd;
}
.hoverable.active .AKsAnw,
.hoverable:not(:disabled):active .AKsAnw {
  fill: #21a19a;
}
.hoverable.active .AP4A4A,
.hoverable:not(:disabled):active .AP4A4A {
  fill: #107f8c;
}
.hoverable.active .AJQA9g,
.hoverable:not(:disabled):active .AJQA9g {
  fill: #d0d7dd;
}
.hoverable.active .AC0A7g,
.hoverable:not(:disabled):active .AC0A7g {
  fill: #565b62;
}
.hoverable.active .AKsA-A,
.hoverable:not(:disabled):active .AKsA-A {
  fill: #e4e8eb;
}
.hoverable.active .AJYA7A,
.hoverable:not(:disabled):active .AJYA7A {
  fill: #7d838a;
}
.hoverable.active .AAcAHA,
.hoverable:not(:disabled):active .AAcAHA {
  fill: #b2b8bf;
}
.hoverable.active .ANAApQ,
.hoverable:not(:disabled):active .ANAApQ {
  fill: #fff;
}
.hoverable.active .AIcA_w,
.hoverable:not(:disabled):active .AIcA_w {
  fill: #e4e8eb;
}
.hoverable.active .AI8ADg,
.hoverable:not(:disabled):active .AI8ADg {
  fill: #107f8c;
}
.hoverable.active .ALcAqQ,
.hoverable:not(:disabled):active .ALcAqQ {
  fill: #21a19a;
}
.hoverable.active .AOwA-g,
.hoverable:not(:disabled):active .AOwA-g {
  fill: #1358bf;
}
.hoverable.active .ANUA6A,
.hoverable:not(:disabled):active .ANUA6A {
  fill: #0f5498;
}
.hoverable.active .AHMA_g,
.hoverable:not(:disabled):active .AHMA_g {
  fill: #21a19a;
}
.hoverable.active .AGYAAA,
.hoverable:not(:disabled):active .AGYAAA {
  fill: #f90;
}
.hoverable.active .AFcAxA,
.hoverable:not(:disabled):active .AFcAxA {
  fill: #7d838a;
}
.hoverable.active .AJQAgQ,
.hoverable:not(:disabled):active .AJQAgQ {
  fill: #1f1f22;
}
.hoverable.active .ACwAGQ,
.hoverable:not(:disabled):active .ACwAGQ {
  fill: #e4e8eb;
}
.hoverable.active .ADEApg,
.hoverable:not(:disabled):active .ADEApg {
  fill: #1f1f22;
}
.hoverable.active .APUAvw,
.hoverable:not(:disabled):active .APUAvw {
  fill: #7d838a;
}
.hoverable.active .AMsAgw,
.hoverable:not(:disabled):active .AMsAgw {
  fill: #005e7f;
}
.hoverable.active .AJsA8w,
.hoverable:not(:disabled):active .AJsA8w {
  fill: #90d0cc;
}
.hoverable.active .APYAZA,
.hoverable:not(:disabled):active .APYAZA {
  fill: #21a19a;
}
.hoverable.active .AI4Abg,
.hoverable:not(:disabled):active .AI4Abg {
  fill: #107f8c;
}
.hoverable.active .ABYAhQ,
.hoverable:not(:disabled):active .ABYAhQ {
  fill: #198cfe;
}
.hoverable.active .APgA0Q,
.hoverable:not(:disabled):active .APgA0Q {
  fill: #fff;
}
.hoverable.active .ACAAiQ,
.hoverable.active .ADUArg,
.hoverable:not(:disabled):active .ACAAiQ,
.hoverable:not(:disabled):active .ADUArg {
  fill: #1f1f22;
}
.hoverable.active .AOIA5A,
.hoverable:not(:disabled):active .AOIA5A {
  fill: #e4e8eb;
}
.hoverable.active .ABgAfQ,
.hoverable:not(:disabled):active .ABgAfQ {
  fill: #2d2d30;
}
.hoverable.active .AG4AAg,
.hoverable:not(:disabled):active .AG4AAg {
  fill: #e4e8eb;
}
.hoverable.active .ABoAyA,
.hoverable.active .AJEAlg,
.hoverable:not(:disabled):active .ABoAyA,
.hoverable:not(:disabled):active .AJEAlg {
  fill: #565b62;
}
.hoverable.active .ABIASg,
.hoverable:not(:disabled):active .ABIASg {
  fill: #fff;
}
.hoverable.active .AJ0AVg,
.hoverable:not(:disabled):active .AJ0AVg {
  fill: #e4e8eb;
}
.hoverable.active .ANcA2Q,
.hoverable:not(:disabled):active .ANcA2Q {
  fill: #565b62;
}
.hoverable.active .AKEA0g,
.hoverable.active .AMYAjA,
.hoverable:not(:disabled):active .AKEA0g,
.hoverable:not(:disabled):active .AMYAjA {
  fill: #fff;
}
.hoverable.active .AM0AGg,
.hoverable:not(:disabled):active .AM0AGg {
  fill: #7d838a;
}
.hoverable.active .APEAAQ,
.hoverable:not(:disabled):active .APEAAQ {
  fill: #21a19a;
}
.hoverable.active .AAMA4g,
.hoverable:not(:disabled):active .AAMA4g {
  fill: #107f8c;
}
.hoverable.active .AIAAsw,
.hoverable:not(:disabled):active .AIAAsw {
  fill: #1f1f22;
}
.hoverable.active .ADQA7Q,
.hoverable:not(:disabled):active .ADQA7Q {
  fill: #f2f4f7;
}
.hoverable.active .AKsAjA,
.hoverable:not(:disabled):active .AKsAjA {
  fill: #107f8c;
}
.hoverable.active .AKoAqw,
.hoverable:not(:disabled):active .AKoAqw {
  fill: #005e7f;
}
.hoverable.active .AEEA7g,
.hoverable:not(:disabled):active .AEEA7g {
  fill: #7d838a;
}
.hoverable.active .AJEA5w,
.hoverable:not(:disabled):active .AJEA5w {
  fill: #c11030;
}
.hoverable.active .AL8ADg,
.hoverable:not(:disabled):active .AL8ADg {
  fill: #90d0cc;
}
.hoverable.active .AIMABA,
.hoverable:not(:disabled):active .AIMABA {
  fill: #107f8c;
}
.hoverable.active .AAUAuw,
.hoverable:not(:disabled):active .AAUAuw {
  fill: #c11030;
}
.hoverable.active .ADkAqw,
.hoverable:not(:disabled):active .ADkAqw {
  fill: #fff;
}
.hoverable.active .ADMA4g,
.hoverable:not(:disabled):active .ADMA4g {
  fill: #90d0cc;
}
.hoverable.active .ANcAWQ,
.hoverable:not(:disabled):active .ANcAWQ {
  fill: #1f1f22;
}
.hoverable.active .APcA2A,
.hoverable:not(:disabled):active .APcA2A {
  fill: #107f8c;
}
.hoverable.disabled .AMAAKg,
.hoverable:disabled .AMAAKg {
  fill: #b2b8bf;
}
.hoverable.disabled .ALkAVQ,
.hoverable:disabled .ALkAVQ {
  fill: #e4e8eb;
}
.hoverable.disabled .AMkAKw,
.hoverable:disabled .AMkAKw {
  fill: #d0d7dd;
}
.hoverable.disabled .ACoAow,
.hoverable:disabled .ACoAow {
  fill: #fff;
}
.hoverable.disabled .AB4AIA,
.hoverable:disabled .AB4AIA {
  fill: #b2b8bf;
}
.hoverable.disabled .AJsAKQ,
.hoverable:disabled .AJsAKQ {
  fill: #d0d7dd;
}
.hoverable.disabled .AKsAnw,
.hoverable:disabled .AKsAnw {
  fill: #565b62;
}
.hoverable.disabled .AP4A4A,
.hoverable:disabled .AP4A4A {
  fill: #d0d7dd;
}
.hoverable.disabled .AJQA9g,
.hoverable:disabled .AJQA9g {
  fill: #565b62;
}
.hoverable.disabled .AC0A7g,
.hoverable:disabled .AC0A7g {
  fill: #d0d7dd;
}
.hoverable.disabled .AKsA-A,
.hoverable:disabled .AKsA-A {
  fill: #565b62;
}
.hoverable.disabled .AJYA7A,
.hoverable:disabled .AJYA7A {
  fill: #d0d7dd;
}
.hoverable.disabled .AIcA_w,
.hoverable.disabled .ALcAqQ,
.hoverable:disabled .AIcA_w,
.hoverable:disabled .ALcAqQ {
  fill: #565b62;
}
.hoverable.disabled .AFcAxA,
.hoverable:disabled .AFcAxA {
  fill: #2d2d30;
}
.hoverable.disabled .AJQAgQ,
.hoverable:disabled .AJQAgQ {
  fill: #565b62;
}
.hoverable.disabled .ACwAGQ,
.hoverable:disabled .ACwAGQ {
  fill: #f2f4f7;
}
.hoverable.disabled .ADEApg,
.hoverable:disabled .ADEApg {
  fill: #d0d7dd;
}
.hoverable.disabled .AMsAgw,
.hoverable.disabled .APUAvw,
.hoverable:disabled .AMsAgw,
.hoverable:disabled .APUAvw {
  fill: #565b62;
}
.hoverable.disabled .AJsA8w,
.hoverable:disabled .AJsA8w {
  fill: #f2f4f7;
}
.hoverable.disabled .APgA0Q,
.hoverable:disabled .APgA0Q {
  fill: #fff;
}
.hoverable.disabled .ACAAiQ,
.hoverable:disabled .ACAAiQ {
  fill: #1f1f22;
}
.hoverable.disabled .ADUArg,
.hoverable:disabled .ADUArg {
  fill: #d0d7dd;
}
.hoverable.disabled .AOIA5A,
.hoverable:disabled .AOIA5A {
  fill: #565b62;
}
.hoverable.disabled .ABgAfQ,
.hoverable:disabled .ABgAfQ {
  fill: #2d2d30;
}
.hoverable.disabled .AG4AAg,
.hoverable:disabled .AG4AAg {
  fill: #565b62;
}
.hoverable.disabled .AJEAlg,
.hoverable:disabled .AJEAlg {
  fill: #d0d7dd;
}
.hoverable.disabled .ABoAyA,
.hoverable:disabled .ABoAyA {
  fill: #e4e8eb;
}
.hoverable.disabled .ABIASg,
.hoverable:disabled .ABIASg {
  fill: #565b62;
}
.hoverable.disabled .AMYAjA,
.hoverable:disabled .AMYAjA {
  fill: #7d838a;
}
.hoverable.disabled .AIAAsw,
.hoverable:disabled .AIAAsw {
  fill: #d0d7dd;
}
.hoverable.disabled .ADQA7Q,
.hoverable.disabled .AKsAjA,
.hoverable:disabled .ADQA7Q,
.hoverable:disabled .AKsAjA {
  fill: #565b62;
}
.hoverable.disabled .AKoAqw,
.hoverable:disabled .AKoAqw {
  fill: #90d0cc;
}
.hoverable.disabled .ABMAIg,
.hoverable:disabled .ABMAIg {
  fill: #565b62;
}
.hoverable.disabled .AHUAdg,
.hoverable:disabled .AHUAdg {
  fill: #d0d7dd;
}
.hoverable.disabled .AKIA9A,
.hoverable:disabled .AKIA9A {
  fill: #565b62;
}
button.helpBoxButton__c961ec19 {
  position: relative;
  vertical-align: text-bottom;
}
.helpBoxTooltipBody__1b99a7af {
  padding-right: 16px;
}
.globalHeaderTitle__b1c60466 {
  display: flex;
  justify-content: space-between;
  padding: 24px 32px;
}
.globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f .globalHeaderTitleContentText__8e68a77c {
  box-sizing: border-box;
  color: var(--triplex-Header-Title_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
  outline: none;
  padding: 0;
  text-transform: none;
}
.globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f .headerTitleContentSubhead__d3e91e6a {
  color: var(--triplex-Header-TitleSubhead_Color-13-0-2);
  font-size: 14px;
  line-height: 20px;
}
.globalHeaderTitle__b1c60466 .globalHeaderTitleControls__7bdbf258 {
  padding-left: 24px;
  white-space: nowrap;
}
.headerLink__c8884610 + .globalHeaderTitle__b1c60466 {
  padding-top: 0;
}
@media (max-width: 767px) {
  .globalHeaderTitle__b1c60466 {
    flex-wrap: wrap;
    padding: 20px 16px;
  }
  .globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f {
    width: 100%;
  }
  .globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f .globalHeaderTitleContentText__8e68a77c {
    font-size: 16px;
    line-height: 24px;
  }
  .globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f .headerTitleContentSubhead__d3e91e6a {
    margin-top: 4px;
  }
  .globalHeaderTitle__b1c60466 .globalHeaderTitleControls__7bdbf258 {
    margin-left: -16px;
    padding-left: 0;
    white-space: normal;
  }
  .globalHeaderTitle__b1c60466 .globalHeaderTitleControls__7bdbf258 > .globalButtonDropdownExtended__434de4f1,
  .globalHeaderTitle__b1c60466 .globalHeaderTitleControls__7bdbf258 > button {
    margin-left: 16px;
    margin-top: 16px;
  }
}
.globalHeaderTabs__6982ea05 {
  display: flex;
  justify-content: space-between;
}
.globalHeaderTabs__6982ea05 .headerTabsContent__aa572a0a {
  flex-grow: 1;
  min-width: 1px;
}
.globalHeaderTabs__6982ea05 .headerTabsControls__ee08df4e {
  flex-shrink: 0;
  padding-left: 24px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .globalHeaderTabs__6982ea05 {
    flex-wrap: wrap;
  }
  .globalHeaderTabs__6982ea05 .headerTabsContent__aa572a0a {
    width: 100%;
  }
  .globalHeaderTabs__6982ea05 .headerTabsControls__ee08df4e {
    margin-left: -16px;
    padding-left: 0;
    white-space: normal;
  }
  .globalHeaderTabs__6982ea05 .headerTabsControls__ee08df4e > .globalButtonDropdownExtended__434de4f1,
  .globalHeaderTabs__6982ea05 .headerTabsControls__ee08df4e > button {
    margin-left: 16px;
    margin-top: 16px;
  }
}
.headerSubheader__cf42d572 {
  padding: 24px 32px;
}
.headerSubheader__cf42d572.withoutPaddings__1eb1c38a {
  padding: 0;
}
.headerLink__c8884610 {
  font-size: 14px;
  line-height: 20px;
  padding: 24px 32px 0;
}
@media (max-width: 767px) {
  .headerLink__c8884610 {
    padding: 20px 16px 0;
  }
}
.headerLayoutSidebar__bac60600 {
  display: flex;
  justify-content: space-between;
}
.headerLayoutSidebarContent__3c85f629 {
  flex-grow: 1;
  min-width: 1px;
}
@media (max-width: 767px) {
  .headerLayoutSidebarSidebar__e8a0c15f {
    display: none;
  }
}
.header__aadad214 {
  background: var(--triplex-Header-Background-13-0-2);
}
.header__aadad214.sticky__f0fdb2c0 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
}
.header__aadad214 .globalHeaderTabs__6982ea05:first-child {
  padding: 24px 32px 0;
}
.header__aadad214 .globalHeaderTitle__b1c60466 + .globalHeaderTabs__6982ea05 {
  padding: 0 32px 24px;
}
@media (max-width: 767px) {
  .header__aadad214 .globalHeaderTabs__6982ea05:first-child {
    padding: 16px 16px 0;
  }
  .header__aadad214 .globalHeaderTabs__6982ea05 + .globalHeaderTitle__b1c60466 {
    padding-top: 8px;
  }
  .header__aadad214 .globalHeaderTitle__b1c60466 + .globalHeaderTabs__6982ea05 {
    margin-top: -4px;
    padding: 0 16px 20px;
  }
}
html.scroll-0 .LB-less-or-equal-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 80px;
}
html.scroll-0 .LB-more-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 0;
}
html.scroll-0 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
html.scroll-0 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
  position: relative;
  top: 0;
}
@media screen and (max-height: 800px) {
  html.scroll-0 .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
  html.scroll-0 .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
    position: relative;
    top: 0 !important;
  }
}
html.scroll-15 .LB-less-or-equal-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 80px;
}
html.scroll-15 .LB-more-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 0;
}
html.scroll-15 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
html.scroll-15 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
  position: relative;
  top: 0;
}
@media screen and (max-height: 800px) {
  html.scroll-15 .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
  html.scroll-15 .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
    position: relative;
    top: 0 !important;
  }
}
html.scroll-16 .LB-less-or-equal-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 80px;
}
html.scroll-16 .LB-more-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 0;
}
html.scroll-16 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
html.scroll-16 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
  position: relative;
  top: 0;
}
@media screen and (max-height: 800px) {
  html.scroll-16 .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
  html.scroll-16 .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
    position: relative;
    top: 0 !important;
  }
}
html.scroll-17 .LB-less-or-equal-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 80px;
}
html.scroll-17 .LB-more-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 0;
}
html.scroll-17 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
html.scroll-17 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
  position: relative;
  top: 0;
}
@media screen and (max-height: 800px) {
  html.scroll-17 .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
  html.scroll-17 .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
    position: relative;
    top: 0 !important;
  }
}
.gap__32b44bf2 {
  overflow: hidden;
}
.gap__32b44bf2[data-gap-size="4"] {
  height: 4px;
}
.gap__32b44bf2[data-gap-size="8"] {
  height: 8px;
}
.gap__32b44bf2[data-gap-size="12"] {
  height: 12px;
}
.gap__32b44bf2[data-gap-size="16"] {
  height: 16px;
}
.gap__32b44bf2[data-gap-size="24"] {
  height: 24px;
}
.gap__32b44bf2[data-gap-size="32"] {
  height: 32px;
}
.gap__32b44bf2[data-gap-size="64"] {
  height: 64px;
}
.gap__32b44bf2[data-gap-size="128"] {
  height: 128px;
}
.formGroupLine__6b9d96e5.flex__63852ce2 {
  display: flex;
}
.formGroupLine__6b9d96e5 + .formGroupLine__6b9d96e5 {
  margin-top: 4px;
}
.formFieldTextarea__3152c23c {
  border: none;
  box-shadow: var(--triplex-FormField-Shadow_Default-13-0-2);
  height: 96px;
  padding-bottom: 16px;
  padding-top: 16px;
}
.formFieldTextarea__3152c23c::-webkit-input-placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
}
.formFieldTextarea__3152c23c::-moz-placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
}
.formFieldTextarea__3152c23c::placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
}
.formFieldTextarea__3152c23c:focus {
  box-shadow: var(--triplex-FormField-Shadow_Focus-13-0-2);
}
.formFieldTextarea__3152c23c:disabled {
  box-shadow: var(--triplex-FormField-Shadow_Disabled-13-0-2);
}
.formFieldTextarea__3152c23c.error__d62045f4 {
  box-shadow: var(--triplex-FormField-Shadow_Error-13-0-2);
}
.formFieldSidebar__53b961b5 {
  align-self: center;
  flex-shrink: 0;
  min-width: 16px;
  padding-left: 8px;
}
.formFieldSelect__e8d3af27 {
  min-width: 72px;
}
.formFieldSelectTarget__1c0cd8d6 {
  height: 48px;
  padding: 16px 12px;
}
.formFieldSelectDropdownListItem__60bec74b {
  overflow: hidden;
  text-overflow: ellipsis;
}
.formFieldPrefix__3bff2778 {
  align-items: center;
  bottom: 0;
  display: flex;
  gap: 4px;
  left: 0;
  padding: 0 8px 0 12px;
  position: absolute;
  top: 0;
}
.formFieldPostfix__0d638c7a {
  align-items: center;
  bottom: 0;
  display: flex;
  gap: 8px;
  padding: 0 12px 0 8px;
  position: absolute;
  right: 0;
  top: 0;
}
.formFieldLabel__dd073764 {
  left: 0;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: 16px;
  transition: top 0.3s ease-out, left 0.3s ease-out;
  white-space: nowrap;
}
.formFieldLabel__dd073764.floating__16bbf6fe {
  left: 12px;
  top: -8px;
}
.formFieldLabelText__2bc30345 {
  color: var(--triplex-FormField-Label_Color_Default-13-0-2);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  padding-left: 0;
  padding-right: 0;
  transition-duration: 0.3s;
  transition-property: font-size, padding-left, padding-right;
  transition-timing-function: ease-out;
}
.floating__16bbf6fe .formFieldLabelText__2bc30345 {
  background: var(--triplex-FormField-Label_Background-13-0-2);
  font-size: 12px;
  padding-left: 4px;
  padding-right: 4px;
}
.disabled__73906794 .formFieldLabelText__2bc30345 {
  color: var(--triplex-FormField-Label_Color_Disabled-13-0-2);
}
.formFieldInput__7bccbfbf {
  -webkit-appearance: none;
  border: none;
  box-shadow: var(--triplex-FormField-Shadow_Default-13-0-2);
  height: 48px;
  padding-bottom: 16px;
  padding-top: 16px;
}
.formFieldInput__7bccbfbf::-webkit-input-placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.formFieldInput__7bccbfbf::-moz-placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
  opacity: 0;
  -moz-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.formFieldInput__7bccbfbf::placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.formFieldInput__7bccbfbf:focus {
  box-shadow: var(--triplex-FormField-Shadow_Focus-13-0-2);
}
.formFieldInput__7bccbfbf:focus::-webkit-input-placeholder {
  opacity: 1;
}
.formFieldInput__7bccbfbf:focus::-moz-placeholder {
  opacity: 1;
}
.formFieldInput__7bccbfbf:focus::placeholder {
  opacity: 1;
}
.formFieldInput__7bccbfbf:disabled {
  box-shadow: var(--triplex-FormField-Shadow_Disabled-13-0-2);
}
.formFieldInput__7bccbfbf.error__d62045f4 {
  box-shadow: var(--triplex-FormField-Shadow_Error-13-0-2);
}
.formFieldInput__7bccbfbf:-webkit-autofill {
  animation-duration: 1ms;
  animation-name: autofill-applied-hook__80dfdb38;
}
.formFieldInput__7bccbfbf:not(:-webkit-autofill) {
  animation-duration: 1ms;
  animation-name: autofill-cancelled-hook__7f41c7b3;
}
@keyframes autofill-applied-hook__80dfdb38 {
  0% {
    transform: none;
  }
}
@keyframes autofill-cancelled-hook__7f41c7b3 {
  0% {
    transform: none;
  }
}
.formFieldDescription__27210592 {
  color: var(--triplex-FormField-Description_Color_Default-13-0-2);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.formFieldDescription__27210592.error__d62045f4 {
  color: var(--triplex-FormField-Description_Color_Error-13-0-2);
}
.formFieldClear__3d93c4d0 {
  cursor: pointer;
  height: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.formFieldClear__3d93c4d0.shown__3846326c {
  opacity: 1;
}
.formField__7ca45c91 {
  flex-grow: 1;
  position: relative;
}
.footer__78d319dc {
  background: var(--triplex-Footer-Background-13-0-2);
  padding: 24px 32px;
}
.footer__78d319dc.sticky__48550f26 {
  bottom: 0;
  position: -webkit-sticky;
  position: sticky;
  z-index: 200;
}
.footerDescription__6efda884 {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.footerDescriptionContent__6c7c9aa2 {
  color: #1f1f22;
  color: var(--triplex-Footer-Color-13-0-2);
  flex-grow: 1;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-right: auto;
  text-transform: none;
}
.footerDescriptionControls__a9344848 {
  margin-left: auto;
  padding-left: 24px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footerDescription__6efda884 {
    align-items: normal;
    flex-wrap: wrap;
  }
  .footerDescriptionContent__6c7c9aa2 {
    width: 100%;
  }
  .footerDescriptionControls__a9344848 {
    margin-left: -16px;
    margin-top: -16px;
    padding-left: 0;
    white-space: normal;
  }
  .footerDescriptionControls__a9344848 > .globalButtonDropdownExtended__434de4f1,
  .footerDescriptionControls__a9344848 > button {
    margin-left: 16px;
    margin-top: 16px;
  }
  .footerDescriptionContent__6c7c9aa2 + .footerDescriptionControls__a9344848 {
    margin-top: 0;
  }
  .footer__78d319dc {
    padding: 16px;
  }
}
@media (max-width: 1000px) {
  html.scroll-0 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-0 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media screen and (max-height: 800px) {
  html.scroll-0 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-0 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media (max-width: 1015px) {
  html.scroll-15 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-15 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media screen and (max-height: 800px) {
  html.scroll-15 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-15 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media (max-width: 1016px) {
  html.scroll-16 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-16 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media screen and (max-height: 800px) {
  html.scroll-16 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-16 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media (max-width: 1017px) {
  html.scroll-17 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-17 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media screen and (max-height: 800px) {
  html.scroll-17 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-17 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
.field__3495090a {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.field__3495090a.alignLabel__a5ec00ea .globalLabelWrapper__243cf80a {
  padding-top: 6px;
}
.ellipsisLineClamp__3542eff7 {
  --ellipsis-line-clamp: 1;
  -webkit-line-clamp: var(--ellipsis-line-clamp);
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  padding: 0;
  white-space: normal;
  word-break: break-word;
}
.ellipsisLineClamp__3542eff7.oneLine__37482705 {
  word-break: break-all;
}
.ellipsisIe__0b728624 {
  word-wrap: break-word;
  white-space: normal;
}
.dropdownMobileMaskedInput__89534871 {
  background: transparent;
  border: none;
  border-radius: 0;
  height: 16px;
  padding: 0;
}
.dropdownMobileInput__366fc592 {
  background: none;
  border: none;
  border-radius: 0;
  color: var(--triplex-Input-Color_Default-13-0-2);
  display: block;
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
  outline: none;
  padding: 0;
  width: calc(100% - 12px);
}
.dropdownMobileInput__366fc592::-webkit-input-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.dropdownMobileInput__366fc592::-moz-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.dropdownMobileInput__366fc592::placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.dropdownMobileInput__366fc592::-ms-clear {
  display: none;
}
.dropdownMobileWrapper__cd22cbf5 {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1500;
}
.dropdownMobileBackdrop__109fd432 {
  background: var(--triplex-DropdownMobile-Backdrop-13-0-2);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease-in-out;
}
.dropdownMobileBackdrop__109fd432.closing__7985185c {
  opacity: 0;
}
.dropdownMobileBackdrop__109fd432.opened__4c8bc8cf,
.dropdownMobileBackdrop__109fd432.opening__acd09079 {
  opacity: var(--triplex-DropdownMobile-Opacity-13-0-2);
}
.dropdownMobile__b3977a33 {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  max-height: 50vh;
  outline: none;
  position: absolute;
  right: 0;
  transition: transform 0.3s ease-in-out;
}
.dropdownMobile__b3977a33,
.dropdownMobile__b3977a33.closing__7985185c {
  transform: translateY(100%);
}
.dropdownMobile__b3977a33.opened__4c8bc8cf,
.dropdownMobile__b3977a33.opening__acd09079 {
  transform: translateY(0);
}
.globalMultiselectDropdownMobileWrapper__7be758b5 .dropdownMobile__b3977a33 {
  height: 50vh;
  justify-content: space-between;
}
.globalDatePickerExtendedDropdownMobileWrapper__7c78cc59 .dropdownMobile__b3977a33 {
  max-height: 100vh;
}
.dropdownMobileHeader__cabca1e9 {
  background: var(--triplex-DropdownMobile-Header_Background-13-0-2);
  flex-shrink: 1;
  min-height: 16px;
  padding: 16px 40px 16px 16px;
  position: relative;
}
.dropdownMobileContent__e8a187b7 {
  background: var(--triplex-DropdownMobile-Content_Background-13-0-2);
  flex-grow: 1;
  overflow: auto;
}
.dropdownMobileFooter__19d02a0f {
  background: var(--triplex-DropdownMobile-Footer_Background-13-0-2);
  border-top: 1px solid var(--triplex-DropdownMobile-Border_Color-13-0-2);
  flex-shrink: 1;
  padding: 16px;
}
.dropdownMobileListItem__ca45ccbb {
  padding: 12px 16px;
}
.dropdownMobileListItem__ca45ccbb.selected__53e19ce8 {
  background: var(--triplex-DropdownMobileList-Selected_Background-13-0-2);
}
.dropdownMobileListItem__ca45ccbb:active {
  background-color: var(--triplex-DropdownMobileList-Active_Background-13-0-2);
}
button.dropdownMobileClose__73db899f {
  position: absolute;
  right: 16px;
  top: 16px;
}
.dropdownMobileBodyOverflow__34ac7da3 {
  overflow: hidden;
}
.dropdownList__df5c6c83 {
  max-height: 196px;
  overflow: auto;
  padding: 4px;
}
.dropdownListItem__15fd295c {
  background: var(--triplex-DropdownList-Background_Default-13-0-2);
  border-radius: 8px;
  color: #1f1f22;
  color: var(--triplex-DropdownList-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  outline: none;
  padding: 6px 8px;
  position: relative;
  text-transform: none;
  white-space: nowrap;
}
.dropdownListItem__15fd295c + .dropdownListItem__15fd295c {
  margin-top: 2px;
}
.dropdownListItem__15fd295c.active__c5c3295e {
  background: var(--triplex-DropdownList-Background_Active-13-0-2);
  cursor: pointer;
}
.dropdownListItem__15fd295c.selected__53e19ce8 {
  background: var(--triplex-DropdownList-Background_Selected-13-0-2);
  cursor: default;
}
.dropdown__5f8cadb6 {
  background-color: var(--triplex-Dropdown-Background-13-0-2);
  border-radius: 8px;
  box-shadow: var(--triplex-Dropdown-Shadow-13-0-2);
  box-sizing: border-box;
  position: fixed;
  z-index: 1500;
}
.documentNumberEdit__c4b30de0 .label__547e1162 {
  display: inline-block;
  margin-right: 8px;
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5 {
  background: none;
  border: none;
  cursor: pointer;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5 .buttonEditInner__8da59cfc {
  border: 1px solid transparent;
  color: var(--triplex-Link-Text_Color_Default-13-0-2);
  margin: 0 -2px;
  padding: 0 2px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5 .buttonEditInner__8da59cfc {
    margin: 0;
  }
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5:focus {
  outline: none;
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5:focus .buttonEditInner__8da59cfc {
  border: 1px solid var(--triplex-Link-BorderColor_Focus-13-0-2);
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5:hover .buttonEditInner__8da59cfc {
  color: var(--triplex-Link-Text_Color_Hover-13-0-2);
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5:active .buttonEditInner__8da59cfc {
  color: var(--triplex-Link-Text_Color_Active-13-0-2);
}
.documentNumberEdit__c4b30de0 .inputEditWrapper__37336740 {
  display: inline-block;
  width: 64px;
}
.divider__1685a861 {
  background: var(--triplex-Divider-Background-13-0-2);
  border: none;
  height: 1px;
  margin: 0;
}
.marginTopSize-4__7f6e5794 {
  margin-top: 4px;
}
.marginBottomSize-4__3f134f54 {
  margin-bottom: 4px;
}
.marginTopSize-8__525e6f52 {
  margin-top: 8px;
}
.marginBottomSize-8__655f8b0a {
  margin-bottom: 8px;
}
.marginTopSize-12__23760809 {
  margin-top: 12px;
}
.marginBottomSize-12__1e152c5c {
  margin-bottom: 12px;
}
.marginTopSize-16__ed031d8a {
  margin-top: 16px;
}
.marginBottomSize-16__475f01bf {
  margin-bottom: 16px;
}
.marginTopSize-20__809c2ec8 {
  margin-top: 20px;
}
.marginBottomSize-20__baeed4ab {
  margin-bottom: 20px;
}
.marginTopSize-24__909eefbe {
  margin-top: 24px;
}
.marginBottomSize-24__19db9c27 {
  margin-bottom: 24px;
}
.marginTopSize-28__4e3098f3 {
  margin-top: 28px;
}
.marginBottomSize-28__34a4cf31 {
  margin-bottom: 28px;
}
.marginTopSize-32__9654e7cd {
  margin-top: 32px;
}
.marginBottomSize-32__5c45ec98 {
  margin-bottom: 32px;
}
.dateRange__f92185dc {
  display: flex;
}
.dateRangeButton__efe45886 {
  z-index: 1;
}
.datePickerTarget__aca4d64c {
  position: relative;
}
button.datePickerTargetButton__69ef3e4c {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 6px;
}
.datePicker__b78856fa {
  width: 126px;
}
.confirm__94c041ab {
  background-color: var(--triplex-Confirm-Background-13-0-2);
  box-shadow: var(--triplex-Confirm-Shadow-13-0-2);
  flex-grow: 1;
  padding: 24px 76px 24px 32px;
}
.confirm__94c041ab .confirmCloseButton__7714f871 {
  position: absolute;
  right: 32px;
  top: 24px;
}
.confirm__94c041ab .confirmContent__603129b8 {
  margin-bottom: 32px;
}
.confirm__94c041ab .confirmControls__195211ce {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .confirm__94c041ab {
    padding: 20px 52px 20px 16px;
  }
  .confirm__94c041ab .confirmCloseButton__7714f871 {
    right: 16px;
    top: 26px;
  }
  .confirm__94c041ab .confirmContent__603129b8 {
    margin-bottom: 16px;
  }
}
.collapsableTreeNodeContent__6f4fff1d.collapsed__8b9f0cde {
  visibility: hidden;
}
.col-1__dcb0e7ab {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}
.col-1__dcb0e7ab,
.col-2__51c8c6e9 {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-2__51c8c6e9 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}
.col-3__02952ebd {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-3__02952ebd,
.col-4__4a59dca5 {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-4__4a59dca5 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}
.col-5__a93af805 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}
.col-5__a93af805,
.col-6__26ee974f {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-6__26ee974f {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7__df6747da {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}
.col-7__df6747da,
.col-8__990a8724 {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-8__990a8724 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}
.col-9__2cc52802 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10__aafa5256,
.col-9__2cc52802 {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-10__aafa5256 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}
.col-11__94666926 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}
.col-11__94666926,
.col-12__546fabcc {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-12__546fabcc {
  flex: 0 0 100%;
  max-width: 100%;
}
.offset-0__7e370a28 {
  margin-left: 0;
}
.offset-1__deb91c7b {
  margin-left: 8.33333333%;
}
.offset-2__1ca6741c {
  margin-left: 16.66666667%;
}
.offset-3__13dd6db7 {
  margin-left: 25%;
}
.offset-4__8a315965 {
  margin-left: 33.33333333%;
}
.offset-5__0158cda0 {
  margin-left: 41.66666667%;
}
.offset-6__194b3556 {
  margin-left: 50%;
}
.offset-7__4b3ea8a0 {
  margin-left: 58.33333333%;
}
.offset-8__66040cb2 {
  margin-left: 66.66666667%;
}
.offset-9__d23a9bfc {
  margin-left: 75%;
}
.offset-10__becbe5ef {
  margin-left: 83.33333333%;
}
.offset-11__299db8a2 {
  margin-left: 91.66666667%;
}
.d-none__50f03526 {
  display: none !important;
}
.d-block__eb7b7b4d {
  display: block !important;
}
@media (min-width: 576px) {
  .col-sm-1__7c5256fe {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-1__7c5256fe,
  .col-sm-2__2f2d66c4 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-2__2f2d66c4 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3__6c433bb8 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-3__6c433bb8,
  .col-sm-4__75c6f325 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-4__75c6f325 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5__1060ffca {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-5__1060ffca,
  .col-sm-6__63ea38f4 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-6__63ea38f4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7__c3d4cd53 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-7__c3d4cd53,
  .col-sm-8__a4a82414 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-8__a4a82414 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9__827c2f43 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10__e5cb233d,
  .col-sm-9__827c2f43 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-10__e5cb233d {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11__05c5e2a3 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-11__05c5e2a3,
  .col-sm-12__0f33f756 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-12__0f33f756 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-sm-0__d32c24ad {
    margin-left: 0;
  }
  .offset-sm-1__ebe69b89 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2__df04ad2d {
    margin-left: 16.66666667%;
  }
  .offset-sm-3__e819af5c {
    margin-left: 25%;
  }
  .offset-sm-4__ea9b31a8 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5__66d3dd28 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6__378a928e {
    margin-left: 50%;
  }
  .offset-sm-7__da3ca17b {
    margin-left: 58.33333333%;
  }
  .offset-sm-8__6a5a9cd7 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9__60766671 {
    margin-left: 75%;
  }
  .offset-sm-10__797a7dc0 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11__96a11f87 {
    margin-left: 91.66666667%;
  }
  .d-none-sm__ecaf49c9 {
    display: none !important;
  }
  .d-block-sm__8aba3ac6 {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .col-md-1__1a20f44b {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-1__1a20f44b,
  .col-md-2__da32f82e {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-2__da32f82e {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3__5ddb6c66 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-3__5ddb6c66,
  .col-md-4__881d2898 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-4__881d2898 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5__3f39c0e9 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-5__3f39c0e9,
  .col-md-6__bc486306 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-6__bc486306 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7__ff3af6d3 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-7__ff3af6d3,
  .col-md-8__af17f261 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-8__af17f261 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9__1ae77721 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10__f3da7527,
  .col-md-9__1ae77721 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-10__f3da7527 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11__3ef63d46 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-11__3ef63d46,
  .col-md-12__72723bc6 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-12__72723bc6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-md-0__fd84667d {
    margin-left: 0;
  }
  .offset-md-1__09b4af44 {
    margin-left: 8.33333333%;
  }
  .offset-md-2__b03d8ec0 {
    margin-left: 16.66666667%;
  }
  .offset-md-3__3e5812d6 {
    margin-left: 25%;
  }
  .offset-md-4__4342b588 {
    margin-left: 33.33333333%;
  }
  .offset-md-5__84b08255 {
    margin-left: 41.66666667%;
  }
  .offset-md-6__bd2726e7 {
    margin-left: 50%;
  }
  .offset-md-7__0c0ce718 {
    margin-left: 58.33333333%;
  }
  .offset-md-8__d44037c9 {
    margin-left: 66.66666667%;
  }
  .offset-md-9__f248241d {
    margin-left: 75%;
  }
  .offset-md-10__deb7c49d {
    margin-left: 83.33333333%;
  }
  .offset-md-11__2867e5c4 {
    margin-left: 91.66666667%;
  }
  .d-none-md__586b23ee {
    display: none !important;
  }
  .d-block-md__56171e8d {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .col-lg-1__3844a0dd {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-1__3844a0dd,
  .col-lg-2__5673036b {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-2__5673036b {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3__c41c105a {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-3__c41c105a,
  .col-lg-4__93b57857 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-4__93b57857 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5__549a62ab {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-5__549a62ab,
  .col-lg-6__6c4d7509 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-6__6c4d7509 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7__63778e42 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-7__63778e42,
  .col-lg-8__ccee5aa0 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-8__ccee5aa0 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9__8fd0081a {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10__eb82775f,
  .col-lg-9__8fd0081a {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-10__eb82775f {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11__749aa3e8 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-11__749aa3e8,
  .col-lg-12__91785db0 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-12__91785db0 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-lg-0__0f77fe2a {
    margin-left: 0;
  }
  .offset-lg-1__5ba70cb3 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2__394942ad {
    margin-left: 16.66666667%;
  }
  .offset-lg-3__a49d10cb {
    margin-left: 25%;
  }
  .offset-lg-4__0c87ab91 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5__58858e63 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6__239ab440 {
    margin-left: 50%;
  }
  .offset-lg-7__b8878114 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8__abed1849 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9__a2f3b3be {
    margin-left: 75%;
  }
  .offset-lg-10__bc3ab006 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11__8edb795a {
    margin-left: 91.66666667%;
  }
  .d-none-lg__0fb96503 {
    display: none !important;
  }
  .d-block-lg__932d6037 {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .col-xl-1__02dbbfaa {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-1__02dbbfaa,
  .col-xl-2__c742afba {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-2__c742afba {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3__13a5ffce {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-3__13a5ffce,
  .col-xl-4__3834b50e {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-4__3834b50e {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5__c84facc7 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-5__c84facc7,
  .col-xl-6__09b55e65 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-6__09b55e65 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7__0347365d {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-7__0347365d,
  .col-xl-8__1ce825b4 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-8__1ce825b4 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9__6dcd07bd {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10__571ab6d5,
  .col-xl-9__6dcd07bd {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-10__571ab6d5 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11__e5e65144 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-11__e5e65144,
  .col-xl-12__18bc68fd {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-12__18bc68fd {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-xl-0__d06cf1ac {
    margin-left: 0;
  }
  .offset-xl-1__7b236ccd {
    margin-left: 8.33333333%;
  }
  .offset-xl-2__786f7376 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3__5edd0a90 {
    margin-left: 25%;
  }
  .offset-xl-4__398ed532 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5__9b83dc7d {
    margin-left: 41.66666667%;
  }
  .offset-xl-6__40b14b88 {
    margin-left: 50%;
  }
  .offset-xl-7__9cbc7527 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8__014ba8d1 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9__2170e940 {
    margin-left: 75%;
  }
  .offset-xl-10__c395cf13 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11__26a8bba4 {
    margin-left: 91.66666667%;
  }
  .d-none-xl__26332f98 {
    display: none !important;
  }
  .d-block-xl__833d9a2f {
    display: block !important;
  }
}
.chipGroup__fbe066d4 {
  display: flex;
  gap: 8px;
}
.chipGroup__fbe066d4.oneLine__80c21b81 {
  -ms-overflow-style: none;
  overflow: auto;
  scrollbar-width: none;
}
.chipGroup__fbe066d4.oneLine__80c21b81::-webkit-scrollbar {
  display: none;
}
.chipGroup__fbe066d4.multiLine__23a245dc {
  flex-wrap: wrap;
}
.chipSuggest__31d6ea88 {
  width: auto;
}
.chipOptionsContent__86e46eb5 {
  display: block;
  min-width: 14px;
  text-align: center;
}
.chipDropdownArrow__4333dc38 {
  transition: transform 0.3s ease;
}
.chipDropdownArrow__4333dc38.rotated__7c9c6602 {
  transform: rotate(-180deg);
}
.chipClearButton__4c8066f3 {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  margin: 0;
  outline: none;
  padding: 0;
}
.chipClearButton__4c8066f3:focus-visible {
  box-shadow: var(--triplex-Chip-Shadow_Focus-13-0-2);
}
.chipGroupItem__16120e00 {
  display: inline-block;
}
.chip__b8e2ecf2 {
  align-items: center;
  background: var(--triplex-Chip-Background_Default-13-0-2);
  border-radius: 16px;
  color: var(--triplex-Chip-Color_Default-13-0-2);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 12px;
  height: 32px;
  line-height: 16px;
  max-width: 246px;
  min-width: 40px;
  outline: none;
  padding: 0 12px;
  vertical-align: middle;
}
.chip__b8e2ecf2:hover {
  background: var(--triplex-Chip-Background_Hover-13-0-2);
  color: var(--triplex-Chip-Color_Hover-13-0-2);
}
.chip__b8e2ecf2:focus-visible {
  box-shadow: var(--triplex-Chip-Shadow_Focus-13-0-2);
}
.chip__b8e2ecf2:active,
.chip__b8e2ecf2[aria-expanded=true] {
  background: var(--triplex-Chip-Background_Active-13-0-2);
  color: var(--triplex-Chip-Color_Active-13-0-2);
}
.chip__b8e2ecf2.disabled__f1324b47 {
  background: var(--triplex-Chip-Background_Disabled-13-0-2);
  color: var(--triplex-Chip-Color_Disabled-13-0-2);
  cursor: default;
  pointer-events: none;
}
.chip__b8e2ecf2.selected__afcffed6 {
  background: var(--triplex-Chip-Background_Selected_Default-13-0-2);
  color: var(--triplex-Chip-Color_Selected_Default-13-0-2);
}
.chip__b8e2ecf2.selected__afcffed6:hover {
  background: var(--triplex-Chip-Background_Selected_Hover-13-0-2);
  color: var(--triplex-Chip-Color_Selected_Hover-13-0-2);
}
.chip__b8e2ecf2.selected__afcffed6:active,
.chip__b8e2ecf2.selected__afcffed6[aria-expanded=true] {
  background: var(--triplex-Chip-Background_Selected_Active-13-0-2);
  color: var(--triplex-Chip-Color_Selected_Active-13-0-2);
}
.chip__b8e2ecf2.selected__afcffed6.disabled__f1324b47 {
  background: var(--triplex-Chip-Background_Selected_Disabled-13-0-2);
  color: var(--triplex-Chip-Color_Selected_Disabled-13-0-2);
}
.chip__b8e2ecf2.withPrefix__0407c9b0 {
  padding-left: 0;
}
.chip__b8e2ecf2.withPostfix__212cae32 {
  padding-right: 0;
}
.chip__b8e2ecf2 .content__38c882c8 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chip__b8e2ecf2 .prefix__ffa1214e {
  display: flex;
  padding-left: 8px;
}
.chip__b8e2ecf2 .postfix__65d97dd7 {
  display: flex;
  padding-right: 8px;
}
.checkboxTreeExtended__85df1b4d {
  margin-bottom: -8px;
}
.checkboxTreeExtendedNode__9c859c52 .checkboxTreeExtendedNode__9c859c52 {
  margin-left: 24px;
}
.checkboxTreeExtendedNodeHeader__916d9bc5 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  position: relative;
}
.checkboxTreeExtendedNodeHeader__916d9bc5 .checkboxTreeCheckboxLabel__1ed07577 {
  margin-bottom: 0 !important;
}
.checkboxTreeExtendedNodeHeader__916d9bc5 .caretIconWrapper__d5b66469 {
  bottom: 0;
  cursor: pointer;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.checkboxTreeExtendedNodeHeader__916d9bc5 .caretIconWrapper__d5b66469:focus {
  outline: 1px solid var(--triplex-Checkbox-Border_Color_Focus-13-0-2);
}
.checkboxTreeExtendedNodeHeader__916d9bc5.opened__961ab138 .caretIconWrapper__d5b66469 {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .checkboxTreeExtended__85df1b4d {
    margin: 0 16px;
  }
  .checkboxTreeExtendedNodeHeader__916d9bc5 {
    margin-bottom: 0;
  }
  .checkboxTreeCheckboxLabel__1ed07577 {
    padding-bottom: 16px;
    padding-top: 16px;
  }
  .checkboxTreeCheckboxLabel__1ed07577 .checkboxTreeCheckbox__9542ad3d,
  .checkboxTreeCheckboxLabel__1ed07577 > span,
  .checkboxTreeCheckboxLabel__1ed07577 > svg {
    top: 18px !important;
  }
}
.checkboxYGroup__d120524d {
  display: inline-flex;
  flex-flow: column wrap;
  max-width: 100%;
}
.checkboxYGroup__d120524d .label__c782d0bf + .label__c782d0bf {
  margin-top: 16px;
}
.checkboxXGroup__d9e1698f {
  display: inline-flex;
  flex-flow: row wrap;
}
.checkboxXGroup__d9e1698f.indent-12__931bf6cc {
  margin-left: -6px;
  margin-right: -6px;
}
.checkboxXGroup__d9e1698f.indent-12__931bf6cc .label__c782d0bf {
  margin-left: 6px;
  margin-right: 6px;
}
.checkboxXGroup__d9e1698f.indent-16__58433e44 {
  margin-left: -8px;
  margin-right: -8px;
}
.checkboxXGroup__d9e1698f.indent-16__58433e44 .label__c782d0bf {
  margin-left: 8px;
  margin-right: 8px;
}
.checkboxXGroup__d9e1698f.indent-20__b4b4af0b {
  margin-left: -10px;
  margin-right: -10px;
}
.checkboxXGroup__d9e1698f.indent-20__b4b4af0b .label__c782d0bf {
  margin-left: 10px;
  margin-right: 10px;
}
.checkboxXGroup__d9e1698f.indent-24__ba68d971 {
  margin-left: -12px;
  margin-right: -12px;
}
.checkboxXGroup__d9e1698f.indent-24__ba68d971 .label__c782d0bf {
  margin-left: 12px;
  margin-right: 12px;
}
.checkboxXGroup__d9e1698f.indent-28__78dadc54 {
  margin-left: -14px;
  margin-right: -14px;
}
.checkboxXGroup__d9e1698f.indent-28__78dadc54 .label__c782d0bf {
  margin-left: 14px;
  margin-right: 14px;
}
.checkboxXGroup__d9e1698f.indent-32__5d9e05d9 {
  margin-left: -16px;
  margin-right: -16px;
}
.checkboxXGroup__d9e1698f.indent-32__5d9e05d9 .label__c782d0bf {
  margin-left: 16px;
  margin-right: 16px;
}
.label__c782d0bf {
  color: var(--triplex-Checkbox-Color_Default-13-0-2);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  min-height: 16px;
  min-width: 16px;
  position: relative;
}
.label__c782d0bf.nonempty__eef572ed {
  padding-left: 24px;
}
.label__c782d0bf.disabled__192c3850 {
  color: var(--triplex-Checkbox-Color_Disabled-13-0-2);
  cursor: default;
}
.label__c782d0bf[hidden] {
  display: none;
}
.checkbox__99d1bcbd {
  margin: 0;
  opacity: 0;
}
.checkboxIcon__46a6939b {
  background-color: var(--triplex-Checkbox-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Checkbox-BorderColor_Default-13-0-2);
  border-radius: 4px;
  box-sizing: border-box;
}
.checkmarkIcon__623d9b5e {
  transform: scale(0);
}
.checkmarkIcon__623d9b5e path {
  fill: var(--triplex-Checkbox-Checkmark_Fill_Default-13-0-2);
}
.checkboxIcon__46a6939b,
.checkmarkIcon__623d9b5e {
  pointer-events: none;
}
.checkboxIcon__46a6939b,
.checkbox__99d1bcbd,
.checkmarkIcon__623d9b5e {
  height: 16px;
  left: 0;
  position: absolute;
  width: 16px;
}
.nonempty__eef572ed .checkboxIcon__46a6939b,
.nonempty__eef572ed .checkbox__99d1bcbd,
.nonempty__eef572ed .checkmarkIcon__623d9b5e {
  top: 2px;
}
.checkbox__99d1bcbd:enabled {
  cursor: pointer;
}
.checkbox__99d1bcbd:checked + .checkboxIcon__46a6939b {
  background-color: var(--triplex-Checkbox-Background_Checked_Default-13-0-2);
  border-color: var(--triplex-Checkbox-BorderColor_Checked-13-0-2);
}
.checkbox__99d1bcbd:checked ~ .checkmarkIcon__623d9b5e {
  transform: scale(1);
  transition: transform 0.2s ease-out;
}
.checkbox__99d1bcbd:hover + .checkboxIcon__46a6939b {
  border-color: var(--triplex-Checkbox-BorderColor_Hover-13-0-2);
}
.checkbox__99d1bcbd:disabled + .checkboxIcon__46a6939b {
  background-color: var(--triplex-Checkbox-Background_Disabled-13-0-2);
  border-color: var(--triplex-Checkbox-BorderColor_Disabled-13-0-2);
}
.checkbox__99d1bcbd:disabled ~ .checkmarkIcon__623d9b5e path {
  fill: var(--triplex-Checkbox-Checkmark_Fill_Disabled-13-0-2);
}
.checkbox__99d1bcbd[data-focus-visible]:focus + .checkboxIcon__46a6939b {
  border-color: var(--triplex-Checkbox-BorderColor_Focus-13-0-2);
}
.checkbox__99d1bcbd:checked:enabled:hover + .checkboxIcon__46a6939b {
  background-color: var(--triplex-Checkbox-Background_Checked_Hover-13-0-2);
}
.carouselExtended__8cf9df6d {
  -ms-overflow-style: none;
  display: flex;
  overflow-y: hidden;
  position: relative;
  scrollbar-width: none;
}
.carouselExtended__8cf9df6d::-webkit-scrollbar {
  display: none;
}
.card__3abbe2e9 {
  background: var(--triplex-Card-Background-13-0-2);
  border: 1px solid var(--triplex-Card-BorderColor_Default-13-0-2);
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  width: 100%;
}
.card__3abbe2e9.roundingMD__30c4c8e0 {
  border-radius: 16px;
}
.card__3abbe2e9.roundingSM__cbc8012c {
  border-radius: 8px;
}
.card__3abbe2e9 .cardMedia__bab301ab {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.card__3abbe2e9 .cardContent__5721918d.paddingMD__dc6e8f1f {
  padding: 23px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingMD__dc6e8f1f:not(:first-child) {
  padding-top: 24px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingMD__dc6e8f1f:not(:last-child) {
  padding-bottom: 24px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingSM__c13872d5 {
  padding: 15px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingSM__c13872d5:not(:first-child) {
  padding-top: 16px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingSM__c13872d5:not(:last-child) {
  padding-bottom: 16px;
}
.card__3abbe2e9 .cardContent__5721918d .cardContentHeader__74e2e1db {
  margin-bottom: 16px;
}
.card__3abbe2e9 .cardContent__5721918d .cardContentFooter__13f9ff56 {
  margin-top: 16px;
}
.action__5d6483a1 {
  box-shadow: var(--triplex-Card-Shadow_Default-13-0-2);
  cursor: pointer;
}
.action__5d6483a1.selected__fbd06662 {
  border-color: var(--triplex-Card-BorderColor_Selected-13-0-2);
  box-shadow: none;
}
.action__5d6483a1:hover {
  border-color: var(--triplex-Card-BorderColor_Hover-13-0-2);
  box-shadow: var(--triplex-Card-Shadow_Hover-13-0-2);
}
.action__5d6483a1:focus {
  outline: none;
}
.action__5d6483a1:focus.focusVisible__59a8712f {
  border-color: var(--triplex-Card-BorderColor_Focus-13-0-2);
}
.calendarViewItem__03e63fc6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  padding: 0;
  text-align: center;
}
.calendarViewItem__03e63fc6:focus-visible {
  outline: none;
}
.calendarViewItem__03e63fc6.current__361cb8af {
  font-weight: 600;
}
.calendarViewItem__03e63fc6.rangeBetween__632576ce,
.calendarViewItem__03e63fc6.rangeEnd__3896ddb8,
.calendarViewItem__03e63fc6.rangeSingle__6f1ecb32,
.calendarViewItem__03e63fc6.rangeStart__e84b0ab8 {
  background: var(--triplex-Calendar-View_Item_Background_Range-13-0-2);
}
.calendarViewItem__03e63fc6.rangeEnd__3896ddb8:first-child,
.calendarViewItem__03e63fc6.rangeSingle__6f1ecb32,
.calendarViewItem__03e63fc6.rangeStart__e84b0ab8:last-child {
  border-radius: 50%;
  box-shadow: none;
}
.calendarViewItem__03e63fc6.rangeBetween__632576ce:first-child,
.calendarViewItem__03e63fc6.rangeStart__e84b0ab8 {
  border-radius: 50% 0 0 50%;
  box-shadow: 1px 0 var(--triplex-Calendar-View_Item_Background_Range-13-0-2);
}
.calendarViewItem__03e63fc6.rangeBetween__632576ce:last-child,
.calendarViewItem__03e63fc6.rangeEnd__3896ddb8 {
  border-radius: 0 50% 50% 0;
  box-shadow: -1px 0 var(--triplex-Calendar-View_Item_Background_Range-13-0-2);
}
.calendarViewItem__03e63fc6.rangeBetween__632576ce {
  border-radius: 0;
  box-shadow: 1px 0 var(--triplex-Calendar-View_Item_Background_Range-13-0-2), -1px 0 var(--triplex-Calendar-View_Item_Background_Range-13-0-2);
}
.calendarViewItem__03e63fc6.disabled__f15fd3af {
  pointer-events: none;
}
.calendarViewItemLabel__fbddb3b9 {
  align-items: center;
  background: var(--triplex-Calendar-View_Item_Background_Default-13-0-2);
  border: 1px solid var(--triplex-Calendar-View_Item_BorderColor_Default-13-0-2);
  box-sizing: border-box;
  color: var(--triplex-Calendar-View_Item_Color_Default-13-0-2);
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: auto;
  position: relative;
  white-space: nowrap;
}
.calendarViewItemLabel__fbddb3b9:hover {
  background: var(--triplex-Calendar-View_Item_Background_Hover-13-0-2);
}
.calendarViewItemLabel__fbddb3b9.selected__2b471a29 {
  background: var(--triplex-Calendar-View_Item_Background_Selected_Default-13-0-2);
  color: var(--triplex-Calendar-View_Item_Color_Selected-13-0-2);
}
.calendarViewItemLabel__fbddb3b9.selected__2b471a29:hover {
  background: var(--triplex-Calendar-View_Item_Background_Selected_Hover-13-0-2);
}
.calendarViewItemLabel__fbddb3b9.marked__bd2aa876:after {
  background: var(--triplex-Calendar-View_Item_Mark_Background-13-0-2);
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: calc(50% - 2px);
  pointer-events: none;
  position: absolute;
  width: 4px;
}
.calendarViewItemLabel__fbddb3b9.muted__ace910d4 {
  color: var(--triplex-Calendar-View_Item_Color_Muted-13-0-2);
}
.calendarViewItemLabel__fbddb3b9.disabled__f15fd3af {
  color: var(--triplex-Calendar-View_Item_Color_Disabled-13-0-2);
}
.calendarViewItem__03e63fc6:focus-visible .calendarViewItemLabel__fbddb3b9 {
  border-color: var(--triplex-Calendar-View_Item_BorderColor_Focus-13-0-2);
}
.unitDay__a9e17ec9 {
  border-radius: 12px;
  height: 24px;
  width: 24px;
}
.adaptive__241a0909 .unitDay__a9e17ec9 {
  border-radius: 16px;
  height: 32px;
  width: 32px;
}
.unitMonth__e6000b1b,
.unitYear__0293262e {
  border-radius: 8px;
  height: 36px;
  width: 56px;
}
.adaptive__241a0909 .unitMonth__e6000b1b,
.adaptive__241a0909 .unitYear__0293262e {
  border-radius: 12px;
  height: 60px;
  width: 104px;
}
.calendarViewDays__2e0964a8 {
  border-spacing: 2px;
  margin: 6px -2px -2px;
  table-layout: fixed;
  width: calc(100% + 4px);
}
.adaptive__241a0909 .calendarViewDays__2e0964a8 {
  border-spacing: 0 6px;
  margin: 14px 0 -6px;
  width: 100%;
}
.calendarViewMonths__d7be6a84,
.calendarViewYears__2f4a7e05 {
  border-spacing: 6px 12px;
  margin: -2px -6px -8px;
  table-layout: fixed;
  width: calc(100% + 12px);
}
.adaptive__241a0909 .calendarViewMonths__d7be6a84,
.adaptive__241a0909 .calendarViewYears__2f4a7e05 {
  border-spacing: 0 6px;
  margin: 14px 0 -6px;
  width: 100%;
}
.calendarViewDaysHeader__51dd3b0d {
  color: var(--triplex-Calendar-View_Header_Color-13-0-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
  text-align: center;
}
.calendarViewDaysBody__64901f89:before {
  content: "\200C";
  display: block;
  line-height: 8px;
}
.adaptive__241a0909 .calendarViewDaysBody__64901f89:before {
  line-height: 4px;
}
.calendar__74dcdc17 {
  background: var(--triplex-Calendar-Background-13-0-2);
  border-radius: 8px;
  box-sizing: initial;
  padding: 8px 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 180px;
}
.calendar__74dcdc17.adaptive__241a0909 {
  padding: 20px;
  width: auto;
}
.calendar__74dcdc17 + .calendar__74dcdc17 {
  margin-top: 20px;
}
.calendarHeader__69091e6d {
  align-items: center;
  color: var(--triplex-Calendar-View_Item_Color_Default-13-0-2);
  display: flex;
  font-size: 14px;
  font-weight: 400;
  height: 28px;
  justify-content: space-between;
  line-height: 20px;
}
.button__d8292fc4.tile__e7c5c168 {
  background: var(--triplex-Button-Tile_Background_Default-13-0-2);
  background-clip: initial;
  border-radius: 16px;
  min-height: 48px;
  min-width: 48px;
  padding: 8px;
}
.button__d8292fc4.tile__e7c5c168 .content__a19ab033 {
  vertical-align: middle;
}
.button__d8292fc4.tile__e7c5c168:hover {
  background: var(--triplex-Button-Tile_Background_Hover-13-0-2);
}
.button__d8292fc4.tile__e7c5c168.expanded__d4c0ce23,
.button__d8292fc4.tile__e7c5c168:active {
  background: var(--triplex-Button-Tile_Background_Active-13-0-2);
}
.button__d8292fc4.tile__e7c5c168:focus-visible {
  box-shadow: var(--triplex-Button-Tile_Shadow_Focus-13-0-2);
}
.button__d8292fc4.tile__e7c5c168:disabled {
  background: var(--triplex-Button-Tile_Background_Disabled-13-0-2);
}
.button__d8292fc4.secondary__928d2356 {
  background: var(--triplex-Button-Secondary_Background_Default-13-0-2);
  box-shadow: var(--triplex-Button-Secondary_Shadow_Default-13-0-2);
  color: var(--triplex-Button-Secondary_Color_Default-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: none;
}
.button__d8292fc4.secondary__928d2356 .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Secondary_Caret_Color_Default-13-0-2);
}
.button__d8292fc4.secondary__928d2356.MD__d5c5735d {
  border-radius: 16px;
  height: 32px;
  min-width: 96px;
  padding: 8px 24px;
}
.button__d8292fc4.secondary__928d2356.SM__c3ac4b09 {
  border-radius: 14px;
  height: 28px;
  min-width: 80px;
  padding: 6px 16px;
}
.button__d8292fc4.secondary__928d2356.LG__d4f64464 {
  border-radius: 24px;
  height: 48px;
  min-width: 96px;
  padding: 16px 28px;
}
.button__d8292fc4.secondary__928d2356:hover {
  background: var(--triplex-Button-Secondary_Background_Hover-13-0-2);
  box-shadow: var(--triplex-Button-Secondary_Shadow_Hover-13-0-2);
  color: var(--triplex-Button-Secondary_Color_Hover-13-0-2);
}
.button__d8292fc4.secondary__928d2356:hover .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Secondary_Caret_Color_Hover-13-0-2);
}
.button__d8292fc4.secondary__928d2356.expanded__d4c0ce23,
.button__d8292fc4.secondary__928d2356:active {
  background: var(--triplex-Button-Secondary_Background_Active-13-0-2);
  box-shadow: var(--triplex-Button-Secondary_Shadow_Active-13-0-2);
  color: var(--triplex-Button-Secondary_Color_Active-13-0-2);
}
.button__d8292fc4.secondary__928d2356.expanded__d4c0ce23 .caretIcon__481a1fab path,
.button__d8292fc4.secondary__928d2356:active .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Secondary_Caret_Color_Active-13-0-2);
}
.button__d8292fc4.secondary__928d2356:focus-visible {
  box-shadow: var(--triplex-Button-Secondary_Shadow_Focus-13-0-2);
}
.button__d8292fc4.secondary__928d2356:disabled {
  background: var(--triplex-Button-Secondary_Background_Disabled-13-0-2);
  box-shadow: var(--triplex-Button-Secondary_Shadow_Disabled-13-0-2);
  color: var(--triplex-Button-Secondary_Color_Disabled-13-0-2);
}
.button__d8292fc4.secondary__928d2356:disabled .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Secondary_Caret_Color_Disabled-13-0-2);
}
.button__d8292fc4.link__390baaec {
  background: transparent;
  color: #1358bf;
  color: var(--triplex-Button-Link_Color_Default-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
}
.button__d8292fc4.link__390baaec.MD__d5c5735d {
  height: 32px;
  min-width: 0;
  padding: 6px 2px;
}
.button__d8292fc4.link__390baaec.SM__c3ac4b09 {
  height: 28px;
  min-width: 0;
  padding: 4px 2px;
}
.button__d8292fc4.link__390baaec.LG__d4f64464 {
  height: 48px;
  min-width: 0;
  padding: 14px 2px;
}
.button__d8292fc4.link__390baaec:hover {
  color: var(--triplex-Button-Link_Color_Hover-13-0-2);
}
.button__d8292fc4.link__390baaec:active {
  color: var(--triplex-Button-Link_Color_Active-13-0-2);
}
.button__d8292fc4.link__390baaec:focus-visible {
  box-shadow: var(--triplex-Button-Link_Shadow_Focus-13-0-2);
}
.button__d8292fc4.link__390baaec:disabled {
  color: var(--triplex-Button-Link_Color_Disabled-13-0-2);
}
.buttonIcon__5746cc80 {
  background: transparent;
  border: none;
  font-size: 0;
  line-height: 0;
  outline: none;
  padding: 0;
  position: relative;
  vertical-align: top;
}
.buttonIcon__5746cc80:enabled {
  cursor: pointer;
}
.buttonIcon__5746cc80.circle__69f50ff8 {
  border-radius: 50%;
}
.buttonIcon__5746cc80.squircle__a0426816 {
  border-radius: 4px;
}
.buttonIcon__5746cc80:focus-visible {
  box-shadow: var(--triplex-Button-Icon_Shadow_Focus-13-0-2);
}
.button__d8292fc4.general__a5c885ea {
  background: var(--triplex-Button-General_Background_Default-13-0-2);
  color: var(--triplex-Button-General_Color_Default-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-transform: none;
}
.button__d8292fc4.general__a5c885ea .caretIcon__481a1fab path {
  fill: var(--triplex-Button-General_Caret_Color_Default-13-0-2);
}
.button__d8292fc4.general__a5c885ea.MD__d5c5735d {
  border-radius: 16px;
  height: 32px;
  min-width: 96px;
  padding: 8px 24px;
}
.button__d8292fc4.general__a5c885ea.SM__c3ac4b09 {
  border-radius: 14px;
  height: 28px;
  min-width: 80px;
  padding: 6px 16px;
}
.button__d8292fc4.general__a5c885ea.LG__d4f64464 {
  border-radius: 24px;
  height: 48px;
  min-width: 96px;
  padding: 16px 28px;
}
.button__d8292fc4.general__a5c885ea:hover {
  background: var(--triplex-Button-General_Background_Hover-13-0-2);
  color: var(--triplex-Button-General_Color_Hover-13-0-2);
}
.button__d8292fc4.general__a5c885ea.expanded__d4c0ce23,
.button__d8292fc4.general__a5c885ea:active {
  background: var(--triplex-Button-General_Background_Active-13-0-2);
  color: var(--triplex-Button-General_Color_Active-13-0-2);
}
.button__d8292fc4.general__a5c885ea:focus-visible {
  box-shadow: var(--triplex-Button-General_Shadow_Focus-13-0-2);
}
.button__d8292fc4.general__a5c885ea:disabled {
  background: var(--triplex-Button-General_Background_Disabled-13-0-2);
  color: var(--triplex-Button-General_Color_Disabled-13-0-2);
}
.button__d8292fc4.general__a5c885ea:disabled .caretIcon__481a1fab path {
  fill: var(--triplex-Button-General_Caret_Color_Disabled-13-0-2);
}
.globalButtonDropdownExtended__434de4f1 {
  display: inline-block;
  line-height: 0;
  position: relative;
  vertical-align: top;
}
.globalButtonDropdownExtended__434de4f1 .buttonDropdownExtendedBlock__bf1499b9 {
  margin-top: 4px;
  padding: 4px;
  right: 0;
}
.buttonDropdown__33a46834.block__b7950c8c {
  display: block;
}
.buttonDropdown__33a46834 + .buttonDropdown__33a46834:not(.block__b7950c8c),
.buttonDropdown__33a46834 + .button__d8292fc4:not(.block__b7950c8c) {
  margin-left: 16px;
}
.buttonDropdown__33a46834 .buttonDropdownTarget__24f667e7 .caretIcon__481a1fab {
  left: 4px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.buttonDropdown__33a46834 .buttonDropdownTarget__24f667e7.active__41b2ea85 .caretIcon__481a1fab {
  transform: rotate(-180deg);
}
.buttonDropdown__33a46834 .buttonDropdownMenuItem__acb90594 {
  overflow: hidden;
  text-overflow: ellipsis;
}
.button__d8292fc4.dots__09153ca8 {
  background: var(--triplex-Button-Dots_Background_Default-13-0-2);
  box-shadow: var(--triplex-Button-Dots_Shadow_Default-13-0-2);
}
.button__d8292fc4.dots__09153ca8 .dotsIcon__21d83eef path {
  fill: var(--triplex-Button-Dots_Color_Default-13-0-2);
}
.button__d8292fc4.dots__09153ca8.MD__d5c5735d {
  border-radius: 16px;
  height: 32px;
  min-width: 32px;
  padding: 8px;
}
.button__d8292fc4.dots__09153ca8.SM__c3ac4b09 {
  border-radius: 14px;
  height: 28px;
  min-width: 28px;
  padding: 6px;
}
.button__d8292fc4.dots__09153ca8.LG__d4f64464 {
  border-radius: 24px;
  height: 48px;
  min-width: 48px;
  padding: 16px;
}
.button__d8292fc4.dots__09153ca8:hover {
  background: var(--triplex-Button-Dots_Background_Hover-13-0-2);
  box-shadow: var(--triplex-Button-Dots_Shadow_Hover-13-0-2);
}
.button__d8292fc4.dots__09153ca8:hover .dotsIcon__21d83eef path {
  fill: var(--triplex-Button-Dots_Color_Hover-13-0-2);
}
.button__d8292fc4.dots__09153ca8.expanded__d4c0ce23,
.button__d8292fc4.dots__09153ca8:active {
  background: var(--triplex-Button-Dots_Background_Active-13-0-2);
  box-shadow: var(--triplex-Button-Dots_Shadow_Active-13-0-2);
}
.button__d8292fc4.dots__09153ca8.expanded__d4c0ce23 .dotsIcon__21d83eef path,
.button__d8292fc4.dots__09153ca8:active .dotsIcon__21d83eef path {
  fill: var(--triplex-Button-Dots_Color_Active-13-0-2);
}
.button__d8292fc4.dots__09153ca8:focus-visible {
  box-shadow: var(--triplex-Button-Dots_Shadow_Focus-13-0-2);
}
.button__d8292fc4.dots__09153ca8:disabled {
  background: var(--triplex-Button-Dots_Background_Disabled-13-0-2);
  box-shadow: var(--triplex-Button-Dots_Shadow_Disabled-13-0-2);
}
.button__d8292fc4.dots__09153ca8:disabled .dotsIcon__21d83eef path {
  fill: var(--triplex-Button-Dots_Color_Disabled-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc {
  background: var(--triplex-Button-Danger_Background_Default-13-0-2);
  color: var(--triplex-Button-Danger_Color_Default-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-transform: none;
}
.button__d8292fc4.danger__5b0fa5fc .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Danger_Caret_Color_Default-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc.MD__d5c5735d {
  border-radius: 16px;
  height: 32px;
  min-width: 96px;
  padding: 8px 24px;
}
.button__d8292fc4.danger__5b0fa5fc.SM__c3ac4b09 {
  border-radius: 14px;
  height: 28px;
  min-width: 80px;
  padding: 6px 16px;
}
.button__d8292fc4.danger__5b0fa5fc.LG__d4f64464 {
  border-radius: 24px;
  height: 48px;
  min-width: 96px;
  padding: 16px 28px;
}
.button__d8292fc4.danger__5b0fa5fc:hover {
  background: var(--triplex-Button-Danger_Background_Hover-13-0-2);
  color: var(--triplex-Button-Danger_Color_Hover-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc.expanded__d4c0ce23,
.button__d8292fc4.danger__5b0fa5fc:active {
  background: var(--triplex-Button-Danger_Background_Active-13-0-2);
  color: var(--triplex-Button-Danger_Color_Active-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc:focus-visible {
  box-shadow: var(--triplex-Button-Danger_Shadow_Focus-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc:disabled {
  background: var(--triplex-Button-Danger_Background_Disabled-13-0-2);
  color: var(--triplex-Button-Danger_Color_Disabled-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc:disabled .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Danger_Caret_Color_Disabled-13-0-2);
}
.button__d8292fc4 {
  background-clip: padding-box;
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  position: relative;
  vertical-align: top;
}
.button__d8292fc4::-moz-focus-inner {
  border: none;
  padding: 0;
}
.button__d8292fc4:disabled {
  cursor: default;
}
.button__d8292fc4:disabled * {
  pointer-events: none;
}
.button__d8292fc4 + .buttonDropdown__33a46834:not(.block__b7950c8c),
.button__d8292fc4 + .button__d8292fc4:not(.block__b7950c8c) {
  margin-left: 16px;
}
.button__d8292fc4 .content__a19ab033 {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  white-space: nowrap;
}
.button__d8292fc4.block__b7950c8c {
  display: block;
  width: 100%;
}
.button__d8292fc4.loading__afb218f7 {
  pointer-events: none;
}
.button__d8292fc4.loading__afb218f7 .content__a19ab033 {
  visibility: hidden;
}
.button__d8292fc4 .spinner__fb6550aa {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.body__61d397ad {
  display: flex;
  padding: 24px 32px;
  position: relative;
}
.body__61d397ad .bodyInner__5c8a7d0f {
  flex-grow: 1;
  position: relative;
  width: 100%;
}
.body__61d397ad.withWhiteBackground__8d8c41b4 {
  background: var(--triplex-Body-Background_White-13-0-2);
}
.body__61d397ad.withGrayBackground__59953c9d {
  background: var(--triplex-Body-Background_Gray-13-0-2);
}
.body__61d397ad.withDarkGrayBackground__67db3037 {
  background: var(--triplex-Body-Background_Darkgray-13-0-2);
}
@media (max-width: 767px) {
  .body__61d397ad {
    overflow-x: auto;
    padding: 16px;
  }
}
.amountInput__366194a2 {
  display: flex;
}
.amountInput__366194a2 input {
  text-align: right;
}
.amountInput__366194a2.withCurrency__859206ae input {
  border-bottom-right-radius: 0;
  border-right: none;
  border-top-right-radius: 0;
  padding-right: 8px;
}
.amountInput__366194a2 :focus + .currency__ac92e40a {
  border-color: var(--triplex-Input-BorderColor_Focus-13-0-2);
}
.amountInput__366194a2.filled__9ef76b46 .currency__ac92e40a {
  color: var(--triplex-Input-Color_Default-13-0-2);
}
.amountInput__366194a2.disabled__67f598de .currency__ac92e40a {
  background-color: var(--triplex-Input-Background_Disabled-13-0-2);
  border-color: var(--triplex-Input-BorderColor_Disabled-13-0-2);
  color: var(--triplex-Input-Color_Disabled-13-0-2);
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.amountInput__366194a2.error__6f130e2d .currency__ac92e40a {
  border-color: var(--triplex-Input-BorderColor_Error-13-0-2);
}
.currency__ac92e40a {
  background-color: var(--triplex-Input-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Input-BorderColor_Default-13-0-2);
  border-bottom-right-radius: 8px;
  border-left-width: 0;
  border-top-right-radius: 8px;
  box-sizing: border-box;
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  font-size: 14px;
  height: 32px;
  line-height: normal;
  padding-bottom: 7px;
  padding-right: 11px;
  padding-top: 7px;
  white-space: nowrap;
}
.grouped__fb2a46af {
  flex: 1;
}
.grouped__fb2a46af:not(:first-child) {
  margin-left: -1px;
}
.grouped__fb2a46af .left__7740f24b,
.grouped__fb2a46af .left__7740f24b + .currency__ac92e40a {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__fb2a46af .intermediate__d88a6113,
.grouped__fb2a46af .intermediate__d88a6113 + .currency__ac92e40a {
  border-radius: 0;
}
.grouped__fb2a46af .right__898c146b,
.grouped__fb2a46af .right__898c146b + .currency__ac92e40a {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__fb2a46af.error__6f130e2d input,
.grouped__fb2a46af.error__6f130e2d input + .currency__ac92e40a {
  z-index: 1;
}
.grouped__fb2a46af input:focus,
.grouped__fb2a46af input:focus + .currency__ac92e40a {
  z-index: 2;
}
.amountCurrencySelect__3413f70f {
  align-items: center;
  display: flex;
}
.amountCurrencySelect__3413f70f input {
  border-radius: 8px 0 0 8px;
  padding-right: 12px;
  text-align: right;
}
.amountCurrencySelect__3413f70f .currencySelectExtendedTarget__fda34b83 {
  border-radius: 0 8px 8px 0;
}
.amountCurrencySelect__3413f70f .currencySelectExtendedTargetOpened__38459297 .currencyIcon__90b47359 .service-fill,
.amountCurrencySelect__3413f70f .currencySelectExtendedTarget__fda34b83:focus .currencyIcon__90b47359 .service-fill {
  fill: var(--triplex-Neutral-900-13-0-2);
}
.amountCurrencySelect__3413f70f .currencySelectExtended__77c36055 {
  flex: 0 0 86px;
  margin-left: -1px;
  max-width: 86px;
  position: relative;
}
.amountCurrencySelect__3413f70f .currencySelectExtendedDropdownListItem__606594fd {
  overflow: hidden;
  text-overflow: ellipsis;
}
.amountCurrencySelect__3413f70f .currencySelectExtended__77c36055:focus,
.amountCurrencySelect__3413f70f input:focus {
  z-index: 2;
}
.amountCurrencySelect__3413f70f .currencyIcon__90b47359 {
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
}
.amountAdaptive__692ad67d {
  font-size: 10px;
  line-height: 12px;
}
.alertProcess__e0899961 {
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  color: #1f1f22;
  color: var(--triplex-AlertProcess-Color-13-0-2);
  display: flex;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 15px;
  text-transform: none;
}
.alertProcess__e0899961 .themeIcon__21fe3228 {
  box-sizing: border-box;
  height: 20px;
  padding-top: 2px;
  width: 20px;
}
.alertProcess__e0899961.alertTypeError__d9965342 {
  background: var(--triplex-AlertProcess-Error_Background-13-0-2);
  border-color: var(--triplex-AlertProcess-Error_Border_Color-13-0-2);
}
.alertProcess__e0899961.alertTypeInfo__966b40c3 {
  background: var(--triplex-AlertProcess-Info_Background-13-0-2);
  border-color: var(--triplex-AlertProcess-Info_Border_Color-13-0-2);
}
.alertProcess__e0899961.alertTypeWarning__23a0382f {
  background: var(--triplex-AlertProcess-Warning_Background-13-0-2);
  border-color: var(--triplex-AlertProcess-Warning_Border_Color-13-0-2);
}
.alertProcess__e0899961.alertTypeFeature__87175c9a {
  background: var(--triplex-AlertProcess-Feature_Background-13-0-2);
  border-color: var(--triplex-AlertProcess-Feature_Border_Color-13-0-2);
}
.alertProcess__e0899961.alertTypeFeature__87175c9a .themeIcon__21fe3228 {
  padding-top: 0;
}
.alertProcess__e0899961 .alertProcessContentBlock__96dd9476 {
  flex: 1;
  margin-left: 8px;
}
.alertProcess__e0899961 .alertProcessContentBlock__96dd9476 .alertProcessContentHeader__5bc26a52 {
  color: var(--triplex-AlertProcess-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 8px;
  text-transform: none;
}
.alertProcess__e0899961 .closeButton__c68b3898 {
  height: 16px;
  margin-left: 8px;
}
.alertContext__c0a26a53 {
  display: flex;
  font-size: 12px;
  line-height: 16px;
}
.alertContext__c0a26a53 > svg {
  flex-shrink: 0;
}
.alertContext__c0a26a53 .alertContextText__86b3adad {
  margin-left: 4px;
}
.alertContext__c0a26a53.alertTypeError__d9965342 .alertContextText__86b3adad {
  color: var(--triplex-AlertContext-Error_Color-13-0-2);
}
.alertContext__c0a26a53.alertTypeInfo__966b40c3 .alertContextText__86b3adad {
  color: var(--triplex-AlertContext-Info_Color-13-0-2);
}
.alertContext__c0a26a53.alertTypeWarning__23a0382f .alertContextText__86b3adad {
  color: var(--triplex-AlertContext-Warning_Color-13-0-2);
}
.alertContext__c0a26a53.alertTypeSystem__49cb4889 .alertContextText__86b3adad {
  color: var(--triplex-AlertContext-System_Color-13-0-2);
}
.accordionView__81a4c186 {
  background: var(--triplex-AccordionView-Background-13-0-2);
  border-radius: 16px;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964 {
  border: 1px solid var(--triplex-AccordionView-BorderColor_Default-13-0-2);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  outline: none;
  padding: 19px 31px;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964 .accordionViewHeader__468d9d64 {
  color: #1f1f22;
  color: var(--triplex-AccordionView-Header_Color-13-0-2);
  flex-grow: 1;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964 .caretIcon__db4cb73e {
  flex-shrink: 0;
  margin: 4px 0 4px 20px;
  transition: transform 0.3s ease-in-out;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964:not(.focusedByClick__31cadfd0):focus {
  border-color: var(--triplex-AccordionView-BorderColor_Focus-13-0-2);
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964.animating__07137cd6,
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964.opened__40cd46e1 {
  border-radius: 16px 16px 0 0;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964.animating__07137cd6 .caretIcon__db4cb73e,
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964.opened__40cd46e1 .caretIcon__db4cb73e {
  transform: rotate(-180deg);
}
.accordionView__81a4c186 .accordionViewBody__956f1669 {
  padding: 24px 31px 23px;
}
.accordionView__81a4c186 .accordionViewContent__b113b3a2 {
  box-sizing: initial;
  visibility: hidden;
}
.accordionView__81a4c186 .accordionViewContent__b113b3a2.globalExpandAnimationAnimating__3d405c4a,
.accordionView__81a4c186 .accordionViewContent__b113b3a2.globalExpandAnimationOpened__f8561d64 {
  border: 1px solid var(--triplex-AccordionView-BorderColor_Default-13-0-2);
  border-radius: 0 0 16px 16px;
  border-top: none;
  visibility: visible;
}
@media (max-width: 767px) {
  .accordionView__81a4c186 .accordionViewBody__956f1669,
  .accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964 {
    padding: 15px;
  }
}
.accordion__ba03d112 {
  margin: 0;
  padding: 0;
}
.accordion__ba03d112 .item__eb866aeb {
  background: var(--triplex-AccordionForm-Background_Default-13-0-2);
  border-radius: 16px;
  list-style-type: none;
  position: relative;
}
.accordion__ba03d112 .item__eb866aeb h1,
.accordion__ba03d112 .item__eb866aeb h2,
.accordion__ba03d112 .item__eb866aeb h3,
.accordion__ba03d112 .item__eb866aeb h4,
.accordion__ba03d112 .item__eb866aeb h5,
.accordion__ba03d112 .item__eb866aeb h6 {
  margin: 0;
}
.accordion__ba03d112 .item__eb866aeb + .item__eb866aeb {
  margin-top: 16px;
}
.accordion__ba03d112 .item__eb866aeb .header__b3acee2f {
  background-color: var(--triplex-AccordionForm-Background_Default-13-0-2);
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  margin: 0;
  outline: none;
  padding: 19px 31px;
  text-align: left;
  width: 100%;
}
.accordion__ba03d112 .item__eb866aeb .header__b3acee2f:hover {
  background-color: var(--triplex-AccordionForm-Background_Hover-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .header__b3acee2f .buttonContent__7a02cb22 {
  display: flex;
  padding: 0;
  position: relative;
  width: 100%;
}
.accordion__ba03d112 .item__eb866aeb:hover,
.accordion__ba03d112 .item__eb866aeb:hover .header__b3acee2f {
  background-color: var(--triplex-AccordionForm-Background_Hover-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .body__652ed661 {
  border-left: 1px solid transparent;
  border-radius: 0 0 16px 16px;
  border-right: 1px solid transparent;
  display: block;
  padding-left: 79px;
  visibility: hidden;
}
.accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef {
  padding-left: 0;
}
.accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .content__00d28f91,
.accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .footer__580788c0 {
  padding-left: 32px;
}
.accordion__ba03d112 .item__eb866aeb .title__42b635d7 {
  color: #1f1f22;
  color: var(--triplex-AccordionForm-Title_Color_Default-13-0-2);
  flex-grow: 1;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0 12px 0 0;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}
.accordion__ba03d112 .item__eb866aeb .caret__e6348e97 {
  flex-shrink: 0;
  margin: 4px;
  transition: transform 0.3s ease-in-out;
}
.accordion__ba03d112 .item__eb866aeb .step__f070e930 {
  margin: 0 24px 0 0;
}
.accordion__ba03d112 .item__eb866aeb .step__f070e930 > div {
  cursor: pointer;
}
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4 {
  height: 24px;
  top: -8px;
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c {
  bottom: -16px;
  top: 48px;
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4 {
  background-color: var(--triplex-AccordionForm-Step_Line_Default-13-0-2);
  border-radius: 1px;
  left: 43px;
  position: absolute;
  width: 2px;
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c.success__434f0e08,
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c.wait__49682816,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4.success__434f0e08,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4.wait__49682816 {
  background-color: var(--triplex-AccordionForm-Step_Line_Success-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c.warning__754f3d94,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4.warning__754f3d94 {
  background-color: var(--triplex-AccordionForm-Step_Line_Warning-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c.error__cdce3a6f,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4.error__cdce3a6f {
  background-color: var(--triplex-AccordionForm-Step_Line_Error-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .content__00d28f91 {
  border-top: 1px solid var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
  padding: 24px 31px 24px 0;
}
.accordion__ba03d112 .item__eb866aeb .footer__580788c0 {
  border-top: 1px solid var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
  padding: 18px 31px 17px 0;
  text-align: right;
}
.accordion__ba03d112 .item__eb866aeb .remove__f2582411 {
  position: absolute;
  right: -20px;
  top: 24px;
}
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171 .header__b3acee2f {
  border-radius: 16px 16px 0 0;
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0 .header__b3acee2f {
  cursor: default;
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0 .title__42b635d7 {
  color: var(--triplex-AccordionForm-Title_Color_Disabled-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0 .step__f070e930 > div {
  cursor: default;
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0 .header__b3acee2f,
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171 .header__b3acee2f {
  background-color: var(--triplex-AccordionForm-Background_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026 .header__b3acee2f {
  border-color: var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026 .header__b3acee2f:focus {
  border-color: var(--triplex-AccordionForm-BorderColor_Focus-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0:hover,
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0:hover .header__b3acee2f,
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171:hover,
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171:hover .header__b3acee2f {
  background-color: var(--triplex-AccordionForm-Background_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171 .body__652ed661 {
  border-bottom: 1px solid transparent;
  visibility: visible;
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171 .body__652ed661 {
  border-color: var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171 .header__b3acee2f {
  border-bottom-color: transparent;
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171 .header__b3acee2f:focus {
  border-color: var(--triplex-AccordionForm-BorderColor_Focus-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.focusedByMouse__a2d52ee8 .header__b3acee2f:focus {
  border-color: var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026 .headerFocused__562cd742 + .body__652ed661 .content__00d28f91 {
  border-top-color: transparent;
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171.focusedByMouse__a2d52ee8 .header__b3acee2f {
  border-bottom-color: transparent;
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171.focusedByMouse__a2d52ee8 .headerFocused__562cd742 + .body__652ed661 .content__00d28f91 {
  border-top-color: var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171 .caret__e6348e97 {
  transform: rotate(-180deg);
}
.accordion__ba03d112.single__099f35ae .item__eb866aeb .body__652ed661 {
  padding-left: 0;
}
.accordion__ba03d112.single__099f35ae .item__eb866aeb .content__00d28f91,
.accordion__ba03d112.single__099f35ae .item__eb866aeb .footer__580788c0 {
  padding-left: 32px;
}
@media (max-width: 767px) {
  .accordion__ba03d112 .item__eb866aeb .header__b3acee2f {
    padding: 16px;
  }
  .accordion__ba03d112 .item__eb866aeb .body__652ed661,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef {
    padding-left: 0;
  }
  .accordion__ba03d112 .item__eb866aeb .body__652ed661 .content__00d28f91,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .content__00d28f91 {
    border-top: none;
    padding: 0 16px 16px;
  }
  .accordion__ba03d112 .item__eb866aeb .body__652ed661 .footer__580788c0,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .footer__580788c0 {
    border-top: none;
    margin-left: -16px;
    margin-top: -16px;
    padding: 0 16px 16px;
    text-align: left;
  }
  .accordion__ba03d112 .item__eb866aeb .body__652ed661 .footer__580788c0 > .globalButtonDropdownExtended__434de4f1,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661 .footer__580788c0 > button,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .footer__580788c0 > .globalButtonDropdownExtended__434de4f1,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .footer__580788c0 > button {
    margin-left: 16px;
    margin-top: 16px;
  }
  .accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c,
  .accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4 {
    display: none;
  }
}

.Tabs {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  padding: 0;
}
.Tabs_vertical {
  flex-direction: column;
}
.TabWrapper {
  align-items: center;
  box-sizing: content-box;
  color: #1358bf;
  display: flex;
  margin-right: 24px;
  min-height: 26px;
  padding: 0;
}
.TabWrapper:hover {
  cursor: pointer;
}
.TabWrapper-Badge {
  align-items: center;
  background-color: #1358bf;
  border-radius: 24px;
  color: #fff;
  display: flex;
  font-family: SB Sans Text;
  font-size: 16px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  height: 16px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 20px;
  margin-left: 4px;
  min-width: 8px;
  padding: 0 4px;
}
.TabWrapper_selected {
  border-bottom: 2px solid #001f4a;
  color: #001f4a;
}
.TabWrapper_selected .TabWrapper-Badge {
  background-color: #b4bac4;
}
.Tabs_vertical .TabWrapper {
  background-color: #f9fafc;
  border-bottom: 0;
  border-radius: 8px;
  margin-bottom: 8px;
  margin-right: 0;
  padding: 8px 16px;
  width: 100%;
}
.Tabs_vertical .TabWrapper:last-child {
  margin-bottom: 0;
}
.Tabs_vertical .TabWrapper.TabWrapper_selected {
  background-color: #fff;
  border-bottom: 0;
}
.Tab {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.Tab-Label {
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
}
.Tab:last-child {
  margin-right: 0;
}
.Tab_vertical {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.TabWrapperVariant {
  align-items: center;
  box-sizing: content-box;
  color: #1358bf;
  cursor: default;
  display: flex;
  margin-right: 0;
  min-height: 26px;
  padding: 0;
  position: relative;
}
.TabWrapperVariant:after {
  border-color: currentcolor transparent transparent;
  border-radius: 2px 2px 0 0;
  border-top: 4px solid transparent;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  transition: border-color 0.5s;
  width: 100%;
}
.TabWrapperVariant:not(.TabWrapperVariant_selected):hover {
  cursor: pointer;
}
.TabWrapperVariant:not(.TabWrapperVariant_selected):hover:after {
  border-left-color: #21a19a;
  border-right-color: #21a19a;
  border-top-color: #21a19a;
}
.TabWrapperVariant-Badge {
  background-color: #f90;
  border-radius: 50%;
  height: 8px;
  position: absolute;
  right: 4px;
  top: 8px;
  width: 8px;
}
.TabWrapperVariant_selected {
  color: #1f1f22;
}
.TabWrapperVariant_selected:after {
  border-left-color: #005e7f;
  border-right-color: #005e7f;
  border-top-color: #005e7f;
}
.TabWrapperVariant .Tab {
  color: #1f1f22;
  padding: 8px 16px 12px;
  position: relative;
}
.TabWrapperVariant .Tab-Label {
  font-size: 14px;
  font-weight: 400;
}
.Button,
.TabWrapperVariant .Tab-Label {
  font-family: SB Sans Interface;
  font-style: normal;
  letter-spacing: 0;
  line-height: 20px;
}
.Button {
  align-items: center;
  background-color: #0c2e67;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  outline: transparent;
  padding: 15px;
  transition: background-color 0.15s ease-in, color 0.15s ease-in, box-shadow 0.15s ease-in;
}
.Button circle,
.Button line,
.Button path,
.Button rect {
  transition: fill 0.15s ease-in, stroke 0.15s ease-in;
}
.Button-size-medium {
  height: 56px;
  padding: 0 24px;
}
.Button-size-small {
  height: 40px;
  padding: 0 16px;
}
.Button .Icon {
  margin: 0 8px 0 0;
}
.Button .Icon-IconSize__small {
  height: 24px;
  line-height: 24px;
  width: 24px;
}
.Button.IconButton .Icon {
  margin: 0;
}
.Button-theme-Primary {
  background-color: #0c2e67;
  color: #fff;
}
.Button-theme-Primary:hover,
.Button-theme-Primary_selected {
  background-color: #001f4a;
}
.Button-theme-Primary:disabled {
  background-color: #d9dde1;
}
.Button-theme-Ghost {
  background-color: transparent;
  color: #1f1f22;
}
.Button-theme-Ghost:hover,
.Button-theme-Ghost_selected {
  background-color: #f9fafc;
}
.Button-theme-Ghost:disabled,
.Button-theme-Simple {
  background-color: transparent;
}
.Button-theme-Simple {
  color: #1f1f22;
}
.Button-theme-Simple:hover,
.Button-theme-Simple_selected {
  background-color: transparent;
}
.Button-theme-Secondary {
  background-color: #dee3ed;
  color: #1f1f22;
}
.Button-theme-Secondary:hover,
.Button-theme-Secondary_selected {
  background-color: #c1cadc;
}
.Button-theme-Secondary:disabled {
  background-color: #d9dde1;
}
.Button-theme-Secondary_selected {
  border: 1px solid #2197cc;
}
.Button-theme-Link {
  background-color: transparent;
  color: #1358bf;
  font-family: SBSansUI;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  padding: 0;
}
.Button-theme-Link:hover,
.Button-theme-Link_selected {
  color: #107f8c;
  text-decoration: underline;
}
.Button-theme-Link:disabled {
  background-color: transparent;
}
.Button__disabled {
  color: #d0d7dd;
}
.Button__disabled:active {
  transform: none;
}
.Button__disabled:hover {
  box-shadow: none;
  cursor: not-allowed;
}
.Icon {
  display: inline-block;
  text-align: center;
}
.Icon svg {
  color: currentColor;
}
.Icon img,
.Icon svg {
  display: inline-block;
  height: 100%;
  width: 100%;
}
.Icon-IconTheme__default,
.Icon-IconTheme__primary,
.Icon-IconTheme__secondary {
  color: #001f4a;
}
.Icon-IconTheme__inverted-default {
  color: #fff;
}
.Icon-IconTheme__red {
  color: #f66868;
}
.Icon-IconTheme__tangerine {
  color: #f59c6e;
}
.Icon-IconTheme__camel {
  color: #d3ab73;
}
.Icon-IconTheme__yellow-green {
  color: #acd667;
}
.Icon-IconTheme__green {
  color: #52be80;
}
.Icon-IconTheme__sky-blue {
  color: #67d5dd;
}
.Icon-IconTheme__blue {
  color: #57b0e2;
}
.Icon-IconTheme__steel-blue {
  color: #6a8fed;
}
.Icon-IconTheme__violet {
  color: #8785f1;
}
.Icon-IconTheme__lilac {
  color: #c989e1;
}
.Icon-IconTheme__pink {
  color: #eb71c9;
}
.Icon-animation-spinner {
  animation: spin 2s linear infinite;
}
.Icon-IconSize__extra-small {
  height: 16px;
  width: 16px;
}
.Icon-IconSize__small {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.Icon-IconSize__medium {
  height: 24px;
  line-height: 24px;
  width: 24px;
}
.Icon-IconSize__large {
  height: 40px;
  width: 40px;
}
.Icon_fitted {
  height: auto;
  width: auto;
}
.Icon_fitted img,
.Icon_fitted svg {
  display: inline-block;
  height: auto;
  width: auto;
}
.Icon_rounded {
  border-radius: 50%;
  overflow: hidden;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.IconBox {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
}
.IconBox-IconTheme__default {
  background-color: #dee3ed;
}
.IconBox-IconTheme__inverted-default {
  background-color: #0c2e67;
}
.IconBox-IconTheme__primary {
  background-color: #001f4a;
}
.IconBox-IconTheme__secondary {
  background-color: #dee3ed;
}
.IconBox-IconTheme__simple {
  background-color: transparent;
}
.IconBox-IconTheme__red {
  background-color: #f66868;
}
.IconBox-IconTheme__tangerine {
  background-color: #f59c6e;
}
.IconBox-IconTheme__camel {
  background-color: #d3ab73;
}
.IconBox-IconTheme__yellow-green {
  background-color: #acd667;
}
.IconBox-IconTheme__green {
  background-color: #52be80;
}
.IconBox-IconTheme__sky-blue {
  background-color: #67d5dd;
}
.IconBox-IconTheme__blue {
  background-color: #57b0e2;
}
.IconBox-IconTheme__steel-blue {
  background-color: #6a8fed;
}
.IconBox-IconTheme__violet {
  background-color: #8785f1;
}
.IconBox-IconTheme__lilac {
  background-color: #c989e1;
}
.IconBox-IconTheme__pink {
  background-color: #eb71c9;
}
.IconBox-IconSize__extra-small,
.IconBox-IconSize__medium {
  height: 40px;
  width: 40px;
}
.IconBox__rounded {
  border-radius: 50%;
}
.IconButton {
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0;
}
.IconButton .Icon {
  margin-left: 0;
}
.IconButton_size_medium {
  padding: 18px 24px;
}
.IconButton_size_medium-fitted {
  height: 40px;
  padding: 0;
  width: 40px;
}
.IconButton_size_small {
  padding: 10px 16px;
}
.IconButton_size_small-fitted {
  height: 30px;
  padding: 0;
  width: 30px;
}
.IconButton_size_large {
  padding: 18px;
}
.IconButton_size_extra-small {
  padding: 0;
}
.IconButton_Text {
  margin: 0 9px 0 0;
  order: 0;
}
.IconButton_Text-right {
  margin: 0 0 0 9px;
  order: 1;
}
.InputWrapper {
  flex-flow: column;
}
.Input,
.InputWrapper {
  display: flex;
  position: relative;
}
.Input {
  color: #001f4a;
  flex-direction: column;
  justify-content: center;
}
.Input input {
  background-color: #fff;
  border: 1px solid #d0d7dd;
  border-radius: 8px;
  box-sizing: border-box;
  color: #1f1f22;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 32px;
  letter-spacing: 0;
  line-height: 22px;
  line-height: 16px;
  outline: none;
  padding: 7px 11px;
}
.Input input:focus {
  border-color: #1f1f22;
}
.Input input::placeholder {
  color: #828c9c;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}
.Input-Title {
  font-size: 14px;
  line-height: 20px;
}
.Input-SubTitle,
.Input-Title {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.Input-SubTitle {
  font-size: 12px;
  line-height: 16px;
}
.Input-IconWrapper {
  margin: 8px 0 4px;
}
.Input-IconWrapper_focusable:focus .Input-Text,
.Input-IconWrapper_focusable:hover .Input-Text {
  border: 1px solid #dee3ed;
}
.Input-Text {
  width: 100%;
}
.Input-Text_isFilled:focus {
  border: 1px solid #dee3ed;
  padding-right: 30px;
}
.Input-Text_isFilled:focus + .Input-PostIcon {
  visibility: visible;
}
.Input-Text_withPreIcon {
  padding-left: 40px !important;
}
.Input-Text:focus {
  border: 1px solid #dee3ed;
}
.Input-PreIcon {
  left: 13px;
  position: absolute;
  top: 50%;
}
.Input-PostIcon {
  background-color: #828c9c;
  bottom: 10px;
  cursor: pointer;
  height: 12px;
  -webkit-mask: url(/b5be8592dce12349f039.svg) no-repeat 50% 50%;
  mask: url(/b5be8592dce12349f039.svg) no-repeat 50% 50%;
  position: absolute;
  right: 12px;
  visibility: hidden;
  width: 12px;
}
.Input-PostIcon:active {
  visibility: visible;
}
.Input_isInvalid .Input-Text,
.Input_isInvalid .Input-Text:hover {
  border: 1px solid #f66868;
}
.Input_isInvalid .Input-Text:focus {
  border: 1px solid #dee3ed;
}
.Input_isInvalid .Input-SubTitle,
.Input_isInvalid .Input-Title {
  color: #f66868;
}
.Input_isDisabled input {
  background-color: #d9dde1;
  color: #b4bac4;
}
.Input_isDisabled input::placeholder {
  color: #828c9c;
}
.SearchInput {
  align-items: center;
  background-color: #f9fafc;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  padding: 18px;
}
.SearchInput input {
  background-color: transparent;
  border: none;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  margin-left: 18px;
  outline: none;
  padding: 0;
  width: 100%;
}
.SearchInput input::placeholder {
  color: #001f4a;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  opacity: 0.5;
}
.InputDateWrapper {
  flex-flow: column;
}
.InputDate,
.InputDateWrapper {
  display: flex;
  position: relative;
}
.InputDate {
  color: #001f4a;
  flex-direction: column;
  justify-content: center;
}
.InputDate .InputDate-Text {
  background-color: #f9fafc;
  border: 1px solid transparent;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  outline: none;
  padding: 9px 12px;
}
.InputDate-Title {
  font-size: 14px;
  line-height: 20px;
}
.InputDate-SubTitle,
.InputDate-Title {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.InputDate-SubTitle {
  font-size: 12px;
  line-height: 16px;
}
.InputDate-IconWrapper {
  margin: 8px 0 4px;
}
.InputDate-IconWrapper_focusable:focus .InputDate-Text,
.InputDate-IconWrapper_focusable:hover .InputDate-Text {
  border: 1px solid #dee3ed;
}
.InputDate-IconWrapper_focusable:hover .InputDate-PostIcon {
  visibility: visible;
}
.InputDate-Text {
  cursor: pointer;
  height: 40px;
  width: 100%;
}
.InputDate-Text_isFilled:focus {
  border: 1px solid #dee3ed;
  padding-right: 30px;
}
.InputDate-Text:focus {
  border: 1px solid #dee3ed;
}
.InputDate-Text_placeHolder {
  color: #828c9c;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}
.InputDate-PreIcon {
  left: 13px;
  position: absolute;
  top: 50%;
}
.InputDate-PostIcon {
  background-color: #828c9c;
  bottom: 18px;
  cursor: pointer;
  height: 12px;
  -webkit-mask: url(/b5be8592dce12349f039.svg) no-repeat 50% 50%;
  mask: url(/b5be8592dce12349f039.svg) no-repeat 50% 50%;
  position: absolute;
  right: 44px;
  visibility: hidden;
  width: 12px;
}
.InputDate-DatePickerIcon {
  bottom: 16px;
  cursor: pointer;
  position: absolute;
  right: 12px;
}
.InputDate-DatePickerIcon path {
  fill: #828c9c;
}
.InputDate_isInvalid .InputDate-Text,
.InputDate_isInvalid .InputDate-Text:hover {
  border: 1px solid #f66868;
}
.InputDate_isInvalid .InputDate-Text:focus {
  border: 1px solid #dee3ed;
}
.InputDate_isInvalid .InputDate-SubTitle,
.InputDate_isInvalid .InputDate-Title {
  color: #f66868;
}
.InputDate_isDisabled .InputDate-Text {
  background-color: #d9dde1;
  color: #b4bac4;
  cursor: default;
}
.InputDate_isDisabled .InputDate-Text::placeholder {
  color: #828c9c;
}
.InputDate_isDisabled .InputDate-DatePickerIcon {
  cursor: default;
}
.TextAreaWrapper {
  display: flex;
  flex-flow: column;
  position: relative;
}
.TextArea {
  width: 100%;
}
.TextArea textarea {
  background-color: #f9fafc;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  margin: 8px 0 4px;
  outline: none;
  padding: 16px;
  resize: none;
}
.TextArea-Title {
  font-size: 14px;
  line-height: 20px;
}
.TextArea-SubTitle,
.TextArea-Title {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.TextArea-SubTitle {
  font-size: 12px;
  line-height: 16px;
}
.TextArea_canResize textarea {
  resize: both;
}
.TextArea_isChat textarea {
  margin: unset;
}
.TextArea_fullWidth textarea {
  width: 100%;
}
.TextArea_invalid textarea {
  border: 1px solid #f66868;
}
.TextArea_invalid textarea:focus {
  border: 1px solid #dee3ed;
}
.TextArea_invalid .TextArea-SubTitle,
.TextArea_invalid .TextArea-Title {
  color: #f66868;
}
.MaskedInputWrapper {
  display: flex;
  flex-flow: column;
  position: relative;
}
.MaskedInput {
  color: #001f4a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.MaskedInput input {
  background-color: #fff;
  border: 1px solid #d0d7dd;
  border-radius: 8px;
  box-sizing: border-box;
  color: #1f1f22;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 32px;
  letter-spacing: 0;
  line-height: 22px;
  line-height: 16px;
  outline: none;
  padding: 7px 11px;
}
.MaskedInput input:focus {
  border-color: #1f1f22;
}
.MaskedInput input::placeholder {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}
.MaskedInput-Title {
  font-size: 14px;
  line-height: 20px;
}
.MaskedInput-SubTitle,
.MaskedInput-Title {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.MaskedInput-SubTitle {
  font-size: 12px;
  line-height: 16px;
}
.MaskedInput-IconWrapper {
  margin: 8px 0 4px;
}
.MaskedInput-IconWrapper_focusable:focus .Input-Text,
.MaskedInput-IconWrapper_focusable:hover .Input-Text {
  border: 1px solid #dee3ed;
}
.MaskedInput-Text {
  width: 100%;
}
.MaskedInput-Text_isFilled:focus {
  border: 1px solid #dee3ed;
  padding-right: 30px;
}
.MaskedInput-Text_isFilled:focus + .MaskedInput-PostIcon {
  visibility: visible;
}
.MaskedInput-Text_withPreIcon {
  padding-left: 40px !important;
}
.MaskedInput-Text:focus {
  border: 1px solid #dee3ed;
}
.MaskedInput-PreIcon {
  left: 13px;
  position: absolute;
  top: 50%;
}
.MaskedInput-PostIcon {
  background-color: #828c9c;
  bottom: 14px;
  cursor: pointer;
  height: 12px;
  -webkit-mask: url(/b5be8592dce12349f039.svg) no-repeat 50% 50%;
  mask: url(/b5be8592dce12349f039.svg) no-repeat 50% 50%;
  position: absolute;
  right: 12px;
  visibility: hidden;
  width: 12px;
}
.MaskedInput-PostIcon:active {
  visibility: visible;
}
.MaskedInput_isInvalid .MaskedInput-Text,
.MaskedInput_isInvalid .MaskedInput-Text:focus,
.MaskedInput_isInvalid .MaskedInput-Text:hover {
  border: 1px solid #c11030;
}
.MaskedInput_isInvalid .MaskedInput-SubTitle,
.MaskedInput_isInvalid .MaskedInput-Title {
  color: #f66868;
}
.MaskedInput_isDisabled input {
  background-color: #f2f4f7;
  color: #7d838a;
}
.MaskedInput_isDisabled input::placeholder {
  color: #7d838a;
}
.SearchInputVariant {
  position: relative;
  width: 100%;
}
.SearchInputVariant input {
  background-color: #fff;
  border-radius: 8px;
  color: #1f1f22;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 32px;
  letter-spacing: 0;
  line-height: 20px;
  padding-right: 25px;
}
.SearchInputVariant-Button {
  background: transparent;
  position: absolute;
  right: 8px;
  top: 3px;
}
.SearchInputVariant-Button:hover {
  cursor: pointer;
}
.SearchInputVariant-Button:hover svg path {
  fill: #1f1f22;
}
.SearchInputVariant-Button svg {
  margin-top: 5px;
}
.TableUI {
  border: none;
  border-collapse: separate;
  border-spacing: 0;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 100%;
  letter-spacing: 0;
  line-height: 20px;
  width: 100%;
}
.TableUI-TR:nth-child(2n) {
  background-color: #fff;
}
.TableUI-TR:nth-child(odd) {
  background-color: #f9fafc;
}
.TableUI-TR__hover {
  cursor: default;
}
.TableUI-TR__hover:hover {
  background-color: #f3f5f9;
}
.TableUI-THead {
  color: #828c9c;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 18px;
}
.TableUI-THead .TableUI-TR {
  background-color: transparent;
}
.TableUI-TH {
  padding: 20px 16px;
}
.TableUI-TD {
  padding: 16px;
}
.TableUI-TD_width-auto,
.TableUI-TH_width-auto {
  width: auto;
}
.TableUI-TD_width-5,
.TableUI-TH_width-5 {
  width: 5%;
}
.TableUI-TD_width-10,
.TableUI-TH_width-10 {
  width: 10%;
}
.TableUI-TD_width-15,
.TableUI-TH_width-15 {
  width: 15%;
}
.TableUI-TD_width-20,
.TableUI-TH_width-20 {
  width: 20%;
}
.TableUI-TD_width-25,
.TableUI-TH_width-25 {
  width: 25%;
}
.TableUI-TD_width-30,
.TableUI-TD_width-35,
.TableUI-TH_width-30,
.TableUI-TH_width-35 {
  width: 35%;
}
.TableUI-TD_width-40,
.TableUI-TH_width-40 {
  width: 40%;
}
.TableUI-TD_width-45,
.TableUI-TH_width-45 {
  width: 45%;
}
.TableUI-TD_width-50,
.TableUI-TH_width-50 {
  width: 50%;
}
.TableUI-TD_width-55,
.TableUI-TH_width-55 {
  width: 55%;
}
.TableUI-TD_width-60,
.TableUI-TH_width-60 {
  width: 60%;
}
.TableUI-TD_width-65,
.TableUI-TH_width-65 {
  width: 65%;
}
.TableUI-TD_width-70,
.TableUI-TH_width-70 {
  width: 70%;
}
.TableUI-TD_width-75,
.TableUI-TH_width-75 {
  width: 75%;
}
.TableUI-TD_width-80,
.TableUI-TH_width-80 {
  width: 80;
}
.TableUI-TD_width-85,
.TableUI-TH_width-85 {
  width: 85%;
}
.TableUI-TD_width-90,
.TableUI-TH_width-90 {
  width: 90%;
}
.TableUI-TD_width-95,
.TableUI-TH_width-95 {
  width: 95%;
}
.TableUI-TD_width-100,
.TableUI-TH_width-100 {
  width: 100%;
}
.Pagination {
  align-items: center;
  display: flex;
  flex-grow: 1;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0;
  line-height: 20px;
  margin: 0 5px;
}
.Pagination-ArrowButton {
  height: 32px;
  margin: 0;
  width: 32px;
}
.Pagination-ArrowButton__Left {
  margin-right: 10px;
}
.Pagination-ArrowButton__Left svg {
  margin-right: 3px;
}
.Pagination-ArrowButton__Right {
  margin-left: 10px;
}
.Pagination-ArrowButton__Right svg {
  margin-left: 2px;
}
.Pagination-ArrowButton .Icon svg {
  height: 12px;
  margin-top: 6px;
  width: 7px;
}
.Pagination-ArrowButton:active path {
  fill: none;
  stroke: #fff;
}
.Pagination-ArrowButton__disabled {
  opacity: 0.3;
}
.Pagination-ArrowButton__disabled path {
  stroke: #001f4a;
}
.Pagination-ArrowButton__disabled:active,
.Pagination-ArrowButton__disabled:hover {
  background-color: #7d838a;
}
.Pagination-PageButton,
.Pagination-Space {
  border-radius: 8px;
  color: #001f4a;
  height: 40px;
  line-height: 40px;
  margin: 2px;
  text-align: center;
  width: 40px;
}
.Pagination-PageButtonsGroup {
  display: flex;
}
.Pagination-PageButton {
  background-color: transparent;
  cursor: pointer;
}
.Pagination-PageButton_active {
  background-color: #001f4a;
  color: #fff;
  cursor: default;
}
.Pagination-Space {
  color: #7d838a;
}
:root {
  --triplex-Accent-500-13-0-2: #ffdd64;
  --triplex-Basic-0-13-0-2: transparent;
  --triplex-Basic-100-13-0-2: #fff;
  --triplex-Basic-300-13-0-2: #565b62;
  --triplex-Basic-500-13-0-2: #2d2d30;
  --triplex-Basic-700-13-0-2: #1f1f22;
  --triplex-Basic-900-13-0-2: #181819;
  --triplex-Error-100-13-0-2: #ffe5e8;
  --triplex-Error-300-13-0-2: #ffbdc5;
  --triplex-Error-500-13-0-2: #db1237;
  --triplex-Error-700-13-0-2: #c11030;
  --triplex-Error-900-13-0-2: #a80e2a;
  --triplex-Info-100-13-0-2: #f2f8ff;
  --triplex-Info-300-13-0-2: #93b7ed;
  --triplex-Info-500-13-0-2: #198cfe;
  --triplex-Info-700-13-0-2: #1358bf;
  --triplex-Info-900-13-0-2: #0f5498;
  --triplex-Neutral-100-13-0-2: #f2f4f7;
  --triplex-Neutral-300-13-0-2: #e4e8eb;
  --triplex-Neutral-500-13-0-2: #d0d7dd;
  --triplex-Neutral-700-13-0-2: #b2b8bf;
  --triplex-Neutral-900-13-0-2: #7d838a;
  --triplex-Primary-100-13-0-2: #e5fcf7;
  --triplex-Primary-300-13-0-2: #90d0cc;
  --triplex-Primary-500-13-0-2: #21a19a;
  --triplex-Primary-700-13-0-2: #107f8c;
  --triplex-Primary-900-13-0-2: #005e7f;
  --triplex-Warning-100-13-0-2: #fff5e6;
  --triplex-Warning-300-13-0-2: #ffd9a0;
  --triplex-Warning-500-13-0-2: #ffb13b;
  --triplex-Warning-700-13-0-2: #f90;
  --triplex-Warning-900-13-0-2: #e58a00;
  --triplex-AccordionForm-Background_Default-13-0-2: #f2f4f7;
  --triplex-AccordionForm-Background_Hover-13-0-2: #e4e8eb;
  --triplex-AccordionForm-BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-AccordionForm-BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-AccordionForm-Divider_Color-13-0-2: #d0d7dd;
  --triplex-AccordionForm-Step_Line_Default-13-0-2: #d0d7dd;
  --triplex-AccordionForm-Step_Line_Error-13-0-2: #c11030;
  --triplex-AccordionForm-Step_Line_Success-13-0-2: #107f8c;
  --triplex-AccordionForm-Step_Line_Warning-13-0-2: #f90;
  --triplex-AccordionForm-Title_Color_Default-13-0-2: #1f1f22;
  --triplex-AccordionForm-Title_Color_Disabled-13-0-2: #b2b8bf;
  --triplex-AccordionView-Background-13-0-2: #fff;
  --triplex-AccordionView-BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-AccordionView-BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-AccordionView-Header_Color-13-0-2: #1f1f22;
  --triplex-AlertContext-Error_Color-13-0-2: #c11030;
  --triplex-AlertContext-Info_Color-13-0-2: #1f1f22;
  --triplex-AlertContext-System_Color-13-0-2: #1f1f22;
  --triplex-AlertContext-Warning_Color-13-0-2: #1f1f22;
  --triplex-AlertProcess-Color-13-0-2: #1f1f22;
  --triplex-AlertProcess-Error_Background-13-0-2: #ffe5e8;
  --triplex-AlertProcess-Error_Border_Color-13-0-2: #c11030;
  --triplex-AlertProcess-Feature_Background-13-0-2: #e5fcf7;
  --triplex-AlertProcess-Feature_Border_Color-13-0-2: #21a19a;
  --triplex-AlertProcess-Info_Background-13-0-2: #f2f8ff;
  --triplex-AlertProcess-Info_Border_Color-13-0-2: #1358bf;
  --triplex-AlertProcess-Warning_Background-13-0-2: #fff5e6;
  --triplex-AlertProcess-Warning_Border_Color-13-0-2: #f90;
  --triplex-Backdrop-background-13-0-2: rgba(31, 31, 34, 0.56);
  --triplex-Body-Background_Darkgray-13-0-2: #7d838a;
  --triplex-Body-Background_Gray-13-0-2: #f2f4f7;
  --triplex-Body-Background_White-13-0-2: #fff;
  --triplex-Button-General_Background_Active-13-0-2: #005e7f;
  --triplex-Button-General_Background_Default-13-0-2: #107f8c;
  --triplex-Button-General_Background_Disabled-13-0-2: #90d0cc;
  --triplex-Button-General_Background_Hover-13-0-2: #21a19a;
  --triplex-Button-General_Caret_Color_Default-13-0-2: #fff;
  --triplex-Button-General_Caret_Color_Disabled-13-0-2: #fff;
  --triplex-Button-General_Color_Active-13-0-2: #fff;
  --triplex-Button-General_Color_Default-13-0-2: #fff;
  --triplex-Button-General_Color_Disabled-13-0-2: #fff;
  --triplex-Button-General_Color_Hover-13-0-2: #fff;
  --triplex-Button-General_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64 inset;
  --triplex-Button-Secondary_Background_Active-13-0-2: #d0d7dd;
  --triplex-Button-Secondary_Background_Default-13-0-2: #fff;
  --triplex-Button-Secondary_Background_Disabled-13-0-2: #fff;
  --triplex-Button-Secondary_Background_Hover-13-0-2: #fff;
  --triplex-Button-Secondary_Caret_Color_Active-13-0-2: #1f1f22;
  --triplex-Button-Secondary_Caret_Color_Default-13-0-2: #1f1f22;
  --triplex-Button-Secondary_Caret_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-Button-Secondary_Caret_Color_Hover-13-0-2: #1f1f22;
  --triplex-Button-Secondary_Color_Active-13-0-2: #1f1f22;
  --triplex-Button-Secondary_Color_Default-13-0-2: #1f1f22;
  --triplex-Button-Secondary_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-Button-Secondary_Color_Hover-13-0-2: #1f1f22;
  --triplex-Button-Secondary_Shadow_Active-13-0-2: 0px 0px 0px 1px #d0d7dd inset;
  --triplex-Button-Secondary_Shadow_Default-13-0-2: 0px 0px 0px 1px #d0d7dd inset;
  --triplex-Button-Secondary_Shadow_Disabled-13-0-2: 0px 0px 0px 1px #d0d7dd inset;
  --triplex-Button-Secondary_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64 inset;
  --triplex-Button-Secondary_Shadow_Hover-13-0-2: 0px 0px 0px 1px #1f1f22 inset;
  --triplex-Button-Danger_Background_Active-13-0-2: #a80e2a;
  --triplex-Button-Danger_Background_Default-13-0-2: #c11030;
  --triplex-Button-Danger_Background_Disabled-13-0-2: #ffbdc5;
  --triplex-Button-Danger_Background_Hover-13-0-2: #db1237;
  --triplex-Button-Danger_Caret_Color_Default-13-0-2: #fff;
  --triplex-Button-Danger_Caret_Color_Disabled-13-0-2: #fff;
  --triplex-Button-Danger_Color_Active-13-0-2: #fff;
  --triplex-Button-Danger_Color_Default-13-0-2: #fff;
  --triplex-Button-Danger_Color_Disabled-13-0-2: #fff;
  --triplex-Button-Danger_Color_Hover-13-0-2: #fff;
  --triplex-Button-Danger_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64 inset;
  --triplex-Button-Dots_Background_Active-13-0-2: #d0d7dd;
  --triplex-Button-Dots_Background_Default-13-0-2: #fff;
  --triplex-Button-Dots_Background_Disabled-13-0-2: #fff;
  --triplex-Button-Dots_Background_Hover-13-0-2: #fff;
  --triplex-Button-Dots_Color_Active-13-0-2: #1f1f22;
  --triplex-Button-Dots_Color_Default-13-0-2: #1f1f22;
  --triplex-Button-Dots_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-Button-Dots_Color_Hover-13-0-2: #1f1f22;
  --triplex-Button-Dots_Shadow_Active-13-0-2: 0px 0px 0px 1px #d0d7dd inset;
  --triplex-Button-Dots_Shadow_Default-13-0-2: 0px 0px 0px 1px #d0d7dd inset;
  --triplex-Button-Dots_Shadow_Disabled-13-0-2: 0px 0px 0px 1px #d0d7dd inset;
  --triplex-Button-Dots_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64 inset;
  --triplex-Button-Dots_Shadow_Hover-13-0-2: 0px 0px 0px 1px #1f1f22 inset;
  --triplex-Button-Icon_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64;
  --triplex-Button-Link_Color_Active-13-0-2: #0f5498;
  --triplex-Button-Link_Color_Default-13-0-2: #1358bf;
  --triplex-Button-Link_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-Button-Link_Color_Hover-13-0-2: #107f8c;
  --triplex-Button-Link_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64 inset;
  --triplex-Button-Tile_Background_Active-13-0-2: #e4e8eb;
  --triplex-Button-Tile_Background_Default-13-0-2: #fff;
  --triplex-Button-Tile_Background_Disabled-13-0-2: #fff;
  --triplex-Button-Tile_Background_Hover-13-0-2: #f2f4f7;
  --triplex-Button-Tile_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64 inset;
  --triplex-Calendar-Background-13-0-2: #fff;
  --triplex-Calendar-View_Header_Color-13-0-2: #7d838a;
  --triplex-Calendar-View_Item_Background_Default-13-0-2: transparent;
  --triplex-Calendar-View_Item_Background_Hover-13-0-2: #f2f4f7;
  --triplex-Calendar-View_Item_Background_Range-13-0-2: #f2f4f7;
  --triplex-Calendar-View_Item_Background_Selected_Default-13-0-2: #107f8c;
  --triplex-Calendar-View_Item_Background_Selected_Hover-13-0-2: #21a19a;
  --triplex-Calendar-View_Item_BorderColor_Default-13-0-2: transparent;
  --triplex-Calendar-View_Item_BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-Calendar-View_Item_Color_Default-13-0-2: #1f1f22;
  --triplex-Calendar-View_Item_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-Calendar-View_Item_Color_Muted-13-0-2: #d0d7dd;
  --triplex-Calendar-View_Item_Color_Selected-13-0-2: #fff;
  --triplex-Calendar-View_Item_Mark_Background-13-0-2: #b2b8bf;
  --triplex-Card-Background-13-0-2: #fff;
  --triplex-Card-BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-Card-BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-Card-BorderColor_Hover-13-0-2: #d0d7dd;
  --triplex-Card-BorderColor_Selected-13-0-2: #107f8c;
  --triplex-Card-Shadow_Default-13-0-2: 0 1px 3px 0 rgba(31, 31, 34, 0.25);
  --triplex-Card-Shadow_Hover-13-0-2: 0 2px 7px 0 rgba(31, 31, 34, 0.25);
  --triplex-Checkbox-Background_Checked_Default-13-0-2: #107f8c;
  --triplex-Checkbox-Background_Checked_Hover-13-0-2: #21a19a;
  --triplex-Checkbox-Background_Default-13-0-2: #fff;
  --triplex-Checkbox-Background_Disabled-13-0-2: #f2f4f7;
  --triplex-Checkbox-BorderColor_Checked-13-0-2: #107f8c;
  --triplex-Checkbox-BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-Checkbox-BorderColor_Disabled-13-0-2: #d0d7dd;
  --triplex-Checkbox-BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-Checkbox-BorderColor_Hover-13-0-2: #21a19a;
  --triplex-Checkbox-Checkmark_Fill_Default-13-0-2: #fff;
  --triplex-Checkbox-Checkmark_Fill_Disabled-13-0-2: #d0d7dd;
  --triplex-Checkbox-Color_Default-13-0-2: #1f1f22;
  --triplex-Checkbox-Color_Disabled-13-0-2: #1f1f22;
  --triplex-Chip-Background_Active-13-0-2: #d0d7dd;
  --triplex-Chip-Background_Default-13-0-2: #f2f4f7;
  --triplex-Chip-Background_Disabled-13-0-2: #f2f4f7;
  --triplex-Chip-Background_Hover-13-0-2: #e4e8eb;
  --triplex-Chip-Background_Selected_Active-13-0-2: #7d838a;
  --triplex-Chip-Background_Selected_Default-13-0-2: #1f1f22;
  --triplex-Chip-Background_Selected_Disabled-13-0-2: #1f1f22;
  --triplex-Chip-Background_Selected_Hover-13-0-2: #565b62;
  --triplex-Chip-Color_Active-13-0-2: #1f1f22;
  --triplex-Chip-Color_Default-13-0-2: #1f1f22;
  --triplex-Chip-Color_Disabled-13-0-2: #b2b8bf;
  --triplex-Chip-Color_Hover-13-0-2: #1f1f22;
  --triplex-Chip-Color_Selected_Active-13-0-2: #fff;
  --triplex-Chip-Color_Selected_Default-13-0-2: #fff;
  --triplex-Chip-Color_Selected_Disabled-13-0-2: #565b62;
  --triplex-Chip-Color_Selected_Hover-13-0-2: #fff;
  --triplex-Chip-Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64 inset;
  --triplex-Confirm-Background-13-0-2: #ffe5e8;
  --triplex-Confirm-Shadow-13-0-2: 0 -1px 0 0 #c11030 inset;
  --triplex-Divider-Background-13-0-2: #d0d7dd;
  --triplex-Dropdown-Background-13-0-2: #fff;
  --triplex-Dropdown-Shadow-13-0-2: 0px 2px 7px rgba(31, 31, 34, 0.25);
  --triplex-DropdownList-Background_Active-13-0-2: #f2f4f7;
  --triplex-DropdownList-Background_Default-13-0-2: none;
  --triplex-DropdownList-Background_Selected-13-0-2: #d0d7dd;
  --triplex-DropdownList-Color-13-0-2: #1f1f22;
  --triplex-DropdownMobile-Backdrop-13-0-2: #1f1f22;
  --triplex-DropdownMobile-Border_Color-13-0-2: #d0d7dd;
  --triplex-DropdownMobile-Content_Background-13-0-2: #fff;
  --triplex-DropdownMobile-Footer_Background-13-0-2: #fff;
  --triplex-DropdownMobile-Header_Background-13-0-2: #f2f4f7;
  --triplex-DropdownMobile-Opacity-13-0-2: 0.6;
  --triplex-DropdownMobileList-Active_Background-13-0-2: #f2f4f7;
  --triplex-DropdownMobileList-Selected_Background-13-0-2: #d0d7dd;
  --triplex-Footer-Background-13-0-2: #f2f4f7;
  --triplex-Footer-Color-13-0-2: #1f1f22;
  --triplex-FormField-Description_Color_Default-13-0-2: #565b62;
  --triplex-FormField-Description_Color_Error-13-0-2: #c11030;
  --triplex-FormField-Label_Background-13-0-2: linear-gradient(transparent 8px, #fff 8px 9px, transparent 0);
  --triplex-FormField-Label_Color_Default-13-0-2: #7d838a;
  --triplex-FormField-Label_Color_Disabled-13-0-2: #7d838a;
  --triplex-FormField-Placeholder_Color-13-0-2: #b2b8bf;
  --triplex-FormField-Shadow_Default-13-0-2: 0 0 0 1px #d0d7dd inset;
  --triplex-FormField-Shadow_Disabled-13-0-2: 0 0 0 1px #d0d7dd inset;
  --triplex-FormField-Shadow_Error-13-0-2: 0 0 0 1px #c11030 inset;
  --triplex-FormField-Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64 inset;
  --triplex-Header-Background-13-0-2: #f2f4f7;
  --triplex-Header-Title_Color-13-0-2: #1f1f22;
  --triplex-Header-TitleSubhead_Color-13-0-2: #7d838a;
  --triplex-Input-Background_Default-13-0-2: #fff;
  --triplex-Input-Background_Disabled-13-0-2: #f2f4f7;
  --triplex-Input-BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-Input-BorderColor_Disabled-13-0-2: #d0d7dd;
  --triplex-Input-BorderColor_Error-13-0-2: #c11030;
  --triplex-Input-BorderColor_Focus-13-0-2: #1f1f22;
  --triplex-Input-Caret_Color-13-0-2: #1f1f22;
  --triplex-Input-Color_Default-13-0-2: #1f1f22;
  --triplex-Input-Color_Disabled-13-0-2: #7d838a;
  --triplex-Input-Placeholder_Color-13-0-2: #7d838a;
  --triplex-Label-Code_Color-13-0-2: #b2b8bf;
  --triplex-Label-Color-13-0-2: #1f1f22;
  --triplex-Label-Description_Color-13-0-2: #7d838a;
  --triplex-LightBox-Controls_Background-13-0-2: #565b62;
  --triplex-Link-BorderColor_Default-13-0-2: transparent;
  --triplex-Link-BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-Link-Line_Color_Active-13-0-2: #fff;
  --triplex-Link-Line_Color_Default-13-0-2: #fff;
  --triplex-Link-Line_Color_Hover-13-0-2: #7d838a;
  --triplex-Link-Text_Color_Active-13-0-2: #0f5498;
  --triplex-Link-Text_Color_Default-13-0-2: #1358bf;
  --triplex-Link-Text_Color_Hover-13-0-2: #107f8c;
  --triplex-ListItem-Background-13-0-2: #fff;
  --triplex-ListItem-Background_Selected-13-0-2: #f2f4f7;
  --triplex-ListItemControlsButton-Background-13-0-2: #f2f4f7;
  --triplex-ListItemControlsButton-Color-13-0-2: #1f1f22;
  --triplex-ListMaster-Background-13-0-2: #fff;
  --triplex-ListMaster-Footer_Background-13-0-2: #e4e8eb;
  --triplex-ListMaster-Footer_Color-13-0-2: #1f1f22;
  --triplex-ListMaster-Header_Background-13-0-2: #e4e8eb;
  --triplex-ListMaster-Header_Color-13-0-2: #1f1f22;
  --triplex-Marker-Background_Error-13-0-2: #db1237;
  --triplex-Marker-Background_Success-13-0-2: #21a19a;
  --triplex-Marker-Background_Waiting-13-0-2: #b2b8bf;
  --triplex-Marker-Background_Warning-13-0-2: #f90;
  --triplex-MarkerStatus-Desc_Color-13-0-2: #7d838a;
  --triplex-MarkerStatus-Text_Color-13-0-2: #1f1f22;
  --triplex-Multiselect-Divider_Color-13-0-2: #d0d7dd;
  --triplex-Notification-Background-13-0-2: #fff;
  --triplex-Notification-Color-13-0-2: #1f1f22;
  --triplex-Notification-Shadow-13-0-2: 0px 2px 7px rgba(31, 31, 34, 0.25);
  --triplex-Overlay-maskBackground-13-0-2: hsla(0, 0%, 100%, 0.8);
  --triplex-Pagination-PageButton_Background_Default-13-0-2: transparent;
  --triplex-Pagination-PageButton_Background_Hover-13-0-2: #f2f4f7;
  --triplex-Pagination-PageButton_Background_Selected-13-0-2: #e4e8eb;
  --triplex-Pagination-PageButton_BorderColor_Default-13-0-2: transparent;
  --triplex-Pagination-PageButton_BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-Pagination-PageButton_Color-13-0-2: #1f1f22;
  --triplex-Radio-Background_Checked_Default-13-0-2: #107f8c;
  --triplex-Radio-Background_Checked_Hover-13-0-2: #21a19a;
  --triplex-Radio-Background_Default-13-0-2: #fff;
  --triplex-Radio-Background_Disabled-13-0-2: #f2f4f7;
  --triplex-Radio-BorderColor_Checked-13-0-2: #107f8c;
  --triplex-Radio-BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-Radio-BorderColor_Disabled-13-0-2: #d0d7dd;
  --triplex-Radio-BorderColor_Focused-13-0-2: #ffdd64;
  --triplex-Radio-BorderColor_Hover-13-0-2: #21a19a;
  --triplex-Radio-Color_Default-13-0-2: #1f1f22;
  --triplex-Radio-Color_Disabled-13-0-2: #1f1f22;
  --triplex-Radio-Dot_Default-13-0-2: #fff;
  --triplex-Radio-Dot_Disabled-13-0-2: #d0d7dd;
  --triplex-SMSInput-Refresh_Fill_Empty-13-0-2: #b2b8bf;
  --triplex-SMSInput-Refresh_Fill_Full-13-0-2: #565b62;
  --triplex-SegmentedControl-General_Background_Default-13-0-2: #fff;
  --triplex-SegmentedControl-General_Background_Disabled-13-0-2: #fff;
  --triplex-SegmentedControl-General_Background_Selected_Default-13-0-2: #107f8c;
  --triplex-SegmentedControl-General_Background_Selected_Disabled-13-0-2: #90d0cc;
  --triplex-SegmentedControl-General_Multiple_Background_Selected_Hover-13-0-2: #21a19a;
  --triplex-SegmentedControl-General_BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-SegmentedControl-General_BorderColor_Disabled-13-0-2: #d0d7dd;
  --triplex-SegmentedControl-General_BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-SegmentedControl-General_BorderColor_Hover-13-0-2: #1f1f22;
  --triplex-SegmentedControl-General_BorderColor_Selected_Default-13-0-2: #107f8c;
  --triplex-SegmentedControl-General_BorderColor_Selected_Disabled-13-0-2: #90d0cc;
  --triplex-SegmentedControl-General_Multiple_BorderColor_Selected_Hover-13-0-2: #21a19a;
  --triplex-SegmentedControl-General_Color_Default-13-0-2: #1f1f22;
  --triplex-SegmentedControl-General_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-SegmentedControl-General_Color_Selected_Default-13-0-2: #fff;
  --triplex-SegmentedControl-General_Color_Selected_Disabled-13-0-2: #fff;
  --triplex-SegmentedControl-Secondary_Background_Default-13-0-2: #fff;
  --triplex-SegmentedControl-Secondary_Background_Disabled-13-0-2: #fff;
  --triplex-SegmentedControl-Secondary_Background_Selected_Default-13-0-2: #d0d7dd;
  --triplex-SegmentedControl-Secondary_Background_Selected_Disabled-13-0-2: #f2f4f7;
  --triplex-SegmentedControl-Secondary_Multiple_Background_Selected_Hover-13-0-2: #e4e8eb;
  --triplex-SegmentedControl-Secondary_BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-SegmentedControl-Secondary_BorderColor_Disabled-13-0-2: #e4e8eb;
  --triplex-SegmentedControl-Secondary_BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-SegmentedControl-Secondary_BorderColor_Hover-13-0-2: #1f1f22;
  --triplex-SegmentedControl-Secondary_BorderColor_Selected_Default-13-0-2: #d0d7dd;
  --triplex-SegmentedControl-Secondary_BorderColor_Selected_Disabled-13-0-2: #f2f4f7;
  --triplex-SegmentedControl-Secondary_Multiple_BorderColor_Selected_Hover-13-0-2: #e4e8eb;
  --triplex-SegmentedControl-Secondary_Color_Default-13-0-2: #1f1f22;
  --triplex-SegmentedControl-Secondary_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-SegmentedControl-Secondary_Color_Selected_Default-13-0-2: #565b62;
  --triplex-SegmentedControl-Secondary_Color_Selected_Disabled-13-0-2: #d0d7dd;
  --triplex-Select-Background_Default-13-0-2: #fff;
  --triplex-Select-Background_Disabled-13-0-2: #f2f4f7;
  --triplex-Select-Border_Color_Default-13-0-2: #d0d7dd;
  --triplex-Select-Border_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-Select-Border_Color_Error-13-0-2: #c11030;
  --triplex-Select-Border_Color_Focus-13-0-2: #1f1f22;
  --triplex-Select-Caret_Color_Default-13-0-2: #1f1f22;
  --triplex-Select-Caret_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-Select-Color_Default-13-0-2: #1f1f22;
  --triplex-Select-Color_Disabled-13-0-2: #7d838a;
  --triplex-Select-Color_Placeholder-13-0-2: #7d838a;
  --triplex-Skeleton-BackgroundImage_Dark-13-0-2: linear-gradient(90deg, #f2f4f7, #e4e8eb 71%, #f2f4f7);
  --triplex-Skeleton-BackgroundImage_Light-13-0-2: linear-gradient(90deg, #fff, #e4e8eb 71%, #fff);
  --triplex-Slider-Dot_Background_Default-13-0-2: #107f8c;
  --triplex-Slider-Dot_Background_Disabled-13-0-2: #b2b8bf;
  --triplex-Slider-Dot_Background_Hover-13-0-2: #005e7f;
  --triplex-Slider-Dot_Inner_Background-13-0-2: #fff;
  --triplex-Slider-Mark_Color_Active-13-0-2: #1f1f22;
  --triplex-Slider-Mark_Color_Default-13-0-2: #b2b8bf;
  --triplex-Slider-Mark_Dot_Background_Default-13-0-2: #d0d7dd;
  --triplex-Slider-Mark_Dot_Background_Selected-13-0-2: #107f8c;
  --triplex-Slider-Mark_Dot_Background_Selected_Disabled-13-0-2: #b2b8bf;
  --triplex-Slider-Rail_Background-13-0-2: #d0d7dd;
  --triplex-Slider-Tooltip_Background-13-0-2: #1f1f22;
  --triplex-Slider-Tooltip_Color-13-0-2: #fff;
  --triplex-Slider-Track_Background_Default-13-0-2: #107f8c;
  --triplex-Slider-Track_Background_Disabled-13-0-2: #b2b8bf;
  --triplex-Slider-Track_Background_Hover-13-0-2: #005e7f;
  --triplex-SmallInput-Background-13-0-2: #fff;
  --triplex-Spinner-Text_Color-13-0-2: #1f1f22;
  --triplex-Spoiler-Caret_Color-13-0-2: #1f1f22;
  --triplex-Step-Color_Disabled-13-0-2: #b2b8bf;
  --triplex-Step-Color_Error-13-0-2: #fff;
  --triplex-Step-Color_Success-13-0-2: #fff;
  --triplex-Step-Color_Wait-13-0-2: #107f8c;
  --triplex-Step-Color_Warning-13-0-2: #f90;
  --triplex-Step-Background_Color_Disabled-13-0-2: #fff;
  --triplex-Step-Background_Color_Error-13-0-2: #c11030;
  --triplex-Step-Background_Color_Success-13-0-2: #107f8c;
  --triplex-Step-Background_Color_Wait-13-0-2: #fff;
  --triplex-Step-Background_Color_Warning-13-0-2: #fff;
  --triplex-Step-Border_Color_Disabled-13-0-2: transparent;
  --triplex-Step-Border_Color_Error-13-0-2: transparent;
  --triplex-Step-Border_Color_Success-13-0-2: transparent;
  --triplex-Step-Border_Color_Wait-13-0-2: #107f8c;
  --triplex-Step-Border_Color_Warning-13-0-2: #f90;
  --triplex-Stepper-Background-13-0-2: #fff;
  --triplex-Stepper-ButtonNext_Background-13-0-2: linear-gradient(270deg, #fff 39.06%, transparent);
  --triplex-Stepper-ButtonPrev_Background-13-0-2: linear-gradient(90deg, #fff 39.06%, transparent);
  --triplex-Stepper-Progress_Background_Default-13-0-2: #e4e8eb;
  --triplex-Stepper-Progress_Background_Filled-13-0-2: #107f8c;
  --triplex-Stepper-Step_Background_Default-13-0-2: #fff;
  --triplex-Stepper-Step_Background_Selected-13-0-2: #f2f4f7;
  --triplex-Stepper-Step_BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-Stepper-Step_BorderColor_Disabled-13-0-2: #e4e8eb;
  --triplex-Stepper-Step_BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-Stepper-Step_BorderColor_Hover-13-0-2: #107f8c;
  --triplex-Stepper-Step_Color_Default-13-0-2: #565b62;
  --triplex-Stepper-Step_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-Stepper-Step_Color_Intact-13-0-2: #7d838a;
  --triplex-Stepper-Step_Color_Selected-13-0-2: #1f1f22;
  --triplex-Stepper-Wrapper_Background-13-0-2: linear-gradient(#fff 64px, transparent 0);
  --triplex-Stepper-Wrapper_BoxShadow-13-0-2: 0 10px 15px 0 rgba(228, 232, 235, 0.5);
  --triplex-TableBasic-Background_Hover-13-0-2: #f2f4f7;
  --triplex-TableBasic-Background_Selected-13-0-2: #e4e8eb;
  --triplex-TableBasic-Color-13-0-2: #1f1f22;
  --triplex-TableBasic-FilterPanel_Background-13-0-2: #f2f4f7;
  --triplex-TableBasic-Header_Background-13-0-2: #e4e8eb;
  --triplex-TableBasic-PaginationBasic_Color-13-0-2: #1f1f22;
  --triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Default-13-0-2: #f2f4f7;
  --triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Disabled-13-0-2: #f2f4f7;
  --triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Hover-13-0-2: #e4e8eb;
  --triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Default-13-0-2: #565b62;
  --triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Disabled-13-0-2: #d0d7dd;
  --triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Hover-13-0-2: #1f1f22;
  --triplex-TableBasic-TableFooter_Background-13-0-2: #e4e8eb;
  --triplex-TableBasic-TableFooter_Highlight-13-0-2: linear-gradient(transparent, #fff);
  --triplex-TableBasic-TabsLine_BorderColor_Active-13-0-2: #005e7f;
  --triplex-TableBasic-TabsLine_BorderColor_Default-13-0-2: transparent;
  --triplex-TableBasic-TabsLine_BorderColor_Hover-13-0-2: #21a19a;
  --triplex-TableBasic-TabsLine_Caret_Color-13-0-2: #1f1f22;
  --triplex-TableBasic-TabsLine_Color-13-0-2: #1f1f22;
  --triplex-TableBasic-TabsLine_Notification_Color-13-0-2: #f90;
  --triplex-TableBasic-TabsLine_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64 inset;
  --triplex-Tabs-Background-13-0-2: #fff;
  --triplex-Tabs-Tab_Background_Default-13-0-2: #fff;
  --triplex-Tabs-Tab_Background_Hover-13-0-2: #f2f4f7;
  --triplex-Tabs-Tab_Background_Selected-13-0-2: #d0d7dd;
  --triplex-Tabs-Tab_BorderColor_Default-13-0-2: transparent;
  --triplex-Tabs-Tab_BorderColor_Focus-13-0-2: #ffdd64;
  --triplex-TabsFolder-Background-13-0-2: #f2f4f7;
  --triplex-TabsFolder-ButtonNext_Background-13-0-2: linear-gradient(270deg, #f2f4f7 39.06%, transparent);
  --triplex-TabsFolder-ButtonPrev_Background-13-0-2: linear-gradient(90deg, #f2f4f7 39.06%, transparent);
  --triplex-TabsFolder-Shadow-13-0-2: 0 -1px 0 0 #d0d7dd inset;
  --triplex-TabsFolder-Tab_Background_Default-13-0-2: #f2f4f7;
  --triplex-TabsFolder-Tab_Background_Hover-13-0-2: #fff;
  --triplex-TabsFolder-Tab_Background_Selected-13-0-2: #fff;
  --triplex-TabsFolder-Tab_BorderColor-13-0-2: #d0d7dd;
  --triplex-TabsFolder-Tab_Color_Default-13-0-2: #1f1f22;
  --triplex-TabsFolder-Tab_Color_Disabled-13-0-2: #d0d7dd;
  --triplex-Tag-BorderColor-13-0-2: #d0d7dd;
  --triplex-Tag-Color-13-0-2: #1f1f22;
  --triplex-Tag-Medium_Background-13-0-2: #fff;
  --triplex-Tag-Small_Background-13-0-2: #f2f4f7;
  --triplex-Text-Danger_Color-13-0-2: #c11030;
  --triplex-Text-Disabled_Color-13-0-2: #d0d7dd;
  --triplex-Text-General_Color-13-0-2: #1f1f22;
  --triplex-Text-Secondary_Color-13-0-2: #7d838a;
  --triplex-Text-Success_Color-13-0-2: #107f8c;
  --triplex-Text-Warning_Color-13-0-2: #f90;
  --triplex-Title-Danger_Color-13-0-2: #c11030;
  --triplex-Title-Disabled_Color-13-0-2: #d0d7dd;
  --triplex-Title-General_Color-13-0-2: #1f1f22;
  --triplex-Title-Secondary_Color-13-0-2: #7d838a;
  --triplex-Title-Success_Color-13-0-2: #107f8c;
  --triplex-Title-Warning_Color-13-0-2: #f90;
  --triplex-Tooltip-Background-13-0-2: #1f1f22;
  --triplex-Tooltip-Color-13-0-2: #fff;
  --triplex-Tooltip-Link_Desktop_Color_Active-13-0-2: #1358bf;
  --triplex-Tooltip-Link_Desktop_Color_Default-13-0-2: #198cfe;
  --triplex-Tooltip-Link_Desktop_Color_Hover-13-0-2: #21a19a;
  --triplex-Tooltip-Link_Desktop_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64;
  --triplex-Tooltip-Link_Mobile_Color_Active-13-0-2: #0f5498;
  --triplex-Tooltip-Link_Mobile_Color_Default-13-0-2: #1358bf;
  --triplex-Tooltip-Link_Mobile_Color_Hover-13-0-2: #107f8c;
  --triplex-Tooltip-Link_Mobile_Shadow_Focus-13-0-2: 0 0 0 1px #ffdd64;
  --triplex-TopOverlay-Background-13-0-2: #ffe5e8;
  --triplex-TopOverlay-Color-13-0-2: #1f1f22;
  --triplex-TopOverlay-Shadow-13-0-2: 0 -1px 0 0 #c11030 inset;
  --triplex-UploadZone-BorderColor_Default-13-0-2: #d0d7dd;
  --triplex-UploadZone-BorderColor_Hover-13-0-2: #1f1f22;
  --triplex-UploadZone-DragArea_Background-13-0-2: #fff;
  --triplex-UploadZone-DragArea_BorderColor-13-0-2: #1f1f22;
  --triplex-Widget-Background-13-0-2: #fff;
  --triplex-Widget-Caret_Color-13-0-2: #1f1f22;
  --triplex-Widget-Shadow-13-0-2: 0 0 0 1px #d0d7dd inset;
  --triplex-Widget-Title_Color-13-0-2: #1f1f22;
}
.widgetHeaderTitle__e2685e9e {
  color: #1f1f22;
  color: var(--triplex-Widget-Title_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0 auto 0 -8px;
  outline: none;
  padding: 19px 8px;
  text-transform: none;
}
.widgetHeaderTitle__e2685e9e:focus-visible {
  box-shadow: 0 0 0 1px var(--triplex-Accent-500-13-0-2);
}
.widgetHeaderControls__7539cfa6 {
  padding-left: 24px;
  white-space: nowrap;
}
.widgetHeader__29fefd00 {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  outline: none;
  padding: 0 31px;
}
.widgetHeader__29fefd00 .widgetHeaderArrow__60542764 {
  flex-shrink: 0;
  padding-left: 32px;
}
.widgetHeader__29fefd00 .widgetHeaderArrow__60542764 .caretIcon__c68a156d {
  transition: transform 0.3s ease-in-out;
  vertical-align: middle;
}
.widgetHeader__29fefd00 .widgetHeaderArrow__60542764 .caretIcon__c68a156d path {
  fill: var(--triplex-Widget-Caret_Color-13-0-2);
}
.widgetHeader__29fefd00:not(.isStatic__1768b31d) {
  cursor: pointer;
}
.widgetHeader__29fefd00:focus:not(.focusedByClick__a26ff889):focus {
  border-color: var(--triplex-Accent-500-13-0-2);
}
.widgetHeader__29fefd00.animating__0bc4cf42,
.widgetHeader__29fefd00.opened__4af697d0 {
  border-bottom-color: transparent;
  border-radius: 16px 16px 0 0;
}
.widgetHeader__29fefd00.opened__4af697d0 .widgetHeaderArrow__60542764 .caretIcon__c68a156d {
  transform: rotate(-180deg);
}
.widgetHeader__29fefd00.controlsAlignLeft__98552ee6 .widgetHeaderControls__7539cfa6,
.widgetHeader__29fefd00.controlsAlignRight__600d3a43 .widgetHeaderTitle__e2685e9e {
  flex-grow: 1;
}
@media (max-width: 767px) {
  .widgetHeader__29fefd00 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .widgetHeaderControls__7539cfa6 {
    display: none;
  }
}
.widgetFooter__9b196046 {
  align-items: center;
  border-radius: 0 0 16px 16px;
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
}
.widgetFooterContent__9a570672 {
  flex-grow: 1;
  font-size: 14px;
  line-height: 20px;
  margin-right: auto;
  padding: 22px 0;
}
.widgetFooterControls__52e9683e {
  margin-left: auto;
  padding: 18px 0 18px 24px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .widgetFooter__9b196046 {
    align-items: normal;
    flex-wrap: wrap;
    padding-left: 16px;
    padding-right: 16px;
  }
  .widgetFooterContent__9a570672 {
    margin-bottom: 16px;
    margin-top: 16px;
    padding: 0;
    width: 100%;
  }
  .widgetFooterControls__52e9683e {
    margin-bottom: 16px;
    margin-left: -16px;
    padding: 0;
    white-space: normal;
  }
  .widgetFooterControls__52e9683e > .globalButtonDropdownExtended__434de4f1,
  .widgetFooterControls__52e9683e > button {
    margin-left: 16px;
    margin-top: 16px;
  }
  .widgetFooterContent__9a570672 + .widgetFooterControls__52e9683e {
    margin-top: -16px;
  }
}
.widgetBody__3d3b2473 {
  padding: 0 32px;
}
.widgetBody__3d3b2473.widgetBodyWithoutFooter__bc724365 {
  border-radius: 0 0 16px 16px;
  padding-bottom: 24px;
}
@media (max-width: 767px) {
  .widgetBody__3d3b2473 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.widget__682837d2 {
  background: var(--triplex-Widget-Background-13-0-2);
  border-radius: 16px;
  box-shadow: var(--triplex-Widget-Shadow-13-0-2);
}
.widget__682837d2 .widgetContent__ebac5287 {
  box-sizing: initial;
  visibility: hidden;
}
.widget__682837d2 .widgetContent__ebac5287.globalExpandAnimationAnimating__3d405c4a,
.widget__682837d2 .widgetContent__ebac5287.globalExpandAnimationOpened__f8561d64 {
  visibility: visible;
}
.uploadZone__8ad7fe73 {
  position: relative;
}
.uploadZone__8ad7fe73 .uploadZoneDragArea__07c27ace {
  border: 1px dashed var(--triplex-UploadZone-BorderColor_Default-13-0-2);
  border-radius: 8px;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.uploadZone__8ad7fe73 .uploadZoneDragArea__07c27ace:hover {
  border-color: var(--triplex-UploadZone-BorderColor_Hover-13-0-2);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .uploadZone__8ad7fe73 .uploadZoneDragArea__07c27ace {
    border: 1px dotted var(--triplex-UploadZone-BorderColor_Default-13-0-2);
  }
}
@supports (-ms-ime-align:auto) {
  .uploadZone__8ad7fe73 .uploadZoneDragArea__07c27ace {
    border: 1px dotted var(--triplex-UploadZone-BorderColor_Default-13-0-2);
  }
}
.uploadZone__8ad7fe73 .uploadZoneInput__1008a2ff {
  display: none;
}
.uploadZoneContainerDragArea__ad5e0720 {
  background: var(--triplex-UploadZone-DragArea_Background-13-0-2);
  bottom: 0;
  cursor: pointer;
  left: 0;
  padding: 4px;
  position: absolute;
  right: 0;
  top: 0;
}
.uploadZoneContainerDragArea__ad5e0720 .border__62032081 {
  border: 1px dashed var(--triplex-UploadZone-DragArea_BorderColor-13-0-2);
  border-radius: 8px;
  height: 100%;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .uploadZoneContainerDragArea__ad5e0720 .border__62032081 {
    border: 1px dotted var(--triplex-UploadZone-DragArea_BorderColor-13-0-2);
  }
}
@supports (-ms-ime-align:auto) {
  .uploadZoneContainerDragArea__ad5e0720 .border__62032081 {
    border: 1px dotted var(--triplex-UploadZone-DragArea_BorderColor-13-0-2);
  }
}
.unorderedList__9f45aa83 {
  list-style: none;
  margin: 0;
  padding-left: 14px;
  position: relative;
}
.unorderedListItem__611812e6:before {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  margin: 8px 1px;
  position: absolute;
  width: 4px;
}
.unorderedListItem__611812e6 + .unorderedListItem__611812e6 {
  margin-top: 8px;
}
.title__238f3e77.general__f74507f2 {
  color: var(--triplex-Title-General_Color-13-0-2);
}
.title__238f3e77.secondary__540de0de {
  color: var(--triplex-Title-Secondary_Color-13-0-2);
}
.title__238f3e77.success__364cc226 {
  color: var(--triplex-Title-Success_Color-13-0-2);
}
.title__238f3e77.warning__57fe763f {
  color: var(--triplex-Title-Warning_Color-13-0-2);
}
.title__238f3e77.danger__71d5b69d {
  color: var(--triplex-Title-Danger_Color-13-0-2);
}
.title__238f3e77.disabled__b9e77c03 {
  color: var(--triplex-Title-Disabled_Color-13-0-2);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.h1__38129813,
.h2__fb4fd81e,
.h3__306ae57a,
.h4__102ae42d {
  margin: 0;
}
.h1__38129813 {
  font-size: 30px;
  line-height: 40px;
}
.h2__fb4fd81e {
  font-size: 21px;
  line-height: 32px;
}
.h3__306ae57a {
  font-size: 18px;
  line-height: 24px;
}
.h4__102ae42d {
  font-size: 16px;
  line-height: 24px;
}
.text__cee02775.general__f74507f2 {
  color: var(--triplex-Text-General_Color-13-0-2);
}
.text__cee02775.secondary__540de0de {
  color: var(--triplex-Text-Secondary_Color-13-0-2);
}
.text__cee02775.success__364cc226 {
  color: var(--triplex-Text-Success_Color-13-0-2);
}
.text__cee02775.warning__57fe763f {
  color: var(--triplex-Text-Warning_Color-13-0-2);
}
.text__cee02775.danger__71d5b69d {
  color: var(--triplex-Text-Danger_Color-13-0-2);
}
.text__cee02775.disabled__b9e77c03 {
  color: var(--triplex-Text-Disabled_Color-13-0-2);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.b1__6ba69506 {
  font-size: 14px;
}
.b1__6ba69506.normal__fdae369c {
  line-height: 16px;
}
.b1__6ba69506.extra__228dde81 {
  line-height: 20px;
}
.b2__32d1f4ef {
  font-size: 12px;
}
.b2__32d1f4ef.normal__fdae369c {
  line-height: 16px;
}
.b2__32d1f4ef.extra__228dde81 {
  line-height: 18px;
}
.b3__1cf4ca27 {
  font-size: 10px;
}
.b3__1cf4ca27.normal__fdae369c {
  line-height: 10px;
}
.b3__1cf4ca27.extra__228dde81 {
  line-height: 12px;
}
.underline__13f14ba4 {
  text-decoration: underline;
}
.strikethrough__b8ef732e {
  text-decoration: line-through;
}
.underlineStrikethrough__afdefb9a {
  text-decoration: underline line-through;
}
.light__07b63d62 {
  font-weight: 300;
}
.regular__24006ca3 {
  font-weight: 400;
}
.semibold__08100890 {
  font-weight: 600;
}
.bold__16d63132 {
  font-weight: 700;
}
.treeViewGroup__5c274161,
.treeView__49096c63 {
  margin: 0;
  padding: 0;
}
.treeViewGroup__5c274161 .treeViewNode__8d2ec4d3,
.treeView__49096c63 .treeViewNode__8d2ec4d3 {
  list-style: none;
  margin: 0;
  outline: none;
  padding: 0;
}
.topOverlay__655cf5b2 {
  animation: fadeOutTopOverlay__f1d68b8c 0.6s;
  background: var(--triplex-TopOverlay-Background-13-0-2);
  box-shadow: var(--triplex-TopOverlay-Shadow-13-0-2);
  overflow: hidden;
  pointer-events: none;
  transition: height 0.3s;
}
.topOverlay__655cf5b2 .globalTopOverlayInner__40914899 {
  animation: fadeOutTopOverlayInner__4ae20cb1 0.6s;
  padding: 24px 68px 24px 32px;
}
.topOverlay__655cf5b2 .globalTopOverlayClose__2166c578 {
  display: none;
  position: absolute;
  right: 32px;
  top: 24px;
}
.topOverlay__655cf5b2.opened__7fb7ebba {
  animation: fadeInTopOverlay__9fcb4b6e 0.6s;
  pointer-events: auto;
}
.topOverlay__655cf5b2.opened__7fb7ebba .globalTopOverlayInner__40914899 {
  animation: fadeInTopOverlayInner__327665b3 0.6s;
}
.topOverlay__655cf5b2.opened__7fb7ebba .globalTopOverlayClose__2166c578 {
  display: block;
}
.topOverlay__655cf5b2 .globalTopOverlayContent__156a4c61 {
  margin-bottom: 32px;
}
.topOverlay__655cf5b2 .topOverlayControls__c9ad64b5 {
  white-space: nowrap;
}
.topOverlay__655cf5b2 .globalTopOverlayTitle__78d68373 {
  color: var(--triplex-TopOverlay-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin: 0 32px 0 0;
  overflow: hidden;
  padding: 0;
  text-transform: none;
  white-space: nowrap;
}
.topOverlay__655cf5b2 .topOverlaySubTitle__1a8ffd48 {
  color: #1f1f22;
  color: var(--triplex-TopOverlay-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  text-transform: none;
  white-space: normal;
}
[data-side-overlay-size=MD] .topOverlaySubTitle__1a8ffd48,
[data-side-overlay-size=SM] .topOverlaySubTitle__1a8ffd48 {
  max-height: 40px;
}
@keyframes fadeInTopOverlayInner__327665b3 {
  0%,
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOutTopOverlayInner__4ae20cb1 {
  0% {
    opacity: 1;
  }
  50%,
  to {
    opacity: 0;
  }
}
@keyframes fadeInTopOverlay__9fcb4b6e {
  0% {
    opacity: 0;
  }
  50%,
  to {
    opacity: 1;
  }
}
@keyframes fadeOutTopOverlay__f1d68b8c {
  0%,
  55% {
    opacity: 1;
  }
  85%,
  to {
    opacity: 0;
  }
}
.tooltipMobile__867e92ca .tooltipBody__5b8118f2 {
  text-align: left;
}
.tooltipMobile__867e92ca .tooltipXButton__a6738ca0 {
  position: absolute;
  right: 16px;
  top: 16px;
}
.tooltipMobileContent__077e7cbc {
  padding: 16px;
}
.headerless__d57a41e4 .tooltipMobileContent__077e7cbc {
  padding-right: 40px;
}
.tooltipLink__1ba2b5d3 {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}
.desktop__67c50034 {
  color: var(--triplex-Tooltip-Link_Desktop_Color_Default-13-0-2);
}
.desktop__67c50034:hover {
  color: var(--triplex-Tooltip-Link_Desktop_Color_Hover-13-0-2);
}
.desktop__67c50034:active {
  color: var(--triplex-Tooltip-Link_Desktop_Color_Active-13-0-2);
}
.desktop__67c50034:focus-visible {
  box-shadow: var(--triplex-Tooltip-Link_Desktop_Shadow_Focus-13-0-2);
  outline: none;
}
.mobile__d801bc3f {
  color: var(--triplex-Tooltip-Link_Mobile_Color_Default-13-0-2);
}
.mobile__d801bc3f:hover {
  color: var(--triplex-Tooltip-Link_Mobile_Color_Hover-13-0-2);
}
.mobile__d801bc3f:active {
  color: var(--triplex-Tooltip-Link_Mobile_Color_Active-13-0-2);
}
.mobile__d801bc3f:focus-visible {
  box-shadow: var(--triplex-Tooltip-Link_Mobile_Shadow_Focus-13-0-2);
  outline: none;
}
.tooltipDesktop__0698b294 {
  display: flex;
  left: 0;
  outline: none;
  pointer-events: auto;
  position: absolute;
  top: 0;
  z-index: 10000;
}
.tooltipDesktop__0698b294 .tooltipBody__5b8118f2 {
  color: var(--triplex-Tooltip-Color-13-0-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.tooltipDesktop__0698b294 .tooltipXButton__a6738ca0 {
  position: absolute;
  right: 8px;
  top: 8px;
}
.tooltipDesktopContent__a13ac92a {
  background-color: var(--triplex-Tooltip-Background-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 16px;
  position: relative;
}
.closable__b6e88554 .tooltipDesktopContent__a13ac92a {
  padding-right: 32px;
}
.tooltipSM__a68cf69c .tooltipDesktopContent__a13ac92a {
  min-height: 52px;
  width: 192px;
}
.tooltipLG__0a180ded .tooltipDesktopContent__a13ac92a {
  min-height: 72px;
  width: 384px;
}
.tooltipOverlay__80dfa75e {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.tooltipDesktopTip__5ab5d1fd {
  height: 0;
  width: 0;
}
.tooltipDesktopTip__5ab5d1fd.down__ad3a84be {
  border-left: solid transparent;
  border-right: solid transparent;
  border-top: solid var(--triplex-Tooltip-Background-13-0-2);
}
.tooltipDesktopTip__5ab5d1fd.up__cbe37463 {
  border-bottom: solid var(--triplex-Tooltip-Background-13-0-2);
  border-left: solid transparent;
  border-right: solid transparent;
}
.tooltipDesktopTip__5ab5d1fd.left__b55bd673 {
  border-bottom: solid transparent;
  border-right: solid var(--triplex-Tooltip-Background-13-0-2);
  border-top: solid transparent;
}
.tooltipDesktopTip__5ab5d1fd.right__578b7910 {
  border-bottom: solid transparent;
  border-left: solid var(--triplex-Tooltip-Background-13-0-2);
  border-top: solid transparent;
}
.textArea__eb86fd72 {
  background: var(--triplex-Input-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Input-BorderColor_Default-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  caret-color: var(--triplex-Input-Caret_Color-13-0-2);
  color: var(--triplex-Input-Color_Default-13-0-2);
  font-family: inherit;
  font-size: 14px;
  height: 32px;
  height: auto;
  line-height: 16px;
  line-height: 20px;
  min-width: 0;
  outline: none;
  padding: 7px 11px;
  vertical-align: top;
}
.textArea__eb86fd72::-webkit-input-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.textArea__eb86fd72::-moz-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.textArea__eb86fd72::placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.textArea__eb86fd72:focus {
  border-color: var(--triplex-Input-BorderColor_Focus-13-0-2);
}
.textArea__eb86fd72:disabled {
  -webkit-text-fill-color: var(--triplex-Input-Color_Disabled-13-0-2);
  background: var(--triplex-Input-Background_Disabled-13-0-2);
  border-color: var(--triplex-Input-BorderColor_Disabled-13-0-2);
  color: var(--triplex-Input-Color_Disabled-13-0-2);
  cursor: default;
  opacity: 1;
}
.textArea__eb86fd72.error__f774f092 {
  border-color: var(--triplex-Input-BorderColor_Error-13-0-2);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .textArea__eb86fd72 {
    overflow-y: auto;
  }
}
.fullWidth__af9e4cdd {
  width: 100%;
}
.tagGroup__85d3ebae.md__c7881997 {
  margin: -8px -6px;
}
.tagGroup__85d3ebae.md__c7881997 > .tag__d4271fb5 {
  margin: 8px 6px;
}
.tagGroup__85d3ebae.sm__995ebd7f {
  margin: -4px;
}
.tagGroup__85d3ebae.sm__995ebd7f > .tag__d4271fb5 {
  margin: 4px;
}
.tag__d4271fb5 {
  border-radius: 16px;
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
.tag__d4271fb5 .tagContent__02c28af4 {
  align-items: center;
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
}
.tag__d4271fb5 .text__fe4df1c1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tag__d4271fb5,
.tag__d4271fb5 .edit__00703f27,
.tag__d4271fb5 .remove__cae51c8a,
.tag__d4271fb5 .tagContent__02c28af4,
.tag__d4271fb5 .text__fe4df1c1 {
  color: #1f1f22;
  color: var(--triplex-Tag-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: none;
}
.tag__d4271fb5 .edit__00703f27,
.tag__d4271fb5 .remove__cae51c8a,
.tag__d4271fb5 .text__fe4df1c1 {
  vertical-align: top;
}
.tag__d4271fb5 .edit__00703f27,
.tag__d4271fb5 .remove__cae51c8a {
  display: inline-block;
  margin-left: 4px;
}
.tag__d4271fb5.sm__995ebd7f .tagContent__02c28af4 {
  background: var(--triplex-Tag-Small_Background-13-0-2);
  border: none;
  height: 24px;
  padding: 4px 8px 4px 12px;
}
.tag__d4271fb5.md__c7881997 .tagContent__02c28af4 {
  background: var(--triplex-Tag-Medium_Background-13-0-2);
  border: 1px solid var(--triplex-Tag-BorderColor-13-0-2);
  height: 32px;
  padding: 7px 7px 7px 11px;
}
.tabsLineMobileWrapper__c24d4041 {
  position: relative;
}
.tabsLineMobileWrapper__c24d4041 .tab__c9a51838 {
  flex-shrink: 0;
}
.tabsLineMobileWrapper__c24d4041 .tab__c9a51838:first-child {
  margin-left: 16px;
}
.tabsLineMobileWrapper__c24d4041 .tab__c9a51838:last-child {
  margin-right: 16px;
}
.tabsLineMobile__4d96174b {
  -ms-overflow-style: none;
  display: flex;
  overflow: auto;
  scrollbar-width: none;
}
.tabsLineMobile__4d96174b::-webkit-scrollbar {
  display: none;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="0"] {
  padding-left: 0;
  padding-right: 0;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="4"] {
  padding-left: 4px;
  padding-right: 4px;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="8"] {
  padding-left: 8px;
  padding-right: 8px;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="12"] {
  padding-left: 12px;
  padding-right: 12px;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="16"] {
  padding-left: 16px;
  padding-right: 16px;
}
.tabsLineWrapper__119f66a8[data-paddingx-size="24"] {
  padding-left: 24px;
  padding-right: 24px;
}
.tabsLineWrapper__119f66a8 {
  position: relative;
}
.tabsLineWrapper__119f66a8.withSeparator__56a3f52c:before {
  background: #d0d7dd;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}
.tabsLine__ffc168fc {
  height: 32px;
  line-height: 0;
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
.tab__c9a51838 {
  background: transparent;
  border: none;
  color: #1f1f22;
  color: var(--triplex-TableBasic-TabsLine_Color-13-0-2);
  cursor: pointer;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 32px;
  line-height: 20px;
  outline: none;
  padding: 0 16px;
  position: relative;
  text-transform: none;
}
.tab__c9a51838::-moz-focus-inner {
  border: none;
  padding: 0;
}
.tab__c9a51838:focus-visible {
  box-shadow: var(--triplex-TableBasic-TabsLine_Shadow_Focus-13-0-2);
}
.tab__c9a51838.active__b8eb8837 {
  cursor: default;
}
.tab__c9a51838:after {
  border-color: currentcolor transparent transparent;
  border-radius: 2px 2px 0 0;
  border-top: 4px solid transparent;
  content: "";
  display: block;
  margin: 8px -16px 0;
  position: relative;
  transition: border-color 0.5s;
}
.tab__c9a51838:focus:after,
.tab__c9a51838:hover:after {
  border-top-color: var(--triplex-TableBasic-TabsLine_BorderColor_Hover-13-0-2);
}
.tab__c9a51838.active__b8eb8837:after {
  border-top-color: var(--triplex-TableBasic-TabsLine_BorderColor_Active-13-0-2);
}
.notificationIcon__57025364 {
  background-color: var(--triplex-TableBasic-TabsLine_Notification_Color-13-0-2);
  border-radius: 50%;
  height: 8px;
  position: absolute;
  right: 6px;
  top: 0;
  width: 8px;
}
.tabsLineDropdown__072ba521 {
  display: inline-block;
}
.tabsLineDropdown__072ba521 .dropdownTarget__ffd601c0.active__b8eb8837 {
  cursor: pointer;
}
.tabsLineDropdown__072ba521 .dropdownTargetInner__54c0707f {
  align-items: center;
  display: inline-flex;
}
.tabsLineDropdown__072ba521 .dropdownTargetCaret__66c007ac {
  margin-left: 4px;
  transition: transform 0.3s ease-in-out;
}
.tabsLineDropdown__072ba521 .dropdownTargetCaret__66c007ac.opened__647d2f8a {
  transform: rotate(-180deg);
}
.tabsLineDropdown__072ba521 .dropdownTargetCaret__66c007ac path {
  fill: var(--triplex-TableBasic-TabsLine_Caret_Color-13-0-2);
}
.tabsLineDropdown__072ba521 .dropdown__f775f637 {
  padding: 4px;
  right: 0;
}
.tabsLineDropdown__072ba521 .dropdownItem__64c25b8a.withNotification__8e7b4433 .dropdownItemInner__6484f740 {
  margin-right: 2px;
}
.tabsLineDropdown__072ba521 .dropdownItem__64c25b8a.withNotification__8e7b4433 .notificationIcon__57025364 {
  right: 2px;
  top: 2px;
}
.tabsFolder__97988ed3 {
  background: var(--triplex-TabsFolder-Background-13-0-2);
  box-shadow: var(--triplex-TabsFolder-Shadow-13-0-2);
  position: relative;
}
.tabsFolder__97988ed3 .inner__4bf933a7 {
  padding-left: 32px;
  padding-right: 32px;
}
.tabsFolder__97988ed3 .content__7aad9441 {
  padding: 0;
}
.tabsFolder__97988ed3 .tab__c4019836 + .tab__c4019836 {
  margin-left: -1px;
}
.tabsFolder__97988ed3 .tab__c4019836.disabled__acad0b0f {
  pointer-events: none;
}
.tabsFolder__97988ed3 .tabButton__bb26fee1 {
  background: var(--triplex-TabsFolder-Tab_Background_Default-13-0-2);
  border: 1px solid var(--triplex-TabsFolder-Tab_BorderColor-13-0-2);
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
  color: var(--triplex-TabsFolder-Tab_Color_Default-13-0-2);
  cursor: pointer;
  outline: none;
  padding: 7px 15px;
  white-space: nowrap;
}
.tabsFolder__97988ed3 .tabButton__bb26fee1:hover {
  background: var(--triplex-TabsFolder-Tab_Background_Hover-13-0-2);
}
.tabsFolder__97988ed3 .tabButton__bb26fee1.selected__02a061e2 {
  background: var(--triplex-TabsFolder-Tab_Background_Selected-13-0-2);
  border-bottom-color: var(--triplex-TabsFolder-Tab_Background_Selected-13-0-2);
}
.tabsFolder__97988ed3 .tabButton__bb26fee1:focus {
  z-index: 1;
}
.tabsFolder__97988ed3 .tabButton__bb26fee1:disabled > span {
  color: var(--triplex-TabsFolder-Tab_Color_Disabled-13-0-2);
}
.tabsFolder__97988ed3 .buttonNext__3cc97487,
.tabsFolder__97988ed3 .buttonPrev__446ff34c {
  background-clip: padding-box;
  bottom: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}
.tabsFolder__97988ed3 .buttonNext__3cc97487:after,
.tabsFolder__97988ed3 .buttonPrev__446ff34c:after {
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}
.tabsFolder__97988ed3 .buttonPrev__446ff34c,
.tabsFolder__97988ed3 .buttonPrev__446ff34c:after {
  background: var(--triplex-TabsFolder-ButtonPrev_Background-13-0-2);
  left: 0;
}
.tabsFolder__97988ed3 .buttonNext__3cc97487,
.tabsFolder__97988ed3 .buttonNext__3cc97487:after {
  background: var(--triplex-TabsFolder-ButtonNext_Background-13-0-2);
  right: 0;
}
@media (max-width: 767px) {
  .tabsFolder__97988ed3 .inner__4bf933a7 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .tabsFolder__97988ed3 .buttonNext__3cc97487,
  .tabsFolder__97988ed3 .buttonPrev__446ff34c {
    display: none;
  }
}
.tabsExtendedTabButton__9476f1f3 {
  background: var(--triplex-Tabs-Tab_Background_Default-13-0-2);
  border: 1px solid var(--triplex-Tabs-Tab_BorderColor_Default-13-0-2);
  border-radius: 14px;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 5px 15px;
  position: relative;
  white-space: nowrap;
}
.tabsExtendedTabButton__9476f1f3::-moz-focus-inner {
  border: none;
}
.tabsExtendedTabButton__9476f1f3 + .tabsExtendedTabButton__9476f1f3 {
  margin-left: 2px;
}
.tabsExtendedTabButton__9476f1f3:hover {
  background: var(--triplex-Tabs-Tab_Background_Hover-13-0-2);
}
.tabsExtendedTabButton__9476f1f3:focus-visible {
  border-color: var(--triplex-Tabs-Tab_BorderColor_Focus-13-0-2);
}
.tabsExtendedTabButton__9476f1f3.selected__5bb75352 {
  background: var(--triplex-Tabs-Tab_Background_Selected-13-0-2);
  cursor: default;
}
.tabsExtendedTabButton__9476f1f3 .tabsExtendedTabButtonInner__a6915c3a {
  display: inline-block;
  position: relative;
}
.tabsExtended__c74d94ee {
  position: relative;
}
.tabsExtendedContent__4690fe91 {
  display: inline-flex;
  padding: 2px;
}
.tabsExtendedDropdown__61f56159,
.tabsExtendedTab__6836f15d + .tabsExtendedTab__6836f15d {
  margin-left: 2px;
}
.tabsFake__2a5e4ed6,
.tabsReal__a9ca86bd {
  box-sizing: border-box;
  display: flex;
  width: 100%;
}
.tabsReal__a9ca86bd.hidden__1444e9c5 {
  visibility: hidden;
}
.tabsReal__a9ca86bd .tabsExtendedTab__6836f15d.hidden__1444e9c5 {
  display: none;
}
.tabsFake__2a5e4ed6 {
  left: -10000px;
  padding: 0 2px;
  position: absolute;
  visibility: hidden;
}
.tabsContent__c21a7b06 {
  background: var(--triplex-Tabs-Background-13-0-2);
  border-radius: 16px;
}
.tabsButtonDropdown__0763d606 {
  height: 28px;
  vertical-align: top;
}
.tabsLinePanelLinks__1abdd427 {
  display: flex;
  height: 32px;
  margin-left: auto;
  padding-right: 24px;
  z-index: 1;
}
.tabsLinePanelLinks__1abdd427 > a:not(:first-child) {
  margin-left: 16px;
}
.tabsLinePanel__4644df49 {
  display: flex;
  justify-content: space-between;
  padding-left: 8px;
}
.paginationWrapper__86290179 {
  padding: 24px 0;
  pointer-events: none;
  position: relative;
}
.paginationWrapper__86290179 .paginationSelectBlock__45acd853 {
  align-items: center;
  display: flex;
  position: absolute;
}
.paginationWrapper__86290179 .paginationSelectBlock__45acd853 .paginationSelectText__2f96c858 {
  color: #1f1f22;
  color: var(--triplex-TableBasic-PaginationBasic_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
}
.paginationWrapper__86290179 .paginationSelectBlock__45acd853 .paginationSelect__b07add18 {
  margin-left: 8px;
  pointer-events: auto;
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e {
  align-items: center;
  display: flex;
  justify-content: center;
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e.hidden__ce9d8a3d {
  visibility: hidden;
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 {
  display: flex;
  pointer-events: auto;
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 circle {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Default-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 path {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Default-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 :hover circle {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Hover-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 :hover path {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Hover-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 :disabled circle {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Circle_Fill_Disabled-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .paginationIteratorButton__9b4a52f8 :disabled path {
  fill: var(--triplex-TableBasic-PaginationBasic_Icon_Path_Fill_Disabled-13-0-2);
}
.paginationWrapper__86290179 .paginationIteratorBlock__84fca90e .pageNumber__7f1d062a {
  color: #1f1f22;
  color: var(--triplex-TableBasic-PaginationBasic_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 0 24px;
  text-transform: none;
}
@media (max-width: 767px) {
  .paginationWrapper__86290179 {
    display: flex;
  }
  .paginationWrapper__86290179 .paginationSelectBlock__45acd853 {
    position: relative;
  }
  .paginationWrapper__86290179 .paginationIteratorBlock__84fca90e {
    margin-left: 12px;
  }
}
.masterTable__2ec5093f {
  position: relative;
}
.filterPanel__3c43d61c {
  background: var(--triplex-TableBasic-FilterPanel_Background-13-0-2);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 8px var(--triplex-TableBasic-FilterPanel_Background-13-0-2);
  padding: 24px;
}
.tableFooterWrapper__737b6cc9 {
  height: 76px;
  margin-top: 16px;
}
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 {
  background: var(--triplex-TableBasic-TableFooter_Background-13-0-2);
  padding: 24px 12px;
}
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508:before {
  background: var(--triplex-TableBasic-TableFooter_Highlight-13-0-2);
  content: "";
  height: 64px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -64px;
  width: 100%;
}
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 .tableFooterSummary__b49299cc {
  align-items: center;
  display: flex;
}
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 .tableFooterSummary__b49299cc .tableFooterSummaryAmount__50c78f86,
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 .tableFooterSummary__b49299cc .tableFooterSummaryDivider__056842c4,
.tableFooterWrapper__737b6cc9 .tableFooter__2164d508 .tableFooterSummary__b49299cc .tableFooterSummarySelectedCount__8cdaccf3 {
  margin-left: 24px;
}
.tableFooterWrapper__737b6cc9.ieBrowser__a5ea3d18 .tableFooter__2164d508 {
  position: relative;
}
.tableFooterWrapper__737b6cc9.ieBrowser__a5ea3d18 .tableFooter__2164d508.fixed__ec0a89ab {
  bottom: 0;
  box-sizing: border-box;
  position: fixed;
  z-index: 1;
}
.tableFooterWrapper__737b6cc9:not(.ieBrowser__a5ea3d18) {
  bottom: 0;
  position: -webkit-sticky;
  position: sticky;
}
@media (max-width: 767px) {
  .tableFooterWrapper__737b6cc9 {
    height: 112px;
  }
}
@media (max-width: 575px) {
  .tableBasic__8eefc427 > table td.hideXS__f35bfa2d,
  .tableBasic__8eefc427 > table th.hideXS__f35bfa2d {
    display: none;
  }
}
@media (max-width: 767px) {
  .tableBasic__8eefc427 > table td.hideSM__6880a684,
  .tableBasic__8eefc427 > table th.hideSM__6880a684 {
    display: none;
  }
}
@media (max-width: 991px) {
  .tableBasic__8eefc427 > table td.hideMD__b5e5798b,
  .tableBasic__8eefc427 > table th.hideMD__b5e5798b {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tableBasic__8eefc427 > table td.hideLG__f15f5ab5,
  .tableBasic__8eefc427 > table th.hideLG__f15f5ab5 {
    display: none;
  }
}
@keyframes fadeIn__d24e6c18 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tableBasic__8eefc427 {
  position: relative;
}
.tableBasic__8eefc427 table {
  border-collapse: initial;
  border-spacing: 0 16px;
  margin-bottom: -16px;
  margin-top: -16px;
  width: 100%;
}
.tableBasic__8eefc427 table td.alignLeft__3f3f6f21,
.tableBasic__8eefc427 table th.alignLeft__3f3f6f21 {
  text-align: left;
}
.tableBasic__8eefc427 table td.alignRight__0abcec35,
.tableBasic__8eefc427 table th.alignRight__0abcec35 {
  text-align: right;
}
.tableBasic__8eefc427 table td.alignCenter__29557cfd,
.tableBasic__8eefc427 table th.alignCenter__29557cfd {
  text-align: center;
}
.tableBasic__8eefc427 table td.verticalAlignBaseline__2a951d5d,
.tableBasic__8eefc427 table th.verticalAlignBaseline__2a951d5d {
  vertical-align: initial;
}
.tableBasic__8eefc427 table td.verticalAlignSub__baea0ac2,
.tableBasic__8eefc427 table th.verticalAlignSub__baea0ac2 {
  vertical-align: sub;
}
.tableBasic__8eefc427 table td.verticalAlignSuper__b89918b5,
.tableBasic__8eefc427 table th.verticalAlignSuper__b89918b5 {
  vertical-align: super;
}
.tableBasic__8eefc427 table td.verticalAlignTextTop__2a716600,
.tableBasic__8eefc427 table th.verticalAlignTextTop__2a716600 {
  vertical-align: text-top;
}
.tableBasic__8eefc427 table td.verticalAlignTextBottom__fbcfd1ea,
.tableBasic__8eefc427 table th.verticalAlignTextBottom__fbcfd1ea {
  vertical-align: text-bottom;
}
.tableBasic__8eefc427 table td.verticalAlignMiddle__818d9cae,
.tableBasic__8eefc427 table th.verticalAlignMiddle__818d9cae {
  vertical-align: middle;
}
.tableBasic__8eefc427 table td.verticalAlignTop__0bc605f3,
.tableBasic__8eefc427 table th.verticalAlignTop__0bc605f3 {
  vertical-align: top;
}
.tableBasic__8eefc427 table td.verticalAlignBottom__85ce16ef,
.tableBasic__8eefc427 table th.verticalAlignBottom__85ce16ef {
  vertical-align: bottom;
}
.tableBasic__8eefc427 table > thead > tr {
  height: 48px;
}
.tableBasic__8eefc427 table > thead > tr > th {
  background-color: var(--triplex-TableBasic-Header_Background-13-0-2);
  box-sizing: border-box;
  color: #1f1f22;
  color: var(--triplex-TableBasic-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding: 16px 12px;
  text-transform: none;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .tableBasic__8eefc427 table > thead > tr > th {
    box-shadow: inset -1px 0 0 var(--triplex-TableBasic-Header_Background-13-0-2), inset 1px 0 0 var(--triplex-TableBasic-Header_Background-13-0-2);
  }
}
.tableBasic__8eefc427 table > thead > tr > th:first-child {
  border-top-left-radius: 8px;
}
.tableBasic__8eefc427 table > thead > tr > th:last-child {
  border-top-right-radius: 8px;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853 {
  display: inline-flex;
  vertical-align: top;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 {
  cursor: pointer;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 .orderButton__6cb76376 {
  display: flex;
  visibility: hidden;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 .orderButton__6cb76376.alignLeft__3f3f6f21 {
  margin-right: 8px;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 .orderButton__6cb76376.alignRight__0abcec35 {
  margin-left: 8px;
}
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49 .orderButton__6cb76376.sorted__8ad62fa5,
.tableBasic__8eefc427 table > thead > tr > th .thBlock__08528853.order__9507cc49:hover .orderButton__6cb76376 {
  visibility: visible;
}
.tableBasic__8eefc427 table > tbody > tr > td {
  box-sizing: border-box;
  color: #1f1f22;
  color: var(--triplex-TableBasic-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
  vertical-align: top;
}
.tableBasic__8eefc427 table > tbody > tr > td:first-child {
  border-radius: 8px 0 0 8px;
}
.tableBasic__8eefc427 table > tbody > tr > td:last-child {
  border-radius: 0 8px 8px 0;
}
.tableBasic__8eefc427 table > tbody > tr > td.textType__113c72f5 {
  padding: 12px;
}
.tableBasic__8eefc427 table > tbody > tr > td.componentsType__a244bc5c {
  padding: 8px 12px;
}
.tableBasic__8eefc427 table > tbody > tr > td.checkboxType__16e953fa {
  padding: 14px 12px 12px;
}
.tableBasic__8eefc427 table > tbody > tr.selected__23e4849b > td {
  background-color: var(--triplex-TableBasic-Background_Selected-13-0-2);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .tableBasic__8eefc427 table > tbody > tr.selected__23e4849b > td {
    box-shadow: inset -1px 0 0 var(--triplex-TableBasic-Background_Selected-13-0-2), inset 1px 0 0 var(--triplex-TableBasic-Background_Selected-13-0-2);
  }
}
.tableBasic__8eefc427 table > tbody.clickable__c5fdf7a9 > tr {
  cursor: pointer;
}
.tableBasic__8eefc427 table > tbody.hoverable__d86b64d3 > tr:hover > td {
  background-color: var(--triplex-TableBasic-Background_Hover-13-0-2);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .tableBasic__8eefc427 table > tbody.hoverable__d86b64d3 > tr:hover > td {
    box-shadow: inset -1px 0 0 var(--triplex-TableBasic-Background_Hover-13-0-2), inset 1px 0 0 var(--triplex-TableBasic-Background_Hover-13-0-2);
  }
}
.tableBasic__8eefc427 .footerEmptyData__83ace2e5 {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 64px 0;
}
.tableBasic__8eefc427 .spinnerWrapper__ee46b456 {
  height: calc(100% - 16px);
  left: 0;
  position: absolute;
  top: 16px;
  width: 100%;
}
.tableBasic__8eefc427 .overlayCover__93c6cad3 {
  animation: fadeIn__d24e6c18 0.3s;
  background-color: var(--triplex-Overlay-maskBackground-13-0-2);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 16px;
}
.swipeableArea__866900dc {
  overflow: hidden;
  position: relative;
}
.swipeableArea__866900dc .content__00a0216e {
  position: relative;
  touch-action: pan-y;
}
.swipeableArea__866900dc .content__00a0216e.disableScroll__4ae5e530 {
  touch-action: none;
}
.swipeableArea__866900dc .content__00a0216e.disablePointerEvents__5aa43503:after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.swipeableArea__866900dc .swipeAnimationFinish__37b368a1 {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.swipeableArea__866900dc .leftContent__799e2cf5,
.swipeableArea__866900dc .rightContent__515d4703 {
  bottom: 0;
  display: flex;
  left: 0;
  position: absolute;
  top: 0;
}
.swipeableArea__866900dc .rightContent__515d4703 {
  left: auto;
  right: 0;
}
.suggestMobileBody__93c57da3 {
  height: 176px;
}
.suggestMobileTarget__218cd7a0 {
  text-overflow: ellipsis;
}
.suggestMobileDropdownHint__93589f57 {
  padding: 6px 16px;
}
.dropdownInputSpinnerWrapper__bfae345a {
  position: absolute;
  right: 40px;
  top: 12px;
}
.dropdownListSpinnerWrapper__274ee6ba {
  box-sizing: border-box;
  height: 44px;
  padding: 12px 0;
  position: relative;
  text-align: center;
}
.suggest__7fbc3816 {
  position: relative;
  width: 100%;
}
.suggestDesktopTarget__6ede5372.hidden__192586aa {
  opacity: 0;
}
.loading__2ab04661 .suggestDesktopTarget__6ede5372 {
  padding: 7px 40px 7px 11px;
}
.pseudoLabel__6194802a {
  left: 0;
  position: absolute;
  top: 0;
}
.pseudoLabel__6194802a.hidden__192586aa {
  z-index: -1;
}
.spinnerIcon__073dd499 {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 12px;
  top: 0;
}
.suggestDropdownListItem__7b86698b {
  overflow: hidden;
  text-overflow: ellipsis;
}
.suggestListSpinnerWrapper__a86fbdee {
  height: 28px;
  padding: 4px 0;
  position: relative;
  text-align: center;
}
.suggestListSpinnerWrapper__a86fbdee .suggestListSpinner__bbcea503 {
  display: inline-block;
}
.grouped__db322525 {
  flex: 1;
}
.grouped__db322525:not(:first-child) {
  margin-left: -1px;
}
.grouped__db322525.left__c0046730 .suggestDesktopTarget__6ede5372,
.grouped__db322525.left__c0046730 .suggestMobileTarget__218cd7a0 {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__db322525.intermediate__f919596a .suggestDesktopTarget__6ede5372,
.grouped__db322525.intermediate__f919596a .suggestMobileTarget__218cd7a0 {
  border-radius: 0;
}
.grouped__db322525.right__08980aec .suggestDesktopTarget__6ede5372,
.grouped__db322525.right__08980aec .suggestMobileTarget__218cd7a0 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__db322525.error__05f7eda5 {
  z-index: 1;
}
.grouped__db322525.focused__744021be {
  z-index: 2;
}
.subValue__9291ee9f {
  overflow: hidden;
}
.subRow__8f16d8c5 {
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
  padding-bottom: 8px;
}
.subRow__8f16d8c5:last-child {
  padding-bottom: 0;
}
.subLabel__e1cdd3b0 {
  max-height: 40px;
  overflow: hidden;
}
.stepperWrapper__88103e70 {
  background: var(--triplex-Stepper-Background-13-0-2);
  overflow-y: hidden;
  padding: 16px 32px;
  position: relative;
}
.stepperWrapper__88103e70.withShadow__0a8dd5f9 {
  background: var(--triplex-Stepper-Wrapper_Background-13-0-2);
  margin-bottom: -16px;
  padding-bottom: 32px;
}
.stepperWrapper__88103e70.withShadow__0a8dd5f9:before {
  box-shadow: var(--triplex-Stepper-Wrapper_BoxShadow-13-0-2);
  content: "";
  height: 64px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.stepperStep__0c1e9aef {
  cursor: pointer;
  display: inline-flex;
  outline: none;
  position: relative;
}
.stepperStep__0c1e9aef + .stepperStep__0c1e9aef {
  margin-left: 12px;
}
.stepperStep__0c1e9aef:not(:last-child) .content__ec84a1fd {
  border-radius: 6px 0 0 6px;
  border-width: 1px 0 1px 1px;
  padding: 7px 0 7px 11px;
}
.stepperStep__0c1e9aef:last-child .content__ec84a1fd {
  border-radius: 6px;
  border-width: 1px;
  padding: 7px 11px;
}
.stepperStep__0c1e9aef:last-child .arrow__feb724fe {
  display: none;
}
.stepperStep__0c1e9aef:hover .content__ec84a1fd {
  border-color: var(--triplex-Stepper-Step_BorderColor_Hover-13-0-2);
}
.stepperStep__0c1e9aef:hover .arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Hover-13-0-2);
}
.stepperStep__0c1e9aef.intact__c86e70e6 .content__ec84a1fd {
  color: var(--triplex-Stepper-Step_Color_Intact-13-0-2);
}
.stepperStep__0c1e9aef.selected__4a5e8efd {
  cursor: default;
}
.stepperStep__0c1e9aef.selected__4a5e8efd .content__ec84a1fd {
  background: var(--triplex-Stepper-Step_Background_Selected-13-0-2);
  border-color: var(--triplex-Stepper-Step_BorderColor_Hover-13-0-2);
  color: var(--triplex-Stepper-Step_Color_Selected-13-0-2);
}
.stepperStep__0c1e9aef.selected__4a5e8efd .arrow__feb724fe path:first-child {
  fill: var(--triplex-Stepper-Step_Background_Selected-13-0-2);
}
.stepperStep__0c1e9aef.selected__4a5e8efd .arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Hover-13-0-2);
}
.stepperStep__0c1e9aef.disabled__bfe5a716 {
  pointer-events: none;
}
.stepperStep__0c1e9aef.disabled__bfe5a716 .content__ec84a1fd {
  border-color: var(--triplex-Stepper-Step_BorderColor_Disabled-13-0-2);
  color: var(--triplex-Stepper-Step_Color_Disabled-13-0-2);
}
.stepperStep__0c1e9aef.disabled__bfe5a716 .arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Disabled-13-0-2);
}
.stepperStep__0c1e9aef.focusVisible__e31ffb73 .content__ec84a1fd {
  border-color: var(--triplex-Stepper-Step_BorderColor_Focus-13-0-2);
}
.stepperStep__0c1e9aef.focusVisible__e31ffb73 .arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Focus-13-0-2);
}
.content__ec84a1fd {
  background: var(--triplex-Stepper-Step_Background_Default-13-0-2);
  border-color: var(--triplex-Stepper-Step_BorderColor_Default-13-0-2);
  border-style: solid;
  color: var(--triplex-Stepper-Step_Color_Default-13-0-2);
  display: inline-flex;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}
.icon__00cfcc09 {
  line-height: 0;
}
.nonempty__a3c6780a .icon__00cfcc09 {
  margin-right: 4px;
}
.arrow__feb724fe {
  transform: translate(0);
}
.arrow__feb724fe path:first-child {
  fill: var(--triplex-Stepper-Step_Background_Default-13-0-2);
}
.arrow__feb724fe path:last-child {
  fill: var(--triplex-Stepper-Step_BorderColor_Default-13-0-2);
}
.stepperProgress__6891617a {
  background: var(--triplex-Stepper-Progress_Background_Default-13-0-2);
  height: 2px;
  left: 0;
  position: absolute;
  top: 62px;
  width: 100%;
}
.progressBar__8e09e890 {
  background: var(--triplex-Stepper-Progress_Background_Filled-13-0-2);
  height: 100%;
  max-width: 100%;
}
.stepperExtended__72e9180a {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.stepper__2cffc5ea {
  padding-left: 32px;
  padding-right: 32px;
}
.stepperCarousel__ca9febe9 {
  margin-left: -32px;
  margin-right: -32px;
  position: relative;
}
.stepperCarousel__ca9febe9 .buttonNext__a3ea7c9c,
.stepperCarousel__ca9febe9 .buttonPrev__e1fb353d {
  bottom: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}
.stepperCarousel__ca9febe9 .buttonPrev__e1fb353d {
  left: 0;
}
.stepperCarousel__ca9febe9 .buttonNext__a3ea7c9c {
  right: 0;
}
.stepperCarousel__ca9febe9 .buttonPrevIcon__ef7a122f {
  background: var(--triplex-Stepper-ButtonPrev_Background-13-0-2);
}
.stepperCarousel__ca9febe9 .buttonNextIcon__a1439b40 {
  background: var(--triplex-Stepper-ButtonNext_Background-13-0-2);
}
@media (max-width: 767px) {
  .stepper__2cffc5ea {
    padding-left: 16px;
    padding-right: 16px;
  }
  .buttonNext__a3ea7c9c,
  .buttonPrev__e1fb353d {
    display: none;
  }
}
.globalStep__8db0e539 {
  align-items: center;
  border: 2px solid;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(31, 31, 34, 0.08);
  box-sizing: border-box;
  cursor: default;
  display: flex;
  flex-shrink: 0;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  line-height: 16px;
  text-transform: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 24px;
}
.globalStep__8db0e539.wait__5e745adb {
  background-color: var(--triplex-Step-Background_Color_Wait-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Wait-13-0-2);
  color: var(--triplex-Step-Color_Wait-13-0-2);
}
.globalStep__8db0e539.disabled__65891cc2 {
  background-color: var(--triplex-Step-Background_Color_Disabled-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Disabled-13-0-2);
  color: var(--triplex-Step-Color_Disabled-13-0-2);
}
.globalStep__8db0e539.success__502723e9 {
  background-color: var(--triplex-Step-Background_Color_Success-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Success-13-0-2);
  color: var(--triplex-Step-Color_Success-13-0-2);
}
.globalStep__8db0e539.warning__664d2048 {
  background-color: var(--triplex-Step-Background_Color_Warning-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Warning-13-0-2);
  color: var(--triplex-Step-Color_Warning-13-0-2);
}
.globalStep__8db0e539.error__6c68dcd3 {
  background-color: var(--triplex-Step-Background_Color_Error-13-0-2);
  border-color: var(--triplex-Step-Border_Color_Error-13-0-2);
  color: var(--triplex-Step-Color_Error-13-0-2);
}
.statusTracker__98018e95 {
  display: flex;
}
.statusTrackerIcon__5f4cc4fd {
  line-height: 0;
  order: 1;
}
.statusTrackerBody__73ab9f35 {
  flex-grow: 1;
  order: 3;
}
.statusTrackerSidebar__a4d060e6 {
  order: 5;
}
.statusTrackerIcon__5f4cc4fd + .statusTrackerBody__73ab9f35 {
  margin-left: 16px;
}
.statusTrackerBody__73ab9f35 + .statusTrackerSidebar__a4d060e6 {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .statusTracker__98018e95 {
    flex-wrap: wrap;
  }
  .statusTracker__98018e95:before {
    content: "";
    flex: 0 0 100%;
    order: 4;
  }
  .statusTrackerIcon__5f4cc4fd + .statusTrackerBody__73ab9f35 {
    flex-basis: calc(100% - 80px);
  }
  .statusTrackerBody__73ab9f35 + .statusTrackerSidebar__a4d060e6 {
    margin-left: 0;
    margin-top: 24px;
  }
  .statusTrackerIcon__5f4cc4fd ~ .statusTrackerSidebar__a4d060e6 {
    margin-left: 80px;
  }
}
@media screen and (max-width: 576px) {
  .statusTracker__98018e95:after {
    content: "";
    flex: 0 0 100%;
    order: 2;
  }
  .statusTrackerBody__73ab9f35 + .statusTrackerSidebar__a4d060e6,
  .statusTrackerIcon__5f4cc4fd + .statusTrackerBody__73ab9f35 {
    margin-left: 0;
    margin-top: 24px;
  }
}
.spoiler__8f5c523f {
  display: flex;
  flex-direction: column;
}
.spoiler__8f5c523f .head__2f062a86 {
  display: flex;
  justify-content: space-between;
}
.spoiler__8f5c523f .head__2f062a86 .icon__19bdd3d4 {
  margin-left: 4px;
}
.spoiler__8f5c523f .head__2f062a86 .icon__19bdd3d4 path {
  fill: var(--triplex-Spoiler-Caret_Color-13-0-2);
}
.spoiler__8f5c523f .head__2f062a86 .icon__19bdd3d4.animationRotate180__964084b2 {
  transition: transform 0.3s ease-in-out;
}
.spoiler__8f5c523f .head__2f062a86 .icon__19bdd3d4.animationRotate180__964084b2.active__298e1ac6 {
  transform: rotate(-180deg);
}
.spoiler__8f5c523f .head__2f062a86 .toggleButton__52e875bf {
  margin-left: -2px;
}
.spoiler__8f5c523f .content__3dc94972 {
  margin-top: 8px;
}
.spoiler__8f5c523f .content__3dc94972.hidden__6abd8ba8 {
  display: none;
}
@keyframes fadeIn__c2aa3f2f {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.globalSpinnerWidget__cc1e9f83 {
  align-items: center;
  background-color: var(--triplex-Overlay-maskBackground-13-0-2);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10100;
}
@keyframes fadeIn__aad9c414 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.globalSpin__fe21ad24 {
  animation: spin360__092fc963 1s linear infinite;
}
@keyframes spin360__092fc963 {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.spinnerWrapper__e46ddd5e {
  align-items: center;
  animation: fadeIn__aad9c414 1s ease-in;
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.spinnerWrapper__e46ddd5e .textWrapper__c4b136bf {
  color: #1f1f22;
  color: var(--triplex-Spinner-Text_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 16px;
  text-align: center;
  text-transform: none;
  z-index: 1;
}
.spinnerWrapper__e46ddd5e .textWrapper__c4b136bf.sm__3a6e4f3b {
  margin-top: 8px;
}
.smallInput__30a32201 {
  background: var(--triplex-SmallInput-Background-13-0-2);
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--triplex-Input-Color_Default-13-0-2);
  font-family: inherit;
  font-size: 14px;
  height: 20px;
  outline: none;
  padding: 0 8px;
  vertical-align: top;
  width: 100%;
}
.smallInput__30a32201::-webkit-input-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.smallInput__30a32201::-moz-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.smallInput__30a32201::placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.smallInput__30a32201::-ms-clear {
  display: none;
}
.sliderExtendedRail__4664b353 {
  background: var(--triplex-Slider-Rail_Background-13-0-2);
  cursor: pointer;
  height: 4px;
}
.sliderExtended__7f4d5b3a {
  padding-bottom: 26px;
  padding-top: 10px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.sliderExtended__7f4d5b3a.disabled__a9269003 .sliderExtendedRail__4664b353 {
  cursor: default;
  pointer-events: none;
}
.sliderExtendedTrack__ecf8a5e3 {
  background: var(--triplex-Slider-Track_Background_Default-13-0-2);
  cursor: pointer;
  height: 4px;
  outline: none;
  position: absolute;
  top: 10px;
  z-index: 10;
}
.sliderExtendedTrack__ecf8a5e3:focus {
  box-shadow: inset 0 0 1px 1px var(--triplex-Accent-500-13-0-2);
}
.sliderExtendedTrack__ecf8a5e3.focusedByClick__9b6dab58:focus {
  box-shadow: none;
}
.sliderExtendedTrack__ecf8a5e3.hoverOrDragByMouse__1333331a {
  background: var(--triplex-Slider-Track_Background_Hover-13-0-2);
}
.sliderExtendedTrack__ecf8a5e3.staticSlider__d4b4618f {
  cursor: default;
  pointer-events: none;
}
.sliderExtendedTrack__ecf8a5e3.disabled__a9269003 {
  background: var(--triplex-Slider-Track_Background_Disabled-13-0-2);
  pointer-events: none;
}
.sliderExtendedTooltipOverlay__bfb09c49 {
  align-items: center;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%);
  visibility: hidden;
}
.sliderExtendedTooltipOverlay__bfb09c49 .tooltipBody__83210352 {
  background: var(--triplex-Slider-Tooltip_Background-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--triplex-Slider-Tooltip_Color-13-0-2);
  min-height: 52px;
  min-width: 52px;
  padding: 16px;
  position: relative;
  text-align: center;
  white-space: nowrap;
}
.sliderExtendedTooltipOverlay__bfb09c49 .tooltipTip__747545bd {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--triplex-Slider-Tooltip_Background-13-0-2);
  content: "";
  height: 0;
  width: 0;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .sliderExtendedTooltipOverlay__bfb09c49 .tooltipTip__747545bd {
    margin: -0.5px;
  }
}
.sliderExtendedMarks__de027357 {
  left: 0;
  position: absolute;
  right: 0;
  top: 10px;
}
.sliderExtendedMark__07f095c5 {
  cursor: pointer;
  position: absolute;
  top: 15px;
  transform: translateX(-50%);
}
.sliderExtendedMark__07f095c5 .sliderExtendedMarkDot__71fedd80 {
  background: var(--triplex-Slider-Mark_Dot_Background_Default-13-0-2);
  border-radius: 4px;
  display: block;
  height: 8px;
  left: 50%;
  position: absolute;
  top: -17px;
  transform: translateX(-50%);
  width: 8px;
}
.sliderExtendedMark__07f095c5 .sliderExtendedMarkDot__71fedd80.inSelectedRange__d395ebd2 {
  background: var(--triplex-Slider-Mark_Dot_Background_Selected-13-0-2);
}
.sliderExtendedMark__07f095c5 .sliderExtendedMarkText__49de562d {
  color: var(--triplex-Slider-Mark_Color_Default-13-0-2);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.sliderExtendedMark__07f095c5.disabled__a9269003,
.sliderExtendedMark__07f095c5.disabled__a9269003 .sliderExtendedMarkText__49de562d {
  pointer-events: none;
}
.sliderExtendedMark__07f095c5.disabled__a9269003 .sliderExtendedMarkDot__71fedd80.inSelectedRange__d395ebd2 {
  background: var(--triplex-Slider-Mark_Dot_Background_Selected_Disabled-13-0-2);
}
.sliderExtendedMark__07f095c5:first-child,
.sliderExtendedMark__07f095c5:last-child {
  transform: none;
}
.sliderExtendedMark__07f095c5:first-child.reverse__ad5e60ab .sliderExtendedMarkDot__71fedd80 {
  left: auto;
  right: 0;
  transform: translateX(50%);
}
.sliderExtendedMark__07f095c5:first-child.reverse__ad5e60ab .sliderExtendedMarkText__49de562d {
  margin-right: -4px;
}
.sliderExtendedMark__07f095c5:first-child:not(.reverse__ad5e60ab) .sliderExtendedMarkDot__71fedd80 {
  left: 0;
  transform: translateX(-50%);
}
.sliderExtendedMark__07f095c5:first-child .sliderExtendedMarkText__49de562d {
  margin-left: -4px;
}
.sliderExtendedMark__07f095c5:last-child.reverse__ad5e60ab .sliderExtendedMarkDot__71fedd80 {
  left: 0;
  transform: translateX(-50%);
}
.sliderExtendedMark__07f095c5:last-child.reverse__ad5e60ab .sliderExtendedMarkText__49de562d {
  margin-left: -4px;
}
.sliderExtendedMark__07f095c5:last-child:not(.reverse__ad5e60ab) .sliderExtendedMarkDot__71fedd80 {
  left: auto;
  right: 0;
  transform: translateX(50%);
}
.sliderExtendedMark__07f095c5:last-child .sliderExtendedMarkText__49de562d {
  margin-right: -4px;
}
.sliderExtendedMark__07f095c5.active__19c884f6 {
  pointer-events: none;
}
.sliderExtendedMark__07f095c5.active__19c884f6 .sliderExtendedMarkText__49de562d {
  color: var(--triplex-Slider-Mark_Color_Active-13-0-2);
}
.sliderExtendedDot__a1ebfc3e {
  background: var(--triplex-Slider-Dot_Background_Default-13-0-2);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  height: 24px;
  outline: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 24px;
  z-index: 20;
}
.sliderExtendedDot__a1ebfc3e:focus {
  box-shadow: inset 0 0 1px 1px var(--triplex-Accent-500-13-0-2);
}
.sliderExtendedDot__a1ebfc3e.focusedByClick__9b6dab58:focus {
  box-shadow: none;
}
.sliderExtendedDot__a1ebfc3e:after {
  background: var(--triplex-Slider-Dot_Background_Default-13-0-2);
  border-radius: 4px;
  content: "";
  display: block;
  height: 8px;
  left: 8px;
  position: absolute;
  top: 8px;
  width: 8px;
}
.sliderExtendedDot__a1ebfc3e:before {
  background: var(--triplex-Slider-Dot_Inner_Background-13-0-2);
  border-radius: 6px;
  content: "";
  display: block;
  height: 12px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 12px;
}
.sliderExtendedDot__a1ebfc3e.disabled__a9269003 {
  pointer-events: none;
}
.sliderExtendedDot__a1ebfc3e.disabled__a9269003,
.sliderExtendedDot__a1ebfc3e.disabled__a9269003:after {
  background: var(--triplex-Slider-Dot_Background_Disabled-13-0-2);
}
.sliderExtendedDot__a1ebfc3e.dragByMouse__7575d1cc,
.sliderExtendedDot__a1ebfc3e:hover {
  background: var(--triplex-Slider-Dot_Background_Hover-13-0-2);
}
.sliderExtendedDot__a1ebfc3e.dragByMouse__7575d1cc:after,
.sliderExtendedDot__a1ebfc3e:hover:after {
  background: var(--triplex-Slider-Dot_Inner_Background-13-0-2);
}
.sliderExtendedDot__a1ebfc3e:focus .sliderExtendedTooltipOverlay__bfb09c49,
.sliderExtendedDot__a1ebfc3e:hover .sliderExtendedTooltipOverlay__bfb09c49 {
  visibility: visible;
}
.skeleton__cb6c5b60 {
  animation: skeleton-gradient-animation__28562911 3s cubic-bezier(0.59, 0, 0.45, 0.98) infinite;
  background-position: 0 0;
  background-size: 200%;
  border-radius: 16px;
  flex-grow: 1;
}
.skeleton__cb6c5b60.light__7dfa07a9 {
  background-image: var(--triplex-Skeleton-BackgroundImage_Light-13-0-2);
}
.skeleton__cb6c5b60.dark__707bbe7a {
  background-image: var(--triplex-Skeleton-BackgroundImage_Dark-13-0-2);
}
@keyframes skeleton-gradient-animation__28562911 {
  0%,
  10% {
    background-position: 2%;
  }
  40%,
  60% {
    background-position: 99%;
  }
  90%,
  to {
    background-position: 2%;
  }
}
.selectExtendedTarget__8f099864 {
  align-items: center;
  background: var(--triplex-Select-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Select-Border_Color_Default-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  color: #1f1f22;
  color: var(--triplex-Select-Color_Default-13-0-2);
  cursor: pointer;
  display: flex;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 32px;
  justify-content: space-between;
  line-height: 16px;
  outline: none;
  padding: 0 35px 0 11px;
  position: relative;
  text-transform: none;
}
.selectExtendedTarget__8f099864 .label__8b8ddfc8 {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.selectExtendedTarget__8f099864 .caretIcon__9a65cc0f,
.selectExtendedTarget__8f099864 .spinnerIcon__2d8916cc {
  bottom: 0;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 11px;
  top: 0;
}
.selectExtendedTarget__8f099864 .caretIcon__9a65cc0f {
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.selectExtendedTarget__8f099864 .caretIcon__9a65cc0f path {
  fill: var(--triplex-Select-Caret_Color_Default-13-0-2);
}
.selectExtendedTarget__8f099864.placeholder__21dcd17b {
  color: var(--triplex-Select-Color_Placeholder-13-0-2);
}
.selectExtendedTarget__8f099864.selectOpened__963653bc,
.selectExtendedTarget__8f099864:focus {
  border-color: var(--triplex-Select-Border_Color_Focus-13-0-2);
}
.selectExtendedTarget__8f099864.disabled__26a0ef5c,
.selectExtendedTarget__8f099864.disabled__26a0ef5c:active,
.selectExtendedTarget__8f099864.disabled__26a0ef5c:focus {
  background: var(--triplex-Select-Background_Disabled-13-0-2);
  border-color: var(--triplex-Select-Border_Color_Disabled-13-0-2);
  color: var(--triplex-Select-Color_Disabled-13-0-2);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.selectExtendedTarget__8f099864.disabled__26a0ef5c path,
.selectExtendedTarget__8f099864.disabled__26a0ef5c:active path,
.selectExtendedTarget__8f099864.disabled__26a0ef5c:focus path {
  fill: var(--triplex-Select-Caret_Color_Disabled-13-0-2);
}
.selectExtendedTarget__8f099864.error__325cfb02 {
  border-color: var(--triplex-Select-Border_Color_Error-13-0-2);
}
.selectExtendedTarget__8f099864.selectOpened__963653bc .caretIcon__9a65cc0f {
  transform: rotate(180deg);
}
.grouped__7dda36c8 .selectOpened__963653bc {
  z-index: 1;
}
.selectExtended__057ac28e {
  position: relative;
}
.select__26d9044e {
  min-width: 72px;
}
.selectDropdownListItem__0977b1bd {
  overflow: hidden;
  text-overflow: ellipsis;
}
.grouped__46c69590 {
  flex: 1;
}
.grouped__46c69590:not(:first-child) {
  margin-left: -1px;
}
.grouped__46c69590 .left__977da1dc {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__46c69590 .intermediate__61351b78 {
  border-radius: 0;
}
.grouped__46c69590 .right__ac454ca0 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__46c69590 .selectTarget__3fe9d634.error__01124c9f {
  z-index: 1;
}
.grouped__46c69590 .selectTarget__3fe9d634:focus {
  z-index: 2;
}
.segmentedControl__c06cee8c {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.segmentedControlSegment__d72b8570,
.segmentedControl__c06cee8c {
  display: flex;
  font-family: SBSansUI, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.segmentedControlSegment__d72b8570 {
  align-items: center;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  color: #1f1f22;
  cursor: pointer;
  flex: 1;
  font-size: 14px;
  height: 32px;
  justify-content: center;
  line-height: 16px;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0 7px;
  position: relative;
  text-transform: none;
  white-space: nowrap;
  z-index: 20;
}
.segmentedControlSegment__d72b8570::-moz-focus-inner {
  border: none;
}
.segmentedControlSegment__d72b8570:hover {
  z-index: 40;
}
.segmentedControlSegment__d72b8570.selected__20da3f10 {
  z-index: 10;
}
.segmentedControlSegment__d72b8570:focus-visible {
  z-index: 30;
}
.segmentedControlSegment__d72b8570:disabled {
  cursor: default;
}
.segmentedControlSegment__d72b8570:first-child {
  border-radius: 8px 0 0 8px;
}
.segmentedControlSegment__d72b8570:last-child {
  border-radius: 0 8px 8px 0;
}
.segmentedControlSegment__d72b8570 + .segmentedControlSegment__d72b8570 {
  margin-left: -1px;
}
.segmentedControlSegmentContent__5db879e7 {
  display: block;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
}
.segmentedControlSingleSegment__8ecd784d.selected__20da3f10 {
  cursor: default;
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570 {
  background: var(--triplex-SegmentedControl-General_Background_Default-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Default-13-0-2);
  color: var(--triplex-SegmentedControl-General_Color_Default-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570:hover {
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Hover-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570.selected__20da3f10 {
  background: var(--triplex-SegmentedControl-General_Background_Selected_Default-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Selected_Default-13-0-2);
  color: var(--triplex-SegmentedControl-General_Color_Selected_Default-13-0-2);
  font-weight: 600;
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570.selected__20da3f10:disabled {
  background: var(--triplex-SegmentedControl-General_Background_Selected_Disabled-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Selected_Disabled-13-0-2);
  color: var(--triplex-SegmentedControl-General_Color_Selected_Disabled-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570:focus-visible {
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Focus-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570:disabled {
  background: var(--triplex-SegmentedControl-General_Background_Disabled-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Disabled-13-0-2);
  color: var(--triplex-SegmentedControl-General_Color_Disabled-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570.segmentedControlMultipleSegment__0f0de7a7.selected__20da3f10:hover {
  background: var(--triplex-SegmentedControl-General_Multiple_Background_Selected_Hover-13-0-2);
  border-color: var(--triplex-SegmentedControl-General_Multiple_BorderColor_Selected_Hover-13-0-2);
}
.segmentedControlGeneral__e90c85af .segmentedControlSegment__d72b8570.segmentedControlMultipleSegment__0f0de7a7.selected__20da3f10:focus-visible {
  border-color: var(--triplex-SegmentedControl-General_BorderColor_Focus-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570 {
  background: var(--triplex-SegmentedControl-Secondary_Background_Default-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Default-13-0-2);
  color: var(--triplex-SegmentedControl-Secondary_Color_Default-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570:hover {
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Hover-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570.selected__20da3f10 {
  background: var(--triplex-SegmentedControl-Secondary_Background_Selected_Default-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Selected_Default-13-0-2);
  color: var(--triplex-SegmentedControl-Secondary_Color_Selected_Default-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570.selected__20da3f10:disabled {
  background: var(--triplex-SegmentedControl-Secondary_Background_Selected_Disabled-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Selected_Disabled-13-0-2);
  color: var(--triplex-SegmentedControl-Secondary_Color_Selected_Disabled-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570:focus-visible {
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Focus-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlSegment__d72b8570:disabled {
  background: var(--triplex-SegmentedControl-Secondary_Background_Disabled-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Disabled-13-0-2);
  color: var(--triplex-SegmentedControl-Secondary_Color_Disabled-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlMultipleSegment__0f0de7a7.selected__20da3f10:hover {
  background: var(--triplex-SegmentedControl-Secondary_Multiple_Background_Selected_Hover-13-0-2);
  border-color: var(--triplex-SegmentedControl-Secondary_Multiple_BorderColor_Selected_Hover-13-0-2);
}
.segmentedControlSecondary__14fe8af1 .segmentedControlMultipleSegment__0f0de7a7.selected__20da3f10:focus-visible {
  border-color: var(--triplex-SegmentedControl-Secondary_BorderColor_Focus-13-0-2);
}
.globalSmsInput__d8608719 {
  display: inline-block;
  position: relative;
  width: 100%;
}
.globalSmsInput__d8608719 .input__ecde47df {
  border-radius: 16px;
  box-sizing: border-box;
  padding-left: 33px;
  padding-right: 33px;
  text-align: center;
}
.globalSmsInput__d8608719 .input__ecde47df.SM__82a5d67f {
  border-radius: 14px;
  height: 28px;
  padding-bottom: 5px;
  padding-top: 5px;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c {
  left: 6px;
  outline: none;
  position: absolute;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c.MD__2ff1c175 {
  top: 6px;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c.SM__82a5d67f {
  top: 4px;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c.disabled__fa7beeee {
  cursor: default;
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c .full__2027c508 {
  fill: var(--triplex-SMSInput-Refresh_Fill_Full-13-0-2);
}
.globalSmsInput__d8608719 .btnRefresh__89034e8c .empty__9456fec0 {
  fill: var(--triplex-SMSInput-Refresh_Fill_Empty-13-0-2);
}
.globalSmsInput__d8608719 .btnSubmit__490c796f {
  position: absolute;
  right: 6px;
}
.globalSmsInput__d8608719 .btnSubmit__490c796f.MD__2ff1c175 {
  top: 6px;
}
.globalSmsInput__d8608719 .btnSubmit__490c796f.SM__82a5d67f {
  top: 4px;
}
.row__7b39bcf7 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  padding-bottom: 16px;
}
.row__7b39bcf7.noPaddingBottom__181c8657,
.row__7b39bcf7:last-child {
  padding-bottom: 0;
}
.radioYGroup__98402b43 {
  display: inline-flex;
  flex-flow: column wrap;
  max-width: 100%;
}
.radioYGroup__98402b43 .label__344b436b + .label__344b436b {
  margin-top: 16px;
}
.radioXGroup__1a1def76 {
  display: inline-flex;
  flex-flow: row wrap;
}
.radioXGroup__1a1def76.indent-12__18b4e0a7 {
  margin-left: -6px;
  margin-right: -6px;
}
.radioXGroup__1a1def76.indent-12__18b4e0a7 .label__344b436b {
  margin-left: 6px;
  margin-right: 6px;
}
.radioXGroup__1a1def76.indent-16__118da778 {
  margin-left: -8px;
  margin-right: -8px;
}
.radioXGroup__1a1def76.indent-16__118da778 .label__344b436b {
  margin-left: 8px;
  margin-right: 8px;
}
.radioXGroup__1a1def76.indent-20__1cbf736d {
  margin-left: -10px;
  margin-right: -10px;
}
.radioXGroup__1a1def76.indent-20__1cbf736d .label__344b436b {
  margin-left: 10px;
  margin-right: 10px;
}
.radioXGroup__1a1def76.indent-24__2222bc3f {
  margin-left: -12px;
  margin-right: -12px;
}
.radioXGroup__1a1def76.indent-24__2222bc3f .label__344b436b {
  margin-left: 12px;
  margin-right: 12px;
}
.radioXGroup__1a1def76.indent-28__72f11e65 {
  margin-left: -14px;
  margin-right: -14px;
}
.radioXGroup__1a1def76.indent-28__72f11e65 .label__344b436b {
  margin-left: 14px;
  margin-right: 14px;
}
.radioXGroup__1a1def76.indent-32__950a8b3b {
  margin-left: -16px;
  margin-right: -16px;
}
.radioXGroup__1a1def76.indent-32__950a8b3b .label__344b436b {
  margin-left: 16px;
  margin-right: 16px;
}
.label__344b436b {
  color: var(--triplex-Radio-Color_Default-13-0-2);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  min-height: 16px;
  min-width: 16px;
  position: relative;
}
.label__344b436b.nonempty__c3c744f9 {
  padding-left: 24px;
}
.label__344b436b.disabled__7d98d744 {
  color: var(--triplex-Radio-Color_Disabled-13-0-2);
  cursor: default;
}
.radio__08f36319 {
  margin: 0;
  opacity: 0;
}
.radioIcon__e73bdcb9 {
  background: var(--triplex-Radio-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Radio-BorderColor_Default-13-0-2);
  border-radius: 50%;
  box-sizing: border-box;
}
.radioIcon__e73bdcb9:after {
  background: var(--triplex-Radio-Dot_Default-13-0-2);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 4px;
  position: absolute;
  top: 4px;
  transform: scale(0);
  width: 6px;
}
.radioIcon__e73bdcb9,
.radioIcon__e73bdcb9:after {
  pointer-events: none;
}
.radioIcon__e73bdcb9,
.radio__08f36319 {
  height: 16px;
  left: 0;
  position: absolute;
  width: 16px;
}
.nonempty__c3c744f9 .radioIcon__e73bdcb9,
.nonempty__c3c744f9 .radio__08f36319 {
  top: 2px;
}
.radio__08f36319:enabled {
  cursor: pointer;
}
.radio__08f36319:checked + .radioIcon__e73bdcb9 {
  background: var(--triplex-Radio-Background_Checked_Default-13-0-2);
  border-color: var(--triplex-Radio-BorderColor_Checked-13-0-2);
}
.radio__08f36319:checked + .radioIcon__e73bdcb9:after {
  transform: scale(1);
  transition: transform 0.2s ease-out;
}
.radio__08f36319:hover + .radioIcon__e73bdcb9 {
  border-color: var(--triplex-Radio-BorderColor_Hover-13-0-2);
}
.radio__08f36319:disabled + .radioIcon__e73bdcb9 {
  background: var(--triplex-Radio-Background_Disabled-13-0-2);
  border-color: var(--triplex-Radio-BorderColor_Disabled-13-0-2);
}
.radio__08f36319:disabled + .radioIcon__e73bdcb9:after {
  background: var(--triplex-Radio-Dot_Disabled-13-0-2);
}
.radio__08f36319[data-focus-visible]:focus + .radioIcon__e73bdcb9 {
  border-color: var(--triplex-Radio-BorderColor_Focused-13-0-2);
}
.radio__08f36319:checked:enabled:hover + .radioIcon__e73bdcb9 {
  background-color: var(--triplex-Radio-Background_Checked_Hover-13-0-2);
}
.paginationSelect__b320ace7 {
  align-items: center;
  display: flex;
  left: 0;
  position: absolute;
}
.paginationSelect__b320ace7 .paginationSelectLabel__6b08c1aa {
  color: var(--triplex-TableBasic-PaginationBasic_Color-13-0-2);
}
.paginationSelect__b320ace7 .paginationSelectControl__d64263f9 {
  margin-left: 8px;
}
.pageEllipsis__794fc348 {
  align-items: center;
  border-radius: 50%;
  color: var(--triplex-TableBasic-PaginationBasic_Color-13-0-2);
  cursor: default;
  display: flex;
  height: 24px;
  justify-content: center;
  margin: 0 4px;
  width: 24px;
}
.paginationPageButton__93c1377c {
  align-items: center;
  background-color: var(--triplex-Pagination-PageButton_Background_Default-13-0-2);
  border: 1px solid var(--triplex-Pagination-PageButton_BorderColor_Default-13-0-2);
  border-radius: 50%;
  color: var(--triplex-Pagination-PageButton_Color-13-0-2);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  height: 32px;
  justify-content: center;
  margin: 0 2px;
  width: 32px;
}
.paginationPageButton__93c1377c:focus-visible {
  border-color: var(--triplex-Pagination-PageButton_BorderColor_Focus-13-0-2);
  outline: none;
}
.paginationPageButton__93c1377c:hover {
  background-color: var(--triplex-Pagination-PageButton_Background_Hover-13-0-2);
}
.paginationPageButton__93c1377c.currentPage__21d1408b {
  background-color: var(--triplex-Pagination-PageButton_Background_Selected-13-0-2);
  cursor: default;
}
.paginationNavigationExtended__07f7fa15 {
  align-items: center;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.paginationExtended__c013aa76 {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 24px 0;
  position: relative;
}
.page__2bf248b2 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  max-width: 100%;
}
.bodyPage__47e46fdf {
  flex-grow: 1;
}
.overlay__e44a6ca7 {
  bottom: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: 0;
  visibility: hidden;
}
.overlay__e44a6ca7.fixed__0df23cf8 {
  position: fixed;
}
.overlay__e44a6ca7.closing__70f6e896,
.overlay__e44a6ca7.opened__db9e10e4 {
  left: 0;
  right: 0;
  visibility: visible;
}
.overlayPanel__05ca4e13 {
  background: var(--triplex-Basic-100-13-0-2);
  overflow: auto;
  position: absolute;
  transition: transform 0.3s;
}
.overlayPanel__05ca4e13.bottom__1c05fa82 {
  bottom: 0;
  box-shadow: 0 -13px 17px 0 rgba(0, 0, 0, 0.14);
  left: 0;
  right: 0;
  transform: translateY(100%);
}
.overlayPanel__05ca4e13.left__5486aadf {
  box-shadow: 13px 0 17px 0 rgba(0, 0, 0, 0.14);
  height: 100%;
  left: 0;
  top: 0;
  transform: translateX(-100%);
}
.overlayPanel__05ca4e13.right__3c02cb94 {
  box-shadow: -13px 0 17px 0 rgba(0, 0, 0, 0.14);
  height: 100%;
  right: 0;
  top: 0;
  transform: translateX(100%);
}
.overlayPanel__05ca4e13.top__92ae7ada {
  box-shadow: 0 13px 17px 0 rgba(0, 0, 0, 0.14);
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
.overlayPanel__05ca4e13.left__5486aadf.opened__db9e10e4,
.overlayPanel__05ca4e13.right__3c02cb94.opened__db9e10e4 {
  transform: translateX(0);
}
.overlayPanel__05ca4e13.bottom__1c05fa82.opened__db9e10e4,
.overlayPanel__05ca4e13.top__92ae7ada.opened__db9e10e4 {
  transform: translateY(0);
}
.overlayContent__207e60a8 {
  display: flex;
  min-height: 100%;
}
.overlayMask__0636667c {
  background: var(--triplex-Overlay-maskBackground-13-0-2);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s;
  width: 100%;
}
.overlayMask__0636667c.overlayOpened__59386f93 {
  opacity: 1;
}
.orderedListItem__f42e36ba {
  counter-increment: list-item-tx;
}
.orderedListItem__f42e36ba:before {
  content: counter(list-item-tx) ".";
  display: inline-block;
  left: 0;
  position: absolute;
}
.orderedListItem__f42e36ba + .orderedListItem__f42e36ba {
  margin-top: 8px;
}
.orderedList__42e8915a {
  counter-reset: list-item-tx;
  list-style: none;
  margin: 0;
  padding-left: 25px;
  position: relative;
}
.notification__0d6c581c {
  background: var(--triplex-Notification-Background-13-0-2);
  border-radius: 8px;
  box-shadow: var(--triplex-Notification-Shadow-13-0-2);
  box-sizing: border-box;
  color: var(--triplex-Notification-Color-13-0-2);
  display: flex;
  margin-top: 8px;
  padding: 16px 32px 16px 16px;
  position: relative;
  width: 376px;
  z-index: 300;
}
.notification__0d6c581c:first-child {
  margin-top: 0;
}
.notification__0d6c581c.extraBottomPadding__1b3394be {
  padding-bottom: 24px;
}
.notification__0d6c581c .notificationHeader__8ee3f081 {
  color: var(--triplex-Notification-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
  margin-top: 0;
  width: 100%;
}
.notification__0d6c581c .notificationIcon__e74203a0 {
  line-height: 0;
}
.notification__0d6c581c .notificationBody__cc458120 {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-left: 8px;
}
.notification__0d6c581c .notificationBodyList__b34db948 {
  margin-top: 8px;
}
.notification__0d6c581c .notificationBodyContent__0dfc37db {
  font-size: 14px;
  line-height: 20px;
  width: 100%;
}
.notification__0d6c581c .notificationClose__8f6a70ce {
  background-color: initial;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  line-height: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  right: 8px;
  top: 8px;
}
.notification__0d6c581c.showCloseOnHover__a103afb8 .notificationClose__8f6a70ce {
  opacity: 0;
}
.notification__0d6c581c.showCloseOnHover__a103afb8:hover {
  cursor: pointer;
}
.notification__0d6c581c.showCloseOnHover__a103afb8:hover .notificationClose__8f6a70ce {
  opacity: 1;
}
.notification__0d6c581c .notificationFooter__21c36303 {
  align-items: center;
  display: flex;
  margin-top: 16px;
}
.notification__0d6c581c .notificationFooter__21c36303 button + a {
  margin-left: 16px;
}
.notification__0d6c581c .notificationTime__e6d27ae8 {
  bottom: 8px;
  color: #7d838a;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 8px;
  text-transform: uppercase;
}
.notificationGroupedWrapper__fa1c300b {
  margin-bottom: 32px;
  position: relative;
  width: 376px;
}
.notificationGroupedWrapper__fa1c300b:hover {
  cursor: pointer;
}
.notificationGroupedWrapper__fa1c300b .notificationGroupedFooterItem__b751089e {
  background: var(--triplex-Notification-Background-13-0-2);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--triplex-Notification-Shadow-13-0-2);
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
}
.notificationGroupedWrapper__fa1c300b .notificationGroupedFooterItem__b751089e.first__fa640f03 {
  bottom: -8px;
  z-index: 200;
}
.notificationGroupedWrapper__fa1c300b .notificationGroupedFooterItem__b751089e.second__07cb462f {
  bottom: -16px;
  z-index: 100;
}
@media (max-width: 767px) {
  .notificationGroupedWrapper__fa1c300b,
  .notification__0d6c581c {
    width: 100%;
  }
}
.multiselectHeader__0aefcd96 {
  padding: 16px 12px 0;
}
.multiselectHeader__0aefcd96:after {
  border-bottom: 1px solid var(--triplex-Multiselect-Divider_Color-13-0-2);
  content: "";
  display: block;
  height: 16px;
  margin: 0 -12px;
}
.multiselectFooter__d5852fcb {
  padding: 0 12px 16px;
}
.multiselectFooter__d5852fcb:before {
  border-top: 1px solid var(--triplex-Multiselect-Divider_Color-13-0-2);
  content: "";
  display: block;
  height: 16px;
  margin: 0 -12px;
}
.multiselectContentWrapper__63a6a63c {
  padding: 4px;
}
.multiselectContentWrapper__63a6a63c .multiselectContent__9b7dfd5d {
  box-sizing: border-box;
  height: 196px;
  outline: none;
  overflow-y: auto;
  padding: 8px;
}
.monthYearPickerTarget__4568b606 {
  position: relative;
}
.monthYearPicker__6a49ef12 {
  width: 126px;
}
.modalWindowTopOverlayWrapper__d002ab22 {
  position: absolute;
  top: 0;
  width: inherit;
  z-index: 200;
}
.modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlay__e8e2c08c {
  border-radius: 16px 16px 0 0;
}
.modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayClose__2166c578 {
  top: 30px;
}
@media (max-width: 767px) {
  .modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayInner__40914899 {
    padding: 20px 52px 20px 16px;
  }
  .modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayClose__2166c578 {
    right: 16px;
    top: 22px;
  }
  .modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayContent__156a4c61 {
    margin-bottom: 20px;
  }
  .modalWindowTopOverlayWrapper__d002ab22 .globalTopOverlayTitle__78d68373 {
    font-size: 16px;
    line-height: 24px;
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowSm__1edd791b .modalWindowContentWrapper__450d505a {
  max-width: 480px;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowSm__1edd791b .modalWindowContent__4076a3a1 .modalWindowBody__d02356d9 {
  min-height: 200px;
}
@media (max-width: 575px) {
  .modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowSm__1edd791b .modalWindowContentWrapper__450d505a {
    max-width: 100%;
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowMd__c8fcbd36 .modalWindowContentWrapper__450d505a {
  max-width: 600px;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowMd__c8fcbd36 .modalWindowContent__4076a3a1 .modalWindowBody__d02356d9 {
  min-height: 290px;
}
@media (max-width: 767px) {
  .modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowMd__c8fcbd36 .modalWindowContentWrapper__450d505a {
    max-width: 100%;
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowLg__71b72b92 .modalWindowContentWrapper__450d505a {
  max-width: 800px;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowLg__71b72b92 .modalWindowContent__4076a3a1 .modalWindowBody__d02356d9 {
  min-height: 440px;
}
@media (max-width: 991px) {
  .modalWindowContainer__542eadcb .modalWindow__e55c967f.modalWindowLg__71b72b92 .modalWindowContentWrapper__450d505a {
    max-width: 100%;
  }
}
.modalWindowHeader__e8cf9bc1 {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.modalWindowHeader__e8cf9bc1 .globalHeaderTitle__b1c60466 {
  padding-right: 84px;
}
@media (max-width: 767px) {
  .modalWindowHeader__e8cf9bc1 .globalHeaderTitle__b1c60466 {
    padding-right: 52px;
  }
}
.modalWindowFooter__9cf99ffe {
  border-radius: 0 0 16px 16px;
}
.modalWindowClose__7216b86e {
  position: absolute;
  right: 32px;
  top: 30px;
  z-index: 10150;
}
@media (max-width: 767px) {
  .modalWindowClose__7216b86e {
    right: 16px;
    top: 22px;
  }
}
@keyframes modalWindowContentAnimationOnEnter__ca2285f6 {
  0% {
    transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(-120%);
  }
  to {
    transform: translate(0);
    -ms-transform: translate(0);
  }
}
@keyframes modalWindowContentAnimationOnExit__ff6b7963 {
  0% {
    transform: translate(0);
    -ms-transform: translate(0);
  }
  to {
    transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(-120%);
  }
}
.modalWindowContainer__542eadcb {
  bottom: 0;
  left: var(--modalWindow-screen-left, 0);
  position: fixed;
  top: var(--modalWindow-screen-top, 0);
  width: var(--modalWindow-screen-width, 100%);
  z-index: 1400;
}
.modalWindowContainer__542eadcb .modalWindowBackdrop__9e4768dc {
  background-color: var(--triplex-Backdrop-background-13-0-2);
  height: 100%;
  pointer-events: none;
  position: fixed;
  width: 100%;
  width: var(--modalWindow-screen-width, 100%);
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .modalWindowContainer__542eadcb .modalWindowBackdrop__9e4768dc {
    bottom: 1px;
    min-height: calc(100% + 1px);
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f {
  height: calc(100% - var(--modalWindow-screen-top, 0));
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  width: var(--modalWindow-screen-width, 100%);
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a {
  animation: modalWindowContentAnimationOnEnter__ca2285f6 0.6s ease;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: calc(100% - 32px);
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 {
  margin-top: 80px;
  width: 100%;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1,
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .globalSpinnerWidget__cc1e9f83 {
  border-radius: 16px;
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .modalWindowBody__d02356d9 {
  animation: fadeIn__e16684c1 0.3s ease;
  box-sizing: border-box;
}
@keyframes fadeIn__e16684c1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .spinnerSm__eb72c174 {
  display: none;
}
@media (max-width: 767px) {
  .modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .spinner__ef66a2dd {
    display: none;
  }
  .modalWindowContainer__542eadcb .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowContent__4076a3a1 .spinnerSm__eb72c174 {
    display: flex;
  }
}
.modalWindowContainer__542eadcb .modalWindowClose__7216b86e {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: visibility 0s 0.3s;
}
.modalWindowContainer__542eadcb.modalTopOverlayActive__781bdc89 .modalWindowClose__7216b86e {
  transition: none;
  visibility: hidden;
}
.modalWindowContainer__542eadcb.modalTopOverlayActive__781bdc89 .modalWindowContent__4076a3a1:after {
  animation: fadeIn__e16684c1 0.3s ease;
  background-color: var(--triplex-Overlay-maskBackground-13-0-2);
  border-radius: 16px;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 150;
}
.modalWindowTransition-exit .modalWindow__e55c967f .modalWindowContentWrapper__450d505a {
  animation: modalWindowContentAnimationOnExit__ff6b7963 0.3s ease;
  transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(-120%);
}
.modalWindowTransition-exit .modalWindow__e55c967f .modalWindowContentWrapper__450d505a .modalWindowBody__d02356d9 {
  animation: fadeOut__daa014c6 0.3s ease;
}
@keyframes fadeOut__daa014c6 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.no-hash-overflow-hidden {
  overflow: hidden;
}
.maskedInputWrapper__284521e5 {
  position: relative;
}
.maskedInputWrapper__284521e5 .maskedInputPlaceholder__f9faa95d {
  left: 0;
  position: absolute;
  top: 0;
}
.maskedInputWrapper__284521e5 .maskedInputPlaceholder__f9faa95d::-webkit-input-placeholder {
  opacity: 1;
}
.maskedInputWrapper__284521e5 .maskedInputPlaceholder__f9faa95d::-moz-placeholder {
  opacity: 1;
}
.maskedInputWrapper__284521e5 .maskedInputPlaceholder__f9faa95d::placeholder {
  opacity: 1;
}
.maskedInput__4d45c9fa {
  background: none!important;
  display: block;
  position: relative;
}
.grouped__aa3e5e3b {
  flex: 1;
}
.grouped__aa3e5e3b:not(:first-child) {
  margin-left: -1px;
}
.grouped__aa3e5e3b .left__2cc79c73 {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__aa3e5e3b .intermediate__9b67c6a6 {
  border-radius: 0;
}
.grouped__aa3e5e3b .right__c88c2c39 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__aa3e5e3b .maskedInput__4d45c9fa.error__17a35778 {
  z-index: 1;
}
.grouped__aa3e5e3b .maskedInput__4d45c9fa:focus {
  z-index: 2;
}
.globalMarkerStatus__0321ad81 {
  position: relative;
}
.globalMarkerStatus__0321ad81 .markerContainer__5b3483ac {
  position: absolute;
  top: 6px;
}
.globalMarkerStatus__0321ad81 .markerStatusText__428e5111 {
  color: #1f1f22;
  color: var(--triplex-MarkerStatus-Text_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-left: 12px;
  text-transform: none;
}
.globalMarkerStatus__0321ad81 .markerStatusDesc__f03d949e {
  color: #7d838a;
  color: var(--triplex-MarkerStatus-Desc_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 4px 0 0 12px;
  text-transform: none;
}
.marker__9b495083 {
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
.marker__9b495083.markerSuccess__2e5cbd9c {
  background: var(--triplex-Marker-Background_Success-13-0-2);
}
.marker__9b495083.markerError__d3afaaae {
  background: var(--triplex-Marker-Background_Error-13-0-2);
}
.marker__9b495083.markerWarning__4e21a18b {
  background: var(--triplex-Marker-Background_Warning-13-0-2);
}
.marker__9b495083.markerWaiting__737427f5 {
  background: var(--triplex-Marker-Background_Waiting-13-0-2);
}
.selectionControls__65b15327 {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.listMasterHeader__6f03903e {
  background: var(--triplex-ListMaster-Header_Background-13-0-2);
  color: var(--triplex-ListMaster-Header_Color-13-0-2);
  padding: 12px 16px;
}
.listMasterHeader__6f03903e.sticky__0ea2714a {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}
.listMasterFooter__4dd13c22 {
  align-items: center;
  background: var(--triplex-ListMaster-Footer_Background-13-0-2);
  color: var(--triplex-ListMaster-Footer_Color-13-0-2);
  display: flex;
  justify-content: space-between;
  padding: 16px;
}
.listMasterFooter__4dd13c22.sticky__0ea2714a {
  bottom: 0;
  position: -webkit-sticky;
  position: sticky;
}
.listMasterFooterDescription__621f9414 {
  padding-right: 16px;
}
.listMasterFooterControls__d85c625b {
  white-space: nowrap;
}
.listMasterChipGroup__dcc8bc34 {
  padding: 0 16px;
}
.listItemTail__1c9f7f2e {
  bottom: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 20px;
}
.listItemTailLine__820c4a63 {
  background: var(--triplex-ListMaster-Background-13-0-2);
  bottom: 0;
  left: 8px;
  position: absolute;
  top: 0;
  width: 4px;
}
.listItemTailTop__4048fdfe {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.listItemTailTop__4048fdfe:after {
  border-top-left-radius: 8px;
  box-shadow: -2px -2px 0 2px var(--triplex-ListMaster-Background-13-0-2);
  content: "";
  height: 8px;
  left: 12px;
  position: absolute;
  top: 0;
  width: 8px;
}
.listItemTailTop__4048fdfe:before {
  border-top-right-radius: 8px;
  box-shadow: 2px -2px 0 2px var(--triplex-ListMaster-Background-13-0-2);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0;
  width: 8px;
}
.listItemTailBottom__8f542616 {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}
.listItemTailBottom__8f542616:after {
  border-bottom-left-radius: 8px;
  bottom: 0;
  box-shadow: -2px 2px 0 2px var(--triplex-ListMaster-Background-13-0-2);
  content: "";
  height: 8px;
  left: 12px;
  position: absolute;
  width: 8px;
}
.listItemTailBottom__8f542616:before {
  border-bottom-right-radius: 8px;
  bottom: 0;
  box-shadow: 2px 2px 0 2px var(--triplex-ListItem-Tail_Background-13-0-2);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  width: 8px;
}
.listItemTailRight__ac321806 {
  right: -12px;
}
.listItemTailLeft__1f9adb97 {
  left: -12px;
}
.listItemTable__4b78a81f {
  margin-bottom: 4px;
}
.listItemTable__4b78a81f:last-child {
  margin-bottom: 0;
}
.listItemSelectable__5945c512 {
  align-items: center;
  background: var(--triplex-ListItem-Background-13-0-2);
  border-radius: 8px;
  display: flex;
}
.listItemSelectable__5945c512.selected__8626a426 {
  background: var(--triplex-ListItem-Background_Selected-13-0-2);
}
.checkboxWrapper__b4fa05cd {
  line-height: 0;
  padding: 16px 20px 16px 16px;
}
.childrenWrapper__905440d5 {
  flex-grow: 1;
}
.checkboxLabel__1363f3f4 {
  padding: 0!important;
  position: relative;
  transform: scale(1.375) translateY(-2px);
}
.checkboxLabelClickArea__d9a2d0bf {
  bottom: -5px;
  left: -3.6px;
  position: absolute;
  right: -3.6px;
  top: -2.5px;
}
.listItemLoading__06c0ddee {
  height: 76px;
  position: relative;
}
.listItemControlsButton__883b0204 {
  align-items: center;
  background: var(--triplex-ListItemControlsButton-Background-13-0-2);
  border: none;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  justify-content: center;
  margin: 0;
  min-height: 56px;
  padding: 0;
  width: 80px;
}
.listItemControlsButton__883b0204 + .listItemControlsButtonDropdown__4bf2464e,
.listItemControlsButton__883b0204 + .listItemControlsButton__883b0204 {
  margin-left: 4px;
}
.listItemControlsButtonIcon__8c9246a4 {
  line-height: 0;
}
.listItemControlsButton__883b0204.withText__fe4ae1b6 .listItemControlsButtonIcon__8c9246a4 {
  margin-bottom: 8px;
}
.listItemControlsButtonLabel__2b8973fa {
  color: var(--triplex-ListItemControlsButton-Color-13-0-2);
}
div.listItemControlsButtonDropdown__4bf2464e {
  display: flex;
}
.listItemControlsButtonInner__1f76a5e9 {
  display: flex;
  flex-direction: column;
}
.listItemControlsButton__883b0204.withIcon__f48cf7f3.withText__fe4ae1b6 .listItemControlsButtonInner__1f76a5e9 {
  height: 44px;
  overflow: visible;
}
.listItemControls__549e24d5 {
  display: flex;
  padding: 0 16px 0 8px;
}
.listItemContent__ee398d7c {
  background: var(--triplex-ListItem-Background-13-0-2);
  box-sizing: border-box;
  min-height: 56px;
  padding: 12px 16px;
}
.listItemContent__ee398d7c.selected__8626a426 {
  background: var(--triplex-ListItem-Background_Selected-13-0-2);
  border-radius: 8px 0 0 8px;
}
.listEmptyState__a0793790 {
  padding: 80px 16px 16px;
  text-align: center;
}
.list__c4a930d5 {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.link__49ee0132 {
  border: 1px solid var(--triplex-Link-BorderColor_Default-13-0-2);
  cursor: pointer;
  margin: -1px -3px;
  padding: 0 2px;
}
.link__49ee0132:focus {
  outline: none;
}
.link__49ee0132:focus.focusVisible__f6a6bf34 {
  border-color: var(--triplex-Link-BorderColor_Focus-13-0-2);
}
.sm__aa737688 {
  font-size: 12px;
  line-height: 16px;
}
.lg__114bcf59 {
  font-size: 14px;
  line-height: 20px;
}
.text__c4f8c380 {
  color: var(--triplex-Link-Text_Color_Default-13-0-2);
  position: relative;
  text-decoration: none;
}
.text__c4f8c380:hover {
  color: var(--triplex-Link-Text_Color_Hover-13-0-2);
}
.text__c4f8c380:active {
  color: var(--triplex-Link-Text_Color_Active-13-0-2);
}
.line__fdea289d {
  color: var(--triplex-Link-Line_Color_Default-13-0-2);
  text-decoration: underline;
}
.line__fdea289d:hover {
  color: var(--triplex-Link-Line_Color_Hover-13-0-2);
}
.line__fdea289d:active {
  color: var(--triplex-Link-Line_Color_Active-13-0-2);
}
.wordWithContent__c37aaf41 {
  align-items: center;
  display: inline-flex;
  white-space: nowrap;
}
.before__ca8d46a2 :first-child {
  margin-right: 4px;
}
.after__81e78c86 :last-child {
  margin-left: 4px;
}
html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: 100vw;
}
@media (max-width: 1192px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    left: calc(50vw - 500px);
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    position: absolute;
    top: 24px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    left: 32px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8 {
    left: 72px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxClose__cf017f28 {
    right: 32px;
  }
}
@media (min-width: 1192px) and (max-width: 1314px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    left: 96px;
    width: calc(100vw - 192px);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    left: 16px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8 {
    left: calc(-80px + 100vw);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxClose__cf017f28 {
    left: calc(-80px + 100vw);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1314px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    left: calc(50vw - 561px);
    width: 1122px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxPrev__6c85b7ab {
    left: calc(50vw - 641px);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxNext__d82f3ee8 {
    left: calc(50vw + 577px);
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxClose__cf017f28 {
    left: calc(50vw + 577px);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1192px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
    display: none;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    height: 0;
    position: static;
    z-index: 100;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
    display: block;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
    display: none;
  }
}
@media (max-width: 1000px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39 {
    min-width: 0;
    position: fixed;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
    overflow: hidden;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-0 .lightBoxControls__634c5d2e {
    left: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
    box-sizing: border-box;
  }
}
html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(100vw - 15px);
}
@media (max-width: 1207px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    left: calc(50vw - 507.5px);
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    position: absolute;
    top: 24px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    left: 32px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8 {
    left: 72px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxClose__cf017f28 {
    right: 32px;
  }
}
@media (min-width: 1207px) and (max-width: 1329px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    left: 96px;
    width: calc(100vw - 207px);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    left: 16px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8 {
    left: calc(-95px + 100vw);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxClose__cf017f28 {
    left: calc(-95px + 100vw);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1329px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    left: calc(50vw - 568.5px);
    width: 1122px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxPrev__6c85b7ab {
    left: calc(50vw - 648.5px);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxNext__d82f3ee8 {
    left: calc(50vw + 569.5px);
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxClose__cf017f28 {
    left: calc(50vw + 569.5px);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1207px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
    display: none;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    height: 0;
    position: static;
    z-index: 100;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
    display: block;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
    display: none;
  }
}
@media (max-width: 1015px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39 {
    min-width: 0;
    position: fixed;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
    overflow: hidden;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-15 .lightBoxControls__634c5d2e {
    left: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
    box-sizing: border-box;
  }
}
html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(100vw - 16px);
}
@media (max-width: 1208px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    left: calc(50vw - 508px);
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    position: absolute;
    top: 24px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    left: 32px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8 {
    left: 72px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxClose__cf017f28 {
    right: 32px;
  }
}
@media (min-width: 1208px) and (max-width: 1330px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    left: 96px;
    width: calc(100vw - 208px);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    left: 16px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8 {
    left: calc(-96px + 100vw);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxClose__cf017f28 {
    left: calc(-96px + 100vw);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1330px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    left: calc(50vw - 569px);
    width: 1122px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxPrev__6c85b7ab {
    left: calc(50vw - 649px);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxNext__d82f3ee8 {
    left: calc(50vw + 569px);
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxClose__cf017f28 {
    left: calc(50vw + 569px);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1208px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
    display: none;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    height: 0;
    position: static;
    z-index: 100;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
    display: block;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
    display: none;
  }
}
@media (max-width: 1016px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39 {
    min-width: 0;
    position: fixed;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
    overflow: hidden;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-16 .lightBoxControls__634c5d2e {
    left: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
    box-sizing: border-box;
  }
}
html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(100vw - 17px);
}
@media (max-width: 1209px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    left: calc(50vw - 508.5px);
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    position: absolute;
    top: 24px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    left: 32px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8 {
    left: 72px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxClose__cf017f28 {
    right: 32px;
  }
}
@media (min-width: 1209px) and (max-width: 1331px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    left: 96px;
    width: calc(100vw - 209px);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    left: 16px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8 {
    left: calc(-97px + 100vw);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxClose__cf017f28 {
    left: calc(-97px + 100vw);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1331px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    left: calc(50vw - 569.5px);
    width: 1122px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxPrev__6c85b7ab {
    left: calc(50vw - 649.5px);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxNext__d82f3ee8 {
    left: calc(50vw + 568.5px);
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxClose__cf017f28 {
    left: calc(50vw + 568.5px);
    position: fixed;
    top: 16px;
  }
}
@media (min-width: 1209px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
    display: none;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    height: 0;
    position: static;
    z-index: 100;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
    display: block;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
    display: none;
  }
}
@media (max-width: 1017px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39 {
    min-width: 0;
    position: fixed;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
    overflow: hidden;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
  html.LightBoxIE__9a260194.scroll-17 .lightBoxControls__634c5d2e {
    left: 0;
    width: 1000px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
    box-sizing: border-box;
  }
}
.lightBoxControls__634c5d2e {
  background-color: var(--triplex-LightBox-Controls_Background-13-0-2);
  height: 80px;
  position: fixed;
  top: 0;
  top: var(--lightBox-screen-top);
  z-index: 150;
}
.lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: block;
}
.lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: none;
}
.lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21:hover,
.lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25:hover {
  cursor: pointer;
}
.withKeyboardEvent__e49db191 {
  display: inline-block;
}
.lightBox__b50b9c39.isLoading__eb6020ab .withKeyboardEvent__e49db191,
.lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .withKeyboardEvent__e49db191,
.lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .withKeyboardEvent__e49db191,
.withoutKeyboardEvent__5617967d {
  display: none;
}
.lightBox__b50b9c39.isLoading__eb6020ab .withoutKeyboardEvent__5617967d,
.lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .withoutKeyboardEvent__5617967d,
.lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .withoutKeyboardEvent__5617967d {
  display: inline-block;
}
.lightBox__b50b9c39.isLoading__eb6020ab .lightBoxNext__d82f3ee8,
.lightBox__b50b9c39.isLoading__eb6020ab .lightBoxPrev__6c85b7ab {
  display: none;
}
@media (max-width: 767px) {
  .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
    height: 56px;
  }
  .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e .lightBoxClose__cf017f28 {
    right: 16px!important;
    top: 18px !important;
  }
  .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e .lightBoxPrev__6c85b7ab {
    left: 16px!important;
    top: 16px !important;
  }
  .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e .lightBoxNext__d82f3ee8 {
    left: 56px!important;
    top: 16px !important;
  }
}
@media screen and (max-height: 800px) {
  .lightBoxControls__634c5d2e {
    position: absolute;
    top: 0;
  }
}
html:not(.LightBoxIE__9a260194).scroll-0 .lightBox__b50b9c39 {
  left: var(--lightBox-screen-left);
}
html:not(.LightBoxIE__9a260194).scroll-0 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 500px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxControls__634c5d2e {
  z-index: 400;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 500px + var(--lightBox-screen-left));
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  position: absolute;
  top: 24px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  left: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8 {
  left: 72px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28 {
  right: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 192px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-left));
  width: calc(var(--lightBox-screen-width) - 192px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 16px - var(--lightBox-screen-width)/2);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 80px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28 {
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 561px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 561px + var(--lightBox-screen-left));
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 641px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 577px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxClose__cf017f28 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 577px);
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e {
  height: 0;
  position: static;
  z-index: 100;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: block;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 {
  min-width: 0;
  position: fixed;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
  overflow: hidden;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
  left: 0;
  position: absolute;
  top: 0;
  width: calc(var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc,
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d {
  left: 0;
  width: calc(var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  box-sizing: border-box;
}
html:not(.LightBoxIE__9a260194).scroll-15 .lightBox__b50b9c39 {
  left: var(--lightBox-screen-left);
}
html:not(.LightBoxIE__9a260194).scroll-15 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(var(--lightBox-screen-width) - 15px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 507.5px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxControls__634c5d2e {
  z-index: 400;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 507.5px + var(--lightBox-screen-left));
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  position: absolute;
  top: 24px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  left: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8 {
  left: 72px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28 {
  right: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 207px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-left));
  width: calc(var(--lightBox-screen-width) - 207px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 16px - var(--lightBox-screen-width)/2);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 95px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28 {
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 568.5px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 568.5px + var(--lightBox-screen-left));
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 648.5px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 569.5px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxClose__cf017f28 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 569.5px);
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e {
  height: 0;
  position: static;
  z-index: 100;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: block;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 {
  min-width: 0;
  position: fixed;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
  overflow: hidden;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
  left: 0;
  position: absolute;
  top: 0;
  width: calc(var(--lightBox-screen-width) - 15px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc,
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d {
  left: 0;
  width: calc(var(--lightBox-screen-width) - 15px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  box-sizing: border-box;
}
html:not(.LightBoxIE__9a260194).scroll-16 .lightBox__b50b9c39 {
  left: var(--lightBox-screen-left);
}
html:not(.LightBoxIE__9a260194).scroll-16 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(var(--lightBox-screen-width) - 16px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 508px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxControls__634c5d2e {
  z-index: 400;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 508px + var(--lightBox-screen-left));
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  position: absolute;
  top: 24px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  left: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8 {
  left: 72px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28 {
  right: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 208px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-left));
  width: calc(var(--lightBox-screen-width) - 208px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 16px - var(--lightBox-screen-width)/2);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28 {
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 569px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 569px + var(--lightBox-screen-left));
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 649px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 569px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxClose__cf017f28 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 569px);
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e {
  height: 0;
  position: static;
  z-index: 100;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: block;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 {
  min-width: 0;
  position: fixed;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
  overflow: hidden;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
  left: 0;
  position: absolute;
  top: 0;
  width: calc(var(--lightBox-screen-width) - 16px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc,
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d {
  left: 0;
  width: calc(var(--lightBox-screen-width) - 16px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  box-sizing: border-box;
}
html:not(.LightBoxIE__9a260194).scroll-17 .lightBox__b50b9c39 {
  left: var(--lightBox-screen-left);
}
html:not(.LightBoxIE__9a260194).scroll-17 .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  width: calc(var(--lightBox-screen-width) - 17px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 508.5px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBox__b50b9c39.isLoading__eb6020ab .lightBoxControls__634c5d2e {
  z-index: 400;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 508.5px + var(--lightBox-screen-left));
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  position: absolute;
  top: 24px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxPrev__6c85b7ab {
  left: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxNext__d82f3ee8 {
  left: 72px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxClose__cf017f28 {
  right: 32px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 209px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-left));
  width: calc(var(--lightBox-screen-width) - 209px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 16px - var(--lightBox-screen-width)/2);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 97px - var(--lightBox-screen-width)/2 + var(--lightBox-screen-width));
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxClose__cf017f28 {
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc {
  left: calc(var(--lightBox-screen-width)/2 - 569.5px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxControls__634c5d2e {
  left: calc(var(--lightBox-screen-width)/2 - 569.5px + var(--lightBox-screen-left));
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxPrev__6c85b7ab {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 - 649.5px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxNext__d82f3ee8 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 568.5px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxClose__cf017f28 {
  left: calc(var(--lightBox-screen-left) + var(--lightBox-screen-width)/2 + 568.5px);
  position: fixed;
  top: 16px;
  top: calc(16px + var(--lightBox-screen-top));
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 .lightBoxPrev__6c85b7ab,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxClose__cf017f28,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxNext__d82f3ee8,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d .lightBoxPrev__6c85b7ab {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e {
  height: 0;
  position: static;
  z-index: 100;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsBig__52843b21 {
  display: block;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash .lightBoxControls__634c5d2e .lightBoxControlsSmall__0ce4ce25 {
  display: none;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 {
  min-width: 0;
  position: fixed;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6 {
  overflow: hidden;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxControls__634c5d2e {
  left: 0;
  position: absolute;
  top: 0;
  width: calc(var(--lightBox-screen-width) - 17px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc,
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxContent__a48b9abc > .loadingContentOverlay__0c4f885d {
  left: 0;
  width: calc(var(--lightBox-screen-width) - 17px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  box-sizing: border-box;
}
.firstFocus__5ea3280d {
  height: 0;
  left: -10000px;
  position: absolute;
  width: 0;
}
.lightBox__b50b9c39 {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  min-width: 1024px;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  top: var(--lightBox-screen-top);
  width: 100%;
  width: var(--lightBox-screen-width);
  z-index: 1300;
}
.lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
  background-color: var(--triplex-Backdrop-background-13-0-2);
  content: "";
  height: 100%;
  pointer-events: none;
  position: fixed;
  width: 100%;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .lightBox__b50b9c39 .lightBoxBackdrop__92bf63cf {
    bottom: 1px;
    min-height: calc(100% + 1px);
  }
}
.lightBox__b50b9c39.lightBoxSideOverlayActive__3454c3c6,
.lightBox__b50b9c39.lightBoxTopOverlayActive__e323870d {
  overflow-y: hidden;
}
.lightBox__b50b9c39 .lightBoxNext__d82f3ee8,
.lightBox__b50b9c39 .lightBoxPrev__6c85b7ab {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.lightBox__b50b9c39 .lightBoxContent__a48b9abc {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  position: relative;
}
.lightBox__b50b9c39 .lightBoxContent__a48b9abc .lightBoxBody__f4e2f00a {
  flex-grow: 1;
}
.lightBox__b50b9c39 .loadingContentOverlay__0c4f885d {
  bottom: 0;
  position: fixed;
  top: 0;
  z-index: 300;
}
.lightBox__b50b9c39 .loadingContentOverlay__0c4f885d.hidden__11cbc05e {
  display: none;
}
.lightBox__b50b9c39 .lightBoxContentResizeWrapper__a37f1186 {
  height: 0;
  left: 0;
  position: absolute;
  right: 0;
}
.lightBox__b50b9c39 .tempElSafariBug__139ee9cc {
  left: -1000px;
  position: absolute;
  top: 0;
  visibility: hidden;
}
.bodyOverflowHidden__91915770 {
  overflow: hidden;
}
.lightBoxTopOverlayMask__c37fa345 {
  transition: opacity 0s;
}
.lightBoxTopOverlayWrapper__e7d610c1 {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.lightBoxTopOverlayWrapper__e7d610c1.closing__8672e857,
.lightBoxTopOverlayWrapper__e7d610c1.opened__db93984d {
  bottom: 0;
}
.lightBoxTopOverlayWrapper__e7d610c1 .lightBoxTopOverlayPanel__14ce7e52 {
  box-shadow: none;
  transition: transform 0.6s;
}
.lightBoxTopOverlay__f746b956 {
  z-index: 500;
}
html.LightBoxIE__9a260194 .lightBoxTopOverlayWrapper__e7d610c1 {
  top: 0;
}
html.LightBoxIE__9a260194 .lightBoxSideOverlayWrapper__6cf549be {
  min-height: 100%;
  top: 0;
}
html.LightBoxIE__9a260194 .lightBoxSideOverlayContent__f008d5da {
  min-height: 100vh;
}
@media (max-width: 1192px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 500px);
    width: 1000px;
  }
}
@media (min-width: 1192px) and (max-width: 1314px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlay__c790db65 {
    left: 96px;
    width: calc(100vw - 192px);
  }
}
@media (min-width: 1314px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 561px);
    width: 1122px;
  }
}
@media (max-width: 1000px) {
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlay__c790db65 {
    left: 0;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
    left: 0;
    position: fixed;
    right: auto;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeLG__da3b4b62 .lightBoxSideOverlay__c790db65 {
    min-width: 840px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeMD__bb6b5d30 .lightBoxSideOverlay__c790db65 {
    min-width: 640px;
  }
  html.LightBoxIE__9a260194.scroll-0 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeSM__8c1115de .lightBoxSideOverlay__c790db65 {
    min-width: 520px;
  }
}
@media (max-width: 1207px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 507.5px);
    width: 1000px;
  }
}
@media (min-width: 1207px) and (max-width: 1329px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlay__c790db65 {
    left: 96px;
    width: calc(100vw - 207px);
  }
}
@media (min-width: 1329px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 568.5px);
    width: 1122px;
  }
}
@media (max-width: 1015px) {
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlay__c790db65 {
    left: 0;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
    left: 0;
    position: fixed;
    right: auto;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeLG__da3b4b62 .lightBoxSideOverlay__c790db65 {
    min-width: 840px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeMD__bb6b5d30 .lightBoxSideOverlay__c790db65 {
    min-width: 640px;
  }
  html.LightBoxIE__9a260194.scroll-15 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeSM__8c1115de .lightBoxSideOverlay__c790db65 {
    min-width: 520px;
  }
}
@media (max-width: 1208px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 508px);
    width: 1000px;
  }
}
@media (min-width: 1208px) and (max-width: 1330px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlay__c790db65 {
    left: 96px;
    width: calc(100vw - 208px);
  }
}
@media (min-width: 1330px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 569px);
    width: 1122px;
  }
}
@media (max-width: 1016px) {
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlay__c790db65 {
    left: 0;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
    left: 0;
    position: fixed;
    right: auto;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeLG__da3b4b62 .lightBoxSideOverlay__c790db65 {
    min-width: 840px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeMD__bb6b5d30 .lightBoxSideOverlay__c790db65 {
    min-width: 640px;
  }
  html.LightBoxIE__9a260194.scroll-16 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeSM__8c1115de .lightBoxSideOverlay__c790db65 {
    min-width: 520px;
  }
}
@media (max-width: 1209px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 508.5px);
    width: 1000px;
  }
}
@media (min-width: 1209px) and (max-width: 1331px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlay__c790db65 {
    left: 96px;
    width: calc(100vw - 209px);
  }
}
@media (min-width: 1331px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlay__c790db65 {
    left: calc(50vw - 569.5px);
    width: 1122px;
  }
}
@media (max-width: 1017px) {
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlay__c790db65 {
    left: 0;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
    left: 0;
    position: fixed;
    right: auto;
    width: 100%;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeLG__da3b4b62 .lightBoxSideOverlay__c790db65 {
    min-width: 840px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeMD__bb6b5d30 .lightBoxSideOverlay__c790db65 {
    min-width: 640px;
  }
  html.LightBoxIE__9a260194.scroll-17 .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d.sizeSM__8c1115de .lightBoxSideOverlay__c790db65 {
    min-width: 520px;
  }
}
.lightBoxSideOverlayMask__c09fa8eb {
  transition: opacity 0s;
}
.lightBoxSideOverlayWrapper__6cf549be {
  left: 0;
  min-height: calc(100% - var(--lightBox-screen-top));
  overflow-y: auto;
  position: fixed;
  top: var(--lightBox-screen-top);
  visibility: hidden;
  width: 0;
  z-index: 200;
}
.lightBoxSideOverlayWrapper__6cf549be.overflowXHidden__4415857a {
  overflow-x: hidden;
}
.lightBoxSideOverlayWrapper__6cf549be.overflowYHidden__5fb033ea {
  overflow-y: hidden;
}
.lightBoxSideOverlayWrapper__6cf549be.closing__8672e857,
.lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  right: 0;
  visibility: visible;
  width: auto;
  width: var(--lightBox-screen-width);
}
.lightBoxSideOverlayWrapper__6cf549be.closing__8672e857 {
  pointer-events: none;
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayContent__f008d5da {
  box-shadow: -13px 0 17px 0 rgba(0, 0, 0, 0.14);
  margin-left: auto;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.6s;
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayContent__f008d5da.opened__db93984d {
  transform: none;
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayContent__f008d5da.opening__7956dfde {
  transform: translateX(0);
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayContent__f008d5da .spinnerWrapper__d4a9ec5b {
  height: 100vh;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 300;
}
.lightBoxSideOverlayWrapper__6cf549be.openedTopLevelSideOverlay__8008f637 .lightBoxSideOverlayContent__f008d5da {
  box-shadow: -13px 0 17px 0 rgba(0, 0, 0, 0.5);
}
.lightBoxSideOverlayWrapper__6cf549be.sizeSM__8c1115de .lightBoxSideOverlayContent__f008d5da {
  max-width: 100%;
  width: 480px;
}
.lightBoxSideOverlayWrapper__6cf549be.sizeMD__bb6b5d30 .lightBoxSideOverlayContent__f008d5da {
  max-width: 100%;
  width: 600px;
}
.lightBoxSideOverlayWrapper__6cf549be.sizeLG__da3b4b62 .lightBoxSideOverlayContent__f008d5da {
  max-width: 100%;
  width: 800px;
}
.lightBoxSideOverlayWrapper__6cf549be .lightBoxSideOverlayBase__02fbaf60 {
  bottom: auto;
  height: 100%;
  overflow: visible;
}
@media (max-width: 767px) {
  .lightBoxSideOverlayWrapper__6cf549be .globalHeaderTitleControls__7bdbf258 {
    position: absolute;
    right: 20px;
    top: 0;
  }
  .lightBoxSideOverlayWrapper__6cf549be .globalHeaderTitleContentText__8e68a77c {
    padding-right: 40px !important;
  }
}
.lightBoxSideOverlay__c790db65 {
  display: flex;
  min-height: 100%;
  position: absolute;
  top: 0;
}
.lightBoxSideOverlay__c790db65.closing__8672e857,
.lightBoxSideOverlay__c790db65.opening__7956dfde {
  overflow-x: hidden;
}
.lightBoxSideOverlayCloseButton__707c74bd {
  position: relative;
  top: 6px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-1-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 500px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 192px);
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-more-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 561px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlay__c790db65 {
  left: 0;
  width: 100%;
}
html:not(.LightBoxIE__9a260194).scroll-0 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  position: fixed;
  right: auto;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-1-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 507.5px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 207px);
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-more-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 568.5px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlay__c790db65 {
  left: 0;
  width: 100%;
}
html:not(.LightBoxIE__9a260194).scroll-15 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  position: fixed;
  right: auto;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-1-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 508px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 208px);
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-more-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 569px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlay__c790db65 {
  left: 0;
  width: 100%;
}
html:not(.LightBoxIE__9a260194).scroll-16 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  position: fixed;
  right: auto;
  width: var(--lightBox-screen-width);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-1-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 508.5px);
  width: 1000px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-1-no-hash.LB-less-or-equal-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 + 96px - var(--lightBox-screen-width)/2);
  width: calc(var(--lightBox-screen-width) - 209px);
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-more-media-point-2-no-hash .lightBoxSideOverlay__c790db65 {
  left: calc(var(--lightBox-screen-width)/2 - 569.5px);
  width: 1122px;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlay__c790db65 {
  left: 0;
  width: 100%;
}
html:not(.LightBoxIE__9a260194).scroll-17 .LB-less-or-equal-media-point-0-no-hash .lightBoxSideOverlayWrapper__6cf549be.opened__db93984d {
  left: var(--lightBox-screen-left);
  position: fixed;
  right: auto;
  width: var(--lightBox-screen-width);
}
.globalLabelWrapper__243cf80a {
  color: var(--triplex-Label-Color-13-0-2);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.globalLabelWrapper__243cf80a .label__2d375fd4 {
  display: inline;
  margin-bottom: 0;
  white-space: normal;
}
.globalLabelWrapper__243cf80a .codeNumber__cd125e32 {
  color: var(--triplex-Label-Code_Color-13-0-2);
  margin-left: 4px;
}
.globalLabelWrapper__243cf80a .description__0c4168fc {
  color: var(--triplex-Label-Description_Color-13-0-2);
  font-size: 12px;
  line-height: 16px;
  white-space: normal;
}
.inputGroup__effb4286 {
  display: flex;
}
.globalSelectDeprecated__505f97f5 .input__eaa4d8b0 {
  background: none;
  border: none;
  margin: -8px 0 0;
  padding: 0;
  text-overflow: ellipsis;
}
.input__eaa4d8b0 {
  background: var(--triplex-Input-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Input-BorderColor_Default-13-0-2);
  border-radius: 8px;
  box-sizing: border-box;
  caret-color: var(--triplex-Input-Caret_Color-13-0-2);
  color: var(--triplex-Input-Color_Default-13-0-2);
  font-family: inherit;
  font-size: 14px;
  height: 32px;
  line-height: 16px;
  min-width: 0;
  outline: none;
  padding: 7px 11px;
  width: 100%;
}
.input__eaa4d8b0::-webkit-input-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.input__eaa4d8b0::-moz-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.input__eaa4d8b0::placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.input__eaa4d8b0:focus {
  border-color: var(--triplex-Input-BorderColor_Focus-13-0-2);
}
.input__eaa4d8b0:disabled {
  -webkit-text-fill-color: var(--triplex-Input-Color_Disabled-13-0-2);
  background: var(--triplex-Input-Background_Disabled-13-0-2);
  border-color: var(--triplex-Input-BorderColor_Disabled-13-0-2);
  color: var(--triplex-Input-Color_Disabled-13-0-2);
  cursor: default;
  opacity: 1;
}
.input__eaa4d8b0.error__9066e9e1 {
  border-color: var(--triplex-Input-BorderColor_Error-13-0-2);
}
.input__eaa4d8b0::-ms-clear {
  display: none;
}
.grouped__52c5f297 {
  flex: 1;
}
.grouped__52c5f297:not(:first-child) {
  margin-left: -1px;
}
.grouped__52c5f297.left__a21a8f2d {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__52c5f297.intermediate__63f32a48 {
  border-radius: 0;
}
.grouped__52c5f297.right__b20ecea1 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__52c5f297.error__9066e9e1 {
  z-index: 1;
}
.grouped__52c5f297:focus {
  z-index: 2;
}
.ABYAhQ,
.AI4Abg,
.AI8ADg,
.AIcA_w,
.AKsAnw,
.ALcAqQ,
.AMQAjA,
.AP4A4A,
.APYAZA {
  fill: #b2b8bf;
}
.ACAAiQ,
.ADUArg {
  fill: #1f1f22;
}
.AKEA0g,
.AMYAjA {
  fill: #fff;
}
.AAQA4w,
.AH4ADg {
  fill: #565b62;
}
.AIMABA,
.AJEA5w,
.AL8ADg {
  fill: #b2b8bf;
}
@media (-ms-high-contrast: none), (hover: hover) and (pointer: fine), only screen and (-ms-high-contrast: active) {
  tr:hover button:enabled .table-icon .service-fill {
    fill: #b2b8bf;
  }
  tr:hover button:enabled:hover .table-icon .service-fill {
    fill: #7d838a;
  }
  .hoverable:hover .AKsAnw {
    fill: #21a19a;
  }
  .hoverable:hover .AP4A4A {
    fill: #107f8c;
  }
  .hoverable:hover .AJQA9g {
    fill: #e4e8eb;
  }
  .hoverable:hover .AC0A7g {
    fill: #b2b8bf;
  }
  .hoverable:hover .AKsA-A {
    fill: #e4e8eb;
  }
  .hoverable:hover .AJYA7A {
    fill: #7d838a;
  }
  .hoverable:hover .AAcAHA {
    fill: #b2b8bf;
  }
  .hoverable:hover .ANAApQ {
    fill: #fff;
  }
  .hoverable:hover .AIcA_w {
    fill: #e4e8eb;
  }
  .hoverable:hover .AI8ADg,
  .hoverable:hover .ALcAqQ {
    fill: #107f8c;
  }
  .hoverable:hover .AOwA-g {
    fill: #21a19a;
  }
  .hoverable:hover .ANUA6A {
    fill: #107f8c;
  }
  .hoverable:hover .AHMA_g {
    fill: #21a19a;
  }
  .hoverable:hover .AGYAAA {
    fill: #f90;
  }
  .hoverable:hover .AFcAxA {
    fill: #7d838a;
  }
  .hoverable:hover .AJQAgQ {
    fill: #1f1f22;
  }
  .hoverable:hover .ACwAGQ {
    fill: #e4e8eb;
  }
  .hoverable:hover .ADEApg {
    fill: #1f1f22;
  }
  .hoverable:hover .APUAvw {
    fill: #7d838a;
  }
  .hoverable:hover .AMsAgw {
    fill: #005e7f;
  }
  .hoverable:hover .AJsA8w {
    fill: #90d0cc;
  }
  .hoverable:hover .APgA0Q {
    fill: #fff;
  }
  .hoverable:hover .ACAAiQ,
  .hoverable:hover .ADUArg {
    fill: #1f1f22;
  }
  .hoverable:hover .AOIA5A {
    fill: #e4e8eb;
  }
  .hoverable:hover .ABgAfQ {
    fill: #2d2d30;
  }
  .hoverable:hover .AG4AAg {
    fill: #e4e8eb;
  }
  .hoverable:hover .ABoAyA,
  .hoverable:hover .AJEAlg {
    fill: #565b62;
  }
  .hoverable:hover .ABIASg {
    fill: #fff;
  }
  .hoverable:hover .AJ0AVg {
    fill: #e4e8eb;
  }
  .hoverable:hover .ANcA2Q {
    fill: #565b62;
  }
  .hoverable:hover .AKEA0g,
  .hoverable:hover .AMYAjA {
    fill: #fff;
  }
  .hoverable:hover .AM0AGg {
    fill: #7d838a;
  }
  .hoverable:hover .APEAAQ {
    fill: #21a19a;
  }
  .hoverable:hover .AAMA4g {
    fill: #107f8c;
  }
  .hoverable:hover .AIQAjw {
    fill: #fff;
  }
  .hoverable:hover .AIAAsw {
    fill: #565b62;
  }
  .hoverable:hover .ADQA7Q {
    fill: #e4e8eb;
  }
  .hoverable:hover .AKsAjA {
    fill: #107f8c;
  }
  .hoverable:hover .AKoAqw {
    fill: #005e7f;
  }
  .hoverable:hover .AEEA7g {
    fill: #7d838a;
  }
  .hoverable:hover .AJAA6w {
    fill: #1f1f22;
  }
  .hoverable:hover .AH4ADg {
    fill: #e4e8eb;
  }
  .hoverable:hover .AAQA4w {
    fill: #1f1f22;
  }
  .hoverable:hover .AJEA5w {
    fill: #db1237;
  }
  .hoverable:hover .AIMABA,
  .hoverable:hover .AL8ADg {
    fill: #21a19a;
  }
  .hoverable:hover .AAUAuw {
    fill: #db1237;
  }
  .hoverable:hover .ADkAqw {
    fill: #fff;
  }
  .hoverable:hover .ADMA4g {
    fill: #21a19a;
  }
  .hoverable:hover .ANcAWQ {
    fill: #fff;
  }
  .hoverable:hover .APcA2A {
    fill: #21a19a;
  }
}
.hoverable.active .ACAAiQ,
.hoverable.active .ADUArg,
.hoverable:not(:disabled):active .ACAAiQ,
.hoverable:not(:disabled):active .ADUArg {
  fill: #1f1f22;
}
.hoverable.active .ABoAyA,
.hoverable.active .AJEAlg,
.hoverable:not(:disabled):active .ABoAyA,
.hoverable:not(:disabled):active .AJEAlg {
  fill: #565b62;
}
.hoverable.active .AKEA0g,
.hoverable.active .AMYAjA,
.hoverable:not(:disabled):active .AKEA0g,
.hoverable:not(:disabled):active .AMYAjA {
  fill: #fff;
}
.hoverable.disabled .ADQA7Q,
.hoverable.disabled .AIcA_w,
.hoverable.disabled .AKsAjA,
.hoverable.disabled .ALcAqQ,
.hoverable.disabled .AMsAgw,
.hoverable.disabled .APUAvw,
.hoverable:disabled .ADQA7Q,
.hoverable:disabled .AIcA_w,
.hoverable:disabled .AKsAjA,
.hoverable:disabled .ALcAqQ,
.hoverable:disabled .AMsAgw,
.hoverable:disabled .APUAvw {
  fill: #565b62;
}
button.helpBoxButton__c961ec19 {
  position: relative;
  vertical-align: text-bottom;
}
.helpBoxTooltipBody__1b99a7af {
  padding-right: 16px;
}
.globalHeaderTitle__b1c60466 {
  display: flex;
  justify-content: space-between;
  padding: 24px 32px;
}
.globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f .globalHeaderTitleContentText__8e68a77c {
  box-sizing: border-box;
  color: var(--triplex-Header-Title_Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
  outline: none;
  padding: 0;
  text-transform: none;
}
.globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f .headerTitleContentSubhead__d3e91e6a {
  color: var(--triplex-Header-TitleSubhead_Color-13-0-2);
  font-size: 14px;
  line-height: 20px;
}
.globalHeaderTitle__b1c60466 .globalHeaderTitleControls__7bdbf258 {
  padding-left: 24px;
  white-space: nowrap;
}
.headerLink__c8884610 + .globalHeaderTitle__b1c60466 {
  padding-top: 0;
}
@media (max-width: 767px) {
  .globalHeaderTitle__b1c60466 {
    flex-wrap: wrap;
    padding: 20px 16px;
  }
  .globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f {
    width: 100%;
  }
  .globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f .globalHeaderTitleContentText__8e68a77c {
    font-size: 16px;
    line-height: 24px;
  }
  .globalHeaderTitle__b1c60466 .headerTitleContent__2c9d241f .headerTitleContentSubhead__d3e91e6a {
    margin-top: 4px;
  }
  .globalHeaderTitle__b1c60466 .globalHeaderTitleControls__7bdbf258 {
    margin-left: -16px;
    padding-left: 0;
    white-space: normal;
  }
  .globalHeaderTitle__b1c60466 .globalHeaderTitleControls__7bdbf258 > .globalButtonDropdownExtended__434de4f1,
  .globalHeaderTitle__b1c60466 .globalHeaderTitleControls__7bdbf258 > button {
    margin-left: 16px;
    margin-top: 16px;
  }
}
.globalHeaderTabs__6982ea05 {
  display: flex;
  justify-content: space-between;
}
.globalHeaderTabs__6982ea05 .headerTabsContent__aa572a0a {
  flex-grow: 1;
  min-width: 1px;
}
.globalHeaderTabs__6982ea05 .headerTabsControls__ee08df4e {
  flex-shrink: 0;
  padding-left: 24px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .globalHeaderTabs__6982ea05 {
    flex-wrap: wrap;
  }
  .globalHeaderTabs__6982ea05 .headerTabsContent__aa572a0a {
    width: 100%;
  }
  .globalHeaderTabs__6982ea05 .headerTabsControls__ee08df4e {
    margin-left: -16px;
    padding-left: 0;
    white-space: normal;
  }
  .globalHeaderTabs__6982ea05 .headerTabsControls__ee08df4e > .globalButtonDropdownExtended__434de4f1,
  .globalHeaderTabs__6982ea05 .headerTabsControls__ee08df4e > button {
    margin-left: 16px;
    margin-top: 16px;
  }
}
.headerSubheader__cf42d572 {
  padding: 24px 32px;
}
.headerSubheader__cf42d572.withoutPaddings__1eb1c38a {
  padding: 0;
}
.headerLink__c8884610 {
  font-size: 14px;
  line-height: 20px;
  padding: 24px 32px 0;
}
@media (max-width: 767px) {
  .headerLink__c8884610 {
    padding: 20px 16px 0;
  }
}
.headerLayoutSidebar__bac60600 {
  display: flex;
  justify-content: space-between;
}
.headerLayoutSidebarContent__3c85f629 {
  flex-grow: 1;
  min-width: 1px;
}
@media (max-width: 767px) {
  .headerLayoutSidebarSidebar__e8a0c15f {
    display: none;
  }
}
.header__aadad214 {
  background: var(--triplex-Header-Background-13-0-2);
}
.header__aadad214.sticky__f0fdb2c0 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
}
.header__aadad214 .globalHeaderTabs__6982ea05:first-child {
  padding: 24px 32px 0;
}
.header__aadad214 .globalHeaderTitle__b1c60466 + .globalHeaderTabs__6982ea05 {
  padding: 0 32px 24px;
}
@media (max-width: 767px) {
  .header__aadad214 .globalHeaderTabs__6982ea05:first-child {
    padding: 16px 16px 0;
  }
  .header__aadad214 .globalHeaderTabs__6982ea05 + .globalHeaderTitle__b1c60466 {
    padding-top: 8px;
  }
  .header__aadad214 .globalHeaderTitle__b1c60466 + .globalHeaderTabs__6982ea05 {
    margin-top: -4px;
    padding: 0 16px 20px;
  }
}
html.scroll-0 .LB-less-or-equal-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 80px;
}
html.scroll-0 .LB-more-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 0;
}
html.scroll-0 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
html.scroll-0 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
  position: relative;
  top: 0;
}
@media screen and (max-height: 800px) {
  html.scroll-0 .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
  html.scroll-0 .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
    position: relative;
    top: 0 !important;
  }
}
html.scroll-15 .LB-less-or-equal-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 80px;
}
html.scroll-15 .LB-more-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 0;
}
html.scroll-15 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
html.scroll-15 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
  position: relative;
  top: 0;
}
@media screen and (max-height: 800px) {
  html.scroll-15 .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
  html.scroll-15 .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
    position: relative;
    top: 0 !important;
  }
}
html.scroll-16 .LB-less-or-equal-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 80px;
}
html.scroll-16 .LB-more-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 0;
}
html.scroll-16 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
html.scroll-16 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
  position: relative;
  top: 0;
}
@media screen and (max-height: 800px) {
  html.scroll-16 .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
  html.scroll-16 .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
    position: relative;
    top: 0 !important;
  }
}
html.scroll-17 .LB-less-or-equal-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 80px;
}
html.scroll-17 .LB-more-media-point-1-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0 {
  top: 0;
}
html.scroll-17 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
html.scroll-17 .LB-less-or-equal-media-point-0-no-hash .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
  position: relative;
  top: 0;
}
@media screen and (max-height: 800px) {
  html.scroll-17 .globalLightBoxContent__66a900cb .header__aadad214.sticky__f0fdb2c0,
  html.scroll-17 .globalLightBoxSideOverlay__5044b6d5 .header__aadad214.sticky__f0fdb2c0 {
    position: relative;
    top: 0 !important;
  }
}
.gap__32b44bf2 {
  overflow: hidden;
}
.gap__32b44bf2[data-gap-size="4"] {
  height: 4px;
}
.gap__32b44bf2[data-gap-size="8"] {
  height: 8px;
}
.gap__32b44bf2[data-gap-size="12"] {
  height: 12px;
}
.gap__32b44bf2[data-gap-size="16"] {
  height: 16px;
}
.gap__32b44bf2[data-gap-size="24"] {
  height: 24px;
}
.gap__32b44bf2[data-gap-size="32"] {
  height: 32px;
}
.gap__32b44bf2[data-gap-size="64"] {
  height: 64px;
}
.gap__32b44bf2[data-gap-size="128"] {
  height: 128px;
}
.formGroupLine__6b9d96e5.flex__63852ce2 {
  display: flex;
}
.formGroupLine__6b9d96e5 + .formGroupLine__6b9d96e5 {
  margin-top: 4px;
}
.formFieldTextarea__3152c23c {
  border: none;
  box-shadow: var(--triplex-FormField-Shadow_Default-13-0-2);
  height: 96px;
  padding-bottom: 16px;
  padding-top: 16px;
}
.formFieldTextarea__3152c23c::-webkit-input-placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
}
.formFieldTextarea__3152c23c::-moz-placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
}
.formFieldTextarea__3152c23c::placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
}
.formFieldTextarea__3152c23c:focus {
  box-shadow: var(--triplex-FormField-Shadow_Focus-13-0-2);
}
.formFieldTextarea__3152c23c:disabled {
  box-shadow: var(--triplex-FormField-Shadow_Disabled-13-0-2);
}
.formFieldTextarea__3152c23c.error__d62045f4 {
  box-shadow: var(--triplex-FormField-Shadow_Error-13-0-2);
}
.formFieldSidebar__53b961b5 {
  align-self: center;
  flex-shrink: 0;
  min-width: 16px;
  padding-left: 8px;
}
.formFieldSelect__e8d3af27 {
  min-width: 72px;
}
.formFieldSelectTarget__1c0cd8d6 {
  height: 48px;
  padding: 16px 12px;
}
.formFieldSelectDropdownListItem__60bec74b {
  overflow: hidden;
  text-overflow: ellipsis;
}
.formFieldPrefix__3bff2778 {
  gap: 4px;
  left: 0;
  padding: 0 8px 0 12px;
}
.formFieldPostfix__0d638c7a,
.formFieldPrefix__3bff2778 {
  align-items: center;
  bottom: 0;
  display: flex;
  position: absolute;
  top: 0;
}
.formFieldPostfix__0d638c7a {
  gap: 8px;
  padding: 0 12px 0 8px;
  right: 0;
}
.formFieldLabel__dd073764 {
  left: 0;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: 16px;
  transition: top 0.3s ease-out, left 0.3s ease-out;
  white-space: nowrap;
}
.formFieldLabel__dd073764.floating__16bbf6fe {
  left: 12px;
  top: -8px;
}
.formFieldLabelText__2bc30345 {
  color: var(--triplex-FormField-Label_Color_Default-13-0-2);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  padding-left: 0;
  padding-right: 0;
  transition-duration: 0.3s;
  transition-property: font-size, padding-left, padding-right;
  transition-timing-function: ease-out;
}
.floating__16bbf6fe .formFieldLabelText__2bc30345 {
  background: var(--triplex-FormField-Label_Background-13-0-2);
  font-size: 12px;
  padding-left: 4px;
  padding-right: 4px;
}
.disabled__73906794 .formFieldLabelText__2bc30345 {
  color: var(--triplex-FormField-Label_Color_Disabled-13-0-2);
}
.formFieldInput__7bccbfbf {
  -webkit-appearance: none;
  border: none;
  box-shadow: var(--triplex-FormField-Shadow_Default-13-0-2);
  height: 48px;
  padding-bottom: 16px;
  padding-top: 16px;
}
.formFieldInput__7bccbfbf::-webkit-input-placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.formFieldInput__7bccbfbf::-moz-placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
  opacity: 0;
  -moz-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.formFieldInput__7bccbfbf::placeholder {
  color: var(--triplex-FormField-Placeholder_Color-13-0-2);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.formFieldInput__7bccbfbf:focus {
  box-shadow: var(--triplex-FormField-Shadow_Focus-13-0-2);
}
.formFieldInput__7bccbfbf:focus::-webkit-input-placeholder {
  opacity: 1;
}
.formFieldInput__7bccbfbf:focus::-moz-placeholder {
  opacity: 1;
}
.formFieldInput__7bccbfbf:focus::placeholder {
  opacity: 1;
}
.formFieldInput__7bccbfbf:disabled {
  box-shadow: var(--triplex-FormField-Shadow_Disabled-13-0-2);
}
.formFieldInput__7bccbfbf.error__d62045f4 {
  box-shadow: var(--triplex-FormField-Shadow_Error-13-0-2);
}
.formFieldInput__7bccbfbf:-webkit-autofill {
  animation-duration: 1ms;
  animation-name: autofill-applied-hook__80dfdb38;
}
.formFieldInput__7bccbfbf:not(:-webkit-autofill) {
  animation-duration: 1ms;
  animation-name: autofill-cancelled-hook__7f41c7b3;
}
@keyframes autofill-applied-hook__80dfdb38 {
  0% {
    transform: none;
  }
}
@keyframes autofill-cancelled-hook__7f41c7b3 {
  0% {
    transform: none;
  }
}
.formFieldDescription__27210592 {
  color: var(--triplex-FormField-Description_Color_Default-13-0-2);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.formFieldDescription__27210592.error__d62045f4 {
  color: var(--triplex-FormField-Description_Color_Error-13-0-2);
}
.formFieldClear__3d93c4d0 {
  cursor: pointer;
  height: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.formFieldClear__3d93c4d0.shown__3846326c {
  opacity: 1;
}
.formField__7ca45c91 {
  flex-grow: 1;
  position: relative;
}
.footer__78d319dc {
  background: var(--triplex-Footer-Background-13-0-2);
  padding: 24px 32px;
}
.footer__78d319dc.sticky__48550f26 {
  bottom: 0;
  position: -webkit-sticky;
  position: sticky;
  z-index: 200;
}
.footerDescription__6efda884 {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.footerDescriptionContent__6c7c9aa2 {
  color: #1f1f22;
  color: var(--triplex-Footer-Color-13-0-2);
  flex-grow: 1;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-right: auto;
  text-transform: none;
}
.footerDescriptionControls__a9344848 {
  margin-left: auto;
  padding-left: 24px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footerDescription__6efda884 {
    align-items: normal;
    flex-wrap: wrap;
  }
  .footerDescriptionContent__6c7c9aa2 {
    width: 100%;
  }
  .footerDescriptionControls__a9344848 {
    margin-left: -16px;
    margin-top: -16px;
    padding-left: 0;
    white-space: normal;
  }
  .footerDescriptionControls__a9344848 > .globalButtonDropdownExtended__434de4f1,
  .footerDescriptionControls__a9344848 > button {
    margin-left: 16px;
    margin-top: 16px;
  }
  .footerDescriptionContent__6c7c9aa2 + .footerDescriptionControls__a9344848 {
    margin-top: 0;
  }
  .footer__78d319dc {
    padding: 16px;
  }
}
@media (max-width: 1000px) {
  html.scroll-0 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-0 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media screen and (max-height: 800px) {
  html.scroll-0 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-0 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media (max-width: 1015px) {
  html.scroll-15 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-15 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media screen and (max-height: 800px) {
  html.scroll-15 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-15 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media (max-width: 1016px) {
  html.scroll-16 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-16 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media screen and (max-height: 800px) {
  html.scroll-16 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-16 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media (max-width: 1017px) {
  html.scroll-17 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-17 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
@media screen and (max-height: 800px) {
  html.scroll-17 .globalLightBoxContent__66a900cb .footer__78d319dc.sticky__48550f26,
  html.scroll-17 .globalLightBoxSideOverlay__5044b6d5 .footer__78d319dc.sticky__48550f26 {
    position: relative;
  }
}
.field__3495090a {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.field__3495090a.alignLabel__a5ec00ea .globalLabelWrapper__243cf80a {
  padding-top: 6px;
}
.ellipsisLineClamp__3542eff7 {
  --ellipsis-line-clamp: 1;
  -webkit-line-clamp: var(--ellipsis-line-clamp);
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  padding: 0;
  white-space: normal;
  word-break: break-word;
}
.ellipsisLineClamp__3542eff7.oneLine__37482705 {
  word-break: break-all;
}
.ellipsisIe__0b728624 {
  word-wrap: break-word;
  white-space: normal;
}
.dropdownMobileMaskedInput__89534871 {
  background: transparent;
  border: none;
  border-radius: 0;
  height: 16px;
  padding: 0;
}
.dropdownMobileInput__366fc592 {
  background: none;
  border: none;
  border-radius: 0;
  color: var(--triplex-Input-Color_Default-13-0-2);
  display: block;
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
  outline: none;
  padding: 0;
  width: calc(100% - 12px);
}
.dropdownMobileInput__366fc592::-webkit-input-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.dropdownMobileInput__366fc592::-moz-placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.dropdownMobileInput__366fc592::placeholder {
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  opacity: 1;
}
.dropdownMobileInput__366fc592::-ms-clear {
  display: none;
}
.dropdownMobileWrapper__cd22cbf5 {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1500;
}
.dropdownMobileBackdrop__109fd432 {
  background: var(--triplex-DropdownMobile-Backdrop-13-0-2);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease-in-out;
}
.dropdownMobileBackdrop__109fd432.closing__7985185c {
  opacity: 0;
}
.dropdownMobileBackdrop__109fd432.opened__4c8bc8cf,
.dropdownMobileBackdrop__109fd432.opening__acd09079 {
  opacity: var(--triplex-DropdownMobile-Opacity-13-0-2);
}
.dropdownMobile__b3977a33 {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  max-height: 50vh;
  outline: none;
  position: absolute;
  right: 0;
  transition: transform 0.3s ease-in-out;
}
.dropdownMobile__b3977a33,
.dropdownMobile__b3977a33.closing__7985185c {
  transform: translateY(100%);
}
.dropdownMobile__b3977a33.opened__4c8bc8cf,
.dropdownMobile__b3977a33.opening__acd09079 {
  transform: translateY(0);
}
.globalMultiselectDropdownMobileWrapper__7be758b5 .dropdownMobile__b3977a33 {
  height: 50vh;
  justify-content: space-between;
}
.globalDatePickerExtendedDropdownMobileWrapper__7c78cc59 .dropdownMobile__b3977a33 {
  max-height: 100vh;
}
.dropdownMobileHeader__cabca1e9 {
  background: var(--triplex-DropdownMobile-Header_Background-13-0-2);
  flex-shrink: 1;
  min-height: 16px;
  padding: 16px 40px 16px 16px;
  position: relative;
}
.dropdownMobileContent__e8a187b7 {
  background: var(--triplex-DropdownMobile-Content_Background-13-0-2);
  flex-grow: 1;
  overflow: auto;
}
.dropdownMobileFooter__19d02a0f {
  background: var(--triplex-DropdownMobile-Footer_Background-13-0-2);
  border-top: 1px solid var(--triplex-DropdownMobile-Border_Color-13-0-2);
  flex-shrink: 1;
  padding: 16px;
}
.dropdownMobileListItem__ca45ccbb {
  padding: 12px 16px;
}
.dropdownMobileListItem__ca45ccbb.selected__53e19ce8 {
  background: var(--triplex-DropdownMobileList-Selected_Background-13-0-2);
}
.dropdownMobileListItem__ca45ccbb:active {
  background-color: var(--triplex-DropdownMobileList-Active_Background-13-0-2);
}
button.dropdownMobileClose__73db899f {
  position: absolute;
  right: 16px;
  top: 16px;
}
.dropdownMobileBodyOverflow__34ac7da3 {
  overflow: hidden;
}
.dropdownList__df5c6c83 {
  max-height: 196px;
  overflow: auto;
  padding: 4px;
}
.dropdownListItem__15fd295c {
  background: var(--triplex-DropdownList-Background_Default-13-0-2);
  border-radius: 8px;
  color: #1f1f22;
  color: var(--triplex-DropdownList-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  outline: none;
  padding: 6px 8px;
  position: relative;
  text-transform: none;
  white-space: nowrap;
}
.dropdownListItem__15fd295c + .dropdownListItem__15fd295c {
  margin-top: 2px;
}
.dropdownListItem__15fd295c.active__c5c3295e {
  background: var(--triplex-DropdownList-Background_Active-13-0-2);
  cursor: pointer;
}
.dropdownListItem__15fd295c.selected__53e19ce8 {
  background: var(--triplex-DropdownList-Background_Selected-13-0-2);
  cursor: default;
}
.dropdown__5f8cadb6 {
  background-color: var(--triplex-Dropdown-Background-13-0-2);
  border-radius: 8px;
  box-shadow: var(--triplex-Dropdown-Shadow-13-0-2);
  box-sizing: border-box;
  position: fixed;
  z-index: 1500;
}
.documentNumberEdit__c4b30de0 .label__547e1162 {
  display: inline-block;
  margin-right: 8px;
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5 {
  background: none;
  border: none;
  cursor: pointer;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5 .buttonEditInner__8da59cfc {
  border: 1px solid transparent;
  color: var(--triplex-Link-Text_Color_Default-13-0-2);
  margin: 0 -2px;
  padding: 0 2px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5 .buttonEditInner__8da59cfc {
    margin: 0;
  }
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5:focus {
  outline: none;
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5:focus .buttonEditInner__8da59cfc {
  border: 1px solid var(--triplex-Link-BorderColor_Focus-13-0-2);
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5:hover .buttonEditInner__8da59cfc {
  color: var(--triplex-Link-Text_Color_Hover-13-0-2);
}
.documentNumberEdit__c4b30de0 .buttonEdit__85bd01b5:active .buttonEditInner__8da59cfc {
  color: var(--triplex-Link-Text_Color_Active-13-0-2);
}
.documentNumberEdit__c4b30de0 .inputEditWrapper__37336740 {
  display: inline-block;
  width: 64px;
}
.divider__1685a861 {
  background: var(--triplex-Divider-Background-13-0-2);
  border: none;
  height: 1px;
  margin: 0;
}
.marginTopSize-4__7f6e5794 {
  margin-top: 4px;
}
.marginBottomSize-4__3f134f54 {
  margin-bottom: 4px;
}
.marginTopSize-8__525e6f52 {
  margin-top: 8px;
}
.marginBottomSize-8__655f8b0a {
  margin-bottom: 8px;
}
.marginTopSize-12__23760809 {
  margin-top: 12px;
}
.marginBottomSize-12__1e152c5c {
  margin-bottom: 12px;
}
.marginTopSize-16__ed031d8a {
  margin-top: 16px;
}
.marginBottomSize-16__475f01bf {
  margin-bottom: 16px;
}
.marginTopSize-20__809c2ec8 {
  margin-top: 20px;
}
.marginBottomSize-20__baeed4ab {
  margin-bottom: 20px;
}
.marginTopSize-24__909eefbe {
  margin-top: 24px;
}
.marginBottomSize-24__19db9c27 {
  margin-bottom: 24px;
}
.marginTopSize-28__4e3098f3 {
  margin-top: 28px;
}
.marginBottomSize-28__34a4cf31 {
  margin-bottom: 28px;
}
.marginTopSize-32__9654e7cd {
  margin-top: 32px;
}
.marginBottomSize-32__5c45ec98 {
  margin-bottom: 32px;
}
.dateRange__f92185dc {
  display: flex;
}
.dateRangeButton__efe45886 {
  z-index: 1;
}
.datePickerTarget__aca4d64c {
  position: relative;
}
button.datePickerTargetButton__69ef3e4c {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 6px;
}
.datePicker__b78856fa {
  width: 126px;
}
.confirm__94c041ab {
  background-color: var(--triplex-Confirm-Background-13-0-2);
  box-shadow: var(--triplex-Confirm-Shadow-13-0-2);
  flex-grow: 1;
  padding: 24px 76px 24px 32px;
}
.confirm__94c041ab .confirmCloseButton__7714f871 {
  position: absolute;
  right: 32px;
  top: 24px;
}
.confirm__94c041ab .confirmContent__603129b8 {
  margin-bottom: 32px;
}
.confirm__94c041ab .confirmControls__195211ce {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .confirm__94c041ab {
    padding: 20px 52px 20px 16px;
  }
  .confirm__94c041ab .confirmCloseButton__7714f871 {
    right: 16px;
    top: 26px;
  }
  .confirm__94c041ab .confirmContent__603129b8 {
    margin-bottom: 16px;
  }
}
.collapsableTreeNodeContent__6f4fff1d.collapsed__8b9f0cde {
  visibility: hidden;
}
.col-1__dcb0e7ab {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}
.col-1__dcb0e7ab,
.col-2__51c8c6e9 {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-2__51c8c6e9 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}
.col-3__02952ebd {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-3__02952ebd,
.col-4__4a59dca5 {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-4__4a59dca5 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}
.col-5__a93af805 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}
.col-5__a93af805,
.col-6__26ee974f {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-6__26ee974f {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7__df6747da {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}
.col-7__df6747da,
.col-8__990a8724 {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-8__990a8724 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}
.col-9__2cc52802 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10__aafa5256,
.col-9__2cc52802 {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-10__aafa5256 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}
.col-11__94666926 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}
.col-11__94666926,
.col-12__546fabcc {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  width: 100%;
}
.col-12__546fabcc {
  flex: 0 0 100%;
  max-width: 100%;
}
.offset-0__7e370a28 {
  margin-left: 0;
}
.offset-1__deb91c7b {
  margin-left: 8.33333333%;
}
.offset-2__1ca6741c {
  margin-left: 16.66666667%;
}
.offset-3__13dd6db7 {
  margin-left: 25%;
}
.offset-4__8a315965 {
  margin-left: 33.33333333%;
}
.offset-5__0158cda0 {
  margin-left: 41.66666667%;
}
.offset-6__194b3556 {
  margin-left: 50%;
}
.offset-7__4b3ea8a0 {
  margin-left: 58.33333333%;
}
.offset-8__66040cb2 {
  margin-left: 66.66666667%;
}
.offset-9__d23a9bfc {
  margin-left: 75%;
}
.offset-10__becbe5ef {
  margin-left: 83.33333333%;
}
.offset-11__299db8a2 {
  margin-left: 91.66666667%;
}
.d-none__50f03526 {
  display: none !important;
}
.d-block__eb7b7b4d {
  display: block !important;
}
@media (min-width: 576px) {
  .col-sm-1__7c5256fe {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-1__7c5256fe,
  .col-sm-2__2f2d66c4 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-2__2f2d66c4 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3__6c433bb8 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-3__6c433bb8,
  .col-sm-4__75c6f325 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-4__75c6f325 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5__1060ffca {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-5__1060ffca,
  .col-sm-6__63ea38f4 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-6__63ea38f4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7__c3d4cd53 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-7__c3d4cd53,
  .col-sm-8__a4a82414 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-8__a4a82414 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9__827c2f43 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10__e5cb233d,
  .col-sm-9__827c2f43 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-10__e5cb233d {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11__05c5e2a3 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-11__05c5e2a3,
  .col-sm-12__0f33f756 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-sm-12__0f33f756 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-sm-0__d32c24ad {
    margin-left: 0;
  }
  .offset-sm-1__ebe69b89 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2__df04ad2d {
    margin-left: 16.66666667%;
  }
  .offset-sm-3__e819af5c {
    margin-left: 25%;
  }
  .offset-sm-4__ea9b31a8 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5__66d3dd28 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6__378a928e {
    margin-left: 50%;
  }
  .offset-sm-7__da3ca17b {
    margin-left: 58.33333333%;
  }
  .offset-sm-8__6a5a9cd7 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9__60766671 {
    margin-left: 75%;
  }
  .offset-sm-10__797a7dc0 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11__96a11f87 {
    margin-left: 91.66666667%;
  }
  .d-none-sm__ecaf49c9 {
    display: none !important;
  }
  .d-block-sm__8aba3ac6 {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .col-md-1__1a20f44b {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-1__1a20f44b,
  .col-md-2__da32f82e {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-2__da32f82e {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3__5ddb6c66 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-3__5ddb6c66,
  .col-md-4__881d2898 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-4__881d2898 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5__3f39c0e9 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-5__3f39c0e9,
  .col-md-6__bc486306 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-6__bc486306 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7__ff3af6d3 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-7__ff3af6d3,
  .col-md-8__af17f261 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-8__af17f261 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9__1ae77721 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10__f3da7527,
  .col-md-9__1ae77721 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-10__f3da7527 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11__3ef63d46 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-11__3ef63d46,
  .col-md-12__72723bc6 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-md-12__72723bc6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-md-0__fd84667d {
    margin-left: 0;
  }
  .offset-md-1__09b4af44 {
    margin-left: 8.33333333%;
  }
  .offset-md-2__b03d8ec0 {
    margin-left: 16.66666667%;
  }
  .offset-md-3__3e5812d6 {
    margin-left: 25%;
  }
  .offset-md-4__4342b588 {
    margin-left: 33.33333333%;
  }
  .offset-md-5__84b08255 {
    margin-left: 41.66666667%;
  }
  .offset-md-6__bd2726e7 {
    margin-left: 50%;
  }
  .offset-md-7__0c0ce718 {
    margin-left: 58.33333333%;
  }
  .offset-md-8__d44037c9 {
    margin-left: 66.66666667%;
  }
  .offset-md-9__f248241d {
    margin-left: 75%;
  }
  .offset-md-10__deb7c49d {
    margin-left: 83.33333333%;
  }
  .offset-md-11__2867e5c4 {
    margin-left: 91.66666667%;
  }
  .d-none-md__586b23ee {
    display: none !important;
  }
  .d-block-md__56171e8d {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .col-lg-1__3844a0dd {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-1__3844a0dd,
  .col-lg-2__5673036b {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-2__5673036b {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3__c41c105a {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-3__c41c105a,
  .col-lg-4__93b57857 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-4__93b57857 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5__549a62ab {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-5__549a62ab,
  .col-lg-6__6c4d7509 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-6__6c4d7509 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7__63778e42 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-7__63778e42,
  .col-lg-8__ccee5aa0 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-8__ccee5aa0 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9__8fd0081a {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10__eb82775f,
  .col-lg-9__8fd0081a {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-10__eb82775f {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11__749aa3e8 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-11__749aa3e8,
  .col-lg-12__91785db0 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-lg-12__91785db0 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-lg-0__0f77fe2a {
    margin-left: 0;
  }
  .offset-lg-1__5ba70cb3 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2__394942ad {
    margin-left: 16.66666667%;
  }
  .offset-lg-3__a49d10cb {
    margin-left: 25%;
  }
  .offset-lg-4__0c87ab91 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5__58858e63 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6__239ab440 {
    margin-left: 50%;
  }
  .offset-lg-7__b8878114 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8__abed1849 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9__a2f3b3be {
    margin-left: 75%;
  }
  .offset-lg-10__bc3ab006 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11__8edb795a {
    margin-left: 91.66666667%;
  }
  .d-none-lg__0fb96503 {
    display: none !important;
  }
  .d-block-lg__932d6037 {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .col-xl-1__02dbbfaa {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-1__02dbbfaa,
  .col-xl-2__c742afba {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-2__c742afba {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3__13a5ffce {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-3__13a5ffce,
  .col-xl-4__3834b50e {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-4__3834b50e {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5__c84facc7 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-5__c84facc7,
  .col-xl-6__09b55e65 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-6__09b55e65 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7__0347365d {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-7__0347365d,
  .col-xl-8__1ce825b4 {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-8__1ce825b4 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9__6dcd07bd {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10__571ab6d5,
  .col-xl-9__6dcd07bd {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-10__571ab6d5 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11__e5e65144 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-11__e5e65144,
  .col-xl-12__18bc68fd {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    width: 100%;
  }
  .col-xl-12__18bc68fd {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-xl-0__d06cf1ac {
    margin-left: 0;
  }
  .offset-xl-1__7b236ccd {
    margin-left: 8.33333333%;
  }
  .offset-xl-2__786f7376 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3__5edd0a90 {
    margin-left: 25%;
  }
  .offset-xl-4__398ed532 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5__9b83dc7d {
    margin-left: 41.66666667%;
  }
  .offset-xl-6__40b14b88 {
    margin-left: 50%;
  }
  .offset-xl-7__9cbc7527 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8__014ba8d1 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9__2170e940 {
    margin-left: 75%;
  }
  .offset-xl-10__c395cf13 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11__26a8bba4 {
    margin-left: 91.66666667%;
  }
  .d-none-xl__26332f98 {
    display: none !important;
  }
  .d-block-xl__833d9a2f {
    display: block !important;
  }
}
.chipGroup__fbe066d4 {
  display: flex;
  gap: 8px;
}
.chipGroup__fbe066d4.oneLine__80c21b81 {
  -ms-overflow-style: none;
  overflow: auto;
  scrollbar-width: none;
}
.chipGroup__fbe066d4.oneLine__80c21b81::-webkit-scrollbar {
  display: none;
}
.chipGroup__fbe066d4.multiLine__23a245dc {
  flex-wrap: wrap;
}
.chipSuggest__31d6ea88 {
  width: auto;
}
.chipOptionsContent__86e46eb5 {
  display: block;
  min-width: 14px;
  text-align: center;
}
.chipDropdownArrow__4333dc38 {
  transition: transform 0.3s ease;
}
.chipDropdownArrow__4333dc38.rotated__7c9c6602 {
  transform: rotate(-180deg);
}
.chipClearButton__4c8066f3 {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  margin: 0;
  outline: none;
  padding: 0;
}
.chipClearButton__4c8066f3:focus-visible {
  box-shadow: var(--triplex-Chip-Shadow_Focus-13-0-2);
}
.chipGroupItem__16120e00 {
  display: inline-block;
}
.chip__b8e2ecf2 {
  align-items: center;
  background: var(--triplex-Chip-Background_Default-13-0-2);
  border-radius: 16px;
  color: var(--triplex-Chip-Color_Default-13-0-2);
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 12px;
  height: 32px;
  line-height: 16px;
  max-width: 246px;
  min-width: 40px;
  outline: none;
  padding: 0 12px;
  vertical-align: middle;
}
.chip__b8e2ecf2:hover {
  background: var(--triplex-Chip-Background_Hover-13-0-2);
  color: var(--triplex-Chip-Color_Hover-13-0-2);
}
.chip__b8e2ecf2:focus-visible {
  box-shadow: var(--triplex-Chip-Shadow_Focus-13-0-2);
}
.chip__b8e2ecf2:active,
.chip__b8e2ecf2[aria-expanded=true] {
  background: var(--triplex-Chip-Background_Active-13-0-2);
  color: var(--triplex-Chip-Color_Active-13-0-2);
}
.chip__b8e2ecf2.disabled__f1324b47 {
  background: var(--triplex-Chip-Background_Disabled-13-0-2);
  color: var(--triplex-Chip-Color_Disabled-13-0-2);
  cursor: default;
  pointer-events: none;
}
.chip__b8e2ecf2.selected__afcffed6 {
  background: var(--triplex-Chip-Background_Selected_Default-13-0-2);
  color: var(--triplex-Chip-Color_Selected_Default-13-0-2);
}
.chip__b8e2ecf2.selected__afcffed6:hover {
  background: var(--triplex-Chip-Background_Selected_Hover-13-0-2);
  color: var(--triplex-Chip-Color_Selected_Hover-13-0-2);
}
.chip__b8e2ecf2.selected__afcffed6:active,
.chip__b8e2ecf2.selected__afcffed6[aria-expanded=true] {
  background: var(--triplex-Chip-Background_Selected_Active-13-0-2);
  color: var(--triplex-Chip-Color_Selected_Active-13-0-2);
}
.chip__b8e2ecf2.selected__afcffed6.disabled__f1324b47 {
  background: var(--triplex-Chip-Background_Selected_Disabled-13-0-2);
  color: var(--triplex-Chip-Color_Selected_Disabled-13-0-2);
}
.chip__b8e2ecf2.withPrefix__0407c9b0 {
  padding-left: 0;
}
.chip__b8e2ecf2.withPostfix__212cae32 {
  padding-right: 0;
}
.chip__b8e2ecf2 .content__38c882c8 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chip__b8e2ecf2 .prefix__ffa1214e {
  display: flex;
  padding-left: 8px;
}
.chip__b8e2ecf2 .postfix__65d97dd7 {
  display: flex;
  padding-right: 8px;
}
.checkboxTreeExtended__85df1b4d {
  margin-bottom: -8px;
}
.checkboxTreeExtendedNode__9c859c52 .checkboxTreeExtendedNode__9c859c52 {
  margin-left: 24px;
}
.checkboxTreeExtendedNodeHeader__916d9bc5 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  position: relative;
}
.checkboxTreeExtendedNodeHeader__916d9bc5 .checkboxTreeCheckboxLabel__1ed07577 {
  margin-bottom: 0 !important;
}
.checkboxTreeExtendedNodeHeader__916d9bc5 .caretIconWrapper__d5b66469 {
  bottom: 0;
  cursor: pointer;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.checkboxTreeExtendedNodeHeader__916d9bc5 .caretIconWrapper__d5b66469:focus {
  outline: 1px solid var(--triplex-Checkbox-Border_Color_Focus-13-0-2);
}
.checkboxTreeExtendedNodeHeader__916d9bc5.opened__961ab138 .caretIconWrapper__d5b66469 {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .checkboxTreeExtended__85df1b4d {
    margin: 0 16px;
  }
  .checkboxTreeExtendedNodeHeader__916d9bc5 {
    margin-bottom: 0;
  }
  .checkboxTreeCheckboxLabel__1ed07577 {
    padding-bottom: 16px;
    padding-top: 16px;
  }
  .checkboxTreeCheckboxLabel__1ed07577 .checkboxTreeCheckbox__9542ad3d,
  .checkboxTreeCheckboxLabel__1ed07577 > span,
  .checkboxTreeCheckboxLabel__1ed07577 > svg {
    top: 18px !important;
  }
}
.checkboxYGroup__d120524d {
  display: inline-flex;
  flex-flow: column wrap;
  max-width: 100%;
}
.checkboxYGroup__d120524d .label__c782d0bf + .label__c782d0bf {
  margin-top: 16px;
}
.checkboxXGroup__d9e1698f {
  display: inline-flex;
  flex-flow: row wrap;
}
.checkboxXGroup__d9e1698f.indent-12__931bf6cc {
  margin-left: -6px;
  margin-right: -6px;
}
.checkboxXGroup__d9e1698f.indent-12__931bf6cc .label__c782d0bf {
  margin-left: 6px;
  margin-right: 6px;
}
.checkboxXGroup__d9e1698f.indent-16__58433e44 {
  margin-left: -8px;
  margin-right: -8px;
}
.checkboxXGroup__d9e1698f.indent-16__58433e44 .label__c782d0bf {
  margin-left: 8px;
  margin-right: 8px;
}
.checkboxXGroup__d9e1698f.indent-20__b4b4af0b {
  margin-left: -10px;
  margin-right: -10px;
}
.checkboxXGroup__d9e1698f.indent-20__b4b4af0b .label__c782d0bf {
  margin-left: 10px;
  margin-right: 10px;
}
.checkboxXGroup__d9e1698f.indent-24__ba68d971 {
  margin-left: -12px;
  margin-right: -12px;
}
.checkboxXGroup__d9e1698f.indent-24__ba68d971 .label__c782d0bf {
  margin-left: 12px;
  margin-right: 12px;
}
.checkboxXGroup__d9e1698f.indent-28__78dadc54 {
  margin-left: -14px;
  margin-right: -14px;
}
.checkboxXGroup__d9e1698f.indent-28__78dadc54 .label__c782d0bf {
  margin-left: 14px;
  margin-right: 14px;
}
.checkboxXGroup__d9e1698f.indent-32__5d9e05d9 {
  margin-left: -16px;
  margin-right: -16px;
}
.checkboxXGroup__d9e1698f.indent-32__5d9e05d9 .label__c782d0bf {
  margin-left: 16px;
  margin-right: 16px;
}
.label__c782d0bf {
  color: var(--triplex-Checkbox-Color_Default-13-0-2);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  min-height: 16px;
  min-width: 16px;
  position: relative;
}
.label__c782d0bf.nonempty__eef572ed {
  padding-left: 24px;
}
.label__c782d0bf.disabled__192c3850 {
  color: var(--triplex-Checkbox-Color_Disabled-13-0-2);
  cursor: default;
}
.label__c782d0bf[hidden] {
  display: none;
}
.checkbox__99d1bcbd {
  margin: 0;
  opacity: 0;
}
.checkboxIcon__46a6939b {
  background-color: var(--triplex-Checkbox-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Checkbox-BorderColor_Default-13-0-2);
  border-radius: 4px;
  box-sizing: border-box;
}
.checkmarkIcon__623d9b5e {
  transform: scale(0);
}
.checkmarkIcon__623d9b5e path {
  fill: var(--triplex-Checkbox-Checkmark_Fill_Default-13-0-2);
}
.checkboxIcon__46a6939b,
.checkmarkIcon__623d9b5e {
  pointer-events: none;
}
.checkboxIcon__46a6939b,
.checkbox__99d1bcbd,
.checkmarkIcon__623d9b5e {
  height: 16px;
  left: 0;
  position: absolute;
  width: 16px;
}
.nonempty__eef572ed .checkboxIcon__46a6939b,
.nonempty__eef572ed .checkbox__99d1bcbd,
.nonempty__eef572ed .checkmarkIcon__623d9b5e {
  top: 2px;
}
.checkbox__99d1bcbd:enabled {
  cursor: pointer;
}
.checkbox__99d1bcbd:checked + .checkboxIcon__46a6939b {
  background-color: var(--triplex-Checkbox-Background_Checked_Default-13-0-2);
  border-color: var(--triplex-Checkbox-BorderColor_Checked-13-0-2);
}
.checkbox__99d1bcbd:checked ~ .checkmarkIcon__623d9b5e {
  transform: scale(1);
  transition: transform 0.2s ease-out;
}
.checkbox__99d1bcbd:hover + .checkboxIcon__46a6939b {
  border-color: var(--triplex-Checkbox-BorderColor_Hover-13-0-2);
}
.checkbox__99d1bcbd:disabled + .checkboxIcon__46a6939b {
  background-color: var(--triplex-Checkbox-Background_Disabled-13-0-2);
  border-color: var(--triplex-Checkbox-BorderColor_Disabled-13-0-2);
}
.checkbox__99d1bcbd:disabled ~ .checkmarkIcon__623d9b5e path {
  fill: var(--triplex-Checkbox-Checkmark_Fill_Disabled-13-0-2);
}
.checkbox__99d1bcbd[data-focus-visible]:focus + .checkboxIcon__46a6939b {
  border-color: var(--triplex-Checkbox-BorderColor_Focus-13-0-2);
}
.checkbox__99d1bcbd:checked:enabled:hover + .checkboxIcon__46a6939b {
  background-color: var(--triplex-Checkbox-Background_Checked_Hover-13-0-2);
}
.carouselExtended__8cf9df6d {
  -ms-overflow-style: none;
  display: flex;
  overflow-y: hidden;
  position: relative;
  scrollbar-width: none;
}
.carouselExtended__8cf9df6d::-webkit-scrollbar {
  display: none;
}
.card__3abbe2e9 {
  background: var(--triplex-Card-Background-13-0-2);
  border: 1px solid var(--triplex-Card-BorderColor_Default-13-0-2);
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  width: 100%;
}
.card__3abbe2e9.roundingMD__30c4c8e0 {
  border-radius: 16px;
}
.card__3abbe2e9.roundingSM__cbc8012c {
  border-radius: 8px;
}
.card__3abbe2e9 .cardMedia__bab301ab {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.card__3abbe2e9 .cardContent__5721918d.paddingMD__dc6e8f1f {
  padding: 23px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingMD__dc6e8f1f:not(:first-child) {
  padding-top: 24px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingMD__dc6e8f1f:not(:last-child) {
  padding-bottom: 24px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingSM__c13872d5 {
  padding: 15px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingSM__c13872d5:not(:first-child) {
  padding-top: 16px;
}
.card__3abbe2e9 .cardContent__5721918d.paddingSM__c13872d5:not(:last-child) {
  padding-bottom: 16px;
}
.card__3abbe2e9 .cardContent__5721918d .cardContentHeader__74e2e1db {
  margin-bottom: 16px;
}
.card__3abbe2e9 .cardContent__5721918d .cardContentFooter__13f9ff56 {
  margin-top: 16px;
}
.action__5d6483a1 {
  box-shadow: var(--triplex-Card-Shadow_Default-13-0-2);
  cursor: pointer;
}
.action__5d6483a1.selected__fbd06662 {
  border-color: var(--triplex-Card-BorderColor_Selected-13-0-2);
  box-shadow: none;
}
.action__5d6483a1:hover {
  border-color: var(--triplex-Card-BorderColor_Hover-13-0-2);
  box-shadow: var(--triplex-Card-Shadow_Hover-13-0-2);
}
.action__5d6483a1:focus {
  outline: none;
}
.action__5d6483a1:focus.focusVisible__59a8712f {
  border-color: var(--triplex-Card-BorderColor_Focus-13-0-2);
}
.calendarViewItem__03e63fc6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  padding: 0;
  text-align: center;
}
.calendarViewItem__03e63fc6:focus-visible {
  outline: none;
}
.calendarViewItem__03e63fc6.current__361cb8af {
  font-weight: 600;
}
.calendarViewItem__03e63fc6.rangeBetween__632576ce,
.calendarViewItem__03e63fc6.rangeEnd__3896ddb8,
.calendarViewItem__03e63fc6.rangeSingle__6f1ecb32,
.calendarViewItem__03e63fc6.rangeStart__e84b0ab8 {
  background: var(--triplex-Calendar-View_Item_Background_Range-13-0-2);
}
.calendarViewItem__03e63fc6.rangeEnd__3896ddb8:first-child,
.calendarViewItem__03e63fc6.rangeSingle__6f1ecb32,
.calendarViewItem__03e63fc6.rangeStart__e84b0ab8:last-child {
  border-radius: 50%;
  box-shadow: none;
}
.calendarViewItem__03e63fc6.rangeBetween__632576ce:first-child,
.calendarViewItem__03e63fc6.rangeStart__e84b0ab8 {
  border-radius: 50% 0 0 50%;
  box-shadow: 1px 0 var(--triplex-Calendar-View_Item_Background_Range-13-0-2);
}
.calendarViewItem__03e63fc6.rangeBetween__632576ce:last-child,
.calendarViewItem__03e63fc6.rangeEnd__3896ddb8 {
  border-radius: 0 50% 50% 0;
  box-shadow: -1px 0 var(--triplex-Calendar-View_Item_Background_Range-13-0-2);
}
.calendarViewItem__03e63fc6.rangeBetween__632576ce {
  border-radius: 0;
  box-shadow: 1px 0 var(--triplex-Calendar-View_Item_Background_Range-13-0-2), -1px 0 var(--triplex-Calendar-View_Item_Background_Range-13-0-2);
}
.calendarViewItem__03e63fc6.disabled__f15fd3af {
  pointer-events: none;
}
.calendarViewItemLabel__fbddb3b9 {
  align-items: center;
  background: var(--triplex-Calendar-View_Item_Background_Default-13-0-2);
  border: 1px solid var(--triplex-Calendar-View_Item_BorderColor_Default-13-0-2);
  box-sizing: border-box;
  color: var(--triplex-Calendar-View_Item_Color_Default-13-0-2);
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: auto;
  position: relative;
  white-space: nowrap;
}
.calendarViewItemLabel__fbddb3b9:hover {
  background: var(--triplex-Calendar-View_Item_Background_Hover-13-0-2);
}
.calendarViewItemLabel__fbddb3b9.selected__2b471a29 {
  background: var(--triplex-Calendar-View_Item_Background_Selected_Default-13-0-2);
  color: var(--triplex-Calendar-View_Item_Color_Selected-13-0-2);
}
.calendarViewItemLabel__fbddb3b9.selected__2b471a29:hover {
  background: var(--triplex-Calendar-View_Item_Background_Selected_Hover-13-0-2);
}
.calendarViewItemLabel__fbddb3b9.marked__bd2aa876:after {
  background: var(--triplex-Calendar-View_Item_Mark_Background-13-0-2);
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: calc(50% - 2px);
  pointer-events: none;
  position: absolute;
  width: 4px;
}
.calendarViewItemLabel__fbddb3b9.muted__ace910d4 {
  color: var(--triplex-Calendar-View_Item_Color_Muted-13-0-2);
}
.calendarViewItemLabel__fbddb3b9.disabled__f15fd3af {
  color: var(--triplex-Calendar-View_Item_Color_Disabled-13-0-2);
}
.calendarViewItem__03e63fc6:focus-visible .calendarViewItemLabel__fbddb3b9 {
  border-color: var(--triplex-Calendar-View_Item_BorderColor_Focus-13-0-2);
}
.unitDay__a9e17ec9 {
  border-radius: 12px;
  height: 24px;
  width: 24px;
}
.adaptive__241a0909 .unitDay__a9e17ec9 {
  border-radius: 16px;
  height: 32px;
  width: 32px;
}
.unitMonth__e6000b1b,
.unitYear__0293262e {
  border-radius: 8px;
  height: 36px;
  width: 56px;
}
.adaptive__241a0909 .unitMonth__e6000b1b,
.adaptive__241a0909 .unitYear__0293262e {
  border-radius: 12px;
  height: 60px;
  width: 104px;
}
.calendarViewDays__2e0964a8 {
  border-spacing: 2px;
  margin: 6px -2px -2px;
  table-layout: fixed;
  width: calc(100% + 4px);
}
.adaptive__241a0909 .calendarViewDays__2e0964a8 {
  border-spacing: 0 6px;
  margin: 14px 0 -6px;
  width: 100%;
}
.calendarViewMonths__d7be6a84,
.calendarViewYears__2f4a7e05 {
  border-spacing: 6px 12px;
  margin: -2px -6px -8px;
  table-layout: fixed;
  width: calc(100% + 12px);
}
.adaptive__241a0909 .calendarViewMonths__d7be6a84,
.adaptive__241a0909 .calendarViewYears__2f4a7e05 {
  border-spacing: 0 6px;
  margin: 14px 0 -6px;
  width: 100%;
}
.calendarViewDaysHeader__51dd3b0d {
  color: var(--triplex-Calendar-View_Header_Color-13-0-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 0;
  text-align: center;
}
.calendarViewDaysBody__64901f89:before {
  content: "‌";
  display: block;
  line-height: 8px;
}
.adaptive__241a0909 .calendarViewDaysBody__64901f89:before {
  line-height: 4px;
}
.calendar__74dcdc17 {
  background: var(--triplex-Calendar-Background-13-0-2);
  border-radius: 8px;
  box-sizing: initial;
  padding: 8px 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 180px;
}
.calendar__74dcdc17.adaptive__241a0909 {
  padding: 20px;
  width: auto;
}
.calendar__74dcdc17 + .calendar__74dcdc17 {
  margin-top: 20px;
}
.calendarHeader__69091e6d {
  align-items: center;
  color: var(--triplex-Calendar-View_Item_Color_Default-13-0-2);
  display: flex;
  font-size: 14px;
  font-weight: 400;
  height: 28px;
  justify-content: space-between;
  line-height: 20px;
}
.button__d8292fc4.tile__e7c5c168 {
  background: var(--triplex-Button-Tile_Background_Default-13-0-2);
  background-clip: initial;
  border-radius: 16px;
  min-height: 48px;
  min-width: 48px;
  padding: 8px;
}
.button__d8292fc4.tile__e7c5c168 .content__a19ab033 {
  vertical-align: middle;
}
.button__d8292fc4.tile__e7c5c168:hover {
  background: var(--triplex-Button-Tile_Background_Hover-13-0-2);
}
.button__d8292fc4.tile__e7c5c168.expanded__d4c0ce23,
.button__d8292fc4.tile__e7c5c168:active {
  background: var(--triplex-Button-Tile_Background_Active-13-0-2);
}
.button__d8292fc4.tile__e7c5c168:focus-visible {
  box-shadow: var(--triplex-Button-Tile_Shadow_Focus-13-0-2);
}
.button__d8292fc4.tile__e7c5c168:disabled {
  background: var(--triplex-Button-Tile_Background_Disabled-13-0-2);
}
.button__d8292fc4.secondary__928d2356 {
  background: var(--triplex-Button-Secondary_Background_Default-13-0-2);
  box-shadow: var(--triplex-Button-Secondary_Shadow_Default-13-0-2);
  color: var(--triplex-Button-Secondary_Color_Default-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: none;
}
.button__d8292fc4.secondary__928d2356 .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Secondary_Caret_Color_Default-13-0-2);
}
.button__d8292fc4.secondary__928d2356.MD__d5c5735d {
  border-radius: 16px;
  height: 32px;
  min-width: 96px;
  padding: 8px 24px;
}
.button__d8292fc4.secondary__928d2356.SM__c3ac4b09 {
  border-radius: 14px;
  height: 28px;
  min-width: 80px;
  padding: 6px 16px;
}
.button__d8292fc4.secondary__928d2356.LG__d4f64464 {
  border-radius: 24px;
  height: 48px;
  min-width: 96px;
  padding: 16px 28px;
}
.button__d8292fc4.secondary__928d2356:hover {
  background: var(--triplex-Button-Secondary_Background_Hover-13-0-2);
  box-shadow: var(--triplex-Button-Secondary_Shadow_Hover-13-0-2);
  color: var(--triplex-Button-Secondary_Color_Hover-13-0-2);
}
.button__d8292fc4.secondary__928d2356:hover .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Secondary_Caret_Color_Hover-13-0-2);
}
.button__d8292fc4.secondary__928d2356.expanded__d4c0ce23,
.button__d8292fc4.secondary__928d2356:active {
  background: var(--triplex-Button-Secondary_Background_Active-13-0-2);
  box-shadow: var(--triplex-Button-Secondary_Shadow_Active-13-0-2);
  color: var(--triplex-Button-Secondary_Color_Active-13-0-2);
}
.button__d8292fc4.secondary__928d2356.expanded__d4c0ce23 .caretIcon__481a1fab path,
.button__d8292fc4.secondary__928d2356:active .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Secondary_Caret_Color_Active-13-0-2);
}
.button__d8292fc4.secondary__928d2356:focus-visible {
  box-shadow: var(--triplex-Button-Secondary_Shadow_Focus-13-0-2);
}
.button__d8292fc4.secondary__928d2356:disabled {
  background: var(--triplex-Button-Secondary_Background_Disabled-13-0-2);
  box-shadow: var(--triplex-Button-Secondary_Shadow_Disabled-13-0-2);
  color: var(--triplex-Button-Secondary_Color_Disabled-13-0-2);
}
.button__d8292fc4.secondary__928d2356:disabled .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Secondary_Caret_Color_Disabled-13-0-2);
}
.button__d8292fc4.link__390baaec {
  background: transparent;
  color: #1358bf;
  color: var(--triplex-Button-Link_Color_Default-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
}
.button__d8292fc4.link__390baaec.MD__d5c5735d {
  height: 32px;
  min-width: 0;
  padding: 6px 2px;
}
.button__d8292fc4.link__390baaec.SM__c3ac4b09 {
  height: 28px;
  min-width: 0;
  padding: 4px 2px;
}
.button__d8292fc4.link__390baaec.LG__d4f64464 {
  height: 48px;
  min-width: 0;
  padding: 14px 2px;
}
.button__d8292fc4.link__390baaec:hover {
  color: var(--triplex-Button-Link_Color_Hover-13-0-2);
}
.button__d8292fc4.link__390baaec:active {
  color: var(--triplex-Button-Link_Color_Active-13-0-2);
}
.button__d8292fc4.link__390baaec:focus-visible {
  box-shadow: var(--triplex-Button-Link_Shadow_Focus-13-0-2);
}
.button__d8292fc4.link__390baaec:disabled {
  color: var(--triplex-Button-Link_Color_Disabled-13-0-2);
}
.buttonIcon__5746cc80 {
  background: transparent;
  border: none;
  font-size: 0;
  line-height: 0;
  outline: none;
  padding: 0;
  position: relative;
  vertical-align: top;
}
.buttonIcon__5746cc80:enabled {
  cursor: pointer;
}
.buttonIcon__5746cc80.circle__69f50ff8 {
  border-radius: 50%;
}
.buttonIcon__5746cc80.squircle__a0426816 {
  border-radius: 4px;
}
.buttonIcon__5746cc80:focus-visible {
  box-shadow: var(--triplex-Button-Icon_Shadow_Focus-13-0-2);
}
.button__d8292fc4.general__a5c885ea {
  background: var(--triplex-Button-General_Background_Default-13-0-2);
  color: var(--triplex-Button-General_Color_Default-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-transform: none;
}
.button__d8292fc4.general__a5c885ea .caretIcon__481a1fab path {
  fill: var(--triplex-Button-General_Caret_Color_Default-13-0-2);
}
.button__d8292fc4.general__a5c885ea.MD__d5c5735d {
  border-radius: 16px;
  height: 32px;
  min-width: 96px;
  padding: 8px 24px;
}
.button__d8292fc4.general__a5c885ea.SM__c3ac4b09 {
  border-radius: 14px;
  height: 28px;
  min-width: 80px;
  padding: 6px 16px;
}
.button__d8292fc4.general__a5c885ea.LG__d4f64464 {
  border-radius: 24px;
  height: 48px;
  min-width: 96px;
  padding: 16px 28px;
}
.button__d8292fc4.general__a5c885ea:hover {
  background: var(--triplex-Button-General_Background_Hover-13-0-2);
  color: var(--triplex-Button-General_Color_Hover-13-0-2);
}
.button__d8292fc4.general__a5c885ea.expanded__d4c0ce23,
.button__d8292fc4.general__a5c885ea:active {
  background: var(--triplex-Button-General_Background_Active-13-0-2);
  color: var(--triplex-Button-General_Color_Active-13-0-2);
}
.button__d8292fc4.general__a5c885ea:focus-visible {
  box-shadow: var(--triplex-Button-General_Shadow_Focus-13-0-2);
}
.button__d8292fc4.general__a5c885ea:disabled {
  background: var(--triplex-Button-General_Background_Disabled-13-0-2);
  color: var(--triplex-Button-General_Color_Disabled-13-0-2);
}
.button__d8292fc4.general__a5c885ea:disabled .caretIcon__481a1fab path {
  fill: var(--triplex-Button-General_Caret_Color_Disabled-13-0-2);
}
.globalButtonDropdownExtended__434de4f1 {
  display: inline-block;
  line-height: 0;
  position: relative;
  vertical-align: top;
}
.globalButtonDropdownExtended__434de4f1 .buttonDropdownExtendedBlock__bf1499b9 {
  margin-top: 4px;
  padding: 4px;
  right: 0;
}
.buttonDropdown__33a46834.block__b7950c8c {
  display: block;
}
.buttonDropdown__33a46834 + .buttonDropdown__33a46834:not(.block__b7950c8c),
.buttonDropdown__33a46834 + .button__d8292fc4:not(.block__b7950c8c) {
  margin-left: 16px;
}
.buttonDropdown__33a46834 .buttonDropdownTarget__24f667e7 .caretIcon__481a1fab {
  left: 4px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.buttonDropdown__33a46834 .buttonDropdownTarget__24f667e7.active__41b2ea85 .caretIcon__481a1fab {
  transform: rotate(-180deg);
}
.buttonDropdown__33a46834 .buttonDropdownMenuItem__acb90594 {
  overflow: hidden;
  text-overflow: ellipsis;
}
.button__d8292fc4.dots__09153ca8 {
  background: var(--triplex-Button-Dots_Background_Default-13-0-2);
  box-shadow: var(--triplex-Button-Dots_Shadow_Default-13-0-2);
}
.button__d8292fc4.dots__09153ca8 .dotsIcon__21d83eef path {
  fill: var(--triplex-Button-Dots_Color_Default-13-0-2);
}
.button__d8292fc4.dots__09153ca8.MD__d5c5735d {
  border-radius: 16px;
  height: 32px;
  min-width: 32px;
  padding: 8px;
}
.button__d8292fc4.dots__09153ca8.SM__c3ac4b09 {
  border-radius: 14px;
  height: 28px;
  min-width: 28px;
  padding: 6px;
}
.button__d8292fc4.dots__09153ca8.LG__d4f64464 {
  border-radius: 24px;
  height: 48px;
  min-width: 48px;
  padding: 16px;
}
.button__d8292fc4.dots__09153ca8:hover {
  background: var(--triplex-Button-Dots_Background_Hover-13-0-2);
  box-shadow: var(--triplex-Button-Dots_Shadow_Hover-13-0-2);
}
.button__d8292fc4.dots__09153ca8:hover .dotsIcon__21d83eef path {
  fill: var(--triplex-Button-Dots_Color_Hover-13-0-2);
}
.button__d8292fc4.dots__09153ca8.expanded__d4c0ce23,
.button__d8292fc4.dots__09153ca8:active {
  background: var(--triplex-Button-Dots_Background_Active-13-0-2);
  box-shadow: var(--triplex-Button-Dots_Shadow_Active-13-0-2);
}
.button__d8292fc4.dots__09153ca8.expanded__d4c0ce23 .dotsIcon__21d83eef path,
.button__d8292fc4.dots__09153ca8:active .dotsIcon__21d83eef path {
  fill: var(--triplex-Button-Dots_Color_Active-13-0-2);
}
.button__d8292fc4.dots__09153ca8:focus-visible {
  box-shadow: var(--triplex-Button-Dots_Shadow_Focus-13-0-2);
}
.button__d8292fc4.dots__09153ca8:disabled {
  background: var(--triplex-Button-Dots_Background_Disabled-13-0-2);
  box-shadow: var(--triplex-Button-Dots_Shadow_Disabled-13-0-2);
}
.button__d8292fc4.dots__09153ca8:disabled .dotsIcon__21d83eef path {
  fill: var(--triplex-Button-Dots_Color_Disabled-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc {
  background: var(--triplex-Button-Danger_Background_Default-13-0-2);
  color: var(--triplex-Button-Danger_Color_Default-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-transform: none;
}
.button__d8292fc4.danger__5b0fa5fc .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Danger_Caret_Color_Default-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc.MD__d5c5735d {
  border-radius: 16px;
  height: 32px;
  min-width: 96px;
  padding: 8px 24px;
}
.button__d8292fc4.danger__5b0fa5fc.SM__c3ac4b09 {
  border-radius: 14px;
  height: 28px;
  min-width: 80px;
  padding: 6px 16px;
}
.button__d8292fc4.danger__5b0fa5fc.LG__d4f64464 {
  border-radius: 24px;
  height: 48px;
  min-width: 96px;
  padding: 16px 28px;
}
.button__d8292fc4.danger__5b0fa5fc:hover {
  background: var(--triplex-Button-Danger_Background_Hover-13-0-2);
  color: var(--triplex-Button-Danger_Color_Hover-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc.expanded__d4c0ce23,
.button__d8292fc4.danger__5b0fa5fc:active {
  background: var(--triplex-Button-Danger_Background_Active-13-0-2);
  color: var(--triplex-Button-Danger_Color_Active-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc:focus-visible {
  box-shadow: var(--triplex-Button-Danger_Shadow_Focus-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc:disabled {
  background: var(--triplex-Button-Danger_Background_Disabled-13-0-2);
  color: var(--triplex-Button-Danger_Color_Disabled-13-0-2);
}
.button__d8292fc4.danger__5b0fa5fc:disabled .caretIcon__481a1fab path {
  fill: var(--triplex-Button-Danger_Caret_Color_Disabled-13-0-2);
}
.button__d8292fc4 {
  background-clip: padding-box;
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  position: relative;
  vertical-align: top;
}
.button__d8292fc4::-moz-focus-inner {
  border: none;
  padding: 0;
}
.button__d8292fc4:disabled {
  cursor: default;
}
.button__d8292fc4:disabled * {
  pointer-events: none;
}
.button__d8292fc4 + .buttonDropdown__33a46834:not(.block__b7950c8c),
.button__d8292fc4 + .button__d8292fc4:not(.block__b7950c8c) {
  margin-left: 16px;
}
.button__d8292fc4 .content__a19ab033 {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  white-space: nowrap;
}
.button__d8292fc4.block__b7950c8c {
  display: block;
  width: 100%;
}
.button__d8292fc4.loading__afb218f7 {
  pointer-events: none;
}
.button__d8292fc4.loading__afb218f7 .content__a19ab033 {
  visibility: hidden;
}
.button__d8292fc4 .spinner__fb6550aa {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.body__61d397ad {
  display: flex;
  padding: 24px 32px;
  position: relative;
}
.body__61d397ad .bodyInner__5c8a7d0f {
  flex-grow: 1;
  position: relative;
  width: 100%;
}
.body__61d397ad.withWhiteBackground__8d8c41b4 {
  background: var(--triplex-Body-Background_White-13-0-2);
}
.body__61d397ad.withGrayBackground__59953c9d {
  background: var(--triplex-Body-Background_Gray-13-0-2);
}
.body__61d397ad.withDarkGrayBackground__67db3037 {
  background: var(--triplex-Body-Background_Darkgray-13-0-2);
}
@media (max-width: 767px) {
  .body__61d397ad {
    overflow-x: auto;
    padding: 16px;
  }
}
.amountInput__366194a2 {
  display: flex;
}
.amountInput__366194a2 input {
  text-align: right;
}
.amountInput__366194a2.withCurrency__859206ae input {
  border-bottom-right-radius: 0;
  border-right: none;
  border-top-right-radius: 0;
  padding-right: 8px;
}
.amountInput__366194a2 :focus + .currency__ac92e40a {
  border-color: var(--triplex-Input-BorderColor_Focus-13-0-2);
}
.amountInput__366194a2.filled__9ef76b46 .currency__ac92e40a {
  color: var(--triplex-Input-Color_Default-13-0-2);
}
.amountInput__366194a2.disabled__67f598de .currency__ac92e40a {
  background-color: var(--triplex-Input-Background_Disabled-13-0-2);
  border-color: var(--triplex-Input-BorderColor_Disabled-13-0-2);
  color: var(--triplex-Input-Color_Disabled-13-0-2);
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.amountInput__366194a2.error__6f130e2d .currency__ac92e40a {
  border-color: var(--triplex-Input-BorderColor_Error-13-0-2);
}
.currency__ac92e40a {
  background-color: var(--triplex-Input-Background_Default-13-0-2);
  border: 1px solid var(--triplex-Input-BorderColor_Default-13-0-2);
  border-bottom-right-radius: 8px;
  border-left-width: 0;
  border-top-right-radius: 8px;
  box-sizing: border-box;
  color: var(--triplex-Input-Placeholder_Color-13-0-2);
  font-size: 14px;
  height: 32px;
  line-height: normal;
  padding-bottom: 7px;
  padding-right: 11px;
  padding-top: 7px;
  white-space: nowrap;
}
.grouped__fb2a46af {
  flex: 1;
}
.grouped__fb2a46af:not(:first-child) {
  margin-left: -1px;
}
.grouped__fb2a46af .left__7740f24b,
.grouped__fb2a46af .left__7740f24b + .currency__ac92e40a {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.grouped__fb2a46af .intermediate__d88a6113,
.grouped__fb2a46af .intermediate__d88a6113 + .currency__ac92e40a {
  border-radius: 0;
}
.grouped__fb2a46af .right__898c146b,
.grouped__fb2a46af .right__898c146b + .currency__ac92e40a {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.grouped__fb2a46af.error__6f130e2d input,
.grouped__fb2a46af.error__6f130e2d input + .currency__ac92e40a {
  z-index: 1;
}
.grouped__fb2a46af input:focus,
.grouped__fb2a46af input:focus + .currency__ac92e40a {
  z-index: 2;
}
.amountCurrencySelect__3413f70f {
  align-items: center;
  display: flex;
}
.amountCurrencySelect__3413f70f input {
  border-radius: 8px 0 0 8px;
  padding-right: 12px;
  text-align: right;
}
.amountCurrencySelect__3413f70f .currencySelectExtendedTarget__fda34b83 {
  border-radius: 0 8px 8px 0;
}
.amountCurrencySelect__3413f70f .currencySelectExtendedTargetOpened__38459297 .currencyIcon__90b47359 .service-fill,
.amountCurrencySelect__3413f70f .currencySelectExtendedTarget__fda34b83:focus .currencyIcon__90b47359 .service-fill {
  fill: var(--triplex-Neutral-900-13-0-2);
}
.amountCurrencySelect__3413f70f .currencySelectExtended__77c36055 {
  flex: 0 0 86px;
  margin-left: -1px;
  max-width: 86px;
  position: relative;
}
.amountCurrencySelect__3413f70f .currencySelectExtendedDropdownListItem__606594fd {
  overflow: hidden;
  text-overflow: ellipsis;
}
.amountCurrencySelect__3413f70f .currencySelectExtended__77c36055:focus,
.amountCurrencySelect__3413f70f input:focus {
  z-index: 2;
}
.amountCurrencySelect__3413f70f .currencyIcon__90b47359 {
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
}
.amountAdaptive__692ad67d {
  font-size: 10px;
  line-height: 12px;
}
.alertProcess__e0899961 {
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  color: #1f1f22;
  color: var(--triplex-AlertProcess-Color-13-0-2);
  display: flex;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 15px;
  text-transform: none;
}
.alertProcess__e0899961 .themeIcon__21fe3228 {
  box-sizing: border-box;
  height: 20px;
  padding-top: 2px;
  width: 20px;
}
.alertProcess__e0899961.alertTypeError__d9965342 {
  background: var(--triplex-AlertProcess-Error_Background-13-0-2);
  border-color: var(--triplex-AlertProcess-Error_Border_Color-13-0-2);
}
.alertProcess__e0899961.alertTypeInfo__966b40c3 {
  background: var(--triplex-AlertProcess-Info_Background-13-0-2);
  border-color: var(--triplex-AlertProcess-Info_Border_Color-13-0-2);
}
.alertProcess__e0899961.alertTypeWarning__23a0382f {
  background: var(--triplex-AlertProcess-Warning_Background-13-0-2);
  border-color: var(--triplex-AlertProcess-Warning_Border_Color-13-0-2);
}
.alertProcess__e0899961.alertTypeFeature__87175c9a {
  background: var(--triplex-AlertProcess-Feature_Background-13-0-2);
  border-color: var(--triplex-AlertProcess-Feature_Border_Color-13-0-2);
}
.alertProcess__e0899961.alertTypeFeature__87175c9a .themeIcon__21fe3228 {
  padding-top: 0;
}
.alertProcess__e0899961 .alertProcessContentBlock__96dd9476 {
  flex: 1;
  margin-left: 8px;
}
.alertProcess__e0899961 .alertProcessContentBlock__96dd9476 .alertProcessContentHeader__5bc26a52 {
  color: var(--triplex-AlertProcess-Color-13-0-2);
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 8px;
  text-transform: none;
}
.alertProcess__e0899961 .closeButton__c68b3898 {
  height: 16px;
  margin-left: 8px;
}
.alertContext__c0a26a53 {
  display: flex;
  font-size: 12px;
  line-height: 16px;
}
.alertContext__c0a26a53 > svg {
  flex-shrink: 0;
}
.alertContext__c0a26a53 .alertContextText__86b3adad {
  margin-left: 4px;
}
.alertContext__c0a26a53.alertTypeError__d9965342 .alertContextText__86b3adad {
  color: var(--triplex-AlertContext-Error_Color-13-0-2);
}
.alertContext__c0a26a53.alertTypeInfo__966b40c3 .alertContextText__86b3adad {
  color: var(--triplex-AlertContext-Info_Color-13-0-2);
}
.alertContext__c0a26a53.alertTypeWarning__23a0382f .alertContextText__86b3adad {
  color: var(--triplex-AlertContext-Warning_Color-13-0-2);
}
.alertContext__c0a26a53.alertTypeSystem__49cb4889 .alertContextText__86b3adad {
  color: var(--triplex-AlertContext-System_Color-13-0-2);
}
.accordionView__81a4c186 {
  background: var(--triplex-AccordionView-Background-13-0-2);
  border-radius: 16px;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964 {
  border: 1px solid var(--triplex-AccordionView-BorderColor_Default-13-0-2);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  outline: none;
  padding: 19px 31px;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964 .accordionViewHeader__468d9d64 {
  color: #1f1f22;
  color: var(--triplex-AccordionView-Header_Color-13-0-2);
  flex-grow: 1;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964 .caretIcon__db4cb73e {
  flex-shrink: 0;
  margin: 4px 0 4px 20px;
  transition: transform 0.3s ease-in-out;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964:not(.focusedByClick__31cadfd0):focus {
  border-color: var(--triplex-AccordionView-BorderColor_Focus-13-0-2);
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964.animating__07137cd6,
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964.opened__40cd46e1 {
  border-radius: 16px 16px 0 0;
}
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964.animating__07137cd6 .caretIcon__db4cb73e,
.accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964.opened__40cd46e1 .caretIcon__db4cb73e {
  transform: rotate(-180deg);
}
.accordionView__81a4c186 .accordionViewBody__956f1669 {
  padding: 24px 31px 23px;
}
.accordionView__81a4c186 .accordionViewContent__b113b3a2 {
  box-sizing: initial;
  visibility: hidden;
}
.accordionView__81a4c186 .accordionViewContent__b113b3a2.globalExpandAnimationAnimating__3d405c4a,
.accordionView__81a4c186 .accordionViewContent__b113b3a2.globalExpandAnimationOpened__f8561d64 {
  border: 1px solid var(--triplex-AccordionView-BorderColor_Default-13-0-2);
  border-radius: 0 0 16px 16px;
  border-top: none;
  visibility: visible;
}
@media (max-width: 767px) {
  .accordionView__81a4c186 .accordionViewBody__956f1669,
  .accordionView__81a4c186 .accordionViewHeaderWrapper__5d81b964 {
    padding: 15px;
  }
}
.accordion__ba03d112 {
  margin: 0;
  padding: 0;
}
.accordion__ba03d112 .item__eb866aeb {
  background: var(--triplex-AccordionForm-Background_Default-13-0-2);
  border-radius: 16px;
  list-style-type: none;
  position: relative;
}
.accordion__ba03d112 .item__eb866aeb h1,
.accordion__ba03d112 .item__eb866aeb h2,
.accordion__ba03d112 .item__eb866aeb h3,
.accordion__ba03d112 .item__eb866aeb h4,
.accordion__ba03d112 .item__eb866aeb h5,
.accordion__ba03d112 .item__eb866aeb h6 {
  margin: 0;
}
.accordion__ba03d112 .item__eb866aeb + .item__eb866aeb {
  margin-top: 16px;
}
.accordion__ba03d112 .item__eb866aeb .header__b3acee2f {
  background-color: var(--triplex-AccordionForm-Background_Default-13-0-2);
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  margin: 0;
  outline: none;
  padding: 19px 31px;
  text-align: left;
  width: 100%;
}
.accordion__ba03d112 .item__eb866aeb .header__b3acee2f:hover {
  background-color: var(--triplex-AccordionForm-Background_Hover-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .header__b3acee2f .buttonContent__7a02cb22 {
  display: flex;
  padding: 0;
  position: relative;
  width: 100%;
}
.accordion__ba03d112 .item__eb866aeb:hover,
.accordion__ba03d112 .item__eb866aeb:hover .header__b3acee2f {
  background-color: var(--triplex-AccordionForm-Background_Hover-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .body__652ed661 {
  border-left: 1px solid transparent;
  border-radius: 0 0 16px 16px;
  border-right: 1px solid transparent;
  display: block;
  padding-left: 79px;
  visibility: hidden;
}
.accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef {
  padding-left: 0;
}
.accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .content__00d28f91,
.accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .footer__580788c0 {
  padding-left: 32px;
}
.accordion__ba03d112 .item__eb866aeb .title__42b635d7 {
  color: #1f1f22;
  color: var(--triplex-AccordionForm-Title_Color_Default-13-0-2);
  flex-grow: 1;
  font-family: SBSansUI, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0 12px 0 0;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}
.accordion__ba03d112 .item__eb866aeb .caret__e6348e97 {
  flex-shrink: 0;
  margin: 4px;
  transition: transform 0.3s ease-in-out;
}
.accordion__ba03d112 .item__eb866aeb .step__f070e930 {
  margin: 0 24px 0 0;
}
.accordion__ba03d112 .item__eb866aeb .step__f070e930 > div {
  cursor: pointer;
}
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4 {
  height: 24px;
  top: -8px;
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c {
  bottom: -16px;
  top: 48px;
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4 {
  background-color: var(--triplex-AccordionForm-Step_Line_Default-13-0-2);
  border-radius: 1px;
  left: 43px;
  position: absolute;
  width: 2px;
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c.success__434f0e08,
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c.wait__49682816,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4.success__434f0e08,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4.wait__49682816 {
  background-color: var(--triplex-AccordionForm-Step_Line_Success-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c.warning__754f3d94,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4.warning__754f3d94 {
  background-color: var(--triplex-AccordionForm-Step_Line_Warning-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c.error__cdce3a6f,
.accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4.error__cdce3a6f {
  background-color: var(--triplex-AccordionForm-Step_Line_Error-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb .content__00d28f91 {
  border-top: 1px solid var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
  padding: 24px 31px 24px 0;
}
.accordion__ba03d112 .item__eb866aeb .footer__580788c0 {
  border-top: 1px solid var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
  padding: 18px 31px 17px 0;
  text-align: right;
}
.accordion__ba03d112 .item__eb866aeb .remove__f2582411 {
  position: absolute;
  right: -20px;
  top: 24px;
}
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171 .header__b3acee2f {
  border-radius: 16px 16px 0 0;
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0 .header__b3acee2f {
  cursor: default;
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0 .title__42b635d7 {
  color: var(--triplex-AccordionForm-Title_Color_Disabled-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0 .step__f070e930 > div {
  cursor: default;
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0 .header__b3acee2f,
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171 .header__b3acee2f {
  background-color: var(--triplex-AccordionForm-Background_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026 .header__b3acee2f {
  border-color: var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026 .header__b3acee2f:focus {
  border-color: var(--triplex-AccordionForm-BorderColor_Focus-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0:hover,
.accordion__ba03d112 .item__eb866aeb.disabled__a720cca0:hover .header__b3acee2f,
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171:hover,
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171:hover .header__b3acee2f {
  background-color: var(--triplex-AccordionForm-Background_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171 .body__652ed661 {
  border-bottom: 1px solid transparent;
  visibility: visible;
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171 .body__652ed661 {
  border-color: var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171 .header__b3acee2f {
  border-bottom-color: transparent;
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171 .header__b3acee2f:focus {
  border-color: var(--triplex-AccordionForm-BorderColor_Focus-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.focusedByMouse__a2d52ee8 .header__b3acee2f:focus {
  border-color: var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026 .headerFocused__562cd742 + .body__652ed661 .content__00d28f91 {
  border-top-color: transparent;
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171.focusedByMouse__a2d52ee8 .header__b3acee2f {
  border-bottom-color: transparent;
}
.accordion__ba03d112 .item__eb866aeb.focused__60bc4026.opened__9fc0b171.focusedByMouse__a2d52ee8 .headerFocused__562cd742 + .body__652ed661 .content__00d28f91 {
  border-top-color: var(--triplex-AccordionForm-BorderColor_Default-13-0-2);
}
.accordion__ba03d112 .item__eb866aeb.opened__9fc0b171 .caret__e6348e97 {
  transform: rotate(-180deg);
}
.accordion__ba03d112.single__099f35ae .item__eb866aeb .body__652ed661 {
  padding-left: 0;
}
.accordion__ba03d112.single__099f35ae .item__eb866aeb .content__00d28f91,
.accordion__ba03d112.single__099f35ae .item__eb866aeb .footer__580788c0 {
  padding-left: 32px;
}
@media (max-width: 767px) {
  .accordion__ba03d112 .item__eb866aeb .header__b3acee2f {
    padding: 16px;
  }
  .accordion__ba03d112 .item__eb866aeb .body__652ed661,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef {
    padding-left: 0;
  }
  .accordion__ba03d112 .item__eb866aeb .body__652ed661 .content__00d28f91,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .content__00d28f91 {
    border-top: none;
    padding: 0 16px 16px;
  }
  .accordion__ba03d112 .item__eb866aeb .body__652ed661 .footer__580788c0,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .footer__580788c0 {
    border-top: none;
    margin-left: -16px;
    margin-top: -16px;
    padding: 0 16px 16px;
    text-align: left;
  }
  .accordion__ba03d112 .item__eb866aeb .body__652ed661 .footer__580788c0 > .globalButtonDropdownExtended__434de4f1,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661 .footer__580788c0 > button,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .footer__580788c0 > .globalButtonDropdownExtended__434de4f1,
  .accordion__ba03d112 .item__eb866aeb .body__652ed661.bodyWithoutStatus__4b08e3ef .footer__580788c0 > button {
    margin-left: 16px;
    margin-top: 16px;
  }
  .accordion__ba03d112 .item__eb866aeb .nextLine__4bfde46c,
  .accordion__ba03d112 .item__eb866aeb .prevLine__52cbc5a4 {
    display: none;
  }
}
.SelectForm-Label {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 8px;
  transform: translateY(30px);
  white-space: nowrap;
}
.SelectForm-Label_touched {
  transform: translateY(0);
}
.SelectForm-Subtitle {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 16px;
  margin-top: 4px;
}
.SelectForm_isInvalid {
  color: #f66868;
}
.StyledSelect-PreIcon {
  left: 13px;
  position: absolute;
  transform: translateY(50%);
  z-index: 1;
}
.StyledSelect-Value {
  color: #001f4a;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  width: 100%;
}
.StyledSelect-ArrowIcon path {
  fill: #1f1f22;
}
.StyledSelect-Label {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 8px;
  transform: translateY(30px);
  white-space: nowrap;
}
.StyledSelect-Label_touched {
  transform: translateY(0);
}
.StyledSelect-Subtitle {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 16px;
  margin-top: 4px;
}
.StyledSelect_isInvalid {
  color: #f66868;
}
.StyledSelect-Item {
  align-items: center;
  display: flex;
  gap: 8px;
}
.StyledSelect-Icon {
  align-items: center;
  background-color: #cce7f7;
  border-radius: 50%;
  color: #1e79c8;
  display: flex;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-weight: 400;
  height: 40px;
  justify-content: center;
  min-width: 40px;
}
.StyledSelect-Text {
  display: flex;
  flex-direction: column;
}
.StyledSelect-Highlighted {
  color: #21a038;
}
.SelectPicker__isColorPicker .SelectPicker-IconArrow {
  margin-left: 0;
}
.SelectPicker-Control {
  color: #001f4a;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  max-width: 100%;
  width: 100%;
}
.SelectPicker-Control .SelectPicker-IconArrow {
  transition-duration: 0.4s;
}
.SelectPicker-Control .SelectPicker-IconArrow path {
  fill: #1f1f22;
}
.SelectPicker-Control__isOpen .SelectPicker-IconArrow {
  transform: rotate(180deg);
}
.SelectPicker-ControlText {
  align-items: center;
  color: #001f4a;
  display: flex;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  height: 100%;
  justify-content: center;
  letter-spacing: 0;
  line-height: 22px;
  width: 100%;
}
.SelectPicker-OptionBox {
  display: flex;
  flex-wrap: nowrap;
}
.SelectPicker-IconArrow {
  margin-left: 10px;
  pointer-events: none;
}
.SelectPicker-Option {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0;
  line-height: 22px;
  min-height: 28px;
  overflow: hidden;
  word-break: keep-all;
}
.SelectPicker-Option:hover {
  border-radius: 8px;
}
.SelectPicker-OptionIcon {
  border-radius: 4px;
  flex-shrink: 0;
  height: 24px;
  margin-right: 8px;
  width: 24px;
}
.SelectPicker-OptionText {
  align-items: center;
  display: flex;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0;
  line-height: 22px;
}
.Dropdown {
  display: inline-block;
  position: relative;
}
.Dropdown-Content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.078), 0 1px 2px 0 rgba(0, 0, 0, 0.078);
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  z-index: 99;
}
.Dropdown-Content_default {
  margin-top: 8px;
}
.Dropdown-Children,
.MenuDropdown {
  display: inline-block;
}
.MenuDropdown {
  position: relative;
}
.MenuDropdown-Menu {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.078), 0 1px 2px 0 rgba(0, 0, 0, 0.078);
  box-sizing: border-box;
  display: inline-block;
  padding: 8px 0;
  position: absolute;
  z-index: 99;
}
.MenuDropdown-Menu_default {
  bottom: 0;
  left: 8px;
}
.MenuDropdown-Menu_bottom {
  right: 0;
  top: 8px;
}
.MenuDropdown-MenuItem {
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
  color: #1f1f22;
  cursor: pointer;
  display: flex;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  min-height: 56px;
  min-width: 233px;
  padding: 8px 16px;
}
.MenuDropdown-MenuItem:hover {
  background-color: #dee3ed;
}
.MenuDropdown-IconBox {
  align-items: center;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-right: 8px;
  width: 40px;
}
.CheckBox {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 7px;
}
.CheckBox_reverseDirection {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.CheckBox-Input {
  align-items: center;
  border: 2px solid #b4bac4;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  height: 18px;
  justify-content: center;
  min-height: 18px;
  min-width: 18px;
  position: relative;
  width: 18px;
}
.CheckBox-Input_active {
  background-color: #21a038;
  border: 2px solid #21a038;
}
.CheckBox-Input input {
  bottom: 0;
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.CheckBox-Input .Icon {
  height: 100%;
}
.CheckBox-Input .Icon svg {
  height: 100%;
  width: 11px;
}
.CheckBox-Label {
  font-family: SB Sans Text;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-left: 15px;
}
.CheckBox_disabled,
.CheckBox_disabled input,
.CheckBox_disabled span {
  cursor: default;
  opacity: 0.5;
}
.Paper {
  display: inline-block;
}
.Paper-Wrapper {
  background-color: #f3f5f9;
  border-radius: 8px;
  display: flex;
  padding: 4px 8px;
}
.Paper-Wrapper_light {
  background-color: #f9fafc;
}
.Paper-Label {
  display: flex;
  flex-flow: column nowrap;
}
.Paper-Title {
  color: #7d838a;
  font-size: 12px;
  line-height: 15px;
}
.Paper-Content,
.Paper-Title {
  font-family: SB Sans Text;
  font-style: normal;
  font-weight: 400;
}
.Paper-Content {
  color: #001f4a;
  font-size: 14px;
  line-height: 18px;
}
.Paper-Icon {
  padding: 0 2px 0 10px;
}
.Paper-Icon svg path {
  fill: #828c9c;
}
.Loader {
  align-items: center;
  background-color: rgba(2, 0, 0, 0.08);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}
.Loader_fixed {
  position: fixed;
}
@keyframes react-loading-skeleton {
  to {
    transform: translateX(100%);
  }
}
.Skeleton {
  background-color: #e9eaed;
  border-radius: 8px;
  display: inline-flex;
  height: 100%;
  line-height: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 101;
}
.Skeleton:after {
  animation-direction: normal;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: react-loading-skeleton;
  animation-timing-function: ease-in-out;
  background-image: linear-gradient(90.02deg, #e9eaed -0.12%, #e9eaed 32.72%, #dde0e6 71.31%, #e9eaed 86.43%, #e9eaed 99.99%);
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateX(-100%);
  z-index: 101;
}
.Skeleton__circle {
  border-radius: 50%;
}
.Switch {
  cursor: pointer;
  position: relative;
}
.Switch-Counter {
  align-items: center;
  background-color: #21a038;
  border-radius: 24px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  height: 16px;
  justify-content: center;
  line-height: 20px;
  width: 16px;
}
.Switch-Counter,
.Switch-Label {
  font-family: SB Sans Interface;
  font-style: normal;
  letter-spacing: 0;
  margin-left: 8px;
}
.Switch-Label {
  color: #0c2e67;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  white-space: nowrap;
}
.Switch-CounterAndLabel {
  align-items: center;
  display: flex;
  padding-left: 32px;
}
.Switch-Slider {
  background-color: #b4bac4;
  border-radius: 4px;
  height: 18px;
  margin-top: 2px;
  position: absolute;
  transition: background-color 0.2s ease;
  width: 32px;
}
.Switch-Slider:before {
  background-color: #fff;
  border-radius: 2px;
  content: "";
  height: 14px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform 0.3s ease;
  width: 14px;
}
.Switch input[type=checkbox] {
  display: none;
}
.Switch input[type=checkbox]:checked + .Switch-Slider {
  background-color: #21a038;
}
.Switch input[type=checkbox]:checked + .Switch-Slider:before {
  transform: translateX(14px);
}
.Tag {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  padding: 2px 4px 3px;
}
.Tag .Icon {
  display: none;
}
.Tag-Title {
  font-family: SB Sans Interface;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}
.Tag__clickable {
  cursor: pointer;
}
.Tag-Theme__red {
  background-color: #fbb4b4;
  border: 1px solid #ed2a2a;
}
.Tag-Theme__red .Tag-Title {
  color: #ed2a2a;
}
.Tag-Theme__gray {
  background-color: #d9dde1;
  border: 1px solid #c1cadc;
}
.Tag-Theme__gray .Tag-Title {
  color: #828c9c;
}
.Tag-Theme__blue {
  background-color: #aad7f1;
  border: 1px solid #1e79c8;
}
.Tag-Theme__blue .Tag-Title {
  color: #1e79c8;
}
.Tag-Theme__green {
  background-color: #c2e8d2;
  border: 1px solid #1a8e40;
}
.Tag-Theme__green .Tag-Title {
  color: #1a8e40;
}
.Tag-Theme__white {
  background-color: #fff;
  border: 1px solid #c1cadc;
}
.Tag-Theme__white .Tag-Title {
  color: #828c9c;
}
.Tag-Theme__orange {
  background-color: #faceb7;
  border: 1px solid #eb5f2f;
}
.Tag-Theme__orange .Tag-Title {
  color: #eb5f2f;
}
.Tag-Theme__yellow {
  background-color: #fae9b7;
  border: 1px solid #d3ab73;
}
.Tag-Theme__yellow .Tag-Title {
  color: #d3ab73;
}
.Tag-Theme__createStatus {
  background-color: #67d5dd;
}
.Tag-Theme__createStatus rect {
  fill: #67d5dd;
}
.Tag-Theme__cancelStatus {
  background-color: #b4bac4;
}
.Tag-Theme__cancelStatus rect {
  fill: #b4bac4;
}
.Tag-Theme__inProgressStatus,
.Tag-Theme__needFixingStatus,
.Tag-Theme__needRevisionStatus {
  background-color: #57b0e2;
}
.Tag-Theme__inProgressStatus rect,
.Tag-Theme__needFixingStatus rect,
.Tag-Theme__needRevisionStatus rect {
  fill: #57b0e2;
}
.Tag-Theme__solutionProvidedStatus {
  background-color: #52be80;
}
.Tag-Theme__solutionProvidedStatus rect {
  fill: #52be80;
}
.Tag-Theme__additionalInfoRequiredStatus,
.Tag-Theme__checkStatus {
  background-color: #f59c6e;
}
.Tag-Theme__additionalInfoRequiredStatus rect,
.Tag-Theme__checkStatus rect {
  fill: #f59c6e;
}
.Tag-Theme__closedStatus,
.Tag-Theme__resolveStatus {
  background-color: #6a8fed;
}
.Tag-Theme__closedStatus rect,
.Tag-Theme__resolveStatus rect {
  fill: #6a8fed;
}
.Tag-Theme__rejectStatus {
  background-color: #f66868;
}
.Tag-Theme__rejectStatus rect {
  fill: #f66868;
}
.Tag-Theme__agreedStatus {
  background-color: #acd667;
}
.Tag-Theme__toBeAgreedStatus {
  background-color: #f5d470;
}
.Tag-Theme__additionalInfoRequiredStatus,
.Tag-Theme__agreedStatus,
.Tag-Theme__cancelStatus,
.Tag-Theme__checkStatus,
.Tag-Theme__closedStatus,
.Tag-Theme__createStatus,
.Tag-Theme__inProgressStatus,
.Tag-Theme__needFixingStatus,
.Tag-Theme__needRevisionStatus,
.Tag-Theme__rejectStatus,
.Tag-Theme__resolveStatus,
.Tag-Theme__solutionProvidedStatus,
.Tag-Theme__toBeAgreedStatus {
  padding: 2px 4px 2px 2px;
}
.Tag-Theme__additionalInfoRequiredStatus .Tag-Title,
.Tag-Theme__agreedStatus .Tag-Title,
.Tag-Theme__cancelStatus .Tag-Title,
.Tag-Theme__checkStatus .Tag-Title,
.Tag-Theme__closedStatus .Tag-Title,
.Tag-Theme__createStatus .Tag-Title,
.Tag-Theme__inProgressStatus .Tag-Title,
.Tag-Theme__needFixingStatus .Tag-Title,
.Tag-Theme__needRevisionStatus .Tag-Title,
.Tag-Theme__rejectStatus .Tag-Title,
.Tag-Theme__resolveStatus .Tag-Title,
.Tag-Theme__solutionProvidedStatus .Tag-Title,
.Tag-Theme__toBeAgreedStatus .Tag-Title {
  color: #fff;
  font-family: SB Sans Interface;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 16px;
}
.Tag-Theme__additionalInfoRequiredStatus .Icon,
.Tag-Theme__agreedStatus .Icon,
.Tag-Theme__cancelStatus .Icon,
.Tag-Theme__checkStatus .Icon,
.Tag-Theme__closedStatus .Icon,
.Tag-Theme__createStatus .Icon,
.Tag-Theme__inProgressStatus .Icon,
.Tag-Theme__needFixingStatus .Icon,
.Tag-Theme__needRevisionStatus .Icon,
.Tag-Theme__rejectStatus .Icon,
.Tag-Theme__resolveStatus .Icon,
.Tag-Theme__solutionProvidedStatus .Icon,
.Tag-Theme__toBeAgreedStatus .Icon {
  display: flex;
  margin-right: 2px;
}
.Text-Color__primary {
  color: #1f1f22;
}
.Text-Color__secondary {
  color: #7d838a;
}
.Text-Color__disabled {
  color: #d0d7dd;
}
.Text-Color__error {
  color: #c11030;
}
.Text-Color__link {
  color: #1358bf;
}
.Text-Color__linkHover {
  color: #107f8c;
}
.Text-Color__white {
  color: #fff;
}
.Text-Color__danger {
  color: #c11030;
}
.Text-Color__warning {
  color: #f90;
}
.Text-Color__success {
  color: #107f8c;
}
.Text-Opacity50 {
  opacity: 0.5;
}
.Text-FlexCenter {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
.text-sub-12 {
  font-family: SB Sans Interface;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 16px;
}
.text-sub-semi-overline-12 {
  line-height: 14px;
}
.text-sub-semi-12,
.text-sub-semi-overline-12 {
  font-family: SB Sans Interface;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}
.text-sub-semi-12 {
  line-height: 16px;
}
.text-sub {
  font-weight: 400;
}
.text-sub,
.text-sub-semi-14 {
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0;
  line-height: 20px;
}
.text-sub-semi-14 {
  font-weight: 600;
}
.text-title-14 {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}
.text-body,
.text-title-14 {
  font-family: SB Sans Interface;
  font-style: normal;
  letter-spacing: 0;
}
.text-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.text-body-14 {
  font-size: 14px;
  font-weight: 400;
}
.text-body-14,
.text-sub-semi-16 {
  font-family: SB Sans Interface;
  font-style: normal;
  letter-spacing: 0;
  line-height: 20px;
}
.text-sub-semi-16 {
  font-size: 16px;
  font-weight: 600;
}
.text-sub-semi-underlined-16 {
  font-weight: 600;
  line-height: 20px;
  text-decoration: underline;
}
.text-body-caps,
.text-sub-semi-underlined-16 {
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0;
}
.text-body-caps {
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}
.text-control,
.text-title {
  font-weight: 600;
}
.text-control,
.text-number,
.text-title {
  font-family: SB Sans Text;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0;
  line-height: 20px;
}
.text-number {
  font-weight: 700;
}
.text-title-20 {
  font-size: 20px;
  line-height: 25px;
}
.text-title-20,
.text-title-page {
  font-family: SB Sans Text;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}
.text-title-page {
  font-size: 24px;
  line-height: 30px;
}
.text-title-40 {
  font-family: SB Sans Display;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 52px;
}
.text-b1-20 {
  line-height: 20px;
}
.text-b1-16,
.text-b1-20 {
  font-family: SBSansUI;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.text-b1-16 {
  line-height: 16px;
}
.text-b1-semi-16 {
  font-size: 14px;
  font-weight: 600;
}
.text-b1-semi-16,
.text-b2 {
  font-family: SBSansUI;
  font-style: normal;
  letter-spacing: 0;
  line-height: 16px;
}
.text-b2 {
  font-size: 12px;
  font-weight: 400;
}
.text-b3 {
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
}
.text-b3,
.text-h1 {
  font-family: SBSansUI;
  font-style: normal;
  letter-spacing: 0;
}
.text-h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.text-h2 {
  font-weight: 400;
}
.text-h2,
.text-h2-semi {
  font-family: SBSansUI;
  font-size: 21px;
  font-style: normal;
  letter-spacing: 0;
  line-height: 32px;
}
.text-h2-semi {
  font-weight: 600;
}
.text-h3 {
  font-size: 18px;
  font-weight: 400;
}
.text-h3,
.text-h4 {
  font-family: SBSansUI;
  font-style: normal;
  letter-spacing: 0;
  line-height: 24px;
}
.CompanyLabel,
.text-h4 {
  font-size: 16px;
  font-weight: 600;
}
.CompanyLabel {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: SB Sans Text;
  font-style: normal;
  gap: 8px;
  letter-spacing: 0;
  line-height: 20px;
}
.CompanyLabel-Label {
  align-items: center;
  border-radius: 8px;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.CompanyLabel-Label_red {
  background-color: #f66868;
}
.CompanyLabel-Label_orange {
  background-color: #f59c6e;
}
.CompanyLabel-Label_green {
  background-color: #52be80;
}
.CompanyLabel-Label_lightGreen {
  background-color: #acd667;
}
.CompanyLabel-Label_grayBlue {
  background-color: #6a8fed;
}
.CompanyLabel-Label_violet {
  background-color: #8785f1;
}
.CompanyLabel-Label_purple {
  background-color: #c989e1;
}
.CompanyLabel-Title {
  color: #001f4a;
}
.CompanyLabel-Title,
.RadioButtons {
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
}
.RadioButtons {
  align-items: center;
  display: flex;
}
.RadioButtons_no-label div + label {
  margin-inline-start: 0;
}
.RadioButtons > label {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin-inline-start: 26px;
}
.RadioButtons > label:first-child {
  margin-inline-start: 0;
}
.RadioButtons > label > span {
  margin-right: 14px;
}
.RadioButtons > label .RadioButtons-RadioInput {
  display: none;
}
.RadioButtons-Mark {
  color: #b4bac4;
  height: 20px;
}
.RadioButtons-Mark_active {
  color: #21a038;
}
.RadioButtons-Mark_disabled {
  color: #d9dde1;
}
.RadioButtons-Counter {
  align-items: center;
  display: flex;
}
.RadioButtons-CounterLabel {
  color: #828c9c;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  margin-left: 8px;
}
.RadioButtons-CounterInput {
  bottom: 4px;
  width: 72px;
}
.RadioButtons-Label__withCounter {
  margin-right: 8px !important;
}
.AddZone {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.AddZone-Title {
  color: #001f4a;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 18px;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 4px;
  opacity: 0.5;
}
.AddZone-Content {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect width=%27100%25%27 height=%27100%25%27 fill=%27none%27 stroke=%27%23D9D9D6FF%27 stroke-dasharray=%2710%27 stroke-linecap=%27square%27 stroke-width=%272%27 rx=%278%27 ry=%278%27/%3E%3C/svg%3E");
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}
.AddZone-Content_invalid {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect width=%27100%25%27 height=%27100%25%27 fill=%27none%27 stroke=%27%23ef7979%27 stroke-dasharray=%2710%27 stroke-linecap=%27square%27 stroke-width=%272%27 rx=%278%27 ry=%278%27/%3E%3C/svg%3E");
}
.AddZone-Menu {
  display: flex;
  justify-content: space-around;
  padding: 16px;
}
.AddZone-Start {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 16px;
  text-align: center;
}
.PanelView {
  border-radius: 8px;
  flex-flow: column;
  height: 100%;
  position: relative;
  width: 100%;
}
.PanelView,
.PanelView_Header {
  background-color: #f9fafc;
  box-sizing: border-box;
  display: flex;
}
.PanelView_Header {
  align-items: center;
  border-radius: 8px 8px 0 0;
  font-family: SB Sans Display;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  height: 72px;
  line-height: 20px;
  padding: 16px;
}
.PanelView_ExportButtons {
  position: absolute;
  right: 16px;
  top: 16px;
}
.PanelView_ExportButtons :not(:first-child) {
  margin-left: 8px;
}
.PanelView_Content {
  background-color: #f9fafc;
  border-radius: 0 0 8px 8px;
  flex: 1;
  min-height: 250px;
  overflow: hidden;
  position: relative;
}
.PanelView_ContentDrag {
  bottom: 0;
  cursor: grab;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.PanelView_ContentDrag-drag {
  cursor: grabbing;
}
.PanelView_ControlButtons {
  bottom: 16px;
  display: flex;
  flex-flow: column;
  position: absolute;
  right: 16px;
  z-index: 10;
}
.PanelView_ControlButtons :not(:first-child) {
  margin-top: 8px;
}
.PanelView_Document {
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 10px;
  position: absolute;
  width: 100%;
}
.PanelView_IShadowContainer {
  height: 100%;
  width: 770px;
}
.PanelView_IShadowRoot {
  background-color: #fff;
}
.PanelView_blured {
  filter: blur(8px);
}
.DataTable {
  color: #001f4a;
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: space-between;
}
.DataTable-Table {
  width: 100%;
}
.DataTable-TD {
  align-items: center;
  display: flex;
  font-size: 14px;
  line-height: 20px;
  min-height: 24px;
}
.DataTable-TD,
.DataTable-TD_sub {
  font-family: SB Sans Interface;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.DataTable-TD_sub {
  color: #828c9c;
  font-size: 12px;
  line-height: 16px;
  margin-top: 4px;
}
.DataTable-TD_main {
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
}
.DataTable-TD_left {
  justify-content: flex-start;
}
.DataTable-TD_center {
  justify-content: center;
}
.DataTable-TD_right {
  justify-content: flex-end;
}
.DataTable-Footer {
  align-items: center;
  display: flex;
  flex-flow: row;
  justify-content: center;
  margin-top: 16px;
}
.DataTable-Footer_withoutAmountInfo .DataTable-PageSize {
  flex: 33.333%;
}
.DataTable-Footer_withoutAmountInfo .Pagination {
  margin: 0 0 0 33.333%;
  width: 33.333%;
}
.DataTable-Count {
  flex: 1;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
}
.DataTable-PageSize {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
.DataTable-TH_pointer {
  cursor: pointer;
}
.DataTable-Header {
  white-space: nowrap;
}
.DataTable-SortIcon {
  cursor: pointer;
  margin-left: 8px;
}
.DataTable .CheckBox {
  padding: 0;
}
.TableUIVariant {
  border: none;
  border-collapse: separate;
  border-spacing: 0 16px;
  height: 100%;
  margin-bottom: -16px;
  margin-top: -16px;
  width: 100%;
}
.TableUIVariant-TR {
  background-color: #fff;
}
.TableUIVariant-TR__hover {
  cursor: default;
}
.TableUIVariant-TR__hover:hover {
  background-color: #f2f4f7;
}
.TableUIVariant-TR__selected {
  background-color: #e4e8eb;
  border-radius: 8px;
}
.TableUIVariant-THead,
.TableUIVariant-TR__selected:hover {
  background-color: #e4e8eb;
}
.TableUIVariant-THead {
  color: #1f1f22;
  font-family: SBSansUI;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 16px;
}
.TableUIVariant-THead .TableUIVariant-TR {
  background-color: transparent;
  border-radius: 0;
}
.TableUIVariant-TH {
  font-weight: 400;
  padding: 16px 12px;
}
.TableUIVariant-TH:first-child {
  border-radius: 8px 0 0 0;
}
.TableUIVariant-TH:last-child {
  border-radius: 0 8px 0 0;
}
.TableUIVariant-TD {
  color: #1f1f22;
  font-family: SBSansUI;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  padding: 12px;
  vertical-align: top;
}
.TableUIVariant-TD:first-child {
  border-radius: 8px 0 0 8px;
}
.TableUIVariant-TD:last-child {
  border-radius: 0 8px 8px 0;
}
.TableUIVariant-TD_width-auto,
.TableUIVariant-TH_width-auto {
  width: auto;
}
.TableUIVariant-TD_width-5,
.TableUIVariant-TH_width-5 {
  width: 5%;
}
.TableUIVariant-TD_width-10,
.TableUIVariant-TH_width-10 {
  width: 10%;
}
.TableUIVariant-TD_width-15,
.TableUIVariant-TH_width-15 {
  width: 15%;
}
.TableUIVariant-TD_width-20,
.TableUIVariant-TH_width-20 {
  width: 20%;
}
.TableUIVariant-TD_width-25,
.TableUIVariant-TH_width-25 {
  width: 25%;
}
.TableUIVariant-TD_width-30,
.TableUIVariant-TD_width-35,
.TableUIVariant-TH_width-30,
.TableUIVariant-TH_width-35 {
  width: 35%;
}
.TableUIVariant-TD_width-40,
.TableUIVariant-TH_width-40 {
  width: 40%;
}
.TableUIVariant-TD_width-45,
.TableUIVariant-TH_width-45 {
  width: 45%;
}
.TableUIVariant-TD_width-50,
.TableUIVariant-TH_width-50 {
  width: 50%;
}
.TableUIVariant-TD_width-55,
.TableUIVariant-TH_width-55 {
  width: 55%;
}
.TableUIVariant-TD_width-60,
.TableUIVariant-TH_width-60 {
  width: 60%;
}
.TableUIVariant-TD_width-65,
.TableUIVariant-TH_width-65 {
  width: 65%;
}
.TableUIVariant-TD_width-70,
.TableUIVariant-TH_width-70 {
  width: 70%;
}
.TableUIVariant-TD_width-75,
.TableUIVariant-TH_width-75 {
  width: 75%;
}
.TableUIVariant-TD_width-80,
.TableUIVariant-TH_width-80 {
  width: 80;
}
.TableUIVariant-TD_width-85,
.TableUIVariant-TH_width-85 {
  width: 85%;
}
.TableUIVariant-TD_width-90,
.TableUIVariant-TH_width-90 {
  width: 90%;
}
.TableUIVariant-TD_width-95,
.TableUIVariant-TH_width-95 {
  width: 95%;
}
.TableUIVariant-TD_width-100,
.TableUIVariant-TH_width-100 {
  width: 100%;
}
.DataTableVariant {
  color: #001f4a;
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: space-between;
  position: relative;
}
.DataTableVariant-Table {
  width: 100%;
}
.DataTableVariant-Header_left,
.DataTableVariant-TD_left {
  justify-content: flex-start;
}
.DataTableVariant-Header_center,
.DataTableVariant-TD_center {
  justify-content: center;
}
.DataTableVariant-Header_right,
.DataTableVariant-TD_right {
  justify-content: flex-end;
}
.DataTableVariant-TD_sub {
  color: #7d838a;
  font-size: 12px;
  line-height: 16px;
  margin-top: 4px;
  word-break: break-word;
}
.DataTableVariant-TD_main {
  font-family: SBSansUI;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}
.DataTableVariant-SelectControls {
  background-color: #e4e8eb;
  bottom: 0;
  height: 76px;
  margin-top: 16px;
  padding: 12px;
  position: sticky;
}
.DataTableVariant-SelectControls:before {
  background: linear-gradient(hsla(0, 0%, 100%, 0), #fff);
  content: "";
  height: 64px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -64px;
  width: 100%;
}
.DataTableVariant-Footer {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex: 1;
  flex-flow: row;
  justify-content: space-between;
  padding-top: 16px;
}
.DataTableVariant-Footer_withoutAmountInfo .DataTableVariant-PageSize {
  flex: 33.333%;
}
.DataTableVariant-Footer_withoutAmountInfo .Pagination {
  margin-right: 33.333%;
  width: 33.333%;
}
.DataTableVariant-Count {
  flex: 1;
  font-family: SBSansUI;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}
.DataTableVariant-PageSize {
  align-items: center;
  display: flex;
  flex-grow: 0.6;
  position: static;
}
.DataTableVariant-Select {
  margin-left: 8px;
  min-width: 72px;
}
.DataTableVariant-AmountInfo {
  flex-grow: 1;
  text-align: right;
  white-space: nowrap;
}
.DataTableVariant-TH_pointer {
  cursor: pointer;
}
.DataTableVariant-Header {
  align-items: center;
  display: flex;
  white-space: nowrap;
}
.DataTableVariant-SortIcon {
  cursor: pointer;
  margin-left: 12px;
  vertical-align: middle;
}
.DataTableVariant .CheckBox {
  padding: 0;
}
.DataTableVariant .Pagination-ArrowButton {
  border-radius: 50%;
}
.DataTableVariant .Pagination-PageButton_active {
  background-color: transparent;
  color: #1f1f22;
}
.DataTableVariant-Flip {
  transform: rotate(180deg);
}
.react-responsive-modal-root {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.react-responsive-modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}
.react-responsive-modal-container {
  height: 100%;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
}
.react-responsive-modal-containerCenter:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.react-responsive-modal-modal {
  background: #fff;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
  display: inline-block;
  margin: 1.2rem;
  max-width: 800px;
  overflow-y: auto;
  padding: 1.2rem;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.react-responsive-modal-closeButton {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
}
.react-responsive-modal-container,
.react-responsive-modal-modal,
.react-responsive-modal-overlay {
  animation-fill-mode: forwards !important;
}
@keyframes react-responsive-modal-overlay-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes react-responsive-modal-overlay-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes react-responsive-modal-modal-in {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes react-responsive-modal-modal-out {
  0% {
    opacity: 1;
    transform: scale(100%);
  }
  to {
    opacity: 0;
    transform: scale(0.96);
  }
}
.ModalDialog {
  display: flex;
  flex-direction: column;
}
.ModalDialog-Header {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  font-family: SB Sans Text;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 32px;
  min-height: 40px;
  width: 100%;
}
.ModalDialog-Header_center {
  justify-content: center;
  padding-right: 0;
}
.ModalDialog-Header_right {
  justify-content: flex-end;
  padding-right: 0;
}
.ModalDialog-Header_right_and_isCloseIcon {
  justify-content: flex-end;
  padding-right: 40px;
}
.ModalDialog-Content {
  flex-grow: 1;
  padding: 0 0 16px;
}
.ModalDialog-Content_no-paddings {
  padding: 0;
}
.ModalDialog-Footer {
  box-sizing: border-box;
}
.ModalDialog-Footer_center {
  text-align: center;
}
.ModalDialog-Footer_right {
  text-align: right;
}
.ModalDialog-Buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: flex-end;
}
.ModalDialog-FooterContent {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ModalDialog_withAddZone .ModalDialog-Content,
.ModalDialog_withAddZone .ModalDialog-Footer,
.ModalDialog_withAddZone .ModalDialog-Header {
  padding: 16px;
}
.ModalDialog_Open {
  background-color: #f3f4f6;
}
.ModalDialogDefault-Modal {
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 16px;
  overflow: visible;
  padding: 16px;
}
.ModalDialogDefault-Modal_sm {
  max-width: 495px;
  min-width: 400px;
}
.ModalDialogDefault-Modal_md {
  max-width: 799px;
  min-width: 496px;
}
.ModalDialogDefault-Modal_lg {
  max-width: 1139px;
  min-width: 800px;
}
.ModalDialogDefault-Modal_xl {
  max-width: 1339px;
  min-width: 1140px;
}
.ModalDialogDefault-Modal_no-paddings {
  padding: 0;
}
.ModalDialogDefault-Modal .IconBox-IconTheme__default {
  transition: all 0.15s;
}
.ModalDialogDefault-Modal .IconBox-IconTheme__default:hover {
  background-color: #c1cadc;
}
.ModalDialogDefault-CloseButton {
  margin: 2px;
}
.ModalDialogDefault-CloseButton_withAddZone {
  right: 24px;
  top: 20px;
}
.FileCard {
  align-items: center;
  background-color: #f9fafc;
  border-radius: 8px;
  color: #001f4a;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  padding: 16px;
  position: relative;
}
.FileCard:hover {
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.078), 0 1px 2px 0 rgba(0, 0, 0, 0.078);
}
.FileCard:hover .FileCard-Buttons {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.FileCard_error {
  background-color: #fbb4b4;
}
.FileCard-File {
  margin-right: 16px;
}
.FileCard-InfoWrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.FileCard-Name {
  font-size: 16px;
  line-height: 22px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.FileCard-Info,
.FileCard-Name {
  font-family: SB Sans Interface;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.FileCard-Info {
  color: #7d838a;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  line-height: 20px;
}
.FileCard-Info_error {
  color: #f66868;
}
.FileCard_disabled {
  opacity: 0.5;
}
.FileCard-Buttons {
  background-color: #fff;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 16px;
}
.FileCard-ActionButton {
  align-items: center;
  background-color: #f9fafc;
  border-radius: 8px;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.FileCard-ActionButton:hover {
  background-color: #dee3ed;
}
.FileCardRow {
  background-color: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  color: #1f1f22;
  display: flex;
  font-family: SBSansUI;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: auto;
  letter-spacing: 0;
  line-height: 20px;
  padding: 16px 12px;
}
.FileCardRow:hover {
  background-color: #f2f4f7;
}
.FileCardRow-Index {
  width: 32px;
}
.FileCardRow-Col {
  flex-basis: 0;
  flex-grow: 3;
  padding: 0 8px;
}
.FileCardRow-Col-Status_Mobile {
  display: none;
}
.FileCardRow-StatusCol_LG {
  flex-basis: 0;
  padding: 0 16px 0 12px;
  position: relative;
}
.FileCardRow-StatusDot {
  border-radius: 50%;
  height: 8px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 8px;
}
.FileCardRow-StatusDot_success {
  background-color: #21a19a;
}
.FileCardRow-StatusDot_error {
  background-color: #db1237;
}
.FileCardRow-StatusDot_loading {
  background-color: #b2b8bf;
}
.FileCardRow-IconsCol {
  align-items: start;
  color: #b2b8bf;
  display: flex;
  gap: 25px;
  padding: 0 8px;
  width: 82px;
}
.FileCardRow-IconsCol .FileCardRow-IconsCol-Icon {
  cursor: pointer;
  vertical-align: middle;
}
.FileCardRow-IconsCol .FileCardRow-IconsCol-Icon:hover path {
  fill: #7d838a;
}
.FileCardRow-IconsCol .FileCardRow-IconsCol-Icon_Disabled path {
  fill: #d0d7dd;
}
@media screen and (max-width: 767px) {
  .FileCardRow-Col {
    display: flex;
    flex-direction: column;
  }
  .FileCardRow-Col-Name {
    margin-bottom: 4px;
  }
  .FileCardRow-Col-Size {
    margin-bottom: 8px;
  }
  .FileCardRow-Col-Status_Mobile {
    display: flex;
    flex-basis: 0;
    padding-left: 12px;
    position: relative;
  }
  .FileCardRow-StatusCol_LG {
    display: none;
  }
}
.MenuPanel {
  background-color: #fff;
  border-right: 1px solid #d0d7dd;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 216px;
  padding: 24px 8px 40px;
  width: 100%;
}
.MenuPanel-Item {
  background-color: #fff;
  border-radius: 8px;
  color: #001f4a;
  cursor: pointer;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 8px;
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.15s;
}
.MenuPanel-Item:last-child {
  margin-bottom: 0;
}
.MenuPanel-Item__active {
  background-color: #f3f5f9;
}
.MenuPanel-Item:hover {
  background-color: #d9dde1;
}
.MenuPanelVariant {
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 224px;
  width: 100%;
}
.MenuPanelVariant-Item {
  align-items: center;
  background-color: #fff;
  color: #1f1f22;
  cursor: pointer;
  display: flex;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  overflow: hidden;
  padding: 14px 10px;
  position: relative;
  text-decoration: none;
  transition: all 0.15s;
}
.MenuPanelVariant-Item svg path {
  fill: #b2b8bf;
}
.MenuPanelVariant-Item:after,
.MenuPanelVariant-Item:before {
  content: "";
  display: block;
  position: absolute;
}
.MenuPanelVariant-Item:before {
  background-color: #f2f4f7;
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
  bottom: 4px;
  left: 4px;
  opacity: 0;
  right: 0;
  top: 4px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.MenuPanelVariant-Item:after {
  background-color: #107f8c;
  border-radius: 0 4px 4px 0;
  height: 100%;
  left: 0;
  top: 0;
  transform: scaleY(0);
  transform-origin: 50%;
  transition: transform 0.3s ease;
  width: 4px;
}
.MenuPanelVariant-Item:hover:before,
.MenuPanelVariant-Item__active:before {
  opacity: 1;
}
.MenuPanelVariant-Item__active:before {
  background-color: #e4e8eb;
  transform: scale(1.15, 1.5);
}
.MenuPanelVariant-Item__active:after {
  transform: scaleY(1);
}
.MenuPanelVariant-Item__active svg path {
  fill: #107f8c;
}
.MenuPanelVariant-Icon,
.MenuPanelVariant-Label {
  position: relative;
}
.MenuPanelVariant-Icon {
  display: block;
  height: 20px;
  margin-left: 6px;
  margin-right: 8px;
  position: relative;
  text-align: center;
  width: 20px;
}
.PortalMenu {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.PortalMenu-Left,
.PortalMenu-Right {
  align-items: center;
  display: flex;
  gap: 24px;
}
.PortalMenu-Logo {
  cursor: pointer;
  height: 25px;
  width: 202px;
}
.PortalMenu-Product {
  align-items: center;
  display: flex;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  gap: 16px;
  letter-spacing: 0;
  line-height: 20px;
}
.AccountMenu {
  align-items: center;
  display: flex;
  gap: 8px;
}
.AccountMenu-Avatar {
  align-items: center;
  background-color: #aad7f1;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.AccountMenu-Option {
  align-items: center;
  background-color: #fff;
  color: #001f4a;
  cursor: pointer;
  display: flex;
  font-family: SB Sans Text;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  min-height: 56px;
  min-width: 233px;
  padding: 8px 16px;
}
.AccountMenu-Option:hover {
  background-color: #dee3ed;
}
.AccountMenu-IconBox {
  align-items: center;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-right: 8px;
  width: 40px;
}
.AccountMenu-Options {
  border-radius: 5px;
  padding: 8px 0;
}
.AccountMenu-CompanyOption {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 8px 16px;
  white-space: nowrap;
}
.AccountMenu-CompanyOption:hover {
  background-color: #dee3ed;
}
.AccountMenu-Abbreviation {
  align-items: center;
  background-color: #52be80;
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  height: 40px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 22px;
  margin-right: 8px;
  width: 40px;
}
.AccountMenu-Abbreviation__steel-blue {
  background-color: #6a8fed;
}
.AccountMenu-CompanyLabel {
  color: #001f4a;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
}
.AccountMenu-Spacer {
  flex: 1 1;
}
.AccountMenu-OptionsSeparator {
  border-top: 1px solid #dee3ed;
  margin: 8px 0;
}
.AccountMenu-SuccessIcon {
  margin-left: 8px;
}
.AccountMenu-UserInfo {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.AccountMenu-UserInfoName {
  color: #001f4a;
  font-size: 16px;
  line-height: 22px;
}
.AccountMenu-UserInfoCompany,
.AccountMenu-UserInfoName {
  font-family: SB Sans Interface;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.AccountMenu-UserInfoCompany {
  color: #828c9c;
  font-size: 14px;
  line-height: 20px;
}
.ProductMenu-Wrapper {
  display: flex;
  width: max-content;
}
.ProductMenu-Options {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 472px;
  padding: 12px 24px;
}
.ProductMenu-Options > div {
  margin: 12px 0;
}
.ProductMenu-Options a {
  text-decoration: none;
}
.ProductMenu-Option {
  align-items: center;
  background-color: #fff;
  color: #001f4a;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  gap: 8px;
  letter-spacing: 0;
  line-height: 20px;
  padding: 8px 0;
  text-align: center;
  width: 136px;
}
.ProductMenu-Option:hover {
  background-color: #f3f5f9;
  border-radius: 8px;
}
.ProductMenu-Option_disabled {
  cursor: default;
}
.ProductMenu-IconBox_disabled {
  opacity: 0.5;
}
.ProductMenu_custom-border .Dropdown-Content {
  border-radius: 16px;
}
.StepWizard-Spacer {
  flex: 1 1;
}
.StepWizard-Step,
.StepWizard-StepComponent {
  align-items: center;
  display: flex;
}
.StepWizard-StepComponent {
  justify-content: center;
}
.StepWizard-StepList {
  display: flex;
  list-style-type: none;
  overflow: hidden;
  padding: 0;
}
.StepWizard-StepTitle {
  color: #b4bac4;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  margin: 0 8px;
  white-space: nowrap;
}
.StepWizard-StepTitle__active,
.StepWizard-StepTitle__done {
  color: #001f4a;
}
.StepWizard-StepLabel {
  align-items: center;
  background-color: #d9dde1;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: SB Sans Text;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  height: 36px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  width: 36px;
}
.StepWizard-Step__done .StepWizard-StepLabel {
  background-color: #21a038;
  color: #fff;
}
.StepWizard-Step__active .StepWizard-StepLabel {
  background-color: #001f4a;
  color: #fff;
}
.StepWizard-Buttons {
  display: flex;
}
.StepWizard-Buttons button + button {
  margin-left: 8px;
}
.StepWizard-Separator {
  background-color: #dee3ed;
  height: 1px;
  margin-right: 8px;
  width: 32px;
}
.StepWizard-Separator__active {
  background-color: #21a038;
}
.FilesList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.FilesList-Title {
  margin-bottom: 16px;
}
.FilesList-Title_isInvalid {
  color: #f66868;
}
.FilesList-File {
  max-width: max-content;
}
.DropZoneTickets-Title {
  margin-bottom: 8px;
}
.DropZoneTickets-Description {
  margin-top: 16px;
}
.DropZoneTickets-FilesList {
  margin-bottom: 16px;
}
.DropZoneTickets-Button {
  width: fit-content;
}
.DropZoneTickets-Footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}
.VerticalExpander {
  padding: 16px;
}
.VerticalExpander-Title {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.VerticalExpander-Title_open {
  padding-bottom: 16px;
}
.VerticalExpander-TitleContent {
  flex-grow: 1;
}
.Avatar {
  align-items: center;
  background-color: #c2e8d2;
  background-size: cover!important;
  border-radius: 50%;
  color: #1a8e40;
  display: flex;
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0;
  line-height: 22px;
  position: relative;
  text-transform: uppercase;
}
.Avatar-EditPic {
  color: #05193a;
  display: none;
  position: absolute;
}
.Avatar_small {
  height: 40px;
  width: 40px;
}
.Avatar_medium {
  font-size: 33px;
  height: 80px;
  line-height: 41,38px;
  width: 80px;
}
.Avatar_large {
  font-size: 53px;
  height: 120px;
  line-height: 66px;
  width: 120px;
}
.Avatar_client {
  background-color: #cce7f7;
  color: #1e79c8;
}
.Avatar_editable {
  cursor: pointer;
}
.Avatar_editable:hover {
  background: #fff;
}
.Avatar_editable:hover .Avatar-Content {
  opacity: 0.1;
}
.Avatar_editable:hover .Avatar-EditPic {
  align-items: baseline;
  display: flex;
}
.FileUploader {
  box-sizing: border-box;
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
}
.FileUploader-Files {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.FileUploader-DropZone {
  align-items: center;
  background-color: #fff;
  border: 1px dashed #d0d7dd;
  border-radius: 8px;
  color: #1f1f22;
  display: flex;
  flex-direction: column;
  font-family: SBSansUI;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 20px;
  padding: 20px 0;
}
.FileUploader-DropZone:hover {
  border-color: #1f1f22;
  cursor: pointer;
}
.FileUploader-DropZoneContent {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}
.FileUploader-OnDragCover {
  align-items: center;
  background-color: #fff;
  border: 1px dashed #1f1f22;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.FileUploader-Link {
  color: #1358bf;
  cursor: pointer;
}
.FileUploader-Link:hover {
  color: #107f8c;
}
.FileUploader-Info {
  display: flex;
  gap: 4px;
}
.FileUploader-Info_LG {
  display: flex;
}
.FileUploader-Info_Mobile {
  display: none;
}
.FileUploader-Description {
  margin-top: 4px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .FileUploader-Info_LG {
    display: none;
  }
  .FileUploader-Info_Mobile {
    display: flex;
  }
}
.SkeletonSearchBlock {
  align-items: center;
  display: flex;
  height: 40px;
  justify-content: flex-start;
  width: 100%;
}
.SkeletonSearchBlock__withActions {
  justify-content: space-between;
}
.SkeletonSearchBlock-Search {
  height: 100%;
  max-width: 705px;
  width: 100%;
}
.SkeletonSearchBlock-Actions {
  align-items: center;
  display: flex;
  gap: 8px;
  height: 100%;
}
.SkeletonSearchBlock-Action {
  height: 100%;
  width: 170px;
}
.SkeletonTable {
  width: 100%;
}
.SkeletonTable_Variant table {
  border-spacing: 0 16px;
  margin-bottom: -16px;
  margin-top: -16px;
}
.SkeletonTable_Variant thead {
  background-color: #e4e8eb;
  color: #1f1f22;
  font-family: SBSansUI;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 16px;
}
.SkeletonTable_Variant th {
  font-weight: 400;
  padding: 16px 12px;
}
.SkeletonTable_Variant th:first-child {
  border-radius: 8px 0 0 0;
}
.SkeletonTable_Variant th:last-child {
  border-radius: 0 8px 0 0;
}
.SkeletonTable_Variant td {
  padding: 12px;
}
.SkeletonTable_Variant td .Skeleton {
  vertical-align: top;
}
.SkeletonTable-THead {
  align-items: center;
  display: flex;
  height: 60px;
  width: 100%;
}
.SkeletonTable-TR.TableUI-TR .TableUI-TD:first-child {
  padding: 16px 23px 16px 0;
}
.SkeletonTable_Variant .SkeletonTable-TR.TableUI-TR .TableUI-TD:first-child {
  padding: 12px 12px 12px 0;
}
.SkeletonTable-TR.TableUI-TR .TableUI-TD:last-child {
  padding: 16px 0 16px 23px;
}
.SkeletonTable_Variant .SkeletonTable-TR.TableUI-TR .TableUI-TD:last-child {
  padding: 12px 0 12px 12px;
}
.SkeletonTable-TR.TableUI-TR:nth-child(2n),
.SkeletonTable-TR.TableUI-TR:nth-child(odd) {
  background-color: transparent;
}
.SkeletonTable-TH_pointer {
  cursor: pointer;
}
.SkeletonTable-Header {
  white-space: nowrap;
}
.SkeletonTable_Variant .SkeletonTable-Header {
  align-items: center;
  display: flex;
}
.SkeletonTable-Header_left {
  justify-content: flex-start;
}
.SkeletonTable-Header_center {
  justify-content: center;
}
.SkeletonTable-Header_right {
  justify-content: flex-end;
}
.SkeletonTable-SortIcon {
  cursor: pointer;
  margin-left: 8px;
}
.SkeletonTable_Variant .SkeletonTable-SortIcon {
  margin-left: 12px;
  vertical-align: middle;
}
.SkeletonTable-Footer {
  align-items: center;
  display: flex;
  flex-flow: row;
  height: 44px;
  justify-content: space-between;
  margin-top: 16px;
}
.SkeletonTable_Variant .SkeletonTable-Footer {
  height: 32px;
}
.SkeletonTable-Count {
  height: 100%;
  width: 94px;
}
.SkeletonTable-Pagination {
  height: 100%;
  width: 500px;
}
.SkeletonTable-PageSize {
  height: 100%;
  width: 94px;
}
.SkeletonTabs {
  align-items: center;
  display: flex;
  gap: 24px;
  height: 28px;
  justify-content: flex-start;
  width: 100%;
}
.ToggleGroup {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.ToggleGroup:not(.ToggleGroup_Variant) {
  font-family: SB Sans Interface;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
}
.ToggleGroup_Variant {
  background-color: #fff;
  flex-wrap: nowrap;
  font-family: SBSansUI;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  justify-content: space-between;
  letter-spacing: 0;
  line-height: 16px;
}
.ToggleGroup:not(.ToggleGroup_Variant) .ToggleGroup-Item {
  display: inline-block;
}
.ToggleGroup-Item:first-child label {
  border-radius: 8px 0 0 8px;
}
.ToggleGroup-Item:last-child label {
  border-radius: 0 8px 8px 0;
}
.ToggleGroup_Variant .ToggleGroup-Item:first-child {
  margin-left: 0;
}
.ToggleGroup_Variant .ToggleGroup-Item {
  flex: 1;
  margin-left: -1px;
}
.ToggleGroup_Variant .ToggleGroup-Item label {
  border: 1px solid #d0d7dd;
  display: block;
  overflow: hidden;
  padding: 7px 23px;
  position: relative;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ToggleGroup_Variant .ToggleGroup-Item input[type=checkbox]:not(:disabled):not(:checked) + label:hover,
.ToggleGroup_Variant .ToggleGroup-Item input[type=radio]:not(:disabled):not(:checked) + label:hover {
  border-color: #1f1f22;
  cursor: pointer;
  z-index: 40;
}
.ToggleGroup_Variant .ToggleGroup-Item input[type=checkbox]:not(:disabled):checked + label:hover {
  background: #21a19a;
  border-color: #21a19a;
}
.ToggleGroup input[type=checkbox],
.ToggleGroup input[type=radio] {
  display: none;
}
.ToggleGroup input[type=checkbox]:checked + label,
.ToggleGroup input[type=radio]:checked + label {
  background-color: #c1cadc;
}
.ToggleGroup input[type=checkbox]:disabled + label,
.ToggleGroup input[type=radio]:disabled + label {
  background-color: #d9dde1;
  cursor: default;
}
.ToggleGroup_Variant input[type=checkbox]:checked + label,
.ToggleGroup_Variant input[type=radio]:checked + label {
  background-color: #107f8c;
  border-color: #107f8c;
  color: #fff;
  cursor: default;
  font-weight: 600;
}
.ToggleGroup_Variant input[type=checkbox]:disabled + label,
.ToggleGroup_Variant input[type=radio]:disabled + label {
  background-color: inherit;
  color: #d0d7dd;
  cursor: default;
  pointer-events: none;
}
.ToggleGroup:not(.ToggleGroup_Variant) label {
  background-color: #dee3ed;
  color: #1f1f22;
  cursor: pointer;
  display: inline-block;
  line-height: 40px;
  padding: 0 16px;
}
.Tooltip {
  display: inline-block;
  position: relative;
}
.Tooltip-Content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.08);
  color: #001f4a;
  font-family: SB Sans Interface;
  font-size: 14px;
  line-height: 1.42;
  opacity: 0;
  padding: 16px 24px;
  position: absolute;
  transition: all 0.1s linear;
  visibility: hidden;
  white-space: nowrap;
  z-index: -1;
}
.Tooltip-Show {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.Tooltip-bottom,
.Tooltip-top {
  left: 50%;
}
.Tooltip-bottom:before,
.Tooltip-top:before {
  left: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}
.Tooltip-top {
  top: -16px;
  transform: translate(-50%, -100%);
}
.Tooltip-top:before {
  bottom: 0;
}
.Tooltip-bottom {
  bottom: -16px;
  transform: translate(-50%, 100%);
}
.Tooltip-bottom:before {
  top: -16px;
}
.Tooltip-left,
.Tooltip-right {
  top: 50%;
  transform: translateY(-50%);
}
.Tooltip-left:before,
.Tooltip-right:before {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.Tooltip-left {
  right: calc(100% + 16px);
}
.Tooltip-left:before {
  right: -6px;
}
.Tooltip-right {
  left: calc(100% + 16px);
}
.Tooltip-right:before {
  left: -6px;
}
.Tooltip-Arrow:before {
  background: inherit;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  width: 16px;
}
.TimeDuration {
  display: flex;
  flex-direction: column;
}
.TimeDuration-Inputs {
  display: flex;
}
.TimeDuration-Title {
  margin-bottom: 8px;
}
.TimeDuration .MaskedInput {
  width: 72px;
}
.TimeDuration .MaskedInput + .MaskedInput {
  margin-left: 16px;
}
.AutoHeightTextArea {
  border: 1px solid #d0d7dd;
  border-radius: 8px;
  color: #1f1f22;
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  min-height: 80px;
  min-width: 0;
  outline: none;
  overflow: hidden;
  padding: 7px 11px;
  resize: none;
  vertical-align: top;
}
.AutoHeightTextArea:focus {
  border-color: #1f1f22;
}
.AutoHeightTextArea-Error {
  border-color: #c11030;
}
.AutoHeightTextArea-FullWidth {
  width: 100%;
}
textarea[disabled] {
  -webkit-text-fill-color: #7d838a;
  background-color: #f2f4f7;
  color: #7d838a;
  cursor: default;
}
.FormRow,
.FormRow-FullSize {
  gap: 8px;
}
.FormRow-Label {
  white-space: normal !important;
}
.FormRow-Label-Custom {
  margin-top: 6px;
}
.InputPeriodField {
  display: block;
  margin: 0;
}
.InputPeriodField-Row {
  align-items: center;
  display: flex;
  gap: 7px;
}
.InputPeriodField-Separate:before {
  background: #565b62;
  content: "";
  display: block;
  height: 2px;
  width: 10px;
}
.Notification {
  max-width: 376px;
}
@media (max-width: 420px) {
  .Notification {
    width: 100%;
  }
}
.Notification svg {
  vertical-align: top;
}
.Notification [class^=notificationBody__] {
  margin-top: 1px;
}
.Notification [class^=notificationIcon__] + [class^=notificationBody__] {
  flex: 1;
  max-width: 360px;
  width: 100%;
}
.AnswerPlugin {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  padding: 0;
}
.ltr {
  text-align: left;
}
.editor-container {
  border: 1px solid #d0d7dd;
  border-radius: 10px;
}
.editor-container-error {
  border-color: #c11030;
}
.editor-mobile {
  align-items: end;
  background: #fff;
  border-radius: inherit;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.editor-input-mobile {
  caret-color: #444;
  flex: 1;
  font-size: 15px;
  outline: 0;
  padding: 15px 10px;
  resize: none;
  width: 100%;
}
.editor-placeholder-mobile {
  color: #999;
  display: inline-block;
  font-size: 15px;
  left: 38px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: 15px;
  user-select: none;
}
.editor-file-mobile {
  padding: 0 0 8px 8px;
}
.editor-btn_send-mobile {
  padding: 0 4px 2px 0;
}
.editor-inner {
  background: #fff;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  position: relative;
}
.editor-info {
  padding: 0 10px 10px;
}
.editor-info-actions {
  display: flex;
  justify-content: space-between;
}
.editor-info-actions-add {
  align-items: center;
  display: flex;
  height: 28px;
}
.editor-input {
  caret-color: #444;
  font-size: 15px;
  min-height: 106px;
  outline: 0;
  padding: 15px 10px;
  position: relative;
  resize: none;
  tab-size: 1;
}
.editor-input.editor-input-with-info {
  min-height: 50px;
}
.editor-list-ul {
  padding: 0;
}
.editor-placeholder {
  color: #999;
  display: inline-block;
  font-size: 15px;
  left: 10px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: 15px;
  user-select: none;
}
.editor-text-bold {
  font-weight: 700;
}
.editor-text-italic {
  font-style: italic;
}
.editor-text-underline {
  text-decoration: underline;
}
.editor-paragraph {
  margin: 0 0 8px;
  position: relative;
}
.editor-paragraph:last-child {
  margin-bottom: 0;
}
.editor-heading-h1 {
  color: #050505;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
  padding: 0;
}
.editor-heading-h2 {
  color: #65676b;
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0 0;
  padding: 0;
  text-transform: uppercase;
}
.editor-listitem {
  margin: 8px 32px;
}
.editor-nested-listitem {
  list-style-type: none;
}
.editor-link {
  color: #1358bf;
  text-decoration: none;
  word-break: break-all;
}
.editor-link:hover {
  color: #107f8c;
}
.editor-link:active {
  color: #0f5498;
}
.toolbar {
  background: #fff;
  border-bottom: 1px solid #d0d7dd;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  justify-content: space-between;
  margin-bottom: 1px;
  overflow: auto;
  padding: 4px;
  vertical-align: middle;
}
.toolbar,
.toolbar-history,
.toolbar-main {
  display: flex;
}
.toolbar button.toolbar-item {
  background: none;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  padding: 8px;
  vertical-align: middle;
}
.toolbar button.toolbar-item:disabled {
  cursor: not-allowed;
}
.toolbar button.toolbar-item.spaced {
  margin-right: 2px;
}
.toolbar button.toolbar-item i.format {
  background-size: contain;
  color: #b2b8bf;
  display: flex;
  height: 18px;
  margin-top: 2px;
  vertical-align: -0.25em;
  width: 18px;
}
.toolbar button.toolbar-item:disabled i.format {
  color: #d0d7dd;
}
.toolbar button.toolbar-item.active {
  background-color: #d0d7dd;
}
.toolbar button.toolbar-item.active i {
  color: #565b62;
}
.toolbar .toolbar-item:hover:not([disabled]) {
  background-color: #f2f4f7;
}
.toolbar .editor-dropdown .dropdown {
  margin-top: 4px;
}
.toolbar .divider {
  background-color: #d0d7dd;
  margin: 0 4px;
  width: 1px;
}
.toolbar select.toolbar-item {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: 0;
  border-radius: 10px;
  color: #777;
  padding: 8px;
  width: 70px;
}
.toolbar .toolbar-item .text,
.toolbar select.toolbar-item {
  display: flex;
  font-size: 14px;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.toolbar .toolbar-item .text {
  color: #565b62;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  text-align: left;
  width: 160px;
}
.toolbar .toolbar-item .icon {
  background-repeat: no-repeat;
  background-size: contain;
  color: #565b62;
  display: flex;
  height: 20px;
  line-height: 16px;
  margin-right: 8px;
  user-select: none;
  width: 20px;
}
.toolbar i.chevron-down {
  display: flex;
  height: 16px;
  margin-top: 3px;
  user-select: none;
  width: 16px;
}
.toolbar i.chevron-down.inside {
  display: flex;
  height: 16px;
  margin-left: -25px;
  margin-right: 10px;
  margin-top: 11px;
  pointer-events: none;
  width: 16px;
}
i.chevron-down {
  background-color: transparent;
  background-image: url(/29997c611e2d0661edbd.svg);
  background-size: contain;
  display: inline-block;
  height: 8px;
  width: 8px;
}
.dropdown {
  box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px hsla(0, 0%, 100%, 0.5);
  display: block;
  min-height: 40px;
  min-width: 100px;
  position: absolute;
  z-index: 1301;
}
.dropdown,
.dropdown .item {
  background-color: #fff;
  border-radius: 8px;
}
.dropdown .item {
  align-content: center;
  border: 0;
  color: #050505;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  font-size: 15px;
  justify-content: space-between;
  line-height: 16px;
  margin: 0 8px;
  min-width: 268px;
  padding: 8px;
}
.dropdown button.item.active {
  background-color: #d0d7dd;
}
.dropdown button.item.active span.icon {
  color: #565b62;
}
.dropdown .item:first-child {
  margin-top: 8px;
}
.dropdown .item:last-child {
  margin-bottom: 8px;
}
.dropdown .item:hover {
  background-color: #f2f4f7;
}
.dropdown .item .text {
  display: flex;
  flex-grow: 1;
  line-height: 20px;
  width: 200px;
}
.dropdown .item .icon {
  background-repeat: no-repeat;
  background-size: contain;
  color: #b2b8bf;
  display: flex;
  height: 20px;
  line-height: 16px;
  margin-right: 12px;
  user-select: none;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .toolbar .toolbar-item .text {
    display: none !important;
  }
}
.NoData {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 16px 0 24px;
}
.NoData button {
  margin-top: 24px;
}
.StarRating {
  display: flex;
  gap: 4px;
}
.StarRating button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}
.StarRating button svg {
  height: 24px;
  width: 24px;
}
.MonthPeriod {
  display: block;
  margin: 0;
}
.MonthPeriod-Row {
  align-items: center;
  display: flex;
  gap: 7px;
}
.MonthPeriod-Separate:before {
  background: #565b62;
  content: "";
  display: block;
  height: 2px;
  width: 10px;
}
.HeaderVariant-Top {
  line-height: 20px;
  padding: 24px 32px 0;
}
.HeaderVariant-Top + .HeaderVariant-Title {
  padding-top: 0;
}
.HeaderVariant-Skeleton {
  display: block;
}
.HeaderVariant-TabsFolder {
  padding: 0 !important;
}
@media (max-width: 767px) {
  .HeaderVariant-Top {
    padding: 20px 16px 0;
  }
}
.TabsVariant-Content {
  background-color: #fff;
  border-radius: 16px;
}
.TabsVariant-DropdownLink {
  color: inherit;
}
.TabsVariant-Badge:after {
  background: #f90;
  border-radius: 50%;
  content: "";
  height: 8px;
  position: absolute;
  right: 4px;
  top: 4px;
  width: 8px;
}
.MultipleSelect-DropDown {
  position: relative;
}
.MultipleSelect-Group label + label {
  margin-top: 8px !important;
}
.MultipleSelect-Empty {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.table-icon .service-fill {
  fill: #d0d7dd;
}
.ADkAkg {
  fill: #b2b8bf;
}
.ABUAQw {
  fill: #1f1f22;
}
.AK0A5w {
  fill: #fff;
}
.AOMAUA {
  fill: #1f1f22;
}
.AMAAKg {
  fill: #107f8c;
}
.ALkAVQ {
  fill: #e4e8eb;
}
.AMkAKw {
  fill: #107f8c;
}
.ACoAow {
  fill: #fff;
}
.AB4AIA {
  fill: #21a19a;
}
.AJsAKQ {
  fill: #005e7f;
}
.AKsAnw,
.AMQAjA,
.AP4A4A {
  fill: #b2b8bf;
}
.AJQA9g {
  fill: #d0d7dd;
}
.AC0A7g {
  fill: #b2b8bf;
}
.AKsA-A {
  fill: #d0d7dd;
}
.AJYA7A {
  fill: #b2b8bf;
}
.AAcAHA {
  fill: #565b62;
}
.ANAApQ {
  fill: #d0d7dd;
}
.AI8ADg,
.AIcA_w,
.ALcAqQ {
  fill: #b2b8bf;
}
.AOwA-g {
  fill: #198cfe;
}
.ANUA6A {
  fill: #1358bf;
}
.AHMA_g {
  fill: #b2b8bf;
}
.AGYAAA {
  fill: #f90;
}
.AFcAxA {
  fill: #b2b8bf;
}
.AJQAgQ {
  fill: #1f1f22;
}
.ACwAGQ {
  fill: #f2f4f7;
}
.ADEApg {
  fill: #565b62;
}
.APUAvw {
  fill: #b2b8bf;
}
.AMsAgw {
  fill: #565b62;
}
.AJsA8w {
  fill: #e4e8eb;
}
.ABYAhQ,
.AI4Abg,
.APYAZA {
  fill: #b2b8bf;
}
.APgA0Q {
  fill: #fff;
}
.ACAAiQ,
.ADUArg {
  fill: #1f1f22;
}
.AOIA5A {
  fill: #7d838a;
}
.ABgAfQ {
  fill: #2d2d30;
}
.AG4AAg {
  fill: #e4e8eb;
}
.AJEAlg {
  fill: #565b62;
}
.ABoAyA {
  fill: #b2b8bf;
}
.ABIASg {
  fill: #d0d7dd;
}
.AJ0AVg {
  fill: #b2b8bf;
}
.ANcA2Q {
  fill: #7d838a;
}
.AKEA0g,
.AMYAjA {
  fill: #fff;
}
.AM0AGg {
  fill: #b2b8bf;
}
.APEAAQ {
  fill: #e4e8eb;
}
.AAMA4g {
  fill: #565b62;
}
.AIQAjw {
  fill: #fff;
}
.AIAAsw {
  fill: #7d838a;
}
.ADQA7Q {
  fill: #b2b8bf;
}
.AKsAjA {
  fill: #21a19a;
}
.AKoAqw {
  fill: #107f8c;
}
.AEEA7g {
  fill: #565b62;
}
.AJAA6w {
  fill: #1f1f22;
}
.AAQA4w,
.AH4ADg {
  fill: #565b62;
}
.ABMAIg {
  fill: #e4e8eb;
}
.AHUAdg {
  fill: #fff;
}
.AIMABA,
.AJEA5w,
.AL8ADg {
  fill: #b2b8bf;
}
.AAUAuw {
  fill: #565b62;
}
.ADkAqw {
  fill: #e4e8eb;
}
.ADMA4g {
  fill: #565b62;
}
.ANcAWQ {
  fill: #e4e8eb;
}
.APcA2A {
  fill: #565b62;
}
.AKIA9A {
  fill: #21a19a;
}
@media (-ms-high-contrast: none), (hover: hover) and (pointer: fine), only screen and (-ms-high-contrast: active) {
  tr:hover button:enabled .table-icon .service-fill {
    fill: #b2b8bf;
  }
  tr:hover button:enabled:hover .table-icon .service-fill {
    fill: #7d838a;
  }
  .hoverable:hover .AKsAnw {
    fill: #21a19a;
  }
  .hoverable:hover .AP4A4A {
    fill: #107f8c;
  }
  .hoverable:hover .AJQA9g {
    fill: #e4e8eb;
  }
  .hoverable:hover .AC0A7g {
    fill: #b2b8bf;
  }
  .hoverable:hover .AKsA-A {
    fill: #e4e8eb;
  }
  .hoverable:hover .AJYA7A {
    fill: #7d838a;
  }
  .hoverable:hover .AAcAHA {
    fill: #b2b8bf;
  }
  .hoverable:hover .ANAApQ {
    fill: #fff;
  }
  .hoverable:hover .AIcA_w {
    fill: #e4e8eb;
  }
  .hoverable:hover .AI8ADg,
  .hoverable:hover .ALcAqQ {
    fill: #107f8c;
  }
  .hoverable:hover .AOwA-g {
    fill: #21a19a;
  }
  .hoverable:hover .ANUA6A {
    fill: #107f8c;
  }
  .hoverable:hover .AHMA_g {
    fill: #21a19a;
  }
  .hoverable:hover .AGYAAA {
    fill: #f90;
  }
  .hoverable:hover .AFcAxA {
    fill: #7d838a;
  }
  .hoverable:hover .AJQAgQ {
    fill: #1f1f22;
  }
  .hoverable:hover .ACwAGQ {
    fill: #e4e8eb;
  }
  .hoverable:hover .ADEApg {
    fill: #1f1f22;
  }
  .hoverable:hover .APUAvw {
    fill: #7d838a;
  }
  .hoverable:hover .AMsAgw {
    fill: #005e7f;
  }
  .hoverable:hover .AJsA8w {
    fill: #90d0cc;
  }
  .hoverable:hover .APgA0Q {
    fill: #fff;
  }
  .hoverable:hover .ACAAiQ,
  .hoverable:hover .ADUArg {
    fill: #1f1f22;
  }
  .hoverable:hover .AOIA5A {
    fill: #e4e8eb;
  }
  .hoverable:hover .ABgAfQ {
    fill: #2d2d30;
  }
  .hoverable:hover .AG4AAg {
    fill: #e4e8eb;
  }
  .hoverable:hover .ABoAyA,
  .hoverable:hover .AJEAlg {
    fill: #565b62;
  }
  .hoverable:hover .ABIASg {
    fill: #fff;
  }
  .hoverable:hover .AJ0AVg {
    fill: #e4e8eb;
  }
  .hoverable:hover .ANcA2Q {
    fill: #565b62;
  }
  .hoverable:hover .AKEA0g,
  .hoverable:hover .AMYAjA {
    fill: #fff;
  }
  .hoverable:hover .AM0AGg {
    fill: #7d838a;
  }
  .hoverable:hover .APEAAQ {
    fill: #21a19a;
  }
  .hoverable:hover .AAMA4g {
    fill: #107f8c;
  }
  .hoverable:hover .AIQAjw {
    fill: #fff;
  }
  .hoverable:hover .AIAAsw {
    fill: #565b62;
  }
  .hoverable:hover .ADQA7Q {
    fill: #e4e8eb;
  }
  .hoverable:hover .AKsAjA {
    fill: #107f8c;
  }
  .hoverable:hover .AKoAqw {
    fill: #005e7f;
  }
  .hoverable:hover .AEEA7g {
    fill: #7d838a;
  }
  .hoverable:hover .AJAA6w {
    fill: #1f1f22;
  }
  .hoverable:hover .AH4ADg {
    fill: #e4e8eb;
  }
  .hoverable:hover .AAQA4w {
    fill: #1f1f22;
  }
  .hoverable:hover .AJEA5w {
    fill: #db1237;
  }
  .hoverable:hover .AIMABA,
  .hoverable:hover .AL8ADg {
    fill: #21a19a;
  }
  .hoverable:hover .AAUAuw {
    fill: #db1237;
  }
  .hoverable:hover .ADkAqw {
    fill: #fff;
  }
  .hoverable:hover .ADMA4g {
    fill: #21a19a;
  }
  .hoverable:hover .ANcAWQ {
    fill: #fff;
  }
  .hoverable:hover .APcA2A {
    fill: #21a19a;
  }
}
tr.selected button:enabled .table-icon .service-fill {
  fill: #b2b8bf;
}
.hoverable.active .ADkAkg,
.hoverable:not(:disabled):active .ADkAkg {
  fill: #e4e8eb;
}
.hoverable.active .ABUAQw,
.hoverable:not(:disabled):active .ABUAQw {
  fill: #1f1f22;
}
.hoverable.active .AK0A5w,
.hoverable:not(:disabled):active .AK0A5w {
  fill: #fff;
}
.hoverable.active .AOMAUA,
.hoverable:not(:disabled):active .AOMAUA {
  fill: #7d838a;
}
.hoverable.active .AMQAjA,
.hoverable:not(:disabled):active .AMQAjA {
  fill: #d0d7dd;
}
.hoverable.active .AKsAnw,
.hoverable:not(:disabled):active .AKsAnw {
  fill: #21a19a;
}
.hoverable.active .AP4A4A,
.hoverable:not(:disabled):active .AP4A4A {
  fill: #107f8c;
}
.hoverable.active .AJQA9g,
.hoverable:not(:disabled):active .AJQA9g {
  fill: #d0d7dd;
}
.hoverable.active .AC0A7g,
.hoverable:not(:disabled):active .AC0A7g {
  fill: #565b62;
}
.hoverable.active .AKsA-A,
.hoverable:not(:disabled):active .AKsA-A {
  fill: #e4e8eb;
}
.hoverable.active .AJYA7A,
.hoverable:not(:disabled):active .AJYA7A {
  fill: #7d838a;
}
.hoverable.active .AAcAHA,
.hoverable:not(:disabled):active .AAcAHA {
  fill: #b2b8bf;
}
.hoverable.active .ANAApQ,
.hoverable:not(:disabled):active .ANAApQ {
  fill: #fff;
}
.hoverable.active .AIcA_w,
.hoverable:not(:disabled):active .AIcA_w {
  fill: #e4e8eb;
}
.hoverable.active .AI8ADg,
.hoverable:not(:disabled):active .AI8ADg {
  fill: #107f8c;
}
.hoverable.active .ALcAqQ,
.hoverable:not(:disabled):active .ALcAqQ {
  fill: #21a19a;
}
.hoverable.active .AOwA-g,
.hoverable:not(:disabled):active .AOwA-g {
  fill: #1358bf;
}
.hoverable.active .ANUA6A,
.hoverable:not(:disabled):active .ANUA6A {
  fill: #0f5498;
}
.hoverable.active .AHMA_g,
.hoverable:not(:disabled):active .AHMA_g {
  fill: #21a19a;
}
.hoverable.active .AGYAAA,
.hoverable:not(:disabled):active .AGYAAA {
  fill: #f90;
}
.hoverable.active .AFcAxA,
.hoverable:not(:disabled):active .AFcAxA {
  fill: #7d838a;
}
.hoverable.active .AJQAgQ,
.hoverable:not(:disabled):active .AJQAgQ {
  fill: #1f1f22;
}
.hoverable.active .ACwAGQ,
.hoverable:not(:disabled):active .ACwAGQ {
  fill: #e4e8eb;
}
.hoverable.active .ADEApg,
.hoverable:not(:disabled):active .ADEApg {
  fill: #1f1f22;
}
.hoverable.active .APUAvw,
.hoverable:not(:disabled):active .APUAvw {
  fill: #7d838a;
}
.hoverable.active .AMsAgw,
.hoverable:not(:disabled):active .AMsAgw {
  fill: #005e7f;
}
.hoverable.active .AJsA8w,
.hoverable:not(:disabled):active .AJsA8w {
  fill: #90d0cc;
}
.hoverable.active .APYAZA,
.hoverable:not(:disabled):active .APYAZA {
  fill: #21a19a;
}
.hoverable.active .AI4Abg,
.hoverable:not(:disabled):active .AI4Abg {
  fill: #107f8c;
}
.hoverable.active .ABYAhQ,
.hoverable:not(:disabled):active .ABYAhQ {
  fill: #198cfe;
}
.hoverable.active .APgA0Q,
.hoverable:not(:disabled):active .APgA0Q {
  fill: #fff;
}
.hoverable.active .ACAAiQ,
.hoverable.active .ADUArg,
.hoverable:not(:disabled):active .ACAAiQ,
.hoverable:not(:disabled):active .ADUArg {
  fill: #1f1f22;
}
.hoverable.active .AOIA5A,
.hoverable:not(:disabled):active .AOIA5A {
  fill: #e4e8eb;
}
.hoverable.active .ABgAfQ,
.hoverable:not(:disabled):active .ABgAfQ {
  fill: #2d2d30;
}
.hoverable.active .AG4AAg,
.hoverable:not(:disabled):active .AG4AAg {
  fill: #e4e8eb;
}
.hoverable.active .ABoAyA,
.hoverable.active .AJEAlg,
.hoverable:not(:disabled):active .ABoAyA,
.hoverable:not(:disabled):active .AJEAlg {
  fill: #565b62;
}
.hoverable.active .ABIASg,
.hoverable:not(:disabled):active .ABIASg {
  fill: #fff;
}
.hoverable.active .AJ0AVg,
.hoverable:not(:disabled):active .AJ0AVg {
  fill: #e4e8eb;
}
.hoverable.active .ANcA2Q,
.hoverable:not(:disabled):active .ANcA2Q {
  fill: #565b62;
}
.hoverable.active .AKEA0g,
.hoverable.active .AMYAjA,
.hoverable:not(:disabled):active .AKEA0g,
.hoverable:not(:disabled):active .AMYAjA {
  fill: #fff;
}
.hoverable.active .AM0AGg,
.hoverable:not(:disabled):active .AM0AGg {
  fill: #7d838a;
}
.hoverable.active .APEAAQ,
.hoverable:not(:disabled):active .APEAAQ {
  fill: #21a19a;
}
.hoverable.active .AAMA4g,
.hoverable:not(:disabled):active .AAMA4g {
  fill: #107f8c;
}
.hoverable.active .AIAAsw,
.hoverable:not(:disabled):active .AIAAsw {
  fill: #1f1f22;
}
.hoverable.active .ADQA7Q,
.hoverable:not(:disabled):active .ADQA7Q {
  fill: #f2f4f7;
}
.hoverable.active .AKsAjA,
.hoverable:not(:disabled):active .AKsAjA {
  fill: #107f8c;
}
.hoverable.active .AKoAqw,
.hoverable:not(:disabled):active .AKoAqw {
  fill: #005e7f;
}
.hoverable.active .AEEA7g,
.hoverable:not(:disabled):active .AEEA7g {
  fill: #7d838a;
}
.hoverable.active .AJEA5w,
.hoverable:not(:disabled):active .AJEA5w {
  fill: #c11030;
}
.hoverable.active .AL8ADg,
.hoverable:not(:disabled):active .AL8ADg {
  fill: #90d0cc;
}
.hoverable.active .AIMABA,
.hoverable:not(:disabled):active .AIMABA {
  fill: #107f8c;
}
.hoverable.active .AAUAuw,
.hoverable:not(:disabled):active .AAUAuw {
  fill: #c11030;
}
.hoverable.active .ADkAqw,
.hoverable:not(:disabled):active .ADkAqw {
  fill: #fff;
}
.hoverable.active .ADMA4g,
.hoverable:not(:disabled):active .ADMA4g {
  fill: #90d0cc;
}
.hoverable.active .ANcAWQ,
.hoverable:not(:disabled):active .ANcAWQ {
  fill: #1f1f22;
}
.hoverable.active .APcA2A,
.hoverable:not(:disabled):active .APcA2A {
  fill: #107f8c;
}
.hoverable.disabled .AMAAKg,
.hoverable:disabled .AMAAKg {
  fill: #b2b8bf;
}
.hoverable.disabled .ALkAVQ,
.hoverable:disabled .ALkAVQ {
  fill: #e4e8eb;
}
.hoverable.disabled .AMkAKw,
.hoverable:disabled .AMkAKw {
  fill: #d0d7dd;
}
.hoverable.disabled .ACoAow,
.hoverable:disabled .ACoAow {
  fill: #fff;
}
.hoverable.disabled .AB4AIA,
.hoverable:disabled .AB4AIA {
  fill: #b2b8bf;
}
.hoverable.disabled .AJsAKQ,
.hoverable:disabled .AJsAKQ {
  fill: #d0d7dd;
}
.hoverable.disabled .AKsAnw,
.hoverable:disabled .AKsAnw {
  fill: #565b62;
}
.hoverable.disabled .AP4A4A,
.hoverable:disabled .AP4A4A {
  fill: #d0d7dd;
}
.hoverable.disabled .AJQA9g,
.hoverable:disabled .AJQA9g {
  fill: #565b62;
}
.hoverable.disabled .AC0A7g,
.hoverable:disabled .AC0A7g {
  fill: #d0d7dd;
}
.hoverable.disabled .AKsA-A,
.hoverable:disabled .AKsA-A {
  fill: #565b62;
}
.hoverable.disabled .AJYA7A,
.hoverable:disabled .AJYA7A {
  fill: #d0d7dd;
}
.hoverable.disabled .AIcA_w,
.hoverable.disabled .ALcAqQ,
.hoverable:disabled .AIcA_w,
.hoverable:disabled .ALcAqQ {
  fill: #565b62;
}
.hoverable.disabled .AFcAxA,
.hoverable:disabled .AFcAxA {
  fill: #2d2d30;
}
.hoverable.disabled .AJQAgQ,
.hoverable:disabled .AJQAgQ {
  fill: #565b62;
}
.hoverable.disabled .ACwAGQ,
.hoverable:disabled .ACwAGQ {
  fill: #f2f4f7;
}
.hoverable.disabled .ADEApg,
.hoverable:disabled .ADEApg {
  fill: #d0d7dd;
}
.hoverable.disabled .AMsAgw,
.hoverable.disabled .APUAvw,
.hoverable:disabled .AMsAgw,
.hoverable:disabled .APUAvw {
  fill: #565b62;
}
.hoverable.disabled .AJsA8w,
.hoverable:disabled .AJsA8w {
  fill: #f2f4f7;
}
.hoverable.disabled .APgA0Q,
.hoverable:disabled .APgA0Q {
  fill: #fff;
}
.hoverable.disabled .ACAAiQ,
.hoverable:disabled .ACAAiQ {
  fill: #1f1f22;
}
.hoverable.disabled .ADUArg,
.hoverable:disabled .ADUArg {
  fill: #d0d7dd;
}
.hoverable.disabled .AOIA5A,
.hoverable:disabled .AOIA5A {
  fill: #565b62;
}
.hoverable.disabled .ABgAfQ,
.hoverable:disabled .ABgAfQ {
  fill: #2d2d30;
}
.hoverable.disabled .AG4AAg,
.hoverable:disabled .AG4AAg {
  fill: #565b62;
}
.hoverable.disabled .AJEAlg,
.hoverable:disabled .AJEAlg {
  fill: #d0d7dd;
}
.hoverable.disabled .ABoAyA,
.hoverable:disabled .ABoAyA {
  fill: #e4e8eb;
}
.hoverable.disabled .ABIASg,
.hoverable:disabled .ABIASg {
  fill: #565b62;
}
.hoverable.disabled .AMYAjA,
.hoverable:disabled .AMYAjA {
  fill: #7d838a;
}
.hoverable.disabled .AIAAsw,
.hoverable:disabled .AIAAsw {
  fill: #d0d7dd;
}
.hoverable.disabled .ADQA7Q,
.hoverable.disabled .AKsAjA,
.hoverable:disabled .ADQA7Q,
.hoverable:disabled .AKsAjA {
  fill: #565b62;
}
.hoverable.disabled .AKoAqw,
.hoverable:disabled .AKoAqw {
  fill: #90d0cc;
}
.hoverable.disabled .ABMAIg,
.hoverable:disabled .ABMAIg {
  fill: #565b62;
}
.hoverable.disabled .AHUAdg,
.hoverable:disabled .AHUAdg {
  fill: #d0d7dd;
}
.hoverable.disabled .AKIA9A,
.hoverable:disabled .AKIA9A {
  fill: #565b62;
}
.AsyncSelectVariant-Label {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.AsyncSelectVariant-Field {
  position: relative;
}
.AsyncSelectVariant-ClearButton {
  bottom: 0;
  margin: auto;
  position: absolute!important;
  right: 30px;
  top: 0;
  z-index: 1;
}
.AsyncSelectVariant-Subtitle {
  color: #7d838a;
  font-family: SB Sans Interface;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 16px;
  margin-top: 4px;
}
.AsyncSelectVariant_isInvalid {
  color: #f66868;
}
.AsyncSelectVariant-Target ~ svg[class*=spinnerIcon__] {
  right: 36px !important;
}
.AsyncSelectVariant-Target_HasValue ~ input {
  padding-right: 35px !important;
}
.AsyncSelectVariant-Target_HasValue ~ input::placeholder {
  color: #1f1f22 !important;
}
.AsyncSelectVariant-Target_Space .AsyncSelectVariant-Target-Text,
.AsyncSelectVariant-Target_Space ~ input {
  padding-right: 66px !important;
}
.AsyncSelectVariant-Target-Text {
  border: 1px solid #d0d7dd;
  border-radius: 8px;
  color: #7d838a;
  font-size: 14px;
  height: 32px;
  padding: 5px 11px;
  width: 100%;
}
.AsyncSelectVariant-Target-Text,
.AsyncSelectVariant-Target-Text ~ input {
  padding-right: 35px !important;
}
.AsyncSelectVariant-Target-Text div {
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.AsyncSelectVariant-Target .AsyncSelectVariant-Target-Spinner,
.AsyncSelectVariant-Target-DropDownIcon {
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
}
.AsyncSelectVariant-Target-DropDownIcon {
  height: 16px;
  right: 11px;
  transform: rotate(0);
  transition: transform 0.3s ease;
  width: 16px;
}
.AsyncSelectVariant-Target-DropDownIcon svg {
  vertical-align: top;
}
.AsyncSelectVariant-Target_Select .AsyncSelectVariant-Target-DropDownIcon {
  transform: rotate(180deg);
}
.AsyncSelectVariant-Target-Spinner {
  height: 20px;
  right: 36px;
  width: 20px;
}
@font-face {
  font-family: SB Sans Display;
  font-style: normal;
  font-weight: 400;
  src: url(/be75d6fe9143c941152e.otf) format("truetype");
}
@font-face {
  font-family: SB Sans Display;
  font-style: normal;
  font-weight: 600;
  src: url(/141ba3a5b19ce30eeb60.otf) format("truetype");
}
@font-face {
  font-family: SB Sans Display;
  font-style: normal;
  font-weight: 700;
  src: url(/a610374acc42279d8457.otf) format("truetype");
}
@font-face {
  font-family: SB Sans Text;
  font-style: normal;
  font-weight: 400;
  src: url(/3ea2a4e4faa38e052f64.ttf) format("truetype");
}
@font-face {
  font-family: SB Sans Text;
  font-style: normal;
  font-weight: 600;
  src: url(/f4168a2fca385b3aea0d.ttf) format("truetype");
}
@font-face {
  font-family: SB Sans Text;
  font-style: normal;
  font-weight: 700;
  src: url(/1a47ae3fa813642fde5b.ttf) format("truetype");
}
@font-face {
  font-family: SB Sans Interface;
  font-style: normal;
  font-weight: 400;
  src: url(/2d3a0b0f2ef1f014e562.ttf) format("truetype");
}
@font-face {
  font-family: SB Sans Interface;
  font-style: normal;
  font-weight: 600;
  src: url(/b0fda4dccd041fb889b2.ttf) format("truetype");
}
@font-face {
  font-family: SBSansUI;
  font-style: normal;
  font-weight: 400;
  src: url(/2d3a0b0f2ef1f014e562.ttf) format("truetype");
}
@font-face {
  font-family: SBSansUI;
  font-style: normal;
  font-weight: 600;
  src: url(/b0fda4dccd041fb889b2.ttf) format("truetype");
}
.highlight {
  background-color: #53bee0;
  color: #fff;
}
.RouterLink {
  color: #1358bf;
  text-decoration: none;
  word-break: break-all;
}
.RouterLink:hover {
  color: #107f8c;
}
.RouterLink:active {
  color: #0f5498;
}
.EditorWithFiles-OnDragCover {
  align-items: center;
  background-color: #fff;
  border: 1px dashed #1f1f22;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: visible;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}
.FileArea {
  justify-content: space-between;
  margin-bottom: 16px;
}
.FileArea,
.FileArea-Info {
  align-items: center;
  display: flex;
}
.FileArea-Info {
  gap: 4px;
}
.FileArea-Text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.FileArea-Text-Name {
  color: #93b7ed;
  cursor: pointer;
}
.FileArea-Text-Name_success {
  color: #1358bf;
}

.Header {
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  z-index: 55;
}
.App_Sm .Header {
  height: 50px;
}
.Header-Content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  height: 100%;
}
.App_Sm .Header-Content {
  padding: 8px 16px;
}
.Header-Logo {
  vertical-align: top;
}
.App_Sm .Header-Divider {
  margin-left: -16px;
  margin-right: -16px;
}

.Footer {
  flex-direction: column;
  margin: 24px 0;
}
.Footer_Sm {
  margin: 16px 0;
}
.Footer,
.Footer-Row-Text {
  display: flex;
  gap: 8px;
}
.Footer-Row-Text {
  justify-content: center;
}
.Footer .Footer-Text {
  color: #565B62;
}

.RejectionModal-Body,
.RejectionModal-BodyRow {
  display: flex;
  flex-direction: column;
}
.RejectionModal-Body {
  gap: 16px;
}
.RejectionModal-BodyCenter {
  align-items: center;
  text-align: center;
  gap: 0;
  height: 100%;
}
.RejectionModal-FieldLabel {
  margin-bottom: 8px;
}

.CallBackModal-Body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.CallBackModal-BodyCenter {
  align-items: center;
  gap: 0;
  height: 100%;
}

.FormRow-Label {
  white-space: normal !important;
}
@media screen and (min-width: 768px) {
  .FormRow-Label-Custom {
    margin-top: 6px;
  }
}
@media screen and (max-width: 767px) {
  .FormRow-Label {
    margin-bottom: 8px;
  }
}

.NumberInputVariant {
  display: flex;
  align-items: center;
}
input.NumberInputVariant-Input {
  text-align: left;
}
.NumberInputVariant-Input,
.NumberInputVariant-Unit {
  height: 32px;
  font-size: 14px;
  border: 1px solid #D0D7DD;
  box-sizing: border-box;
  font-family: inherit;
  color: #1F1F22;
}
.NumberInputVariant-Input:focus,
.NumberInputVariant-Input:focus ~ .NumberInputVariant-Unit {
  border-color: #1F1F22;
}
.NumberInputVariant-InputError,
.NumberInputVariant-InputError:focus,
.NumberInputVariant-InputError ~ .NumberInputVariant-Unit,
.NumberInputVariant-InputError:focus ~ .NumberInputVariant-Unit {
  border-color: #C11030;
}
.NumberInputVariant-InputFilled ~ .NumberInputVariant-Unit {
  color: #1F1F22;
}
.NumberInputVariant-Input {
  width: 100%;
  min-width: 0;
  padding: 7px 11px;
  outline: none;
  border-radius: 8px;
  text-align: right;
  line-height: 16px;
}
input.NumberInputVariant-InputWithUnit {
  padding-right: 4px;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  text-align: right;
}
.NumberInputVariant-Unit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 8px 8px 0;
  border-left: none;
  background-color: #FFFFFF;
  padding-right: 11px;
  padding-left: 4px;
  font-weight: 400;
  color: #7D838A;
}

.IndividualOffer-Link {
  margin-top: 30px;
}

.CustomAlert {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto;
}

.TotalPrice .TotalPrice-Title {
  margin-bottom: 12px;
}
.TotalPrice-Content {
  display: flex;
  gap: 12px;
}
.App_Sm .TotalPrice-Content {
  flex-direction: column;
  gap: 4px;
}

.ConfirmContacts {
  margin-bottom: 16px;
}
.ConfirmContacts-Text {
  margin: 4px 0 24px;
  max-width: 550px;
}
.App_Sm .ConfirmContacts-FormRow {
  max-width: 400px;
}
.ConfirmContacts-FormRow > div:first-child {
  min-width: 172px;
}

.Finish {
  display: flex;
  position: relative;
  margin: auto;
  padding: 20px 0;
}
.Finish_Loader {
  padding-bottom: 130px;
}
.App_Sm .Finish_Loader {
  padding-bottom: 80px;
}
.Finish-Text {
  white-space: pre-line;
}
.App_Sm .Finish-Text {
  max-width: 344px;
  white-space: normal;
}
.Finish-Spinner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.TariffCard {
  flex-direction: column;
  max-width: 300px;
  background-color: #FFFFFF;
}
.TariffCard,
.TariffCard-Content,
.TariffCard-Body,
.TariffCard-Footer {
  display: flex !important;
}
.App_Sm .TariffCard {
  min-width: min(296px, 88%);
}
.TariffCard .TariffCard-PriceInMonth {
  color: #565B62;
}
.TariffCard .TariffCard-PriceInMonth:not(:first-child) {
  margin-top: 4px;
}
.TariffCard .TariffCard-PriceInMonth:not(:last-child) {
  margin-bottom: 4px;
}
.TariffCard-Content {
  flex-direction: column;
  flex: 1;
}
.TariffCard-Body {
  flex-direction: column;
  flex: 1;
}
.TariffCard-Body-Price {
  margin-bottom: 24px;
}
.TariffCard-Body-Price h2 {
  display: inline;
}
.TariffCard-Body-Title {
  margin-bottom: 12px;
}
.TariffCard-Body-Title h4 {
  display: inline;
}
.TariffCard-Body-Title svg {
  vertical-align: top;
  margin-left: 8px;
}
.TariffCard-Body-Price_WithoutPromo {
  margin-bottom: 24px;
}
.TariffCard-Body-Options {
  margin-bottom: 8px;
}
.TariffCard-Body-Option {
  padding-left: 12px;
  position: relative;
}
.TariffCard-Body-Option:before {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #1F1F22;
  border-radius: 50%;
}
.TariffCard-Body-Option:not(:last-child) {
  margin-bottom: 16px;
}
.TariffCard-Body-Text {
  margin: 16px 0 8px;
}
.TariffCard-Footer-Selected {
  display: flex;
  align-items: center;
  height: 28px;
}
.TariffCard-Footer-SelectedText {
  margin-left: 8px;
}

body .OfferLink {
  color: #565B62 !important;
}
body .OfferLink a {
  font-size: inherit;
  line-height: inherit;
}

.PanelText-TooltipButton {
  display: inline-flex;
  align-items: center;
}

.ErrorPage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 84px;
}
.App_Sm .ErrorPage {
  padding-bottom: 72px;
}
.ErrorPage-Container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ErrorPage-Title,
.ErrorPage-Button {
  margin-top: 24px;
}
.App_Sm .ErrorPage-Title,
.App_Sm .ErrorPage-Button {
  margin-top: 16px;
}
.ErrorPage-Text {
  margin-top: 8px;
  max-width: 460px;
}
.ErrorPage-SupportInfo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.ErrorPage-SupportInfo a {
  padding: 0;
  margin: 0;
  border: 0;
}
.ErrorPage-SupportInfoSeparator {
  height: 14px;
  width: 1px;
  background-color: #1F1F22;
}

.PageLayout-Spinner {
  margin: auto;
}
.PageLayout-Content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 24px;
}
.PageLayout-Panel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 30;
  bottom: 0;
  height: 80px;
  margin: auto -32px 0;
  padding: 0 32px;
  background-color: #F2F4F7;
  border-radius: 8px;
}
.App_Sm .PageLayout-Panel {
  margin: auto -16px 0;
  padding: 16px;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: auto;
}
.PageLayout-Panel .PageLayout-Panel-Buttons {
  display: flex;
  align-items: center;
}
.App_Sm .PageLayout-Panel .PageLayout-Panel-Buttons {
  flex-wrap: wrap;
  gap: 16px;
}
.App_Sm .PageLayout-Panel .PageLayout-Panel-Buttons button {
  margin: 0;
}
.PageLayout-Panel .PageLayout-Panel-Buttons #onb-btn-setup svg {
  margin-right: 4px;
}
.PageLayout-Panel .PageLayout-Panel-ButtonWithIcon#onb-btn-setup {
  font-weight: 400;
}
.PageLayout-Panel .PageLayout-Panel-Text {
  margin-right: auto;
  padding-right: 16px;
}
.App_Sm .PageLayout-Panel .PageLayout-Panel-Text:not(:last-child) {
  margin-bottom: 24px;
  padding-right: 0;
}
.PageLayout-Panel .PageLayout-Panel-ButtonLoading[type='button'] {
  cursor: default;
}
.PageLayout-Panel .PageLayout-Panel-ButtonLoading[type='button'],
.PageLayout-Panel .PageLayout-Panel-ButtonLoading[type='button']:hover,
.PageLayout-Panel .PageLayout-Panel-ButtonLoading[type='button']:active {
  background: #107F8C;
}
.PageLayout-Panel .PageLayout-Panel-ButtonLoading[type='button'] div {
  animation: none;
}
.PageLayout-Panel .PageLayout-Panel-ButtonLoading[type='button'] svg stop {
  stop-color: #FFFFFF;
}

.PromoBlock {
  background-color: #107F8C;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 20px 180px 20px 44px;
  margin: 6px 0 24px;
  position: relative;
  min-height: 112px;
  box-sizing: border-box;
}
.PromoBlock_Bip {
  padding-top: 26px;
}
.App_Sm .PromoBlock {
  padding: 24px 16px;
}
.PromoBlock-Content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.PromoBlock .PromoBlock-Title,
.PromoBlock .PromoBlock-Text {
  color: #FFFFFF !important;
}
.PromoBlock .PromoBlock-Terms {
  color: rgba(255, 255, 255, 0.8) !important;
}
.PromoBlock-Title,
.PromoBlock-Text,
.PromoBlock-Terms {
  white-space: pre-line;
}
.PromoBlock .PromoBlock-Title {
  margin-bottom: 4px;
}
.PromoBlock-Text {
  padding-right: 24px;
}
.PromoBlock-Text:not(:last-child) {
  margin-bottom: 20px;
}
.App_Sm .PromoBlock-Text:not(:last-child) {
  margin-bottom: 24px;
}
.App_Sm .PromoBlock-Text {
  padding-right: 0;
}
.PromoBlock-Terms {
  padding-right: 32px;
}
.App_Sm .PromoBlock-Terms {
  white-space: normal;
  padding-right: 0;
}
.PromoBlock-LeftCol {
  flex: 1;
}
.PromoBlock-RightCol {
  text-align: right;
  padding-left: 24px;
}
.App_Sm .PromoBlock-RightCol {
  display: none;
}
.PromoBlock:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0;
  background: url(/98c82d450330d3a33e84.png) no-repeat bottom 0 right 8px, url(/1cbaa3ec40b238f7c67f.png) no-repeat right -1px bottom;
  background-size: auto min(100%, 168px), auto 100%;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}
.App_Sm .PromoBlock:after {
  display: none;
}

.BipProduct {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.BipProduct-Offers {
  margin-top: auto;
  padding-top: 8px;
  width: 100%;
  max-width: 496px;
}

.UberProduct-Row {
  align-items: baseline;
}
.UberPromoBlock {
  background-color: #107F8C;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 20px 32px 20px 44px;
  margin: 6px 0 24px;
  position: relative;
  min-height: 112px;
  box-sizing: border-box;
}
.UberPromoBlock-Content {
  max-width: 50%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.UberPromoBlock .UberPromoBlock-Title,
.UberPromoBlock .UberPromoBlock-Text {
  color: #FFFFFF !important;
}
.UberPromoBlock-Title,
.UberPromoBlock-Text {
  white-space: pre-line;
}
.UberPromoBlock .UberPromoBlock-Title {
  margin-bottom: 4px;
}
.UberPromoBlock-Text li,
.UberPromoBlock-Text li:before {
  color: #FFFFFF !important;
}
.UberPromoBlock-Text:not(:last-child) {
  margin-bottom: 20px;
}
.UberPromoBlock-LeftCol {
  flex: 1;
}
.UberPromoBlock-RightCol {
  text-align: right;
  padding-left: 24px;
}
.UberPromoBlock:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 24px;
  background: url(/603b62115cb0447478fd.png) no-repeat right bottom;
  background-size: auto 100%;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}

.CompanyProduct {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.CompanyProduct-Offers {
  margin-top: auto;
  padding-top: 8px;
  width: 100%;
  max-width: 392px;
  color: #565B62 !important;
}
.CompanyProduct-Offers a {
  font-size: inherit;
  line-height: inherit;
}
.CompanyProduct-Offers a svg {
  display: none;
}

.ServiceForm-TooltipButton[type='button'] {
  vertical-align: text-bottom;
}
.ServiceForm-TooltipButton[type='button'] svg {
  fill: #B2B8BF;
}

.ChoiceService {
  flex-direction: column;
  flex: 1 1;
}
.ChoiceService,
.ChoiceService-Title,
.ChoiceService-Cards {
  display: flex;
}
.ChoiceService-Title {
  justify-content: space-between;
  align-items: center;
}
.App_Sm .ChoiceService-Title {
  flex-direction: column;
  align-items: flex-start;
}
.App_Sm .ChoiceService-Title .ChoiceService-Title-Link {
  margin-top: 12px;
}
.ChoiceService-Subtitle,
.ChoiceService-Alert {
  margin-top: 24px;
}
.ChoiceService .ChoiceService-PriceInMonth {
  color: #565B62;
}
.ChoiceService .ChoiceService-PriceInMonth:not(:first-child) {
  margin-top: 4px;
}
.ChoiceService .ChoiceService-PriceInMonth:not(:last-child) {
  margin-bottom: 4px;
}
.ChoiceService-List {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.App_Sm .ChoiceService-List {
  flex-direction: column;
}
.ChoiceService-Container {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.App:not(.App_Sm) .ChoiceService-Container {
  gap: 24px;
}
.ChoiceService-Container_Grey {
  border-radius: 16px;
  background-color: #F2F4F7;
  padding: 24px;
  flex: 1;
}
.App_Sm .ChoiceService-Container_Grey {
  padding: 16px;
}
.App:not(.App_Sm) .ChoiceService-Container_Grey + .ChoiceService-Container {
  padding: 24px 0;
}
.ChoiceService-Container_Grey .ChoiceService-Cards {
  gap: 16px;
}
.ChoiceService-Cards {
  justify-content: flex-start;
  gap: 24px;
  flex: 1;
}
.ChoiceService-Cards::-webkit-scrollbar {
  display: none;
}
.App_Sm .ChoiceService-Cards {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin: 0 -16px -16px;
  padding: 24px 16px 16px;
  gap: 16px;
}
.ChoiceService-Info {
  display: flex;
  align-items: baseline;
  margin-top: 24px;
}
.App_Sm .ChoiceService-Info {
  flex-direction: column;
}
.ChoiceService-Info-Price {
  margin-right: auto;
}
.ChoiceService-Description {
  margin-top: 4px;
  margin-bottom: 8px;
}
.App_Sm .ChoiceService-Description {
  flex-wrap: nowrap;
}
.App_Sm .ChoiceService-Description-LeftCol {
  flex: 1;
}
.App_Sm .ChoiceService-Description-RightCol {
  flex: 0 84px;
}
.ChoiceService-Description-Input {
  width: 84px;
  margin-left: auto;
}
.ChoiceService .ChoiceService-Slider {
  margin-bottom: 12px;
  padding-left: 4px;
}
.App_Sm .ChoiceService .ChoiceService-Slider {
  padding-left: 12px;
  padding-right: 12px;
}
.ChoiceService .ChoiceService-Remark {
  margin-top: auto;
  padding-top: 64px;
  color: #565B62;
}
.App_Sm .ChoiceService .ChoiceService-Remark {
  padding-top: 32px;
}
.ChoiceService .ChoiceService-TotalPrice {
  margin-top: 16px;
  padding-bottom: 0;
}

.SetupService {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.SetupService .SetupService-SubTitle {
  margin-bottom: 4px;
}
.SetupService-Text {
  max-width: 550px;
  margin-bottom: 24px;
}
.SetupService .SetupService-TotalPrice {
  margin-top: 16px;
  padding-bottom: 0;
}
.SetupService-Alert {
  margin: 24px 0 8px;
}
.App_Sm .SetupService-FormRow {
  max-width: 216px;
}
.SetupService .SetupService-Description {
  margin-top: auto;
  padding-top: 24px;
}
.SetupService .SetupService-DescriptionText {
  color: #565B62;
}

.MbaProduct {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.MbaProduct .MbaProduct-Stepper {
  padding-left: 0;
}
.MbaProduct .MbaProduct-Stepper-Rail {
  height: 2px;
  width: 100%;
  background: #E4E8EB;
  position: absolute;
  bottom: 0;
  left: 0;
}
.MbaProduct .MbaProduct-Stepper,
.MbaProduct .MbaProduct-Stepper + h2 {
  margin-bottom: 24px;
}

#loader {
  display: flex;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  animation: fadeIn 2s ease-in;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCA2NCA2NCIgY2xhc3M9Imdsb2JhbFNwaW4iIG5hbWU9IlNwaW5uZXJsYXJnZUFuaUljb242NCIgZm9jdXNhYmxlPSJmYWxzZSIgYXJpYS1oaWRkZW49InRydWUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHN0eWxlPkAtd2Via2l0LWtleWZyYW1lcyBzcGluMzYwezAle3RyYW5zZm9ybTpyb3RhdGUoMGRlZyl9dG97dHJhbnNmb3JtOnJvdGF0ZSgxdHVybil9fUBrZXlmcmFtZXMgc3BpbjM2MHswJXt0cmFuc2Zvcm06cm90YXRlKDBkZWcpfXRve3RyYW5zZm9ybTpyb3RhdGUoMXR1cm4pfX0uZ2xvYmFsU3BpbiB7YW5pbWF0aW9uOiBzcGluMzYwIDFzIGxpbmVhciBpbmZpbml0ZTt9PC9zdHlsZT48cGF0aCBmaWxsPSJ1cmwoI3BhaW50MF9yYWRpYWxfc3Bpbm5lcmxhcmdlKSIgZD0iTTMyIDE0Yy05Ljk0MSAwLTE4IDguMDU5LTE4IDE4czguMDU5IDE4IDE4IDE4IDE4LTguMDU5IDE4LTE4aDZjMCAxMy4yNTUtMTAuNzQ1IDI0LTI0IDI0UzggNDUuMjU1IDggMzIgMTguNzQ1IDggMzIgOGEzIDMgMCAxMTAgNnoiPjwvcGF0aD48ZGVmcz48cmFkaWFsR3JhZGllbnQgaWQ9InBhaW50MF9yYWRpYWxfc3Bpbm5lcmxhcmdlIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VHJhbnNmb3JtPSJyb3RhdGUoMTE2Ljc5MiAxNy40NCAzMS42OTQpIHNjYWxlKDU5LjEzOSAyOS41ODc5KSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIG9mZnNldD0iLjE0MSIgc3RvcC1jb2xvcj0iIzEwN0Y4QyIgc3RvcC1vcGFjaXR5PSIwIj48L3N0b3A+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMTA3RjhDIj48L3N0b3A+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PC9zdmc+) no-repeat center center;
  visibility: hidden;
}
#root:empty + #loader {
  visibility: visible;
  z-index: 99999;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'SBSansUI', 'Arial', sans-serif;
}
div[class*='body__'] {
  overflow: visible;
}
.App {
  width: 100%;
}
.App-Left,
.App-Right {
  max-width: 50%;
}
.App,
.App-Left {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.App-Right {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
}
.App-Right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.Container {
  display: flex;
  flex-grow: 1;
  width: 100%;
  max-width: 1000px;
  padding: 84px 32px 0;
  margin: 0 auto;
  box-sizing: border-box;
}
.App_Sm .Container {
  padding: 72px 16px 0;
}
.Container-App {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
  max-width: 100%;
}
.RouterLink {
  position: relative;
  padding: 0 2px;
  margin: -1px -3px;
  border: 1px solid transparent;
  font-size: 14px;
  color: #1358bf;
  text-decoration: none;
  text-align: left;
}
.RouterLink:focus {
  outline: none;
  border: 1px solid #FFDD64;
}
.RouterLink:hover {
  color: #107F8C;
}
.RouterLink:active {
  color: #0F5498;
}
[class^='tooltipBody__'] .Hint {
  white-space: pre-line;
}
[class^='tooltipBody__'] .Hint a,
[class^='tooltipBody__'] .Hint a:active {
  color: #FFFFFF;
}
[class^='tooltipBody__'] .Hint a:hover {
  color: #7D838A;
}
[class*='tooltipMobile__'] .Hint {
  white-space: pre-line;
}
@media screen and (max-width: 767px) {
  [class*='tooltipMobile__'] .Hint {
    padding-right: 20px;
  }
}
[class*='tooltipMobile__'] .Hint a,
[class*='tooltipMobile__'] .Hint a:active {
  color: #1358BF;
}
[class*='tooltipMobile__'] .Hint a:hover {
  color: #107F8C;
}
body .Toastify {
  font-size: 14px;
  color: inherit;
}
body .Toastify__toast {
  min-height: auto;
  padding: 0;
  margin-bottom: 16px;
  color: inherit;
}
body .Toastify__toast-container {
  padding: 0;
  width: auto;
  color: inherit;
}
body .Toastify__toast-body {
  padding: 0;
  margin: 0;
}
.MultipleSelect-DropDown [class^='multiselectContentWrapper__'] [class^='multiselectContent__'] {
  height: auto;
  max-height: 196px;
}

