:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --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-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --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);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.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;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.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: 100%;
  z-index: 1;
  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;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.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, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 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, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 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, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 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, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 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: translate3d(0, var(--y), 0) 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: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) 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, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 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;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:"Roboto",sans-serif;font-size:1rem;font-weight:400;line-height:1.5;color:#000;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:1rem}p{margin-top:0;margin-bottom:.75rem}abbr[title],abbr[data-original-title]{text-decoration:underline;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:500}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:500}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#0c3366;text-decoration:none;background-color:rgba(0,0,0,0)}a:hover,a:focus{color:hsl(214,78.9473684211%,7.3529411765%);text-decoration:none}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover,a:not([href]):focus{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:"Noto Sans",sans;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:#000;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.25rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}a{color:#3c94f2}a:hover,a:focus{color:#3c94f2;text-decoration-line:underline}a:visited{color:#3c94f2}.text-decoration-none{text-decoration:none}.text-decoration-none-i{text-decoration:none !important}.mobile-hidden{display:flex}@media(max-width: 667px){.mobile-hidden{display:none}}.pc-hidden{display:none !important}@media(max-width: 667px){.pc-hidden{display:flex}}@media(min-width: 992px){@supports(scrollbar-gutter: stable){body{scrollbar-gutter:stable}}body::-webkit-scrollbar{width:6px;height:6px}body::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}body::-webkit-scrollbar-thumb{background:#a8b2c4;border-radius:8px}body::-webkit-scrollbar-thumb:hover{background:#8a94a6}body::-webkit-scrollbar-thumb:active{background:#697384}}.custom-scroll{overflow:auto}@media(min-width: 992px){.custom-scroll::-webkit-scrollbar{width:6px;height:6px}.custom-scroll::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.custom-scroll::-webkit-scrollbar-corner{background-color:rgba(0,0,0,0)}.custom-scroll::-webkit-scrollbar-thumb{background:#a8b2c4;border-radius:8px}.custom-scroll::-webkit-scrollbar-thumb:hover{background:#8a94a6}.custom-scroll::-webkit-scrollbar-thumb:active{background:#697384}}.ac-container{width:100%;padding-left:15px;padding-right:15px;margin-left:auto;margin-right:auto}.ac-container xs{max-width:0}.ac-container-normal xs{max-width:0}.ac-container sm{max-width:667px}.ac-container-normal sm{max-width:667px}@media(min-width: 667px){.ac-container{max-width:618px}}.ac-container md{max-width:992px}.ac-container-normal md{max-width:992px}@media(min-width: 992px){.ac-container{max-width:960px}}.ac-container lg{max-width:1200px}.ac-container-normal lg{max-width:1200px}@media(min-width: 1200px){.ac-container{max-width:1080px}}.ac-container xl{max-width:1440px}.ac-container-normal xl{max-width:1440px}@media(min-width: 1440px){.ac-container{max-width:1200px}}.ac-container xxl{max-width:1780px}.ac-container-normal xxl{max-width:1780px}@media(min-width: 1780px){.ac-container{max-width:1680px}}.ac-container-normal xs{max-width:0}.ac-container-normal sm{max-width:667px}@media(min-width: 667px){.ac-container-normal{max-width:618px}}.ac-container-normal md{max-width:992px}@media(min-width: 992px){.ac-container-normal{max-width:960px}}.ac-container-normal lg{max-width:1200px}@media(min-width: 1200px){.ac-container-normal{max-width:1080px}}.ac-container-normal xl{max-width:1440px}@media(min-width: 1440px){.ac-container-normal{max-width:1200px}}.ac-scroll-container{overflow-y:scroll;overflow-x:hidden}.ac-modal{display:none;position:fixed;z-index:1100;top:0;left:0;right:0;width:100vw;height:100%}.ac-modal.open{display:flex;flex-direction:column;justify-content:center}.ac-modal.ac-modal-backdrop{background-color:rgba(81,96,111,.6);backdrop-filter:blur(5px);-webkit-backdrop-filter:blur(5px);transition:all 100ms}.ac-modal{padding:1.5rem 1.5rem}@media(max-width: 667px){.ac-modal{padding:1rem 1rem}}.ac-modal-content{position:relative;z-index:1100;background:#fff;border-radius:1.25rem;box-shadow:0px 4px 16px rgba(12,43,104,.16),0px 24px 32px rgba(10,46,101,.1);margin:auto;padding:0;overflow-y:auto;min-width:288px;max-width:680px;display:flex;flex-direction:column;max-height:100%}.ac-modal-content.sm{max-width:448px;max-height:540px}@media(max-width: 667px){.ac-modal-content.sm{max-height:100%}}.ac-modal-content.md{max-width:680px}.ac-modal-content.lg{max-width:960px}@media(max-width: 667px){.ac-modal-content{min-width:100%;max-width:100%}}.ac-modal-content .ac-modal-header{padding:1rem 1.5rem 0 1.5rem;font-weight:500;font-size:20px;line-height:24px;color:rgba(29,35,46,.88)}.ac-modal-content .ac-modal-header.ac-modal-header-border{padding:1rem 1.5rem .75rem 1.5rem;border-bottom:1px rgba(168,186,217,.4) solid}.ac-modal-content .ac-modal-body{font-weight:400;font-size:14px;line-height:20px;color:rgba(29,35,46,.88)}.ac-modal-content .ac-modal-footer{padding:0 1.5rem 1.5rem 1.5rem;display:flex;flex-direction:row;align-items:flex-start;justify-content:flex-end}.ac-modal-content .ac-modal-footer.ac-modal-footer-border{padding:1rem 1.5rem 1.5rem 1.5rem;border-top:1px rgba(168,186,217,.4) solid}.test-modal-full-screen{margin:0;padding:0;border-radius:0;box-shadow:none;width:100% !important;max-width:none !important}.test-modal-full-screen .tmfs-body{height:100%;max-height:none}.p-0{padding:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.m-0{margin:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.p-x1{padding:.25rem !important}.px-x1{padding-left:.25rem !important;padding-right:.25rem !important}.py-x1{padding-top:.25rem !important;padding-bottom:.25rem !important}.pt-x1{padding-top:.25rem !important}.pr-x1{padding-right:.25rem !important}.pb-x1{padding-bottom:.25rem !important}.pl-x1{padding-left:.25rem !important}.m-x1{margin:.25rem !important}.mx-x1{margin-left:.25rem !important;margin-right:.25rem !important}.my-x1{margin-top:.25rem !important;margin-bottom:.25rem !important}.mt-x1{margin-top:.25rem !important}.mr-x1{margin-right:.25rem !important}.mb-x1{margin-bottom:.25rem !important}.ml-x1{margin-left:.25rem !important}.p-x2{padding:.5rem !important}.px-x2{padding-left:.5rem !important;padding-right:.5rem !important}.py-x2{padding-top:.5rem !important;padding-bottom:.5rem !important}.pt-x2{padding-top:.5rem !important}.pr-x2{padding-right:.5rem !important}.pb-x2{padding-bottom:.5rem !important}.pl-x2{padding-left:.5rem !important}.m-x2{margin:.5rem !important}.mx-x2{margin-left:.5rem !important;margin-right:.5rem !important}.my-x2{margin-top:.5rem !important;margin-bottom:.5rem !important}.mt-x2{margin-top:.5rem !important}.mr-x2{margin-right:.5rem !important}.mb-x2{margin-bottom:.5rem !important}.ml-x2{margin-left:.5rem !important}.p-x3{padding:.75rem !important}.px-x3{padding-left:.75rem !important;padding-right:.75rem !important}.py-x3{padding-top:.75rem !important;padding-bottom:.75rem !important}.pt-x3{padding-top:.75rem !important}.pr-x3{padding-right:.75rem !important}.pb-x3{padding-bottom:.75rem !important}.pl-x3{padding-left:.75rem !important}.m-x3{margin:.75rem !important}.mx-x3{margin-left:.75rem !important;margin-right:.75rem !important}.my-x3{margin-top:.75rem !important;margin-bottom:.75rem !important}.mt-x3{margin-top:.75rem !important}.mr-x3{margin-right:.75rem !important}.mb-x3{margin-bottom:.75rem !important}.ml-x3{margin-left:.75rem !important}.p-x4{padding:1rem !important}.px-x4{padding-left:1rem !important;padding-right:1rem !important}.py-x4{padding-top:1rem !important;padding-bottom:1rem !important}.pt-x4{padding-top:1rem !important}.pr-x4{padding-right:1rem !important}.pb-x4{padding-bottom:1rem !important}.pl-x4{padding-left:1rem !important}.m-x4{margin:1rem !important}.mx-x4{margin-left:1rem !important;margin-right:1rem !important}.my-x4{margin-top:1rem !important;margin-bottom:1rem !important}.mt-x4{margin-top:1rem !important}.mr-x4{margin-right:1rem !important}.mb-x4{margin-bottom:1rem !important}.ml-x4{margin-left:1rem !important}.p-x5{padding:1.25rem !important}.px-x5{padding-left:1.25rem !important;padding-right:1.25rem !important}.py-x5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.pt-x5{padding-top:1.25rem !important}.pr-x5{padding-right:1.25rem !important}.pb-x5{padding-bottom:1.25rem !important}.pl-x5{padding-left:1.25rem !important}.m-x5{margin:1.25rem !important}.mx-x5{margin-left:1.25rem !important;margin-right:1.25rem !important}.my-x5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.mt-x5{margin-top:1.25rem !important}.mr-x5{margin-right:1.25rem !important}.mb-x5{margin-bottom:1.25rem !important}.ml-x5{margin-left:1.25rem !important}.p-x6{padding:1.5rem !important}.px-x6{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-x6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.pt-x6{padding-top:1.5rem !important}.pr-x6{padding-right:1.5rem !important}.pb-x6{padding-bottom:1.5rem !important}.pl-x6{padding-left:1.5rem !important}.m-x6{margin:1.5rem !important}.mx-x6{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-x6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.mt-x6{margin-top:1.5rem !important}.mr-x6{margin-right:1.5rem !important}.mb-x6{margin-bottom:1.5rem !important}.ml-x6{margin-left:1.5rem !important}.p-x7{padding:1.75rem !important}.px-x7{padding-left:1.75rem !important;padding-right:1.75rem !important}.py-x7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.pt-x7{padding-top:1.75rem !important}.pr-x7{padding-right:1.75rem !important}.pb-x7{padding-bottom:1.75rem !important}.pl-x7{padding-left:1.75rem !important}.m-x7{margin:1.75rem !important}.mx-x7{margin-left:1.75rem !important;margin-right:1.75rem !important}.my-x7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.mt-x7{margin-top:1.75rem !important}.mr-x7{margin-right:1.75rem !important}.mb-x7{margin-bottom:1.75rem !important}.ml-x7{margin-left:1.75rem !important}.p-x8{padding:2rem !important}.px-x8{padding-left:2rem !important;padding-right:2rem !important}.py-x8{padding-top:2rem !important;padding-bottom:2rem !important}.pt-x8{padding-top:2rem !important}.pr-x8{padding-right:2rem !important}.pb-x8{padding-bottom:2rem !important}.pl-x8{padding-left:2rem !important}.m-x8{margin:2rem !important}.mx-x8{margin-left:2rem !important;margin-right:2rem !important}.my-x8{margin-top:2rem !important;margin-bottom:2rem !important}.mt-x8{margin-top:2rem !important}.mr-x8{margin-right:2rem !important}.mb-x8{margin-bottom:2rem !important}.ml-x8{margin-left:2rem !important}.p-x9{padding:2.25rem !important}.px-x9{padding-left:2.25rem !important;padding-right:2.25rem !important}.py-x9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}.pt-x9{padding-top:2.25rem !important}.pr-x9{padding-right:2.25rem !important}.pb-x9{padding-bottom:2.25rem !important}.pl-x9{padding-left:2.25rem !important}.m-x9{margin:2.25rem !important}.mx-x9{margin-left:2.25rem !important;margin-right:2.25rem !important}.my-x9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}.mt-x9{margin-top:2.25rem !important}.mr-x9{margin-right:2.25rem !important}.mb-x9{margin-bottom:2.25rem !important}.ml-x9{margin-left:2.25rem !important}.p-x10{padding:2.5rem !important}.px-x10{padding-left:2.5rem !important;padding-right:2.5rem !important}.py-x10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.pt-x10{padding-top:2.5rem !important}.pr-x10{padding-right:2.5rem !important}.pb-x10{padding-bottom:2.5rem !important}.pl-x10{padding-left:2.5rem !important}.m-x10{margin:2.5rem !important}.mx-x10{margin-left:2.5rem !important;margin-right:2.5rem !important}.my-x10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.mt-x10{margin-top:2.5rem !important}.mr-x10{margin-right:2.5rem !important}.mb-x10{margin-bottom:2.5rem !important}.ml-x10{margin-left:2.5rem !important}.p-x11{padding:2.75rem !important}.px-x11{padding-left:2.75rem !important;padding-right:2.75rem !important}.py-x11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}.pt-x11{padding-top:2.75rem !important}.pr-x11{padding-right:2.75rem !important}.pb-x11{padding-bottom:2.75rem !important}.pl-x11{padding-left:2.75rem !important}.m-x11{margin:2.75rem !important}.mx-x11{margin-left:2.75rem !important;margin-right:2.75rem !important}.my-x11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}.mt-x11{margin-top:2.75rem !important}.mr-x11{margin-right:2.75rem !important}.mb-x11{margin-bottom:2.75rem !important}.ml-x11{margin-left:2.75rem !important}.p-x12{padding:3rem !important}.px-x12{padding-left:3rem !important;padding-right:3rem !important}.py-x12{padding-top:3rem !important;padding-bottom:3rem !important}.pt-x12{padding-top:3rem !important}.pr-x12{padding-right:3rem !important}.pb-x12{padding-bottom:3rem !important}.pl-x12{padding-left:3rem !important}.m-x12{margin:3rem !important}.mx-x12{margin-left:3rem !important;margin-right:3rem !important}.my-x12{margin-top:3rem !important;margin-bottom:3rem !important}.mt-x12{margin-top:3rem !important}.mr-x12{margin-right:3rem !important}.mb-x12{margin-bottom:3rem !important}.ml-x12{margin-left:3rem !important}@media(min-width: 0){.p-xs-0{padding:0 !important}.px-xs-0{padding-left:0 !important;padding-right:0 !important}.py-xs-0{padding-top:0 !important;padding-bottom:0 !important}.pt-xs-0{padding-top:0 !important}.pr-xs-0{padding-right:0 !important}.pb-xs-0{padding-bottom:0 !important}.pl-xs-0{padding-left:0 !important}.m-xs-0{margin:0 !important}.mx-xs-0{margin-left:0 !important;margin-right:0 !important}.my-xs-0{margin-top:0 !important;margin-bottom:0 !important}.mt-xs-0{margin-top:0 !important}.mr-xs-0{margin-right:0 !important}.mb-xs-0{margin-bottom:0 !important}.ml-xs-0{margin-left:0 !important}}@media(min-width: 0){.p-xs-x1{padding:.25rem !important}.px-xs-x1{padding-left:.25rem !important;padding-right:.25rem !important}.py-xs-x1{padding-top:.25rem !important;padding-bottom:.25rem !important}.pt-xs-x1{padding-top:.25rem !important}.pr-xs-x1{padding-right:.25rem !important}.pb-xs-x1{padding-bottom:.25rem !important}.pl-xs-x1{padding-left:.25rem !important}.m-xs-x1{margin:.25rem !important}.mx-xs-x1{margin-left:.25rem !important;margin-right:.25rem !important}.my-xs-x1{margin-top:.25rem !important;margin-bottom:.25rem !important}.mt-xs-x1{margin-top:.25rem !important}.mr-xs-x1{margin-right:.25rem !important}.mb-xs-x1{margin-bottom:.25rem !important}.ml-xs-x1{margin-left:.25rem !important}}@media(min-width: 0){.p-xs-x2{padding:.5rem !important}.px-xs-x2{padding-left:.5rem !important;padding-right:.5rem !important}.py-xs-x2{padding-top:.5rem !important;padding-bottom:.5rem !important}.pt-xs-x2{padding-top:.5rem !important}.pr-xs-x2{padding-right:.5rem !important}.pb-xs-x2{padding-bottom:.5rem !important}.pl-xs-x2{padding-left:.5rem !important}.m-xs-x2{margin:.5rem !important}.mx-xs-x2{margin-left:.5rem !important;margin-right:.5rem !important}.my-xs-x2{margin-top:.5rem !important;margin-bottom:.5rem !important}.mt-xs-x2{margin-top:.5rem !important}.mr-xs-x2{margin-right:.5rem !important}.mb-xs-x2{margin-bottom:.5rem !important}.ml-xs-x2{margin-left:.5rem !important}}@media(min-width: 0){.p-xs-x3{padding:.75rem !important}.px-xs-x3{padding-left:.75rem !important;padding-right:.75rem !important}.py-xs-x3{padding-top:.75rem !important;padding-bottom:.75rem !important}.pt-xs-x3{padding-top:.75rem !important}.pr-xs-x3{padding-right:.75rem !important}.pb-xs-x3{padding-bottom:.75rem !important}.pl-xs-x3{padding-left:.75rem !important}.m-xs-x3{margin:.75rem !important}.mx-xs-x3{margin-left:.75rem !important;margin-right:.75rem !important}.my-xs-x3{margin-top:.75rem !important;margin-bottom:.75rem !important}.mt-xs-x3{margin-top:.75rem !important}.mr-xs-x3{margin-right:.75rem !important}.mb-xs-x3{margin-bottom:.75rem !important}.ml-xs-x3{margin-left:.75rem !important}}@media(min-width: 0){.p-xs-x4{padding:1rem !important}.px-xs-x4{padding-left:1rem !important;padding-right:1rem !important}.py-xs-x4{padding-top:1rem !important;padding-bottom:1rem !important}.pt-xs-x4{padding-top:1rem !important}.pr-xs-x4{padding-right:1rem !important}.pb-xs-x4{padding-bottom:1rem !important}.pl-xs-x4{padding-left:1rem !important}.m-xs-x4{margin:1rem !important}.mx-xs-x4{margin-left:1rem !important;margin-right:1rem !important}.my-xs-x4{margin-top:1rem !important;margin-bottom:1rem !important}.mt-xs-x4{margin-top:1rem !important}.mr-xs-x4{margin-right:1rem !important}.mb-xs-x4{margin-bottom:1rem !important}.ml-xs-x4{margin-left:1rem !important}}@media(min-width: 0){.p-xs-x5{padding:1.25rem !important}.px-xs-x5{padding-left:1.25rem !important;padding-right:1.25rem !important}.py-xs-x5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.pt-xs-x5{padding-top:1.25rem !important}.pr-xs-x5{padding-right:1.25rem !important}.pb-xs-x5{padding-bottom:1.25rem !important}.pl-xs-x5{padding-left:1.25rem !important}.m-xs-x5{margin:1.25rem !important}.mx-xs-x5{margin-left:1.25rem !important;margin-right:1.25rem !important}.my-xs-x5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.mt-xs-x5{margin-top:1.25rem !important}.mr-xs-x5{margin-right:1.25rem !important}.mb-xs-x5{margin-bottom:1.25rem !important}.ml-xs-x5{margin-left:1.25rem !important}}@media(min-width: 0){.p-xs-x6{padding:1.5rem !important}.px-xs-x6{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-xs-x6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.pt-xs-x6{padding-top:1.5rem !important}.pr-xs-x6{padding-right:1.5rem !important}.pb-xs-x6{padding-bottom:1.5rem !important}.pl-xs-x6{padding-left:1.5rem !important}.m-xs-x6{margin:1.5rem !important}.mx-xs-x6{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-xs-x6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.mt-xs-x6{margin-top:1.5rem !important}.mr-xs-x6{margin-right:1.5rem !important}.mb-xs-x6{margin-bottom:1.5rem !important}.ml-xs-x6{margin-left:1.5rem !important}}@media(min-width: 0){.p-xs-x7{padding:1.75rem !important}.px-xs-x7{padding-left:1.75rem !important;padding-right:1.75rem !important}.py-xs-x7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.pt-xs-x7{padding-top:1.75rem !important}.pr-xs-x7{padding-right:1.75rem !important}.pb-xs-x7{padding-bottom:1.75rem !important}.pl-xs-x7{padding-left:1.75rem !important}.m-xs-x7{margin:1.75rem !important}.mx-xs-x7{margin-left:1.75rem !important;margin-right:1.75rem !important}.my-xs-x7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.mt-xs-x7{margin-top:1.75rem !important}.mr-xs-x7{margin-right:1.75rem !important}.mb-xs-x7{margin-bottom:1.75rem !important}.ml-xs-x7{margin-left:1.75rem !important}}@media(min-width: 0){.p-xs-x8{padding:2rem !important}.px-xs-x8{padding-left:2rem !important;padding-right:2rem !important}.py-xs-x8{padding-top:2rem !important;padding-bottom:2rem !important}.pt-xs-x8{padding-top:2rem !important}.pr-xs-x8{padding-right:2rem !important}.pb-xs-x8{padding-bottom:2rem !important}.pl-xs-x8{padding-left:2rem !important}.m-xs-x8{margin:2rem !important}.mx-xs-x8{margin-left:2rem !important;margin-right:2rem !important}.my-xs-x8{margin-top:2rem !important;margin-bottom:2rem !important}.mt-xs-x8{margin-top:2rem !important}.mr-xs-x8{margin-right:2rem !important}.mb-xs-x8{margin-bottom:2rem !important}.ml-xs-x8{margin-left:2rem !important}}@media(min-width: 0){.p-xs-x9{padding:2.25rem !important}.px-xs-x9{padding-left:2.25rem !important;padding-right:2.25rem !important}.py-xs-x9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}.pt-xs-x9{padding-top:2.25rem !important}.pr-xs-x9{padding-right:2.25rem !important}.pb-xs-x9{padding-bottom:2.25rem !important}.pl-xs-x9{padding-left:2.25rem !important}.m-xs-x9{margin:2.25rem !important}.mx-xs-x9{margin-left:2.25rem !important;margin-right:2.25rem !important}.my-xs-x9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}.mt-xs-x9{margin-top:2.25rem !important}.mr-xs-x9{margin-right:2.25rem !important}.mb-xs-x9{margin-bottom:2.25rem !important}.ml-xs-x9{margin-left:2.25rem !important}}@media(min-width: 0){.p-xs-x10{padding:2.5rem !important}.px-xs-x10{padding-left:2.5rem !important;padding-right:2.5rem !important}.py-xs-x10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.pt-xs-x10{padding-top:2.5rem !important}.pr-xs-x10{padding-right:2.5rem !important}.pb-xs-x10{padding-bottom:2.5rem !important}.pl-xs-x10{padding-left:2.5rem !important}.m-xs-x10{margin:2.5rem !important}.mx-xs-x10{margin-left:2.5rem !important;margin-right:2.5rem !important}.my-xs-x10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.mt-xs-x10{margin-top:2.5rem !important}.mr-xs-x10{margin-right:2.5rem !important}.mb-xs-x10{margin-bottom:2.5rem !important}.ml-xs-x10{margin-left:2.5rem !important}}@media(min-width: 0){.p-xs-x11{padding:2.75rem !important}.px-xs-x11{padding-left:2.75rem !important;padding-right:2.75rem !important}.py-xs-x11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}.pt-xs-x11{padding-top:2.75rem !important}.pr-xs-x11{padding-right:2.75rem !important}.pb-xs-x11{padding-bottom:2.75rem !important}.pl-xs-x11{padding-left:2.75rem !important}.m-xs-x11{margin:2.75rem !important}.mx-xs-x11{margin-left:2.75rem !important;margin-right:2.75rem !important}.my-xs-x11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}.mt-xs-x11{margin-top:2.75rem !important}.mr-xs-x11{margin-right:2.75rem !important}.mb-xs-x11{margin-bottom:2.75rem !important}.ml-xs-x11{margin-left:2.75rem !important}}@media(min-width: 0){.p-xs-x12{padding:3rem !important}.px-xs-x12{padding-left:3rem !important;padding-right:3rem !important}.py-xs-x12{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xs-x12{padding-top:3rem !important}.pr-xs-x12{padding-right:3rem !important}.pb-xs-x12{padding-bottom:3rem !important}.pl-xs-x12{padding-left:3rem !important}.m-xs-x12{margin:3rem !important}.mx-xs-x12{margin-left:3rem !important;margin-right:3rem !important}.my-xs-x12{margin-top:3rem !important;margin-bottom:3rem !important}.mt-xs-x12{margin-top:3rem !important}.mr-xs-x12{margin-right:3rem !important}.mb-xs-x12{margin-bottom:3rem !important}.ml-xs-x12{margin-left:3rem !important}}@media(min-width: 667px){.p-sm-0{padding:0 !important}.px-sm-0{padding-left:0 !important;padding-right:0 !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.pt-sm-0{padding-top:0 !important}.pr-sm-0{padding-right:0 !important}.pb-sm-0{padding-bottom:0 !important}.pl-sm-0{padding-left:0 !important}.m-sm-0{margin:0 !important}.mx-sm-0{margin-left:0 !important;margin-right:0 !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.mt-sm-0{margin-top:0 !important}.mr-sm-0{margin-right:0 !important}.mb-sm-0{margin-bottom:0 !important}.ml-sm-0{margin-left:0 !important}}@media(min-width: 667px){.p-sm-x1{padding:.25rem !important}.px-sm-x1{padding-left:.25rem !important;padding-right:.25rem !important}.py-sm-x1{padding-top:.25rem !important;padding-bottom:.25rem !important}.pt-sm-x1{padding-top:.25rem !important}.pr-sm-x1{padding-right:.25rem !important}.pb-sm-x1{padding-bottom:.25rem !important}.pl-sm-x1{padding-left:.25rem !important}.m-sm-x1{margin:.25rem !important}.mx-sm-x1{margin-left:.25rem !important;margin-right:.25rem !important}.my-sm-x1{margin-top:.25rem !important;margin-bottom:.25rem !important}.mt-sm-x1{margin-top:.25rem !important}.mr-sm-x1{margin-right:.25rem !important}.mb-sm-x1{margin-bottom:.25rem !important}.ml-sm-x1{margin-left:.25rem !important}}@media(min-width: 667px){.p-sm-x2{padding:.5rem !important}.px-sm-x2{padding-left:.5rem !important;padding-right:.5rem !important}.py-sm-x2{padding-top:.5rem !important;padding-bottom:.5rem !important}.pt-sm-x2{padding-top:.5rem !important}.pr-sm-x2{padding-right:.5rem !important}.pb-sm-x2{padding-bottom:.5rem !important}.pl-sm-x2{padding-left:.5rem !important}.m-sm-x2{margin:.5rem !important}.mx-sm-x2{margin-left:.5rem !important;margin-right:.5rem !important}.my-sm-x2{margin-top:.5rem !important;margin-bottom:.5rem !important}.mt-sm-x2{margin-top:.5rem !important}.mr-sm-x2{margin-right:.5rem !important}.mb-sm-x2{margin-bottom:.5rem !important}.ml-sm-x2{margin-left:.5rem !important}}@media(min-width: 667px){.p-sm-x3{padding:.75rem !important}.px-sm-x3{padding-left:.75rem !important;padding-right:.75rem !important}.py-sm-x3{padding-top:.75rem !important;padding-bottom:.75rem !important}.pt-sm-x3{padding-top:.75rem !important}.pr-sm-x3{padding-right:.75rem !important}.pb-sm-x3{padding-bottom:.75rem !important}.pl-sm-x3{padding-left:.75rem !important}.m-sm-x3{margin:.75rem !important}.mx-sm-x3{margin-left:.75rem !important;margin-right:.75rem !important}.my-sm-x3{margin-top:.75rem !important;margin-bottom:.75rem !important}.mt-sm-x3{margin-top:.75rem !important}.mr-sm-x3{margin-right:.75rem !important}.mb-sm-x3{margin-bottom:.75rem !important}.ml-sm-x3{margin-left:.75rem !important}}@media(min-width: 667px){.p-sm-x4{padding:1rem !important}.px-sm-x4{padding-left:1rem !important;padding-right:1rem !important}.py-sm-x4{padding-top:1rem !important;padding-bottom:1rem !important}.pt-sm-x4{padding-top:1rem !important}.pr-sm-x4{padding-right:1rem !important}.pb-sm-x4{padding-bottom:1rem !important}.pl-sm-x4{padding-left:1rem !important}.m-sm-x4{margin:1rem !important}.mx-sm-x4{margin-left:1rem !important;margin-right:1rem !important}.my-sm-x4{margin-top:1rem !important;margin-bottom:1rem !important}.mt-sm-x4{margin-top:1rem !important}.mr-sm-x4{margin-right:1rem !important}.mb-sm-x4{margin-bottom:1rem !important}.ml-sm-x4{margin-left:1rem !important}}@media(min-width: 667px){.p-sm-x5{padding:1.25rem !important}.px-sm-x5{padding-left:1.25rem !important;padding-right:1.25rem !important}.py-sm-x5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.pt-sm-x5{padding-top:1.25rem !important}.pr-sm-x5{padding-right:1.25rem !important}.pb-sm-x5{padding-bottom:1.25rem !important}.pl-sm-x5{padding-left:1.25rem !important}.m-sm-x5{margin:1.25rem !important}.mx-sm-x5{margin-left:1.25rem !important;margin-right:1.25rem !important}.my-sm-x5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.mt-sm-x5{margin-top:1.25rem !important}.mr-sm-x5{margin-right:1.25rem !important}.mb-sm-x5{margin-bottom:1.25rem !important}.ml-sm-x5{margin-left:1.25rem !important}}@media(min-width: 667px){.p-sm-x6{padding:1.5rem !important}.px-sm-x6{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-sm-x6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.pt-sm-x6{padding-top:1.5rem !important}.pr-sm-x6{padding-right:1.5rem !important}.pb-sm-x6{padding-bottom:1.5rem !important}.pl-sm-x6{padding-left:1.5rem !important}.m-sm-x6{margin:1.5rem !important}.mx-sm-x6{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-sm-x6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.mt-sm-x6{margin-top:1.5rem !important}.mr-sm-x6{margin-right:1.5rem !important}.mb-sm-x6{margin-bottom:1.5rem !important}.ml-sm-x6{margin-left:1.5rem !important}}@media(min-width: 667px){.p-sm-x7{padding:1.75rem !important}.px-sm-x7{padding-left:1.75rem !important;padding-right:1.75rem !important}.py-sm-x7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.pt-sm-x7{padding-top:1.75rem !important}.pr-sm-x7{padding-right:1.75rem !important}.pb-sm-x7{padding-bottom:1.75rem !important}.pl-sm-x7{padding-left:1.75rem !important}.m-sm-x7{margin:1.75rem !important}.mx-sm-x7{margin-left:1.75rem !important;margin-right:1.75rem !important}.my-sm-x7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.mt-sm-x7{margin-top:1.75rem !important}.mr-sm-x7{margin-right:1.75rem !important}.mb-sm-x7{margin-bottom:1.75rem !important}.ml-sm-x7{margin-left:1.75rem !important}}@media(min-width: 667px){.p-sm-x8{padding:2rem !important}.px-sm-x8{padding-left:2rem !important;padding-right:2rem !important}.py-sm-x8{padding-top:2rem !important;padding-bottom:2rem !important}.pt-sm-x8{padding-top:2rem !important}.pr-sm-x8{padding-right:2rem !important}.pb-sm-x8{padding-bottom:2rem !important}.pl-sm-x8{padding-left:2rem !important}.m-sm-x8{margin:2rem !important}.mx-sm-x8{margin-left:2rem !important;margin-right:2rem !important}.my-sm-x8{margin-top:2rem !important;margin-bottom:2rem !important}.mt-sm-x8{margin-top:2rem !important}.mr-sm-x8{margin-right:2rem !important}.mb-sm-x8{margin-bottom:2rem !important}.ml-sm-x8{margin-left:2rem !important}}@media(min-width: 667px){.p-sm-x9{padding:2.25rem !important}.px-sm-x9{padding-left:2.25rem !important;padding-right:2.25rem !important}.py-sm-x9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}.pt-sm-x9{padding-top:2.25rem !important}.pr-sm-x9{padding-right:2.25rem !important}.pb-sm-x9{padding-bottom:2.25rem !important}.pl-sm-x9{padding-left:2.25rem !important}.m-sm-x9{margin:2.25rem !important}.mx-sm-x9{margin-left:2.25rem !important;margin-right:2.25rem !important}.my-sm-x9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}.mt-sm-x9{margin-top:2.25rem !important}.mr-sm-x9{margin-right:2.25rem !important}.mb-sm-x9{margin-bottom:2.25rem !important}.ml-sm-x9{margin-left:2.25rem !important}}@media(min-width: 667px){.p-sm-x10{padding:2.5rem !important}.px-sm-x10{padding-left:2.5rem !important;padding-right:2.5rem !important}.py-sm-x10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.pt-sm-x10{padding-top:2.5rem !important}.pr-sm-x10{padding-right:2.5rem !important}.pb-sm-x10{padding-bottom:2.5rem !important}.pl-sm-x10{padding-left:2.5rem !important}.m-sm-x10{margin:2.5rem !important}.mx-sm-x10{margin-left:2.5rem !important;margin-right:2.5rem !important}.my-sm-x10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.mt-sm-x10{margin-top:2.5rem !important}.mr-sm-x10{margin-right:2.5rem !important}.mb-sm-x10{margin-bottom:2.5rem !important}.ml-sm-x10{margin-left:2.5rem !important}}@media(min-width: 667px){.p-sm-x11{padding:2.75rem !important}.px-sm-x11{padding-left:2.75rem !important;padding-right:2.75rem !important}.py-sm-x11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}.pt-sm-x11{padding-top:2.75rem !important}.pr-sm-x11{padding-right:2.75rem !important}.pb-sm-x11{padding-bottom:2.75rem !important}.pl-sm-x11{padding-left:2.75rem !important}.m-sm-x11{margin:2.75rem !important}.mx-sm-x11{margin-left:2.75rem !important;margin-right:2.75rem !important}.my-sm-x11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}.mt-sm-x11{margin-top:2.75rem !important}.mr-sm-x11{margin-right:2.75rem !important}.mb-sm-x11{margin-bottom:2.75rem !important}.ml-sm-x11{margin-left:2.75rem !important}}@media(min-width: 667px){.p-sm-x12{padding:3rem !important}.px-sm-x12{padding-left:3rem !important;padding-right:3rem !important}.py-sm-x12{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-x12{padding-top:3rem !important}.pr-sm-x12{padding-right:3rem !important}.pb-sm-x12{padding-bottom:3rem !important}.pl-sm-x12{padding-left:3rem !important}.m-sm-x12{margin:3rem !important}.mx-sm-x12{margin-left:3rem !important;margin-right:3rem !important}.my-sm-x12{margin-top:3rem !important;margin-bottom:3rem !important}.mt-sm-x12{margin-top:3rem !important}.mr-sm-x12{margin-right:3rem !important}.mb-sm-x12{margin-bottom:3rem !important}.ml-sm-x12{margin-left:3rem !important}}@media(min-width: 992px){.p-md-0{padding:0 !important}.px-md-0{padding-left:0 !important;padding-right:0 !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.pt-md-0{padding-top:0 !important}.pr-md-0{padding-right:0 !important}.pb-md-0{padding-bottom:0 !important}.pl-md-0{padding-left:0 !important}.m-md-0{margin:0 !important}.mx-md-0{margin-left:0 !important;margin-right:0 !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.mt-md-0{margin-top:0 !important}.mr-md-0{margin-right:0 !important}.mb-md-0{margin-bottom:0 !important}.ml-md-0{margin-left:0 !important}}@media(min-width: 992px){.p-md-x1{padding:.25rem !important}.px-md-x1{padding-left:.25rem !important;padding-right:.25rem !important}.py-md-x1{padding-top:.25rem !important;padding-bottom:.25rem !important}.pt-md-x1{padding-top:.25rem !important}.pr-md-x1{padding-right:.25rem !important}.pb-md-x1{padding-bottom:.25rem !important}.pl-md-x1{padding-left:.25rem !important}.m-md-x1{margin:.25rem !important}.mx-md-x1{margin-left:.25rem !important;margin-right:.25rem !important}.my-md-x1{margin-top:.25rem !important;margin-bottom:.25rem !important}.mt-md-x1{margin-top:.25rem !important}.mr-md-x1{margin-right:.25rem !important}.mb-md-x1{margin-bottom:.25rem !important}.ml-md-x1{margin-left:.25rem !important}}@media(min-width: 992px){.p-md-x2{padding:.5rem !important}.px-md-x2{padding-left:.5rem !important;padding-right:.5rem !important}.py-md-x2{padding-top:.5rem !important;padding-bottom:.5rem !important}.pt-md-x2{padding-top:.5rem !important}.pr-md-x2{padding-right:.5rem !important}.pb-md-x2{padding-bottom:.5rem !important}.pl-md-x2{padding-left:.5rem !important}.m-md-x2{margin:.5rem !important}.mx-md-x2{margin-left:.5rem !important;margin-right:.5rem !important}.my-md-x2{margin-top:.5rem !important;margin-bottom:.5rem !important}.mt-md-x2{margin-top:.5rem !important}.mr-md-x2{margin-right:.5rem !important}.mb-md-x2{margin-bottom:.5rem !important}.ml-md-x2{margin-left:.5rem !important}}@media(min-width: 992px){.p-md-x3{padding:.75rem !important}.px-md-x3{padding-left:.75rem !important;padding-right:.75rem !important}.py-md-x3{padding-top:.75rem !important;padding-bottom:.75rem !important}.pt-md-x3{padding-top:.75rem !important}.pr-md-x3{padding-right:.75rem !important}.pb-md-x3{padding-bottom:.75rem !important}.pl-md-x3{padding-left:.75rem !important}.m-md-x3{margin:.75rem !important}.mx-md-x3{margin-left:.75rem !important;margin-right:.75rem !important}.my-md-x3{margin-top:.75rem !important;margin-bottom:.75rem !important}.mt-md-x3{margin-top:.75rem !important}.mr-md-x3{margin-right:.75rem !important}.mb-md-x3{margin-bottom:.75rem !important}.ml-md-x3{margin-left:.75rem !important}}@media(min-width: 992px){.p-md-x4{padding:1rem !important}.px-md-x4{padding-left:1rem !important;padding-right:1rem !important}.py-md-x4{padding-top:1rem !important;padding-bottom:1rem !important}.pt-md-x4{padding-top:1rem !important}.pr-md-x4{padding-right:1rem !important}.pb-md-x4{padding-bottom:1rem !important}.pl-md-x4{padding-left:1rem !important}.m-md-x4{margin:1rem !important}.mx-md-x4{margin-left:1rem !important;margin-right:1rem !important}.my-md-x4{margin-top:1rem !important;margin-bottom:1rem !important}.mt-md-x4{margin-top:1rem !important}.mr-md-x4{margin-right:1rem !important}.mb-md-x4{margin-bottom:1rem !important}.ml-md-x4{margin-left:1rem !important}}@media(min-width: 992px){.p-md-x5{padding:1.25rem !important}.px-md-x5{padding-left:1.25rem !important;padding-right:1.25rem !important}.py-md-x5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.pt-md-x5{padding-top:1.25rem !important}.pr-md-x5{padding-right:1.25rem !important}.pb-md-x5{padding-bottom:1.25rem !important}.pl-md-x5{padding-left:1.25rem !important}.m-md-x5{margin:1.25rem !important}.mx-md-x5{margin-left:1.25rem !important;margin-right:1.25rem !important}.my-md-x5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.mt-md-x5{margin-top:1.25rem !important}.mr-md-x5{margin-right:1.25rem !important}.mb-md-x5{margin-bottom:1.25rem !important}.ml-md-x5{margin-left:1.25rem !important}}@media(min-width: 992px){.p-md-x6{padding:1.5rem !important}.px-md-x6{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-md-x6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.pt-md-x6{padding-top:1.5rem !important}.pr-md-x6{padding-right:1.5rem !important}.pb-md-x6{padding-bottom:1.5rem !important}.pl-md-x6{padding-left:1.5rem !important}.m-md-x6{margin:1.5rem !important}.mx-md-x6{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-md-x6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.mt-md-x6{margin-top:1.5rem !important}.mr-md-x6{margin-right:1.5rem !important}.mb-md-x6{margin-bottom:1.5rem !important}.ml-md-x6{margin-left:1.5rem !important}}@media(min-width: 992px){.p-md-x7{padding:1.75rem !important}.px-md-x7{padding-left:1.75rem !important;padding-right:1.75rem !important}.py-md-x7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.pt-md-x7{padding-top:1.75rem !important}.pr-md-x7{padding-right:1.75rem !important}.pb-md-x7{padding-bottom:1.75rem !important}.pl-md-x7{padding-left:1.75rem !important}.m-md-x7{margin:1.75rem !important}.mx-md-x7{margin-left:1.75rem !important;margin-right:1.75rem !important}.my-md-x7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.mt-md-x7{margin-top:1.75rem !important}.mr-md-x7{margin-right:1.75rem !important}.mb-md-x7{margin-bottom:1.75rem !important}.ml-md-x7{margin-left:1.75rem !important}}@media(min-width: 992px){.p-md-x8{padding:2rem !important}.px-md-x8{padding-left:2rem !important;padding-right:2rem !important}.py-md-x8{padding-top:2rem !important;padding-bottom:2rem !important}.pt-md-x8{padding-top:2rem !important}.pr-md-x8{padding-right:2rem !important}.pb-md-x8{padding-bottom:2rem !important}.pl-md-x8{padding-left:2rem !important}.m-md-x8{margin:2rem !important}.mx-md-x8{margin-left:2rem !important;margin-right:2rem !important}.my-md-x8{margin-top:2rem !important;margin-bottom:2rem !important}.mt-md-x8{margin-top:2rem !important}.mr-md-x8{margin-right:2rem !important}.mb-md-x8{margin-bottom:2rem !important}.ml-md-x8{margin-left:2rem !important}}@media(min-width: 992px){.p-md-x9{padding:2.25rem !important}.px-md-x9{padding-left:2.25rem !important;padding-right:2.25rem !important}.py-md-x9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}.pt-md-x9{padding-top:2.25rem !important}.pr-md-x9{padding-right:2.25rem !important}.pb-md-x9{padding-bottom:2.25rem !important}.pl-md-x9{padding-left:2.25rem !important}.m-md-x9{margin:2.25rem !important}.mx-md-x9{margin-left:2.25rem !important;margin-right:2.25rem !important}.my-md-x9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}.mt-md-x9{margin-top:2.25rem !important}.mr-md-x9{margin-right:2.25rem !important}.mb-md-x9{margin-bottom:2.25rem !important}.ml-md-x9{margin-left:2.25rem !important}}@media(min-width: 992px){.p-md-x10{padding:2.5rem !important}.px-md-x10{padding-left:2.5rem !important;padding-right:2.5rem !important}.py-md-x10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.pt-md-x10{padding-top:2.5rem !important}.pr-md-x10{padding-right:2.5rem !important}.pb-md-x10{padding-bottom:2.5rem !important}.pl-md-x10{padding-left:2.5rem !important}.m-md-x10{margin:2.5rem !important}.mx-md-x10{margin-left:2.5rem !important;margin-right:2.5rem !important}.my-md-x10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.mt-md-x10{margin-top:2.5rem !important}.mr-md-x10{margin-right:2.5rem !important}.mb-md-x10{margin-bottom:2.5rem !important}.ml-md-x10{margin-left:2.5rem !important}}@media(min-width: 992px){.p-md-x11{padding:2.75rem !important}.px-md-x11{padding-left:2.75rem !important;padding-right:2.75rem !important}.py-md-x11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}.pt-md-x11{padding-top:2.75rem !important}.pr-md-x11{padding-right:2.75rem !important}.pb-md-x11{padding-bottom:2.75rem !important}.pl-md-x11{padding-left:2.75rem !important}.m-md-x11{margin:2.75rem !important}.mx-md-x11{margin-left:2.75rem !important;margin-right:2.75rem !important}.my-md-x11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}.mt-md-x11{margin-top:2.75rem !important}.mr-md-x11{margin-right:2.75rem !important}.mb-md-x11{margin-bottom:2.75rem !important}.ml-md-x11{margin-left:2.75rem !important}}@media(min-width: 992px){.p-md-x12{padding:3rem !important}.px-md-x12{padding-left:3rem !important;padding-right:3rem !important}.py-md-x12{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-x12{padding-top:3rem !important}.pr-md-x12{padding-right:3rem !important}.pb-md-x12{padding-bottom:3rem !important}.pl-md-x12{padding-left:3rem !important}.m-md-x12{margin:3rem !important}.mx-md-x12{margin-left:3rem !important;margin-right:3rem !important}.my-md-x12{margin-top:3rem !important;margin-bottom:3rem !important}.mt-md-x12{margin-top:3rem !important}.mr-md-x12{margin-right:3rem !important}.mb-md-x12{margin-bottom:3rem !important}.ml-md-x12{margin-left:3rem !important}}@media(min-width: 1200px){.p-lg-0{padding:0 !important}.px-lg-0{padding-left:0 !important;padding-right:0 !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.pt-lg-0{padding-top:0 !important}.pr-lg-0{padding-right:0 !important}.pb-lg-0{padding-bottom:0 !important}.pl-lg-0{padding-left:0 !important}.m-lg-0{margin:0 !important}.mx-lg-0{margin-left:0 !important;margin-right:0 !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.mt-lg-0{margin-top:0 !important}.mr-lg-0{margin-right:0 !important}.mb-lg-0{margin-bottom:0 !important}.ml-lg-0{margin-left:0 !important}}@media(min-width: 1200px){.p-lg-x1{padding:.25rem !important}.px-lg-x1{padding-left:.25rem !important;padding-right:.25rem !important}.py-lg-x1{padding-top:.25rem !important;padding-bottom:.25rem !important}.pt-lg-x1{padding-top:.25rem !important}.pr-lg-x1{padding-right:.25rem !important}.pb-lg-x1{padding-bottom:.25rem !important}.pl-lg-x1{padding-left:.25rem !important}.m-lg-x1{margin:.25rem !important}.mx-lg-x1{margin-left:.25rem !important;margin-right:.25rem !important}.my-lg-x1{margin-top:.25rem !important;margin-bottom:.25rem !important}.mt-lg-x1{margin-top:.25rem !important}.mr-lg-x1{margin-right:.25rem !important}.mb-lg-x1{margin-bottom:.25rem !important}.ml-lg-x1{margin-left:.25rem !important}}@media(min-width: 1200px){.p-lg-x2{padding:.5rem !important}.px-lg-x2{padding-left:.5rem !important;padding-right:.5rem !important}.py-lg-x2{padding-top:.5rem !important;padding-bottom:.5rem !important}.pt-lg-x2{padding-top:.5rem !important}.pr-lg-x2{padding-right:.5rem !important}.pb-lg-x2{padding-bottom:.5rem !important}.pl-lg-x2{padding-left:.5rem !important}.m-lg-x2{margin:.5rem !important}.mx-lg-x2{margin-left:.5rem !important;margin-right:.5rem !important}.my-lg-x2{margin-top:.5rem !important;margin-bottom:.5rem !important}.mt-lg-x2{margin-top:.5rem !important}.mr-lg-x2{margin-right:.5rem !important}.mb-lg-x2{margin-bottom:.5rem !important}.ml-lg-x2{margin-left:.5rem !important}}@media(min-width: 1200px){.p-lg-x3{padding:.75rem !important}.px-lg-x3{padding-left:.75rem !important;padding-right:.75rem !important}.py-lg-x3{padding-top:.75rem !important;padding-bottom:.75rem !important}.pt-lg-x3{padding-top:.75rem !important}.pr-lg-x3{padding-right:.75rem !important}.pb-lg-x3{padding-bottom:.75rem !important}.pl-lg-x3{padding-left:.75rem !important}.m-lg-x3{margin:.75rem !important}.mx-lg-x3{margin-left:.75rem !important;margin-right:.75rem !important}.my-lg-x3{margin-top:.75rem !important;margin-bottom:.75rem !important}.mt-lg-x3{margin-top:.75rem !important}.mr-lg-x3{margin-right:.75rem !important}.mb-lg-x3{margin-bottom:.75rem !important}.ml-lg-x3{margin-left:.75rem !important}}@media(min-width: 1200px){.p-lg-x4{padding:1rem !important}.px-lg-x4{padding-left:1rem !important;padding-right:1rem !important}.py-lg-x4{padding-top:1rem !important;padding-bottom:1rem !important}.pt-lg-x4{padding-top:1rem !important}.pr-lg-x4{padding-right:1rem !important}.pb-lg-x4{padding-bottom:1rem !important}.pl-lg-x4{padding-left:1rem !important}.m-lg-x4{margin:1rem !important}.mx-lg-x4{margin-left:1rem !important;margin-right:1rem !important}.my-lg-x4{margin-top:1rem !important;margin-bottom:1rem !important}.mt-lg-x4{margin-top:1rem !important}.mr-lg-x4{margin-right:1rem !important}.mb-lg-x4{margin-bottom:1rem !important}.ml-lg-x4{margin-left:1rem !important}}@media(min-width: 1200px){.p-lg-x5{padding:1.25rem !important}.px-lg-x5{padding-left:1.25rem !important;padding-right:1.25rem !important}.py-lg-x5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.pt-lg-x5{padding-top:1.25rem !important}.pr-lg-x5{padding-right:1.25rem !important}.pb-lg-x5{padding-bottom:1.25rem !important}.pl-lg-x5{padding-left:1.25rem !important}.m-lg-x5{margin:1.25rem !important}.mx-lg-x5{margin-left:1.25rem !important;margin-right:1.25rem !important}.my-lg-x5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.mt-lg-x5{margin-top:1.25rem !important}.mr-lg-x5{margin-right:1.25rem !important}.mb-lg-x5{margin-bottom:1.25rem !important}.ml-lg-x5{margin-left:1.25rem !important}}@media(min-width: 1200px){.p-lg-x6{padding:1.5rem !important}.px-lg-x6{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-lg-x6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.pt-lg-x6{padding-top:1.5rem !important}.pr-lg-x6{padding-right:1.5rem !important}.pb-lg-x6{padding-bottom:1.5rem !important}.pl-lg-x6{padding-left:1.5rem !important}.m-lg-x6{margin:1.5rem !important}.mx-lg-x6{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-lg-x6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.mt-lg-x6{margin-top:1.5rem !important}.mr-lg-x6{margin-right:1.5rem !important}.mb-lg-x6{margin-bottom:1.5rem !important}.ml-lg-x6{margin-left:1.5rem !important}}@media(min-width: 1200px){.p-lg-x7{padding:1.75rem !important}.px-lg-x7{padding-left:1.75rem !important;padding-right:1.75rem !important}.py-lg-x7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.pt-lg-x7{padding-top:1.75rem !important}.pr-lg-x7{padding-right:1.75rem !important}.pb-lg-x7{padding-bottom:1.75rem !important}.pl-lg-x7{padding-left:1.75rem !important}.m-lg-x7{margin:1.75rem !important}.mx-lg-x7{margin-left:1.75rem !important;margin-right:1.75rem !important}.my-lg-x7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.mt-lg-x7{margin-top:1.75rem !important}.mr-lg-x7{margin-right:1.75rem !important}.mb-lg-x7{margin-bottom:1.75rem !important}.ml-lg-x7{margin-left:1.75rem !important}}@media(min-width: 1200px){.p-lg-x8{padding:2rem !important}.px-lg-x8{padding-left:2rem !important;padding-right:2rem !important}.py-lg-x8{padding-top:2rem !important;padding-bottom:2rem !important}.pt-lg-x8{padding-top:2rem !important}.pr-lg-x8{padding-right:2rem !important}.pb-lg-x8{padding-bottom:2rem !important}.pl-lg-x8{padding-left:2rem !important}.m-lg-x8{margin:2rem !important}.mx-lg-x8{margin-left:2rem !important;margin-right:2rem !important}.my-lg-x8{margin-top:2rem !important;margin-bottom:2rem !important}.mt-lg-x8{margin-top:2rem !important}.mr-lg-x8{margin-right:2rem !important}.mb-lg-x8{margin-bottom:2rem !important}.ml-lg-x8{margin-left:2rem !important}}@media(min-width: 1200px){.p-lg-x9{padding:2.25rem !important}.px-lg-x9{padding-left:2.25rem !important;padding-right:2.25rem !important}.py-lg-x9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}.pt-lg-x9{padding-top:2.25rem !important}.pr-lg-x9{padding-right:2.25rem !important}.pb-lg-x9{padding-bottom:2.25rem !important}.pl-lg-x9{padding-left:2.25rem !important}.m-lg-x9{margin:2.25rem !important}.mx-lg-x9{margin-left:2.25rem !important;margin-right:2.25rem !important}.my-lg-x9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}.mt-lg-x9{margin-top:2.25rem !important}.mr-lg-x9{margin-right:2.25rem !important}.mb-lg-x9{margin-bottom:2.25rem !important}.ml-lg-x9{margin-left:2.25rem !important}}@media(min-width: 1200px){.p-lg-x10{padding:2.5rem !important}.px-lg-x10{padding-left:2.5rem !important;padding-right:2.5rem !important}.py-lg-x10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.pt-lg-x10{padding-top:2.5rem !important}.pr-lg-x10{padding-right:2.5rem !important}.pb-lg-x10{padding-bottom:2.5rem !important}.pl-lg-x10{padding-left:2.5rem !important}.m-lg-x10{margin:2.5rem !important}.mx-lg-x10{margin-left:2.5rem !important;margin-right:2.5rem !important}.my-lg-x10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.mt-lg-x10{margin-top:2.5rem !important}.mr-lg-x10{margin-right:2.5rem !important}.mb-lg-x10{margin-bottom:2.5rem !important}.ml-lg-x10{margin-left:2.5rem !important}}@media(min-width: 1200px){.p-lg-x11{padding:2.75rem !important}.px-lg-x11{padding-left:2.75rem !important;padding-right:2.75rem !important}.py-lg-x11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}.pt-lg-x11{padding-top:2.75rem !important}.pr-lg-x11{padding-right:2.75rem !important}.pb-lg-x11{padding-bottom:2.75rem !important}.pl-lg-x11{padding-left:2.75rem !important}.m-lg-x11{margin:2.75rem !important}.mx-lg-x11{margin-left:2.75rem !important;margin-right:2.75rem !important}.my-lg-x11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}.mt-lg-x11{margin-top:2.75rem !important}.mr-lg-x11{margin-right:2.75rem !important}.mb-lg-x11{margin-bottom:2.75rem !important}.ml-lg-x11{margin-left:2.75rem !important}}@media(min-width: 1200px){.p-lg-x12{padding:3rem !important}.px-lg-x12{padding-left:3rem !important;padding-right:3rem !important}.py-lg-x12{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-x12{padding-top:3rem !important}.pr-lg-x12{padding-right:3rem !important}.pb-lg-x12{padding-bottom:3rem !important}.pl-lg-x12{padding-left:3rem !important}.m-lg-x12{margin:3rem !important}.mx-lg-x12{margin-left:3rem !important;margin-right:3rem !important}.my-lg-x12{margin-top:3rem !important;margin-bottom:3rem !important}.mt-lg-x12{margin-top:3rem !important}.mr-lg-x12{margin-right:3rem !important}.mb-lg-x12{margin-bottom:3rem !important}.ml-lg-x12{margin-left:3rem !important}}@media(min-width: 1440px){.p-xl-0{padding:0 !important}.px-xl-0{padding-left:0 !important;padding-right:0 !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.pt-xl-0{padding-top:0 !important}.pr-xl-0{padding-right:0 !important}.pb-xl-0{padding-bottom:0 !important}.pl-xl-0{padding-left:0 !important}.m-xl-0{margin:0 !important}.mx-xl-0{margin-left:0 !important;margin-right:0 !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.mt-xl-0{margin-top:0 !important}.mr-xl-0{margin-right:0 !important}.mb-xl-0{margin-bottom:0 !important}.ml-xl-0{margin-left:0 !important}}@media(min-width: 1440px){.p-xl-x1{padding:.25rem !important}.px-xl-x1{padding-left:.25rem !important;padding-right:.25rem !important}.py-xl-x1{padding-top:.25rem !important;padding-bottom:.25rem !important}.pt-xl-x1{padding-top:.25rem !important}.pr-xl-x1{padding-right:.25rem !important}.pb-xl-x1{padding-bottom:.25rem !important}.pl-xl-x1{padding-left:.25rem !important}.m-xl-x1{margin:.25rem !important}.mx-xl-x1{margin-left:.25rem !important;margin-right:.25rem !important}.my-xl-x1{margin-top:.25rem !important;margin-bottom:.25rem !important}.mt-xl-x1{margin-top:.25rem !important}.mr-xl-x1{margin-right:.25rem !important}.mb-xl-x1{margin-bottom:.25rem !important}.ml-xl-x1{margin-left:.25rem !important}}@media(min-width: 1440px){.p-xl-x2{padding:.5rem !important}.px-xl-x2{padding-left:.5rem !important;padding-right:.5rem !important}.py-xl-x2{padding-top:.5rem !important;padding-bottom:.5rem !important}.pt-xl-x2{padding-top:.5rem !important}.pr-xl-x2{padding-right:.5rem !important}.pb-xl-x2{padding-bottom:.5rem !important}.pl-xl-x2{padding-left:.5rem !important}.m-xl-x2{margin:.5rem !important}.mx-xl-x2{margin-left:.5rem !important;margin-right:.5rem !important}.my-xl-x2{margin-top:.5rem !important;margin-bottom:.5rem !important}.mt-xl-x2{margin-top:.5rem !important}.mr-xl-x2{margin-right:.5rem !important}.mb-xl-x2{margin-bottom:.5rem !important}.ml-xl-x2{margin-left:.5rem !important}}@media(min-width: 1440px){.p-xl-x3{padding:.75rem !important}.px-xl-x3{padding-left:.75rem !important;padding-right:.75rem !important}.py-xl-x3{padding-top:.75rem !important;padding-bottom:.75rem !important}.pt-xl-x3{padding-top:.75rem !important}.pr-xl-x3{padding-right:.75rem !important}.pb-xl-x3{padding-bottom:.75rem !important}.pl-xl-x3{padding-left:.75rem !important}.m-xl-x3{margin:.75rem !important}.mx-xl-x3{margin-left:.75rem !important;margin-right:.75rem !important}.my-xl-x3{margin-top:.75rem !important;margin-bottom:.75rem !important}.mt-xl-x3{margin-top:.75rem !important}.mr-xl-x3{margin-right:.75rem !important}.mb-xl-x3{margin-bottom:.75rem !important}.ml-xl-x3{margin-left:.75rem !important}}@media(min-width: 1440px){.p-xl-x4{padding:1rem !important}.px-xl-x4{padding-left:1rem !important;padding-right:1rem !important}.py-xl-x4{padding-top:1rem !important;padding-bottom:1rem !important}.pt-xl-x4{padding-top:1rem !important}.pr-xl-x4{padding-right:1rem !important}.pb-xl-x4{padding-bottom:1rem !important}.pl-xl-x4{padding-left:1rem !important}.m-xl-x4{margin:1rem !important}.mx-xl-x4{margin-left:1rem !important;margin-right:1rem !important}.my-xl-x4{margin-top:1rem !important;margin-bottom:1rem !important}.mt-xl-x4{margin-top:1rem !important}.mr-xl-x4{margin-right:1rem !important}.mb-xl-x4{margin-bottom:1rem !important}.ml-xl-x4{margin-left:1rem !important}}@media(min-width: 1440px){.p-xl-x5{padding:1.25rem !important}.px-xl-x5{padding-left:1.25rem !important;padding-right:1.25rem !important}.py-xl-x5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.pt-xl-x5{padding-top:1.25rem !important}.pr-xl-x5{padding-right:1.25rem !important}.pb-xl-x5{padding-bottom:1.25rem !important}.pl-xl-x5{padding-left:1.25rem !important}.m-xl-x5{margin:1.25rem !important}.mx-xl-x5{margin-left:1.25rem !important;margin-right:1.25rem !important}.my-xl-x5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.mt-xl-x5{margin-top:1.25rem !important}.mr-xl-x5{margin-right:1.25rem !important}.mb-xl-x5{margin-bottom:1.25rem !important}.ml-xl-x5{margin-left:1.25rem !important}}@media(min-width: 1440px){.p-xl-x6{padding:1.5rem !important}.px-xl-x6{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-xl-x6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.pt-xl-x6{padding-top:1.5rem !important}.pr-xl-x6{padding-right:1.5rem !important}.pb-xl-x6{padding-bottom:1.5rem !important}.pl-xl-x6{padding-left:1.5rem !important}.m-xl-x6{margin:1.5rem !important}.mx-xl-x6{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-xl-x6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.mt-xl-x6{margin-top:1.5rem !important}.mr-xl-x6{margin-right:1.5rem !important}.mb-xl-x6{margin-bottom:1.5rem !important}.ml-xl-x6{margin-left:1.5rem !important}}@media(min-width: 1440px){.p-xl-x7{padding:1.75rem !important}.px-xl-x7{padding-left:1.75rem !important;padding-right:1.75rem !important}.py-xl-x7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.pt-xl-x7{padding-top:1.75rem !important}.pr-xl-x7{padding-right:1.75rem !important}.pb-xl-x7{padding-bottom:1.75rem !important}.pl-xl-x7{padding-left:1.75rem !important}.m-xl-x7{margin:1.75rem !important}.mx-xl-x7{margin-left:1.75rem !important;margin-right:1.75rem !important}.my-xl-x7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.mt-xl-x7{margin-top:1.75rem !important}.mr-xl-x7{margin-right:1.75rem !important}.mb-xl-x7{margin-bottom:1.75rem !important}.ml-xl-x7{margin-left:1.75rem !important}}@media(min-width: 1440px){.p-xl-x8{padding:2rem !important}.px-xl-x8{padding-left:2rem !important;padding-right:2rem !important}.py-xl-x8{padding-top:2rem !important;padding-bottom:2rem !important}.pt-xl-x8{padding-top:2rem !important}.pr-xl-x8{padding-right:2rem !important}.pb-xl-x8{padding-bottom:2rem !important}.pl-xl-x8{padding-left:2rem !important}.m-xl-x8{margin:2rem !important}.mx-xl-x8{margin-left:2rem !important;margin-right:2rem !important}.my-xl-x8{margin-top:2rem !important;margin-bottom:2rem !important}.mt-xl-x8{margin-top:2rem !important}.mr-xl-x8{margin-right:2rem !important}.mb-xl-x8{margin-bottom:2rem !important}.ml-xl-x8{margin-left:2rem !important}}@media(min-width: 1440px){.p-xl-x9{padding:2.25rem !important}.px-xl-x9{padding-left:2.25rem !important;padding-right:2.25rem !important}.py-xl-x9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}.pt-xl-x9{padding-top:2.25rem !important}.pr-xl-x9{padding-right:2.25rem !important}.pb-xl-x9{padding-bottom:2.25rem !important}.pl-xl-x9{padding-left:2.25rem !important}.m-xl-x9{margin:2.25rem !important}.mx-xl-x9{margin-left:2.25rem !important;margin-right:2.25rem !important}.my-xl-x9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}.mt-xl-x9{margin-top:2.25rem !important}.mr-xl-x9{margin-right:2.25rem !important}.mb-xl-x9{margin-bottom:2.25rem !important}.ml-xl-x9{margin-left:2.25rem !important}}@media(min-width: 1440px){.p-xl-x10{padding:2.5rem !important}.px-xl-x10{padding-left:2.5rem !important;padding-right:2.5rem !important}.py-xl-x10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.pt-xl-x10{padding-top:2.5rem !important}.pr-xl-x10{padding-right:2.5rem !important}.pb-xl-x10{padding-bottom:2.5rem !important}.pl-xl-x10{padding-left:2.5rem !important}.m-xl-x10{margin:2.5rem !important}.mx-xl-x10{margin-left:2.5rem !important;margin-right:2.5rem !important}.my-xl-x10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.mt-xl-x10{margin-top:2.5rem !important}.mr-xl-x10{margin-right:2.5rem !important}.mb-xl-x10{margin-bottom:2.5rem !important}.ml-xl-x10{margin-left:2.5rem !important}}@media(min-width: 1440px){.p-xl-x11{padding:2.75rem !important}.px-xl-x11{padding-left:2.75rem !important;padding-right:2.75rem !important}.py-xl-x11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}.pt-xl-x11{padding-top:2.75rem !important}.pr-xl-x11{padding-right:2.75rem !important}.pb-xl-x11{padding-bottom:2.75rem !important}.pl-xl-x11{padding-left:2.75rem !important}.m-xl-x11{margin:2.75rem !important}.mx-xl-x11{margin-left:2.75rem !important;margin-right:2.75rem !important}.my-xl-x11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}.mt-xl-x11{margin-top:2.75rem !important}.mr-xl-x11{margin-right:2.75rem !important}.mb-xl-x11{margin-bottom:2.75rem !important}.ml-xl-x11{margin-left:2.75rem !important}}@media(min-width: 1440px){.p-xl-x12{padding:3rem !important}.px-xl-x12{padding-left:3rem !important;padding-right:3rem !important}.py-xl-x12{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-x12{padding-top:3rem !important}.pr-xl-x12{padding-right:3rem !important}.pb-xl-x12{padding-bottom:3rem !important}.pl-xl-x12{padding-left:3rem !important}.m-xl-x12{margin:3rem !important}.mx-xl-x12{margin-left:3rem !important;margin-right:3rem !important}.my-xl-x12{margin-top:3rem !important;margin-bottom:3rem !important}.mt-xl-x12{margin-top:3rem !important}.mr-xl-x12{margin-right:3rem !important}.mb-xl-x12{margin-bottom:3rem !important}.ml-xl-x12{margin-left:3rem !important}}@media(min-width: 1780px){.p-xxl-0{padding:0 !important}.px-xxl-0{padding-left:0 !important;padding-right:0 !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.pt-xxl-0{padding-top:0 !important}.pr-xxl-0{padding-right:0 !important}.pb-xxl-0{padding-bottom:0 !important}.pl-xxl-0{padding-left:0 !important}.m-xxl-0{margin:0 !important}.mx-xxl-0{margin-left:0 !important;margin-right:0 !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.mt-xxl-0{margin-top:0 !important}.mr-xxl-0{margin-right:0 !important}.mb-xxl-0{margin-bottom:0 !important}.ml-xxl-0{margin-left:0 !important}}@media(min-width: 1780px){.p-xxl-x1{padding:.25rem !important}.px-xxl-x1{padding-left:.25rem !important;padding-right:.25rem !important}.py-xxl-x1{padding-top:.25rem !important;padding-bottom:.25rem !important}.pt-xxl-x1{padding-top:.25rem !important}.pr-xxl-x1{padding-right:.25rem !important}.pb-xxl-x1{padding-bottom:.25rem !important}.pl-xxl-x1{padding-left:.25rem !important}.m-xxl-x1{margin:.25rem !important}.mx-xxl-x1{margin-left:.25rem !important;margin-right:.25rem !important}.my-xxl-x1{margin-top:.25rem !important;margin-bottom:.25rem !important}.mt-xxl-x1{margin-top:.25rem !important}.mr-xxl-x1{margin-right:.25rem !important}.mb-xxl-x1{margin-bottom:.25rem !important}.ml-xxl-x1{margin-left:.25rem !important}}@media(min-width: 1780px){.p-xxl-x2{padding:.5rem !important}.px-xxl-x2{padding-left:.5rem !important;padding-right:.5rem !important}.py-xxl-x2{padding-top:.5rem !important;padding-bottom:.5rem !important}.pt-xxl-x2{padding-top:.5rem !important}.pr-xxl-x2{padding-right:.5rem !important}.pb-xxl-x2{padding-bottom:.5rem !important}.pl-xxl-x2{padding-left:.5rem !important}.m-xxl-x2{margin:.5rem !important}.mx-xxl-x2{margin-left:.5rem !important;margin-right:.5rem !important}.my-xxl-x2{margin-top:.5rem !important;margin-bottom:.5rem !important}.mt-xxl-x2{margin-top:.5rem !important}.mr-xxl-x2{margin-right:.5rem !important}.mb-xxl-x2{margin-bottom:.5rem !important}.ml-xxl-x2{margin-left:.5rem !important}}@media(min-width: 1780px){.p-xxl-x3{padding:.75rem !important}.px-xxl-x3{padding-left:.75rem !important;padding-right:.75rem !important}.py-xxl-x3{padding-top:.75rem !important;padding-bottom:.75rem !important}.pt-xxl-x3{padding-top:.75rem !important}.pr-xxl-x3{padding-right:.75rem !important}.pb-xxl-x3{padding-bottom:.75rem !important}.pl-xxl-x3{padding-left:.75rem !important}.m-xxl-x3{margin:.75rem !important}.mx-xxl-x3{margin-left:.75rem !important;margin-right:.75rem !important}.my-xxl-x3{margin-top:.75rem !important;margin-bottom:.75rem !important}.mt-xxl-x3{margin-top:.75rem !important}.mr-xxl-x3{margin-right:.75rem !important}.mb-xxl-x3{margin-bottom:.75rem !important}.ml-xxl-x3{margin-left:.75rem !important}}@media(min-width: 1780px){.p-xxl-x4{padding:1rem !important}.px-xxl-x4{padding-left:1rem !important;padding-right:1rem !important}.py-xxl-x4{padding-top:1rem !important;padding-bottom:1rem !important}.pt-xxl-x4{padding-top:1rem !important}.pr-xxl-x4{padding-right:1rem !important}.pb-xxl-x4{padding-bottom:1rem !important}.pl-xxl-x4{padding-left:1rem !important}.m-xxl-x4{margin:1rem !important}.mx-xxl-x4{margin-left:1rem !important;margin-right:1rem !important}.my-xxl-x4{margin-top:1rem !important;margin-bottom:1rem !important}.mt-xxl-x4{margin-top:1rem !important}.mr-xxl-x4{margin-right:1rem !important}.mb-xxl-x4{margin-bottom:1rem !important}.ml-xxl-x4{margin-left:1rem !important}}@media(min-width: 1780px){.p-xxl-x5{padding:1.25rem !important}.px-xxl-x5{padding-left:1.25rem !important;padding-right:1.25rem !important}.py-xxl-x5{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.pt-xxl-x5{padding-top:1.25rem !important}.pr-xxl-x5{padding-right:1.25rem !important}.pb-xxl-x5{padding-bottom:1.25rem !important}.pl-xxl-x5{padding-left:1.25rem !important}.m-xxl-x5{margin:1.25rem !important}.mx-xxl-x5{margin-left:1.25rem !important;margin-right:1.25rem !important}.my-xxl-x5{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.mt-xxl-x5{margin-top:1.25rem !important}.mr-xxl-x5{margin-right:1.25rem !important}.mb-xxl-x5{margin-bottom:1.25rem !important}.ml-xxl-x5{margin-left:1.25rem !important}}@media(min-width: 1780px){.p-xxl-x6{padding:1.5rem !important}.px-xxl-x6{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-xxl-x6{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.pt-xxl-x6{padding-top:1.5rem !important}.pr-xxl-x6{padding-right:1.5rem !important}.pb-xxl-x6{padding-bottom:1.5rem !important}.pl-xxl-x6{padding-left:1.5rem !important}.m-xxl-x6{margin:1.5rem !important}.mx-xxl-x6{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-xxl-x6{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.mt-xxl-x6{margin-top:1.5rem !important}.mr-xxl-x6{margin-right:1.5rem !important}.mb-xxl-x6{margin-bottom:1.5rem !important}.ml-xxl-x6{margin-left:1.5rem !important}}@media(min-width: 1780px){.p-xxl-x7{padding:1.75rem !important}.px-xxl-x7{padding-left:1.75rem !important;padding-right:1.75rem !important}.py-xxl-x7{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.pt-xxl-x7{padding-top:1.75rem !important}.pr-xxl-x7{padding-right:1.75rem !important}.pb-xxl-x7{padding-bottom:1.75rem !important}.pl-xxl-x7{padding-left:1.75rem !important}.m-xxl-x7{margin:1.75rem !important}.mx-xxl-x7{margin-left:1.75rem !important;margin-right:1.75rem !important}.my-xxl-x7{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.mt-xxl-x7{margin-top:1.75rem !important}.mr-xxl-x7{margin-right:1.75rem !important}.mb-xxl-x7{margin-bottom:1.75rem !important}.ml-xxl-x7{margin-left:1.75rem !important}}@media(min-width: 1780px){.p-xxl-x8{padding:2rem !important}.px-xxl-x8{padding-left:2rem !important;padding-right:2rem !important}.py-xxl-x8{padding-top:2rem !important;padding-bottom:2rem !important}.pt-xxl-x8{padding-top:2rem !important}.pr-xxl-x8{padding-right:2rem !important}.pb-xxl-x8{padding-bottom:2rem !important}.pl-xxl-x8{padding-left:2rem !important}.m-xxl-x8{margin:2rem !important}.mx-xxl-x8{margin-left:2rem !important;margin-right:2rem !important}.my-xxl-x8{margin-top:2rem !important;margin-bottom:2rem !important}.mt-xxl-x8{margin-top:2rem !important}.mr-xxl-x8{margin-right:2rem !important}.mb-xxl-x8{margin-bottom:2rem !important}.ml-xxl-x8{margin-left:2rem !important}}@media(min-width: 1780px){.p-xxl-x9{padding:2.25rem !important}.px-xxl-x9{padding-left:2.25rem !important;padding-right:2.25rem !important}.py-xxl-x9{padding-top:2.25rem !important;padding-bottom:2.25rem !important}.pt-xxl-x9{padding-top:2.25rem !important}.pr-xxl-x9{padding-right:2.25rem !important}.pb-xxl-x9{padding-bottom:2.25rem !important}.pl-xxl-x9{padding-left:2.25rem !important}.m-xxl-x9{margin:2.25rem !important}.mx-xxl-x9{margin-left:2.25rem !important;margin-right:2.25rem !important}.my-xxl-x9{margin-top:2.25rem !important;margin-bottom:2.25rem !important}.mt-xxl-x9{margin-top:2.25rem !important}.mr-xxl-x9{margin-right:2.25rem !important}.mb-xxl-x9{margin-bottom:2.25rem !important}.ml-xxl-x9{margin-left:2.25rem !important}}@media(min-width: 1780px){.p-xxl-x10{padding:2.5rem !important}.px-xxl-x10{padding-left:2.5rem !important;padding-right:2.5rem !important}.py-xxl-x10{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.pt-xxl-x10{padding-top:2.5rem !important}.pr-xxl-x10{padding-right:2.5rem !important}.pb-xxl-x10{padding-bottom:2.5rem !important}.pl-xxl-x10{padding-left:2.5rem !important}.m-xxl-x10{margin:2.5rem !important}.mx-xxl-x10{margin-left:2.5rem !important;margin-right:2.5rem !important}.my-xxl-x10{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.mt-xxl-x10{margin-top:2.5rem !important}.mr-xxl-x10{margin-right:2.5rem !important}.mb-xxl-x10{margin-bottom:2.5rem !important}.ml-xxl-x10{margin-left:2.5rem !important}}@media(min-width: 1780px){.p-xxl-x11{padding:2.75rem !important}.px-xxl-x11{padding-left:2.75rem !important;padding-right:2.75rem !important}.py-xxl-x11{padding-top:2.75rem !important;padding-bottom:2.75rem !important}.pt-xxl-x11{padding-top:2.75rem !important}.pr-xxl-x11{padding-right:2.75rem !important}.pb-xxl-x11{padding-bottom:2.75rem !important}.pl-xxl-x11{padding-left:2.75rem !important}.m-xxl-x11{margin:2.75rem !important}.mx-xxl-x11{margin-left:2.75rem !important;margin-right:2.75rem !important}.my-xxl-x11{margin-top:2.75rem !important;margin-bottom:2.75rem !important}.mt-xxl-x11{margin-top:2.75rem !important}.mr-xxl-x11{margin-right:2.75rem !important}.mb-xxl-x11{margin-bottom:2.75rem !important}.ml-xxl-x11{margin-left:2.75rem !important}}@media(min-width: 1780px){.p-xxl-x12{padding:3rem !important}.px-xxl-x12{padding-left:3rem !important;padding-right:3rem !important}.py-xxl-x12{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-x12{padding-top:3rem !important}.pr-xxl-x12{padding-right:3rem !important}.pb-xxl-x12{padding-bottom:3rem !important}.pl-xxl-x12{padding-left:3rem !important}.m-xxl-x12{margin:3rem !important}.mx-xxl-x12{margin-left:3rem !important;margin-right:3rem !important}.my-xxl-x12{margin-top:3rem !important;margin-bottom:3rem !important}.mt-xxl-x12{margin-top:3rem !important}.mr-xxl-x12{margin-right:3rem !important}.mb-xxl-x12{margin-bottom:3rem !important}.ml-xxl-x12{margin-left:3rem !important}}.p-n-0{padding:0 !important}.px-n-0{padding-left:0 !important;padding-right:0 !important}.py-n-0{padding-top:0 !important;padding-bottom:0 !important}.pt-n-0{padding-top:0 !important}.pr-n-0{padding-right:0 !important}.pb-n-0{padding-bottom:0 !important}.pl-n-0{padding-left:0 !important}.m-n-0{margin:0 !important}.mx-n-0{margin-left:0 !important;margin-right:0 !important}.my-n-0{margin-top:0 !important;margin-bottom:0 !important}.mt-n-0{margin-top:0 !important}.mr-n-0{margin-right:0 !important}.mb-n-0{margin-bottom:0 !important}.ml-n-0{margin-left:0 !important}.p-n-x1{padding:-0.25rem !important}.px-n-x1{padding-left:-0.25rem !important;padding-right:-0.25rem !important}.py-n-x1{padding-top:-0.25rem !important;padding-bottom:-0.25rem !important}.pt-n-x1{padding-top:-0.25rem !important}.pr-n-x1{padding-right:-0.25rem !important}.pb-n-x1{padding-bottom:-0.25rem !important}.pl-n-x1{padding-left:-0.25rem !important}.m-n-x1{margin:-0.25rem !important}.mx-n-x1{margin-left:-0.25rem !important;margin-right:-0.25rem !important}.my-n-x1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.mt-n-x1{margin-top:-0.25rem !important}.mr-n-x1{margin-right:-0.25rem !important}.mb-n-x1{margin-bottom:-0.25rem !important}.ml-n-x1{margin-left:-0.25rem !important}.p-n-x2{padding:-0.5rem !important}.px-n-x2{padding-left:-0.5rem !important;padding-right:-0.5rem !important}.py-n-x2{padding-top:-0.5rem !important;padding-bottom:-0.5rem !important}.pt-n-x2{padding-top:-0.5rem !important}.pr-n-x2{padding-right:-0.5rem !important}.pb-n-x2{padding-bottom:-0.5rem !important}.pl-n-x2{padding-left:-0.5rem !important}.m-n-x2{margin:-0.5rem !important}.mx-n-x2{margin-left:-0.5rem !important;margin-right:-0.5rem !important}.my-n-x2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.mt-n-x2{margin-top:-0.5rem !important}.mr-n-x2{margin-right:-0.5rem !important}.mb-n-x2{margin-bottom:-0.5rem !important}.ml-n-x2{margin-left:-0.5rem !important}.p-n-x3{padding:-0.75rem !important}.px-n-x3{padding-left:-0.75rem !important;padding-right:-0.75rem !important}.py-n-x3{padding-top:-0.75rem !important;padding-bottom:-0.75rem !important}.pt-n-x3{padding-top:-0.75rem !important}.pr-n-x3{padding-right:-0.75rem !important}.pb-n-x3{padding-bottom:-0.75rem !important}.pl-n-x3{padding-left:-0.75rem !important}.m-n-x3{margin:-0.75rem !important}.mx-n-x3{margin-left:-0.75rem !important;margin-right:-0.75rem !important}.my-n-x3{margin-top:-0.75rem !important;margin-bottom:-0.75rem !important}.mt-n-x3{margin-top:-0.75rem !important}.mr-n-x3{margin-right:-0.75rem !important}.mb-n-x3{margin-bottom:-0.75rem !important}.ml-n-x3{margin-left:-0.75rem !important}.p-n-x4{padding:-1rem !important}.px-n-x4{padding-left:-1rem !important;padding-right:-1rem !important}.py-n-x4{padding-top:-1rem !important;padding-bottom:-1rem !important}.pt-n-x4{padding-top:-1rem !important}.pr-n-x4{padding-right:-1rem !important}.pb-n-x4{padding-bottom:-1rem !important}.pl-n-x4{padding-left:-1rem !important}.m-n-x4{margin:-1rem !important}.mx-n-x4{margin-left:-1rem !important;margin-right:-1rem !important}.my-n-x4{margin-top:-1rem !important;margin-bottom:-1rem !important}.mt-n-x4{margin-top:-1rem !important}.mr-n-x4{margin-right:-1rem !important}.mb-n-x4{margin-bottom:-1rem !important}.ml-n-x4{margin-left:-1rem !important}.p-n-x5{padding:-1.25rem !important}.px-n-x5{padding-left:-1.25rem !important;padding-right:-1.25rem !important}.py-n-x5{padding-top:-1.25rem !important;padding-bottom:-1.25rem !important}.pt-n-x5{padding-top:-1.25rem !important}.pr-n-x5{padding-right:-1.25rem !important}.pb-n-x5{padding-bottom:-1.25rem !important}.pl-n-x5{padding-left:-1.25rem !important}.m-n-x5{margin:-1.25rem !important}.mx-n-x5{margin-left:-1.25rem !important;margin-right:-1.25rem !important}.my-n-x5{margin-top:-1.25rem !important;margin-bottom:-1.25rem !important}.mt-n-x5{margin-top:-1.25rem !important}.mr-n-x5{margin-right:-1.25rem !important}.mb-n-x5{margin-bottom:-1.25rem !important}.ml-n-x5{margin-left:-1.25rem !important}.p-n-x6{padding:-1.5rem !important}.px-n-x6{padding-left:-1.5rem !important;padding-right:-1.5rem !important}.py-n-x6{padding-top:-1.5rem !important;padding-bottom:-1.5rem !important}.pt-n-x6{padding-top:-1.5rem !important}.pr-n-x6{padding-right:-1.5rem !important}.pb-n-x6{padding-bottom:-1.5rem !important}.pl-n-x6{padding-left:-1.5rem !important}.m-n-x6{margin:-1.5rem !important}.mx-n-x6{margin-left:-1.5rem !important;margin-right:-1.5rem !important}.my-n-x6{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.mt-n-x6{margin-top:-1.5rem !important}.mr-n-x6{margin-right:-1.5rem !important}.mb-n-x6{margin-bottom:-1.5rem !important}.ml-n-x6{margin-left:-1.5rem !important}.p-n-x7{padding:-1.75rem !important}.px-n-x7{padding-left:-1.75rem !important;padding-right:-1.75rem !important}.py-n-x7{padding-top:-1.75rem !important;padding-bottom:-1.75rem !important}.pt-n-x7{padding-top:-1.75rem !important}.pr-n-x7{padding-right:-1.75rem !important}.pb-n-x7{padding-bottom:-1.75rem !important}.pl-n-x7{padding-left:-1.75rem !important}.m-n-x7{margin:-1.75rem !important}.mx-n-x7{margin-left:-1.75rem !important;margin-right:-1.75rem !important}.my-n-x7{margin-top:-1.75rem !important;margin-bottom:-1.75rem !important}.mt-n-x7{margin-top:-1.75rem !important}.mr-n-x7{margin-right:-1.75rem !important}.mb-n-x7{margin-bottom:-1.75rem !important}.ml-n-x7{margin-left:-1.75rem !important}.p-n-x8{padding:-2rem !important}.px-n-x8{padding-left:-2rem !important;padding-right:-2rem !important}.py-n-x8{padding-top:-2rem !important;padding-bottom:-2rem !important}.pt-n-x8{padding-top:-2rem !important}.pr-n-x8{padding-right:-2rem !important}.pb-n-x8{padding-bottom:-2rem !important}.pl-n-x8{padding-left:-2rem !important}.m-n-x8{margin:-2rem !important}.mx-n-x8{margin-left:-2rem !important;margin-right:-2rem !important}.my-n-x8{margin-top:-2rem !important;margin-bottom:-2rem !important}.mt-n-x8{margin-top:-2rem !important}.mr-n-x8{margin-right:-2rem !important}.mb-n-x8{margin-bottom:-2rem !important}.ml-n-x8{margin-left:-2rem !important}.p-n-x9{padding:-2.25rem !important}.px-n-x9{padding-left:-2.25rem !important;padding-right:-2.25rem !important}.py-n-x9{padding-top:-2.25rem !important;padding-bottom:-2.25rem !important}.pt-n-x9{padding-top:-2.25rem !important}.pr-n-x9{padding-right:-2.25rem !important}.pb-n-x9{padding-bottom:-2.25rem !important}.pl-n-x9{padding-left:-2.25rem !important}.m-n-x9{margin:-2.25rem !important}.mx-n-x9{margin-left:-2.25rem !important;margin-right:-2.25rem !important}.my-n-x9{margin-top:-2.25rem !important;margin-bottom:-2.25rem !important}.mt-n-x9{margin-top:-2.25rem !important}.mr-n-x9{margin-right:-2.25rem !important}.mb-n-x9{margin-bottom:-2.25rem !important}.ml-n-x9{margin-left:-2.25rem !important}.p-n-x10{padding:-2.5rem !important}.px-n-x10{padding-left:-2.5rem !important;padding-right:-2.5rem !important}.py-n-x10{padding-top:-2.5rem !important;padding-bottom:-2.5rem !important}.pt-n-x10{padding-top:-2.5rem !important}.pr-n-x10{padding-right:-2.5rem !important}.pb-n-x10{padding-bottom:-2.5rem !important}.pl-n-x10{padding-left:-2.5rem !important}.m-n-x10{margin:-2.5rem !important}.mx-n-x10{margin-left:-2.5rem !important;margin-right:-2.5rem !important}.my-n-x10{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}.mt-n-x10{margin-top:-2.5rem !important}.mr-n-x10{margin-right:-2.5rem !important}.mb-n-x10{margin-bottom:-2.5rem !important}.ml-n-x10{margin-left:-2.5rem !important}.p-n-x11{padding:-2.75rem !important}.px-n-x11{padding-left:-2.75rem !important;padding-right:-2.75rem !important}.py-n-x11{padding-top:-2.75rem !important;padding-bottom:-2.75rem !important}.pt-n-x11{padding-top:-2.75rem !important}.pr-n-x11{padding-right:-2.75rem !important}.pb-n-x11{padding-bottom:-2.75rem !important}.pl-n-x11{padding-left:-2.75rem !important}.m-n-x11{margin:-2.75rem !important}.mx-n-x11{margin-left:-2.75rem !important;margin-right:-2.75rem !important}.my-n-x11{margin-top:-2.75rem !important;margin-bottom:-2.75rem !important}.mt-n-x11{margin-top:-2.75rem !important}.mr-n-x11{margin-right:-2.75rem !important}.mb-n-x11{margin-bottom:-2.75rem !important}.ml-n-x11{margin-left:-2.75rem !important}.p-n-x12{padding:-3rem !important}.px-n-x12{padding-left:-3rem !important;padding-right:-3rem !important}.py-n-x12{padding-top:-3rem !important;padding-bottom:-3rem !important}.pt-n-x12{padding-top:-3rem !important}.pr-n-x12{padding-right:-3rem !important}.pb-n-x12{padding-bottom:-3rem !important}.pl-n-x12{padding-left:-3rem !important}.m-n-x12{margin:-3rem !important}.mx-n-x12{margin-left:-3rem !important;margin-right:-3rem !important}.my-n-x12{margin-top:-3rem !important;margin-bottom:-3rem !important}.mt-n-x12{margin-top:-3rem !important}.mr-n-x12{margin-right:-3rem !important}.mb-n-x12{margin-bottom:-3rem !important}.ml-n-x12{margin-left:-3rem !important}.font-weight-normal{font-weight:400 !important}.font-weight-medium{font-weight:500 !important}.font-weight-bold{font-weight:700 !important}.white-space-pre-wrap{white-space:pre-wrap}.text-primary{color:#3c94f2}.text-danger{color:#d53e39}.text-warning{color:#ffc107}.text-success{color:#1baf83}.text-lime{color:#e0ff66}.text-purple{color:#634d9d}.text-white{color:#fff}.text-gray-50{color:#fafafa}.text-gray-100{color:#f3f6f9}.text-gray-200{color:#eaeef5}.text-gray-300{color:#dae0eb}.text-gray-400{color:#c5cede}.text-gray-500{color:#a8b2c4}.text-gray-600{color:#8a94a6}.text-gray-700{color:#697384}.text-gray-750{color:#5b6270}.text-gray-800{color:#474d58}.text-gray-850{color:#363c46}.text-gray-900{color:#242e33}.text-primary-i{color:#3c94f2 !important}.text-danger-i{color:#d53e39 !important}.text-warning-i{color:#ffc107 !important}.text-success-i{color:#1baf83 !important}.text-lime-i{color:#e0ff66 !important}.text-purple-i{color:#634d9d !important}.text-white-i{color:#fff !important}.text-gray-50-i{color:#fafafa !important}.text-gray-100-i{color:#f3f6f9 !important}.text-gray-200-i{color:#eaeef5 !important}.text-gray-300-i{color:#dae0eb !important}.text-gray-400-i{color:#c5cede !important}.text-gray-500-i{color:#a8b2c4 !important}.text-gray-600-i{color:#8a94a6 !important}.text-gray-700-i{color:#697384 !important}.text-gray-750-i{color:#5b6270 !important}.text-gray-800-i{color:#474d58 !important}.text-gray-850-i{color:#363c46 !important}.text-gray-900-i{color:#242e33 !important}.text-gradient{background:linear-gradient(104.51deg, #E83E8C 15.6%, #F56A00 90.94%);-webkit-background-clip:text;-webkit-text-fill-color:rgba(0,0,0,0);background-clip:text;text-fill-color:rgba(0,0,0,0)}.white-space-pre-wrap{white-space:pre-wrap}.white-space-break-spaces{white-space:break-spaces}:root{--toastify-color-dark: #242E33;--toastify-color-info: #3C94F2;--toastify-color-success: #1BAF83;--toastify-color-warning: #FFC107;--toastify-color-error: #D53E39}.Toastify__toast--default,.Toastify__toast--warning{color:rgba(29,35,46,.88)}.Toastify__toast-container--bottom-right{bottom:.5rem;right:1.5rem}.ac-toast{display:flex;border-radius:.625rem;box-shadow:0px 6px 18px rgba(14,39,105,.16),0px 32px 32px rgba(14,39,105,.1)}.ac-toast-progress{opacity:.5 !important}.ac-toast-close-button{align-self:flex-start;margin-top:-0.5rem;margin-right:-0.5rem}.text-right{text-align:right}.text-left{text-align:left}.text-center{text-align:center}.text-start{text-align:start}.text-end{text-align:end}.ac-btn{border:none;border-radius:.625rem;white-space:nowrap;font-weight:400;font-size:16px;line-height:24px;text-decoration:none;display:inline-block}.ac-btn.style-primary{padding:.5rem 1.5rem}.ac-btn.style-ghost{padding:.5rem 1.5rem}.ac-btn.style-outline{padding:.437rem 1.437rem}.ac-btn.style-link{padding:0}.ac-btn:focus,.ac-btn.active,.ac-btn:active,.ac-btn:hover{outline:none;text-decoration:none}.ac-btn svg{width:1rem !important;height:1rem !important}.ac-btn.icon-left svg{margin-right:.5rem}.ac-btn.icon-left .spinner-wrapper{margin-left:-0.125rem}.ac-btn.icon-right svg{order:1;margin-left:.5rem}.ac-btn.icon-right .spinner-wrapper{order:1;margin-right:-0.125rem}.ac-btn.style-link.icon-left svg{margin-right:.25rem}.ac-btn.style-link.icon-right svg{order:1;margin-left:.25rem}.ac-btn.sm{font-size:14px;line-height:16px}.ac-btn.sm.style-primary{padding:.5rem 1.25rem}.ac-btn.sm.style-ghost{padding:.5rem 1.25rem}.ac-btn.sm.style-outline{padding:.437rem 1.187rem}.ac-btn.sm.style-link{padding:0}.ac-btn.sm.icon-left svg{margin-right:.5rem}.ac-btn.sm.icon-right svg{order:1;margin-left:.5rem}.ac-btn.sm.style-link.icon-left svg{margin-right:.25rem}.ac-btn.sm.style-link.icon-right svg{order:1;margin-left:.25rem}.ac-btn.lg{font-size:16px;line-height:24px}.ac-btn.lg.style-primary{padding:.75rem 2rem}.ac-btn.lg.style-ghost{padding:.75rem 2rem}.ac-btn.lg.style-outline{padding:.687rem 1.937rem}.ac-btn.lg.style-link{padding:0}.ac-btn.lg.icon-left svg{margin-right:.5rem}.ac-btn.lg.icon-right svg{order:1;margin-left:.5rem}.ac-btn.lg.style-link.icon-left svg{margin-right:.25rem}.ac-btn.lg.style-link.icon-right svg{order:1;margin-left:.25rem}.ac-btn .button-container{display:flex;justify-content:center;align-items:center}.ac-btn.style-primary.primary{background-color:#3c94f2;color:#fff}.ac-btn.style-primary.primary .spinner-wrapper svg circle{stroke:#fff !important}.ac-btn.style-primary.primary path{fill:#fff !important}.ac-btn.style-primary.primary:focus,.ac-btn.style-primary.primary:active,.ac-btn.style-primary.primary.active,.ac-btn.style-primary.primary:hover{color:hsl(0,0%,88%);background-color:rgb(52.8,130.24,212.96)}.ac-btn.style-primary.primary:focus path,.ac-btn.style-primary.primary:active path,.ac-btn.style-primary.primary.active path,.ac-btn.style-primary.primary:hover path{fill:hsl(0,0%,88%) !important}.ac-btn.style-primary.primary:disabled,.ac-btn.style-primary.primary.disabled{opacity:24%;background-color:#3c94f2;color:#fff;cursor:default}.ac-btn.style-primary.primary:disabled path,.ac-btn.style-primary.primary.disabled path{fill:#fff !important}.ac-btn.style-primary.danger{background-color:#d53e39;color:#fff}.ac-btn.style-primary.danger .spinner-wrapper svg circle{stroke:#fff !important}.ac-btn.style-primary.danger path{fill:#fff !important}.ac-btn.style-primary.danger:focus,.ac-btn.style-primary.danger:active,.ac-btn.style-primary.danger.active,.ac-btn.style-primary.danger:hover{color:hsl(0,0%,88%);background-color:rgb(187.44,54.56,50.16)}.ac-btn.style-primary.danger:focus path,.ac-btn.style-primary.danger:active path,.ac-btn.style-primary.danger.active path,.ac-btn.style-primary.danger:hover path{fill:hsl(0,0%,88%) !important}.ac-btn.style-primary.danger:disabled,.ac-btn.style-primary.danger.disabled{opacity:24%;background-color:#d53e39;color:#fff;cursor:default}.ac-btn.style-primary.danger:disabled path,.ac-btn.style-primary.danger.disabled path{fill:#fff !important}.ac-btn.style-primary.warning{background-color:#ffc107;color:rgba(32,76,149,.88)}.ac-btn.style-primary.warning .spinner-wrapper svg circle{stroke:rgba(32,76,149,.88) !important}.ac-btn.style-primary.warning path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-primary.warning:focus,.ac-btn.style-primary.warning:active,.ac-btn.style-primary.warning.active,.ac-btn.style-primary.warning:hover{color:rgba(27.2676056338,64.7605633803,126.9647887324,.8944);background-color:rgb(224.4,169.84,6.16)}.ac-btn.style-primary.warning:focus path,.ac-btn.style-primary.warning:active path,.ac-btn.style-primary.warning.active path,.ac-btn.style-primary.warning:hover path{fill:rgba(27.2676056338,64.7605633803,126.9647887324,.8944) !important}.ac-btn.style-primary.warning:disabled,.ac-btn.style-primary.warning.disabled{opacity:24%;background-color:#ffc107;color:rgba(32,76,149,.88);cursor:default}.ac-btn.style-primary.warning:disabled path,.ac-btn.style-primary.warning.disabled path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-primary.success{background-color:#1baf83;color:#fff}.ac-btn.style-primary.success .spinner-wrapper svg circle{stroke:#fff !important}.ac-btn.style-primary.success path{fill:#fff !important}.ac-btn.style-primary.success:focus,.ac-btn.style-primary.success:active,.ac-btn.style-primary.success.active,.ac-btn.style-primary.success:hover{color:hsl(0,0%,88%);background-color:rgb(23.76,154,115.28)}.ac-btn.style-primary.success:focus path,.ac-btn.style-primary.success:active path,.ac-btn.style-primary.success.active path,.ac-btn.style-primary.success:hover path{fill:hsl(0,0%,88%) !important}.ac-btn.style-primary.success:disabled,.ac-btn.style-primary.success.disabled{opacity:24%;background-color:#1baf83;color:#fff;cursor:default}.ac-btn.style-primary.success:disabled path,.ac-btn.style-primary.success.disabled path{fill:#fff !important}.ac-btn.style-primary.lime{background-color:#e0ff66;color:rgba(32,76,149,.88)}.ac-btn.style-primary.lime .spinner-wrapper svg circle{stroke:rgba(32,76,149,.88) !important}.ac-btn.style-primary.lime path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-primary.lime:focus,.ac-btn.style-primary.lime:active,.ac-btn.style-primary.lime.active,.ac-btn.style-primary.lime:hover{color:rgba(27.2676056338,64.7605633803,126.9647887324,.8944);background-color:rgb(197.12,224.4,89.76)}.ac-btn.style-primary.lime:focus path,.ac-btn.style-primary.lime:active path,.ac-btn.style-primary.lime.active path,.ac-btn.style-primary.lime:hover path{fill:rgba(27.2676056338,64.7605633803,126.9647887324,.8944) !important}.ac-btn.style-primary.lime:disabled,.ac-btn.style-primary.lime.disabled{opacity:24%;background-color:#e0ff66;color:rgba(32,76,149,.88);cursor:default}.ac-btn.style-primary.lime:disabled path,.ac-btn.style-primary.lime.disabled path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-primary.purple{background-color:#634d9d;color:#fff}.ac-btn.style-primary.purple .spinner-wrapper svg circle{stroke:#fff !important}.ac-btn.style-primary.purple path{fill:#fff !important}.ac-btn.style-primary.purple:focus,.ac-btn.style-primary.purple:active,.ac-btn.style-primary.purple.active,.ac-btn.style-primary.purple:hover{color:hsl(0,0%,88%);background-color:rgb(87.12,67.76,138.16)}.ac-btn.style-primary.purple:focus path,.ac-btn.style-primary.purple:active path,.ac-btn.style-primary.purple.active path,.ac-btn.style-primary.purple:hover path{fill:hsl(0,0%,88%) !important}.ac-btn.style-primary.purple:disabled,.ac-btn.style-primary.purple.disabled{opacity:24%;background-color:#634d9d;color:#fff;cursor:default}.ac-btn.style-primary.purple:disabled path,.ac-btn.style-primary.purple.disabled path{fill:#fff !important}.ac-btn.style-primary.white{background-color:#fff;color:rgba(32,76,149,.88)}.ac-btn.style-primary.white .spinner-wrapper svg circle{stroke:rgba(32,76,149,.88) !important}.ac-btn.style-primary.white path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-primary.white:focus,.ac-btn.style-primary.white:active,.ac-btn.style-primary.white.active,.ac-btn.style-primary.white:hover{color:rgba(27.2676056338,64.7605633803,126.9647887324,.8944);background-color:hsl(0,0%,88%)}.ac-btn.style-primary.white:focus path,.ac-btn.style-primary.white:active path,.ac-btn.style-primary.white.active path,.ac-btn.style-primary.white:hover path{fill:rgba(27.2676056338,64.7605633803,126.9647887324,.8944) !important}.ac-btn.style-primary.white:disabled,.ac-btn.style-primary.white.disabled{opacity:24%;background-color:#fff;color:rgba(32,76,149,.88);cursor:default}.ac-btn.style-primary.white:disabled path,.ac-btn.style-primary.white.disabled path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-primary.yellow100{background-color:#ffecb3;color:rgba(32,76,149,.88)}.ac-btn.style-primary.yellow100 path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-primary.yellow100 .spinner-wrapper svg circle{stroke:rgba(32,76,149,.88) !important}.ac-btn.style-primary.yellow100:focus,.ac-btn.style-primary.yellow100:active,.ac-btn.style-primary.yellow100.active,.ac-btn.style-primary.yellow100:hover{color:rgba(27.2676056338,64.7605633803,126.9647887324,.8944);background-color:rgb(224.4,207.68,157.52)}.ac-btn.style-primary.yellow100:focus path,.ac-btn.style-primary.yellow100:active path,.ac-btn.style-primary.yellow100.active path,.ac-btn.style-primary.yellow100:hover path{fill:rgba(27.2676056338,64.7605633803,126.9647887324,.8944) !important}.ac-btn.style-primary.yellow100:disabled,.ac-btn.style-primary.yellow100.disabled{opacity:24%;background-color:#ffecb3;color:rgba(32,76,149,.88);cursor:default}.ac-btn.style-primary.yellow100:disabled path,.ac-btn.style-primary.yellow100.disabled path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-primary.gradient{color:rgba(29,35,46,.88) !important;background-image:linear-gradient(90deg, #FFF4CF 0%, #FDC7C5 100%);background-size:100%;transition:all .2s ease}.ac-btn.style-primary.gradient .spinner-wrapper svg circle{stroke:rgba(29,35,46,.88) !important}.ac-btn.style-primary.gradient:hover{background-size:1000%}.ac-btn.style-ghost{color:rgba(32,76,149,.88);background-color:rgba(32,76,149,.08)}.ac-btn.style-ghost path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-ghost .spinner-wrapper svg circle{stroke:rgba(32,76,149,.88) !important}.ac-btn.style-ghost:focus,.ac-btn.style-ghost.active,.ac-btn.style-ghost:active,.ac-btn.style-ghost:hover{background-color:rgba(32,76,149,.1168)}.ac-btn.style-ghost:disabled,.ac-btn.style-ghost.disabled{opacity:24%;cursor:default;background-color:rgba(32,76,149,.08)}.ac-btn.style-outline{color:rgba(32,76,149,.88);background-color:rgba(0,0,0,0);border:.063rem solid rgba(168,186,217,.4)}.ac-btn.style-outline path{fill:rgba(32,76,149,.88) !important}.ac-btn.style-outline .spinner-wrapper svg circle{stroke:rgba(32,76,149,.88) !important}.ac-btn.style-outline.white{color:#fff}.ac-btn.style-outline.white path{fill:#fff !important}.ac-btn.style-outline.white .spinner-wrapper svg circle{stroke:#fff !important}.ac-btn.style-outline:focus,.ac-btn.style-outline.active,.ac-btn.style-outline:active,.ac-btn.style-outline:hover{border-color:rgba(32,76,149,.88)}.ac-btn.style-outline:focus.white,.ac-btn.style-outline.active.white,.ac-btn.style-outline:active.white,.ac-btn.style-outline:hover.white{border-color:#fff}.ac-btn.style-outline:disabled,.ac-btn.style-outline.disabled{opacity:24%;cursor:default;border-color:rgba(168,186,217,.4) !important}.ac-btn.style-link.primary{background-color:rgba(0,0,0,0);color:#3c94f2}.ac-btn.style-link.primary path{fill:#3c94f2 !important}.ac-btn.style-link.primary .spinner-wrapper svg circle{stroke:#3c94f2 !important}.ac-btn.style-link.primary:focus,.ac-btn.style-link.primary:active,.ac-btn.style-link.primary.active,.ac-btn.style-link.primary:hover{text-decoration:underline}.ac-btn.style-link.primary:disabled,.ac-btn.style-link.primary.disabled{opacity:24%;text-decoration:none;cursor:default}.ac-btn.style-link.danger{background-color:rgba(0,0,0,0);color:#d53e39}.ac-btn.style-link.danger path{fill:#d53e39 !important}.ac-btn.style-link.danger .spinner-wrapper svg circle{stroke:#d53e39 !important}.ac-btn.style-link.danger:focus,.ac-btn.style-link.danger:active,.ac-btn.style-link.danger.active,.ac-btn.style-link.danger:hover{text-decoration:underline}.ac-btn.style-link.danger:disabled,.ac-btn.style-link.danger.disabled{opacity:24%;text-decoration:none;cursor:default}.ac-btn.style-link.warning{background-color:rgba(0,0,0,0);color:#ffc107}.ac-btn.style-link.warning path{fill:#ffc107 !important}.ac-btn.style-link.warning .spinner-wrapper svg circle{stroke:#ffc107 !important}.ac-btn.style-link.warning:focus,.ac-btn.style-link.warning:active,.ac-btn.style-link.warning.active,.ac-btn.style-link.warning:hover{text-decoration:underline}.ac-btn.style-link.warning:disabled,.ac-btn.style-link.warning.disabled{opacity:24%;text-decoration:none;cursor:default}.ac-btn.style-link.success{background-color:rgba(0,0,0,0);color:#1baf83}.ac-btn.style-link.success path{fill:#1baf83 !important}.ac-btn.style-link.success .spinner-wrapper svg circle{stroke:#1baf83 !important}.ac-btn.style-link.success:focus,.ac-btn.style-link.success:active,.ac-btn.style-link.success.active,.ac-btn.style-link.success:hover{text-decoration:underline}.ac-btn.style-link.success:disabled,.ac-btn.style-link.success.disabled{opacity:24%;text-decoration:none;cursor:default}.ac-btn.style-link.lime{background-color:rgba(0,0,0,0);color:#e0ff66}.ac-btn.style-link.lime path{fill:#e0ff66 !important}.ac-btn.style-link.lime .spinner-wrapper svg circle{stroke:#e0ff66 !important}.ac-btn.style-link.lime:focus,.ac-btn.style-link.lime:active,.ac-btn.style-link.lime.active,.ac-btn.style-link.lime:hover{text-decoration:underline}.ac-btn.style-link.lime:disabled,.ac-btn.style-link.lime.disabled{opacity:24%;text-decoration:none;cursor:default}.ac-btn.style-link.purple{background-color:rgba(0,0,0,0);color:#634d9d}.ac-btn.style-link.purple path{fill:#634d9d !important}.ac-btn.style-link.purple .spinner-wrapper svg circle{stroke:#634d9d !important}.ac-btn.style-link.purple:focus,.ac-btn.style-link.purple:active,.ac-btn.style-link.purple.active,.ac-btn.style-link.purple:hover{text-decoration:underline}.ac-btn.style-link.purple:disabled,.ac-btn.style-link.purple.disabled{opacity:24%;text-decoration:none;cursor:default}.ac-btn.style-link.white{background-color:rgba(0,0,0,0);color:#fff}.ac-btn.style-link.white path{fill:#fff !important}.ac-btn.style-link.white .spinner-wrapper svg circle{stroke:#fff !important}.ac-btn.style-link.white:focus,.ac-btn.style-link.white:active,.ac-btn.style-link.white.active,.ac-btn.style-link.white:hover{text-decoration:underline}.ac-btn.style-link.white:disabled,.ac-btn.style-link.white.disabled{opacity:24%;text-decoration:none;cursor:default}.button-icon-wrapper{display:flex;flex-direction:column;justify-content:center;align-items:center}.button-icon{display:flex;padding:.5rem;border:none;border-radius:.625rem;color:rgba(29,35,46,.88);line-height:normal}.button-icon.square{border-radius:0}.button-icon{background-color:rgba(0,0,0,0);outline:none !important}.button-icon.sm{padding:.25rem}.button-icon.md{padding:.5rem}.button-icon:disabled,.button-icon.disabled{background-color:rgba(0,0,0,0);opacity:.24}.button-icon:disabled:active,.button-icon:disabled:focus,.button-icon:disabled:hover,.button-icon.disabled:active,.button-icon.disabled:focus,.button-icon.disabled:hover{background-color:rgba(0,0,0,0) !important;outline:none}.button-icon.active-primitiveNavyBlue{outline:none;background-color:rgba(32,76,149,.08);border-radius:.625rem}.button-icon.active-primitiveNavyBlue.square{border-radius:0}.button-icon.hover-primitiveNavyBlue:focus,.button-icon.hover-primitiveNavyBlue:active,.button-icon.hover-primitiveNavyBlue:hover{outline:none;background-color:rgba(32,76,149,.08);border-radius:.625rem}.button-icon.hover-primitiveNavyBlue:focus.square,.button-icon.hover-primitiveNavyBlue:active.square,.button-icon.hover-primitiveNavyBlue:hover.square{border-radius:0}.button-icon.active-colorIcon{outline:none;background-color:rgba(32,76,149,.08);border-radius:.625rem}.button-icon.active-colorIcon.square{border-radius:0}.button-icon.hover-colorIcon:focus,.button-icon.hover-colorIcon:active,.button-icon.hover-colorIcon:hover{outline:none;background-color:rgba(32,76,149,.08);border-radius:.625rem}.button-icon.hover-colorIcon:focus.square,.button-icon.hover-colorIcon:active.square,.button-icon.hover-colorIcon:hover.square{border-radius:0}.button-icon.hover-primary:focus,.button-icon.hover-primary:active,.button-icon.hover-primary:hover{outline:none;background-color:rgba(60,148,242,.08);border-radius:.625rem}.button-icon.hover-primary:focus.square,.button-icon.hover-primary:active.square,.button-icon.hover-primary:hover.square{border-radius:0}.button-icon.active-primary{background-color:rgba(60,148,242,.08);border-radius:.625rem}.button-icon.active-primary.square{border-radius:0}.button-icon.hover-danger:focus,.button-icon.hover-danger:active,.button-icon.hover-danger:hover{outline:none;background-color:rgba(213,62,57,.08);border-radius:.625rem}.button-icon.hover-danger:focus.square,.button-icon.hover-danger:active.square,.button-icon.hover-danger:hover.square{border-radius:0}.button-icon.active-danger{background-color:rgba(213,62,57,.08);border-radius:.625rem}.button-icon.active-danger.square{border-radius:0}.button-icon.hover-warning:focus,.button-icon.hover-warning:active,.button-icon.hover-warning:hover{outline:none;background-color:rgba(255,193,7,.08);border-radius:.625rem}.button-icon.hover-warning:focus.square,.button-icon.hover-warning:active.square,.button-icon.hover-warning:hover.square{border-radius:0}.button-icon.active-warning{background-color:rgba(255,193,7,.08);border-radius:.625rem}.button-icon.active-warning.square{border-radius:0}.button-icon.hover-success:focus,.button-icon.hover-success:active,.button-icon.hover-success:hover{outline:none;background-color:rgba(27,175,131,.08);border-radius:.625rem}.button-icon.hover-success:focus.square,.button-icon.hover-success:active.square,.button-icon.hover-success:hover.square{border-radius:0}.button-icon.active-success{background-color:rgba(27,175,131,.08);border-radius:.625rem}.button-icon.active-success.square{border-radius:0}.button-icon.hover-lime:focus,.button-icon.hover-lime:active,.button-icon.hover-lime:hover{outline:none;background-color:rgba(224,255,102,.08);border-radius:.625rem}.button-icon.hover-lime:focus.square,.button-icon.hover-lime:active.square,.button-icon.hover-lime:hover.square{border-radius:0}.button-icon.active-lime{background-color:rgba(224,255,102,.08);border-radius:.625rem}.button-icon.active-lime.square{border-radius:0}.button-icon.hover-purple:focus,.button-icon.hover-purple:active,.button-icon.hover-purple:hover{outline:none;background-color:rgba(99,77,157,.08);border-radius:.625rem}.button-icon.hover-purple:focus.square,.button-icon.hover-purple:active.square,.button-icon.hover-purple:hover.square{border-radius:0}.button-icon.active-purple{background-color:rgba(99,77,157,.08);border-radius:.625rem}.button-icon.active-purple.square{border-radius:0}.button-icon.hover-white:focus,.button-icon.hover-white:active,.button-icon.hover-white:hover{outline:none;background-color:hsla(0,0%,100%,.08);border-radius:.625rem}.button-icon.hover-white:focus.square,.button-icon.hover-white:active.square,.button-icon.hover-white:hover.square{border-radius:0}.button-icon.active-white{background-color:hsla(0,0%,100%,.08);border-radius:.625rem}.button-icon.active-white.square{border-radius:0}.button-icon.hover-white:focus,.button-icon.hover-white:active,.button-icon.hover-white:hover{outline:none;background-color:hsla(0,0%,100%,.12);border-radius:.625rem}.button-icon.hover-white:focus.square,.button-icon.hover-white:active.square,.button-icon.hover-white:hover.square{border-radius:0}.button-icon.active-white{background-color:hsla(0,0%,100%,.12);border-radius:.625rem}.button-icon.active-white.square{border-radius:0}.button-avatar{padding:.25rem;display:flex;flex-direction:row;align-items:center;background-color:rgba(0,0,0,0);outline:none !important;border:none}.button-avatar .button-avatar-img{display:flex;margin-right:.5rem}.button-avatar .button-avatar-content{font-size:16px;line-height:24px;color:rgba(29,35,46,.88);margin-right:.5rem}.button-avatar .button-avatar-icon{display:flex}.button-avatar:focus,.button-avatar.active,.button-avatar:hover{background-color:rgba(32,76,149,.08);border-radius:.625rem}.button-avatar.is-task-header .button-avatar-content{color:#fff}.button-avatar.is-task-header .button-avatar-icon{display:flex}.button-avatar.is-task-header:focus,.button-avatar.is-task-header.active,.button-avatar.is-task-header:hover{background:hsla(0,0%,100%,.12);border-radius:.625rem}.button-avatar.is-task-header:focus .button-avatar-content,.button-avatar.is-task-header.active .button-avatar-content,.button-avatar.is-task-header:hover .button-avatar-content{color:#fff !important}.button-avatar.is-task-header:focus .button-avatar-icon svg path,.button-avatar.is-task-header.active .button-avatar-icon svg path,.button-avatar.is-task-header:hover .button-avatar-icon svg path{fill:#fff !important}.button-direction{width:100%;padding:1rem;background-color:rgba(32,76,149,.08);border-radius:1rem;color:rgba(32,76,149,.88) !important;display:flex;flex-direction:row;justify-content:space-between;align-items:center;text-decoration:none !important}.button-direction.left{text-align:end}.button-direction.right{text-align:start}.button-direction .bd-p{font-weight:400;font-size:16px;line-height:24px}.button-direction:hover{background-color:rgba(32,76,149,.1168)}.button-direction:active{background-color:rgba(32,76,149,.1536)}.ac-row{display:flex;flex-wrap:wrap;margin-right:-12px;margin-left:-12px}.ac-no-gutters{margin-right:0;margin-left:0}.ac-no-gutters>.ac-col,.ac-no-gutters>[class*=col-]{padding-right:0;padding-left:0}.ac-col-xxl,.ac-col-xxl-auto,.ac-col-xxl-12,.ac-col-xxl-11,.ac-col-xxl-10,.ac-col-xxl-9,.ac-col-xxl-8,.ac-col-xxl-7,.ac-col-xxl-6,.ac-col-xxl-5,.ac-col-xxl-4,.ac-col-xxl-3,.ac-col-xxl-2,.ac-col-xxl-1,.ac-col-xl,.ac-col-xl-auto,.ac-col-xl-12,.ac-col-xl-11,.ac-col-xl-10,.ac-col-xl-9,.ac-col-xl-8,.ac-col-xl-7,.ac-col-xl-6,.ac-col-xl-5,.ac-col-xl-4,.ac-col-xl-3,.ac-col-xl-2,.ac-col-xl-1,.ac-col-lg,.ac-col-lg-auto,.ac-col-lg-12,.ac-col-lg-11,.ac-col-lg-10,.ac-col-lg-9,.ac-col-lg-8,.ac-col-lg-7,.ac-col-lg-6,.ac-col-lg-5,.ac-col-lg-4,.ac-col-lg-3,.ac-col-lg-2,.ac-col-lg-1,.ac-col-md,.ac-col-md-auto,.ac-col-md-12,.ac-col-md-11,.ac-col-md-10,.ac-col-md-9,.ac-col-md-8,.ac-col-md-7,.ac-col-md-6,.ac-col-md-5,.ac-col-md-4,.ac-col-md-3,.ac-col-md-2,.ac-col-md-1,.ac-col-sm,.ac-col-sm-auto,.ac-col-sm-12,.ac-col-sm-11,.ac-col-sm-10,.ac-col-sm-9,.ac-col-sm-8,.ac-col-sm-7,.ac-col-sm-6,.ac-col-sm-5,.ac-col-sm-4,.ac-col-sm-3,.ac-col-sm-2,.ac-col-sm-1,.ac-col,.ac-col-auto,.ac-col-12,.ac-col-11,.ac-col-10,.ac-col-9,.ac-col-8,.ac-col-7,.ac-col-6,.ac-col-5,.ac-col-4,.ac-col-3,.ac-col-2,.ac-col-1{position:relative;width:100%;padding-right:12px;padding-left:12px}@media(min-width: 0){.ac-col{flex-basis:0;flex-grow:1;max-width:100%}.ac-row-cols-1>*{flex:0 0 100%;max-width:100%}.ac-row-cols-2>*{flex:0 0 50%;max-width:50%}.ac-row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-row-cols-4>*{flex:0 0 25%;max-width:25%}.ac-row-cols-5>*{flex:0 0 20%;max-width:20%}.ac-row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-auto{flex:0 0 auto;width:auto;max-width:100%}.ac-col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.ac-col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-3{flex:0 0 25%;max-width:25%}.ac-col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.ac-col-6{flex:0 0 50%;max-width:50%}.ac-col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.ac-col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.ac-col-9{flex:0 0 75%;max-width:75%}.ac-col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.ac-col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.ac-col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}}@media(min-width: 667px){.ac-col-sm{flex-basis:0;flex-grow:1;max-width:100%}.ac-row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.ac-row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.ac-row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.ac-row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.ac-row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.ac-col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.ac-col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-sm-3{flex:0 0 25%;max-width:25%}.ac-col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.ac-col-sm-6{flex:0 0 50%;max-width:50%}.ac-col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.ac-col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.ac-col-sm-9{flex:0 0 75%;max-width:75%}.ac-col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.ac-col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.ac-col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media(min-width: 992px){.ac-col-md{flex-basis:0;flex-grow:1;max-width:100%}.ac-row-cols-md-1>*{flex:0 0 100%;max-width:100%}.ac-row-cols-md-2>*{flex:0 0 50%;max-width:50%}.ac-row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-row-cols-md-4>*{flex:0 0 25%;max-width:25%}.ac-row-cols-md-5>*{flex:0 0 20%;max-width:20%}.ac-row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.ac-col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.ac-col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-md-3{flex:0 0 25%;max-width:25%}.ac-col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.ac-col-md-6{flex:0 0 50%;max-width:50%}.ac-col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.ac-col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.ac-col-md-9{flex:0 0 75%;max-width:75%}.ac-col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.ac-col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.ac-col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media(min-width: 1200px){.ac-col-lg{flex-basis:0;flex-grow:1;max-width:100%}.ac-row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.ac-row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.ac-row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.ac-row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.ac-row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.ac-col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.ac-col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-lg-3{flex:0 0 25%;max-width:25%}.ac-col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.ac-col-lg-6{flex:0 0 50%;max-width:50%}.ac-col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.ac-col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.ac-col-lg-9{flex:0 0 75%;max-width:75%}.ac-col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.ac-col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.ac-col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media(min-width: 1440px){.ac-col-xl{flex-basis:0;flex-grow:1;max-width:100%}.ac-row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.ac-row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.ac-row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.ac-row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.ac-row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.ac-col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.ac-col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-xl-3{flex:0 0 25%;max-width:25%}.ac-col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.ac-col-xl-6{flex:0 0 50%;max-width:50%}.ac-col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.ac-col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.ac-col-xl-9{flex:0 0 75%;max-width:75%}.ac-col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.ac-col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.ac-col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}@media(min-width: 1780px){.ac-col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.ac-row-cols-xxl-1>*{flex:0 0 100%;max-width:100%}.ac-row-cols-xxl-2>*{flex:0 0 50%;max-width:50%}.ac-row-cols-xxl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-row-cols-xxl-4>*{flex:0 0 25%;max-width:25%}.ac-row-cols-xxl-5>*{flex:0 0 20%;max-width:20%}.ac-row-cols-xxl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.ac-col-xxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.ac-col-xxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.ac-col-xxl-3{flex:0 0 25%;max-width:25%}.ac-col-xxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.ac-col-xxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.ac-col-xxl-6{flex:0 0 50%;max-width:50%}.ac-col-xxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.ac-col-xxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.ac-col-xxl-9{flex:0 0 75%;max-width:75%}.ac-col-xxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.ac-col-xxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.ac-col-xxl-12{flex:0 0 100%;max-width:100%}.order-xxl-first{order:-1}.order-xxl-last{order:13}.order-xxl-0{order:0}.order-xxl-1{order:1}.order-xxl-2{order:2}.order-xxl-3{order:3}.order-xxl-4{order:4}.order-xxl-5{order:5}.order-xxl-6{order:6}.order-xxl-7{order:7}.order-xxl-8{order:8}.order-xxl-9{order:9}.order-xxl-10{order:10}.order-xxl-11{order:11}.order-xxl-12{order:12}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}}.circular-progress-bar{height:96px;width:96px;position:relative}.circular-progress-bar .inner{position:absolute;z-index:6;top:20px;left:20px;height:80px;width:80px;margin:-12px 0 0 -12px;background-color:#fff;border-radius:50%;box-shadow:0px 3px 5px rgba(14,39,105,.16),0px 6px 16px rgba(14,39,105,.1)}.inner{display:flex;flex-direction:column;align-items:center;justify-content:center}.circular-progress-bar .bar{position:absolute;height:96px;width:96px;background-color:#1baf83;-webkit-border-radius:50%;border-radius:50%;clip:rect(0px, 96px, 96px, 48px)}.bar{clip:rect(-1px, 97px, 97px, 48px) !important}.circle .bar .progress{position:absolute;height:96px;width:96px;-webkit-border-radius:50%;border-radius:50%;clip:rect(0px, 96px, 96px, 48px);background-color:#eaeef5}.progress{-webkit-border-radius:50%;border-radius:50%;top:-1px !important;left:-1px !important;height:98px !important;width:98px !important;clip:rect(0px, 98px, 98px, 49px) !important}.circle .right .progress{z-index:1;animation:left 1s linear both}.circle .left{z-index:3;transform:rotate(180deg)}.circle .left .progress{animation:right 1s linear both;animation-delay:1s}.ac-card{position:relative;display:flex;flex-direction:column;background-color:#fff;background-clip:border-box;box-shadow:0px 4px 16px rgba(12,43,104,.16),0px 24px 32px rgba(10,46,101,.1);border-radius:1.25rem}.ac-card-header{padding:1rem 1.5rem;margin-bottom:0;border-bottom:solid 1px #eaeef5;font-size:24px;line-height:24px}.ac-card-body{padding:1.5rem;font-size:16px;line-height:24px}.ac-card-footer{padding:12px 1.5rem;border-top:solid 1px #eaeef5;text-align:right}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.min-width-0{min-width:0 !important}.w-auto{width:auto !important}.h-100{height:100% !important}.min-h-100{min-height:100%}.z-10{z-index:10}.z-100{z-index:100}.z-1000{z-index:1000}.d-flex{display:flex}@media(min-width: 0){.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-fill{flex:1 1 auto !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}}@media(min-width: 667px){.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}}@media(min-width: 992px){.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}}@media(min-width: 1200px){.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}}@media(min-width: 1440px){.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}}@media(min-width: 1780px){.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}}@media(min-width: 0){.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}}@media(min-width: 667px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 992px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}}@media(min-width: 1200px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1440px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}}@media(min-width: 1780px){.d-xxl-none{display:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}}.bg-primary{background-color:#3c94f2}.bg-danger{background-color:#d53e39}.bg-warning{background-color:#ffc107}.bg-success{background-color:#1baf83}.bg-lime{background-color:#e0ff66}.bg-purple{background-color:#634d9d}.bg-white{background-color:#fff}.bg-gray-100{background-color:#f3f6f9}.bg-light{background-color:#f6fcff}.ac-popover{font-weight:normal;color:#474d58;margin:.25rem;border-radius:.625rem;background-color:#f3f6f9;z-index:1000;max-width:18rem}.ac-popover.sm{font-size:.875rem;line-height:1rem;letter-spacing:.1px;padding:.5rem .75rem}.ac-popover.xl{font-size:1rem;line-height:1.5rem;letter-spacing:.15px;padding:.5rem 1rem}.ac-dropdown .ac-dropdown-menu{padding:.5rem 0;border-radius:.625rem;display:flex;flex-direction:column;box-shadow:0px 6px 18px rgba(14,39,105,.16),0px 32px 32px rgba(14,39,105,.1);background-color:#fff;z-index:1000;overflow-y:auto}.ac-dropdown .ac-dropdown-item{font-size:16px;line-height:24px;color:rgba(29,35,46,.88);padding:.5rem 1rem;display:flex;justify-content:flex-start;align-items:center;min-width:13rem;border-width:0;background-color:#fff;cursor:pointer;text-decoration:none}.ac-dropdown .ac-dropdown-item.border-bottom{border-bottom:1px solid #eaeef5}.ac-dropdown .ac-dropdown-item>svg{margin-right:.5rem}.ac-dropdown .ac-dropdown-item:hover,.ac-dropdown .ac-dropdown-item:focus{background-color:#f3f6f9;outline:none}.ac-dropdown .ac-dropdown-item:hover.disabled,.ac-dropdown .ac-dropdown-item:focus.disabled{background-color:#fff;outline:none}.ac-dropdown .ac-dropdown-item:active{background-color:#eaeef5}.ac-dropdown .ac-dropdown-item.disabled{opacity:.3;cursor:default}.ac-banner{background:linear-gradient(90deg, #7557C9 0%, #84ACF2 100%, #84ACF2 100%);width:100%;padding:1rem 0}.ac-banner .ac-banner-container{display:flex;align-items:center;flex-direction:row;justify-content:space-between;width:100%}@media(max-width: 667px){.ac-banner .ac-banner-container{flex-direction:column;align-items:flex-start}}.ac-banner .ac-text-banner{margin-right:1.5rem;color:#fff;font-family:"Montserrat"}.ac-banner .ac-icon-banner{margin-right:1rem;flex-shrink:0}@media(max-width: 667px){.ac-banner .ac-button-banner{margin-top:12px;margin-left:64px}}.divider{margin:0;opacity:1;border:none;border-top:1px solid}.divider.vertical{border:none;border-left:1px solid}.breadcrumb{display:flex;align-items:center;list-style:none;background-color:#fff;margin:0;padding:0}.breadcrumb li{display:flex;align-items:center;margin-right:.5rem}.breadcrumb li:last-child{margin-right:0}.breadcrumb li>svg:first-child{margin-right:.5rem}.breadcrumb li a{font-size:13px;line-height:16px;color:#8a94a6;text-decoration:none;margin-right:.25rem}.breadcrumb li a:last-child{margin-right:0}.breadcrumb li a:hover,.breadcrumb li a:focus,.breadcrumb li a:active{color:#8a94a6;text-decoration:underline}.breadcrumb li a.active{color:#697384;text-decoration:none !important;font-weight:500}.ac-form-group{display:flex;flex-direction:column;margin-bottom:1.5rem;position:relative}.ac-form-group .ac-label{font-size:13px;line-height:16px;margin-left:1rem;margin-bottom:.5rem;color:rgba(15,38,77,.48)}.ac-form-group .ac-feedback{margin:0;margin-top:.25rem;padding:0;font-size:13px;line-height:16px;color:rgba(29,35,46,.88)}.ac-form-group .ac-feedback.valid{color:#1baf83}.ac-form-group .ac-feedback.invalid{color:#d53e39}.ac-checkbox-wrapper{display:flex;flex-direction:column;justify-content:start}.ac-checkbox-wrapper .help-text-margin{margin-left:1.75rem;margin-top:2px}.ac-checkbox-controls{position:relative;display:flex;align-items:start}.ac-checkbox-controls:focus{outline:none}.ac-checkbox{-webkit-appearance:none;margin:2px;width:1em;height:1em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;border:1px solid;border-radius:.25rem;cursor:pointer;flex-shrink:0}.ac-checkbox:checked{cursor:pointer;background-image:url("/ui/ac-checkbox-marked.svg");background-repeat:no-repeat}.ac-checkbox:focus{outline:none}.ac-checkbox.ac-radio{border-radius:50%}.ac-checkbox.ac-radio:checked{background-image:url("/ui/ac-radiobutton-marked.svg");background-repeat:no-repeat}.ac-checkbox-primary{border-color:#3c94f2}.ac-checkbox-primary:checked{border-color:#3c94f2;background-color:#3c94f2}.ac-checkbox-primary.ac-control-input:checked:hover{background-color:rgb(21.75,127.0115384615,239.45);border:1px solid rgb(21.75,127.0115384615,239.45)}.ac-checkbox-primary.ac-control-input:hover{border:1px solid rgb(21.75,127.0115384615,239.45)}.ac-checkbox-primary.ac-control-input:disabled{background-color:#fff;border:1px solid rgba(60,148,242,.3)}.ac-checkbox-primary.ac-control-input:checked:disabled{background-color:rgba(60,148,242,.3);border:1px solid rgba(60,148,242,0)}.ac-checkbox-primary.ac-control-input:disabled{cursor:default}.ac-checkbox-danger{border-color:#d53e39}.ac-checkbox-danger:checked{border-color:#d53e39;background-color:#d53e39}.ac-checkbox-danger.ac-control-input:checked:hover{background-color:rgb(189.09,44.885,40.11);border:1px solid rgb(189.09,44.885,40.11)}.ac-checkbox-danger.ac-control-input:hover{border:1px solid rgb(189.09,44.885,40.11)}.ac-checkbox-danger.ac-control-input:disabled{background-color:#fff;border:1px solid rgba(213,62,57,.3)}.ac-checkbox-danger.ac-control-input:checked:disabled{background-color:rgba(213,62,57,.3);border:1px solid rgba(213,62,57,0)}.ac-checkbox-danger.ac-control-input:disabled{cursor:default}.ac-checkbox-warning{border-color:#ffc107}.ac-checkbox-warning:checked{border-color:#ffc107;background-color:#ffc107}.ac-checkbox-warning.ac-control-input:checked:hover{background-color:rgb(221.2,165.9,0);border:1px solid rgb(221.2,165.9,0)}.ac-checkbox-warning.ac-control-input:hover{border:1px solid rgb(221.2,165.9,0)}.ac-checkbox-warning.ac-control-input:disabled{background-color:#fff;border:1px solid rgba(255,193,7,.3)}.ac-checkbox-warning.ac-control-input:checked:disabled{background-color:rgba(255,193,7,.3);border:1px solid rgba(255,193,7,0)}.ac-checkbox-warning.ac-control-input:disabled{cursor:default}.ac-checkbox-success{border-color:#1baf83}.ac-checkbox-success:checked{border-color:#1baf83;background-color:#1baf83}.ac-checkbox-success.ac-control-input:checked:hover{background-color:rgb(21.5465346535,139.6534653465,104.5405940594);border:1px solid rgb(21.5465346535,139.6534653465,104.5405940594)}.ac-checkbox-success.ac-control-input:hover{border:1px solid rgb(21.5465346535,139.6534653465,104.5405940594)}.ac-checkbox-success.ac-control-input:disabled{background-color:#fff;border:1px solid rgba(27,175,131,.3)}.ac-checkbox-success.ac-control-input:checked:disabled{background-color:rgba(27,175,131,.3);border:1px solid rgba(27,175,131,0)}.ac-checkbox-success.ac-control-input:disabled{cursor:default}.ac-checkbox-lime{border-color:#e0ff66}.ac-checkbox-lime:checked{border-color:#e0ff66;background-color:#e0ff66}.ac-checkbox-lime.ac-control-input:checked:hover{background-color:hsl(72.1568627451,100%,62%);border:1px solid hsl(72.1568627451,100%,62%)}.ac-checkbox-lime.ac-control-input:hover{border:1px solid hsl(72.1568627451,100%,62%)}.ac-checkbox-lime.ac-control-input:disabled{background-color:#fff;border:1px solid rgba(224,255,102,.3)}.ac-checkbox-lime.ac-control-input:checked:disabled{background-color:rgba(224,255,102,.3);border:1px solid rgba(224,255,102,0)}.ac-checkbox-lime.ac-control-input:disabled{cursor:default}.ac-checkbox-purple{border-color:#634d9d}.ac-checkbox-purple:checked{border-color:#634d9d;background-color:#634d9d}.ac-checkbox-purple.ac-control-input:checked:hover{background-color:hsl(256.5,34.188034188%,37.8823529412%);border:1px solid hsl(256.5,34.188034188%,37.8823529412%)}.ac-checkbox-purple.ac-control-input:hover{border:1px solid hsl(256.5,34.188034188%,37.8823529412%)}.ac-checkbox-purple.ac-control-input:disabled{background-color:#fff;border:1px solid rgba(99,77,157,.3)}.ac-checkbox-purple.ac-control-input:checked:disabled{background-color:rgba(99,77,157,.3);border:1px solid rgba(99,77,157,0)}.ac-checkbox-purple.ac-control-input:disabled{cursor:default}.ac-checkbox-white{border-color:#fff}.ac-checkbox-white:checked{border-color:#fff;background-color:#fff}.ac-checkbox-white.ac-control-input:checked:hover{background-color:hsl(0,0%,92%);border:1px solid hsl(0,0%,92%)}.ac-checkbox-white.ac-control-input:hover{border:1px solid hsl(0,0%,92%)}.ac-checkbox-white.ac-control-input:disabled{background-color:#fff;border:1px solid hsla(0,0%,100%,.3)}.ac-checkbox-white.ac-control-input:checked:disabled{background-color:hsla(0,0%,100%,.3);border:1px solid hsla(0,0%,100%,0)}.ac-checkbox-white.ac-control-input:disabled{cursor:default}.ac-control{outline:none;z-index:0;display:flex;align-items:center}.ac-control-label{font-size:14px;line-height:20px;color:#242e33;outline:none;cursor:pointer}.ac-control-label::before,.ac-control-label::after{top:0}.ac-control-label.label-disabled{cursor:default;color:rgba(36,46,51,.4)}.ac-control.hide-label{padding-left:1rem}.ac-control.hide-label .ac-control-label::before{left:-1rem}.ac-control.hide-label .ac-control-label::after{left:-1rem}.visually-hidden{position:absolute;clip:rect(0 0 0 0);width:1px;height:1px;margin:-1px;display:flex}.ac-checkbox-switch{position:absolute}.ac-checkbox-switch+label{position:relative;cursor:pointer;margin-left:38px;display:flex;align-items:center}.ac-checkbox-switch:disabled+label{cursor:default;color:#697384}.ac-checkbox-switch.ac-switch+label:before{content:"";position:absolute;background:#8a94a6;border-radius:10px;width:34px;height:16px;transition:background-color .2s;left:-38px;top:4px}.ac-checkbox-switch.ac-switch:hover+label:before,.ac-checkbox-switch.ac-switch:focus+label:before,.ac-checkbox-switch.ac-switch:active+label:before{background:#697384}.ac-checkbox-switch.ac-switch:checked+label:before{background:#bedffd}.ac-checkbox-switch.ac-switch:checked:hover+label:before,.ac-checkbox-switch.ac-switch:checked:focus+label:before,.ac-checkbox-switch.ac-switch:checked:active+label:before{background:#6eb5f9}.ac-checkbox-switch.ac-switch:checked:disabled+label:before{background:#e1effc}.ac-checkbox-switch.ac-switch:disabled+label:before{background:#eaeef5}.ac-checkbox-switch.ac-switch+label .slider{content:"";position:absolute;background:#fff;border-radius:50px;width:20px;height:20px;box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1);left:-24px;top:2px;transition:.2s;transform:translateX(-70%)}.ac-checkbox-switch.ac-switch:hover+label .slider,.ac-checkbox-switch.ac-switch:focus+label .slider,.ac-checkbox-switch.ac-switch:active+label .slider{background:#f3f6f9}.ac-checkbox-switch.ac-switch:checked+label .slider{background:#3c94f2;transform:translate(0)}.ac-checkbox-switch.ac-switch:checked:hover+label .slider,.ac-checkbox-switch.ac-switch:checked:focus+label .slider,.ac-checkbox-switch.ac-switch:checked:active+label .slider{background:#1375d8}.ac-checkbox-switch.ac-switch:checked:disabled+label .slider{background:#bedffd}.ac-checkbox-switch-label-start{height:4.5px;width:1px;position:absolute;background-color:#697384;top:10px;left:-32px;border-radius:10px}.ac-checkbox-switch-label-end{height:4.5px;width:4.5px;position:absolute;background-color:rgba(0,0,0,0);top:10px;left:-13px;border-radius:50%;border:1px solid #474d58}.form-footnote{margin-bottom:1rem;font-weight:300;font-size:14px;line-height:16px;color:#5c5c5c}.form-footnote a{color:#4d9eee}.form-footnote a:focus,.form-footnote a:active,.form-footnote a:hover{color:#4686cf;cursor:pointer}.ac-alert{padding:.5rem;border-radius:.625rem;font-size:13px;line-height:16px}.ac-alert.danger{color:#bb302c;background-color:#ffecef;border:1px solid #fecfd4}.ac-alert.warning{color:#474d58;background-color:#fff8e1;border:1px solid #ffe082}.ac-alert.success{color:rgba(29,35,46,.88);background-color:#e7f4e7;border:1px solid #c5e5c5}.ac-alert-link{text-decoration:none !important}.alert-icon{margin-right:.5rem;flex-shrink:0}.ac-form-group.valid .ac-input{background-color:#e7f4e7}.ac-form-group.invalid .ac-input{background-color:#ffecef}.ac-form-group .ac-input{outline:none;padding:10px 1rem;width:100%;border:none;border-radius:.625rem;background-color:#eaeef5;color:rgba(29,35,46,.88);font-weight:400;transition:all 300ms;resize:none;font-size:16px;line-height:20px;min-height:0}.ac-form-group .ac-input.with-icon{padding-right:2.5rem !important}.ac-form-group .ac-input::placeholder{font-weight:400;color:rgba(15,38,77,.48)}.ac-form-group .ac-input:focus,.ac-form-group .ac-input:active,.ac-form-group .ac-input:hover{outline:none;border:none;background-color:#fff;-webkit-appearance:none;-webkit-box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1);box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1)}.ac-form-group .ac-input:disabled{opacity:.3;background-color:#eaeef5;color:rgba(15,38,77,.48)}.ac-form-group .ac-input:disabled:focus,.ac-form-group .ac-input:disabled:active,.ac-form-group .ac-input:disabled:hover{outline:none;box-shadow:none}.ac-form-group .input-wrapper{display:inline;position:relative;width:100%}.ac-form-group .input-wrapper .search-icon{padding:0;margin-right:0;background-color:rgba(0,0,0,0);outline:none !important;border:none;position:absolute;top:6px;right:14px;cursor:revert}.ac-form-group .input-wrapper .search-icon.is-hover{cursor:pointer}.ac-form-group .input-wrapper .search-icon.is-hover:focus>svg path,.ac-form-group .input-wrapper .search-icon.is-hover:hover>svg path{fill:rgba(32,76,149,.88) !important}.ac-form-group .ac-input[type=password]{font-weight:bold;font-size:16px;line-height:20px}.help-text{font-size:13px;line-height:16px;margin-top:.25rem;color:rgba(15,38,77,.48);margin-left:1rem}.ac-textarea-wrapper{display:flex;flex-direction:row;align-items:center;width:100%;position:relative}.ac-textarea-wrapper .ac-textarea{resize:vertical;outline:none;min-height:2.5rem;max-height:16rem}.ac-textarea-wrapper .ac-textarea.off-max-height{max-height:none !important}.ac-textarea-wrapper .ac-textarea::-webkit-scrollbar-button{height:14px}.ac-textarea-wrapper .ac-textarea::-webkit-resizer{background-color:rgba(0,0,0,0)}.ac-textarea-wrapper .icon-resize{position:absolute;background-image:url("/ui/ac-resize-icon.svg");background-repeat:no-repeat;width:.5rem;height:.5rem;bottom:.5rem;right:.5rem}.ac-form-group .react-datepicker{box-shadow:0px 6px 18px rgba(14,39,105,.16),0px 32px 32px rgba(14,39,105,.1);background-color:#fff;border:none;padding:1rem;border-radius:.625rem}.ac-form-group .react-datepicker__month-dropdown{top:44px;left:16px;bottom:32px;width:calc(100% - 32px);min-height:calc(100% - 44px - 12px);box-shadow:0px 4px 6px rgba(15,59,125,.16),0px 8px 18px rgba(15,62,116,.1);background-color:#fff;border:none;border-radius:.625rem;padding:.5rem 0}.ac-form-group .react-datepicker__month-dropdown .react-datepicker__month-option{padding:.5rem 1rem;font-size:14px;line-height:24px}.ac-form-group .react-datepicker__month-dropdown .react-datepicker__month-option:hover,.ac-form-group .react-datepicker__month-dropdown .react-datepicker__month-option:focus{background-color:#f3f6f9}.ac-form-group .react-datepicker__month-dropdown .react-datepicker__month-option:active{background-color:#eaeef5}.ac-form-group .react-datepicker__month-dropdown .react-datepicker__month-option .react-datepicker__month-option--selected{display:none}.ac-form-group .react-datepicker__month-dropdown .react-datepicker__month-option.react-datepicker__month-option--selected_month{color:#3c94f2}.ac-form-group .react-datepicker__month-dropdown{overflow-y:auto}.ac-form-group .react-datepicker__month-dropdown::-webkit-scrollbar{width:6px;height:6px}.ac-form-group .react-datepicker__month-dropdown::-webkit-scrollbar-button{height:14px}.ac-form-group .react-datepicker__month-dropdown::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.ac-form-group .react-datepicker__month-dropdown::-webkit-scrollbar-thumb{background:#a8b2c4;border-radius:8px}.ac-form-group .react-datepicker__month-dropdown::-webkit-scrollbar-thumb:hover{background:#8a94a6}.ac-form-group .react-datepicker__month-dropdown::-webkit-scrollbar-thumb:active{background:#697384}.ac-form-group .react-datepicker__year-dropdown{top:44px;left:16px;bottom:32px;width:calc(100% - 32px);min-height:calc(100% - 44px - 12px);box-shadow:0px 4px 6px rgba(15,59,125,.16),0px 8px 18px rgba(15,62,116,.1);background-color:#fff;border:none;border-radius:.625rem;padding:.5rem 0}.ac-form-group .react-datepicker__year-dropdown :last-child{display:none}.ac-form-group .react-datepicker__year-dropdown .react-datepicker__year-option{padding:.5rem 1rem;font-size:14px;line-height:24px}.ac-form-group .react-datepicker__year-dropdown .react-datepicker__year-option:hover,.ac-form-group .react-datepicker__year-dropdown .react-datepicker__year-option:focus{background-color:#f3f6f9}.ac-form-group .react-datepicker__year-dropdown .react-datepicker__year-option:active{background-color:#eaeef5}.ac-form-group .react-datepicker__year-dropdown .react-datepicker__year-option.react-datepicker__year-option--selected{display:none}.ac-form-group .react-datepicker__year-dropdown .react-datepicker__year-option.react-datepicker__year-option--selected_year{color:#3c94f2}.ac-form-group .react-datepicker__year-dropdown.react-datepicker__year-dropdown--scrollable{overflow-y:auto}.ac-form-group .react-datepicker__year-dropdown.react-datepicker__year-dropdown--scrollable::-webkit-scrollbar{width:6px;height:6px}.ac-form-group .react-datepicker__year-dropdown.react-datepicker__year-dropdown--scrollable::-webkit-scrollbar-button{height:14px}.ac-form-group .react-datepicker__year-dropdown.react-datepicker__year-dropdown--scrollable::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.ac-form-group .react-datepicker__year-dropdown.react-datepicker__year-dropdown--scrollable::-webkit-scrollbar-thumb{background:#a8b2c4;border-radius:8px}.ac-form-group .react-datepicker__year-dropdown.react-datepicker__year-dropdown--scrollable::-webkit-scrollbar-thumb:hover{background:#8a94a6}.ac-form-group .react-datepicker__year-dropdown.react-datepicker__year-dropdown--scrollable::-webkit-scrollbar-thumb:active{background:#697384}.ac-form-group .current-date{display:flex;justify-content:center;align-items:center;padding:1rem;font-size:14px;line-height:24px;font-weight:700;color:rgba(29,35,46,.88)}.ac-form-group .react-datepicker-wrapper{width:100%}.ac-form-group .react-datepicker__header{position:revert;background-color:#fff !important;border:none;padding:0}.ac-form-group .react-datepicker__header__dropdown{padding:.25rem}.ac-form-group .react-datepicker__header__dropdown .react-datepicker__month-read-view--selected-month,.ac-form-group .react-datepicker__header__dropdown .react-datepicker__year-read-view--selected-year{visibility:visible !important;font-size:14px;line-height:24px;font-weight:500;color:rgba(15,38,77,.48);margin-right:.25rem;text-transform:capitalize}.ac-form-group .react-datepicker__header__dropdown .react-datepicker__month-read-view--down-arrow,.ac-form-group .react-datepicker__header__dropdown .react-datepicker__year-read-view--down-arrow{display:none}.ac-form-group .react-datepicker__month,.ac-form-group .react-datepicker__day-names{margin:0;margin-top:.5rem;padding:0}.ac-form-group .react-datepicker__current-month{display:none;margin-bottom:.5rem}.ac-form-group .react-datepicker__week,.ac-form-group .react-datepicker__day-names{display:flex;justify-content:space-between}.ac-form-group .react-datepicker__day-name{padding:.25rem .5rem;width:auto;min-width:2.125rem;font-weight:500;font-size:14px;line-height:24px;color:rgba(15,38,77,.48)}.ac-form-group .react-datepicker__day{padding:.25rem .5rem;width:auto;min-width:2.125rem;font-size:14px;line-height:24px;color:rgba(29,35,46,.88)}.ac-form-group .react-datepicker__day:hover,.ac-form-group .react-datepicker__day:focus{border-radius:.5rem;outline:none;background-color:#eaeef5}.ac-form-group .react-datepicker__day:active{border-radius:.5rem;background-color:#3c94f2;color:#fff}.ac-form-group .react-datepicker__day--selected,.ac-form-group .react-datepicker__day--keyboard-selected{border-radius:.5rem;background-color:#3c94f2;color:#fff}.ac-form-group .react-datepicker__day--selected:hover,.ac-form-group .react-datepicker__day--selected:focus,.ac-form-group .react-datepicker__day--keyboard-selected:hover,.ac-form-group .react-datepicker__day--keyboard-selected:focus{background-color:rgb(21.75,127.0115384615,239.45);color:#fff}.ac-form-group .react-datepicker__day--outside-month{color:#a8b2c4}.ac-form-group .react-datepicker__day--disabled{color:#c5cede}.ac-form-group .react-datepicker__day--disabled:hover,.ac-form-group .react-datepicker__day--disabled:focus,.ac-form-group .react-datepicker__day--disabled:active{background-color:rgba(0,0,0,0);color:#c5cede}.ac-form-group .react-datepicker__day--in-selecting-range{border-radius:.5rem;background-color:#3c94f2 !important;color:#fff !important}.ac-form-group .react-datepicker__day--in-range{border-radius:.5rem;background-color:#eaeef5 !important;color:rgba(29,35,46,.88) !important}.ac-form-group .react-datepicker__day--range-start,.ac-form-group .react-datepicker__day--range-end{border-radius:.5rem;background-color:#3c94f2 !important;color:#fff !important}.ac-form-group .react-datepicker__triangle{display:none}.ac-form-group .ac-react-datepicker-popover{z-index:5000 !important}.ac-form-group .react-datepicker-popper[data-placement^=bottom]{padding-top:.25rem}.ac-form-group .react-datepicker__navigation--years{display:none}.ac-form-group .react-datepicker__month-option{padding:.5rem 1rem;font-size:16px;line-height:24px}.ac-form-group .react-datepicker__month-option.react-datepicker__month-option--selected_year{color:#3c94f2}.ac-form-group .react-datepicker__navigation{outline:none}.ac-form-group .react-datepicker__navigation.react-datepicker__navigation--next{width:40px;height:40px;margin:-0.5rem;padding:.5rem;top:20px;right:20px;border-radius:.625rem}.ac-form-group .react-datepicker__navigation.react-datepicker__navigation--next:hover{cursor:pointer}.ac-form-group .react-datepicker__navigation.react-datepicker__navigation--next:hover ::before{border-color:#204c95}.ac-form-group .react-datepicker__navigation.react-datepicker__navigation--previous{width:40px;height:40px;margin:-0.5rem;padding:.5rem;top:20px;left:20px;border-radius:.625rem}.ac-form-group .react-datepicker__navigation.react-datepicker__navigation--previous:hover{cursor:pointer}.ac-form-group .react-datepicker__navigation.react-datepicker__navigation--previous:hover ::before{border-color:#204c95}.ac-form-group .react-datepicker__navigation .react-datepicker__navigation-icon--previous,.ac-form-group .react-datepicker__navigation .react-datepicker__navigation-icon{right:0;top:0}.ac-form-group .react-datepicker__navigation .react-datepicker__navigation-icon--previous::before,.ac-form-group .react-datepicker__navigation .react-datepicker__navigation-icon--next::before{top:9px;left:-4px;border-color:rgba(29,35,46,.88)}.ac-form-group .datepicker-wrapper{position:relative}.ac-form-group .datepicker-wrapper .datepicker-icon{position:absolute;top:10px;right:16px}.ac-form-group .datepicker-wrapper .datepicker-icon:hover>path{fill:rgba(32,76,149,.88) !important}.ac-form-group .ac-icon-attach{position:absolute;right:1rem;top:.5rem}.ac-form-group .ac-icon-attach.paperclip{transform:rotate(45deg)}.ac-input.progress-bar{position:relative;transition:background-size linear}.ac-input.progress-upload-file{background:linear-gradient(90deg, #3C94F2 100%, rgba(0, 0, 0, 0) 30%);background-repeat:no-repeat;-webkit-appearance:none;-webkit-box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1);box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1);transition:background-size .2s ease-in}.progress{height:100%;position:absolute;top:0;left:0;z-index:1}.upload-file-placeholder{color:#8a94a6}.input-drop{background-color:#fff;max-width:384px;border-radius:.5rem}.input-drop .alert-message{font-size:13px;line-height:16px;color:#d53e39;margin-bottom:0}.input-drop-divider{border-bottom:1px solid #dae0eb}.input-drop-zone{padding:.5rem;display:flex;flex-direction:column;align-items:center;border:2px dashed #c5cede;border-radius:.5rem}.input-drop-zone:focus{outline:none}.input-drop-zone.active{background-color:#f3f6f9;border:2px dashed #3c94f2}.input-drop-zone.disabled{background-color:#fafafa;border:none}.input-drop-zone.input-drop-zone-loading{background-color:#fafafa;border:2px solid rgba(168,186,217,.4)}.input-drop-zone .description{color:#5b6270;font-size:13px;line-height:16px;text-align:center}.input-drop-zone .description.device{color:#3c94f2;cursor:pointer}.input-drop-zone .description.disabled{color:#a8b2c4;cursor:initial}.input-drop-zone .description.big-description{font-size:14px;line-height:20px}.input-drop-zone .format-description{font-size:13px;line-height:16px;text-align:center;color:#a8b2c4}.input-drop-zone .file-name{width:100%;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.input-drop-zone .file-name:last-child{color:red}.input-drop-zone .file-name.file-name-border{padding:.5rem 0;border-top:1px solid rgba(168,186,217,.4)}.input-drop-zone .file-name.file-name-border:last-child{color:red;border-bottom:1px solid rgba(168,186,217,.4)}.input-drop-zone .file-name .wrapper-name{display:flex;align-items:center;overflow:hidden}.input-drop-zone .file-name .wrapper-name .block-error-and-name{display:flex;flex-direction:column;overflow:hidden}.input-drop-zone .file-name .wrapper-name .block-error-and-name .text-name{font-size:14px;line-height:24px;color:#697384;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:0}.ac-form-group.valid .ac-input-select__control{background-color:#e7f4e7}.ac-form-group.invalid .ac-input-select__control{background-color:#ffecef}.ac-form-group .ac-input-select__control{outline:none;padding:10px 1rem;width:100%;border:none;border-radius:.625rem;background-color:#eaeef5;color:rgba(29,35,46,.88);font-weight:400;transition:all 300ms;resize:none;font-size:16px;line-height:20px;min-height:0}.ac-form-group .ac-input-select__control.with-icon{padding-right:2.5rem !important}.ac-form-group .ac-input-select__control:focus,.ac-form-group .ac-input-select__control:active,.ac-form-group .ac-input-select__control:hover{outline:none;border:none;background-color:#fff;-webkit-appearance:none;-webkit-box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1);box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1)}.ac-form-group .ac-input-select__control--is-focused{outline:none;border:none;background-color:#fff;-webkit-appearance:none;-webkit-box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1);box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1)}.ac-form-group .ac-input-select__control--is-focused.ac-input-select__control--menu-is-open .ac-input-select__single-value{color:rgba(15,38,77,.48)}.ac-form-group .ac-input-select__control--is-disabled{opacity:.3;background-color:#eaeef5;color:rgba(15,38,77,.48)}.ac-form-group .ac-input-select__control--is-disabled:focus,.ac-form-group .ac-input-select__control--is-disabled:active,.ac-form-group .ac-input-select__control--is-disabled:hover{outline:none;box-shadow:none}.ac-form-group .ac-input-select__placeholder{font-weight:400;color:rgba(15,38,77,.48)}.ac-form-group .ac-input-select__value-container{line-height:1.25rem !important;padding:0;padding-right:.5rem}.ac-form-group .ac-input-select__value-container .select-single-value-icon>svg{width:1.25rem;height:1.25rem}.ac-form-group .ac-input-select__value-container>div{padding:0;margin:0}.ac-form-group .ac-input-select__value-container div:last-child{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;width:100%;z-index:1000}.ac-form-group .ac-input-select__indicator{margin-top:-0.625rem;margin-bottom:-0.625rem}.ac-form-group .ac-input-select__indicator:hover>svg path{fill:rgba(32,76,149,.88) !important}.ac-form-group .ac-input-select__indicator-separator{display:none}.ac-form-group .ac-input-select__menu{margin:.5rem 0;border:none;outline:none;box-shadow:none;border-radius:.625rem;z-index:5000}.ac-form-group .ac-input-select__menu-list{padding:.5rem 0;border-radius:.625rem;box-shadow:0px 6px 18px rgba(14,39,105,.16),0px 32px 32px rgba(14,39,105,.1);z-index:15000;max-height:288px;overflow:auto}.ac-form-group .ac-input-select__menu-list::-webkit-scrollbar{width:6px;height:6px}.ac-form-group .ac-input-select__menu-list::-webkit-scrollbar-button{height:14px}.ac-form-group .ac-input-select__menu-list::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.ac-form-group .ac-input-select__menu-list::-webkit-scrollbar-thumb{background:#a8b2c4;border-radius:8px}.ac-form-group .ac-input-select__menu-list::-webkit-scrollbar-thumb:hover{background:#8a94a6}.ac-form-group .ac-input-select__menu-list::-webkit-scrollbar-thumb:active{background:#697384}.ac-form-group .ac-input-select__option{padding:.5rem 1rem;color:#242e33;border:none;outline:none;font-size:16px;line-height:24px}.ac-form-group .ac-input-select__option--is-focused{background-color:#f3f6f9}.ac-form-group .ac-input-select__option:active{background-color:#eaeef5}.ac-form-group .ac-input-select__option--is-selected{background-color:#f3f6f9;color:#3c94f2}.spinner{animation:rotate 1s linear 0s infinite}.spinner.xs{width:1rem;height:1rem}.spinner.s{width:1.5rem;height:1.5rem}.spinner.m{width:2rem;height:2rem}.spinner.l{width:3rem;height:3rem}.spinner.xl{width:4rem;height:4rem}.spinner.fade{opacity:0;transition:opacity 300ms}.spinner.fade.show{opacity:1}.spinner .path{stroke-linecap:round}.spinner .path.primary{stroke:#3c94f2}.spinner .path.danger{stroke:#d53e39}.spinner .path.warning{stroke:#ffc107}.spinner .path.success{stroke:#1baf83}.spinner .path.lime{stroke:#e0ff66}.spinner .path.purple{stroke:#634d9d}.spinner .path.white{stroke:#fff}@keyframes rotate{100%{transform:rotate(360deg)}}.ReactCollapse--collapse{transition:height 200ms}.cw-title-wrapper{display:flex;flex-direction:row;justify-content:flex-start;cursor:pointer}.cw-title-wrapper.start{align-items:flex-start}.cw-title-wrapper.center{align-items:center}.cw-title-wrapper.xs{padding:.25rem 0}.cw-title-wrapper.s{padding:.5rem 0}.cw-title-wrapper.m{padding:.75rem 0}.cw-title-wrapper.l{padding:.75rem 0}.cw-title-wrapper .cw-icon-left{margin-right:.5rem}.cw-title-wrapper .cw-icon-right{margin-left:.5rem}.cw-label{font-weight:400;font-size:18px;line-height:150%;margin-bottom:0;color:rgba(29,35,46,.88)}.cw-label.xs{font-size:12px}.cw-label.s{font-size:14px}.cw-label.m{font-size:16px}.cw-label.l{font-size:18px}.text-primary{color:#3c94f2}.text-danger{color:#d53e39}.text-warning{color:#ffc107}.text-success{color:#1baf83}.text-lime{color:#e0ff66}.text-purple{color:#634d9d}.text-white{color:#fff}.text-gray-50{color:#fafafa}.text-gray-100{color:#f3f6f9}.text-gray-200{color:#eaeef5}.text-gray-300{color:#dae0eb}.text-gray-400{color:#c5cede}.text-gray-500{color:#a8b2c4}.text-gray-600{color:#8a94a6}.text-gray-700{color:#697384}.text-gray-750{color:#5b6270}.text-gray-800{color:#474d58}.text-gray-850{color:#363c46}.text-gray-900{color:#242e33}.text-primary-i{color:#3c94f2 !important}.text-danger-i{color:#d53e39 !important}.text-warning-i{color:#ffc107 !important}.text-success-i{color:#1baf83 !important}.text-lime-i{color:#e0ff66 !important}.text-purple-i{color:#634d9d !important}.text-white-i{color:#fff !important}.text-gray-50-i{color:#fafafa !important}.text-gray-100-i{color:#f3f6f9 !important}.text-gray-200-i{color:#eaeef5 !important}.text-gray-300-i{color:#dae0eb !important}.text-gray-400-i{color:#c5cede !important}.text-gray-500-i{color:#a8b2c4 !important}.text-gray-600-i{color:#8a94a6 !important}.text-gray-700-i{color:#697384 !important}.text-gray-750-i{color:#5b6270 !important}.text-gray-800-i{color:#474d58 !important}.text-gray-850-i{color:#363c46 !important}.text-gray-900-i{color:#242e33 !important}.border-bottom{border-bottom:1px rgba(168,186,217,.4) solid}.border-right{border-right:1px rgba(168,186,217,.4) solid}.border-top{border-top:1px rgba(168,186,217,.4) solid}.border-left{border-left:1px rgba(168,186,217,.4) solid}.avatar{border-radius:8rem;flex:0;position:relative}.avatar-on-line{display:flex;position:absolute;background-color:#20cc99;border-radius:100px;z-index:1000}.avatar-xs{width:1.5rem !important;height:1.5rem !important}.avatar-xs .avatar-on-line{width:.375rem;height:.375rem;top:19px}.avatar-s{width:2rem !important;height:2rem !important}.avatar-s .avatar-on-line{width:.5rem;height:.5rem;top:24px}.avatar-m{width:3rem !important;height:3rem !important}.avatar-m .avatar-on-line{width:.75rem;height:.75rem;top:36px}.avatar-l{width:5rem !important;height:5rem !important}.avatar-l .avatar-on-line{width:1.25rem;height:1.25rem;top:60px}.avatar-xl{width:7rem !important;height:7rem !important}.avatar-xl .avatar-on-line{width:1.5rem;height:1.5rem;top:88px}.avatar-xxl{width:11rem !important;height:11rem !important}.avatar-xxl .avatar-on-line{width:2.5rem;height:2.5rem;top:136px}.avatar-editor{width:11rem}.avatar-editor .photo-avatar-editor{width:100%;border-radius:.5rem;background-color:#dae0eb;margin-bottom:.5rem}.avatar-editor .photo-avatar-editor.placeholder{background:url("/ui/avatarPlaceholder.svg") no-repeat !important}.avatar-editor .photo-avatar-editor{background-size:100%}.avatar-editor .input-slider{-webkit-appearance:none;appearance:none;width:100%;height:.25rem;background-color:#c5cede;outline:none;border-radius:.125rem;transition:all .2s}.avatar-editor .input-slider:hover,.avatar-editor .input-slider:focus,.avatar-editor .input-slider:active{background-color:#a8b2c4}.avatar-editor .input-slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:1.5rem;height:1.5rem;background-color:#fff;border:1px rgba(168,186,217,.4) solid;border-radius:1rem;box-shadow:0px 2px 3px rgba(14,39,105,.16),0px 4px 12px rgba(11,52,113,.1);cursor:pointer;transition:all .2s}.avatar-editor .input-slider::-webkit-slider-thumb:hover,.avatar-editor .input-slider::-webkit-slider-thumb:focus,.avatar-editor .input-slider::-webkit-slider-thumb:active{box-shadow:0px 1px 2px rgba(14,39,105,.16),0px 1px 3px rgba(14,39,105,.1)}.avatar-editor .avatar-label{position:relative;width:100%}.avatar-editor .avatar-editor-sign{font-size:13px;line-height:1rem;color:rgba(15,38,77,.48);margin-bottom:0;text-align:center}html{font-family:Inter,arial,sans-serif;font-size:16px}body{font-family:"Inter",sans-serif;padding:0 0;margin:0 0;overflow-x:hidden !important;color:#474d58}@page{size:A4;margin:0;padding:0}@media print{html,body{width:210mm;height:297mm;margin:0;padding:0}}.main-layout{min-height:100vh;display:flex;flex-direction:column;align-items:center}.main-content{width:100%;flex-grow:1;display:flex;flex-direction:column;align-items:center}.main-content>div{flex:1;display:flex;flex-direction:column;width:100%}.pb-x14{padding-bottom:56px}.min-width-100{min-width:100%}.cursor-pointer{cursor:pointer}.cqw{background-color:#fff;box-shadow:0px 2px 3px rgba(14,39,105,.16),0px 4px 12px rgba(11,52,113,.1);border-radius:20px;border:1px solid #fff}.cqw.open{box-shadow:none;border-color:rgba(168,186,217,.4)}.cqw{transition:all 150ms}.cqw:hover.is-h{box-shadow:0px 1px 2px rgba(14,39,105,.16),0px 1px 3px rgba(14,39,105,.1)}.cqw-title-wrapper{display:flex;flex-direction:row;justify-content:flex-start;cursor:pointer;align-items:center;padding:16px}@media(max-width: 667px){.cqw-title-wrapper{padding:8px}}.cqw-title-wrapper .cqw-icon-left{margin-right:.5rem}.cqw-title-wrapper:hover{cursor:pointer}.cqw-label{font-family:"Inter";font-style:normal;font-weight:500;font-size:22px;line-height:150%;color:rgba(29,35,46,.88);padding-top:12px;padding-bottom:12px;margin-bottom:0}@media(max-width: 667px){.cqw-label{font-size:18px}}.tab-toggler{display:flex;flex-direction:row;border-radius:14px;padding:.25rem;background-color:#f3f6f9;margin-bottom:0}.tab-toggler .tab-toggler-item{height:2rem;background-color:rgba(0,0,0,0);border:none;outline:none;text-decoration:none;display:inline-block;margin:0;padding:.25rem .5rem;border-radius:10px;font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:24px;color:rgba(29,35,46,.88)}.tab-toggler .tab-toggler-item:focus,.tab-toggler .tab-toggler-item:hover{cursor:pointer;background-color:rgba(32,76,149,.08)}.tab-toggler .tab-toggler-item.active{color:rgba(32,76,149,.88);background-color:#fff;box-shadow:0px 1px 2px rgba(14,39,105,.16),0px 1px 3px rgba(14,39,105,.1)}.tab-toggler .tab-toggler-item.active:focus,.tab-toggler .tab-toggler-item.active:hover{cursor:pointer;color:rgba(27.2676056338,64.7605633803,126.9647887324,.8944);background-color:rgb(228.24,233.52,242.28)}.container{width:100%;box-sizing:border-box;margin-left:auto;margin-right:auto;max-width:1100px}.header-container{padding:0}.task-container{width:100vw}.legal-container{width:100%;box-sizing:border-box;margin-left:auto;margin-right:auto;max-width:1100px}.text-container{max-width:792px;width:100%}.page-header{width:100%;border-bottom:1px rgba(168,186,217,.4) solid;background:hsla(0,0%,100%,.6);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);position:sticky;top:0;z-index:1005}.page-header .main-header-fullwidth-container{width:100%;display:flex;justify-content:center}@media print{.page-header .main-header-fullwidth-container{display:none}}.main-header{padding-top:8px;padding-bottom:8px;min-height:56px;max-height:56px;width:100%;display:flex;justify-content:space-between;align-items:center;position:relative}@media(max-width: 667px){.main-header{padding-top:12px;padding-bottom:12px}}.un-auth{display:flex}@media(max-width: 992px){.un-auth{display:none !important}}.header-coins{display:flex}@media(max-width: 667px){.header-coins{display:none !important}}.main-menu-container-pc{flex:1}@media(max-width: 992px){.main-menu-container-pc{justify-content:end;flex:0}}.main-menu-container-pc-task{flex:1}@media(max-width: 667px){.main-menu-container-pc-task{justify-content:end;flex:0}}@media(max-width: 667px){.main-menu-container-mobile{width:100%}}.main-header-logo-wrapper{display:flex;margin-right:1.5rem}@media(max-width: 992px){.main-header-logo-wrapper{margin-right:.5rem}}.task-header{font-size:14px}.main-header-logo{width:124px;height:24px}.task-header-logo{display:block;width:124px;height:24px}@media(max-width: 667px){.task-header-logo{display:none}}.task-header-logo-min{display:none;width:46px;height:24px}@media(max-width: 667px){.task-header-logo-min{display:inline-block}}.mobile-menu-toggler{display:none}@media(max-width: 667px){.mobile-menu-toggler{display:inline-block}}.mobile-menu-toggler{padding:0;margin:0;width:20px;height:16px;border:none;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-position:center center;background-image:url("/img/header/mobile-menu-toggler-closed.svg")}.mobile-menu-toggler:active,.mobile-menu-toggler:focus{outline:none}.mobile-menu-toggler.opened{background-image:url("/img/header/mobile-menu-toggler-opened.svg")}.mobile-menu-toggler.dark-background{background-image:url("/img/header/mobile-menu-toggler-dark-closed.svg")}.mobile-menu-toggler.dark-background.opened{background-image:url("/img/header/mobile-menu-toggler-dark-opened.svg")}.main-menu{display:flex;flex-grow:1;justify-content:space-between;align-items:center}.main-menu ul{display:flex;flex-direction:row;align-items:center;list-style:none;margin:0;padding:0}.main-menu .main-menu-item{display:flex;margin-right:.5rem}.main-menu .main-menu-item a{text-decoration:none !important;padding:.5rem .5rem}.main-menu .main-menu-item span{display:block;color:rgba(29,35,46,.88);margin-left:.5rem}.main-menu .main-menu-item.is-task-header span{color:#fff}.main-menu .main-menu-item:hover{cursor:pointer;background-color:rgba(32,76,149,.08);border-radius:.625rem}@media(min-width: 667px){.main-menu .main-menu-item:hover .icon-wrapper svg path{fill:rgba(29,35,46,.88) !important}}.main-menu .main-menu-item.is-task-header:hover{border-radius:.625rem;background-color:hsla(0,0%,100%,.12)}.main-menu .main-menu-item.is-task-header:hover a{text-decoration:none}.main-menu .main-menu-item.is-task-header:hover span{color:#fff}@media(min-width: 667px){.main-menu .main-menu-item.is-task-header:hover .icon-wrapper svg path{fill:#fff !important}}@media(max-width: 667px){.main-menu .main-menu-item.is-task-header:hover{border-radius:revert;background-color:rgba(0,0,0,0);cursor:revert}}@media(max-width: 667px){.main-menu .main-menu-item{margin-right:.5rem}.main-menu .main-menu-item span{display:none}.main-menu .main-menu-item:hover{border-radius:.625rem !important}.main-menu .main-menu-item .icon-wrapper svg path{fill:rgba(29,35,46,.88) !important}.main-menu .main-menu-item.is-task-header .icon-wrapper svg path{fill:#fff !important}}.header-dropdown{width:240px}.support-dd{z-index:1001}.main-menu-dropdown-hidden{z-index:1001}@media(min-width: 992px){.main-menu-dropdown-hidden{display:none !important}}@media(max-width: 667px){.login-button{display:none}}.menu-user-info-container .menu-user-info-dropdown-toggle-mobile{display:flex}.menu-user-info-container .profile-menu-avatar .button-avatar-content{white-space:nowrap}@media(max-width: 667px){.menu-user-info-container .profile-menu-avatar{display:none}}.logout-button{background-color:rgba(0,0,0,0);border:none;cursor:pointer}.logout-button span{display:none}@media(max-width: 667px){.logout-button span{display:inline-block;font-size:14px}}.question-b-wrapper{background-color:#f6fcff}.question-b-container{padding-top:96px;padding-bottom:96px}@media(max-width: 667px){.question-b-container{padding-top:56px;padding-bottom:56px}}.question-b-h2{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:700;font-size:48px;line-height:120%}@media(max-width: 667px){.question-b-h2{font-size:28px}}.question-b-h2{margin-bottom:48px}.question-b-list{list-style:none;padding:0;margin:0;width:100%;display:flex;flex-direction:column;align-items:start}.question-b-list :last-child{margin-bottom:0 !important}.question-b-list .question-b-list-item{list-style-type:none;padding:0;width:100%;margin:0 0 .5rem 0}.question-b-list .question-b-item-wrapper{padding:0 16px 40px 48px}@media(max-width: 667px){.question-b-list .question-b-item-wrapper{padding:8px 8px 32px 40px}}.question-b-list .question-b-item-answer{margin-bottom:0;font-size:1.125rem;line-height:150%;color:rgba(29,35,46,.88)}@media(max-width: 667px){.question-b-list .question-b-item-answer{font-size:1rem !important;line-height:150%}}.landing-banner{position:fixed;z-index:1001;width:100%;bottom:0}.landing-text-banner-header{font-family:Inter,sans-serif;font-size:18px;line-height:22px;font-weight:bold}.landing-text-banner{font-family:Inter,sans-serif;font-size:14px;line-height:17px;font-weight:normal}.landing-text-banner a{color:#fff;text-decoration:underline solid #fff}.landing-text-banner a:hover,.landing-text-banner a:focus,.landing-text-banner a:active{text-decoration:none}.landing-h1{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:700;font-size:48px;line-height:120%}@media(max-width: 667px){.landing-h1{font-size:28px}}.landing-h2{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:700;font-size:48px;line-height:120%}@media(max-width: 667px){.landing-h2{font-size:28px}}.main-info{background-color:#f6fcff}.main-info .main-info-container{padding-top:96px;padding-bottom:64px}@media(max-width: 667px){.main-info .main-info-container{padding-top:56px;padding-bottom:32px}}.main-info .main-info-container .main-info-wrapper{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;padding-left:90px;padding-right:90px}@media(max-width: 1200px){.main-info .main-info-container .main-info-wrapper{padding-left:0;padding-right:0}}@media(max-width: 992px){.main-info .main-info-container .main-info-wrapper{flex-direction:column;align-items:flex-start}}.main-info .main-info-container .main-info-wrapper .main-info-img{width:384px;height:384px;margin-bottom:48px;margin-right:126px}@media(max-width: 1200px){.main-info .main-info-container .main-info-wrapper .main-info-img{margin-right:74px}}@media(max-width: 992px){.main-info .main-info-container .main-info-wrapper .main-info-img{width:212px;height:212px;margin-bottom:24px;margin-right:0}}.main-info .main-info-container .main-info-wrapper .main-info-img .img{width:384px;height:384px}@media(max-width: 992px){.main-info .main-info-container .main-info-wrapper .main-info-img .img{width:212px;height:212px}}.main-info .main-info-container .main-info-wrapper .main-info-start{display:flex;flex-direction:column;align-items:flex-start;margin-bottom:48px}.main-info .main-info-container .main-info-wrapper .main-info-start .main-info-title{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:700;font-size:48px;line-height:58px;margin-bottom:1rem}@media(max-width: 667px){.main-info .main-info-container .main-info-wrapper .main-info-start .main-info-title{font-size:28px;line-height:120%}}.main-info .main-info-container .main-info-wrapper .main-info-start .main-info-description{color:#242e33;font-family:"Inter";font-style:normal;font-weight:400;font-size:20px;line-height:150%;margin-bottom:1.5rem}@media(max-width: 667px){.main-info .main-info-container .main-info-wrapper .main-info-start .main-info-description{font-size:20px;line-height:150%}}.main-info .main-info-container .main-info-list{display:flex;flex-direction:row;align-items:center;justify-content:space-between}@media(max-width: 992px){.main-info .main-info-container .main-info-list{flex-wrap:wrap;align-items:flex-start;justify-content:flex-start}}.main-info .main-info-container .main-info-list .main-info-card{display:flex;flex-direction:row;align-items:flex-start;margin-bottom:32px}@media(max-width: 992px){.main-info .main-info-container .main-info-list .main-info-card{margin-right:24px}}@media(max-width: 667px){.main-info .main-info-container .main-info-list .main-info-card{margin-bottom:24px}}.main-info .main-info-container .main-info-list .main-info-card .main-info-card-title{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:500;font-size:20px;line-height:24px;margin-bottom:.25rem}.main-info .main-info-container .main-info-list .main-info-card .main-info-card-description{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:20px;margin-bottom:0}.landing-why-study{background-color:#fff}.landing-why-study .landing-why-study-container{padding-top:96px;padding-bottom:96px}@media(max-width: 667px){.landing-why-study .landing-why-study-container{padding-top:56px;padding-bottom:56px}}.landing-why-study .landing-why-study-container .why-study-h2{margin-bottom:48px}@media(max-width: 667px){.landing-why-study .landing-why-study-container .why-study-h2{margin-bottom:24px}}.landing-why-study .landing-why-study-container .why-study-p{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:400;font-size:20px;line-height:150%;margin-bottom:0}@media(max-width: 667px){.landing-why-study .landing-why-study-container .why-study-p{font-size:16px}}.landing-for-whom{background-color:#f6fcff}.landing-for-whom .landing-for-whom-container{padding-top:96px;padding-bottom:48px}@media(max-width: 667px){.landing-for-whom .landing-for-whom-container{padding-top:56px;padding-bottom:24px}}.landing-for-whom .landing-for-whom-container .for-whom-h2{margin-bottom:48px}@media(max-width: 667px){.landing-for-whom .landing-for-whom-container .for-whom-h2{margin-bottom:32px}}.landing-for-whom .landing-for-whom-container .for-whom-list{padding:0;margin-top:0;margin-bottom:0}.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card{margin-bottom:48px}@media(max-width: 667px){.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card{margin-bottom:32px}}.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card{display:flex;flex-direction:column;align-items:flex-start}.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card .for-whom-card-img-wrapper{width:120px;height:120px;margin-bottom:1rem}.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card .for-whom-card-img-wrapper .img{width:120px;height:120px}@media(max-width: 667px){.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card .for-whom-card-img-wrapper .img{width:80px;height:80px}}@media(max-width: 667px){.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card .for-whom-card-img-wrapper{width:80px;height:80px;margin-bottom:.5rem}}.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card .for-whom-card-name{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:700;font-size:24px;line-height:150%;margin-bottom:.5rem}@media(max-width: 667px){.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card .for-whom-card-name{font-size:20px}}.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card .for-whom-card-description{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:400;font-size:18px;line-height:150%;margin-bottom:0}@media(max-width: 667px){.landing-for-whom .landing-for-whom-container .for-whom-list .for-whom-card .for-whom-card-description{font-size:16px}}.landing-how-training{background-color:#fff}.landing-how-training .landing-how-training-container{padding-top:96px;padding-bottom:72px}@media(max-width: 667px){.landing-how-training .landing-how-training-container{padding-top:56px;padding-bottom:32px}}.landing-how-training .landing-how-training-container .how-training-h2{margin-bottom:48px}.landing-how-training .landing-how-training-container .how-training-list{padding:0;margin:0}.landing-how-training .landing-how-training-container .how-training-list .how-training-card{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;border:1px rgba(168,186,217,.4) solid;border-radius:1.25rem;margin-bottom:24px;padding:1.5rem}@media(max-width: 667px){.landing-how-training .landing-how-training-container .how-training-list .how-training-card{flex-direction:column;align-items:flex-start}}.landing-how-training .landing-how-training-container .how-training-list .how-training-card .how-training-number-wrapper{display:flex;flex-direction:row;justify-content:flex-start;align-items:center}.landing-how-training .landing-how-training-container .how-training-list .how-training-card .how-training-number-wrapper .how-training-number{display:flex;background-color:rgba(32,76,149,.08);border-radius:40px;padding:.5rem;width:40px;height:40px;margin-right:1rem}.landing-how-training .landing-how-training-container .how-training-list .how-training-card .how-training-number-wrapper .how-training-image{width:120px;height:120px;margin-right:1rem}@media(max-width: 667px){.landing-how-training .landing-how-training-container .how-training-list .how-training-card .how-training-number-wrapper .how-training-image{margin-right:0}}.landing-how-training .landing-how-training-container .how-training-list .how-training-card .how-training-name{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:700;font-size:20px;line-height:150%;margin-top:1rem;margin-bottom:.5rem}.landing-how-training .landing-how-training-container .how-training-list .how-training-card .how-training-description{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:400;font-size:18px;line-height:150%;margin-bottom:16px}@media(max-width: 667px){.landing-how-training .landing-how-training-container .how-training-list .how-training-card .how-training-description{font-size:16px}}.what-you-will-learn{background-color:#f6fcff}.what-you-will-learn .what-you-will-learn-container{padding-top:96px;padding-bottom:96px}@media(max-width: 667px){.what-you-will-learn .what-you-will-learn-container{padding-top:56px;padding-bottom:56px}}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-h2{margin-bottom:48px}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-list{padding:0;margin-top:0;list-style:none;margin-bottom:16px}@media(max-width: 992px){.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-list{margin-bottom:24px}}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-list .what-you-will-learn-card{display:flex;flex-direction:row;justify-content:flex-start;margin-bottom:2rem}@media(max-width: 992px){.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-list .what-you-will-learn-card{margin-bottom:1.5rem}}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-list .what-you-will-learn-card .check-wrapper{display:flex;background-color:rgba(32,76,149,.08);border-radius:40px;padding:.5rem;width:40px;height:40px;margin-right:1rem}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-list .what-you-will-learn-card .what-you-will-learn-name{font-family:"Inter";font-style:normal;font-weight:400;font-size:18px;line-height:150%;color:rgba(29,35,46,.88);margin-bottom:0}@media(max-width: 667px){.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-list .what-you-will-learn-card .what-you-will-learn-name{font-size:16px}}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat{display:flex;flex-direction:row;justify-content:space-between;align-items:center;background-color:#fff;border-radius:32px;box-shadow:0px 1px 2px rgba(13,51,108,.16),0px 2px 6px rgba(10,51,100,.1);padding:16px 32px}@media(max-width: 1200px){.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat{flex-direction:column;justify-content:flex-start;align-items:flex-start;padding:32px}}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list{display:flex;flex-direction:row;align-items:center;margin-right:1rem}@media(max-width: 1200px){.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list{align-items:flex-start;flex-wrap:wrap;margin-right:0}}@media(max-width: 667px){.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list{flex-direction:column;flex-wrap:nowrap}}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list :last-child{margin-right:0 !important}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list .what-you-will-card{display:flex;flex-direction:row;align-items:center;margin-right:56px}@media(max-width: 1200px){.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list .what-you-will-card{margin-right:24px;margin-bottom:24px}}@media(max-width: 667px){.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list .what-you-will-card{margin-right:0}}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list .what-you-will-card .count{font-family:"Inter";font-style:normal;font-weight:700;font-size:64px;line-height:77px;color:#1267ce;margin-right:1rem}@media(max-width: 667px){.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list .what-you-will-card .count{font-size:56px;line-height:68px}}.what-you-will-learn .what-you-will-learn-container .what-you-will-learn-stat .what-you-will-list .what-you-will-card .name{font-family:"Inter";font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:rgba(29,35,46,.88)}.certificate-landing{background-color:#fff}.certificate-landing .certificate-landing-container{padding-top:96px;padding-bottom:96px}@media(max-width: 667px){.certificate-landing .certificate-landing-container{padding-top:56px;padding-bottom:56px}}.certificate-landing .certificate-landing-container .certificate-landing-h2{margin-bottom:48px}.certificate-landing .certificate-landing-container .certificate-landing-list{order:1;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start}.certificate-landing .certificate-landing-container .certificate-landing-list :last-child{margin-bottom:0}.certificate-landing .certificate-landing-container .certificate-landing-list .certificate-landing-card{display:flex;flex-direction:row;align-items:center;margin-bottom:2rem}.certificate-landing .certificate-landing-container .certificate-landing-list .certificate-landing-card .certificate-landing-p{font-family:"Inter";font-style:normal;font-weight:400;font-size:18px;line-height:150%;margin-bottom:0}@media(max-width: 667px){.certificate-landing .certificate-landing-container .certificate-landing-list .certificate-landing-card .certificate-landing-p{font-size:16px}}.certificate-landing .certificate-landing-container .certificate-landing-img{order:2;position:relative;display:flex;flex-direction:row;justify-content:flex-end;margin-top:-106px}@media(max-width: 992px){.certificate-landing .certificate-landing-container .certificate-landing-img{order:0;margin-top:0;justify-content:flex-start;margin-bottom:48px}}.certificate-landing .certificate-landing-container .certificate-landing-img .img{width:340px;height:482px}@media(max-width: 1200px){.certificate-landing .certificate-landing-container .certificate-landing-img .img{width:324px;height:460px}}@media(max-width: 992px){.certificate-landing .certificate-landing-container .certificate-landing-img .img{width:203px;height:288px;margin-left:86px}}.certificate-landing .certificate-landing-container .certificate-landing-img .phone{position:absolute;top:60px;right:177px;width:306px;height:366px}@media(max-width: 1200px){.certificate-landing .certificate-landing-container .certificate-landing-img .phone{top:56px;width:292px;height:349px}}@media(max-width: 992px){.certificate-landing .certificate-landing-container .certificate-landing-img .phone{top:34px;right:auto;left:15px;width:182px;height:218px}}.statistics-landing{background-color:#f6fcff}.statistics-landing .statistics-landing-container{padding-top:96px;padding-bottom:96px}@media(max-width: 667px){.statistics-landing .statistics-landing-container{padding-top:56px;padding-bottom:56px}}.statistics-landing .statistics-landing-container .statistics-landing-h2{margin-bottom:48px}.statistics-landing .statistics-landing-container .statistics-landing-list{display:flex;flex-direction:row;align-items:center;justify-content:flex-start}@media(max-width: 667px){.statistics-landing .statistics-landing-container .statistics-landing-list{flex-direction:column;align-items:flex-start}}.statistics-landing .statistics-landing-container .statistics-landing-list :last-child{margin-right:0 !important;margin-bottom:0 !important}.statistics-landing .statistics-landing-container .statistics-landing-list{margin-bottom:48px}.statistics-landing .statistics-landing-container .statistics-landing-list .statistics-landing-card{display:flex;flex-direction:row;align-items:center;margin-right:80px}@media(max-width: 992px){.statistics-landing .statistics-landing-container .statistics-landing-list .statistics-landing-card{flex-direction:column;align-items:flex-start;justify-content:flex-start;margin-right:56px}}@media(max-width: 667px){.statistics-landing .statistics-landing-container .statistics-landing-list .statistics-landing-card{margin-right:0;margin-bottom:56px}}.statistics-landing .statistics-landing-container .statistics-landing-list .statistics-landing-card .count{color:#1267ce;font-family:"Inter";font-weight:700;font-size:64px;line-height:77px;margin-right:1rem}@media(max-width: 992px){.statistics-landing .statistics-landing-container .statistics-landing-list .statistics-landing-card .count{font-size:56px;line-height:68px;margin-right:0;margin-bottom:8px}}.statistics-landing .statistics-landing-container .statistics-landing-list .statistics-landing-card .name{font-family:"Inter";font-size:18px;line-height:24px;margin-bottom:0}@media(max-width: 667px){.statistics-landing .statistics-landing-container .statistics-landing-list .statistics-landing-card .name{font-size:16px}}.statistics-landing .statistics-landing-container .statistics-landing-help{font-family:"Inter";font-size:16px;line-height:24px;color:rgba(15,38,77,.48);margin-bottom:0}.students-work{background-color:#fff}.students-work .students-work-container{padding-top:96px;padding-bottom:48px}@media(max-width: 667px){.students-work .students-work-container{padding-top:56px;padding-bottom:32px}}.students-work .students-work-container .students-work-h2{margin-bottom:64px}@media(max-width: 667px){.students-work .students-work-container .students-work-h2{margin-bottom:48px}}.students-work .students-work-container .students-work-list{display:flex;flex-direction:row;justify-content:space-between}@media(max-width: 1200px){.students-work .students-work-container .students-work-list{justify-content:flex-start;flex-wrap:wrap}}.students-work .students-work-container .students-work-list .students-work-card{margin-bottom:48px;width:auto;height:54px}@media(max-width: 1200px){.students-work .students-work-container .students-work-list .students-work-card{margin-right:48px}}@media(max-width: 667px){.students-work .students-work-container .students-work-list .students-work-card{margin-right:32px;margin-bottom:24px;height:36px}}.author-landing{background-color:#f6fcff}.author-landing .author-landing-container{padding-top:96px;padding-bottom:48px}@media(max-width: 667px){.author-landing .author-landing-container{padding-top:56px;padding-bottom:8px}}.author-landing .author-landing-container .author-landing-h2{margin-bottom:1.5rem}.author-landing .author-landing-container .author-landing-description{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:400;font-size:20px;line-height:150%;margin-bottom:48px}@media(max-width: 667px){.author-landing .author-landing-container .author-landing-description{font-size:16px}}.author-landing .author-landing-container .author-landing-info-wrapper{order:1;margin-bottom:48px}.author-landing .author-landing-container .author-landing-info-wrapper .author-landing-fio{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:700;font-size:30px;line-height:36px;margin-bottom:1.5rem}.author-landing .author-landing-container .author-landing-info-wrapper .author-landing-p{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:400;font-size:18px;line-height:150%;margin-bottom:1.5rem}@media(max-width: 667px){.author-landing .author-landing-container .author-landing-info-wrapper .author-landing-p{font-size:16px}}.author-landing .author-landing-container .author-landing-avatar-wrapper{order:2;display:flex;flex-direction:row;align-items:flex-start;justify-content:flex-end;margin-bottom:48px}@media(max-width: 992px){.author-landing .author-landing-container .author-landing-avatar-wrapper{order:0;justify-content:flex-start}}.author-landing .author-landing-container .author-landing-avatar-wrapper .author-landing-avatar{padding:8px;border:2px solid rgba(168,186,217,.4);border-radius:190px}@media(max-width: 992px){.author-landing .author-landing-container .author-landing-avatar-wrapper .author-landing-avatar{padding:4px;border-radius:144px}}.author-landing .author-landing-container .author-landing-avatar-wrapper .author-landing-avatar .img{width:360px;height:360px;border-radius:180px}@media(max-width: 992px){.author-landing .author-landing-container .author-landing-avatar-wrapper .author-landing-avatar .img{width:276px;height:276px;border-radius:138px}}.you-can{background-color:#fff}.you-can .you-can-container{padding-top:96px;padding-bottom:96px}@media(max-width: 667px){.you-can .you-can-container{padding-top:56px;padding-bottom:56px}}.you-can .you-can-container .you-can-one-h2{margin-bottom:48px}.you-can .you-can-container .you-can-card-wrapper{margin-bottom:102px}@media(max-width: 667px){.you-can .you-can-container .you-can-card-wrapper{margin-bottom:56px}}.you-can .you-can-container .you-can-card-wrapper .you-can-card{display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;background-color:#fff;box-shadow:0px 4px 16px rgba(12,43,104,.16),0px 24px 32px rgba(10,46,101,.1);border-radius:20px;padding:1.5rem}.you-can .you-can-container .you-can-card-wrapper .you-can-card .you-can-card-name{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:500;font-size:24px;line-height:150%;margin-bottom:.5rem}.you-can .you-can-container .you-can-card-wrapper .you-can-card .you-can-card-description{color:rgba(15,38,77,.48);font-family:"Inter";font-style:normal;font-weight:400;font-size:16px;line-height:24px;margin-bottom:1.5rem}.you-can .you-can-container .you-can-two-h2{margin-bottom:1.5rem}.you-can .you-can-container .you-can-two-p{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:400;font-size:20px;line-height:150%;margin-bottom:48px}@media(max-width: 667px){.you-can .you-can-container .you-can-two-p{font-size:16px}}.you-can .you-can-container .you-can-payments{margin-bottom:24px}.questions-landing{background-color:#f6fcff}.questions-landing .questions-landing-container{padding-top:96px;padding-bottom:96px}@media(max-width: 667px){.questions-landing .questions-landing-container{padding-top:56px;padding-bottom:56px}}.questions-landing .questions-landing-container .questions-landing-h2{margin-bottom:48px}.questions-landing .questions-landing-container .questions-landing-list{list-style:none;padding:0;margin:0;width:100%;display:flex;flex-direction:column;align-items:start}.questions-landing .questions-landing-container .questions-landing-list :last-child{margin-bottom:0 !important}.questions-landing .questions-landing-container .questions-landing-list .questions-landing-label{font-family:"Inter";font-weight:500 !important;font-size:24px !important;line-height:150%}@media(max-width: 667px){.questions-landing .questions-landing-container .questions-landing-list .questions-landing-label{font-size:18px !important}}.questions-landing .questions-landing-container .questions-landing-list .questions-landing-li{list-style-type:none;padding:0;width:100%;margin:0 0 .5rem 0}.questions-landing .questions-landing-container .questions-landing-list .questions-landing-item{padding:0 16px 40px 48px}@media(max-width: 667px){.questions-landing .questions-landing-container .questions-landing-list .questions-landing-item{padding:8px 8px 32px 40px}}.questions-landing .questions-landing-container .questions-landing-list .questions-landing-answer{margin-bottom:0;font-size:1.125rem;line-height:150%;color:rgba(29,35,46,.88)}@media(max-width: 667px){.questions-landing .questions-landing-container .questions-landing-list .questions-landing-answer{font-size:1rem !important;line-height:150%}}.page-footer{background-color:#0c3366;width:100%;display:flex;padding-top:3rem}@media(max-width: 667px){.page-footer{padding-top:2.5rem}}@media print{.page-footer{display:none}}.page-footer .footer-item{display:flex;flex-direction:column;align-items:flex-start;margin-bottom:2rem}@media(max-width: 667px){.page-footer .footer-item{order:3;margin-bottom:2.5rem}.page-footer .footer-item.footer-logo-wrapper{order:1}.page-footer .footer-item.footer-contacts{order:2}}.page-footer .footer-item ul{display:flex;flex-direction:column;list-style:none;margin:0;padding:0}.page-footer .footer-item .footer-logo{width:124px;height:24px;margin-bottom:1rem}.page-footer .footer-item .footer-title{font-family:"Inter";font-style:normal;font-weight:500;font-size:20px;line-height:24px;color:#fff}.page-footer .footer-item .footer-description{font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:24px;color:#dae0eb}.page-footer .footer-item .footer-description a{text-decoration:none;color:#dae0eb;display:flex;align-items:center}.page-footer .footer-item .footer-description a:hover,.page-footer .footer-item .footer-description a:focus,.page-footer .footer-item .footer-description a:active{text-decoration:underline}.page-footer .footer-item .social-network{display:flex;flex-direction:row}.page-footer .footer-caption{display:flex;flex-direction:row;justify-content:space-between;padding-top:2rem;padding-bottom:1.5rem}@media(max-width: 667px){.page-footer .footer-caption{padding-top:2.5rem;padding-bottom:2rem;flex-direction:column;justify-content:flex-start}}.page-footer .footer-caption .footer-caption-item{font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:24px;color:#dae0eb;margin-bottom:.5rem}.feedback-description{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:20px}.feedback-title{color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:500;font-size:16px;line-height:24px;margin-bottom:1.5rem}.feedback-buttons{display:flex !important;flex-direction:row !important;justify-content:flex-end !important}@media(max-width: 667px){.feedback-buttons{display:flex !important;flex-direction:column-reverse !important;justify-content:flex-start !important}.feedback-buttons .feedback-buttons-width.f-mb{margin-bottom:1rem}.feedback-buttons .feedback-buttons-width{width:100% !important}}.auth-logo{width:300px;height:50px;margin:20px 0}@media(max-width: 667px){.auth-logo{width:100%;height:auto}}.sign-in-form,.sign-up-form,.recover-password-form,.not-authorized-form{display:flex;flex-direction:column}@media(max-width: 667px){.sign-in-form,.sign-up-form,.recover-password-form,.not-authorized-form{width:100%}}.not-authorized-form p{font-size:14px}.try-unauthorized-button{font-size:14px}.checkbox-confirm-license{font-size:14px;line-height:20px;color:#697384}.recovery-password-caption{font-size:16px;line-height:24px;color:#697384;margin-bottom:1.5rem}.background-image-auth{background:url("/img/auth/bgrndImgSignIn.svg");background-repeat:no-repeat;background-clip:border-box;background-size:contain;width:100%;background-position:-20% 50%;position:relative}@media(max-width: 992px){.background-image-auth{background:none}}.background-image-registration{background:url("/img/auth/background.svg");background-repeat:no-repeat;background-clip:border-box;background-size:contain;width:100%;background-position:20% 50%;position:relative}.background-image-registration.recovery-password{background-position:50% 50%}.caption-authorization{display:flex;align-items:center;margin-bottom:1.5rem}.caption-authorization .caption-authorization-h1{font-weight:400;font-size:34px;line-height:36px;color:#3c94f2;margin-bottom:0}.link-password-recovery{text-align:center;margin-bottom:2rem}.link-password-recovery a{color:#3c94f2}.caption-pass-unregistration{font-size:30px;line-height:48px;color:#0c3366;margin-bottom:1rem}.caption-save-progress{font-size:18px;line-height:32px;color:#697384;margin-bottom:2rem}.try-authorized-mobile{margin-top:2rem;padding-top:2rem;border-top:1px solid #eaeef5}.try-authorized-mobile .caption-pass-unregistration{font-size:18px;line-height:24px}.try-authorized-mobile .caption-save-progress{font-size:14px;line-height:22px}.try-authorized-mobile .ac-btn{width:100%}@media(min-width: 992px){.try-authorized-mobile{display:none}}.sign-in-card{margin-top:92px;margin-bottom:128px;background:hsla(0,0%,100%,.94);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}@media(max-width: 667px){.sign-in-card{width:100%;box-shadow:none;margin-top:0;margin-bottom:0}}.mobile-hidden-auth{display:flex;flex-direction:column;align-items:start;margin-top:136px}@media(max-width: 992px){.mobile-hidden-auth{display:none}}.header-password-recovery{font-weight:400;font-size:22px;line-height:24px;color:#3c94f2;margin-bottom:1.5rem;display:flex;align-items:center}.course-themes{list-style:none;padding:0;margin:0}.course-theme{display:flex;flex-direction:row;align-items:stretch;width:100%;margin:0 0 2rem 0}@media(max-width: 667px){.course-theme{margin-bottom:1rem}}.course-theme .course-theme-indicator{margin-top:2rem;position:relative;display:flex;flex-direction:column;justify-content:flex-start;flex:0 0 102px}@media(max-width: 667px){.course-theme .course-theme-indicator{display:none}}.course-theme .course-theme-indicator .indicator-container{position:relative;flex:0 0 95px}.course-theme .course-theme-indicator .indicator-container .indicator-border{position:absolute;width:82px;height:95px;z-index:10}.course-theme .course-theme-indicator .indicator-container .indicator-img{position:absolute;width:48px;height:48px;top:23px;left:17px;z-index:20}.course-theme .course-theme-indicator .indicator-right-line{position:absolute;width:63px;height:4px;z-index:0;top:45px;right:0;margin-left:-40px;background-color:#dae0eb}.course-theme .course-theme-indicator .indicator-right-line.completed{background-color:#1baf83}.course-theme .course-theme-indicator .indicator-bottom-line{position:absolute;left:39px;width:4px;height:calc(100% + 64px);z-index:1;background-color:#dae0eb;bottom:-112px}.course-theme .course-theme-indicator .indicator-bottom-line.completed{background-color:#1baf83}.course-theme .course-theme-card{flex:1 1;padding:0;box-shadow:0px 2px 3px rgba(14,39,105,.16),0px 4px 12px rgba(11,52,113,.1);border-radius:20px;background-color:#fff}.course-theme .course-theme-card .course-theme-card-blocks{display:flex;flex-direction:row;width:100%}@media(max-width: 992px){.course-theme .course-theme-card .course-theme-card-blocks{flex-direction:column}}.course-theme .course-theme-card .course-theme-card-blocks .block-info{width:100%;border-right:1px rgba(168,186,217,.4) solid;padding:1.5rem}@media(max-width: 992px){.course-theme .course-theme-card .course-theme-card-blocks .block-info{border-right:none;border-bottom:1px rgba(168,186,217,.4) solid}}.course-theme .course-theme-card .course-theme-card-blocks .block-info .block-info-h3{font-family:"Inter";font-style:normal;font-weight:500;font-size:18px;line-height:24px;color:rgba(29,35,46,.88);margin-bottom:.5rem}.course-theme .course-theme-card .course-theme-card-blocks .block-info .block-info-description{font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:20px;color:rgba(29,35,46,.88);margin-bottom:.75rem}.course-theme .course-theme-card .course-theme-card-blocks .block-stat{display:flex;flex-direction:row;width:100%}@media(max-width: 667px){.course-theme .course-theme-card .course-theme-card-blocks .block-stat{flex-direction:column}}.course-theme .course-theme-card .course-theme-card-blocks .block-stat .block-time{display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start;width:100%;border-right:1px rgba(168,186,217,.4) solid;padding:1.5rem}@media(max-width: 667px){.course-theme .course-theme-card .course-theme-card-blocks .block-stat .block-time{border-right:none;border-bottom:1px rgba(168,186,217,.4) solid}}.course-theme .course-theme-card .course-theme-card-blocks .block-stat .block-time .block-time-title{font-family:"Inter";font-style:normal;font-weight:500;font-size:24px;line-height:24px;color:rgba(29,35,46,.88);margin-bottom:.5rem}.course-theme .course-theme-card .course-theme-card-blocks .block-stat .block-time .block-time-description{font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:20px;color:rgba(29,35,46,.88);margin-bottom:.5rem}.course-theme .course-theme-card .course-theme-card-blocks .block-stat .block-count{display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start;width:100%;padding:1.5rem}.course-theme .course-theme-card .course-theme-card-blocks .block-stat .block-count .block-count-title{font-family:"Inter";font-style:normal;font-weight:500;font-size:24px;line-height:24px;color:rgba(29,35,46,.88);margin-bottom:.5rem}.course-theme .course-theme-card .course-theme-card-blocks .block-stat .block-count .block-count-title.completed{color:#1baf83}.course-theme .course-theme-card .course-theme-card-blocks .block-stat .block-count .block-count-description{font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:20px;color:rgba(29,35,46,.88);margin-bottom:.5rem}.course-theme-content-and-tasks{flex:1 1;padding:0;box-shadow:0px 2px 3px rgba(14,39,105,.16),0px 4px 12px rgba(11,52,113,.1);border-radius:20px}.course-theme-content-and-tasks .show-all-tasks-theme{border-bottom-left-radius:20px;border-bottom-right-radius:20px}.course-theme-content{display:flex;flex-direction:row;flex-grow:1;padding:1.5rem}@media(max-width: 667px){.course-theme-content{flex-direction:column}.course-theme-content.hide-border-in-mobile{border-right:none}}.course-theme-content.course-theme-result{flex-wrap:wrap}.course-theme-content .course-theme-content-stats{margin-right:3rem;margin-bottom:0}@media(max-width: 667px){.course-theme-content .course-theme-content-stats{margin-right:0;margin-bottom:1.5rem}}.course-theme-content .course-theme-content-stats:last-child{margin-right:0;margin-bottom:0}.course-level-fs{display:flex;flex-direction:row;align-items:center;font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:24px;color:rgba(29,35,46,.88)}.task-list{padding:0;margin:0 0 10px 0}.task-list-item{list-style-type:none}.task-list-item a{width:100%;display:flex;flex-direction:row;align-items:center;padding:10px 1.5rem;box-sizing:border-box;border-top:1px rgba(168,186,217,.4) solid;text-decoration:none;color:#474d58}.task-list-item a .solved{color:#1baf83}@media(max-width: 667px){.task-list-item a .solved span{display:none}.task-list-item a .solved svg{margin-right:0 !important}}.task-list-item a:hover{background-color:#f3f6f9}.task-list-item a:hover .task-list-item-controls .solved{display:none}.task-list-item a:hover .task-list-item-controls .unsolved{display:block;color:#3c94f2}@media(max-width: 667px){.task-list-item a:hover .task-list-item-controls .unsolved .text{display:none}.task-list-item a:hover .task-list-item-controls .unsolved svg{margin-right:0 !important}}.task-list-item-controls .unsolved{display:none}.task-list-item-number{min-width:24px;margin-right:4px;font-size:14px;line-height:24px}.task-list-item-name{flex-grow:1;font-size:14px;line-height:24px}.task-list-item-controls{min-width:104px;font-size:14px;color:#fff}@media(max-width: 667px){.task-list-item-controls{min-width:auto}}.course-list-wrapper{padding-bottom:2.5rem}.course-list{width:100%;background-color:#f6fcff}.course-list .course-list-container{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start}@media(max-width: 992px){.course-list .course-list-container{flex-direction:column;justify-content:flex-start}}.course-list .course-list-container{padding-top:32px;padding-bottom:16px}.course-list .course-list-container .course-h1{font-family:"Inter";font-style:normal;font-weight:700;font-size:30px;line-height:48px;color:rgba(29,35,46,.88);margin-bottom:.25rem}.course-list .course-list-container .course-description{font-family:"Inter";font-style:normal;font-weight:400;font-size:16px;line-height:24px;margin-bottom:0;color:rgba(15,38,77,.48)}.course-info{padding-top:2rem;margin-bottom:.5rem}.course-info .course-h2{font-family:"Inter";font-style:normal;font-weight:700;font-size:20px;line-height:24px;color:rgba(29,35,46,.88);margin-bottom:.75rem}.course-info .course-h2-medium{font-family:"Inter";font-style:normal;font-weight:500;font-size:20px;line-height:24px;color:rgba(29,35,46,.88);margin-bottom:.75rem}.course-info .course-info-p{font-family:"Inter";font-style:normal;font-weight:400;font-size:16px;line-height:24px;color:rgba(29,35,46,.88);margin-bottom:1rem}.course-info-card-wrapper{display:flex;flex-direction:row;justify-content:flex-end;color:rgba(29,35,46,.88)}@media(max-width: 992px){.course-info-card-wrapper{justify-content:flex-start}}.course-info-card{display:flex;flex-direction:column;justify-content:center;width:416px;background:#f6fcff;border:1px solid rgba(168,186,217,.4);border-radius:20px;padding:16px;margin-bottom:1rem}@media(max-width: 667px){.course-info-card{width:288px}}.course-info-card .card-info-card-list-wrapper{display:flex;flex-direction:row;margin-bottom:.25rem}@media(max-width: 667px){.course-info-card .card-info-card-list-wrapper{flex-direction:column}}.course-info-card .card-info-card-list-wrapper .card-info-card-list{display:flex;flex-direction:column}.course-info-card .card-info-card-list-wrapper .card-info-card-list.mr{margin-right:1rem}@media(max-width: 667px){.course-info-card .card-info-card-list-wrapper .card-info-card-list.mr{margin-right:0}}.course-info-card .card-info-card-list-wrapper .card-info-card-list .card-info-card-item{display:flex;flex-direction:row;align-items:center;font-family:"Inter";font-style:normal;font-weight:400;font-size:13px;line-height:16px;color:rgba(29,35,46,.88);margin-bottom:.5rem}.course-info-card .course-info-card-header{font-family:"Inter";font-style:normal;font-weight:500;font-size:14px;line-height:17px;margin-bottom:12px;color:rgba(29,35,46,.88)}.themes-search-panel{display:flex;flex-direction:row;justify-content:space-between;align-items:center;min-height:2.5rem;width:100%}.themes-filter-level-search{flex:1;display:flex;width:100%;min-width:240px;margin-right:1.5rem}@media(max-width: 667px){.themes-filter-level-search{margin-right:.5rem}}.themes-filter-search-levels-dropdown{display:none}@media(max-width: 667px){.themes-filter-search-levels-dropdown{display:block}}.themes-filter-search-levels-select{margin-bottom:0;display:block;min-width:240px}@media(max-width: 667px){.themes-filter-search-levels-select{display:none}}.task-layout{min-height:100vh;display:flex;flex-direction:column}.task-header{padding:0 10px;background-color:#0d3263;min-height:48px}.task-header .logo{width:46px;height:24px}.task-editor-content{display:flex;flex-direction:row;flex-grow:1}.task-editor-drawer{width:48px;z-index:10;box-shadow:0px 4px 16px rgba(12,43,104,.16),0px 24px 32px rgba(10,46,101,.1)}.task-editor-drawer ul{margin:0;padding:0;list-style:none}.task-editor-drawer li{min-height:50px;display:flex;justify-content:center;align-items:center}.task-editor-drawer button{background:rgba(0,0,0,0);border:none;min-width:38px;min-height:38px}.task-editor-drawer button:focus,.task-editor-drawer button:hover{background-color:#edf5f6;border-radius:50px;outline:none}.task-editor-drawer img{width:22px;height:22px}.task-editor-layout{flex-grow:1;display:flex;position:relative}@media(max-width: 667px){.task-editor-layout{flex-direction:column}}.task-editor-half-width-column{flex:0 0 50%;max-width:calc(50vw - 24px);height:100%;display:flex;flex-direction:column;overflow:auto}@media(max-width: 667px){.task-editor-half-width-column{flex:0 0 100%;max-width:calc(100vw - 48px)}}.task-editor-half-width-column>div{flex:1 0 100%;display:flex;flex-direction:column;height:100%;width:100%;overflow:auto}.task-editor-half-width-column:first-child{border-right:2px solid rgba(168,186,217,.4)}.task-editor-window{display:flex;flex-direction:column;flex:1 0 50%;position:relative}.task-editor-window.bottom{flex:0 1 50%;align-items:stretch;border-top:2px solid rgba(168,186,217,.4);transition:flex-basis .2s ease-in-out}.task-editor-window.bottom .collapse-button img{transition:transform .2s ease-in-out}.task-editor-window.bottom .collapse-button-wrapper{display:flex;flex-direction:row;flex-wrap:nowrap;flex-basis:revert;flex-grow:revert}.task-editor-window.bottom.collapsed{flex-basis:40px;overflow:hidden}.task-editor-window.bottom.collapsed .collapse-button img{transform:rotate(180deg)}.task-result-table .task-tab-content{flex-grow:1}.task-result-table .task-result-error-p{font-family:"Inter";font-style:normal;font-weight:400;font-size:14px;line-height:24px;color:rgba(29,35,46,.88)}.task-result-table .task-result-bottom{flex:0 0 25px;display:flex;flex-direction:row;justify-content:space-between;border-top:1px solid #e3e3e3;padding:.25rem .75rem}.task-result-table .task-result-bottom .stats{font-family:"Inter";font-style:normal;font-weight:400;font-size:13px;line-height:16px;color:rgba(15,38,77,.48)}.task-result-table .task-result-bottom .run-command{font-family:"Inter";font-style:normal;font-weight:400;font-size:13px;line-height:16px;color:rgba(15,38,77,.48)}.task-result-table .task-tab-content-table{padding:0;margin:0}.task-result-table table{font-size:14px;font-weight:400;border-collapse:collapse}.task-result-table th,.task-result-table td{padding:5px}.task-result-table th,.task-result-table td.header-column{min-height:25px;font-weight:400;text-align:center;color:#fff}.task-result-table .header-column{min-width:30px}.task-result-table .start-table-th{height:32px;width:30px}.task-result-table-solution th,.task-result-table-solution td.header-column{background:rgb(203.4375,226.7067307692,251.5625);color:#242e33}.task-result-table-solution th,.task-result-table-solution td{border:1px solid rgb(179.53125,213.5889423077,249.96875)}.task-result-table-user.success th{background-color:#8ee3d4;color:#242e33}.task-result-table-user.success td.header-column{background-color:#8ee3d4;color:#242e33}.task-result-table-user.success th,.task-result-table-user.success td{border:1px solid #c1fff4}.task-result-table-user.error th,.task-result-table-user.error td.header-column{background:rgb(248.7,226.05,225.3);color:#242e33}.task-result-table-user.error th,.task-result-table-user.error td{border:1px solid rgb(244.2375,205.54375,204.2625)}.task-result-table-user th.column-non-existent,.task-result-table-solution th.column-non-existent{background:rgb(239.775,185.0375,183.225);border:1px solid rgb(244.2375,205.54375,204.2625)}.task-result-table-user td.value-different{background:rgb(248.7,226.05,225.3)}.task-result-table-user th.column-different-name{background:rgb(239.775,185.0375,183.225);border:1px solid rgb(244.2375,205.54375,204.2625)}.task-result-table-user td.value-column-non-existent,.task-result-table-user td.value-row-non-existent,.task-result-table-solution td.value-column-non-existent,.task-result-table-solution td.value-row-non-existent{background:rgb(248.7,226.05,225.3);border:1px solid rgb(244.2375,205.54375,204.2625)}.ac-task-toolbar{min-height:2.5rem;display:flex;flex-direction:row;justify-content:space-between;align-items:center;margin:0;padding:0;background-color:#f3f6f9}.ac-task-toolbar .ac-task-toolbar-tab{background-color:rgba(0,0,0,0);border:none;font-family:"Inter";font-style:normal;font-weight:500;font-size:14px;line-height:24px;color:rgba(29,35,46,.88);min-height:2.5rem;height:2.5rem;margin:0;padding:.5rem .75rem}.ac-task-toolbar .ac-task-toolbar-tab.ac-task-toolbar-tab-b:hover{outline:none;background-color:rgba(32,76,149,.08)}.ac-task-toolbar .ac-task-toolbar-tab.active{background-color:#fff}.task-toolbar-button{height:40px;background-color:rgba(0,0,0,0);border:none;text-align:left;font-weight:500;font-size:14px;line-height:24px;margin:0;height:40px;padding:0 10px 0 10px;color:rgba(29,35,46,.88)}.task-toolbar-button:focus,.task-toolbar-button:hover{outline:none;background-color:rgba(32,76,149,.08)}.task-toolbar-button img{width:20px;height:20px}@keyframes robot-eye-animation{25%{transform:translateX(-4px)}75%{transform:translateX(4px)}}.task-execute-button{display:flex;flex-direction:row;justify-content:space-between;position:relative;align-items:center;min-width:150px;background-color:#1baf83;color:#fff;padding-right:50px}.task-execute-button:hover,.task-execute-button:active{background-color:#189a73}.task-execute-button .robot{position:absolute;width:27px;height:27px;top:5px;right:10px}.task-execute-button .robot-eye{position:absolute;top:20px;right:15px;width:16px;height:6px}.task-execute-button.executing{background-color:#189a73}.task-execute-button.executing .robot-eye{animation-name:robot-eye-animation;animation-duration:1s;animation-timing-function:linear;animation-iteration-count:infinite}.task-block-header{font-family:"Inter";font-style:normal;font-weight:500;font-size:24px;line-height:32px;padding:0;margin:0 0 1rem 0}.task-tab-content{flex:1 1 0;max-width:calc(50vw - 24px);box-sizing:border-box;overflow:auto}@media(max-width: 667px){.task-tab-content{width:calc(100vw - 48px);max-width:calc(100vw - 48px)}}.task-tab-content .task-header-container{display:flex;justify-content:flex-start;align-items:center;min-height:25px}.task-solved-indicator{font-family:"Inter";font-style:normal;font-weight:400;font-size:16px;line-height:24px;margin-bottom:0;color:rgba(29,35,46,.88)}.task-fullscreen-tab-body{flex:1 1 0;padding:10px 20px;overflow-y:auto;height:100%}.task-drawer-modal{position:absolute;top:0;left:0;width:0;overflow:hidden;transition:width .2s ease-in-out;height:100%;z-index:15;background-color:#fff;box-shadow:4px 0 10px rgba(0,0,0,.15)}.task-drawer-modal .header{min-height:40px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #e3e3e3;font-size:14px}.task-drawer-modal .task-drawer-modal-content{height:calc(100% - 40px);overflow-y:auto}.task-drawer-modal .task-drawer-modal-content>div{height:calc(100% - 40px);overflow-y:auto}.task-drawer-modal .collapse-image{transform:rotate(90deg)}.task-drawer-modal-header-and-content{height:100%}.task-drawer-modal-open{width:50%}@media(max-width: 667px){.task-drawer-modal-open{width:100%}}.task-solved-controls{z-index:20;width:100%;padding:1rem;border-top:1px solid #e3e3e3;display:flex;flex-direction:row;align-items:center;justify-content:space-between;background-color:#fff;box-shadow:0px 6px 18px rgba(14,39,105,.16),0px 32px 32px rgba(14,39,105,.1)}.task-solved-controls .next-button{margin-left:.25rem}.task-solution{font-family:Menlo,Monaco,"Courier New",monospace;font-size:14px;line-height:22px;white-space:pre}.task-solution-question-block{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;padding:1rem}.task-solution-question-block .dialog-wrapper{display:flex;flex-direction:column;margin-right:.25rem}.task-solution-question-block .dialog{padding:1rem;box-shadow:0px 2px 3px rgba(14,39,105,.16),0px 4px 12px rgba(11,52,113,.1);background-color:#fff;border-radius:1.25rem;margin-bottom:1rem;width:260px}.task-solution-question-block .dialog .dialog-title{font-family:"Inter";font-style:normal;font-weight:700;font-size:18px;line-height:22px;color:rgba(29,35,46,.88);margin-bottom:.75rem}.task-solution-question-block .dialog .dialog-item{display:flex;flex-direction:row;align-items:flex-start;margin-bottom:.75rem}.task-solution-question-block .dialog .dialog-item .dialog-item-content{display:flex;flex-direction:column;align-items:flex-start;font-family:"Inter";font-style:normal;font-weight:400}.task-solution-question-block .dialog .dialog-item .dialog-item-content .dialog-item-content-name{font-size:14px;line-height:20px;color:rgba(29,35,46,.88);margin-bottom:0}.task-solution-question-block .dialog .dialog-item .dialog-item-content .dialog-item-content-link{font-size:13px;line-height:16px;margin-bottom:0}.task-solution-question-block .robot-block{max-width:300px}.task-schema-diagram{text-align:center}.task-postgrespro-ref{font-size:12px;font-weight:300;color:#5c5c5c}.task-postgrespro-ref a{color:#5c5c5c}.task-schema-diagram-and-description{position:relative;height:100%}.task-schema-diagram-and-description .content{height:100%;overflow:auto}.task-theory .start-button-container{display:flex;justify-content:center;margin:0 0 1.5rem 0}.solution-pre{overflow:hidden;position:relative;font-size:14px !important;line-height:24px !important;padding-left:56px !important;z-index:1}.solution-pre .number-span{background-color:#f3f6f9}.solution-pre :nth-child(n){background-color:rgba(0,0,0,0)}.solution-pre .text-span{display:inline-block;width:100%;padding-left:56px !important}.solution-pre .editorLineNumber{position:absolute;left:0;padding-right:8px;display:flex;align-items:center;justify-content:flex-end;color:rgba(15,38,77,.48);background-color:#f3f6f9 !important;text-align:right;width:48px;font-weight:100}.unselectable{cursor:default;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.solution-wrapper{height:100%;display:flex;flex-direction:column;background-color:#fff;counter-reset:line}.mr-i-x3{margin-right:.375rem}.position-relation{position:relative}.task-editor-task-list{padding:0;margin:0 0 1.5rem 0}.task-editor-task-list .task-editor-task-list-item{list-style-type:none}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a{width:100%;display:flex;flex-direction:row;align-items:center;padding:.5rem 1.5rem;box-sizing:border-box;text-decoration:none;color:rgba(29,35,46,.88);font-weight:400;font-size:14px;line-height:24px}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a .tsi-number{min-width:1.5rem;margin-right:.25rem}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a .tsi-name{width:100%;margin-right:.25rem}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a .tsi-solved{display:flex;flex-direction:row;align-items:center;color:#1baf83}@media(max-width: 667px){.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a .tsi-solved span{display:none}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a .tsi-solved svg{margin-right:0 !important}}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a .tsi-controls{min-width:104px}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a .tsi-controls .tsi-unsolved{flex-direction:row;align-items:center;display:none}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a:hover{background-color:#f3f6f9;border-radius:10px}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a:hover .tsi-controls .tsi-solved{display:none}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a:hover .tsi-controls .tsi-unsolved{display:flex;color:#3c94f2}@media(max-width: 667px){.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a:hover .tsi-controls .tsi-unsolved .tsi-text{display:none}.task-editor-task-list .task-editor-task-list-item .task-editor-task-list-item-a:hover .tsi-controls .tsi-unsolved svg{margin-right:0 !important}}.overflow-revert{overflow:revert}.window-style-list{display:flex;flex-direction:column;width:100%}.window-style-list .window-style-list-item{width:100%;max-width:534px;background:#fff;padding:1rem;box-shadow:0px 4px 16px rgba(12,43,104,.16),0px 24px 32px rgba(10,46,101,.1);border-radius:1.25rem;margin-bottom:1.5rem;transition:all 150ms}.window-style-list .window-style-list-item .wsi-number{display:flex;flex-direction:column;align-items:center;justify-content:center;width:1.5rem;height:1.5rem;background-color:rgba(32,76,149,.08);border-radius:.75rem;margin-right:.5rem}.window-style-list .window-style-list-item .wsi-name{font-family:"Inter";font-style:normal;font-weight:500;font-size:18px;line-height:24px;color:rgba(29,35,46,.88);margin-bottom:.5rem}.window-style-list .window-style-list-item .wsi-description{font-family:"Inter";font-style:normal;font-weight:400;font-size:13px;line-height:16px;color:rgba(15,38,77,.48);margin-bottom:1rem}.window-style-list .window-style-list-item:hover{box-shadow:0px 1px 2px rgba(14,39,105,.16),0px 1px 3px rgba(14,39,105,.1);cursor:pointer}.window-style-list .window-style-list-item.active{box-shadow:none;cursor:revert;border:1px solid #e3e3e3}.window-style-list .window-style-list-item.active .wsi-number{background-color:#3c94f2}.task-bottom-collapsible-block{display:flex;flex-direction:column;align-items:stretch;flex:0 1 50%;border-top:2px solid rgba(168,186,217,.4);transition:flex-basis .2s ease-in-out}.task-bottom-collapsible-block .collapse-button img{transition:transform .2s ease-in-out}.task-bottom-collapsible-block .collapse-button-wrapper{display:flex;flex-direction:row;flex-wrap:nowrap;flex-basis:revert;flex-grow:revert}.task-bottom-collapsible-block.collapsed{flex-basis:40px;overflow:hidden}.task-bottom-collapsible-block.collapsed .collapse-button img{transform:rotate(180deg)}.task-bottom-collapsible-block-body{display:flex;flex-direction:column;flex-grow:1;flex-shrink:1}.markdown-container :last-child{margin-bottom:0}.markdown-container h1{margin:28px 0 16px;font-size:18px}.markdown-container h2{margin:20px 0 10px;font-size:16px;font-weight:700}.markdown-container h2 code{font-size:16px;font-weight:700}.markdown-container{font-size:16px;line-height:26px}.markdown-container pre{margin:0 0 16px 0;padding:10px 20px;overflow-x:auto;border-radius:5px;border:1px solid #a5d8db;background-color:#fafafa;font-family:"Roboto Mono",sans-serif}@media(min-width: 992px){.markdown-container pre::-webkit-scrollbar{width:6px;height:6px}.markdown-container pre::-webkit-scrollbar-track{background-color:rgba(0,0,0,0)}.markdown-container pre::-webkit-scrollbar-thumb{background:#a8b2c4;border-radius:8px}.markdown-container pre::-webkit-scrollbar-thumb:hover{background:#8a94a6}.markdown-container pre::-webkit-scrollbar-thumb:active{background:#697384}}.markdown-container code{font-family:"Roboto Mono",sans-serif}.markdown-container .table-wrapper-scroll{display:flex;margin-bottom:16px;overflow-x:auto}@media(min-width: 992px){.markdown-container .table-wrapper-scroll::-webkit-scrollbar{width:6px;height:6px}.markdown-container .table-wrapper-scroll::-webkit-scrollbar-track{border-bottom:1px solid #a5d8db;background-color:rgba(0,0,0,0)}.markdown-container .table-wrapper-scroll::-webkit-scrollbar-thumb{background:#a8b2c4;border-radius:8px}.markdown-container .table-wrapper-scroll::-webkit-scrollbar-thumb:hover{background:#8a94a6}.markdown-container .table-wrapper-scroll::-webkit-scrollbar-thumb:active{background:#697384}}.markdown-container .table-wrapper{display:inline-block;border-radius:5px;border:1px solid #a5d8db}.markdown-container table{display:table !important;border-collapse:collapse;border-spacing:0;border-style:hidden;min-width:auto;background-color:rgba(0,0,0,0);line-height:normal}.markdown-container table td,.markdown-container table th{border:1px solid #a5d8db;padding:10px}.markdown-container a{color:#4d9eee;text-decoration:none}.markdown-container code[class*=language-]{font-family:"Roboto Mono",sans-serif}.markdown-container :not(pre)>code[class*=language-],.markdown-container pre[class*=language-]{background:#fafafa}.task-theory .markdown-container table,.article-content .markdown-container table{min-width:auto;background-color:rgba(0,0,0,0);line-height:normal;display:table !important;border-spacing:0;border-style:hidden}.profile-layout{background-color:#f6fcff}.profile-menu{width:100%;display:flex;justify-content:center;background-color:#0c3366;color:#fff}@media(max-width: 667px){.profile-menu{display:none}}.profile-menu-content{display:flex;justify-content:flex-end}.profile-menu-content ul{margin:0;padding:0;display:flex;flex-wrap:wrap;list-style:none}.profile-menu-content .profile-menu-item{display:flex;align-items:center;padding:.75rem;font-size:16px;line-height:24px;color:#fff;text-decoration:none}.profile-menu-content .profile-menu-item:active,.profile-menu-content .profile-menu-item:hover,.profile-menu-content .profile-menu-item:focus{background-color:hsla(214,22.7272727273%,74.8467274234%,.1936);outline:none}.profile-menu-content .profile-menu-item.active{background-color:#f6fcff;color:#0c3366;box-shadow:inset 0 9px 9px -9px rgba(32,40,111,.2)}.profile-menu-content .profile-menu-item.active:active,.profile-menu-content .profile-menu-item.active:hover,.profile-menu-content .profile-menu-item.active:focus{background-color:rgba(246,252,255,.95);outline:none}.profile-menu-content .profile-menu-item .icon-wrapper{display:flex;margin-right:.5rem}.profile-menu-content .profile-menu-item.profile.active svg path,.profile-menu-content .profile-menu-item.preferences.active svg path,.profile-menu-content .profile-menu-item.achievement.active svg path,.profile-menu-content .profile-menu-item.certificate.active svg path{fill:#0c3366 !important}.profile-view{width:100%;display:flex;flex-direction:column;padding-bottom:72px}@media(max-width: 667px){.profile-view{padding-bottom:56px}}.user-info{padding:3.5rem 0;background-color:#f6fcff}@media(max-width: 992px){.user-info{padding:2.5rem 0 3rem 0}}.user-info .user-info-container{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start}@media(max-width: 992px){.user-info .user-info-container{flex-direction:column;align-items:center;justify-content:flex-start}}.user-info .user-info-container .user-info-wrapper{display:flex;flex-direction:row;align-items:flex-start;justify-content:flex-start}@media(max-width: 992px){.user-info .user-info-container .user-info-wrapper{flex-direction:column;align-items:center;justify-content:flex-start}}.user-info .user-info-container .user-info-wrapper .user-info-content{display:flex;flex-direction:column;margin-left:1.5rem}@media(max-width: 992px){.user-info .user-info-container .user-info-wrapper .user-info-content{margin-top:1.5rem;margin-left:0;align-items:center;text-align:center}}.user-info .user-info-container .user-info-wrapper .user-info-content .user-info-content-fio{font-weight:500;font-size:30px;line-height:150%;color:rgba(29,35,46,.88);margin-bottom:0}.user-info .user-info-container .user-info-wrapper .user-info-content .user-info-content-id{font-weight:400;font-size:16px;line-height:24px;color:rgba(15,38,77,.48);margin-top:1rem;margin-bottom:0}@media(max-width: 992px){.user-info .user-info-container .user-info-wrapper .user-info-content .user-info-content-id{margin-bottom:1rem}}.profile-stats{padding:2rem 0 0 0;background-color:#fff}.profile-stats .profile-stats-container .profile-stats-h2{color:rgba(29,35,46,.88);font-weight:500;font-size:24px;line-height:150%;margin-bottom:1.5rem}.profile-stats .profile-stats-container .profile-stats-wrapper{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start}@media(max-width: 992px){.profile-stats .profile-stats-container .profile-stats-wrapper{flex-direction:column;align-items:flex-start;justify-content:flex-start}}.stats-card{display:flex;flex-direction:row;align-items:center}.stats-card .stats-card-info{display:flex;flex-direction:column;padding:0 0 0 1rem}.stats-card .stats-card-info .stats-card-current{font-weight:500;font-size:30px;line-height:36px;color:rgba(29,35,46,.88);margin-bottom:.25rem}.stats-card .stats-card-info .stats-card-max{font-weight:400;font-size:13px;line-height:20px;color:rgba(29,35,46,.88);margin-bottom:0}.profile-user-and-themes{display:flex;flex-direction:column;align-items:center;background-color:#fff}.profile-user-and-themes .course-theme{margin-bottom:22px}.profile-user-and-themes .course-theme-content-and-tasks{box-shadow:none}.profile-user-and-themes .course-theme-content-and-tasks .content-block{border:none;padding:30px 10px}.profile-user-and-themes .themes{flex:3}.profile-user-and-themes .next-task{display:flex;flex-direction:column;justify-content:space-between;flex-wrap:wrap;align-items:flex-start;padding-left:25px;border-radius:50px}@media(max-width: 667px){.profile-user-and-themes .next-task{display:none}}.profile-user-and-themes .next-task p{padding:0;margin:0}.profile-user-and-themes .next-task .name{padding:20px 0;min-width:250px;font-size:16px;color:#372662;text-overflow:ellipsis}.profile-user-and-themes .next-task .next-task-label{font-weight:500}.profile-user-and-themes .next-task-button{box-shadow:6px 8px 10px rgba(6,82,78,.15)}.profile-user-and-themes .next-task-button:active,.profile-user-and-themes .next-task-button:hover,.profile-user-and-themes .next-task-button:focus{box-shadow:none}.profile-content{margin-bottom:70px}.profile-edit{display:flex;flex-direction:row;justify-content:space-between}.profile-edit .avatar-wrapper{display:flex;flex-direction:column;margin-right:1.5rem}@media(max-width: 992px){.profile-edit .avatar-wrapper{display:flex;flex-direction:column;align-items:center;width:100%;margin-right:0;margin-bottom:3rem}}@media(max-width: 992px){.profile-edit{flex-direction:column}}.profile-edit .user-forms-wrapper{width:100%}@media(max-width: 992px){.profile-edit .user-forms-wrapper{width:auto}}.profile-edit-card-body{padding:2.5rem}@media(max-width: 667px){.profile-edit-card-body{padding:1.5rem}}.profile-edit-card-body .header{color:#242e33;padding-left:1rem;font-weight:normal;margin-bottom:2rem}@media(max-width: 667px){.profile-edit-card-body .header{margin-bottom:1.5rem}}.profile-edit-card{width:100%;box-shadow:0px 4px 16px rgba(12,43,104,.16),0px 24px 32px rgba(10,46,101,.1)}.change-password-button{padding:0;background-color:rgba(0,0,0,0);border:none;font-weight:500;line-height:18px;font-size:14px;color:#4d9eee}.change-password-button:focus,.change-password-button:active,.change-password-button:hover{outline:none;color:#398adb}.change-password-button-container{display:flex;justify-content:space-between;width:100%}@media(max-width: 667px){.change-password-button-container{flex-wrap:wrap}}.change-password-button-container .change-password-button-profile{width:50%}.change-password-button-container .change-password-button-profile.revoke{margin-right:1.5rem}@media(max-width: 667px){.change-password-button-container .change-password-button-profile{width:100%}.change-password-button-container .change-password-button-profile.revoke{margin-right:0;order:1}.change-password-button-container .change-password-button-profile.change{margin-bottom:2rem}}.profile-discount-button{display:flex;align-items:center}.profile-discount-button .icon{flex-shrink:0;flex-grow:1;margin-right:.25rem}.profile-discount-button .icon svg{width:32px !important;height:32px !important}.profile-discount-button .discount{margin-bottom:2px;font-family:Inter;font-weight:700;font-size:18px;line-height:16px}.profile-discount-button .discount-name{margin-bottom:0;font-family:Inter;font-weight:normal;font-size:10px;line-height:16px}.legal-layout{display:flex;width:100%}@media(max-width: 992px){.legal-layout{flex-direction:column}}.legal-menu{display:flex;flex-direction:column;min-width:200px;max-width:300px;padding:30px;flex:0}@media(max-width: 667px){.legal-menu{padding:30px 0}}.legal-menu a{font-family:Inter;margin-bottom:30px}.legal-content-container{flex:1;padding:5px 30px 30px 30px}@media(max-width: 667px){.legal-content-container{padding:0}}@media(max-width: 667px){.legal-content h1{font-size:18px}}.legal-content ul{list-style:none;margin:0;padding:0 0 0 20px}@media(max-width: 667px){.legal-content ul{padding-left:5px}}.legal-content li{padding:10px 0}.legal-content p{padding:5px}.legal-content li,.legal-content p{line-height:28px}@media(max-width: 667px){.legal-content li,.legal-content p{font-size:14px;line-height:20px}}.not-found-page{display:flex;justify-content:center;align-items:flex-start;background:#73706f;background-image:url("/img/notFound/background.svg");background-position:center;background-size:cover;background-clip:border-box;min-width:100vw;min-height:100vh}.not-found-page .go-to-home{display:flex;margin-top:112px}.not-found-page .go-to-home .btn-shadow{box-shadow:0px 6px 18px rgba(14,39,105,.16),0px 32px 32px rgba(14,39,105,.1)}@media(max-width: 667px){.not-found-page .go-to-home{margin-top:48px}}.oops-page{display:flex;justify-content:center;align-items:flex-start;background:#73706f;background-image:url("/img/oops/background.svg");background-position:center;background-size:cover;background-clip:border-box;min-width:100vw;min-height:100vh}.oops-page .oops-to-home{display:flex;margin-top:112px}.oops-page .oops-to-home .btn-shadow{box-shadow:0px 6px 18px rgba(14,39,105,.16),0px 32px 32px rgba(14,39,105,.1)}@media(max-width: 667px){.oops-page .oops-to-home{margin-top:48px}}.payment-view{background-color:#fff}.payment-type-section{background-color:#f6fcff;padding:56px 0 48px 0}@media(max-width: 667px){.payment-type-section{padding:32px 0 24px 0}}.payment-page-header{padding:2rem 0;background-color:#f6fcff}.payment-page-header .payment-page-header-h1{color:rgba(29,35,46,.88);font-weight:700;font-size:30px;line-height:48px;margin-bottom:0}@media(max-width: 667px){.payment-page-header{padding:1.5rem 0}.payment-page-header .payment-page-header-h1{color:rgba(29,35,46,.88);font-weight:700;font-size:28px;line-height:150%}}.payment-question-section{padding:72px 0;background-color:#fff}@media(max-width: 667px){.payment-question-section{padding:48px 0 56px 0}}.payment-type-block-header{font-style:normal;font-weight:500;font-size:24px;line-height:24px;color:rgba(29,35,46,.88);margin-bottom:1rem;display:flex;flex-direction:row;align-items:center}.payment-type-block-header .header-gradient{margin-left:.5rem;margin-right:.5rem;font-weight:500;font-size:24px;line-height:24px}.payment-type-block-description{font-size:16px;line-height:24px;color:rgba(15,38,77,.48);margin-bottom:1rem}.payment-type-block-additional-description{font-size:16px;line-height:24px;color:rgba(15,38,77,.48);margin-bottom:1.5rem}@media(max-width: 667px){.payment-type-block-additional-description{margin-bottom:1rem}}.payment-type-card{border-radius:1.25rem;-moz-border-radius:1.25rem;-webkit-border-radius:1.25rem;margin-bottom:1.5rem;border:.25rem solid rgba(0,0,0,0)}.payment-type-card.YEAR{box-sizing:border-box;border:.25rem solid #20cc99}.payment-type-card .payment-type-card-body{display:flex;flex-direction:column;height:100%;padding:2.5rem}@media(max-width: 667px){.payment-type-card .payment-type-card-body{padding:1.5rem}}.payment-type-card .payment-type-card-header{font-weight:500;font-size:30px;line-height:36px;color:rgba(29,35,46,.88);margin-bottom:1rem}.payment-type-card .payment-type-card-description{font-size:18px;line-height:150%;color:rgba(15,38,77,.48);margin-bottom:3rem}@media(max-width: 667px){.payment-type-card .payment-type-card-description{margin-bottom:2rem;font-size:16px}}.payment-type-card .payment-type-card-price{display:flex;flex-direction:column;align-items:flex-start;margin-bottom:1.5rem}@media(max-width: 667px){.payment-type-card .payment-type-card-price{margin-bottom:1rem}}.payment-type-card .payment-type-card-price .payment-type-card-price-old{font-weight:400;font-size:24px;line-height:28px;text-decoration:line-through;color:#a8b2c4;margin-right:.25rem}@media(max-width: 667px){.payment-type-card .payment-type-card-price .payment-type-card-price-old{font-size:20px}}.payment-type-card .payment-type-card-price .payment-type-card-price-discount-percent{color:#127457;background-color:#dff6ed;padding:.25rem .5rem;border-radius:1.25rem;font-size:16px;line-height:20px}@media(max-width: 667px){.payment-type-card .payment-type-card-price .payment-type-card-price-discount-percent{font-size:14px}}.payment-type-card .payment-type-card-price .payment-type-card-price-discount-from-subject{color:#f56a00;background-color:#fff8e1;padding:.25rem .5rem;border-radius:1.25rem;font-size:16px;line-height:20px}@media(max-width: 667px){.payment-type-card .payment-type-card-price .payment-type-card-price-discount-from-subject{font-size:14px}}.payment-type-card .payment-type-card-price .payment-type-card-price-main{font-weight:700;font-size:58px;line-height:44px;color:rgba(32,76,149,.88);margin-right:.5rem}@media(max-width: 667px){.payment-type-card .payment-type-card-price .payment-type-card-price-main{font-size:52px}}.payment-type-card .payment-type-card-price .payment-type-card-price-time{font-weight:500;font-size:24px;line-height:20px;color:rgba(32,76,149,.88)}@media(max-width: 667px){.payment-type-card .payment-type-card-price .payment-type-card-price-time{font-size:20px}}.payment-type-card .payment-type-card-buttons{flex-grow:1;margin-bottom:1.5rem}@media(max-width: 667px){.payment-type-card .payment-type-card-buttons{margin-bottom:1rem}}.payment-type-card .payment-type-card-notice{font-weight:400;font-size:13px;line-height:20px;color:rgba(15,38,77,.48);margin-bottom:0}.payment-question-header{font-weight:700;font-size:1.875rem;line-height:3rem;margin-bottom:1.5rem}.payment-page-info{padding:2rem 0}.payment-page-info .payment-page-info-title{font-weight:500;font-size:24px;line-height:150%;color:rgba(29,35,46,.88);margin-bottom:.5rem}.payment-page-info .payment-page-info-description{font-weight:400;font-size:16px;line-height:24px;color:rgba(15,38,77,.48);margin-bottom:0}@media(max-width: 667px){.payment-page-info{padding:1.5rem 0}}.pay-coins-modal-img{width:200px;height:200px;margin-bottom:1rem}@media(max-width: 667px){.pay-coins-modal-img{width:120px;height:120px}}.pay-coins-modal-footer{width:100%;display:flex;flex-direction:row;justify-content:flex-end}.pay-coins-modal-footer>:first-child{margin-right:1rem;margin-bottom:0}@media(max-width: 667px){.pay-coins-modal-footer>:first-child{margin-right:0;margin-bottom:1rem}}@media(max-width: 667px){.pay-coins-modal-footer{flex-direction:column;justify-content:flex-start}}.subscription-card-wrapper{display:flex;flex-direction:column;align-items:center;width:288px}.subscription-card{padding:.5rem 0 0 .5rem;background-color:#fff;box-shadow:0px 4px 16px rgba(12,43,104,.16),0px 24px 32px rgba(10,46,101,.1);border-radius:1.25rem;display:flex;flex-direction:row;justify-content:flex-start;align-items:flex-start;transition:all 150ms;width:100%}.subscription-card:hover{box-shadow:0px 1px 2px rgba(14,39,105,.16),0px 1px 3px rgba(14,39,105,.1)}.subscription-card .subscription-card-info{margin-left:.5rem;padding:.5rem 1rem 1rem 0}.subscription-card .subscription-card-info .subscription-card-name{color:rgba(29,35,46,.88);font-weight:500;font-size:14px;line-height:17px;margin-bottom:.5rem}.subscription-card .subscription-card-info .subscription-card-description{color:rgba(29,35,46,.88);font-weight:400;font-size:12px;line-height:16px;margin-bottom:.75rem}.subscription-card .subscription-card-info .subscription-card-active-name{color:rgba(29,35,46,.88);font-weight:400;font-size:14px;line-height:20px;margin-bottom:.25rem}.subscription-card .subscription-card-info .subscription-card-active-description{color:rgba(29,35,46,.88);font-weight:500;font-size:16px;line-height:19px;margin-bottom:0}.subscription-history .subscription-history-item{border-bottom:1px rgba(168,186,217,.4) solid;padding-bottom:.75rem;margin-bottom:.75rem}.subscription-history .subscription-history-item .subscription-history-item-interval{font-weight:500;font-size:16px;line-height:24px;margin-bottom:.25rem;color:rgba(29,35,46,.88)}.subscription-history .subscription-history-item .subscription-history-item-description{font-weight:400;font-size:16px;line-height:24px;margin-bottom:.25rem;color:rgba(29,35,46,.88)}.subscription-history .subscription-history-item .subscription-history-item-time{font-weight:400;font-size:13px;line-height:16px;color:rgba(15,38,77,.48);margin-bottom:.25rem}.subscription-history :last-child{padding-bottom:0;margin-bottom:0;border-bottom:none}.subscription-view{background-color:#f6fcff}.work-in-progress-page{display:flex;flex-direction:column;align-items:center;padding:96px 0}.work-in-progress-page .header{margin-bottom:2rem;text-align:center;font-weight:500;font-size:24px;color:#8a94a6}@media(max-width: 667px){.work-in-progress-page{padding:56px 0}.work-in-progress-page .waiting-image{width:250px;height:250px}}.payment-status-page{display:flex;flex-direction:column;align-items:center;padding:96px 0}.payment-status-page .payment-status-wrapper{display:flex;flex-direction:column;align-items:center;width:288px}@media(max-width: 667px){.payment-status-page .payment-status-wrapper{width:100%}}.payment-status-page .header{margin-bottom:1.5rem;text-align:center;font-weight:500;font-size:18px;line-height:150%;color:rgba(29,35,46,.88)}.payment-status-page .header.pending{margin-bottom:1rem}.payment-status-page .description{text-align:center;color:rgba(15,38,77,.48);margin-bottom:1.5rem}@media(max-width: 667px){.payment-status-page{padding:56px 0}.payment-status-page .image{width:200px;height:200px}}.article-list-header{display:flex;flex-direction:column;justify-content:flex-start;align-items:center;color:#fff;text-align:center;padding:2.5rem 0}.article-list-header .article-list-header-image{height:180px;width:180px}@media(max-width: 667px){.article-list-header{padding:1.5rem 0}.article-list-header .article-list-header-image{height:96px;width:96px}}.article-list-header .article-list-header-title{font-family:Inter;font-weight:500;font-size:1.875rem;line-height:150%;margin-bottom:.5rem;color:rgba(29,35,46,.88)}@media(max-width: 667px){.article-list-header .article-list-header-title{font-size:1.5rem}}.article-list-header .article-list-header-description{font-family:Inter;font-weight:400;font-size:1rem;line-height:150%;margin-bottom:0;color:rgba(15,38,77,.48)}@media(max-width: 667px){.article-list-header .article-list-header-description{font-size:.875rem}}.article-list-page{width:100%;display:flex;flex-direction:column;align-items:start;padding-left:0}.article-list-page .section-list{list-style-type:none;margin-bottom:2rem}.article-list-page-padding{padding-bottom:4rem}@media(max-width: 667px){.article-list-page-padding{padding-bottom:3.5rem}}.article-list-search-panel{padding:0;margin-bottom:1.5rem;width:100%}.article-section .section-name{font-family:"Inter",serif;font-weight:700;font-size:30px;line-height:48px;color:#474d58;margin-bottom:1.5rem}.article-section .list{padding-left:0;padding-top:.75rem;padding-bottom:1.5rem}@media(max-width: 667px){.article-section .list{padding-top:.5rem;padding-bottom:1rem}}.article-section .list.is-inner-article{padding-top:.5rem;padding-bottom:1rem}.article-section .article-name{margin-bottom:1rem;margin-left:2rem;font-weight:400;font-size:1.125rem;line-height:150%;color:rgba(29,35,46,.88)}@media(max-width: 667px){.article-section .article-name{font-size:1rem}}.article-section .article-name.is-inner-article{font-size:1rem}@media(max-width: 667px){.article-section .article-name.is-inner-article{font-size:.875rem}}.article-section .article-name:last-child{margin-bottom:0}.article-section .article-name{list-style-type:none}.article-section .article-name .article-name-link{text-decoration:none;color:rgba(29,35,46,.88)}.article-section .article-name .article-name-link:hover{text-decoration:none;cursor:pointer;color:#3c94f2}@media(max-width: 667px){.article-section .article-name .article-name-link:hover{color:rgba(29,35,46,.88)}}.article-section .article-name .article-name-link.is-active{color:#3c94f2}.article-section .article-name .article-name-announce{color:#a8b2c4;cursor:default;margin-right:1rem}.collapse-label{font-family:"Inter";font-style:normal;font-weight:500;color:rgba(29,35,46,.88);line-height:150%;font-size:1.375rem !important}.collapse-label.is-question{font-weight:500;font-size:20px !important;line-height:150%}.collapse-label.is-inner-article{font-size:1.125rem !important}@media(max-width: 667px){.collapse-label{font-size:1.125rem !important}.collapse-label.is-inner-article{font-size:1rem !important}}.collapse-label-hover:hover{cursor:pointer}.collapse-label-hover:hover .cw-label{color:#3c94f2}@media(max-width: 667px){.collapse-label-hover:hover .cw-label{color:rgba(29,35,46,.88)}}.article-view-first-col{display:flex;flex-direction:column;padding-top:2rem;padding-right:1rem;border-right:1px rgba(168,186,217,.4) solid;width:100%;position:fixed;top:57px}@media(max-width: 992px){.article-view-first-col{display:none !important}}.scroll-off{overflow-y:hidden !important;overflow-x:hidden !important}.ac-modal-mobile{z-index:1500;position:fixed !important;height:100% !important}.article-section-nav{height:100%;overflow-x:hidden;overflow-y:auto;display:flex;flex-direction:column}@supports(scrollbar-gutter: stable){.article-section-nav{scrollbar-gutter:stable}}.article-section-nav .article-section-nav-list{width:100%;display:flex;flex-direction:column;align-items:start;margin:0;padding:0}.article-section-nav .article-section-nav-list .article-section-nav-list-item{list-style-type:none}.article-section-nav-search{padding:0;margin-bottom:1rem}.article-section-nav-mobile-modal{width:100% !important;max-width:none !important;height:100%;margin:0;padding:0;border-radius:0;box-shadow:none;overflow-y:hidden;overflow-x:hidden}.article-section-nav-mobile-modal .article-section-nav-mobile-modal-wrapper{height:100%;display:flex;flex-direction:column}.article-section-nav-mobile-modal .article-section-nav-mobile-modal-wrapper .article-section-nav-mobile-modal-header{padding:1rem 1.5rem .5rem 1.5rem}.article-section-nav-mobile-modal .article-section-nav-mobile-modal-wrapper .article-section-nav-mobile-modal-body{height:100%;max-height:none;padding-bottom:2rem}.article-section-nav-mobile-modal .article-section-nav-mobile-modal-wrapper .article-section-nav-mobile-modal-body .article-section-nav-mobile-modal-content{padding-right:1rem;padding-left:1rem}.article-section-nav-mobile-list{width:100%;display:flex;flex-direction:column;align-items:start;margin:0;padding:0}.article-section-nav-mobile-list .article-section-nav-mobile-list-item{list-style-type:none;width:100%}.article-section-nav-mobile-search{padding:0;margin-bottom:.5rem}.section-nav-open-button{display:none}@media(max-width: 992px){.section-nav-open-button{display:flex;align-items:center;justify-content:center;z-index:1600;position:fixed;bottom:40px;height:40px;width:40px;right:16px;border-radius:.625rem;padding:.5rem;box-shadow:0px 6px 18px rgba(14,39,105,.16),0px 32px 32px rgba(14,39,105,.1);background-color:#fff}}.article-buttons{display:flex;justify-content:space-between}.article-buttons .article-button-direction-left{margin-right:1rem}@media(max-width: 667px){.article-buttons .article-button-direction-left{margin-right:0}}@media(max-width: 667px){.article-buttons{flex-wrap:wrap}}@media(max-width: 1200px){.article-view-third-col{display:none}}.article-view-nav{position:sticky;top:81px;display:flex;flex-direction:column;justify-content:flex-start;height:400px}.article-task-list{list-style-type:none;padding:0;margin:0}.article-task-list.is-mobile{display:none}@media(max-width: 1200px){.article-task-list.is-mobile{display:block}}.article-nav{display:flex;flex-direction:column;list-style-type:none;padding:0;margin:0 0 1.5rem 0}.article-nav.is-mobile{display:none}@media(max-width: 1200px){.article-nav.is-mobile{display:block}}.article-content{margin-bottom:2rem}.article-view-name{font-weight:700;color:#474d58;font-size:1.875rem;line-height:3rem}@media(max-width: 992px){.article-view-name{font-size:1.625rem;line-height:2rem}}.article-not-article{padding-top:5rem}@media(max-width: 667px){.article-not-article{padding-top:2.5rem;line-height:2rem}}.no-certificate-container{margin:0 0 3rem 0;display:flex;flex-direction:column;align-items:center}@media(max-width: 667px){.no-certificate-container{margin:0 0 2rem 0}}.certificate-container-wrapper{width:100%;height:100%;background-color:#f6fcff;display:flex;flex-direction:column;flex-grow:1}@media(max-width: 667px){.certificate-page-container{padding:0}}@media print{.certificate-container{margin:0;padding:0;width:21cm;height:29.7cm}}.certificate-container{margin-bottom:72px;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}@media(max-width: 667px){.certificate-container{margin-bottom:48px}}.certificate-container .certificate-buttons{margin-bottom:2rem;width:872px;display:flex;flex-direction:row;justify-content:flex-start}@media(max-width: 992px){.certificate-container .certificate-buttons{padding:0 1rem;justify-content:flex-start;width:100%}}@media(max-width: 667px){.certificate-container .certificate-buttons{margin-bottom:1.5rem}}.certificate-container .certificate{display:flex;flex-direction:column;padding:90px 120px 70px;border-radius:40px;width:872px;height:1212px;background-image:url("/img/certificate/certificate-bg.svg");background-repeat:no-repeat;background-size:contain;background-position:center;box-shadow:0px 8px 32px rgba(20,59,105,.12),0px 56px 56px rgba(18,61,125,.08)}@media(max-width: 667px){.certificate-container .certificate{padding:1.5rem;width:100%;height:auto}}@media(max-width: 992px){.certificate-container .certificate{background:none;background-color:#fff}}@media print{.certificate-container .certificate{margin:0;width:100vh;height:auto;box-shadow:none;border-radius:0;background-position:0 0;background-size:21cm 29.7cm;background-clip:border-box}}.certificate-container .certificate .logo-wrapper{display:flex;flex-direction:row;justify-content:flex-start;margin-bottom:2rem;width:100%}.certificate-container .certificate .logo-wrapper .logo{width:344px;height:44px;margin-bottom:0}@media(max-width: 667px){.certificate-container .certificate .logo-wrapper{justify-content:center;margin-bottom:1.5rem}.certificate-container .certificate .logo-wrapper .logo{width:102px;height:13px}}.certificate-container .certificate .header{margin-bottom:1.5rem;padding:1.5rem 0;border-top:1px rgba(168,186,217,.4) solid;border-bottom:1px rgba(168,186,217,.4) solid;font-family:Montserrat,sans-serif;font-weight:700;font-size:71px;line-height:87px;color:#0c3366;text-transform:uppercase}@media(max-width: 667px){.certificate-container .certificate .header{padding:.5rem 0;font-size:36px;line-height:44px}}.certificate-container .certificate .confirm{font-family:"Inter";font-style:normal;font-weight:400;font-size:20px;color:rgba(29,35,46,.88);margin-bottom:.5rem}@media(max-width: 667px){.certificate-container .certificate .confirm{font-size:14px;line-height:17px}}.certificate-container .certificate .confirm-fio{font-family:"Inter";font-style:normal;font-weight:700;font-size:48px;color:rgba(29,35,46,.88);margin-bottom:2rem}@media(max-width: 667px){.certificate-container .certificate .confirm-fio{font-size:32px;line-height:39px}}.certificate-container .certificate .course-name{font-family:"Inter";font-style:normal;font-weight:400;font-size:20px;line-height:150%;color:#474d58;margin-bottom:2rem}@media(max-width: 667px){.certificate-container .certificate .course-name{font-size:16px;line-height:150%}}.certificate-container .certificate .theme-header{font-family:"Inter";font-style:normal;font-weight:400;font-size:20px;color:rgba(29,35,46,.88);margin-bottom:1rem}@media(max-width: 667px){.certificate-container .certificate .theme-header{font-size:16px;line-height:19px}}.certificate-container .certificate .theme-list-wrapper{display:flex;flex-direction:row;justify-content:flex-start}.certificate-container .certificate .theme-list-wrapper .theme-list-first{width:50%;margin:0 1.5rem 0 0;padding:0;list-style:none;display:flex;flex-direction:column;align-content:flex-start;align-items:flex-start;max-height:480px}@media(max-width: 667px){.certificate-container .certificate .theme-list-wrapper .theme-list-first{margin-right:0;max-height:none;width:100%}}.certificate-container .certificate .theme-list-wrapper .theme-list-second{width:50%;margin:0;padding:0;list-style:none;display:flex;flex-direction:column;align-content:flex-start;align-items:flex-start;max-height:480px}@media(max-width: 667px){.certificate-container .certificate .theme-list-wrapper .theme-list-second{margin-top:1rem;margin-right:0;max-height:none;width:100%}}.certificate-container .certificate .theme-list-wrapper{margin-bottom:3rem}@media(max-width: 667px){.certificate-container .certificate .theme-list-wrapper{flex-direction:column}}.certificate-container .certificate .theme{margin-bottom:1rem;margin-right:1.5rem}.certificate-container .certificate .theme:last-child{margin-bottom:0}.certificate-container .certificate .theme .theme-name{margin-bottom:0;color:rgba(29,35,46,.88);font-family:"Inter";font-style:normal;font-weight:500;font-size:15px}.certificate-container .certificate .theme .see-answers,.certificate-container .certificate .theme .solve-himself{font-family:"Inter";font-style:normal;font-weight:400;font-size:12px;line-height:15px;margin-bottom:0}.certificate-container .certificate .theme .solve-himself{color:#1baf83}.certificate-container .certificate .theme .see-answers{color:#a8b2c4}.certificate-container .certificate .check-url{font-family:"Inter";font-style:normal;font-weight:400;font-size:12px;line-height:15px;color:#8a94a6;margin-bottom:.25rem}.certificate-container .certificate .check-url-a{font-family:"Inter";font-style:normal;font-weight:400;font-size:13px;line-height:16px;margin-bottom:0}.certificate-container .date{margin:.75rem 0 0;font-size:15px;line-height:150%;color:rgba(29,35,46,.88);font-family:"Inter"}.certificate-question-wrapper{padding:72px 0;background-color:#fff}@media(max-width: 667px){.certificate-question-wrapper{padding:48px 0 56px 0}}.certificate-question-header{color:rgba(29,35,46,.88);font-weight:700;font-size:1.625rem;line-height:2rem;margin-bottom:1.5rem}.marathon-header-background{margin-bottom:3rem;background-color:#2351a5;background:linear-gradient(90deg, #C95772 0%, #2351A5 100%)}.marathon-header-content{display:flex;align-items:center;padding-top:3rem;padding-bottom:3rem;color:#fff}@media(max-width: 667px){.marathon-header-content{flex-direction:column}}.marathon-header-content .marathon-header-with-icon{display:flex;align-items:center;flex-grow:1;margin-right:2rem}@media(max-width: 667px){.marathon-header-content .marathon-header-with-icon{margin-bottom:1.5rem}}.marathon-header-content .marathon-header{font-family:Inter;font-weight:700;font-size:30px;line-height:48px;margin-bottom:0}@media(max-width: 667px){.marathon-header-content .marathon-header{font-size:22px;line-height:30px}}.marathon-section{margin-bottom:3rem}.marathon-condition{display:flex;align-items:flex-start;padding:1rem;margin-bottom:1.5rem;border-radius:16px;box-shadow:0 4px 10px rgba(10,54,106,.16),0 16px 24px rgba(10,48,104,.1);font-size:18px;line-height:32px}.marathon-condition:last-child{margin-bottom:0}@media(max-width: 667px){.marathon-condition{font-size:14px;line-height:22px}}.marathon-condition-header{font-weight:500}.marathon-social-links{display:flex;justify-content:flex-start}@media(max-width: 667px){.marathon-social-links{justify-content:center}}.marathon-social-link{margin-right:2.5rem}.marathon-social-link:last-child{margin-right:0}.marathon-certificate-example{width:1212px;height:699px}@media(max-width: 1200px){.marathon-certificate-example{width:100%;height:auto}}.code-editor{height:100%;display:flex;flex-direction:column;background-color:#fff}.code-editor .code-editor-textarea:focus{outline:none;border:none}.code-editor{counter-reset:line}.code-editor #EDITOR_TEXTAREA_ID{outline:none;padding-left:56px !important;font-size:14px !important;line-height:24px !important;z-index:5}.code-editor pre{font-size:14px !important;line-height:24px !important;padding-left:56px !important;z-index:1}.code-editor pre .number-span{background-color:#f3f6f9}.code-editor pre :nth-child(n){background-color:rgba(0,0,0,0)}.code-editor pre .text-span{display:inline-block;width:100%;padding-left:56px !important}.code-editor pre .text-span.selected{background-color:#f3f6f9}.code-editor .hidden-span{display:none !important}.code-editor .selected-span{position:absolute;height:24px;left:0;width:100%;background-color:#f3f6f9 !important;z-index:-1}.code-editor .editorLineNumber{position:absolute;left:0;padding-right:8px;display:flex;align-items:center;justify-content:flex-end;color:rgba(15,38,77,.48);background-color:#f3f6f9 !important;text-align:right;width:48px;font-weight:100}.editor-placeholder-wrapper{width:100%;position:relative}.editor-placeholder-wrapper .editor-placeholder{position:absolute;left:0;width:48px;background-color:#f3f6f9;height:100%}.button-task{box-shadow:0px 4px 10px rgba(10,54,106,.16),0px 16px 24px rgba(10,48,104,.1);background-color:#f6fcff;border-radius:20px;transition:all 150ms;padding:.75rem 1rem .75rem .75rem;display:flex;flex-direction:row;align-items:start;justify-content:flex-start}.button-task .button-task-text-wrapper{display:flex;flex-direction:column}.button-task .button-task-text-wrapper .button-task-text-name{font-weight:400;font-size:14px;line-height:24px;color:#8a94a6;margin-bottom:.25rem}.button-task .button-task-text-wrapper .button-task-text-description{font-weight:400;font-size:14px;line-height:20px;color:#474d58;margin-bottom:0}.button-task:hover{box-shadow:0px 1px 2px rgba(14,39,105,.16),0px 1px 3px rgba(14,39,105,.1)}.anchor-item{padding:0;margin:0;display:flex;flex-direction:row;border-left:2px solid #f3f6f9}.anchor-item.active{border-color:#3c94f2}.anchor-item .anchor-item-name{font-weight:400;font-size:14px;line-height:24px;color:#474d58;margin-bottom:0}.anchor-item .anchor-item-name.active{color:#3c94f2}.anchor-item:hover .anchor-item-name{color:#3c94f2}.anchor-item:hover{cursor:pointer}.empty-list{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;padding-bottom:1.5rem}.empty-list .empty-list-img{margin-bottom:1rem;width:18rem;height:18rem}@media(max-width: 667px){.empty-list .empty-list-img{width:12.5rem;height:12.5rem}}.empty-list .empty-list-img.is-mobile{width:12.5rem;height:12.5rem}.empty-list .empty-list-wrapper{display:flex;flex-direction:column;width:18rem}@media(max-width: 667px){.empty-list .empty-list-wrapper{width:100%}}.empty-list .empty-list-wrapper.is-mobile{width:12.5rem}.empty-list .empty-list-wrapper .empty-list-title{font-weight:500;font-size:1.125rem;line-height:150%;color:rgba(29,35,46,.88);text-align:center;margin-bottom:0}.empty-list .empty-list-wrapper .empty-list-description{font-size:.875rem;line-height:150%;color:rgba(15,38,77,.48);text-align:center;margin-top:.5rem;margin-bottom:0}.empty-list .empty-list-wrapper .empty-list-button{margin-top:1.5rem;margin-bottom:0}.profile-view-header{width:100%;padding:2rem 0;background-color:#f6fcff}.profile-view-header .profile-view-header-h1{color:rgba(29,35,46,.88);font-weight:700;font-size:30px;line-height:48px;margin-bottom:0}@media(max-width: 667px){.profile-view-header{padding:1.5rem 0}.profile-view-header .profile-view-header-h1{color:rgba(29,35,46,.88);font-weight:700;font-size:28px;line-height:150%}}.profile-view-header .profile-view-header-p{font-family:"Inter";color:rgba(15,38,77,.48);font-weight:400;font-size:16px;line-height:24px;margin-bottom:0}.coins-view{width:100%;background-color:#f6fcff}.coins-view .coins-view-wallet{width:100%;padding:0 0 4.5rem 0}.coins-view .coins-view-wallet .coins-view-wallet-h2{color:rgba(29,35,46,.88);font-weight:500;font-size:24px;line-height:150%;margin-bottom:1.5rem}@media(max-width: 667px){.coins-view .coins-view-wallet{padding:0 0 3rem 0}}.coins-view .coins-view-how-get{width:100%;padding:0 0 4.5rem 0}.coins-view .coins-view-how-get .coins-view-how-get-h2{color:rgba(29,35,46,.88);font-weight:500;font-size:24px;line-height:150%;margin-bottom:1.5rem}.coins-view .coins-view-how-get .coins-view-how-get-p{color:rgba(29,35,46,.88);font-weight:400;font-size:18px;line-height:150%;margin-bottom:0}@media(max-width: 667px){.coins-view .coins-view-how-get .coins-view-how-get-p{font-size:16px}}@media(max-width: 667px){.coins-view .coins-view-how-get{padding:0 0 1rem 0}}.coins-view .coins-view-info-block{display:flex;flex-direction:row;align-items:center}.coins-view .coins-view-info-block img{margin-right:1rem}@media(max-width: 667px){.coins-view .coins-view-info-block{flex-direction:column;align-items:flex-start;margin-bottom:2rem}.coins-view .coins-view-info-block img{margin-right:0;margin-bottom:.5rem}}.coins-view .coins-view-how-use{width:100%;padding:0 0 4.5rem 0}.coins-view .coins-view-how-use .coins-view-how-use-h2{color:rgba(29,35,46,.88);font-weight:500;font-size:24px;line-height:150%;margin-bottom:1.5rem}.coins-view .coins-view-how-use .coins-view-how-use-p{color:rgba(29,35,46,.88);font-weight:400;font-size:18px;line-height:150%;margin-bottom:0}@media(max-width: 667px){.coins-view .coins-view-how-use .coins-view-how-use-p{font-size:16px}}@media(max-width: 667px){.coins-view .coins-view-how-use{padding:0 0 1rem 0}}.coins-view-questions{padding-top:72px;padding-bottom:72px;width:100%}@media(max-width: 667px){.coins-view-questions{padding-top:48px;padding-bottom:56px}}.coins-view-questions-header{font-weight:700;font-size:1.625rem;line-height:2rem;color:rgba(29,35,46,.88);margin-bottom:1.5rem}.coins-card-wrapper{display:flex;flex-direction:column;align-items:center;max-width:200px}.coins-card{position:relative;padding:1rem;background-color:#fff;box-shadow:0px 4px 16px rgba(12,43,104,.16),0px 24px 32px rgba(10,46,101,.1);border-radius:1.25rem;transition:all 150ms;width:100%}.coins-card .coins-card-bg{position:absolute;top:0;right:0}.coins-card .coins-card-header{font-weight:500;font-size:14px;line-height:16px;color:rgba(29,35,46,.88)}.coins-card .coins-card-conversion{font-weight:400;font-size:12px;line-height:16px;color:rgba(29,35,46,.88)}.coins-card .coins-card-coins{margin-left:.25rem;color:rgba(29,35,46,.88);font-weight:400;font-size:30px;line-height:32px}.coins-card .coins-card-missing{font-weight:400;font-size:13px;line-height:16px;color:rgba(15,38,77,.48)}.coins-card:hover{box-shadow:0px 1px 2px rgba(14,39,105,.16),0px 1px 3px rgba(14,39,105,.1)}.coins-history .coins-history-item{border-bottom:1px rgba(168,186,217,.4) solid;padding-bottom:.75rem;margin-bottom:.75rem}.coins-history .coins-history-item .coins-history-item-coins{font-weight:500;font-size:16px;line-height:24px;margin-bottom:.25rem}.coins-history .coins-history-item .coins-history-item-coins.add{color:#1baf83}.coins-history .coins-history-item .coins-history-item-coins.subtract{color:rgba(29,35,46,.88)}.coins-history .coins-history-item .coins-history-item-description{font-weight:500;font-size:16px;line-height:24px;margin-bottom:.25rem;color:rgba(29,35,46,.88)}.coins-history .coins-history-item .coins-history-item-time{font-weight:400;font-size:13px;line-height:16px;color:rgba(15,38,77,.48);margin-bottom:.25rem}.coins-history .coins-history-item .coins-history-item-coins-before{font-weight:400;font-size:13px;line-height:16px;color:rgba(15,38,77,.48);margin-bottom:0}.coins-history :last-child{padding-bottom:0;margin-bottom:0;border-bottom:none}.achievement-view{width:100%}.achievement-view .achievement-view-list-wrapper{background-color:#fff;padding-bottom:2rem}.achievement-view .achievement-view-list-wrapper .achievement-view-list{padding:2rem 0 1rem 0}.achievement-view .achievement-view-list-wrapper .achievement-view-list .achievement-view-list-h1{font-family:"Inter";color:rgba(29,35,46,.88);font-weight:500;font-size:24px;line-height:150%;margin-bottom:1.5rem}.achievement-view .achievement-view-list-wrapper .achievement-view-list .achievement-view-list-item{margin-bottom:1.5rem}@media(max-width: 667px){.achievement-view .achievement-view-list-wrapper .achievement-view-list .achievement-view-list-item{margin-bottom:1rem}}@media(max-width: 667px){.achievement-view .achievement-view-list-wrapper .achievement-view-list{padding:2rem 0 1.5rem 0}}@media(max-width: 667px){.achievement-view .achievement-view-list-wrapper{padding-bottom:2.5rem}}.achievement-toast-content-header{font-family:"Inter";color:rgba(15,38,77,.48);font-weight:400;font-size:13px;line-height:16px}.achievement-toast-content-name{font-family:"Inter";font-weight:500;font-size:14px;line-height:18px;color:rgba(29,35,46,.88)}.achievement-toast-content-coin{font-family:"Inter";color:rgba(29,35,46,.88);font-weight:400;font-size:13px;line-height:16px}.subscription-toast-content-name{font-family:"Inter";color:rgba(29,35,46,.88);font-weight:500;font-size:16px;line-height:150%}.achievement-card{display:flex;flex-direction:row;align-items:flex-start;background:#fff;box-shadow:0px 2px 3px rgba(14,39,105,.16),0px 4px 12px rgba(11,52,113,.1);border-radius:20px;opacity:.7;transition:all 150ms}.achievement-card.completed{opacity:1;box-shadow:0px 4px 16px rgba(12,43,104,.16),0px 24px 32px rgba(10,46,101,.1)}.achievement-card.completed:hover{box-shadow:0px 1px 2px rgba(14,39,105,.16),0px 1px 3px rgba(14,39,105,.1)}.achievement-card .achievement-card-img{width:120px;height:120px;margin-right:.5rem}.achievement-card .achievement-card-info{display:flex;flex-direction:column;justify-content:flex-start;width:100%;padding:1rem 1rem 1rem 0;height:100%}.achievement-card .achievement-card-info .achievement-card-info-header{font-family:"Inter";color:rgba(29,35,46,.88);font-weight:500;font-size:16px;line-height:150%;margin-bottom:.5rem}@media(max-width: 667px){.achievement-card .achievement-card-info .achievement-card-info-header{font-size:14px}}.achievement-card .achievement-card-info .achievement-card-info-description{font-family:"Inter";color:rgba(15,38,77,.48);font-weight:400;font-size:14px;line-height:150%;margin-bottom:.5rem;flex-grow:1}@media(max-width: 667px){.achievement-card .achievement-card-info .achievement-card-info-description{font-size:13px}}.achievement-card .achievement-card-info .achievement-card-coins{display:flex;flex-direction:row;justify-content:flex-start;font-family:"Inter";color:rgba(29,35,46,.88);font-weight:400;font-size:16px;line-height:24px}@media(max-width: 667px){.achievement-card .achievement-card-info .achievement-card-coins{font-size:14px}}.achievement-card .achievement-card-info .achievement-card-coins .achievement-card-coins-default{display:flex;flex-direction:row;align-items:center}.achievement-card .achievement-card-info .achievement-card-coins .achievement-card-coins-additional{display:flex;flex-direction:row;align-items:center;background:#ffecb3;border-radius:24px;padding:.25rem;margin-bottom:0}.achievement-card .achievement-card-info .achievement-card-coins .achievement-card-coins-additional .achievement-card-coins-additional-signature{color:rgba(29,35,46,.88);font-weight:400;font-size:13px;line-height:20px;margin-left:.25rem}@media(max-width: 667px){.achievement-card .achievement-card-info .achievement-card-coins .achievement-card-coins-additional .achievement-card-coins-additional-signature{font-size:14px}}@media(max-width: 667px){.achievement-card .achievement-card-img{width:96px;height:96px}}.achievement-block{width:100%;padding:2rem 0 0 0}.achievement-block.background-white{background-color:#fff}.achievement-block .achievement-block-h2{font-family:"Inter";color:rgba(29,35,46,.88);font-weight:500;font-size:24px;line-height:150%;margin-bottom:1.5rem}@media(max-width: 667px){.achievement-block{padding:1.5rem 0 0 0}}.achievement-block.padding-bottom{padding-bottom:2rem}@media(max-width: 667px){.achievement-block.padding-bottom{padding-bottom:1.5rem}}

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