.confirm-dialog-overlay{position:fixed;inset:0;z-index:2100 !important;background:rgba(16,24,40,.45) !important;display:flex;align-items:center;justify-content:center;padding:24px;overflow:auto}.confirm-dialog{position:relative;width:100%;max-width:420px;margin:auto;background:#fff;border:1px solid #e4e8ee;border-radius:16px;box-shadow:0 12px 32px rgba(16,24,40,.18);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;color:#1f2733;outline:none;transform:none;height:auto;overflow:hidden}.confirm-dialog__head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding:20px 20px 12px}.confirm-dialog__title{margin:0;font-size:18px;font-weight:700;line-height:1.3;color:#1f2733}.confirm-dialog__close{flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;margin:-4px -4px 0 0;border:none;border-radius:8px;background:rgba(0,0,0,0);color:#98a2b3;cursor:pointer;transition:background .16s ease,color .16s ease}.confirm-dialog__close svg{width:20px;height:20px}.confirm-dialog__close:hover{background:#f1f5f4;color:#1f2733}.confirm-dialog__body{padding:0 20px 20px}.confirm-dialog__message{margin:0;font-size:15px;line-height:1.5;color:#667085;white-space:pre-wrap;word-break:break-word}.confirm-dialog__actions{display:flex;justify-content:flex-end;gap:12px;padding:16px 20px 20px;border-top:1px solid #e4e8ee;background:#f8fafb}.confirm-dialog__btn{display:inline-flex;align-items:center;justify-content:center;min-width:96px;height:40px;padding:0 16px;border-radius:12px;border:1px solid rgba(0,0,0,0);font-family:inherit;font-size:14px;font-weight:600;cursor:pointer;transition:background .16s ease,border-color .16s ease,color .16s ease,box-shadow .16s ease}.confirm-dialog__btn--ghost{background:#fff;color:#1f2733;border-color:#d0d5dd}.confirm-dialog__btn--ghost:hover{background:#f1f5f4}.confirm-dialog__btn--primary{background:#34c975;color:#fff}.confirm-dialog__btn--primary:hover{background:#2bb367}.confirm-dialog__btn--danger{background:#ef4444;color:#fff}.confirm-dialog__btn--danger:hover{background:#dc2626}@media only screen and (max-width: 460px){.confirm-dialog-overlay{padding:16px;align-items:flex-end}.confirm-dialog{max-width:none}.confirm-dialog__actions{flex-direction:column-reverse}.confirm-dialog__actions .confirm-dialog__btn{width:100%}}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

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

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

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

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

/*# sourceMappingURL=ReactToastify.css.map */
.registration-form .input_label_parag span{position:relative}.registration-form .input_label_parag span::after{content:"";position:absolute;right:-11px;top:-1px;height:7px;width:8px;background-image:url(/assets/field-required-icon.png);background-repeat:no-repeat;background-size:8px 7px}.text-input-component{display:flex;position:relative;flex-direction:column}.text-input-component .text-input-component_label{width:94%;display:flex;justify-content:flex-start;flex-direction:column;margin-bottom:10px}.text-input-component .input_label_parag{margin:5px 0 0 0;font-family:Roboto;font-style:normal;font-weight:normal;font-size:14px;line-height:16px}.text-input-component__error{position:absolute;color:red;left:50%;transform:translate(calc(-100% + 199px), 0);width:fit-content !important;margin-top:74px;text-align:end;padding-left:47px}.text-input-component__error-wrap .text-input-component__error{position:absolute;left:41%;margin-top:-10px}.sorgular-form .text-input-component p{min-width:170px}.sorgular-form .text-input-component .read-only{border:1px solid rgba(0,0,0,0) !important}.icon_required{background-image:url(/assets/add_icon.png)}.personal-cabinet__input{flex-direction:row;margin-bottom:10px}

@keyframes sk-shimmer{0%{background-position:100% 0}100%{background-position:-100% 0}}.sk{--sk-base: #eef1f5;--sk-shine: #f7f9fb;--sk-border: #e4e8ee;--sk-radius: 12px;width:100%;box-sizing:border-box;padding:4px 0 12px;animation:sk-fade-in .2s ease}.sk *{box-sizing:border-box}@keyframes sk-fade-in{from{opacity:0}to{opacity:1}}.sk__bone{display:block;background:linear-gradient(90deg, var(--sk-base) 0%, var(--sk-shine) 45%, var(--sk-base) 90%);background-size:200% 100%;animation:sk-shimmer 1.35s ease-in-out infinite;border-radius:8px}.sk__toolbar{display:flex;align-items:center;gap:12px;margin-bottom:14px;flex-wrap:wrap}.sk__search{height:40px;width:min(320px,48%);border-radius:10px}.sk__btn{height:36px;width:96px;border-radius:10px;margin-left:auto}.sk__btn--sm{width:72px;margin-left:0}.sk__panel{background:#fff;border:1px solid var(--sk-border);border-radius:var(--sk-radius);overflow:hidden;box-shadow:0 1px 2px rgba(16,24,40,.04)}.sk__thead{display:grid;grid-template-columns:1.6fr 1fr .8fr .6fr 72px;gap:16px;align-items:center;padding:12px 16px;border-bottom:1px solid var(--sk-border);background:#fafbfc}.sk__row{display:grid;grid-template-columns:1.6fr 1fr .8fr .6fr 72px;gap:16px;align-items:center;height:44px;padding:0 16px;border-bottom:1px solid var(--sk-border)}.sk__row:last-child{border-bottom:none}.sk__cell{height:12px;width:100%;max-width:100%}.sk__cell--title{height:14px;max-width:72%}.sk__cell--short{max-width:48%}.sk__cell--chip{height:22px;width:64px;border-radius:999px}.sk__cell--icon{width:28px;height:28px;border-radius:8px;justify-self:end}.sk__hero{display:flex;align-items:center;gap:18px;padding:22px 24px;margin-bottom:16px;background:#fff;border:1px solid var(--sk-border);border-radius:16px;box-shadow:0 1px 2px rgba(16,24,40,.04);flex-wrap:wrap}.sk__avatar{width:56px;height:56px;border-radius:50%;flex-shrink:0}.sk__hero-meta{display:flex;flex-direction:column;gap:10px;flex:1;min-width:160px}.sk__line{height:14px;width:180px}.sk__line--lg{height:20px;width:min(260px,70%)}.sk__line--md{width:min(200px,55%)}.sk__line--full{width:100%}.sk__tabs{display:flex;gap:8px;margin-bottom:16px}.sk__tab{height:36px;width:110px;border-radius:10px}.sk__cards{display:grid;grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));gap:14px}.sk__card{height:132px;border-radius:14px;border:1px solid var(--sk-border);background:#fff;padding:16px;display:flex;flex-direction:column;gap:12px}.sk__form{display:grid;gap:14px;padding:20px;background:#fff;border:1px solid var(--sk-border);border-radius:16px}.sk__field{height:42px;border-radius:10px;width:100%;max-width:420px}.sk__label{height:11px;width:96px;margin-bottom:-4px}.sk__workspace{display:grid;grid-template-columns:220px 1fr;gap:16px;min-height:360px}.sk__aside{border:1px solid var(--sk-border);border-radius:14px;background:#fff;padding:14px;display:flex;flex-direction:column;gap:10px}.sk__canvas{border:1px solid var(--sk-border);border-radius:14px;background:#fff;padding:20px;display:flex;flex-direction:column;gap:14px}.sk__block{height:72px;border-radius:12px;width:100%}.sk__block--tall{height:120px}@media(max-width: 720px){.sk__thead,.sk__row{grid-template-columns:1.4fr 1fr 56px}.sk__thead>:nth-child(3),.sk__thead>:nth-child(4),.sk__row>:nth-child(3),.sk__row>:nth-child(4){display:none}.sk__workspace{grid-template-columns:1fr}.sk__search{width:100%}.sk__btn{margin-left:0}}
.auth-page{display:grid;grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);min-height:calc(100vh - 71px);font-family:"Manrope","Segoe UI",system-ui,sans-serif;color:#0f1a15;background:#fff}.auth-page *{box-sizing:border-box}.auth-page--wide{grid-template-columns:minmax(0, 1fr)}.auth-page .auth-page__form{display:flex;align-items:flex-start;justify-content:center;padding:48px 24px 64px;background:radial-gradient(900px 520px at 88% -20%, rgba(52, 201, 117, 0.16), transparent 62%),radial-gradient(700px 420px at -10% 10%, rgba(52, 201, 117, 0.08), transparent 60%),#fff}.auth-page .auth-page__form-inner{width:100%;max-width:460px}.auth-page--wide .auth-page__form-inner{max-width:980px}.auth-page .auth-page__back{display:inline-flex;align-items:center;gap:6px;margin-bottom:20px;font-size:14px;font-weight:600;color:#59685f !important;text-decoration:none !important}.auth-page .auth-page__back::before{content:"←";font-size:15px}.auth-page .auth-page__back:hover{color:#0f1a15 !important}.auth-page .auth-card{padding:30px 30px 28px;border-radius:24px;background:#fff;border:1px solid #e4eae6;box-shadow:0 2px 4px rgba(15,26,21,.04),0 12px 32px -12px rgba(15,26,21,.14)}.auth-page .auth-page__switch{margin:20px 0 0;text-align:center;font-size:14.5px;color:#59685f}.auth-page .auth-page__switch a{font-weight:700;color:#157a46 !important;text-decoration:none !important}.auth-page .auth-page__switch a:hover{text-decoration:underline !important}.auth-page .auth-page__aside{position:relative;overflow:hidden;display:flex;align-items:center;padding:56px 48px;background:linear-gradient(160deg, #0f3d29 0%, #14724a 55%, #23a869 100%);color:#fff}.auth-page .auth-page__aside::before{content:"";position:absolute;width:520px;height:520px;top:-180px;right:-200px;border-radius:50%;background:radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 62%)}.auth-page .auth-page__aside-inner{position:relative;z-index:1;width:100%;max-width:460px;margin:0 auto}.auth-page .auth-page__aside-eyebrow{display:inline-flex;align-items:center;height:28px;padding:0 12px;margin-bottom:18px;border-radius:999px;background:rgba(255,255,255,.16);color:#fff;font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.auth-page .auth-page__aside h2{margin:0 0 18px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:clamp(24px,2.4vw,32px);font-weight:800;letter-spacing:-0.03em;line-height:1.18;color:#fff}.auth-page .auth-page__aside ul{margin:0 0 28px;padding:0;list-style:none;display:flex;flex-direction:column;gap:12px}.auth-page .auth-page__aside ul li{position:relative;padding-left:30px;font-size:15px;line-height:1.5;color:rgba(255,255,255,.9)}.auth-page .auth-page__aside ul li::before{content:"";position:absolute;left:0;top:2px;width:20px;height:20px;border-radius:50%;background:rgba(255,255,255,.18) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px 12px no-repeat}.auth-page .auth-page__aside-shot{border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.22);box-shadow:0 24px 60px -28px rgba(0,0,0,.6)}.auth-page .auth-page__aside-shot img{display:block;width:100%;height:auto}.auth-page .auth-flow{width:100%}.auth-page .popup_header{display:block;margin:0 0 20px}.auth-page .popup_header .header_autorization,.auth-page .popup_header .header_register,.auth-page .popup_header .header_restore,.auth-page .popup_header .account_confir{width:auto;display:block;justify-content:flex-start}.auth-page .popup_header h2,.auth-page .popup_header .header_autorization h2,.auth-page .popup_header .header_register h2,.auth-page .popup_header .header_restore h2,.auth-page .popup_header .account_confir h2,.auth-page .popup_header .account_confir,.auth-page .popup_header .popup_header-text{margin:0;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:24px;font-weight:800;letter-spacing:-0.025em;line-height:1.25;color:#0f1a15;text-align:left;text-transform:none}.auth-page .popup_content{width:100%;padding:0}.auth-page .popup_content>br{display:none}.auth-page .popup_content .popup_content-text,.auth-page .popup_content .popup_content-text_verify{display:block;width:100%;margin:0 0 18px;font-size:14.5px;line-height:1.55;text-align:left;color:#59685f}.auth-page .auth-error-wrapper{margin:0 0 16px;padding:11px 14px;border-radius:12px;background:rgba(239,68,68,.08)}.auth-page .auth-error-wrapper p{margin:0;margin-left:0;font-size:13.5px;font-weight:600;line-height:1.45;color:#b42318}.auth-page .text-input-component{margin-bottom:16px}.auth-page .input_label_parag,.auth-page .input_label_parag span{margin:0 0 6px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:12.5px;font-weight:700;color:#59685f}.auth-page .pa_modal_input,.auth-page input[type=text],.auth-page input[type=password],.auth-page input[type=email],.auth-page input[type=tel]{width:100%;height:46px;padding:0 14px;border-radius:12px;border:1px solid #e4eae6;background:#fff;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:14.5px;color:#0f1a15;transition:border-color .18s ease,box-shadow .18s ease}.auth-page .pa_modal_input::placeholder,.auth-page input[type=text]::placeholder,.auth-page input[type=password]::placeholder,.auth-page input[type=email]::placeholder,.auth-page input[type=tel]::placeholder{color:#8b9a91}.auth-page .pa_modal_input:focus,.auth-page input[type=text]:focus,.auth-page input[type=password]:focus,.auth-page input[type=email]:focus,.auth-page input[type=tel]:focus{outline:none;border-color:#34c975;box-shadow:0 0 0 3px rgba(52,201,117,.2)}.auth-page .pa_modal_input.error,.auth-page input[type=text].error,.auth-page input[type=password].error,.auth-page input[type=email].error,.auth-page input[type=tel].error{border-color:#ef4444}.auth-page .text-input-component__error{margin:6px 0 0;font-size:12.5px;color:#ef4444}.auth-page .forgot_password{margin:2px 0 22px}.auth-page .forgot_password .link_password{font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:13.5px;font-weight:700;color:#157a46;text-decoration:none}.auth-page .forgot_password .link_password:hover{text-decoration:underline}.auth-page .green_button_auth,.auth-page .dark_grey_button_auth,.auth-page .green_button,.auth-page .green_button_send-code,.auth-page .aswho_wrapp .asAuthorBtn,.auth-page .aswho_wrapp .asRespondentBtn,.auth-page .modal_content button{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:0 20px;border-radius:12px;border:1px solid rgba(0,0,0,0);font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:15px;font-weight:600;line-height:1;text-decoration:none !important;white-space:nowrap;cursor:pointer;transition:background .18s ease,color .18s ease,border-color .18s ease,opacity .18s ease}.auth-page .green_button_auth:focus-visible,.auth-page .dark_grey_button_auth:focus-visible,.auth-page .green_button:focus-visible,.auth-page .green_button_send-code:focus-visible,.auth-page .aswho_wrapp .asAuthorBtn:focus-visible,.auth-page .aswho_wrapp .asRespondentBtn:focus-visible,.auth-page .modal_content button:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(52,201,117,.2)}.auth-page .green_button_auth:disabled,.auth-page .green_button_auth.is-disabled,.auth-page .dark_grey_button_auth:disabled,.auth-page .dark_grey_button_auth.is-disabled,.auth-page .green_button:disabled,.auth-page .green_button.is-disabled,.auth-page .green_button_send-code:disabled,.auth-page .green_button_send-code.is-disabled,.auth-page .aswho_wrapp .asAuthorBtn:disabled,.auth-page .aswho_wrapp .asAuthorBtn.is-disabled,.auth-page .aswho_wrapp .asRespondentBtn:disabled,.auth-page .aswho_wrapp .asRespondentBtn.is-disabled,.auth-page .modal_content button:disabled,.auth-page .modal_content button.is-disabled{opacity:.5;cursor:not-allowed;pointer-events:none}.auth-page .green_button_auth,.auth-page .dark_grey_button_auth,.auth-page .green_button,.auth-page .green_button_send-code,.auth-page .aswho_wrapp .asAuthorBtn,.auth-page .aswho_wrapp .asRespondentBtn,.auth-page .modal_content button{width:100%;min-height:46px;margin:0;background:#34c975;color:#fff;border-radius:12px !important;font-size:15px;font-weight:600}.auth-page .green_button_auth:hover,.auth-page .dark_grey_button_auth:hover,.auth-page .green_button:hover,.auth-page .green_button_send-code:hover,.auth-page .aswho_wrapp .asAuthorBtn:hover,.auth-page .aswho_wrapp .asRespondentBtn:hover,.auth-page .modal_content button:hover{background:#2bb367;filter:none}.auth-page .green_button_auth[disabled],.auth-page .dark_grey_button_auth[disabled],.auth-page .green_button[disabled],.auth-page .green_button_send-code[disabled],.auth-page .aswho_wrapp .asAuthorBtn[disabled],.auth-page .aswho_wrapp .asRespondentBtn[disabled],.auth-page .modal_content button[disabled]{opacity:.45}.auth-page .dark_grey_button_auth,.auth-page .aswho_wrapp .asRespondentBtn{background:#fff !important;color:#0f1a15 !important;border:1px solid #cbd6cf !important}.auth-page .dark_grey_button_auth:hover,.auth-page .aswho_wrapp .asRespondentBtn:hover{background:#f5f8f6 !important;color:#0f1a15 !important}.auth-page .aswho_wrapp .asAuthorBtn{background:#34c975 !important;color:#fff !important}.auth-page .aswho_wrapp .asAuthorBtn:hover{background:#2bb367 !important}.auth-page .popup_footer{width:100%;margin-top:4px}.auth-page .popup_footer .popup_footer_main{display:flex;align-items:center;justify-content:space-between;gap:16px;width:100%;margin-left:0;flex-wrap:wrap}.auth-page .popup_footer .popup_footer_main .send_code_again-text{width:auto;order:2}.auth-page .popup_footer .popup_footer_main .send_code_again-text a{text-decoration:none}.auth-page .popup_footer .popup_footer_main .send_code_again-text .send_text-span,.auth-page .popup_footer .popup_footer_main .send_code_again-text .send_text-span_verify{display:inline-flex;width:auto;margin:0;font-size:13.5px;font-weight:700;color:#157a46}.auth-page .popup_footer .popup_footer_main .send_code_again-text .send_text-span:hover,.auth-page .popup_footer .popup_footer_main .send_code_again-text .send_text-span_verify:hover{text-decoration:underline}.auth-page .popup_footer .popup_footer_main .button_div{width:100%;order:1}.auth-page .popup_footer .footer_send_code{margin:16px 0 12px;text-align:center}.auth-page .popup_footer .footer_send_code a{font-size:13.5px;font-weight:700;color:#157a46;text-decoration:none}.auth-page .auth_buttons{display:flex;flex-direction:column-reverse;gap:10px}.auth-page .auth_buttons>div{width:100%}.auth-page .footer_register-checkbox-main{display:flex;flex-direction:column;gap:4px}.auth-page .footer_register-checkbox{width:100%;display:flex;flex-direction:column;align-items:flex-start;padding:0;margin:0}.auth-page .footer_register-checkbox .field_required.field_required{display:flex;align-items:center;gap:6px;width:100%;margin-bottom:14px}.auth-page .footer_register-checkbox .field_required.field_required .field_required_image.field_required_image{display:inline-flex;align-items:center;width:auto;margin:0}.auth-page .footer_register-checkbox .field_required.field_required .field_required_text.field_required_text{width:auto;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:12.5px;line-height:1.3;color:#8b9a91}.auth-page .footer_register-checkbox .register_agreemen_main{display:flex;align-items:flex-start;gap:10px;width:100%;padding:14px 16px;border-radius:10px;background:#f5f8f6;border:1px solid #e4eae6}.auth-page .footer_register-checkbox .register_agreemen_main .checkbox.checkbox{margin:0;padding:0;line-height:0}.auth-page .footer_register-checkbox .register_agreemen_main .custom-checkbox{display:inline-flex;margin:0}.auth-page .footer_register-checkbox .register_agreemen_main .custom-checkbox>span::before,.auth-page .footer_register-checkbox .register_agreemen_main .custom-checkbox>input:checked+span::before{width:18px;height:18px;margin:0;border-radius:5px}.auth-page .footer_register-checkbox .footer_operating-conditions{display:flex;flex-direction:column;gap:2px;font-size:13px;line-height:1.45;color:#59685f}.auth-page .footer_register-checkbox .footer_operating-conditions .footer_user_agreement,.auth-page .footer_register-checkbox .footer_operating-conditions .footer_user_privacy{display:flex;flex-wrap:wrap;align-items:baseline;gap:4px}.auth-page .footer_register-checkbox .footer_operating-conditions p{margin:0;font-size:13px;color:#59685f}.auth-page .footer_register-checkbox .footer_operating-conditions a{font-size:13px;font-weight:700;color:#157a46;text-decoration:none}.auth-page .footer_register-checkbox .footer_operating-conditions a:hover{text-decoration:underline}.auth-page .button_dark .footer_button{display:block;margin-top:18px}.auth-page .modal_content{padding:0 !important}.auth-page .modal_content p{margin:0 0 12px;font-size:14.5px;line-height:1.55;color:#59685f}.auth-page .modal_content input{margin-bottom:16px}.auth-page .above-header-block-wrapper{margin-bottom:24px;padding:16px 20px;border-radius:16px;background:#eaf9f1;border:1px solid rgba(52,201,117,.28)}.auth-page .above-header-block-wrapper .above-header-block{font-size:15.5px;font-weight:800;color:#157a46}.auth-page .above-header-block-wrapper .above-header-block__title{margin-top:4px;font-size:14px;color:#59685f}.auth-page .asWhoWrapper{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:24px;align-items:stretch}.auth-page .asWhoWrapper .role-divider{display:none}.auth-page .asWhoWrapper .asAuthor-wrapper{display:flex;flex-direction:column;padding:24px 22px;border-radius:16px;background:#fff;border:1px solid #e4eae6}.auth-page .asWhoWrapper .asAuthor-wrapper h3{margin:0 0 10px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:18px;font-weight:800;letter-spacing:-0.015em;line-height:1.3;color:#0f1a15;text-transform:none}.auth-page .asWhoWrapper .asAuthor-wrapper p{margin:0 0 8px;font-size:14px;line-height:1.55;color:#59685f}.auth-page .asWhoWrapper .asAuthor-wrapper .asAuthor-wrapper-title2{font-size:13.5px;line-height:1.55;color:#59685f}.auth-page .asWhoWrapper .asAuthor-wrapper .img_1{width:100%;max-width:220px;height:auto;margin:18px auto}.auth-page .asWhoWrapper .asAuthor-wrapper button{margin-top:auto}@media(max-width: 1040px){.auth-page{grid-template-columns:minmax(0, 1fr)}.auth-page .auth-page__aside{display:none}}@media(max-width: 620px){.auth-page{min-height:calc(100vh - 71px)}.auth-page .auth-page__form{padding:20px 0 40px;background:#fff}.auth-page .auth-page__form-inner{max-width:none}.auth-page .auth-page__back{margin:0 16px 14px}.auth-page .auth-card{padding:22px 18px 24px;border:none;border-radius:0;box-shadow:none}.auth-page .popup_header h2,.auth-page .popup_header .popup_header-text,.auth-page .popup_header .account_confir{font-size:22px}.auth-page .asWhoWrapper{grid-template-columns:minmax(0, 1fr)}}
.lang-dd{position:relative;display:inline-flex;vertical-align:middle}.lang-dd__trigger{display:inline-flex;align-items:center;gap:6px;box-sizing:border-box;min-height:42px;height:42px;padding:0 14px 0 12px;border-radius:10px;border:1px solid #e5e7eb;background:#fff;color:#1f2937;font-size:14px;font-weight:600;cursor:pointer;line-height:1;transition:border-color .15s ease,box-shadow .15s ease,background .15s ease}.lang-dd__trigger:hover{border-color:#d1d5db;background:#f9fafb}.lang-dd.is-open .lang-dd__trigger{border-color:#34c975;box-shadow:0 0 0 3px rgba(52,201,117,.18)}.lang-dd__flag{display:inline-flex;flex:none;width:20px;height:14px;overflow:hidden;border-radius:2px;box-shadow:inset 0 0 0 1px rgba(15,23,42,.12);line-height:0}.lang-dd__flag svg{display:block;width:100%;height:100%}.lang-dd__code{letter-spacing:.01em}.lang-dd__chevron{font-size:10px;color:#6b7280;margin-top:1px}.lang-dd__menu{position:absolute;top:calc(100% + 6px);right:0;z-index:1200;min-width:240px;max-width:min(300px,92vw);border-radius:12px;border:1px solid #e5e7eb;background:#fff;box-shadow:0 12px 32px rgba(15,23,42,.14);overflow:hidden}.lang-dd__search{padding:8px 8px 4px}.lang-dd__search input{width:100%;box-sizing:border-box;height:36px;padding:0 10px;border-radius:8px;border:1px solid #e5e7eb;font-size:14px;outline:none}.lang-dd__search input:focus{border-color:#34c975}.lang-dd__list{list-style:none;margin:0;padding:4px;max-height:280px;overflow:auto}.lang-dd__option{width:100%;display:flex;align-items:center;gap:10px;min-height:44px;padding:8px 10px;border:0;border-radius:8px;background:rgba(0,0,0,0);color:#111827;font-size:14px;text-align:left;cursor:pointer}.lang-dd__option:hover{background:#f3f4f6}.lang-dd__option.is-active{background:rgba(52,201,117,.12);color:#0f7a3f;font-weight:600}.lang-dd__name{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lang-dd__code-muted{font-size:12px;font-weight:600;color:#9ca3af}.lang-dd__check{color:#34c975;font-weight:700}.lang-dd__empty{padding:12px;text-align:center;color:#9ca3af;font-size:13px}.lang-dd--compact .lang-dd__trigger{min-height:28px;height:28px;padding:0 8px 0 6px;border-radius:999px;border-color:currentColor;color:inherit;background:rgba(0,0,0,0);font-size:12.5px}.lang-dd--compact .lang-dd__flag{width:16px;height:11px}.lang-dd--compact.is-open .lang-dd__trigger{box-shadow:none}.lang-dd--compact .lang-dd__menu{min-width:200px}.lang-dd--profile .lang-dd__trigger{min-height:42px;height:42px;padding:0 14px 0 12px;border-radius:12px;background:#f8fafc}.lang-dd--mobile{display:flex;width:100%}.lang-dd--mobile .lang-dd__trigger{width:100%;justify-content:flex-start;min-height:48px;height:48px;border-radius:12px;background:#fff;border-color:#e5e7eb;font-size:15px}.lang-dd__sheet-root{position:fixed;inset:0;z-index:10050;display:flex;align-items:flex-end;justify-content:center}.lang-dd__backdrop{position:absolute;inset:0;border:0;padding:0;margin:0;background:rgba(15,23,42,.45);cursor:pointer}.lang-dd__menu--sheet{position:relative;top:auto;right:auto;width:100%;max-width:480px;max-height:min(72vh,560px);border-radius:20px 20px 0 0;border:0;box-shadow:0 -8px 40px rgba(15,23,42,.2);display:flex;flex-direction:column;animation:lang-dd-sheet-in .22s ease-out}.lang-dd__sheet-head{display:flex;align-items:center;justify-content:space-between;padding:16px 16px 8px;flex:none}.lang-dd__sheet-head strong{font-size:16px;font-weight:700;color:#111827}.lang-dd__sheet-close{width:36px;height:36px;border:0;border-radius:10px;background:#f3f4f6;color:#374151;font-size:16px;cursor:pointer}.lang-dd__menu--sheet .lang-dd__list{max-height:none;flex:1;overflow:auto;padding:4px 8px calc(12px + env(safe-area-inset-bottom, 0px))}.lang-dd__menu--sheet .lang-dd__option{min-height:52px;border-radius:12px;font-size:15px}body.lang-dd-sheet-open{overflow:hidden}@keyframes lang-dd-sheet-in{from{transform:translateY(16px);opacity:.85}to{transform:translateY(0);opacity:1}}@media(max-width: 900px){.lang-dd--header .lang-dd__trigger{min-height:40px;height:40px;padding:0 12px 0 10px}}
.cur-dd{position:relative;display:inline-flex;vertical-align:middle}.cur-dd__trigger{display:inline-flex;align-items:center;gap:6px;box-sizing:border-box;min-height:42px;height:42px;padding:0 14px 0 12px;border-radius:10px;border:1px solid #e5e7eb;background:#fff;color:#1f2937;font-size:14px;font-weight:600;cursor:pointer;line-height:1;transition:border-color .15s ease,box-shadow .15s ease,background .15s ease}.cur-dd__trigger:hover{border-color:#d1d5db;background:#f9fafb}.cur-dd.is-open .cur-dd__trigger{border-color:#34c975;box-shadow:0 0 0 3px rgba(52,201,117,.18)}.cur-dd__symbol{font-size:16px;font-weight:700;line-height:1;color:#0f7a3f}.cur-dd__code{letter-spacing:.01em}.cur-dd__chevron{font-size:10px;color:#6b7280;margin-top:1px}.cur-dd__menu{position:absolute;top:calc(100% + 6px);right:0;z-index:1200;min-width:240px;max-width:min(300px,92vw);border-radius:12px;border:1px solid #e5e7eb;background:#fff;box-shadow:0 12px 32px rgba(15,23,42,.14);overflow:hidden}.cur-dd__list{list-style:none;margin:0;padding:4px;max-height:280px;overflow:auto}.cur-dd__option{width:100%;display:flex;align-items:center;gap:10px;min-height:44px;padding:8px 10px;border:0;border-radius:8px;background:rgba(0,0,0,0);color:#111827;font-size:14px;text-align:left;cursor:pointer}.cur-dd__option:hover{background:#f3f4f6}.cur-dd__option.is-active{background:rgba(52,201,117,.12);color:#0f7a3f;font-weight:600}.cur-dd__name{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cur-dd__code-muted{font-size:12px;font-weight:600;color:#9ca3af}.cur-dd__check{color:#34c975;font-weight:700}.cur-dd--profile .cur-dd__trigger{min-height:42px;height:42px;padding:0 14px 0 12px;border-radius:12px;background:#f8fafc}.cur-dd--mobile{display:flex;width:100%}.cur-dd--mobile .cur-dd__trigger{width:100%;justify-content:flex-start;min-height:48px;height:48px;border-radius:12px;background:#fff;border-color:#e5e7eb;font-size:15px}.cur-dd__sheet-root{position:fixed;inset:0;z-index:10050;display:flex;align-items:flex-end;justify-content:center}.cur-dd__backdrop{position:absolute;inset:0;border:0;padding:0;margin:0;background:rgba(15,23,42,.45);cursor:pointer}.cur-dd__menu--sheet{position:relative;top:auto;right:auto;width:100%;max-width:480px;max-height:min(72vh,560px);border-radius:20px 20px 0 0;border:0;box-shadow:0 -8px 40px rgba(15,23,42,.2);display:flex;flex-direction:column;animation:cur-dd-sheet-in .22s ease-out}.cur-dd__sheet-head{display:flex;align-items:center;justify-content:space-between;padding:16px 16px 8px;flex:none}.cur-dd__sheet-head strong{font-size:16px;font-weight:700;color:#111827}.cur-dd__sheet-close{width:36px;height:36px;border:0;border-radius:10px;background:#f3f4f6;color:#374151;font-size:16px;cursor:pointer}.cur-dd__menu--sheet .cur-dd__list{max-height:none;flex:1;overflow:auto;padding:4px 8px calc(12px + env(safe-area-inset-bottom, 0px))}.cur-dd__menu--sheet .cur-dd__option{min-height:52px;border-radius:12px;font-size:15px}body.cur-dd-sheet-open{overflow:hidden}@keyframes cur-dd-sheet-in{from{transform:translateY(16px);opacity:.85}to{transform:translateY(0);opacity:1}}@media(max-width: 900px){.cur-dd--header .cur-dd__trigger{min-height:40px;height:40px;padding:0 12px 0 10px}}
.header .active_tab_style{color:#34c975 !important}.header{background:#fff;max-width:1280px;margin:0 auto;margin-top:15px;margin-bottom:5px}@media only screen and (max-width: 980px){.header{margin-top:0;margin-bottom:0px}.header.opened{height:100vh;width:100%;position:fixed;z-index:10000}}@media only screen and (max-width: 980px){.header .mobile_menu{display:block;position:fixed;width:100%;height:calc(100vh - 76px);background-color:#f7f7f7}.header .mobile_menu body{height:100%;overflow-y:hidden}.header .mobile_menu .mobile_languages{background-color:#f7f7f7}.header .mobile_menu .mobile_languages a{margin-right:15px;font-weight:normal;font-size:1rem;color:#3a3a3a;padding-top:13px;margin-left:1.2rem;display:inline-block;height:28px}.header .mobile_menu .func_title{padding-top:13px;padding-left:1.2rem;color:#3a3a3a;height:28px;font-size:1rem;font-weight:normal;display:block;border-top:1px solid #d6d5d6;background-color:#f7f7f7}.header .mobile_menu .func_title:last-of-type{border-bottom:1px solid #d6d5d6}.header .mobile_menu .func_title:active{color:#6a6e68;background-color:#e8e8e8;font-weight:bold;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}}.header a{text-decoration:none;color:#000;font-weight:600}.header a:hover{text-decoration:underline}.header .header_content{height:100%;display:flex;align-items:center;justify-content:space-between}.header .header_content .menu_sandwich{display:none}@media only screen and (max-width: 1300px){.header .header_content{width:90%;display:flex;margin:0 auto}}@media only screen and (max-width: 900px){.header .header_content{width:90%;display:flex;margin:0 auto}}@media only screen and (max-width: 875px){.header .header_content{width:80%;display:flex;margin:0 auto}.header .header_content .header_navbar{width:90%;display:inline-flex;align-items:center;justify-content:center;margin:15px}}@media only screen and (max-width: 980px){.header .header_content{height:unset;align-items:unset;justify-content:unset;margin-top:1.1rem}.header .header_content .header_logo img{margin-left:1rem}.header .header_content .menu_sandwich{display:block;margin-left:auto;margin-top:.7rem;margin-right:1.7rem}}.header .header_content .header_navbar{display:inline-flex;align-items:center;justify-content:center}.header .header_content .header_navbar a{font-size:1rem;margin-right:35px;color:#49404d}.header .header_content .header_navbar a:last-of-type{margin-right:0}@media only screen and (max-width: 980px){.header .header_content .header_navbar{flex-direction:column;align-items:unset;justify-content:unset;display:none}.header .header_content .header_navbar a{font-size:.8rem;margin-right:0}}.header .header_content .header_languages{display:inline-flex;align-items:center;justify-content:center}.header .header_content .header_languages a{font-size:.9rem;margin-right:10px;color:#49404d}.header .header_content .header_languages a:last-of-type{margin-right:0}@media only screen and (max-width: 980px){.header .header_content .header_languages{flex-direction:column;display:none}.header .header_content .header_languages a{font-size:.8rem;margin-right:0}}.header .header_content .header_auth{display:inline-flex;flex-direction:column;font-size:1rem}.header .header_content .header_auth a{display:inline-flex;flex-direction:row;align-items:center;font-size:1rem;margin-bottom:8px;color:#49404d}.header .header_content .header_auth a:last-of-type{margin-bottom:0}.header .header_content .header_auth img{height:1.5rem;width:1.5rem;margin-right:.3rem}.header .header_content .header_auth svg{margin-right:.3rem}@media only screen and (max-width: 980px){.header .header_content .header_auth{display:none}}.auth-error-wrapper p{color:#fa2e2e;margin-left:20px}.link_password{color:#34c975;font-size:12px;font-family:Roboto;font-style:normal;display:flex;align-items:center}.popup_footer{width:100%}.popup_footer .popup_footer_main{display:flex;width:50%;margin-left:60px}.popup_footer .popup_footer_main .send_code_again-text{width:50%}.popup_footer .popup_footer_main .send_code_again-text .send_text-span{display:flex;width:100%;align-items:center;justify-content:center;margin-top:12px}.popup_footer .popup_footer_main .send_code_again-text .send_text-span_verify{display:flex;width:95%;align-items:center;justify-content:center;margin-top:10px}.popup_footer .popup_footer_main .button_div{width:50%}.popup_footer .popup_footer_main .button_div .green_button_send-code{font-size:1rem;color:#fff;padding:.7rem 1.5rem;border-radius:5px;border:unset;white-space:nowrap;text-decoration:unset;line-height:unset;background-color:#34c975;display:flex;justify-content:center;margin:0 auto}.popup_footer .popup_footer_main .button_div .green_button_send-code:hover{cursor:pointer;filter:brightness(110%) saturate(90%)}.popup_footer .footer_register-checkbox-main .button_dark .footer_button{display:flex;justify-content:center;margin-top:17px}.popup_footer .footer_register-checkbox-main .button_dark .footer_button .green_button_auth:hover{cursor:pointer;filter:brightness(110%) saturate(90%)}.popup_footer .footer_register-checkbox-main .button_dark .footer_button .dark_grey_button_auth:hover{cursor:pointer;filter:brightness(110%) saturate(110%)}.popup_footer .footer_register-checkbox{width:100%;display:flex;align-items:center;padding:0;margin-bottom:10px;flex-direction:column}.popup_footer .footer_register-checkbox .field_required{display:flex;width:100%;margin-bottom:13px}.popup_footer .footer_register-checkbox .field_required .field_required_image{width:6%;margin-left:5px}.popup_footer .footer_register-checkbox .field_required .field_required_text{width:95%;font-family:Roboto;font-style:normal;font-weight:normal;font-size:12px;line-height:14px;color:#42c878}.popup_footer .footer_register-checkbox .register_agreemen_main{display:flex;flex-direction:row}.popup_footer .footer_register-checkbox .checkbox{margin-bottom:.2em;margin-top:10px}.popup_footer .footer_register-checkbox .custom-checkbox>input{position:absolute;z-index:-1;opacity:0}.popup_footer .footer_register-checkbox .custom-checkbox>span{display:inline-flex;align-items:center;user-select:none}.popup_footer .footer_register-checkbox .custom-checkbox>span::before{content:"";display:inline-block;width:1em;height:1em;flex-shrink:0;flex-grow:0;border:1px solid #adb5bd;border-radius:.25em;margin-right:.5em;background-repeat:no-repeat;background-position:center center;background-size:50% 50%;margin-top:12px}.popup_footer .footer_register-checkbox .custom-checkbox>input:not(:disabled):not(:checked)+span:hover::before{border-color:#b3d7ff}.popup_footer .footer_register-checkbox .custom-checkbox>input:not(:disabled):active+span::before{background-color:#b3d7ff;border-color:#b3d7ff}.popup_footer .footer_register-checkbox .custom-checkbox>input:focus+span::before{box-shadow:0 0 0 .2rem #34c975}.popup_footer .footer_register-checkbox .custom-checkbox>input:focus:not(:checked)+span::before{border-color:#34c975}.popup_footer .footer_register-checkbox .custom-checkbox>input:checked+span::before{border-color:#34c975;background-color:#34c975;margin-top:12px;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.popup_footer .footer_register-checkbox .custom-checkbox>input:disabled+span::before{background-color:#e9ecef}.popup_footer .footer_register-checkbox .css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root{padding-bottom:6px}.popup_footer .footer_register-checkbox .footer_operating-conditions{align-self:center;display:flex;margin:0 0 -6px 0;font-size:1rem;font-weight:300;line-height:1.9;width:100%;flex-direction:column}.popup_footer .footer_register-checkbox .footer_operating-conditions .user_agreement-p{font-size:11px;margin:0;padding-left:5px}.popup_footer .footer_register-checkbox .footer_operating-conditions .user_agreement-link_and{cursor:pointer;font-size:11px;color:#34c975;margin-left:4px;margin:0 5px 0 5px}.popup_footer .footer_register-checkbox .footer_operating-conditions .user_agreement-link_and:hover{text-decoration:underline}.popup_footer .footer_register-checkbox .footer_operating-conditions .user_agreement-p_and{font-size:11px;margin:0}.popup_footer .footer_register-checkbox .footer_operating-conditions .footer_user_privacy{display:flex;align-items:flex-start;flex-wrap:wrap}@media only screen and (max-width: 818px){.popup_footer{width:100%}.popup_footer .button_dark .footer_button{display:flex;justify-content:center}.popup_footer .footer_register-checkbox{width:100%;display:flex;align-items:flex-end;padding:0}.popup_footer .footer_register-checkbox .footer_input{display:flex;align-self:center;margin-top:5px}.popup_footer .footer_register-checkbox .css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root{padding-bottom:6px}.popup_footer .footer_register-checkbox .footer_operating-conditions{align-self:flex-end;display:flex;margin:0 0 -6px 0;font-size:1rem;font-weight:300;line-height:1.9;align-items:flex-start;flex-wrap:wrap}.popup_footer .footer_register-checkbox .footer_operating-conditions .user_agreement-p{font-size:11px;margin:0;padding:0 3px}.popup_footer .footer_register-checkbox .footer_operating-conditions .user_agreement-p_and{font-size:11px;margin:0}.popup_footer .footer_register-checkbox .footer_operating-conditions .user_agreement-link_and{cursor:pointer;font-size:11px;color:#34c975;margin:0;padding:0 3px}.popup_footer .footer_register-checkbox .footer_operating-conditions .user_agreement-link:hover{text-decoration:underline}}@media only screen and (max-width: 611px){.popup_footer{width:100%}.popup_footer .button_dark .footer_button{display:flex;justify-content:center}.popup_footer .footer_register-checkbox .footer_input{display:flex;align-self:center;margin-top:5px}.popup_footer .footer_register-checkbox .footer_register-checkbox input{margin:0 10px 10px 0}}@media only screen and (max-width: 540px){.popup_footer{width:100%}.popup_footer .footer_register-checkbox-main .button_dark .footer_button{display:flex;justify-content:center}.popup_footer .footer_register-checkbox .footer_input{display:flex;align-self:center;margin-top:5px}.popup_footer .footer_register-checkbox .footer_register-checkbox input{margin:0 10px 10px 0}}@media only screen and (max-width: 450px){.popup_footer .footer_register-checkbox .checkbox{margin-bottom:.2em;margin-top:20px}}@media only screen and (max-width: 437px){.popup_footer{width:100%}.popup_footer .footer_register-checkbox-main .button_dark .footer_button{display:flex;justify-content:center}.popup_footer .footer_register-checkbox .custom-checkbox>span::before{margin-bottom:21px}}@media only screen and (max-width: 350px){.popup_footer{width:100%}.popup_footer .footer_register-checkbox-main .button_dark .footer_button{display:flex;justify-content:center}.popup_footer .footer_register-checkbox-main .footer_input{display:flex;align-self:center;margin-top:5px}.popup_footer .footer_register-checkbox-main input{margin:0 10px 28px 0}}@media only screen and (max-width: 335px){.popup_footer{width:100%}.popup_footer .footer_register-checkbox-main .button_dark .footer_button{display:flex;justify-content:center}.popup_footer .footer_register-checkbox .footer_input{display:flex;align-self:center;margin-top:5px}}.aswho_wrapp .mainTitle{font-size:1.9rem;color:#4b424d;margin-top:3rem;margin-left:.8rem;text-align:center}.aswho_wrapp .desc{color:#4b424d;font-size:.7rem;width:63%;line-height:1.5rem;margin-left:.8rem}.aswho_wrapp .asWhoWrapper{display:flex;background-color:#fff;margin:0 auto}@media only screen and (max-width: 800px){.aswho_wrapp .asWhoWrapper{flex-direction:column;align-items:center}}@media only screen and (max-width: 600px){.aswho_wrapp .asWhoWrapper{flex-wrap:wrap;width:unset;display:unset}}.aswho_wrapp .asAuthor p{min-width:250px}@media only screen and (max-width: 800px){.aswho_wrapp .asAuthor{border-bottom:1px #bfbfbf solid}}@media only screen and (max-width: 600px){.aswho_wrapp .asAuthor{display:flex;padding-bottom:20px;background-color:#fff}.aswho_wrapp .asAuthor p{min-width:unset}}.aswho_wrapp .asResident{margin-right:1rem}.aswho_wrapp .asResident p{min-width:250px}@media only screen and (max-width: 600px){.aswho_wrapp .asResident{display:block;background-color:#fff}.aswho_wrapp .asResident p{min-width:unset}}.aswho_wrapp .asAuthor h3,.aswho_wrapp .asResident h3{font-size:1.2rem;font-weight:bold;margin-bottom:2rem;margin-top:0}@media only screen and (max-width: 800px){.aswho_wrapp .asAuthor h3,.aswho_wrapp .asResident h3{margin-bottom:1rem}}.aswho_wrapp .asAuthor p,.aswho_wrapp .asResident p{font-size:.9rem;color:#4b424d}@media only screen and (max-width: 400px){.aswho_wrapp .asAuthor p,.aswho_wrapp .asResident p{width:96%}}.aswho_wrapp .asAuthorBtn{background-color:#34c975;margin:1rem 0;color:#fff !important}@media only screen and (max-width: 600px){.aswho_wrapp .asAuthorBtn{margin:0 auto}}.aswho_wrapp .asAuthorBtn:hover{cursor:pointer;background-color:#3ae685}.aswho_wrapp .asAuthorBtn:focus{cursor:pointer;background-color:#696e68}.aswho_wrapp .asRespondentBtn{background-color:#eef0f3;color:#000;margin:1rem 0}@media only screen and (max-width: 600px){.aswho_wrapp .asRespondentBtn{margin:0 auto}}.aswho_wrapp .asRespondentBtn:hover{cursor:pointer;color:#fff;background-color:#51534f}.aswho_wrapp .asRespondentBtn:focus{color:#fff;background-color:#696e68}.aswho_wrapp .asAuthorBtn,.aswho_wrapp .asRespondentBtn{display:block;border-radius:.3rem;border:.1rem solid #ccc;color:#000;padding:1rem 2.5rem;font-weight:bold}@media only screen and (max-width: 600px){.aswho_wrapp .asAuthorBtn,.aswho_wrapp .asRespondentBtn{padding:10px 12px;margin-top:20px;margin-bottom:unset;font-size:.9rem}}@media only screen and (max-width: 600px){.aswho_wrapp .asRespondentBtn{margin-top:unset}}.aswho_wrapp .img_1{min-height:16rem}@media only screen and (max-width: 600px){.aswho_wrapp .img_1{margin:0 auto;display:block;max-width:240px}}@media only screen and (max-width: 600px){.aswho_wrapp .img_2{width:260px}}.aswho_wrapp .role-divider{border-right:.2rem solid #afafaf;height:24rem;margin-top:4rem}@media only screen and (max-width: 800px){.aswho_wrapp .role-divider{display:none}}.role_select_title{font-size:1rem !important}.above-header-block{font-weight:bold;font-size:24px;line-height:35px;color:#34c975;padding:20px 0px}@media only screen and (max-width: 800px){.above-header-block{font-size:17px;padding:25px 10px 0px 10px}}@media only screen and (max-width: 600px){.above-header-block{font-size:15px;padding:25px 10px 0px 10px}}@media only screen and (max-width: 400px){.above-header-block{font-size:13px}}.above-header-block-wrapper{display:flex;flex-direction:column;align-items:center}.above-header-block__title{font-weight:bold;font-size:15px;line-height:19px;color:rgba(0,0,0,.7);padding-bottom:25px}@media only screen and (max-width: 800px){.above-header-block__title{font-size:12px;padding:0px 10px 10px 10px}}.above-header-block .MuiIconButton-root,.above-header-block .MuiButtonBase-root{position:absolute !important;right:10px;top:10px}@media only screen and (max-width: 800px){.above-header-block .MuiIconButton-root,.above-header-block .MuiButtonBase-root{right:0px;top:0px}}.asAuthor-wrapper{display:flex;flex-direction:column;align-items:center;margin:0px 20px;max-width:350px;min-width:200px}.asAuthor-wrapper-title2{min-height:45px;color:#5c545e !important;flex-grow:10}.asAuthor-wrapper div{max-width:350px;min-width:200px}@media only screen and (max-width: 400px){.asAuthor-wrapper{display:flex !important;margin:0px !important}}.asAuthor-wrapper p{flex-grow:1}.popup_header .header_autorization{width:61%;display:flex;justify-content:flex-end}.popup_header .header_close_icon{width:12%}.popup_header .header_register{width:67%;display:flex;justify-content:flex-end}.popup_header .header_close_icon_register{width:12%}.popup_header .header_restore{width:63%;display:flex;justify-content:flex-end}.popup_header .header_close_icon_restore{width:12%}.popup_header .account_confir{width:62%;display:flex;justify-content:flex-end}.popup_header .account_cloce_icon{width:8%}.popup_content .popup_content-text{width:94%;display:flex;align-self:center;margin-bottom:15px;text-align:center}.popup_content .popup_content-text_verify{width:100%;display:flex;align-self:center;margin-bottom:15px;text-align:center}.forgot_password{width:94%;align-self:center}.footer_button .dark_grey_button_auth{width:100%;font-size:1rem;color:#fff;padding:.7rem 1.5rem;border-radius:5px;border:unset;white-space:nowrap;text-decoration:unset;line-height:unset;background-color:#6a6e68;display:flex;justify-content:center;align-items:center;height:40px}.footer_button .dark_grey_button_auth .dark_grey_button_auth :hover{cursor:pointer;filter:brightness(110%) saturate(110%)}.footer_button .green_button_auth{width:100%;font-size:1rem;color:#fff;padding:.7rem 1.5rem;border-radius:5px;border:unset;white-space:nowrap;text-decoration:unset;line-height:unset;background-color:#42c878;display:flex;justify-content:center;align-items:center;height:40px}.footer_button .green_button_auth .green_button_auth :hover{cursor:pointer;filter:brightness(110%) saturate(90%)}.auth_buttons{width:100%;display:flex;justify-content:space-between;align-items:center;margin-top:15px}.auth_buttons .auth_buttons_dark{width:60%}.auth_buttons .auth_buttons_dark .dark_grey_button_auth{width:100%;font-size:1rem;color:#fff;padding:.7rem 1.5rem;border-radius:5px;border:unset;white-space:nowrap;text-decoration:unset;line-height:unset;background-color:#6a6e68;display:flex;justify-content:center;align-items:center;height:40px}.auth_buttons .auth_buttons_dark .dark_grey_button_auth:hover{cursor:pointer;filter:brightness(110%) saturate(110%)}.auth_buttons .auth_buttons_green{width:35%}.auth_buttons .auth_buttons_green .green_button_auth{width:100%;font-size:1rem;color:#fff;padding:.7rem 1.5rem;border-radius:5px;border:unset;white-space:nowrap;text-decoration:unset;line-height:unset;background-color:#42c878;display:flex;justify-content:center;align-items:center;height:40px}.auth_buttons .auth_buttons_green .green_button_auth:hover{cursor:pointer;filter:brightness(110%) saturate(90%)}@media only screen and (max-width: 350px){.auth_buttons{display:flex;flex-direction:column}.auth_buttons .auth_buttons_dark{display:flex;align-self:center}.auth_buttons .auth_buttons_green{display:flex;align-self:center;margin-top:15px}}.footer_send_code{display:flex;align-items:center;margin-top:9px !important;padding-right:10px}
header.header{position:sticky;top:0;z-index:1000;max-width:none;width:100%;height:auto;margin:0;padding:0;background:rgba(255,255,255,.88);backdrop-filter:saturate(160%) blur(14px);border-bottom:1px solid #e4eae6;font-family:"Manrope","Segoe UI",system-ui,sans-serif}header.header.opened{background:#fff}header.header .header_content{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;display:flex;align-items:center;gap:18px;height:auto;min-height:70px;padding:10px 0;margin-top:0}header.header .header_logo{display:inline-flex;align-items:center;flex-shrink:0;text-decoration:none !important}header.header .header_logo img{height:44px;width:auto;margin-left:0}header.header .header_content .header_navbar{display:flex;align-items:center;justify-content:flex-start;gap:2px;width:auto;margin:0 0 0 10px;flex:1 1 auto}header.header .header_content .header_navbar a{margin:0;padding:9px 14px;border-radius:999px;font-size:14px;font-weight:600;letter-spacing:-0.005em;color:#59685f;text-decoration:none !important;white-space:nowrap;transition:background .18s ease,color .18s ease}header.header .header_content .header_navbar a:hover{color:#0f1a15;background:#f5f8f6}header.header .header_content .header_navbar a.active_tab_style{color:#0f1a15;background:#eaf9f1}header.header .header_content .header_languages{display:inline-flex;align-items:center;gap:8px;flex:none;padding:0;border:0;background:rgba(0,0,0,0)}header.header .header_content .header_auth{display:inline-flex;flex-direction:row-reverse;align-items:center;gap:10px;flex:none}header.header .header_content .header_auth a{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:0 20px;border-radius:12px;border:1px solid rgba(0,0,0,0);font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:15px;font-weight:600;line-height:1;text-decoration:none !important;white-space:nowrap;cursor:pointer;transition:background .18s ease,color .18s ease,border-color .18s ease,opacity .18s ease}header.header .header_content .header_auth a:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(52,201,117,.2)}header.header .header_content .header_auth a:disabled,header.header .header_content .header_auth a.is-disabled{opacity:.5;cursor:not-allowed;pointer-events:none}header.header .header_content .header_auth a{background:#fff;color:#0f1a15 !important;border-color:#cbd6cf}header.header .header_content .header_auth a:hover{background:#f5f8f6;border-color:#cbd6cf;color:#0f1a15 !important}header.header .header_content .header_auth a{min-height:42px;padding:0 18px;margin:0;font-size:14.5px}header.header .header_content .header_auth a:first-child{background:#34c975;border-color:rgba(0,0,0,0);color:#fff !important}header.header .header_content .header_auth a:first-child:hover{background:#2bb367}header.header .header_content .header_auth a:first-child svg{fill:#fff}header.header .header_content .header_auth a svg{width:18px;height:18px;fill:#59685f}header.header .header_content .header_auth a img{width:17px;height:17px;margin:0}header.header .menu_sandwich{display:none;order:9;margin-left:auto;cursor:pointer;padding:6px;border-radius:10px}header.header .menu_sandwich img{display:block;height:22px;width:auto}header.header .menu_sandwich:hover{background:#f5f8f6}header.header .mobile_menu{border-top:1px solid #e4eae6;background:#fff !important;padding-bottom:8px}header.header .mobile_menu .mobile_languages{background:#f5f8f6 !important;padding:12px 20px;display:flex;flex-direction:column;gap:8px}header.header .mobile_menu .mobile_languages a{display:inline-flex;align-items:center;justify-content:center;min-width:44px;height:34px;border-radius:999px;background:#fff;border:1px solid #e4eae6;font-weight:700 !important;font-size:13px !important;color:#0f1a15 !important;margin:0 !important}header.header .mobile_menu .func_title{display:flex;align-items:center;border-color:#e4eae6 !important;background:#fff !important;color:#0f1a15 !important;font-size:15px !important;font-weight:600 !important;text-transform:none;padding:16px 20px !important;height:auto !important}@media only screen and (max-width: 980px){header.header .header_content .header_navbar,header.header .header_content .header_languages,header.header .header_content .header_auth{display:none}header.header .menu_sandwich{display:inline-flex}}body:not(.pa-route) .content{background:#fff}
footer.mkt-footer{width:100%;margin-top:0;font-family:"Manrope","Segoe UI",system-ui,sans-serif;color:#0f1a15;background:linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);border-top:1px solid #e4eae6}footer.mkt-footer *{box-sizing:border-box}footer.mkt-footer .mkt-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:0 20px;border-radius:12px;border:1px solid rgba(0,0,0,0);font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:15px;font-weight:600;line-height:1;text-decoration:none !important;white-space:nowrap;cursor:pointer;transition:background .18s ease,color .18s ease,border-color .18s ease,opacity .18s ease}footer.mkt-footer .mkt-btn:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(52,201,117,.2)}footer.mkt-footer .mkt-btn:disabled,footer.mkt-footer .mkt-btn.is-disabled{opacity:.5;cursor:not-allowed;pointer-events:none}footer.mkt-footer .mkt-btn--primary{background:#34c975;color:#fff !important}footer.mkt-footer .mkt-btn--primary:hover{background:#2bb367}footer.mkt-footer .mkt-btn--sm{min-height:40px;padding:0 16px;font-size:14px}footer.mkt-footer .mkt-footer__main{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;padding:56px 0 40px}footer.mkt-footer .mkt-footer__grid{display:grid;grid-template-columns:minmax(240px, 1.4fr) repeat(4, minmax(0, 1fr));gap:36px 28px}footer.mkt-footer .mkt-footer__brand{display:flex;flex-direction:column;align-items:flex-start;gap:14px;padding-right:20px}footer.mkt-footer .mkt-footer__brand .mkt-footer__logo{display:inline-flex}footer.mkt-footer .mkt-footer__brand .mkt-footer__logo img{height:42px;width:auto}footer.mkt-footer .mkt-footer__brand .mkt-footer__tagline{margin:0;max-width:30ch;font-size:14.5px;line-height:1.6;color:#59685f}footer.mkt-footer .mkt-footer__brand .mkt-footer__contacts{display:flex;flex-direction:column;gap:4px}footer.mkt-footer .mkt-footer__brand .mkt-footer__contacts a{font-size:14.5px;font-weight:600;color:#0f1a15 !important;text-decoration:none !important}footer.mkt-footer .mkt-footer__brand .mkt-footer__contacts a:hover{color:#157a46 !important}footer.mkt-footer .mkt-footer__brand .mkt-btn{margin-top:4px}footer.mkt-footer .mkt-footer__col{display:flex;flex-direction:column;gap:10px}footer.mkt-footer .mkt-footer__col h3{margin:0 0 4px;font-size:11.5px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:#8b9a91}footer.mkt-footer .mkt-footer__col a{font-size:14.5px;font-weight:500;line-height:1.35;color:#59685f !important;text-decoration:none !important;transition:color .18s ease}footer.mkt-footer .mkt-footer__col a:hover{color:#0f1a15 !important}footer.mkt-footer .mkt-footer__partners{display:flex;align-items:center;gap:24px;flex-wrap:wrap;margin-top:40px;padding:18px 24px;border-radius:16px;background:#fff;border:1px solid #e4eae6}footer.mkt-footer .mkt-footer__partners>span{font-size:11.5px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:#8b9a91;white-space:nowrap}footer.mkt-footer .mkt-footer__partners .mkt-footer__logos{display:flex;align-items:center;gap:14px;flex-wrap:wrap;flex:1 1 auto;justify-content:flex-end}footer.mkt-footer .mkt-footer__partners .mkt-footer__logos .mkt-footer__logo-tile{display:inline-flex;align-items:center;justify-content:center;width:112px;height:64px;border-radius:12px;background:#fff;border:1px solid #e4eae6;transition:border-color .18s ease,transform .18s ease}footer.mkt-footer .mkt-footer__partners .mkt-footer__logos .mkt-footer__logo-tile:hover{border-color:#cbd6cf;transform:translateY(-1px)}footer.mkt-footer .mkt-footer__partners .mkt-footer__logos .mkt-footer__logo-tile img{max-width:90px;max-height:48px;width:auto;height:auto;object-fit:contain}footer.mkt-footer .mkt-footer__bar{border-top:1px solid #e4eae6;background:#fff}footer.mkt-footer .mkt-footer__bar-inner{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;padding:18px 0}footer.mkt-footer .mkt-footer__copy{margin:0;font-size:12.5px;color:#8b9a91}footer.mkt-footer .mkt-footer__bar-links{display:flex;align-items:center;gap:20px}footer.mkt-footer .mkt-footer__bar-links a{font-size:13px;font-weight:600;color:#59685f !important;text-decoration:none !important}footer.mkt-footer .mkt-footer__bar-links a:hover{color:#0f1a15 !important}@media(max-width: 980px){footer.mkt-footer .mkt-footer__grid{grid-template-columns:repeat(2, minmax(0, 1fr));gap:30px 24px}footer.mkt-footer .mkt-footer__brand{grid-column:1/-1;padding-right:0}}@media(max-width: 560px){footer.mkt-footer .mkt-footer__main{padding:40px 0 32px}footer.mkt-footer .mkt-footer__partners{margin-top:32px;padding:16px 18px;gap:16px}footer.mkt-footer .mkt-footer__partners .mkt-footer__logos{justify-content:flex-start;gap:10px}footer.mkt-footer .mkt-footer__partners .mkt-footer__logos .mkt-footer__logo-tile{width:88px;height:56px}footer.mkt-footer .mkt-footer__partners .mkt-footer__logos .mkt-footer__logo-tile img{max-width:68px;max-height:40px}footer.mkt-footer .mkt-footer__bar-inner{flex-direction:column;align-items:flex-start}}
.mkt{font-family:"Manrope","Segoe UI",system-ui,sans-serif;color:#0f1a15;background:#fff;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}.mkt *{box-sizing:border-box}.mkt-container{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto}.mkt-eyebrow{display:inline-flex;align-items:center;gap:8px;height:30px;padding:0 14px 0 10px;margin-bottom:20px;border-radius:999px;background:#eaf9f1;color:#157a46;font-size:12.5px;font-weight:700;letter-spacing:.01em}.mkt-eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:#34c975;box-shadow:0 0 0 3px rgba(52,201,117,.18)}.mkt-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:0 20px;border-radius:12px;border:1px solid rgba(0,0,0,0);font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:15px;font-weight:600;line-height:1;text-decoration:none !important;white-space:nowrap;cursor:pointer;transition:background .18s ease,color .18s ease,border-color .18s ease,opacity .18s ease}.mkt-btn:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(52,201,117,.2)}.mkt-btn:disabled,.mkt-btn.is-disabled{opacity:.5;cursor:not-allowed;pointer-events:none}.mkt-btn--primary{background:#34c975;color:#fff !important}.mkt-btn--primary:hover{background:#2bb367;color:#fff !important}.mkt-btn--ghost{background:#fff;color:#0f1a15 !important;border-color:#cbd6cf}.mkt-btn--ghost:hover{background:#f5f8f6;color:#0f1a15 !important}.mkt-btn--dark{background:#0f1a15;color:#fff !important}.mkt-btn--dark:hover{background:#1c2c24}.mkt-btn--lg{min-height:50px;padding:0 26px;font-size:15.5px}.mkt-btn--sm{min-height:38px;padding:0 14px;font-size:14px}.mkt-link{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:700;color:#157a46 !important;text-decoration:none !important}.mkt-link::after{content:"→";transition:transform .18s ease}.mkt-link:hover::after{transform:translateX(3px)}.mkt-frame{position:relative;border-radius:24px;background:#fff;border:1px solid #e4eae6;box-shadow:0 4px 8px rgba(15,26,21,.04),0 32px 64px -24px rgba(15,26,21,.22);overflow:hidden}.mkt-frame__bar{display:flex;align-items:center;gap:6px;height:34px;padding:0 14px;background:#f5f8f6;border-bottom:1px solid #e4eae6}.mkt-frame__bar i{width:9px;height:9px;border-radius:50%;background:#dfe6e1}.mkt-frame__bar i:first-child{background:#ffbdb2}.mkt-frame__bar i:nth-child(2){background:#ffe0a3}.mkt-frame__bar i:nth-child(3){background:#b9ecd0}.mkt-frame__bar span{flex:1;height:16px;margin-left:8px;border-radius:999px;background:#fff;border:1px solid #e4eae6}.mkt-frame__body{position:relative;background:#fff;overflow:hidden}.mkt-frame__body img,.mkt-frame__body video{display:block;width:100%;height:auto}.mkt-frame--crop .mkt-frame__body{max-height:420px}.mkt-frame--crop .mkt-frame__body img{object-fit:cover;object-position:top center}.mkt-plate{position:relative;padding:26px;border-radius:24px;background:linear-gradient(155deg, #eef6f1 0%, #ffffff 68%);border:1px solid #e4eae6;box-shadow:0 2px 4px rgba(15,26,21,.04),0 12px 32px -12px rgba(15,26,21,.14)}.mkt-plate img{display:block;width:100%;height:auto;border-radius:12px}.mkt-hero{position:relative;overflow:hidden;padding:76px 0 84px;background:radial-gradient(900px 520px at 88% -20%, rgba(52, 201, 117, 0.16), transparent 62%),radial-gradient(700px 420px at -10% 10%, rgba(52, 201, 117, 0.08), transparent 60%),linear-gradient(180deg, #eef6f1 0%, #ffffff 62%)}.mkt-hero::after{content:"";position:absolute;inset:auto 0 0;height:1px;background:#e4eae6}.mkt-hero__grid{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;position:relative;display:grid;grid-template-columns:minmax(0, 1.02fr) minmax(0, 1.08fr);gap:56px;align-items:center}.mkt-hero__title{margin:0 0 18px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:clamp(34px,4.6vw,56px);font-weight:800;letter-spacing:-0.035em;line-height:1.06;color:#0f1a15;font-size:clamp(32px,3.9vw,48px)}.mkt-hero__title em{font-style:normal;background:linear-gradient(120deg, #157a46, #5cd995);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:rgba(0,0,0,0)}.mkt-hero__lead{margin:0 0 30px;max-width:46ch;font-size:17px;line-height:1.6;color:#59685f}.mkt-hero__actions{display:flex;flex-wrap:wrap;align-items:center;gap:12px}.mkt-hero__bullets{display:flex;flex-wrap:wrap;gap:10px 22px;margin:28px 0 0;padding:0;list-style:none}.mkt-hero__bullets li{display:inline-flex;align-items:center;gap:8px;font-size:13.5px;font-weight:600;color:#59685f}.mkt-hero__bullets li::before{content:"";flex:none;width:18px;height:18px;border-radius:50%;background:#eaf9f1 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23157a46' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat}.mkt-hero__media{position:relative}.mkt-hero__media .mkt-frame{transform:perspective(1400px) rotateY(-4deg) rotateX(1.5deg);transition:transform .4s ease}.mkt-hero__media .mkt-frame:hover{transform:perspective(1400px) rotateY(0deg) rotateX(0deg)}.mkt-hero__glow{position:absolute;z-index:0;width:320px;height:320px;right:-40px;top:-60px;border-radius:50%;background:radial-gradient(circle, rgba(52, 201, 117, 0.28), transparent 65%);filter:blur(6px);pointer-events:none}.mkt-hero__badge{position:absolute;z-index:2;left:-28px;bottom:-22px;display:flex;align-items:center;gap:12px;padding:12px 16px;border-radius:16px;background:rgba(255,255,255,.92);backdrop-filter:blur(8px);border:1px solid #e4eae6;box-shadow:0 2px 4px rgba(15,26,21,.04),0 12px 32px -12px rgba(15,26,21,.14)}.mkt-hero__badge b{font-size:20px;font-weight:800;letter-spacing:-0.03em;color:#157a46}.mkt-hero__badge span{font-size:12.5px;font-weight:600;line-height:1.35;color:#59685f;max-width:21ch}.mkt-section{padding:84px 0}.mkt-section--alt{background:#f5f8f6;border-top:1px solid #e4eae6;border-bottom:1px solid #e4eae6}.mkt-section--tight{padding:52px 0}.mkt-section__head{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;max-width:760px;margin-bottom:44px}.mkt-section__head h2{margin:0 0 14px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:clamp(26px,3vw,38px);font-weight:800;letter-spacing:-0.03em;line-height:1.15;color:#0f1a15;text-transform:none}.mkt-section__head p{margin:0;font-size:16.5px;line-height:1.6;color:#59685f}.mkt-section__head--center{text-align:center;margin-left:auto;margin-right:auto}.mkt-section__head--center .mkt-eyebrow{margin-bottom:16px}.mkt-split{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;display:grid;grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);gap:56px;align-items:center}.mkt-split--flip>:first-child{order:2}.mkt-split__copy h2,.mkt-split__copy h3{margin:0 0 14px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:clamp(26px,3vw,38px);font-weight:800;letter-spacing:-0.03em;line-height:1.15;color:#0f1a15;text-transform:none;font-size:clamp(24px,2.5vw,32px)}.mkt-split__copy p{margin:0 0 14px;font-size:15.5px;line-height:1.65;color:#59685f}.mkt-split__copy p:last-of-type{margin-bottom:0}.mkt-split__copy ul{margin:18px 0 0;padding:0;list-style:none}.mkt-split__copy ul li{position:relative;padding-left:28px;margin-bottom:12px;font-size:14.5px;line-height:1.5;color:#0f1a15}.mkt-split__copy ul li::before{content:"";position:absolute;left:0;top:2px;width:18px;height:18px;border-radius:50%;background:#eaf9f1 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23157a46' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat}.mkt-split__copy .mkt-btn{margin-top:24px}.mkt-split__copy>.mkt-link{margin-top:20px}.mkt-split__actions{display:flex;flex-wrap:wrap;align-items:center;gap:16px;margin-top:24px}.mkt-split__actions .mkt-btn,.mkt-split__actions .mkt-link{margin-top:0}.mkt-split__media{min-width:0}.mkt-panel{padding:30px;border-radius:24px;background:#f5f8f6;border:1px solid #e4eae6}.mkt-panel h3{margin:0 0 12px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:18px;font-weight:800;letter-spacing:-0.015em;line-height:1.3;color:#0f1a15;text-transform:none;font-size:20px}.mkt-panel__actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}.mkt-steps{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:20px}.mkt-steps__item{position:relative;display:flex;flex-direction:column;padding:28px 26px 26px;border-radius:24px;background:#fff;border:1px solid #e4eae6;box-shadow:0 1px 2px rgba(15,26,21,.05);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.mkt-steps__item:hover{transform:translateY(-4px);border-color:rgba(0,0,0,0);box-shadow:0 2px 4px rgba(15,26,21,.04),0 12px 32px -12px rgba(15,26,21,.14)}.mkt-steps__item b{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;margin-bottom:18px;border-radius:12px;background:linear-gradient(135deg, #3ed486 0%, #1a9c5c 100%);color:#fff;font-size:15px;font-weight:800;box-shadow:0 6px 16px -8px rgba(52,201,117,.7)}.mkt-steps__item h3{margin:0 0 10px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:18px;font-weight:800;letter-spacing:-0.015em;line-height:1.3;color:#0f1a15;text-transform:none}.mkt-steps__item p{margin:0;font-size:14.5px;line-height:1.6;color:#59685f}.mkt-steps__item .mkt-link,.mkt-steps__item>a:last-child{margin-top:auto;padding-top:18px}.mkt-features{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;display:grid;grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));gap:18px}.mkt-features__item{padding:24px 22px;border-radius:16px;background:#fff;border:1px solid #e4eae6;transition:transform .18s ease,box-shadow .18s ease}.mkt-features__item:hover{transform:translateY(-3px);box-shadow:0 2px 4px rgba(15,26,21,.04),0 12px 32px -12px rgba(15,26,21,.14)}.mkt-features__item h3{display:flex;align-items:center;gap:10px;margin:0 0 10px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:18px;font-weight:800;letter-spacing:-0.015em;line-height:1.3;color:#0f1a15;text-transform:none;font-size:16px}.mkt-features__item h3::before{content:"";flex:none;width:34px;height:34px;border-radius:10px;background:#eaf9f1 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23157a46' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/16px no-repeat}.mkt-features__item p{margin:0;font-size:14px;line-height:1.6;color:#59685f}.mkt-features--plain .mkt-features__item h3::before{display:none}.mkt-tabs-wrap{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;display:flex;justify-content:center;padding:0 0 28px}.mkt-tabs{display:inline-flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:4px;padding:5px;border-radius:999px;background:#fff;border:1px solid #e4eae6;box-shadow:0 1px 2px rgba(15,26,21,.05);max-width:100%}.mkt-tabs a,.mkt-tabs button{appearance:none;border:none;background:rgba(0,0,0,0);color:#59685f;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:13.5px;font-weight:700;line-height:1.2;padding:10px 18px;border-radius:999px;cursor:pointer;text-decoration:none !important;white-space:nowrap;transition:background .18s ease,color .18s ease}.mkt-tabs a:hover,.mkt-tabs button:hover{color:#0f1a15;background:#f5f8f6}.mkt-tabs a.is-active,.mkt-tabs a.activeBtn,.mkt-tabs button.is-active,.mkt-tabs button.activeBtn{color:#fff;background:#0f1a15}.mkt-cards{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:20px}.mkt-cards--two{grid-template-columns:repeat(2, minmax(0, 1fr))}.mkt-cards__item{display:flex;flex-direction:column;border-radius:24px;overflow:hidden;background:#fff;border:1px solid #e4eae6;box-shadow:0 1px 2px rgba(15,26,21,.05);text-decoration:none !important;color:inherit;transition:transform .18s ease,box-shadow .18s ease}.mkt-cards__item:hover{transform:translateY(-4px);box-shadow:0 2px 4px rgba(15,26,21,.04),0 12px 32px -12px rgba(15,26,21,.14)}.mkt-cards__item img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover;background:#f5f8f6}.mkt-cards__item .mkt-cards__body{padding:20px 22px 22px}.mkt-cards__item .mkt-cards__body h3{margin:0 0 8px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:18px;font-weight:800;letter-spacing:-0.015em;line-height:1.3;color:#0f1a15;text-transform:none;font-size:16.5px}.mkt-cards__item .mkt-cards__body p{margin:0;font-size:14px;line-height:1.55;color:#59685f}.mkt-cards__item .mkt-cards__body .mkt-link{margin-top:14px}.mkt-more{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;display:flex;justify-content:center;margin-top:28px}.mkt-partners{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto}.mkt-partners__grid{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:8px 32px}.mkt-partners__item{display:flex;align-items:center;justify-content:center;height:76px;padding:0 16px}.mkt-partners img{max-height:48px;max-width:132px;object-fit:contain;filter:grayscale(1);opacity:.55;transition:filter .18s ease,opacity .18s ease}.mkt-partners img:hover{filter:grayscale(0);opacity:1}.mkt-cta-band{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap;padding:44px 48px;border-radius:28px;background:linear-gradient(135deg, #0b3f28 0%, #0e7a4c 55%, #17b26a 100%);color:#fff;box-shadow:0 4px 8px rgba(15,26,21,.04),0 32px 64px -24px rgba(15,26,21,.22)}.mkt-cta-band::before{content:"";position:absolute;width:420px;height:420px;right:-140px;top:-180px;border-radius:50%;background:radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 62%);pointer-events:none}.mkt-cta-band>div{position:relative;z-index:1}.mkt-cta-band h2{margin:0 0 10px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:clamp(24px,2.6vw,32px);font-weight:800;letter-spacing:-0.03em;color:#fff}.mkt-cta-band p{margin:0;max-width:48ch;font-size:15.5px;line-height:1.55;color:rgba(255,255,255,.86)}.mkt-cta-band .mkt-btn{position:relative;z-index:1}.mkt-cta-band .mkt-btn--primary{background:#fff;color:#157a46 !important;box-shadow:0 12px 24px -12px rgba(0,0,0,.4)}.mkt-cta-band .mkt-btn--primary:hover{background:#f2fff8;color:#157a46 !important}.mkt-page-hero{position:relative;padding:60px 0 44px;background:radial-gradient(900px 520px at 88% -20%, rgba(52, 201, 117, 0.16), transparent 62%),radial-gradient(700px 420px at -10% 10%, rgba(52, 201, 117, 0.08), transparent 60%),linear-gradient(180deg, #eef6f1 0%, #ffffff 100%);border-bottom:1px solid #e4eae6;text-align:center}.mkt-page-hero .mkt-container{max-width:760px}.mkt-page-hero h1{margin:0 0 14px;font-family:"Manrope","Segoe UI",system-ui,sans-serif;font-size:clamp(34px,4.6vw,56px);font-weight:800;letter-spacing:-0.035em;line-height:1.06;color:#0f1a15;font-size:clamp(30px,3.8vw,46px)}.mkt-page-hero p{margin:0 auto;max-width:60ch;font-size:17px;line-height:1.6;color:#59685f}.mkt-page-hero__actions{display:flex;justify-content:center;flex-wrap:wrap;gap:12px;margin-top:26px}@media(max-width: 980px){.mkt-hero{padding:52px 0 56px}.mkt-hero__grid{grid-template-columns:1fr;gap:40px}.mkt-hero__lead{max-width:none}.mkt-hero__media .mkt-frame{transform:none}.mkt-hero__badge{left:12px;bottom:-18px}.mkt-split{grid-template-columns:1fr;gap:32px}.mkt-split--flip>:first-child{order:0}.mkt-section{padding:60px 0}.mkt-section__head{margin-bottom:32px}.mkt-steps,.mkt-cards{grid-template-columns:1fr}.mkt-cta-band{padding:32px 26px}}@media(max-width: 560px){.mkt-btn{width:100%}.mkt-hero__actions .mkt-btn,.mkt-page-hero__actions .mkt-btn{width:100%}.mkt-cta-band .mkt-btn{width:100%}.mkt-hero__badge{display:none}.mkt-frame__bar{height:28px}}
.mkt-home__video{max-width:920px}.mkt-home__video video{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:24px;background:#0b120e;box-shadow:0 4px 8px rgba(15,26,21,.04),0 32px 64px -24px rgba(15,26,21,.22)}.mkt-home__partners-label{width:min(100% - 40px,1160px);margin-left:auto;margin-right:auto;margin-bottom:18px;text-align:center;font-size:12.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#8b9a91}
.cur-prompt{position:fixed;inset:0;z-index:10060;display:flex;align-items:center;justify-content:center;padding:16px}.cur-prompt__backdrop{position:absolute;inset:0;border:0;padding:0;margin:0;background:rgba(15,23,42,.45);cursor:pointer}.cur-prompt__card{position:relative;width:100%;max-width:420px;max-height:calc(100vh - 32px);overflow:auto;box-sizing:border-box;padding:24px;border-radius:18px;background:#fff;box-shadow:0 24px 60px rgba(15,23,42,.28);animation:cur-prompt-in .2s ease-out}.cur-prompt__card h2{margin:0 0 8px;font-size:20px;font-weight:800;color:#111827}.cur-prompt__card>p{margin:0 0 16px;font-size:14px;line-height:1.5;color:#667085}.cur-prompt__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}.cur-prompt__option{width:100%;display:flex;align-items:center;gap:12px;min-height:52px;padding:8px 14px;border:1px solid #e5e7eb;border-radius:12px;background:#fff;color:#111827;font-size:15px;text-align:left;cursor:pointer;transition:border-color .15s ease,background .15s ease}.cur-prompt__option:hover{border-color:#34c975;background:rgba(52,201,117,.06)}.cur-prompt__option.is-active{border-color:#34c975;background:rgba(52,201,117,.12)}.cur-prompt__symbol{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:10px;background:rgba(52,201,117,.12);color:#0f7a3f;font-size:16px;font-weight:700}.cur-prompt__name{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:600}.cur-prompt__code{font-size:12px;font-weight:700;color:#9ca3af}.cur-prompt__foot{margin:16px 0 0;font-size:12.5px;color:#9ca3af;text-align:center}body.cur-prompt-open{overflow:hidden}@keyframes cur-prompt-in{from{transform:translateY(12px);opacity:.8}to{transform:translateY(0);opacity:1}}
.table-wrapper{overflow-x:auto;-webkit-overflow-scrolling:touch;max-width:100%;height:750px}*{font-family:Arial,Helvetica,sans-serif;color:#5c545e}html,body,#root{min-height:100%}@media only screen and (max-width: 600px){html,body,#root{width:99%;margin:auto}}.ReactModal__Body--open{overflow:hidden}.Mui-disabled .MuiSvgIcon-root{fill:#bbb;opacity:.8}html{font-size:14px}body{background:#fff}a{cursor:pointer;text-decoration:none;margin-bottom:10px}img{object-fit:scale-down;overflow-x:unset}button,input,textarea{padding:0}button:focus,input:focus,textarea:focus{outline:0}ul{padding:0;margin:0}.content{background:#fff}.green_button,.grey_button,.light_grey_button,.dark_grey_button{font-size:1rem;color:#fff;padding:.7rem 1.5rem;border-radius:5px;border:unset;white-space:nowrap;text-decoration:unset;line-height:unset;margin-left:10px}.green_button{background-color:#34c975;margin-top:0px !important}.green_outlined{background-color:rgba(0,0,0,0);border:1px solid #34c975;font-size:1rem;height:36px;border-radius:5px;padding:0 12px 0 8px;align-items:center;justify-content:space-around;color:#34c975;cursor:pointer}.green_outlined img{width:30px;height:30px;margin-right:4px}.green_outlined:hover{background-color:#ccebda;border:1px solid #ccebda;transition:.3s background-color}.green_button.main_green{background-color:#34c975}.green_button.color_FA4913{background-color:#fa4913}.green_button.color_D82590{background-color:#d82590}.green_button.color_7B34C9{background-color:#7b34c9}.green_button.color_343FC9{background-color:#343fc9}.green_button.color_13B4FA{background-color:#13b4fa}.green_button.color_25C6D8{background-color:#25c6d8}.green_button.color_278364{background-color:#278364}.green_button.color_26A51E{background-color:#26a51e}.green_button.color_EBF141{background-color:#ebf141}.green_button.color_F69D08{background-color:#f69d08}.green_button.color_F2420C{background-color:#f2420c}.green_button.color_84827E{background-color:#84827e}.green_button.color_262120{background-color:#262120}.grey_button{background-color:#d0d3e0;color:#bbbdc7}.dark_grey_button{background-color:#6a6e68;margin-top:0 !important}.light_grey_button{background-color:#d0d3e0;color:rgba(0,0,0,.7)}.light_grey_button:hover,.dark_grey_button:hover{cursor:pointer;filter:brightness(110%) saturate(110%)}.green_button:hover{cursor:pointer;filter:brightness(110%) saturate(90%)}.flip_horiz{transform:scaleX(-1)}.flip_vert{transform:scaleY(-1)}.pointer{cursor:pointer}.not-allowed{cursor:not-allowed}.invisible{visibility:hidden}input[type=file]{width:0;height:0;visibility:hidden}.modal{position:absolute}.checkbox{display:inline-block;flex-shrink:0}.green_button:focus{background-color:#34c975 !important}.float_left{float:left}.page-block{width:100%;display:flex;justify-content:center;align-items:center;flex-flow:row wrap;gap:6px;margin:24px 0 8px}.page-block:has(.page-button:only-child){display:none}.page-block .page-button{min-width:38px;height:38px;box-sizing:border-box;display:inline-flex;align-items:center;justify-content:center;padding:0 10px;background-color:#fff;border:1px solid #e4e8ee;border-radius:10px;text-align:center;font-size:14px !important;font-weight:600;color:#667085;cursor:pointer;transition:background-color .16s ease,border-color .16s ease,color .16s ease,box-shadow .16s ease;-webkit-appearance:none;appearance:none;font-family:inherit;line-height:1}.page-block .page-button:hover{cursor:pointer;border-color:#34c975;color:#2bb367;background-color:rgba(52,201,117,.08)}.page-block .page-button:disabled{opacity:.4;cursor:not-allowed;pointer-events:none}.page-block .page-current,.page-block .page-button.page-current{background-color:#34c975;border-color:#34c975;color:#fff;box-shadow:0 2px 8px rgba(52,201,117,.35)}.page-block .page-current:hover,.page-block .page-button.page-current:hover{background-color:#2bb367;border-color:#2bb367;color:#fff}.page-block .page-skip{min-width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;padding:0;text-align:center;font-size:14px !important;color:#98a2b3}.deactivated_button{cursor:default !important;background-color:#e1e1e4 !important;color:#bcbcbc !important;border:#c6c6c9 !important}.deactivated_button:hover{background-color:#e1e1e4 !important}.pa_modal_input{border:1px solid #bdbcbc;border-radius:5px;height:32.21px;padding-left:10px;padding-right:10px;font-size:13px;color:#5c545e;width:97%;box-sizing:border-box}textarea.pa_modal_input{height:80px;padding-top:6px;padding-bottom:6px}.checkbox_wrapper{display:flex;align-items:center}.checkbox_wrapper span{margin-left:20px}.checkbox_wrapper_reverse{display:flex;align-items:center}.checkbox_wrapper_reverse span{margin-right:20px}.ReactModal__Content{outline:none;overflow:visible !important}.ReactModal__Overlay{z-index:2000 !important;background-color:rgba(0,0,0,.75) !important;display:flex;padding:40px;overflow:auto}.MuiAutocomplete-popper{z-index:3000 !important}@media only screen and (max-width: 460px){.ReactModal__Overlay--after-open{padding:20px;justify-content:center}.ReactModal__Overlay--after-open .popup_small{max-width:none}.ReactModal__Overlay--after-open .popup_vertical{min-width:100%}}.popup_base{margin-left:auto;margin-right:auto;background-color:#fff;border:solid #ddd;border-radius:8px;border-width:1px;transform:translate(0px, max(0px, 50vh - 40px - 50%));height:fit-content}.popup_base .popup_header{display:flex;padding:20px 16px 15px 24px !important;align-items:center;justify-content:space-between}.popup_base .popup_header h2{font-size:16px;display:flex;margin:0 auto}.popup_base .popup_content{overflow:visible;display:flex;justify-content:center;padding:16px 24px;flex-wrap:wrap}.popup_base .popup_content .content_confim{width:100%;text-align:center}.popup_base .popup_content label{margin-top:16px}.popup_base .popup_content label.confirm_label{margin-top:0;margin-bottom:24px;text-align:center}.popup_base .popup_content label.green_checkbox{margin-top:unset}.popup_base .popup_content .pa_modal_input{margin-top:8px;margin-bottom:20px}.popup_base .popup_content .pa_modal_input.error{border:1px solid red}.popup_base .popup_content .link{display:flex;align-self:center}.popup_base .popup_content .autocomplete_input{width:100%;border:1px solid #bdbcbc;border-radius:5px;padding-left:8px;margin-top:8px;margin-bottom:16px}.popup_base .popup_content .autocomplete_input button{padding:2px;border-radius:0}.popup_base .popup_content .autocomplete_input *{font-size:13px;font-family:Arial,Helvetica,sans-serif}.popup_base .popup_content .autocomplete_input svg{font-size:24px;font-family:Arial,Helvetica,sans-serif}.popup_base .popup_content .autocomplete_input .MuiInput-underline::before{display:none}.popup_base .popup_content .autocomplete_input .MuiInput-underline::after{display:none}.popup_base .popup_content .react_select{width:100%;margin-top:8px;margin-bottom:16px;box-sizing:border-box;border:1px solid #bdbcbc;border-radius:5px;font-size:13px;color:#5c545e}.popup_base .popup_content .react_select>div{border:unset;background-color:unset;min-height:unset}.popup_base .popup_content .react_select>div svg{margin-top:-2px;margin-bottom:-px}.popup_base .popup_content .react_select input{height:unset}.popup_base .popup_content .react_select>div{width:100%}.popup_base .popup_footer{display:flex;justify-content:center;width:95%;align-self:center}.popup_vertical{min-width:420px}.popup_vertical .popup_content{flex-direction:column;font-size:13px}.popup_vertical .popup_content .content_label{width:100%;margin:0 auto}.popup_vertical .popup_content .public_link_label{margin-top:30px}.popup_vertical .popup_content .buttons_block{display:flex;justify-content:space-between;width:100%;margin-top:16px}@media only screen and (max-width: 540px){.popup_vertical .popup_content .buttons_block{flex-wrap:wrap;display:flex}.popup_vertical .popup_content .buttons_block .green_button_save_more{margin:auto}}@media only screen and (max-width: 540px)and (max-width: 450px){.popup_vertical .popup_content .buttons_block .green_button_save_more{margin-left:77px}}@media only screen and (max-width: 540px)and (max-width: 370px){.popup_vertical .popup_content .buttons_block .green_button_save_more{margin-left:67px}}@media only screen and (max-width: 540px)and (max-width: 345px){.popup_vertical .popup_content .buttons_block .green_button_save_more{margin-left:31px}}.popup_vertical .popup_content .buttons_center{justify-content:center}@media only screen and (max-width: 1200px){.rocketchat-widget{margin-bottom:100px}}.popup_small{max-width:800px}.green_checkbox{margin-bottom:-4px;margin-top:-4px}.green_checkbox .MuiTypography-body1{font-family:Arial,Helvetica,sans-serif;font-size:13px}.green_checkbox .Mui-checked .MuiSvgIcon-root *{color:#34c975}.sorgular-form{display:flex;justify-content:space-between;flex-wrap:wrap;width:100%}.sorgular-form .col{display:flex;flex-direction:column}.css-yt9ioa-option{background-color:#fff !important}.personal_overlay_z2{z-index:2;position:fixed;inset:0px}.link-block-title{margin-bottom:8px}.link-block{display:flex;justify-content:space-between;align-items:center}.link-block .pa_modal_input{margin:0 !important}.qr-code-block{text-align:center;margin-top:16px}.qr-code-block button{margin-top:10px}.qr-code-canvas{display:inline-block;line-height:0}.qr-code-canvas canvas{width:100% !important;height:100% !important}.language-block_link{padding:10px;margin-right:0 !important}.language-block_link--active{background:#34c975;color:#fff !important}@media only screen and (max-width: 480px){.rocketchat-container{margin-top:100px}}
