/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
figcaption,
figure,
main {
  display: block;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
audio,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  display: inline-block;
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details,
menu {
  display: block;
}
summary {
  display: list-item;
}
canvas {
  display: inline-block;
}
[hidden],
template {
  display: none;
}
:root {
  --color-white: #fff;
  --color-light-gray: #f7f7fa;
  --bg: var(--color-light-gray);
  --top-banner-padding-top: var(--safe-area-inset-top);
  --top-banner-inner-height: 58px;
  --top-banner-height: calc(
    var(--top-banner-padding-top) + var(--top-banner-inner-height)
  );
  --m-container-top: var(--safe-area-inset-top);
  --m-container-height: calc(100% - var(--m-container-top));
  --modal-padding-top: 0px;
  --modal-padding-bottom: var(--safe-area-inset-bottom);
  --modal-bg: var(--color-white);
  --modal-max-height: calc(100% - 32px - var(--safe-area-inset-top));
  --modal-width: calc(
    100% - 32px - var(--safe-area-inset-left) - var(--safe-area-inset-right)
  );
  --modal-header-padding-top: 0px;
  --modal-header-inner-height: 54px;
  --modal-header-height: calc(
    var(--modal-header-padding-top) + var(--modal-header-inner-height)
  );
  --canvas-border-radius: 0;
  --canvas-header-height: 54px;
  --canvas-dashboard-height: 54px;
  --canvas-dashboard-padding-top: 16px;
  --canvas-dashboard-padding-bottom: 16px;
  --canvas-bg-top: var(--canvas-header-height);
  --canvas-bg-bottom: calc(
    var(--canvas-dashboard-height) + var(--canvas-dashboard-padding-top) +
      var(--canvas-dashboard-padding-bottom)
  );
  --burger-top: 16px;
  --burger-right: 16px;
  --burger-width: 56px;
  --burger-height: 56px;
  --preview-burger-top: calc(16px + var(--safe-area-inset-top));
}
@supports (width: max(100vw, 100vh)) {
  :root {
    --canvas-dashboard-padding-bottom: max(
      calc(var(--safe-area-inset-top) - 10px),
      16px
    );
    --modal-padding-bottom: max(
      calc(var(--safe-area-inset-bottom) - 10px),
      16px
    );
  }
}
::-moz-selection {
  background: #333;
  color: #fff;
}
::selection {
  background: #333;
  color: #fff;
}
html {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  height: 100%;
}
body,
html {
  width: 100%;
}
body {
  background-color: var(--bg);
  min-height: 100%;
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
  color: #007aff;
  text-decoration: none;
  font-weight: 500;
}
p {
  font-size: 1em;
  margin: 1em 0;
}
.grecaptcha-badge {
  visibility: hidden;
}
#mssgme_widget {
  bottom: 60px;
}
@media (max-width: 767px) {
  #widget_circle {
    bottom: 10px !important;
  }
  #mssg_widget_box {
    bottom: 81px !important;
    max-height: calc(100% - 91px) !important;
  }
}
#mssgme_widget.visible {
  display: block !important;
}
html {
  --safe-area-inset-top: 0px;
  --safe-area-inset-bottom: 0px;
  --safe-area-inset-left: 0px;
  --safe-area-inset-right: 0px;
}
@supports (padding-top: env(safe-area-inset-top)) {
  html {
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-inset-left: env(safe-area-inset-left, 0px);
    --safe-area-inset-right: env(safe-area-inset-right, 0px);
  }
}
.auDJi8of {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
  z-index: 100000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  padding: 11px 12px 11px 16px;
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-animation: RrdUt942 0.3s ease forwards;
  animation: RrdUt942 0.3s ease forwards;
  pointer-events: all;
}
.auDJi8of.EVLeQv3A {
  -webkit-animation: tEEUTLOL 0.3s ease forwards;
  animation: tEEUTLOL 0.3s ease forwards;
}
.OYBqBWOu {
  background-color: #3eb991;
}
._8\+Km5d9F {
  background-color: #dc5960;
}
.\+PP-rb8T {
  color: inherit;
  text-decoration: none;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.\+PP-rb8T,
.\+PP-rb8T svg {
  display: block;
}
.\+PP-rb8T:focus,
.\+PP-rb8T:hover {
  color: inherit;
}
.\+PP-rb8T:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
@-webkit-keyframes RrdUt942 {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes RrdUt942 {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes tEEUTLOL {
  0% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes tEEUTLOL {
  0% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
}
.Z4lvOQvu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  top: 0;
  left: 0;
  padding: 16px;
  width: 100%;
  z-index: 100000;
  pointer-events: none;
  padding-top: calc(var(--safe-area-inset-top) + 16px);
}
.gpkZOZr4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.Jlm-mXPE {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.-WCdUEwj {
  position: relative;
  width: 100%;
  background-color: #ccc;
  overflow: hidden;
}
._0CImLKVU .-WCdUEwj {
  padding-top: 100%;
}
.hOuchi1u .-WCdUEwj {
  padding-top: 56.25%;
}
.SG5JkohV {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
.wzeae8rD {
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}
.wzeae8rD > :last-child {
  margin-bottom: 0;
}
.m\+AzWZ5l {
  direction: ltr;
}
.luXdBB2d {
  direction: rtl;
}
.LtxzMh6g {
  display: inline-block;
  margin: 0;
  max-width: 100%;
  height: auto;
}
.JxgUgO69 {
  font-weight: 700;
}
.bOdSbGeV {
  font-style: italic;
}
.Qse\+Hs7G {
  text-decoration: underline;
}
.qCqFIxlc {
  text-decoration: line-through;
}
.e1NXV-jy {
  text-decoration: underline line-through;
}
.byWjQaGZ {
  color: #216fdb;
  text-decoration: none;
}
._3NnPGx9Q {
  margin: 0;
  position: relative;
}
._1bNjPmPO,
._8pLgH85P,
.URjQFsBG,
.mLySmdnT {
  font-weight: 400;
  padding: 0;
  margin: 0 0 10px;
}
._1bNjPmPO:not(:first-child),
._8pLgH85P:not(:first-child),
.URjQFsBG:not(:first-child),
.mLySmdnT:not(:first-child) {
  margin-top: 24px;
}
._1bNjPmPO {
  font-size: 2.125em;
  line-height: 1.2;
  margin: 0 0 8px;
}
._8pLgH85P {
  font-size: 1.5em;
  line-height: 1.3;
  margin: 0 0 9px;
}
.URjQFsBG,
.QJoxFuYZ,
.IwRamI\+E {
  font-size: 1.25em;
  line-height: 1.35;
  margin: 0 0 10px;
}
.QJoxFuYZ {
  font-size: 1.125em;
  line-height: 1.475;
}
.IwRamI\+E {
  font-size: 1em;
  line-height: 1.6;
}
.mLySmdnT {
  font-size: 0.75em;
  margin: -2px 0 10px;
  line-height: 1.5;
}
.mLySmdnT:not(:first-child) {
  margin-top: 0;
}
.iJwLP\+\+S {
  margin: 0 0 10px 12px;
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}
.iJwLP\+\+S:before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
  border-radius: 2px;
}
._8Zd7RnYI,
._24RltAlO {
  padding: 0;
  margin: 0 0 10px 28px;
}
._1mR1Kqsn {
  margin: 0 0 4px;
}
._1mR1Kqsn:last-of-type {
  margin: 0;
}
.GWgrd1jb {
  list-style-type: none;
}
pre::-webkit-scrollbar {
  background: transparent;
  width: 10px;
}
pre::-webkit-scrollbar-thumb {
  background: #999;
}
.H7nh4wux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.H7nh4wux.RRWPioz0 .YbX77UUo {
  max-width: 100%;
}
.H7nh4wux.RRWPioz0 .YbX77UUo._3KlfF8J1 {
  padding: 16px 24px 16px 76px;
}
.H7nh4wux.-I3pWuKf .YbX77UUo {
  width: 100%;
}
.YbX77UUo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 24px;
  min-height: 56px;
  color: #2979ff;
  background-color: #f7f7fa;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease,
    -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.02px;
  position: relative;
}
@media (min-width: 1025px) {
  .YbX77UUo:not(._5SoEQSu-):hover {
    -webkit-box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.24);
    box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.24);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
._3KlfF8J1 {
  padding: 16px 76px;
}
.IlYNVMqC {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
}
.IlYNVMqC,
.IlYNVMqC > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.IlYNVMqC > svg {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
._61lUlncS {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  max-width: 100%;
}
._57-xfwD8 {
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  opacity: 0.5;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ou47nrxq .YbX77UUo {
  font-weight: 700;
  text-decoration: underline;
}
.r1Zk3VO0 {
  text-align: center;
  font-size: var(--icon-size);
  line-height: var(--icon-size);
}
.r1Zk3VO0,
._3jaGiY\+Z,
div._3jaGiY\+Z {
  --icon-size: 16px;
  width: var(--icon-size);
  height: var(--icon-size);
}
.VPH642qF {
  width: 26px;
  height: 26px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
.VPH642qF > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.oyG9zGOV > p {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}
._9Kk5iRYp {
  padding: 0 16px;
  margin: 16px 0;
}
.mVP7tLtb .JmOTvBUT {
  width: 100%;
  margin: 0;
  line-height: 1.5;
  font-style: italic;
  white-space: pre-wrap;
  word-break: break-word;
  position: relative;
}
.mVP7tLtb .JmOTvBUT.epczYL08 {
  padding: 0 0 0 0.875em;
  border-left-width: 2px;
  border-left-style: solid;
}
.mVP7tLtb .JmOTvBUT.UWDFRicK {
  padding: 0 0 0 1em;
}
.mVP7tLtb .JmOTvBUT.UWDFRicK:before {
  content: "“";
  display: block;
  position: absolute;
  top: 0;
  left: -0.15em;
  font-size: 2em;
  line-height: 1;
}
.mVP7tLtb .fvdsOqaa {
  width: 100%;
  text-align: right;
  font-size: 90%;
  font-weight: 500;
  margin: 8px 0 0;
}
.xldG6GzL {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}
.xldG6GzL > li {
  position: relative;
  padding: 0 0 0 20px;
  margin: 0 0 4px;
  counter-increment: item;
}
.xldG6GzL > li:before {
  content: "•";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.xldG6GzL > li:last-of-type {
  margin: 0;
}
.xldG6GzL._7YEKrZIr > li:before {
  content: "-";
}
.xldG6GzL.lnnJzRJb > li:before {
  content: counter(item) ".";
}
.DbivtK14 {
  width: 100%;
}
.rT4pGrvr .DbivtK14 {
  height: 1px;
  background-color: #ccc;
  border-radius: 10px;
}
.rT4pGrvr .DbivtK14.ufiOKiQA {
  margin-right: auto;
}
.rT4pGrvr .DbivtK14.iB\+fI9Me {
  margin: 0 auto;
}
.rT4pGrvr .DbivtK14.jBdYgarx {
  margin-left: auto;
}
.cKJOW-rz .DbivtK14 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cKJOW-rz .DbivtK14.ufiOKiQA {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.cKJOW-rz .DbivtK14.ufiOKiQA.ab204BRg > div {
  margin: 0 16px 0 0;
}
.cKJOW-rz .DbivtK14.ufiOKiQA._4BwZ9XAT > div {
  margin: 0 24px 0 0;
}
.cKJOW-rz .DbivtK14.ufiOKiQA.D7K9lW8l > div {
  margin: 0 36px 0 0;
}
.cKJOW-rz .DbivtK14.jBdYgarx {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.cKJOW-rz .DbivtK14.jBdYgarx.ab204BRg > div {
  margin: 0 0 0 16px;
}
.cKJOW-rz .DbivtK14.jBdYgarx._4BwZ9XAT > div {
  margin: 0 0 0 24px;
}
.cKJOW-rz .DbivtK14.jBdYgarx.D7K9lW8l > div {
  margin: 0 0 0 36px;
}
.cKJOW-rz .DbivtK14 > div {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 8px;
}
.cKJOW-rz .DbivtK14 > div:nth-of-type(2n) {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
.cKJOW-rz .DbivtK14._4BwZ9XAT > div {
  width: 12px;
  height: 12px;
  margin: 0 12px;
}
.cKJOW-rz .DbivtK14.D7K9lW8l > div {
  width: 18px;
  height: 18px;
  margin: 0 16px;
}
.zqa8Xx9n .DbivtK14 {
  opacity: 0;
}
.gp8znDQc {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 41%;
}
.BBb7LJdg {
  background-color: #ccc;
}
.su0nEt-f {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.su0nEt-f > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sP0IouE\+ {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  margin: -50px auto 0;
  position: relative;
}
.sP0IouE\+ > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.C\+Wb\+50p {
  text-align: center;
  word-wrap: break-word;
}
.C\+Wb\+50p > h1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  margin: 8px 0 0;
}
.C\+Wb\+50p > p {
  opacity: 0.8;
  margin: 0;
  font-size: 14px;
}
.YRDRxorp {
  display: block;
  margin-top: 16px;
  margin-left: 16px;
  margin-right: 16px;
}
.YRDRxorp.Ra4eyzs7.Wl7Aoa11 {
  margin-top: -50px;
}
.YRDRxorp.n6l0sr9k,
.YRDRxorp.X4\+dQZZd {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.YRDRxorp.n6l0sr9k.Wl7Aoa11,
.YRDRxorp.X4\+dQZZd.Wl7Aoa11 {
  margin-top: -20px;
}
.YRDRxorp.n6l0sr9k .vZmc2LWe,
.YRDRxorp.X4\+dQZZd .vZmc2LWe {
  width: 90px;
  height: 90px;
}
.YRDRxorp.n6l0sr9k .\-75uvudy,
.YRDRxorp.X4\+dQZZd .\-75uvudy {
  text-align: left;
  overflow: hidden;
}
.YRDRxorp.n6l0sr9k .\-75uvudy > h1,
.YRDRxorp.X4\+dQZZd .\-75uvudy > h1 {
  width: 100%;
  font-size: 24px;
  margin: 31px 0 0;
}
.YRDRxorp.n6l0sr9k .\-75uvudy > p,
.YRDRxorp.X4\+dQZZd .\-75uvudy > p {
  opacity: 0.8;
}
.YRDRxorp.X4\+dQZZd {
  grid-template-columns: 1fr auto;
}
.YRDRxorp.X4\+dQZZd .vZmc2LWe {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.YRDRxorp.X4\+dQZZd .\-75uvudy {
  text-align: right;
}
.vZmc2LWe {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  margin: 0 auto;
  position: relative;
}
.vZmc2LWe > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.\-75uvudy {
  width: 100%;
  text-align: center;
  word-wrap: break-word;
}
.\-75uvudy > h1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  margin: 6px 0 0;
}
.\-75uvudy > p {
  margin: 0;
  font-size: 14px;
}
.aBzS\+Vtx {
  padding: 0 16px;
  overflow: hidden;
  width: 100%;
}
.aBzS\+Vtx.KS-kAjef,
.aBzS\+Vtx.azCk5qA3 {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.aBzS\+Vtx.KS-kAjef .rDeUSzRp,
.aBzS\+Vtx.azCk5qA3 .rDeUSzRp {
  text-align: left;
  -ms-flex-item-align: center;
  align-self: center;
}
.aBzS\+Vtx.KS-kAjef .rDeUSzRp > h1,
.aBzS\+Vtx.azCk5qA3 .rDeUSzRp > h1 {
  margin-top: 0;
}
.aBzS\+Vtx.azCk5qA3 {
  grid-template-columns: 1fr auto;
}
.aBzS\+Vtx.azCk5qA3 .n6\+2famy {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.aBzS\+Vtx.azCk5qA3 .rDeUSzRp {
  text-align: right;
}
.n6\+2famy {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.n6\+2famy > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.n6\+2famy ._4MZMZX4i {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 4px solid #fff;
  pointer-events: none;
}
.rDeUSzRp {
  width: 100%;
  text-align: center;
  overflow: hidden;
  word-wrap: break-word;
}
.rDeUSzRp > h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin: 16px 0 0;
}
.rDeUSzRp > p {
  margin: 4px 0 0;
  font-weight: 400;
  font-size: 16px;
}
._3Y066Sa3 h1,
._3Y066Sa3 h2,
._3Y066Sa3 h3,
._3Y066Sa3 h4 {
  margin: 0;
  word-break: break-word;
  white-space: pre-wrap;
}
._3Y066Sa3 h1 {
  font-size: 212.5%;
  font-weight: bolder;
}
._3Y066Sa3 h2 {
  font-size: 150%;
  font-weight: 700;
}
._3Y066Sa3 h3 {
  font-size: 125%;
  font-weight: 600;
}
._3Y066Sa3 h4 {
  font-size: 112.5%;
  font-weight: 500;
}
.dGFCENl7 {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.02px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dGFCENl7 > li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
}
.dGFCENl7 > li.nV\+uUldQ {
  display: none;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}
.slOXrqtE {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.slOXrqtE > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 56px;
  background-color: #f2f2f2;
  border-radius: 10px;
}
.Mfy2p5aK .dGFCENl7 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.Mfy2p5aK .dGFCENl7 > li {
  margin: 0 4px 0 0;
}
.Mfy2p5aK .dGFCENl7 > li:last-of-type {
  margin: 0;
}
.Mfy2p5aK .dGFCENl7 > li.nV\+uUldQ {
  margin-top: 4px;
}
.Mfy2p5aK .slOXrqtE {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.Mfy2p5aK .slOXrqtE > div {
  margin: 0 4px 0 0;
  border-radius: 0;
}
.Mfy2p5aK .slOXrqtE > div:first-of-type {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.Mfy2p5aK .slOXrqtE > div:last-of-type {
  margin: 0;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.Mfy2p5aK .slOXrqtE > div:nth-of-type(2),
.Mfy2p5aK .slOXrqtE > div:nth-of-type(3) {
  border-radius: 0 !important;
}
.HIh9Ta8a .dGFCENl7 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.HIh9Ta8a .dGFCENl7 > li {
  margin: 0 10px 0 0;
}
.HIh9Ta8a .dGFCENl7 > li:last-of-type {
  margin: 0;
}
.HIh9Ta8a .dGFCENl7 > li.nV\+uUldQ {
  margin-top: 10px;
}
.HIh9Ta8a .slOXrqtE > div {
  margin: 0 10px 0 0;
}
.xuueRVqB .dGFCENl7 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.xuueRVqB .dGFCENl7 > li {
  width: 100%;
  margin: 0 0 8px;
}
.xuueRVqB .dGFCENl7 > li:last-of-type {
  margin: 0;
}
.xuueRVqB .dGFCENl7 > li.nV\+uUldQ {
  margin-top: 8px;
}
.xuueRVqB .slOXrqtE {
  display: block;
}
.xuueRVqB .slOXrqtE > div {
  display: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  margin: 0 0 8px;
}
.xuueRVqB .slOXrqtE > div:first-of-type,
.xuueRVqB .slOXrqtE > div:nth-of-type(2) {
  display: block;
}
.SnK9-O3U .dGFCENl7 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.SnK9-O3U ul[data-count="5"] > li:nth-of-type(5) {
  margin: 0;
}
.SnK9-O3U ul[data-count="5"] > .nV\+uUldQ:nth-of-type(6) {
  display: block;
}
.rK6DJNn4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 56px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: #2f3542;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease,
    -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.02px;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .rK6DJNn4:hover {
    -webkit-box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.24);
    box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.24);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
.rK6DJNn4 > img,
.rK6DJNn4 > svg {
  fill: currentColor;
  width: 21px;
  height: auto;
  margin: 0;
}
.rK6DJNn4 > img,
.rK6DJNn4 > span,
.rK6DJNn4 > svg {
  display: inline-block;
  vertical-align: top;
  pointer-events: none;
  position: relative;
}
.rK6DJNn4 > span {
  margin: 0 0 0 8px;
}
.P-jFikuV {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00b1ff),
    to(#006dfe)
  );
  background-image: linear-gradient(180deg, #00b1ff, #006dfe);
}
.P-jFikuV > span:before {
  content: "Messenger";
}
.AWnCeeo0 {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#60fd7c),
    to(#07b825)
  );
  background-image: linear-gradient(180deg, #60fd7c, #07b825);
}
.AWnCeeo0 > span:before {
  content: "WhatsApp";
}
.j9f05UAW {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00aefa),
    to(#0983c5)
  );
  background-image: linear-gradient(180deg, #00aefa, #0983c5);
}
.j9f05UAW > span:before {
  content: "Telegram";
}
.pKLW-DKu {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#66a2e7),
    to(#3874b9)
  );
  background-image: linear-gradient(180deg, #66a2e7, #3874b9);
}
.pKLW-DKu > span:before {
  content: "Vkontakte";
}
.rxq1VMT\+ {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#00bbf2),
    to(#007ad4)
  );
  background-image: linear-gradient(180deg, #00bbf2, #007ad4);
}
.rxq1VMT\+ > span:before {
  content: "Skype";
}
.JyHFkhEI {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#8760fd),
    to(#4c389d)
  );
  background-image: linear-gradient(180deg, #8760fd, #4c389d);
}
.JyHFkhEI > span:before {
  content: "Viber";
}
.qPER2IFS {
  position: relative;
  background-image: linear-gradient(
    45deg,
    #fec21d 15.1%,
    #f0000e 50.52%,
    #bf00a3 84.9%
  );
}
.qPER2IFS > span:before {
  content: "Direct";
}
.d2Ab9dA-.rRavN7bk {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.d2Ab9dA-.y7Y1KxWd {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.LSQp6buN {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 56px;
  padding: 8px;
}
.LSQp6buN span {
  font-size: 11px;
  font-weight: 400;
  line-height: 11px;
  margin: 3px 0 0;
}
.LSQp6buN svg {
  margin-bottom: 3px;
}
.VehDAT1I.rK6DJNn4 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.VehDAT1I.rK6DJNn4 img,
.VehDAT1I.rK6DJNn4 svg {
  margin: 0 24px;
}
.VehDAT1I.rK6DJNn4 .zjzPayiP {
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 18px;
  position: relative;
}
.eAhRuP0T {
  background-image: none;
}
.ym4jsoaM {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ym4jsoaM,
.ym4jsoaM.ykhHbSsX {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ym4jsoaM.PYuvhkLF {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.ym4jsoaM.BKy-85\+6 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.vBgL2mzi {
  -webkit-filter: blur(20px);
  filter: blur(20px);
}
.RLQHVzRE {
  overflow: hidden;
  cursor: inherit;
}
.RLQHVzRE._6OQxXkTx {
  cursor: pointer;
}
.SMTV2Bfe {
  display: block;
}
.NrfAqgP8 {
  background-color: #ccc;
}
.NrfAqgP8.aFAYHxTN .SMTV2Bfe {
  padding-top: 56.25%;
}
.aFAYHxTN {
  position: relative;
  width: 100%;
}
.aFAYHxTN img {
  display: block;
  width: 100%;
  height: auto;
}
.p9808iw9 {
  position: relative;
  width: 100%;
}
.p9808iw9 .SMTV2Bfe {
  width: 100%;
  padding-top: 100%;
}
.p9808iw9 .D\+nI\+kNx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
._5rwNF2F4 {
  position: relative;
  width: 100%;
}
._5rwNF2F4 .SMTV2Bfe {
  width: 100%;
  padding-top: 56.25%;
}
._5rwNF2F4 .D\+nI\+kNx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nD-tcVb6 .D\+nI\+kNx {
  background-size: contain;
}
.nD-tcVb6 .D\+nI\+kNx,
.Nf7\+X9UN .D\+nI\+kNx {
  background-position: 50%;
  background-repeat: no-repeat;
}
.Nf7\+X9UN .D\+nI\+kNx {
  background-size: cover;
}
.w02WK25G .D\+nI\+kNx {
  background-size: 100% 100%;
}
._9PgFSgRE .D\+nI\+kNx {
  background-position: 50%;
  background-size: cover;
}
._92gRLKUA {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
._92gRLKUA.w8gLePER > li {
  margin: 2px 16px 2px 0;
}
._92gRLKUA.tp8gx\+oQ > li {
  margin: 2px 0 2px 16px;
}
._92gRLKUA > li {
  margin: 2px 8px;
}
._92gRLKUA > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nyzOqItB {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
  gap: 12px;
}
.Lfon5i1v {
  font-weight: 700;
}
.Lfon5i1v > div {
  white-space: wrap;
}
.Lfon5i1v + .Lfon5i1v {
  margin-top: 17px;
}
.Kw4qiQWH {
  opacity: 0.3;
}
.NFbIC9LI {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
}
.NFbIC9LI,
.NFbIC9LI .xh7ka9\+0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
}
.NFbIC9LI .xh7ka9\+0 {
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  background-color: #eee;
  border-radius: 10px;
  padding: 16px 16px 16px 56px;
  position: relative;
}
.NFbIC9LI .xh7ka9\+0 ._1la0g\+Ch {
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 16px;
  left: 16px;
}
.NFbIC9LI .xh7ka9\+0 ._1la0g\+Ch,
.NFbIC9LI .xh7ka9\+0 .ID82o4an {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.NFbIC9LI .xh7ka9\+0 .ID82o4an {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.NFbIC9LI .xh7ka9\+0 .ID82o4an .eD\+\+M06e {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  word-break: break-word;
  margin-bottom: 5px;
  vertical-align: center;
}
.NFbIC9LI .xh7ka9\+0 .ID82o4an .pplFH4zy {
  white-space: pre-wrap;
  word-break: break-word;
}
.NFbIC9LI .xh7ka9\+0 + .xh7ka9\+0 {
  margin-top: 8px;
}
.c5MbqCxF {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.c5MbqCxF,
.c5MbqCxF .JzfnlfEX {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c5MbqCxF .JzfnlfEX {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 8px;
  min-width: 60px;
}
.c5MbqCxF .JzfnlfEX:first-of-type {
  margin: 0 8px 0 0;
}
.c5MbqCxF .JzfnlfEX:last-of-type {
  margin: 0 0 0 8px;
}
.c5MbqCxF .JzfnlfEX ._1t8T-9rf {
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
}
.c5MbqCxF .JzfnlfEX .EF-S6fhv {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin: 4px 0 0;
}
.v\+MRynnB .pmkWVOw1 {
  padding: 16px;
  border-radius: 12px;
  background-color: #fafafa;
  font-size: 12px;
  word-break: break-word;
}
.v\+MRynnB .pmkWVOw1 .ffYxOdyd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 6px;
}
.v\+MRynnB .pmkWVOw1 .ffYxOdyd > svg {
  display: block;
  margin: 0 8px 0 0;
}
.TuvLnSuE {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 30px);
  grid-gap: 0;
}
.wzLW-QJE {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  justify-self: stretch;
  overflow: hidden;
}
.sJUBa9WA,
.KC8p2Sct {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.KC8p2Sct {
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  scroll-behavior: smooth;
}
@media (min-width: 601px) {
  .KC8p2Sct::-webkit-scrollbar {
    width: 4px;
  }
  .KC8p2Sct::-webkit-scrollbar-track {
    background: rgba(85, 85, 85, 0);
  }
  .KC8p2Sct::-webkit-scrollbar-thumb {
    background: rgba(85, 85, 85, 0.5019607843);
    border-radius: 2px;
  }
}
.s2LO6w8A {
  max-width: 100%;
  min-height: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  position: relative;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.s2LO6w8A,
.Rup4FPNC {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.Rup4FPNC {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}
.qX1r77E1 {
  width: 600px;
  height: 100%;
  max-width: 100%;
  position: relative;
  margin: auto;
}
._7XXYK472 {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}
._7XXYK472,
._7XXYK472 > img {
  width: 100%;
  height: 100%;
}
._7XXYK472 > img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.Lfsmb1VM {
  width: 100%;
  height: 68px;
}
.kpAAY\+sk {
  --root-position: fixed;
  --logo-animation: 5s odsJrnYP 2s ease-in-out infinite;
  --icon-arrow-opacity: 0;
  --icon-arrow-transform: none;
  --icon-arrow-transform-hover: translateX(3px);
  --icon-close-transform: none;
  --icon-close-transform-hover: rotate(-90deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 8px;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  position: var(--root-position);
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
._5PbwEwki {
  --root-position: static;
  --logo-animation: none;
  --icon-arrow-opacity: 1;
}
.o1Wq6TB0 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.6)),
    to(transparent)
  );
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
  z-index: 0;
}
.itoycEBS {
  position: relative;
}
.rpkYck2x {
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.rpkYck2x:hover {
  --icon-close-transform: var(--icon-close-transform-hover);
}
.QxRzqPNq {
  display: block;
  width: 18px;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: var(--icon-close-transform);
  -ms-transform: var(--icon-close-transform);
  transform: var(--icon-close-transform);
}
._5ddM4J\+b {
  padding: 10px 16px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.15px;
  color: #fff;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease,
    box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease,
    box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
._5ddM4J\+b:hover {
  --icon-arrow-transform: var(--icon-arrow-transform-hover);
  --logo-animation: p6-TlESd 1s ease-in-out;
}
.b1OVISg7 {
  width: 20px;
  margin: 0 8px 0 0;
  -webkit-animation: var(--logo-animation);
  animation: var(--logo-animation);
}
.YBHS2fzt,
.b1OVISg7 {
  display: block;
  height: auto;
}
.YBHS2fzt {
  width: 16px;
  margin: 0 0 0 4px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: var(--icon-arrow-transform);
  -ms-transform: var(--icon-arrow-transform);
  transform: var(--icon-arrow-transform);
  opacity: var(--icon-arrow-opacity);
}
@-webkit-keyframes p6-TlESd {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-5deg);
    transform: translate3d(-15%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(12%, 0, 0) rotate(3deg);
    transform: translate3d(12%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-9%, 0, 0) rotate(-3deg);
    transform: translate3d(-9%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(6%, 0, 0) rotate(2deg);
    transform: translate3d(6%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-3%, 0, 0) rotate(-1deg);
    transform: translate3d(-3%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes p6-TlESd {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-5deg);
    transform: translate3d(-15%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(12%, 0, 0) rotate(3deg);
    transform: translate3d(12%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-9%, 0, 0) rotate(-3deg);
    transform: translate3d(-9%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(6%, 0, 0) rotate(2deg);
    transform: translate3d(6%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-3%, 0, 0) rotate(-1deg);
    transform: translate3d(-3%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes odsJrnYP {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  3% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-5deg);
    transform: translate3d(-15%, 0, 0) rotate(-5deg);
  }
  6% {
    -webkit-transform: translate3d(12%, 0, 0) rotate(3deg);
    transform: translate3d(12%, 0, 0) rotate(3deg);
  }
  9% {
    -webkit-transform: translate3d(-9%, 0, 0) rotate(-3deg);
    transform: translate3d(-9%, 0, 0) rotate(-3deg);
  }
  12% {
    -webkit-transform: translate3d(6%, 0, 0) rotate(2deg);
    transform: translate3d(6%, 0, 0) rotate(2deg);
  }
  15% {
    -webkit-transform: translate3d(-3%, 0, 0) rotate(-1deg);
    transform: translate3d(-3%, 0, 0) rotate(-1deg);
  }
  20% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes odsJrnYP {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  3% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-5deg);
    transform: translate3d(-15%, 0, 0) rotate(-5deg);
  }
  6% {
    -webkit-transform: translate3d(12%, 0, 0) rotate(3deg);
    transform: translate3d(12%, 0, 0) rotate(3deg);
  }
  9% {
    -webkit-transform: translate3d(-9%, 0, 0) rotate(-3deg);
    transform: translate3d(-9%, 0, 0) rotate(-3deg);
  }
  12% {
    -webkit-transform: translate3d(6%, 0, 0) rotate(2deg);
    transform: translate3d(6%, 0, 0) rotate(2deg);
  }
  15% {
    -webkit-transform: translate3d(-3%, 0, 0) rotate(-1deg);
    transform: translate3d(-3%, 0, 0) rotate(-1deg);
  }
  20% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.LbncVvxa {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  pointer-events: auto;
}
.MFZ00NCK,
.LbncVvxa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.MFZ00NCK {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.12);
  margin: 0 6px 0 0;
  color: #000;
}
.MFZ00NCK.TC68aeLQ {
  width: 48px;
  height: 48px;
  margin: 0;
}
.MFZ00NCK > svg {
  display: block;
}
.RbxKu1UN {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 100%;
  -webkit-box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.RbxKu1UN.GltxcpTe {
  position: relative;
  right: 0;
  bottom: 0;
}
.RbxKu1UN.JVIzAMdG {
  position: absolute;
}
.RbxKu1UN .QMtVydW2 {
  margin: auto;
  color: #000;
}
.RbxKu1UN .cvgZxy-s {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: #fff;
  font-size: 9px;
  height: 16px;
  min-width: 16px;
  border-radius: 16px;
  border: 1px solid #fff;
  padding: 0 4px;
  line-height: 14px;
  text-align: center;
  vertical-align: middle;
}
.gyCdprSV {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  pointer-events: none;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
}
.gyCdprSV.G9qCYXX0 {
  top: calc(56px + var(--safe-area-inset-top));
}
.AvYRi67d {
  width: 600px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.hel1NwTZ {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hel1NwTZ > * {
  pointer-events: auto;
}
.qVT5xjEJ {
  width: var(--burger-width);
  height: var(--burger-height);
  position: absolute;
  top: var(--burger-top);
  right: var(--burger-right);
  border-radius: 50%;
  background-color: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.04),
    0 0 2px 0 rgba(0, 0, 0, 0.06), 0 4px 8px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.04), 0 0 2px 0 rgba(0, 0, 0, 0.06),
    0 4px 8px 0 rgba(0, 0, 0, 0.04);
}
.qVT5xjEJ._4B33Ejo\+ {
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 2px 0 rgba(0, 0, 0, 0.3),
    0 4px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 2px 0 rgba(0, 0, 0, 0.3),
    0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.qVT5xjEJ.kUmNG9gc {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.qVT5xjEJ.kUmNG9gc .YEm\+-NxC div:first-child {
  -webkit-transform: translateY(6px) rotate(135deg);
  -ms-transform: translateY(6px) rotate(135deg);
  transform: translateY(6px) rotate(135deg);
}
.qVT5xjEJ.kUmNG9gc .YEm\+-NxC div:last-child {
  -webkit-transform: translateY(-5px) rotate(45deg);
  -ms-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}
.YEm\+-NxC {
  width: 20px;
  height: 20px;
  position: relative;
  margin: auto;
}
.YEm\+-NxC > div {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  -webkit-transition: top 0.3s ease, bottom 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease,
    -webkit-transform 0.3s ease;
}
.YEm\+-NxC > div:first-child {
  top: 3px;
}
.YEm\+-NxC > div:last-child {
  top: 14px;
}
.yASfPN3v {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: visibility 0.3s ease,
    opacity 0.3s cubic-bezier(1, 0, 1, 0);
  transition: visibility 0.3s ease, opacity 0.3s cubic-bezier(1, 0, 1, 0);
}
.yASfPN3v .cmr6VCYK {
  position: absolute;
  top: var(--burger-top);
  right: var(--burger-right);
  width: var(--burger-width);
  height: var(--burger-height);
  border-radius: 50%;
  -webkit-transition: border-radius 0.1s ease, -webkit-transform 0.3s ease;
  transition: border-radius 0.1s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-radius 0.1s ease;
  transition: transform 0.3s ease, border-radius 0.1s ease,
    -webkit-transform 0.3s ease;
}
.yASfPN3v.kUmNG9gc {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 0.3s ease,
    opacity 0.3s cubic-bezier(0, 1, 0, 1);
  transition: visibility 0.3s ease, opacity 0.3s cubic-bezier(0, 1, 0, 1);
}
.yASfPN3v.kUmNG9gc .cmr6VCYK {
  -webkit-transform: scale(30);
  -ms-transform: scale(30);
  transform: scale(30);
  border-bottom-left-radius: 0;
  -webkit-transition: border-radius 0.6s ease, -webkit-transform 0.3s ease;
  transition: border-radius 0.6s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-radius 0.6s ease;
  transition: transform 0.3s ease, border-radius 0.6s ease,
    -webkit-transform 0.3s ease;
}
.yASfPN3v.kUmNG9gc .XqWob0aw {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s;
}
.yASfPN3v.kUmNG9gc .jMadgkU\+ {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(0) .jMadgkU\+ {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:first-child .jMadgkU\+ {
  -webkit-transition-delay: 0.02s;
  transition-delay: 0.02s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(2) .jMadgkU\+ {
  -webkit-transition-delay: 0.04s;
  transition-delay: 0.04s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(3) .jMadgkU\+ {
  -webkit-transition-delay: 0.06s;
  transition-delay: 0.06s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(4) .jMadgkU\+ {
  -webkit-transition-delay: 0.08s;
  transition-delay: 0.08s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(5) .jMadgkU\+ {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(6) .jMadgkU\+ {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(7) .jMadgkU\+ {
  -webkit-transition-delay: 0.14s;
  transition-delay: 0.14s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(8) .jMadgkU\+ {
  -webkit-transition-delay: 0.16s;
  transition-delay: 0.16s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(9) .jMadgkU\+ {
  -webkit-transition-delay: 0.18s;
  transition-delay: 0.18s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(10) .jMadgkU\+ {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(11) .jMadgkU\+ {
  -webkit-transition-delay: 0.22s;
  transition-delay: 0.22s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(12) .jMadgkU\+ {
  -webkit-transition-delay: 0.24s;
  transition-delay: 0.24s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(13) .jMadgkU\+ {
  -webkit-transition-delay: 0.26s;
  transition-delay: 0.26s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(14) .jMadgkU\+ {
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s;
}
.yASfPN3v.kUmNG9gc .V4dy19vl:nth-child(15) .jMadgkU\+ {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.XqWob0aw {
  width: 100%;
  max-height: 100%;
  margin: auto;
  padding: 88px 16px;
  list-style: none;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  overflow: scroll;
}
.XqWob0aw::-webkit-scrollbar {
  width: 0;
  height: 0;
  opacity: 0;
}
.jMadgkU\+ {
  position: relative;
  -webkit-transform: translate(40px, -40px);
  -ms-transform: translate(40px, -40px);
  transform: translate(40px, -40px);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
}
.jMadgkU\+.kUmNG9gc ._1qL5mlRL {
  width: 40px;
  left: calc(50% - 20px);
  opacity: 1;
}
._1qL5mlRL {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background-color: #333;
  opacity: 0;
  -webkit-transition: width 0.1s ease, left 0.1s ease, opacity 0.1s ease;
  transition: width 0.1s ease, left 0.1s ease, opacity 0.1s ease;
  pointer-events: none;
}
.nhVvY\+WF {
  background-color: transparent !important;
  text-decoration: none !important;
  font-size: 34px !important;
  line-height: 40px !important;
  font-weight: 700 !important;
  min-height: 0 !important;
  padding: 12px 0 !important;
}
.nhVvY\+WF:hover {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.CBjRG5uM {
  width: 100%;
  position: fixed;
}
.D1hSYth2,
.CBjRG5uM {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  z-index: 1000000;
  bottom: 0;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.D1hSYth2 {
  --u-modal-padding-top: var(--safe-area-inset-top);
  --u-modal-padding-bottom: var(--safe-area-inset-bottom);
  width: 600px;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  background-color: #000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: var(--u-modal-padding-top);
  padding-bottom: var(--u-modal-padding-bottom);
}
.D1hSYth2._2jaWZrcf {
  height: unset;
  max-height: calc(100% - 20px);
  border-radius: 12px 12px 0 0;
}
.D1hSYth2._2jaWZrcf.cLdphh05 {
  border-radius: 12px;
  max-height: calc(100% - 32px);
  margin: auto;
  position: relative;
  left: 0;
}
.D1hSYth2.cLdphh05 {
  left: calc(50% - 300px);
}
._7SA0MplF {
  z-index: 1000;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.KbJ7CsUX {
  width: 100%;
  height: 50px;
  min-height: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding-right: 56px;
}
.KbJ7CsUX,
.KbJ7CsUX .cuQFbdMF {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.KbJ7CsUX .cuQFbdMF {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 6px;
}
.KbJ7CsUX .lVfABrn-,
.KbJ7CsUX .cuQFbdMF {
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.KbJ7CsUX .lVfABrn- {
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.KbJ7CsUX .lVfABrn-:hover {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.e18PHu2c {
  z-index: 1001;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden auto;
}
.e18PHu2c.VkXdbksi {
  padding: 16px;
}
.e18PHu2c::-webkit-scrollbar {
  width: 0;
}
.e18PHu2c::-webkit-scrollbar-thumb,
.e18PHu2c::-webkit-scrollbar-track {
  background: hsla(0, 0%, 100%, 0);
}
.sRoGvzWb {
  padding: 16px;
  text-align: center;
}
.SPrUG97O {
  display: block;
  width: 72px;
  height: auto;
  margin: 0 auto;
  fill: currentColor;
}
.rg4wiMzn {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 6px;
}
.RnnCcKnZ {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 16px;
  opacity: 0.6;
}
.xmeUHjq3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 44px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  background-color: transparent;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.xmeUHjq3:focus {
  outline: 0;
}
.xmeUHjq3.zzIBoxHc,
.xmeUHjq3:disabled {
  pointer-events: none;
  background-color: #333;
  border-color: transparent;
  opacity: 0.2;
}
.ZH-\+5nxi {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  max-width: 100%;
}
.ZH-\+5nxi svg {
  position: relative;
  top: -1px;
  vertical-align: middle;
  margin: 0 4px 0 -8px;
}
.U9zkj7KF,
.ISkLtdLL {
  padding: 0 25px;
}
.U9zkj7KF {
  height: 45px;
}
.vPdHzmQf {
  height: 32px;
  padding: 0 15px;
}
._0tuYeS\+\+ {
  height: unset;
  width: unset;
  padding: 0;
}
.hbsQVXXP {
  width: 100%;
}
._6XQ42GkI {
  border-radius: 100px;
}
.ppWfgwOe {
  color: #2979ff;
}
.ppWfgwOe,
.ppWfgwOe.zzIBoxHc,
.ppWfgwOe:disabled {
  background-color: transparent;
}
.ERpbyo3F {
  color: #fff;
  background-color: #007aff;
}
.neCdBF\+u {
  background-color: transparent;
  color: #007aff;
  border-color: #007aff;
}
.neCdBF\+u:hover {
  color: #3395ff;
  border-color: #3395ff;
}
.SS3PI9J0 {
  color: #fff;
  background-color: #ff3265;
}
.jQJhNH8A {
  color: #29323c;
  background-color: #f9f9f9;
  border-color: #d1d1d6;
}
.jQJhNH8A:hover {
  background-color: #f5f5f5;
}
.\+9m\+7vc\+ {
  color: #333;
  background-color: #f0f0f0;
}
.\+9m\+7vc\+:hover {
  background-color: #d7d7d7;
}
.KnXUuI9I {
  color: #8a8885;
  background-color: #e9e2d2;
}
.KnXUuI9I:hover {
  color: #fef7e4;
  background-color: #2b303a;
}
.KnXUuI9I:active {
  -webkit-transition: none;
  transition: none;
  color: hsla(0, 0%, 100%, 0.6);
}
.Zahi5rBl {
  color: #fff;
  background-color: #dc5960;
}
.Zahi5rBl:hover {
  color: #fff;
  background-color: #ab242b;
}
.Zahi5rBl:active {
  -webkit-transition: none;
  transition: none;
  color: hsla(0, 0%, 100%, 0.6);
}
._5SgGU\+Fv {
  color: #fff;
  background-color: #3eb991;
}
._5SgGU\+Fv:hover {
  background-color: #319373;
}
._5SgGU\+Fv:active {
  -webkit-transition: none;
  transition: none;
  color: hsla(0, 0%, 100%, 0.6);
}
.RyLWZD02 {
  color: #fff;
  background-color: #c7c7cc;
}
.RyLWZD02:hover {
  background-color: #acacb4;
}
.RyLWZD02:active {
  -webkit-transition: none;
  transition: none;
  color: hsla(0, 0%, 100%, 0.6);
}
.u0G5jUKz {
  color: #000;
  background-color: #fff;
}
.u0G5jUKz:hover {
  background-color: #fafafa;
}
.u0G5jUKz:active {
  -webkit-transition: none;
  transition: none;
  color: rgba(0, 0, 0, 0.6);
}
.PX7P\+JC3 {
  color: #007aff;
}
.PX7P\+JC3:active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #80bdff;
}
.-H58vBr9 {
  background-color: #333;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.-H58vBr9.zzIBoxHc,
.-H58vBr9[disabled] {
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}
._4d6wlA-j {
  background-color: transparent;
  color: #2b303a;
  border-color: #2b303a;
}
._4d6wlA-j:hover {
  color: #6c7992;
  border-color: #6c7992;
}
.kHL\+Q9f2 {
  padding: 0;
}
.uuTgLNf7 {
  margin: 0 0.5em;
}
.uuTgLNf7:last-child {
  margin-right: 0;
}
.uuTgLNf7:first-child {
  margin-left: 0;
}
.dw\+kXRe\+ {
  border-color: transparent;
}
.o3z6xBYO {
  padding: 0;
  min-width: 44px;
}
.o3z6xBYO svg {
  margin: 0;
  top: 0;
}
.DmjFQHL3 {
  padding: 0 25px 0 6px;
}
.DmjFQHL3 svg {
  margin: 0 12px 0 0;
  top: 0;
}
.yMOOCEnX {
  color: #fff;
  background-color: #4267b2;
}
.yMOOCEnX:hover {
  background-color: #34518d;
}
.yMOOCEnX:active {
  -webkit-transition: none;
  transition: none;
  color: hsla(0, 0%, 100%, 0.6);
}
.i5S4h7jJ,
.-gAzrUM3 {
  padding: 0 50px;
}
.i5S4h7jJ .uuTgLNf7,
.-gAzrUM3 .uuTgLNf7 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
}
.i5S4h7jJ .uuTgLNf7 {
  left: 8px;
}
.-gAzrUM3 .uuTgLNf7 {
  right: 8px;
}
.U1AX1l-N {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.U1AX1l-N.RWx-yI-U {
  position: unset;
  width: 30px;
  margin: auto;
}
.vYj6iq5t {
  width: 30px;
  height: 6px;
  position: relative;
}
._71idkR9Z {
  width: 6px;
  height: 6px;
  background: #007aff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
}
._71idkR9Z._0pu42lEK {
  left: 0;
  -webkit-animation: gwIUNhuG 0.25s cubic-bezier(0.77, 0.47, 0.64, 0.28)
    infinite alternate;
  animation: gwIUNhuG 0.25s cubic-bezier(0.77, 0.47, 0.64, 0.28) infinite
    alternate;
}
._71idkR9Z.JZIAmbPS {
  left: 12px;
  -webkit-animation: gwIUNhuG 0.25s cubic-bezier(0.77, 0.47, 0.64, 0.28) 0.1s
    infinite alternate;
  animation: gwIUNhuG 0.25s cubic-bezier(0.77, 0.47, 0.64, 0.28) 0.1s infinite
    alternate;
}
._71idkR9Z.sOY3RWh5 {
  left: 24px;
  -webkit-animation: gwIUNhuG 0.25s cubic-bezier(0.77, 0.47, 0.64, 0.28) 0.2s
    infinite alternate;
  animation: gwIUNhuG 0.25s cubic-bezier(0.77, 0.47, 0.64, 0.28) 0.2s infinite
    alternate;
}
@-webkit-keyframes gwIUNhuG {
  0% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  to {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}
@keyframes gwIUNhuG {
  0% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  to {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

/*# sourceMappingURL=userwebsite.4cdfe1615201073abcba.css.map*/
