/* Document
 * ========================================================================== */

/**
 * Add border box sizing in all browsers (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */

hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * Collapse border spacing in all browsers (opinionated).
 */

table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */

fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* User interaction
 * ========================================================================== */

/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

@font-face{font-family:"metropolis";src:url(https://static-my.eneba.games/9118dcf8e35fd780f2da.woff2) format("woff2");font-weight:800;font-display:swap}

@font-face{font-family:"metropolis";src:url(https://static-my.eneba.games/50f2aaf75ae24dd172ca.woff2) format("woff2");font-weight:600;font-display:swap}

@font-face{font-family:"metropolis";src:url(https://static-my.eneba.games/089540e3eff33d6d0280.woff2) format("woff2");font-weight:400;font-display:swap}

@font-face{font-family:"metropolis-monospace";src:url(https://static-my.eneba.games/284eff8017a47a6b2e7d.woff2) format("woff2");font-weight:400;font-display:swap}

html,body,div,button,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}

input,select,textarea,button{font-family:inherit}

img{max-width:100%;display:block}

a,button{text-decoration:none;cursor:pointer;color:inherit}

ol,ul{list-style:none}

input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,input:-webkit-autofill:active{-webkit-transition:color 9999s ease-out,background-color 9999s ease-out;-webkit-transition-delay:9999s}

.ReactModal__Body--open{height:100vh;position:fixed;overflow-y:scroll;width:100%}

.ReactModal__Body--open .ReactModal__Overlay{z-index:7;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(31,10,78,.6) !important;display:flex;justify-content:center;align-items:flex-start;overflow:auto;padding:20px 10px}

.ReactModal__Body--open .ReactModal__Content{display:flex;flex-direction:column;margin:auto}

.linkBase{margin:-10px;padding:10px;display:inline-block;background:none;font-weight:600;color:#73cdff}

@media(hover: hover),(-moz-touch-enabled: 0){
.linkBase:hover{text-decoration:underline}}

@media(hover: none),(-moz-touch-enabled: 1){
.linkBase:active{text-decoration:underline}}

.linkBase:active{opacity:.8;text-decoration:underline}

.link{margin:-10px;padding:10px;font-weight:600;color:#4618ac;display:inline-block;background:none}

.link svg{margin-right:5px;vertical-align:text-top}

[dir="rtl"] .link svg{margin-right:0;margin-left:5px}

@media(hover: hover),(-moz-touch-enabled: 0){
.link:hover{color:#32117d;text-decoration:underline}}

@media(hover: none),(-moz-touch-enabled: 1){
.link:active{color:#32117d;text-decoration:underline}}

.link:active{color:#1f0a4e;text-decoration:underline}

input,textarea,.input{font-weight:600;font-size:1.2rem;color:#1f0a4e;width:100%;-webkit-appearance:none;-webkit-border-radius:0;min-height:36px;background:#fff;border:1px solid #a09aac;transition:border-color 150ms ease-in-out,background-color 150ms ease-in-out}

input::-moz-placeholder, textarea::-moz-placeholder, .input::-moz-placeholder{opacity:1;color:#a09aac}

input::placeholder,textarea::placeholder,.input::placeholder{opacity:1;color:#a09aac}

@media(hover: hover),(-moz-touch-enabled: 0){
input:hover,textarea:hover,.input:hover{background:#f4f4f6;border-color:#4618ac}}

@media(hover: none),(-moz-touch-enabled: 1){
input:active,textarea:active,.input:active{background:#f4f4f6;border-color:#4618ac}}

input:-moz-read-only, textarea:-moz-read-only, .input:-moz-read-only{background:#e9e8f7;border-color:#e9e8f7;color:#1f0a4e}

input:read-only,textarea:read-only,.input:read-only{background:#e9e8f7;border-color:#e9e8f7;color:#1f0a4e}

input:focus,textarea:focus,.input:focus,input:focus-within,textarea:focus-within,.input:focus-within{background:#fff;border-color:#797189}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder, .input:focus::-moz-placeholder, input:focus-within::-moz-placeholder, textarea:focus-within::-moz-placeholder, .input:focus-within::-moz-placeholder{color:rgba(0,0,0,0)}

input:focus::placeholder,textarea:focus::placeholder,.input:focus::placeholder,input:focus-within::placeholder,textarea:focus-within::placeholder,.input:focus-within::placeholder{color:rgba(0,0,0,0)}

input:disabled,textarea:disabled,.input:disabled{pointer-events:none;color:#797189;border-color:rgba(0,0,0,.12);background:rgba(0,0,0,.04);cursor:not-allowed;box-shadow:none}

@media(hover: none){
input,textarea,.input{font-size:1.6rem}}

form{width:100%}

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}

input{line-height:34px;overflow:hidden;padding:0 15px}

input.inputGuest{font-size:1.4rem;color:#fff;background-color:rgba(50,17,125,.7);border:1px solid rgba(0,0,0,0);padding:20px 30px}

@media(hover: hover),(-moz-touch-enabled: 0){
input.inputGuest:hover{background-color:#32117d}}

@media(hover: none),(-moz-touch-enabled: 1){
input.inputGuest:active{background-color:#32117d}}

input.inputGuest::-moz-placeholder{color:#fff;opacity:1}

input.inputGuest::placeholder{color:#fff;opacity:1}

input.inputGuest:focus{background-color:#32117d}

input.inputGuest:focus::-moz-placeholder{color:rgba(0,0,0,0)}

input.inputGuest:focus::placeholder{color:rgba(0,0,0,0)}

input[type=radio],input[type=checkbox]{min-height:0;width:0;padding:0;border:none}

textarea{padding:10px 15px;overflow:auto;line-height:1.2}

label{margin-bottom:20px;display:block}

.checkbox{display:flex;align-items:center;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;min-height:20px;padding-left:30px;max-width:-moz-max-content;max-width:max-content}

[dir="rtl"] .checkbox{padding-left:0;padding-right:30px}

.checkbox>input:checked~span::after{opacity:1}

@media(hover: hover),(-moz-touch-enabled: 0){
.checkbox:hover input:not(:disabled):not(:checked)~span::after{opacity:.2}}

@media(hover: none),(-moz-touch-enabled: 1){
.checkbox:active input:not(:disabled):not(:checked)~span::after{opacity:.2}}

.checkbox>input{position:absolute;top:0;left:0;opacity:0;cursor:pointer;min-height:20px;width:20px}

[dir="rtl"] .checkbox>input{left:auto;right:0}

.checkbox>span::after{content:"";opacity:0;transition:opacity 150ms ease-in-out;position:absolute;transform:rotate(-45deg);top:4px;left:5px;width:11px;height:8px;border-bottom:3px solid #00cf9f;border-left:3px solid #00cf9f}

[dir="rtl"] .checkbox>span::after{transform:rotate(45deg);left:auto;right:5px;border-left:none;border-right:3px solid #00cf9f}

[dir=rtl] .checkbox>span::after{transform:rotate(-45deg);border-bottom:3px solid #00cf9f;border-left:3px solid #00cf9f;border-right:none}

[dir="rtl"] [dir=rtl] .checkbox>span::after{transform:rotate(45deg);border-right:3px solid #00cf9f;border-left:none}

.checkbox>span::before{content:"";position:absolute;top:0;left:0;height:20px;width:20px;background:rgba(70,24,172,.1);box-shadow:0 2px 18px 0 rgba(0,0,0,.04)}

[dir="rtl"] .checkbox>span::before{left:auto;right:0}

.checkbox.indeterminate>span::after{opacity:1;transform:rotate(0deg);border:0;border-bottom:3px solid #00cf9f}

.linkBase{margin:-10px;padding:10px;display:inline-block;background:none;font-weight:600;color:#73cdff}

@media(hover: hover),(-moz-touch-enabled: 0){
.linkBase:hover{text-decoration:underline}}

@media(hover: none),(-moz-touch-enabled: 1){
.linkBase:active{text-decoration:underline}}

.linkBase:active{opacity:.8;text-decoration:underline}

.link{margin:-10px;padding:10px;font-weight:600;color:#4618ac;display:inline-block;background:none}

.link svg{margin-right:5px;vertical-align:text-top}

[dir="rtl"] .link svg{margin-right:0;margin-left:5px}

@media(hover: hover),(-moz-touch-enabled: 0){
.link:hover{color:#32117d;text-decoration:underline}}

@media(hover: none),(-moz-touch-enabled: 1){
.link:active{color:#32117d;text-decoration:underline}}

.link:active{color:#1f0a4e;text-decoration:underline}

input,textarea,.input{font-weight:600;font-size:1.2rem;color:#1f0a4e;width:100%;-webkit-appearance:none;-webkit-border-radius:0;min-height:36px;background:#fff;border:1px solid #a09aac;transition:border-color 150ms ease-in-out,background-color 150ms ease-in-out}

input::-moz-placeholder, textarea::-moz-placeholder, .input::-moz-placeholder{opacity:1;color:#a09aac}

input::placeholder,textarea::placeholder,.input::placeholder{opacity:1;color:#a09aac}

@media(hover: hover),(-moz-touch-enabled: 0){
input:hover,textarea:hover,.input:hover{background:#f4f4f6;border-color:#4618ac}}

@media(hover: none),(-moz-touch-enabled: 1){
input:active,textarea:active,.input:active{background:#f4f4f6;border-color:#4618ac}}

input:-moz-read-only, textarea:-moz-read-only, .input:-moz-read-only{background:#e9e8f7;border-color:#e9e8f7;color:#1f0a4e}

input:read-only,textarea:read-only,.input:read-only{background:#e9e8f7;border-color:#e9e8f7;color:#1f0a4e}

input:focus,textarea:focus,.input:focus,input:focus-within,textarea:focus-within,.input:focus-within{background:#fff;border-color:#797189}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder, .input:focus::-moz-placeholder, input:focus-within::-moz-placeholder, textarea:focus-within::-moz-placeholder, .input:focus-within::-moz-placeholder{color:rgba(0,0,0,0)}

input:focus::placeholder,textarea:focus::placeholder,.input:focus::placeholder,input:focus-within::placeholder,textarea:focus-within::placeholder,.input:focus-within::placeholder{color:rgba(0,0,0,0)}

input:disabled,textarea:disabled,.input:disabled{pointer-events:none;color:#797189;border-color:rgba(0,0,0,.12);background:rgba(0,0,0,.04);cursor:not-allowed;box-shadow:none}

@media(hover: none){
input,textarea,.input{font-size:1.6rem}}

.react-select-container{width:100%}

@media(hover: hover),(-moz-touch-enabled: 0){
.react-select-container:hover .react-select__control{background:#f4f4f6;border-color:#4618ac}}

@media(hover: none),(-moz-touch-enabled: 1){
.react-select-container:active .react-select__control{background:#f4f4f6;border-color:#4618ac}}

.react-select-container .react-select__value-container{padding:0 0 0 15px;overflow:hidden}

[dir="rtl"] .react-select-container .react-select__value-container{padding:0 15px 0 0}

.react-select-container .react-select__value-container>input{min-height:34px}

.react-select-container .react-select__single-value{color:#1f0a4e;font-size:1.2rem;font-weight:600;text-align:left}

[dir="rtl"] .react-select-container .react-select__single-value{text-align:right}

@media(hover: none),(-moz-touch-enabled: 1){
.react-select-container .react-select__single-value{font-size:1.6rem}}

.react-select-container .react-select__single-value--is-disabled{color:#797189}

.react-select-container .react-select__control{border:1px solid #a09aac;background:#fff;border-radius:0;min-height:36px;align-items:stretch;transition:border-color 150ms ease-in-out,background-color 150ms ease-in-out}

@media(hover: hover),(-moz-touch-enabled: 0){
.react-select-container .react-select__control:hover{cursor:pointer}}

@media(hover: none),(-moz-touch-enabled: 1){
.react-select-container .react-select__control:active{cursor:pointer}}

.react-select-container .react-select__control--is-focused{box-shadow:none;border-color:#797189;background:#fff}

.react-select-container .react-select__control--is-focused .react-select__single-value{color:#1f0a4e}

.react-select-container .react-select__control--is-disabled{background:rgba(0,0,0,0);border:1px solid rgba(0,0,0,.12);background:rgba(0,0,0,.04)}

.react-select-container .react-select__control--is-disabled .react-select__dropdown-indicator{color:#797189}

.react-select-container .react-select__indicator{padding:6px}

.react-select-container .react-select__indicator-separator{display:none}

.react-select-container .react-select__dropdown-indicator{color:#1f0a4e}

.react-select-container .react-select__menu{margin:0;padding:0;border-radius:0;box-shadow:0 2px 4px 0 #a09aac}

.react-select-container .react-select__menu-list{background:#fff;max-height:175px;padding:0}

.react-select-container .react-select__menu-list::-webkit-scrollbar{width:5px}

.react-select-container .react-select__menu-list::-webkit-scrollbar-track{background:rgba(0,0,0,0)}

.react-select-container .react-select__menu-list::-webkit-scrollbar-thumb{background:#e9e8f7;border-radius:1.5px}

.react-select-container .react-select__option{display:flex;align-items:center;padding:0 0 0 13px;min-height:35px;background:#fff;color:#1f0a4e;font-size:1.2rem;font-weight:600;cursor:pointer}

[dir="rtl"] .react-select-container .react-select__option{padding:0 13px 0 0}

.react-select-container .react-select__option--is-focused,.react-select-container .react-select__option--is-selected{background:#f4f4f6;color:#1f0a4e;font-size:1.2rem;font-weight:600}

.react-select-container .react-select__input{min-height:0;line-height:1;background-position:-99999px !important}

[dir="rtl"] .react-select-container .react-select__input{background-position:right -99999px top 50% !important}

.react-select-container .react-select__input-container{margin:0;padding:0}

.react-select-container .react-select__menu-notice--no-options{background:#fff;color:#1f0a4e;font-size:1.2rem;font-weight:600}

.react-select-container .react-select__placeholder{color:#797189;font-size:1.2rem;font-weight:600}

.radio{display:flex;align-items:center;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;min-height:20px;padding-left:30px}

[dir="rtl"] .radio{padding-left:0;padding-right:30px}

@media(hover: hover),(-moz-touch-enabled: 0){
.radio:hover input:not(:disabled):not(:checked)~span::after{visibility:visible;opacity:.2}}

@media(hover: none),(-moz-touch-enabled: 1){
.radio:active input:not(:disabled):not(:checked)~span::after{visibility:visible;opacity:.2}}

.radio>input:checked~span::after{visibility:visible}

.radio>input:checked:disabled~span::after{background:#a09aac}

.radio>input{position:absolute;top:0;left:0;opacity:0;cursor:pointer;height:20px;width:20px}

[dir="rtl"] .radio>input{left:auto;right:0}

.radio>span::after{visibility:hidden;content:"";position:absolute;top:6px;left:6px;width:8px;height:8px;background:#00cf9f;border-radius:50%}

[dir="rtl"] .radio>span::after{left:auto;right:6px}

.radio>span::before{content:"";position:absolute;top:0;left:0;height:20px;width:20px;background:#e9e8f7;border-radius:50%}

[dir="rtl"] .radio>span::before{left:auto;right:0}

.radioGuest{display:flex;align-items:center;font-weight:600;font-size:1.2rem;line-height:1;color:#cfc1f0;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;min-height:20px;padding-left:28px}

[dir="rtl"] .radioGuest{padding-left:0;padding-right:28px}

@media(hover: hover),(-moz-touch-enabled: 0){
.radioGuest:hover input:not(:checked)~span::after{visibility:visible;opacity:.2}}

@media(hover: none),(-moz-touch-enabled: 1){
.radioGuest:active input:not(:checked)~span::after{visibility:visible;opacity:.2}}

.radioGuest>input:checked~span::after{visibility:visible}

.radioGuest>input{position:absolute;top:0;left:0;opacity:0;cursor:pointer;height:20px;width:20px}

[dir="rtl"] .radioGuest>input{left:auto;right:0}

.radioGuest>span::after{visibility:hidden;content:"";position:absolute;top:6px;left:6px;width:8px;height:8px;background:#dbf4ee;border-radius:50%}

[dir="rtl"] .radioGuest>span::after{left:auto;right:6px}

.radioGuest>span::before{content:"";position:absolute;top:0;left:0;height:20px;width:20px;background:#4217a3;border-radius:50%}

[dir="rtl"] .radioGuest>span::before{left:auto;right:0}

.label{font-weight:600;font-size:1.2rem;line-height:1;color:#797189;margin-bottom:15px;display:block}

.label.required::after{content:"*";padding-left:3px;font-weight:800;font-size:1.5rem;line-height:1;color:#4618ac}

[dir="rtl"] .label.required::after{padding-left:0;padding-right:3px}

.tablePrice{color:#797189;font-weight:800;font-size:1.6rem;white-space:nowrap}

.c-violet{color:#4618ac}

.c-grey{color:#a09aac}

.c-green{color:#00cf9f}

.c-red{color:red}

.c-yellow{color:#fad318}

.c-orange{color:#f5a623}

.react-calendar{position:absolute;background:#fff;box-shadow:0 2px 4px 0 #c5c0d8;color:#1f0a4e;font-size:1.2rem;z-index:1;max-width:350px}

.react-calendar,.react-calendar *,.react-calendar *:before,.react-calendar *:after{box-sizing:border-box}

.react-calendar button{margin:0;border:0;outline:none;font-weight:800}

.react-calendar button:enabled:hover{cursor:pointer}

.react-calendar__navigation{height:36px}

.react-calendar__navigation__arrow{font-size:1.6rem}

.react-calendar__navigation button{min-width:36px;background:none}

.react-calendar__navigation button:enabled:hover,.react-calendar__navigation button:enabled:focus{background:#f5f4f8}

.react-calendar__navigation button[disabled]{background:#f5f4f8}

.react-calendar__month-view__weekdays{height:36px;align-items:center;text-align:center;text-transform:uppercase;font-weight:800;background:#e9e8f7}

.react-calendar__month-view__weekdays__weekday abbr{font-size:.8rem;text-decoration:none}

.react-calendar__month-view__weekNumbers{font-weight:800}

.react-calendar__month-view__weekNumbers .react-calendar__tile{display:flex;align-items:center;justify-content:center;font-size:.75em;padding:1em .6666666667em}

.react-calendar__month-view__days__day--weekend{color:#00cf9f}

.react-calendar__month-view__days__day--neighboringMonth{color:#969696}

.react-calendar__year-view,.react-calendar__decade-view,.react-calendar__century-view{border-top:36px solid #e9e8f7}

.react-calendar__tile{max-width:100%;text-align:center;line-height:36px;background:none}

.react-calendar__tile:disabled{background-color:#f0f0f0}

.react-calendar__tile:enabled:hover,.react-calendar__tile:enabled:focus{background:#9872eb}

.react-calendar__tile--hasActive{background:#9872eb}

.react-calendar__tile--hasActive:enabled:hover,.react-calendar__tile--hasActive:enabled:focus{background:#b89ef2}

.react-calendar__tile--active{background:#4618ac;color:#fff}

.react-calendar__tile--rangeStart,.react-calendar__tile--rangeEnd{background:#9872eb;color:#1f0a4e}

.react-calendar--selectRange .react-calendar__tile--hover{background:#4618ac;color:#fff}

.chevron{display:inline-block;width:13px;height:10px;position:relative;margin-right:5px;vertical-align:middle}

[dir="rtl"] .chevron{margin-right:0;margin-left:5px}

.chevron::before,.chevron::after{content:"";position:absolute;width:8px;top:3px;border-bottom:2px solid;left:0;transform:rotate(45deg);transition:transform .15s ease-in-out}

[dir="rtl"] .chevron::before,[dir="rtl"] .chevron::after{left:auto;right:0;transform:rotate(-45deg)}

.chevron::before{left:auto;right:0;transform:rotate(-45deg)}

[dir="rtl"] .chevron::before{right:auto;left:0;transform:rotate(45deg)}

.chevron.chevronUp::after{transform:rotate(-45deg)}

[dir="rtl"] .chevron.chevronUp::after{transform:rotate(45deg)}

.chevron.chevronUp::before{transform:rotate(45deg)}

[dir="rtl"] .chevron.chevronUp::before{transform:rotate(-45deg)}

.chevron.right{margin-right:0;margin-left:5px}

[dir="rtl"] .chevron.right{margin-left:0;margin-right:5px}

.recharts-surface{margin-top:-2px}

.switch{display:flex;align-items:center;position:relative;padding-left:52px;height:36px;cursor:pointer}

[dir="rtl"] .switch{padding-left:0;padding-right:52px}

.switch::before,.switch::after{content:"";position:absolute;display:block}

.switch::before{height:24px;width:46px;border:2px solid #a09aac;border-radius:12px;left:0}

[dir="rtl"] .switch::before{left:auto;right:0}

.switch::after{background:#a09aac;width:14px;height:14px;border-radius:7px;left:5px}

[dir="rtl"] .switch::after{left:auto;right:5px}

.switchHover:hover::before{border-color:#fad318 !important;background:#e9e8f7 !important}

.switchHover:hover::after{background:#fad318 !important}

input[type=checkbox]:checked~.switch::before,.switch.on::before{background:#fad318;border-color:#fad318}

input[type=checkbox]:checked~.switch::after,.switch.on::after{background:#fff;transform:translateX(22px)}

[dir="rtl"] input[type=checkbox]:checked~.switch::after,[dir="rtl"] .switch.on::after{transform:translateX(-22px)}

input[type=checkbox]:disabled~.switch{cursor:default;pointer-events:none}

.noJs{display:flex;justify-content:center;align-items:center;padding:10px;min-height:50px;font-weight:400;font-size:1.5rem;line-height:1;color:#fff;background:#32117d}

.noJs>img{margin-right:15px}

[dir="rtl"] .noJs>img{margin-right:0;margin-left:15px}

*:focus{outline:none !important}

html{font-size:62.5%;height:100%}

body{font:1.2rem/1 "metropolis",Arial,Helvetica,sans-serif;-webkit-font-smoothing:antialiased;background:#fff;color:#1f0a4e;overflow-x:hidden}

@media print{
body{background:none;color:initial}}

[dir=rtl] input[type=email]{direction:ltr}

[dir="rtl"] [dir=rtl] input[type=email]{direction:rtl}

#controllerFrame{height:0 !important}

p{font-weight:400;font-size:1.2rem;line-height:1.5}

h1{font-weight:800;font-size:1.5rem;line-height:1;color:#1f0a4e;margin-bottom:20px;letter-spacing:1px;text-transform:uppercase}

h2{font-weight:800;font-size:1.1rem;line-height:1;color:#1f0a4e;margin-bottom:15px;letter-spacing:1px;text-transform:uppercase}

#atlwdg-trigger{z-index:333333}
.UuSX4h{display:flex;justify-content:center;align-items:center;padding:10px;margin:0 auto}

.UuSX4h>div{border:8px solid #fff;border-top:8px solid #00cf9f;border-radius:50%;width:70px;height:70px;animation:Ai4F6_ 2s linear infinite}

.UuSX4h.LDQ7dL{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}

[dir="rtl"] .UuSX4h.LDQ7dL{left:auto;right:50%;transform:translate(50%, -50%)}

@keyframes Ai4F6_{
0%{transform:rotate(0deg)}

100%{transform:rotate(360deg)}}
@media(min-width: 801px){
._N1Z39:hover>circle{stroke:#000;fill:#fad318}

._N1Z39:hover>path{fill:#000}}

@media(max-width: 800px){
._N1Z39{display:none}}

.QZYzul{animation:TC9RPW 1s linear infinite}

@keyframes TC9RPW{
from{transform:rotate(0deg)}

to{transform:rotate(360deg)}}
.Z_y9Cj{display:flex;align-items:center;font-weight:600;font-size:1.2rem;line-height:1;color:#000;padding:10px;margin-bottom:20px}

.Z_y9Cj>svg{margin-right:10px}

[dir="rtl"] .Z_y9Cj>svg{margin-right:0;margin-left:10px}

.Z_y9Cj a,.Z_y9Cj button{font-weight:800;font-size:1.3rem;line-height:1;color:#4618ac}

@media(hover: hover),(-moz-touch-enabled: 0){
.Z_y9Cj a:hover,.Z_y9Cj button:hover{color:#32117d}}

@media(hover: none),(-moz-touch-enabled: 1){
.Z_y9Cj a:active,.Z_y9Cj button:active{color:#32117d}}

@media(hover: hover),(-moz-touch-enabled: 0){
.Z_y9Cj a:hover{text-decoration:underline}}

@media(hover: none),(-moz-touch-enabled: 1){
.Z_y9Cj a:active{text-decoration:underline}}

.Z_y9Cj.RN8wEa{background:#fff1da;color:#000}

.Z_y9Cj.PT2psI{background:#ffb2c7;color:#d0021b}

.Z_y9Cj.jhCPUD{background:#dbf4ee;color:#000}

.Z_y9Cj.PleSwQ{margin-bottom:0;margin-top:20px}

.Z_y9Cj.XoWjTK{margin:0}

.Gs3tCU.PT2psI{color:#d0021b}

.Gs3tCU.RN8wEa{color:#f5a623}

.Gs3tCU.jhCPUD{color:#00cf9f}

.mlX7Pd{margin-left:auto;padding-left:10px}

[dir="rtl"] .mlX7Pd{margin-left:0;margin-right:auto;padding-left:0;padding-right:10px}
.qzNRBf,.w6wAha,.GE4aMb,.pr0yIU{display:flex;justify-content:center;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;transition:background-color 150ms ease-in-out,border-color 150ms ease-in-out;min-height:36px;padding:0 10px}

.qzNRBf:disabled,.w6wAha:disabled,.GE4aMb:disabled,.pr0yIU:disabled{opacity:.5;pointer-events:none;cursor:not-allowed}

.pr0yIU{font-weight:800;font-size:1.2rem;line-height:1.2rem;background-color:#fad318;color:#000}

.pr0yIU svg{margin-right:5px}

[dir="rtl"] .pr0yIU svg{margin-right:0;margin-left:5px}

.pr0yIU svg path,.pr0yIU svg rect,.pr0yIU svg line,.pr0yIU svg circle,.pr0yIU svg polygon,.pr0yIU svg ellipse{fill:#000;transition:fill 150ms ease-in-out}

@media(hover: hover),(-moz-touch-enabled: 0){
.pr0yIU:hover{background-color:#f5a623}

.pr0yIU:hover svg path,.pr0yIU:hover svg rect,.pr0yIU:hover svg line,.pr0yIU:hover svg circle,.pr0yIU:hover svg polygon,.pr0yIU:hover svg ellipse{fill:#000;transition:fill 150ms ease-in-out}}

@media(hover: none),(-moz-touch-enabled: 1){
.pr0yIU:active{background-color:#f5a623}

.pr0yIU:active svg path,.pr0yIU:active svg rect,.pr0yIU:active svg line,.pr0yIU:active svg circle,.pr0yIU:active svg polygon,.pr0yIU:active svg ellipse{fill:#000;transition:fill 150ms ease-in-out}}

.pr0yIU:active{background-color:#ef990b}

.GE4aMb{font-weight:600;font-size:1.2rem;line-height:1.2rem;color:#fff;background:#4618ac}

@media(hover: hover),(-moz-touch-enabled: 0){
.GE4aMb:hover{background:#32117d}}

@media(hover: none),(-moz-touch-enabled: 1){
.GE4aMb:active{background:#32117d}}

.GE4aMb:active{background:#1f0a4e}

.w6wAha{font-weight:600;font-size:1.2rem;line-height:1.2rem;color:#4618ac;background-color:rgba(0,0,0,0);border:1px solid #4618ac}

@media(hover: hover),(-moz-touch-enabled: 0){
.w6wAha:hover{background-color:#f4f4f6}}

@media(hover: none),(-moz-touch-enabled: 1){
.w6wAha:active{background-color:#f4f4f6}}

.w6wAha:active{color:#3f169a;background-color:#f4f4f6}

.qzNRBf{font-weight:600;font-size:1.2rem;line-height:1.2rem;background-color:rgba(0,0,0,0);border:1px solid #e24c75;color:#e24c75}

.qzNRBf svg{margin-right:5px}

[dir="rtl"] .qzNRBf svg{margin-right:0;margin-left:5px}

.qzNRBf svg path,.qzNRBf svg rect,.qzNRBf svg line,.qzNRBf svg circle,.qzNRBf svg polygon,.qzNRBf svg ellipse{fill:#e24c75;transition:fill 150ms ease-in-out}

@media(hover: hover),(-moz-touch-enabled: 0){
.qzNRBf:hover{background-color:#e24c75;color:#fff}

.qzNRBf:hover svg path,.qzNRBf:hover svg rect,.qzNRBf:hover svg line,.qzNRBf:hover svg circle,.qzNRBf:hover svg polygon,.qzNRBf:hover svg ellipse{fill:#fff;transition:fill 150ms ease-in-out}}

@media(hover: none),(-moz-touch-enabled: 1){
.qzNRBf:active{background-color:#e24c75;color:#fff}

.qzNRBf:active svg path,.qzNRBf:active svg rect,.qzNRBf:active svg line,.qzNRBf:active svg circle,.qzNRBf:active svg polygon,.qzNRBf:active svg ellipse{fill:#fff;transition:fill 150ms ease-in-out}}

.qzNRBf:active{background-color:#e24c75;color:#fff}

.qzNRBf:active svg path,.qzNRBf:active svg rect,.qzNRBf:active svg line,.qzNRBf:active svg circle,.qzNRBf:active svg polygon,.qzNRBf:active svg ellipse{fill:#fff;transition:fill 150ms ease-in-out}

.B2WEei{pointer-events:none;opacity:.8}

.oLpNOI{margin-right:5px}

[dir="rtl"] .oLpNOI{margin-right:0;margin-left:5px}
.fsoPYt{display:flex;align-items:stretch;width:100%;flex-direction:column}

.fsoPYt>div{flex:1}

.bXTuO4{align-items:flex-start}

.bXTuO4>div{flex:0 1 auto}

.nKdH2P{width:auto;align-items:flex-end}

.nKdH2P>div{flex:0 1 auto}

.XnbtIl{width:auto;align-items:center}

.XnbtIl>div{flex:0 1 auto}

.Vv79Jv{position:fixed;bottom:0;left:0;right:0;z-index:999}

.Vv79Jv>div{margin:0;width:100%;text-align:center;display:block}
.D1hrTz{display:flex;flex-direction:column;justify-content:space-between;z-index:6;position:fixed;right:35px;bottom:0;width:400px;background:#32117d;color:#fff;box-shadow:0 0 15px 0 rgba(0,0,0,.3);min-height:220px;padding:30px}

[dir="rtl"] .D1hrTz{right:auto;left:35px}

@media(max-width: 550px){
.D1hrTz{padding:20px;width:100%;right:0}

[dir="rtl"] .D1hrTz{right:auto;left:0}}

.D1hrTz.sWfbCS{min-height:initial}

.D1hrTz h3{font-size:1.8rem;line-height:1;margin-bottom:15px}

.D1hrTz p{font-size:1.4rem;color:#e9e8f7;margin-bottom:15px}

.LtE1_0{background:rgba(0,0,0,0);border:1px solid #fff;min-height:36px;color:#fff}

.LtE1_0:hover{background-color:rgba(0,0,0,.3);border-color:#fad318}

.nqBL2G{display:grid;grid-gap:20px;grid-template-columns:1fr 1fr}

._C4Grp{z-index:7;position:fixed;height:100vh;top:0;left:0;right:0;background:rgba(0,0,0,.4)}

.mdsz98{background:#4618ac;color:#fff;height:100%;outline:none;position:fixed;overflow:auto;top:0;left:0;box-shadow:0 2px 27px 0 rgba(0,0,0,.5);width:85%;max-width:400px}

[dir="rtl"] .mdsz98{left:auto;right:0}

.mdsz98 h2{color:#fff;letter-spacing:0;margin-bottom:20px;text-transform:none;font-size:2rem;line-height:1.2}

.mdsz98 h3{display:flex;align-items:center;font-size:1.4rem;line-height:1.2;margin-bottom:10px}

.mdsz98 h3>span{flex:1;padding-right:20px}

[dir="rtl"] .mdsz98 h3>span{padding-right:0;padding-left:20px}

.mdsz98 p{font-size:1.2rem;margin-bottom:10px;color:#e9e8f7}

.mdsz98 a.link{font-size:1.2rem;font-weight:600;color:#fad318}

.mdsz98 a.link:hover{color:#f5a623}

.mdsz98 ul>li:nth-last-child(n+2){border-bottom:1px solid rgba(255,255,255,.3);padding-bottom:20px;margin-bottom:25px}

@media(max-width: 400px){
.mdsz98 ul>li:nth-last-child(n+2){padding-bottom:15px;margin-bottom:15px}}

.mdsz98 ul>li button.link{font-size:1.2rem;font-weight:600;color:#fad318}

.mdsz98 ul>li button.link:hover{color:#f5a623}

.J0mflm,.oDzZxB,.xmETtY,.w1sKca,.xTVSyO>ul{padding:30px}

@media(max-width: 550px){
.J0mflm,.oDzZxB,.xmETtY,.w1sKca,.xTVSyO>ul{padding:20px}}

.J0mflm,.xmETtY{border-bottom:1px solid rgba(255,255,255,.3)}

.J0mflm>h2,.xmETtY>h2{padding-right:15px}

[dir="rtl"] .J0mflm>h2,[dir="rtl"] .xmETtY>h2{padding-right:0;padding-left:15px}

.rOlT2E{font-size:0;margin:0}

.rOlT2E span.switch{height:24px;padding-left:46px}

[dir="rtl"] .rOlT2E span.switch{padding-left:0;padding-right:46px}

.rOlT2E span.switch::before{transition:border-color 150ms ease-in-out,background 150ms ease-in-out;background:rgba(0,0,0,.1)}

.rOlT2E span.switch::after{transition:background 150ms ease-in-out,transform 150ms ease-in-out}

.rOlT2E span.switch:hover::before{border-color:#fad318;background:rgba(0,0,0,.3)}

.rOlT2E span.switch:hover::after{background:#fff}

.rOlT2E input[type=checkbox]:checked~span.switch::before{background:rgba(0,0,0,.3);border-color:#fad318}

.rOlT2E input[type=checkbox]:checked~span.switch::after{background:#fad318}

.QmcfvW{color:#00cf9f;max-width:30%;text-align:right}

[dir="rtl"] .QmcfvW{text-align:left}

.aCcEm8{width:100%;margin-top:20px}

.xmETtY{display:flex;align-items:center}

.xmETtY>button{padding:0 8px}

.xmETtY>h2{margin:0 0 0 20px}

[dir="rtl"] .xmETtY>h2{margin:0 20px 0 0}

.xTVSyO{display:flex;flex-direction:column;height:100vh}

.xTVSyO>ul{flex:1;overflow:auto;background:#32117d}

.xTVSyO>ul>li:nth-last-child(n+2){border-bottom:1px solid rgba(255,255,255,.3)}

.xTVSyO>ul>li>div{display:grid;grid-template-columns:75px 1fr;grid-gap:10px;margin-bottom:10px;margin-bottom:5px;font-size:1.2rem;line-height:1.2}

.KTS53b{color:#e9e8f7;text-align:right}

[dir="rtl"] .KTS53b{text-align:left}

.w1sKca{border-top:1px solid rgba(255,255,255,.3)}

.w1sKca>button{width:100%}

.tJBe2N{background:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;line-height:1;padding:15px;position:absolute;top:0;right:0}

[dir="rtl"] .tJBe2N{right:auto;left:0}

.tJBe2N path,.tJBe2N rect,.tJBe2N line,.tJBe2N circle,.tJBe2N polygon,.tJBe2N ellipse{fill:#fff;transition:fill 150ms ease-in-out}

.tJBe2N:hover path,.tJBe2N:hover rect,.tJBe2N:hover line,.tJBe2N:hover circle,.tJBe2N:hover polygon,.tJBe2N:hover ellipse{fill:red;transition:fill 150ms ease-in-out}
.ENtaXt{position:relative}

.W0okKf .react-select__control--menu-is-open .react-select__single-value{display:none}
.les8_U,.FwDQHr{display:flex;justify-content:center;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;transition:background-color 150ms ease-in-out,border-color 150ms ease-in-out;min-height:36px;padding:0 10px}

.les8_U:disabled,.FwDQHr:disabled{opacity:.5;pointer-events:none;cursor:not-allowed}

.FwDQHr{font-weight:800;font-size:1.2rem;line-height:1.2rem;background-color:#fad318;color:#000}

.FwDQHr svg{margin-right:5px}

[dir="rtl"] .FwDQHr svg{margin-right:0;margin-left:5px}

.FwDQHr svg path,.FwDQHr svg rect,.FwDQHr svg line,.FwDQHr svg circle,.FwDQHr svg polygon,.FwDQHr svg ellipse{fill:#000;transition:fill 150ms ease-in-out}

@media(hover: hover),(-moz-touch-enabled: 0){
.FwDQHr:hover{background-color:#f5a623}

.FwDQHr:hover svg path,.FwDQHr:hover svg rect,.FwDQHr:hover svg line,.FwDQHr:hover svg circle,.FwDQHr:hover svg polygon,.FwDQHr:hover svg ellipse{fill:#000;transition:fill 150ms ease-in-out}}

@media(hover: none),(-moz-touch-enabled: 1){
.FwDQHr:active{background-color:#f5a623}

.FwDQHr:active svg path,.FwDQHr:active svg rect,.FwDQHr:active svg line,.FwDQHr:active svg circle,.FwDQHr:active svg polygon,.FwDQHr:active svg ellipse{fill:#000;transition:fill 150ms ease-in-out}}

.FwDQHr:active{background-color:#ef990b}

.les8_U{font-weight:600;font-size:1.2rem;line-height:1.2rem;color:#4618ac;background-color:rgba(0,0,0,0);border:1px solid #4618ac}

@media(hover: hover),(-moz-touch-enabled: 0){
.les8_U:hover{background-color:#f4f4f6}}

@media(hover: none),(-moz-touch-enabled: 1){
.les8_U:active{background-color:#f4f4f6}}

.les8_U:active{color:#3f169a;background-color:#f4f4f6}

.oA3SHd{margin:-10px;padding:10px;display:inline-block;background:none;font-weight:600;color:#73cdff}

@media(hover: hover),(-moz-touch-enabled: 0){
.oA3SHd:hover{text-decoration:underline}}

@media(hover: none),(-moz-touch-enabled: 1){
.oA3SHd:active{text-decoration:underline}}

.oA3SHd:active{opacity:.8;text-decoration:underline}

.V93v0v{padding:20px 10px;text-align:center}

.LizLTY{display:grid;justify-content:center;justify-items:center;grid-auto-flow:column;grid-gap:20px}

@media(max-width: 1000px){
.LizLTY{display:grid;grid-auto-flow:row}}

.iNMVZO{font-weight:600;font-size:1.3rem;line-height:1.3}

.oA3SHd{font-weight:800;font-size:1.4rem;line-height:1.2;color:#fff;align-self:flex-start}

.UA_NfE{all:unset;cursor:pointer;display:flex;align-items:center;font-weight:400;font-size:1.4rem;line-height:1.2;color:#fff;padding:10px;margin:-10px;gap:7px}

.z57_U1{width:16px;height:16px;margin-top:-3px}

@media(max-width: 1000px){
.z57_U1{margin-top:-1px}}

.pLSeAx{position:relative;width:100%;max-width:400px;min-height:200px;box-shadow:0 7px 17px 0 rgba(0,0,0,.5);outline:none;background:#32117d;padding:40px;animation:PUQ8Zm .2s}

@keyframes PUQ8Zm{
from{opacity:.8;transform:translateY(-10px)}

to{opacity:1;transform:translateY(0)}}

@keyframes lyL027{
from{opacity:1;transform:translateY(0)}

to{opacity:.8;transform:translateY(-10px)}}

@media(max-width: 800px){
.pLSeAx{padding:20px}}

.sV92ye{display:flex;justify-content:center;align-items:center;z-index:7;position:fixed;top:0;right:0;bottom:0;left:0;background:rgba(15,3,41,.9)}

.mGbNzc{font-weight:800;font-size:1.8rem;line-height:2.2rem;color:#fff;margin-bottom:25px}

@media(max-width: 1280px){
.mGbNzc{font-size:calc(1.64rem + 0.125vw)}}

.qd6m_X{font-weight:400;font-size:1.2rem;line-height:1.3;color:#fff;display:block;margin-bottom:10px}

.hTkjEF{display:flex;align-items:center;justify-content:flex-end;margin-top:30px;gap:10px}

.FwDQHr{max-width:120px}

.les8_U{color:#fff;border-color:#fff;max-width:120px}

.les8_U:hover{background-color:rgba(0,0,0,0);color:#fff;border-color:#fff}

.g5Qrgt{text-transform:none;background-color:rgba(0,0,0,0);position:absolute;top:0;right:0;padding:20px}

[dir="rtl"] .g5Qrgt{right:auto;left:0}
.IqRWsX{display:flex;flex-direction:column;min-height:100vh;padding:20px 10px;background:linear-gradient(270deg, #270D7A 0%, #5628BA 50.42%, #3D1598 100%);color:#fff}

[dir="rtl"] .IqRWsX{background:linear-gradient(-270deg, #270D7A 0%, #5628BA 50.42%, #3D1598 100%)}

@media(max-width: 800px){
.IqRWsX{background:linear-gradient(0deg, #270D7A 0%, #5628BA 50.42%, #3D1598 100%)}}

.WBZdI2{flex:1;display:flex;justify-content:center;align-items:center}

.hwmQTN{display:grid;justify-items:center;grid-template-rows:unset;grid-auto-flow:row;grid-auto-columns:unset;grid-template-columns:1fr;width:100%;max-width:385px}

.VxmqEL{margin-bottom:20px;font-weight:800;font-size:1.6rem;line-height:1;text-transform:uppercase;letter-spacing:1.2px}

.gNWKhd{display:block;margin-bottom:30px}
._9NeLF{font-weight:600;font-size:1.5rem;line-height:1;color:#dfdeea;text-align:center}
.GCoPOJ{background-color:#4618ac;background-position:top right;color:#fff;position:sticky;top:70px;height:calc(100vh - 70px);overflow:auto;align-self:start;z-index:3;width:240px}

[dir="rtl"] .GCoPOJ{background-position:top left}

@media(max-width: 1200px){
.GCoPOJ{display:none}}

.NFWPGY.NmTnNv{transform:rotate(180deg)}

[dir="rtl"] .NFWPGY.NmTnNv{transform:rotate(-180deg)}

.Ek49_K,.ywZmDf,.NFWPGY{opacity:1;transition:all .1s ease-out}

.Ek49_K{max-height:300px;overflow:hidden;transition:all .1s ease-out;z-index:2}

.Ek49_K>li{margin:0 10px}

.Ek49_K>li:last-child{margin-bottom:10px}

.Ek49_K>li:first-child{margin-bottom:0}

.Gm0s1H{max-height:0;padding-bottom:0;transition:none}

.VQCm6r{border-top:1px solid #b99aff}

.VqalTz{display:flex;align-items:center;font-size:1.2rem;padding:10px 20px 10px 30px;text-transform:uppercase;font-weight:800;min-height:50px}

[dir="rtl"] .VqalTz{padding:10px 30px 10px 20px}

@media(hover: hover),(-moz-touch-enabled: 0){
.Pkz8sa:hover ._We4j2{background-color:#351281}}

@media(hover: none),(-moz-touch-enabled: 1){
.Pkz8sa:active ._We4j2{background-color:#351281}}

._We4j2{font-weight:600;font-size:1.4rem;line-height:1;color:#f4f4f6;position:relative;letter-spacing:1px;display:flex;align-items:center;padding:10px 20px 10px 30px;min-height:50px;background:none;width:100%;transition:all .1s ease-out}

[dir="rtl"] ._We4j2{padding:10px 30px 10px 20px}

@media(max-width: 1200px){
._We4j2{padding:10px 20px}}

.sKtdDM{background:#351281}

.LbZmC8{display:block;font-weight:600;font-size:1.4rem;color:#a09aac;padding:6px 10px 6px 58px;transition:color .3s ease-out}

[dir="rtl"] .LbZmC8{padding:6px 58px 6px 10px}

@media(hover: hover),(-moz-touch-enabled: 0){
.LbZmC8:hover{color:#fff}}

@media(hover: none),(-moz-touch-enabled: 1){
.LbZmC8:active{color:#fff}}

@media(max-width: 1200px){
.LbZmC8{padding:6px 10px 6px 41px}

[dir="rtl"] .LbZmC8{padding:6px 41px 6px 10px}}

.hJup35{color:#fff;pointer-events:none}

.ywZmDf{flex:1;margin-right:20px;text-align:left}

[dir="rtl"] .ywZmDf{margin-right:0;margin-left:20px;text-align:right}

.fqgW1A{display:flex;align-items:center;justify-content:center;position:relative;width:30px;height:30px;margin-right:8px}

[dir="rtl"] .fqgW1A{margin-right:0;margin-left:8px}

.x3Qn2U{display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.2rem;line-height:1.1;background:red;white-space:nowrap;min-width:16px;height:16px;border-radius:8px;position:absolute;top:0;right:0;padding:.5px 4px 0}

[dir="rtl"] .x3Qn2U{right:auto;left:0}

[dir=rtl] .qzeFOg{transform:scaleX(-1)}
.DD9u6y,.zKOslY{display:flex;align-items:center;justify-content:center;background:red;white-space:nowrap;min-width:16px;height:16px;border-radius:8px;font-weight:800;font-size:1.2rem;line-height:1;color:#fff;padding:.5px 4px 0}

.zKOslY{top:0;position:absolute;right:0;transform:translate(50%, -50%)}

[dir="rtl"] .zKOslY{right:auto;left:0;transform:translate(-50%, -50%)}

.DD9u6y{margin:0 0 1px 7px}

[dir="rtl"] .DD9u6y{margin:0 7px 1px 0}

.tqIpU3{align-self:center;margin:0 auto;transform:scale(0.5)}

.gCJydY{position:sticky;top:0;height:70px;background:#4618ac;color:#fff;z-index:4;padding:0 20px 0 30px}

[dir="rtl"] .gCJydY{padding:0 30px 0 20px}

@media(max-width: 1200px){
.gCJydY{height:70px;padding:0 20px}}

.w3SShl{display:flex;align-items:stretch;width:100%;height:100%}

.MsBCnU{margin-right:auto;align-self:center}

[dir="rtl"] .MsBCnU{margin-right:0;margin-left:auto}

.S0PvNi{font-weight:800;font-size:1.4rem;line-height:1;display:flex;align-items:center;background:none;border:0;position:relative}

.S0PvNi>span{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:200px;margin-right:10px}

[dir="rtl"] .S0PvNi>span{margin-right:0;margin-left:10px}

.S0PvNi>.r3BvXR{color:#00cf9f}

.S0PvNi>svg{margin-right:-10px}

[dir="rtl"] .S0PvNi>svg{margin-right:0;margin-left:-10px}

@media(max-width: 800px){
.S0PvNi>span{display:none}

.S0PvNi>svg{min-width:20px !important;max-width:20px !important;margin-right:10px}

[dir="rtl"] .S0PvNi>svg{margin-right:0;margin-left:10px}}

.S0PvNi .CkCZ2l{position:relative}

.S0PvNi .hI_dn9{width:32px;height:32px;-o-object-fit:cover;object-fit:cover;border:1px solid #b99aff;border-radius:50%;margin:0}

.FBNWGA{z-index:7;position:fixed;height:100vh;top:0;left:0;right:0;background:rgba(0,0,0,.4)}

.sJ60OF{background:#4618ac;color:#fff;height:100%;outline:none;position:fixed;top:0;left:0;right:0;box-shadow:0 2px 27px 0 rgba(0,0,0,.54);width:400px;max-width:100%;overflow:auto}

@media(max-width: 360px){
.sJ60OF{width:100%}}

.OfGdVl{font-weight:800;font-size:1.5rem;line-height:1;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #32117d;padding-left:20px;min-height:55px;width:100%}

[dir="rtl"] .OfGdVl{padding-left:0;padding-right:20px}

.n3t_Su{display:flex;align-items:center}

.kXTl0C{margin-right:10px}

[dir="rtl"] .kXTl0C{margin-right:0;margin-left:10px}

.GY26wy{background:none;height:44px;padding:0 20px;transition:all .1s ease-out}

@media(hover: hover),(-moz-touch-enabled: 0){
.GY26wy:hover{color:red}}

@media(hover: none),(-moz-touch-enabled: 1){
.GY26wy:active{color:red}}

.xViA3T{right:auto}

[dir="rtl"] .xViA3T{right:auto;left:auto}

[dir=rtl] .xViA3T{right:0}

[dir="rtl"] [dir=rtl] .xViA3T{right:auto;left:0}

@media(min-width: 1201px){
.uZ7Eqq{display:none}}

@media(max-width: 1200px){
.uZ7Eqq{background:none;margin:0 5px 0 -10px;padding:10px}

[dir="rtl"] .uZ7Eqq{margin:0 -10px 0 5px}

.uZ7Eqq::before{content:"";display:block;width:20px;border-bottom:2px solid;margin:0 0 5px}

.uZ7Eqq::after{content:"";padding-bottom:5px;display:block;border-style:solid;border-width:2px 0 2px 0}}

.vkAtrX{font-size:1.2rem;color:#544d60;padding:10px 0;width:290px;background-color:#fff;border:1px solid #f4f4f6}

.jm6ZNP{font-size:1.2rem;color:#fff;padding:0 0 20px;width:400px;max-width:100%;background-color:#4618ac;min-height:100vh}

.DUexBT{display:flex;align-items:center;padding:10px 10px 10px 20px;margin-bottom:5px;border-bottom:1px solid #32117d;min-height:70px}

[dir="rtl"] .DUexBT{padding:10px 20px 10px 10px}

.dFH0I9{border:0;background:none;margin-left:auto;padding:10px}

[dir="rtl"] .dFH0I9{margin-left:0;margin-right:auto}

.dFH0I9:hover{color:red}

.A7pwbT{font-size:1.4rem;display:flex;align-items:center;padding:10px 20px;width:100%;background:none;border:0;text-align:left}

[dir="rtl"] .A7pwbT{text-align:right}

.A7pwbT.R0gjsq:hover{background:#f4f4f6}

.A7pwbT.ryngGg:hover{background:rgba(0,0,0,.34)}

.MDro3s{color:#f4f4f6}

.MDro3s::after{content:"";display:block;position:absolute;top:1px;left:-12px;border:inherit;color:#fff}

[dir="rtl"] .MDro3s::after{left:auto;right:-12px}

.IcImWj{margin:5px 20px;border:none;border-bottom:1px solid rgba(0,0,0,0)}

.IcImWj.ryngGg{border-color:rgba(255,255,255,.12)}

.IcImWj.R0gjsq{border-color:#f4f4f6}

.hha5K8{margin-right:10px}

[dir="rtl"] .hha5K8{margin-right:0;margin-left:10px}

.p8nJWC{padding:10px 20px;display:grid;grid-template-areas:"img name" "img email";grid-template-columns:auto 1fr;grid-column-gap:10px}

.p8nJWC.R0gjsq:hover{background:#f4f4f6}

.p8nJWC.ryngGg:hover{background:rgba(0,0,0,.34)}

.RMCT7j{grid-area:img}

.KsEK_9{grid-area:name;font-weight:800;font-size:1.2rem}

.KsEK_9.R0gjsq{color:#1f0a4e}

.AZZYBW{grid-area:email;font-size:1.2rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.AZZYBW.R0gjsq{color:#797189}

.AZZYBW.ryngGg{color:#b99aff}

.miMLYv{width:32px;height:32px;border-radius:50%;border:1px solid #b99aff;-o-object-fit:cover;object-fit:cover}
@media screen and (max-width: 930px){
.zM7i5r{height:100vh;position:fixed;width:100%}}

@keyframes kedbsL{
0%{opacity:0}

100%{opacity:1}}

.jzP97H{z-index:7;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.54);border:0;cursor:default;animation:kedbsL 250ms}

.qqOgf_{z-index:7;position:absolute;filter:drop-shadow(0 6px 12px rgba(0, 0, 0, 0.34))}

@keyframes AJmDTb{
0%{transform:translateX(100%)}

100%{transform:translateX(0%)}}

.VNs4hb{content:"";display:block;position:absolute;border-color:rgba(0,0,0,0);border-style:solid}
@media screen and (max-width: 930px){
.kidfbn{height:100vh;position:fixed;width:100%}}

@keyframes ahrToy{
0%{opacity:0}

100%{opacity:1}}

@keyframes L8PJfr{
0%{opacity:1}

100%{opacity:0}}

.MIuTTi{z-index:7;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.54);border:0;cursor:default;animation:ahrToy 250ms}

.MIuTTi.nop6jY{pointer-events:none;animation:L8PJfr 250ms}

.qc3Lsd{z-index:7;filter:drop-shadow(0 6px 12px rgba(0, 0, 0, 0.34));position:fixed;top:0;height:100%;max-width:100%;transition:transform 250ms}

@keyframes h5oITl{
0%{transform:translateX(100%)}

100%{transform:translateX(0%)}}

.aZFOJS{right:0;animation:h5oITl 250ms}

[dir="rtl"] .aZFOJS{right:auto;left:0}

.aZFOJS.nop6jY{transform:translateX(100%)}

[dir="rtl"] .aZFOJS.nop6jY{transform:translateX(-100%)}

@keyframes zq5q3l{
0%{transform:translateX(-100%)}

100%{transform:translateX(0%)}}

.bu2qSf{left:0;animation:zq5q3l 250ms}

[dir="rtl"] .bu2qSf{left:auto;right:0}

.bu2qSf.nop6jY{transform:translateX(-100%)}

[dir="rtl"] .bu2qSf.nop6jY{transform:translateX(100%)}
.gG9kIp{display:flex;gap:15px;margin-top:10px;justify-content:center;flex-direction:column}

.gG9kIp.olixXB{flex-direction:row}

.gG9kIp img{height:40px}

.Pho02y{font-size:1.4rem;font-weight:800}

.rJakGC{color:#000;font-size:1.2rem;font-weight:400;opacity:.5;padding-top:5px}
.R2pp27,.jhj9zO{display:flex;justify-content:center;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;transition:background-color 150ms ease-in-out,border-color 150ms ease-in-out;min-height:36px;padding:0 10px}

.R2pp27:disabled,.jhj9zO:disabled{opacity:.5;pointer-events:none;cursor:not-allowed}

.R2pp27,.jhj9zO{font-weight:600;font-size:1.2rem;line-height:1.2rem;color:#4618ac;background-color:rgba(0,0,0,0);border:1px solid #4618ac}

@media(hover: hover),(-moz-touch-enabled: 0){
.R2pp27:hover,.jhj9zO:hover{background-color:#f4f4f6}}

@media(hover: none),(-moz-touch-enabled: 1){
.R2pp27:active,.jhj9zO:active{background-color:#f4f4f6}}

.R2pp27:active,.jhj9zO:active{color:#3f169a;background-color:#f4f4f6}

.xCd0YY{background-color:#e9e8f7;padding:20px 40px 40px;color:#1f0a4e}

@media(max-width: 1366px){
.xCd0YY{padding:0 20px 20px}}

.Khz2Vx{display:flex;align-items:flex-start;flex-wrap:wrap;margin-right:-10px;max-width:1280px}

[dir="rtl"] .Khz2Vx{margin-right:0;margin-left:-10px}

.Khz2Vx>ul{padding:30px 10px 0 0;flex:auto;display:grid}

[dir="rtl"] .Khz2Vx>ul{padding:30px 0 0 10px}

.Khz2Vx>div{padding:30px 10px 0 0;flex:auto}

[dir="rtl"] .Khz2Vx>div{padding:30px 0 0 10px}

@media(max-width: 650px){
.Khz2Vx>ul,.Khz2Vx>div{min-width:50%}}

@media(max-width: 1020px){
.tf5lPS{display:block;min-width:100%}}

.LygbJr{font-weight:800;font-size:1.4rem;line-height:1.5;color:#544d60;display:block;padding-bottom:10px}

.UxlV7h{transition:color 150ms ease-in-out;background:none;font-weight:600;font-size:1.2rem;line-height:2;color:#544d60}

@media(hover: hover),(-moz-touch-enabled: 0){
.UxlV7h:hover{color:#4618ac}}

@media(hover: none),(-moz-touch-enabled: 1){
.UxlV7h:active{color:#4618ac}}

.jhj9zO{width:auto;display:inline-flex;min-height:30px}

.jhj9zO>svg{margin:0 10px 0 0}

[dir="rtl"] .jhj9zO>svg{margin:0 0 0 10px}

.jhj9zO>svg path,.jhj9zO>svg rect,.jhj9zO>svg line,.jhj9zO>svg circle,.jhj9zO>svg polygon,.jhj9zO>svg ellipse{fill:#4618ac;transition:fill 150ms ease-in-out}

.R2pp27{width:auto;display:inline-flex;min-height:30px;padding-top:1px;margin-bottom:10px;min-width:120px}

.oqXzx5{margin:30px 0}

.sNXxv7{padding-left:10px;margin-left:10px;border-left:1px solid;text-transform:uppercase;white-space:nowrap}

[dir="rtl"] .sNXxv7{padding-left:0;padding-right:10px;margin-left:0;margin-right:10px;border-left:none;border-right:1px solid}

.FVNvrj>p{margin-bottom:20px}

.G9sYZo{display:grid;grid-template-columns:repeat(2, minmax(100px, auto));grid-gap:20px;justify-content:end}

.gvyDFJ{padding:30px 20px 0 0}

[dir="rtl"] .gvyDFJ{padding:30px 0 0 20px}

.gvyDFJ>ul{display:flex;margin-right:-20px}

[dir="rtl"] .gvyDFJ>ul{margin-right:0;margin-left:-20px}

.gvyDFJ>ul>li>a{margin:0 25px 0 -5px}

[dir="rtl"] .gvyDFJ>ul>li>a{margin:0 -5px 0 25px}

.gvyDFJ>ul>li>a path,.gvyDFJ>ul>li>a rect,.gvyDFJ>ul>li>a line,.gvyDFJ>ul>li>a circle,.gvyDFJ>ul>li>a polygon,.gvyDFJ>ul>li>a ellipse{fill:#1f0a4e;transition:fill 150ms ease-in-out}

@media(hover: hover),(-moz-touch-enabled: 0){
.gvyDFJ>ul>li>a:hover path,.gvyDFJ>ul>li>a:hover rect,.gvyDFJ>ul>li>a:hover line,.gvyDFJ>ul>li>a:hover circle,.gvyDFJ>ul>li>a:hover polygon,.gvyDFJ>ul>li>a:hover ellipse{fill:#4618ac;transition:fill 150ms ease-in-out}}

@media(hover: none),(-moz-touch-enabled: 1){
.gvyDFJ>ul>li>a:active path,.gvyDFJ>ul>li>a:active rect,.gvyDFJ>ul>li>a:active line,.gvyDFJ>ul>li>a:active circle,.gvyDFJ>ul>li>a:active polygon,.gvyDFJ>ul>li>a:active ellipse{fill:#4618ac;transition:fill 150ms ease-in-out}}

.TDjv64{color:#797189}

.KIEqm3{border-bottom:1px solid rgba(23,23,25,.12);margin:20px 0 0;padding:0 15px 20px;left:-20px;position:relative;text-align:center;width:calc(100% + 40px)}

[dir="rtl"] .KIEqm3{left:auto;right:-20px}
.D8ILEg{height:100%}

.gOgkyC{border-radius:3px;background-color:#f4f4f6;color:#1f0a4e;position:relative;padding:40px 20px 20px;outline:none;animation:vVeWyA .2s;overflow-y:auto}

@keyframes vVeWyA{
from{opacity:.8;transform:translateY(-10px)}

to{opacity:1;transform:translateY(0)}}

@keyframes m6mUGw{
from{opacity:1;transform:translateY(0)}

to{opacity:.8;transform:translateY(-10px)}}

@media(max-width: 500px){
.gOgkyC{padding:30px 20px 20px}}

.CuSkpe{max-width:450px;padding-right:20px}

[dir="rtl"] .CuSkpe{padding-right:0;padding-left:20px}

.K3qkpJ{position:absolute;top:20px;right:20px}

[dir="rtl"] .K3qkpJ{right:auto;left:20px}

.k3ucZO{margin:-10px;padding:10px;-webkit-user-select:none;-moz-user-select:none;user-select:none;background:none}

.k3ucZO path,.k3ucZO rect,.k3ucZO line,.k3ucZO circle,.k3ucZO polygon,.k3ucZO ellipse{fill:#797189;transition:fill 150ms ease-in-out}

@media(hover: hover),(-moz-touch-enabled: 0){
.k3ucZO:hover path,.k3ucZO:hover rect,.k3ucZO:hover line,.k3ucZO:hover circle,.k3ucZO:hover polygon,.k3ucZO:hover ellipse{fill:#1f0a4e;transition:fill 150ms ease-in-out}}

@media(hover: none),(-moz-touch-enabled: 1){
.k3ucZO:active path,.k3ucZO:active rect,.k3ucZO:active line,.k3ucZO:active circle,.k3ucZO:active polygon,.k3ucZO:active ellipse{fill:#1f0a4e;transition:fill 150ms ease-in-out}}

.k3ucZO:disabled{pointer-events:none;cursor:not-allowed}
.gALYaB{display:flex;margin:-20px 0 20px}

.gALYaB>li{font-size:1.1rem;font-weight:600;margin-bottom:10px}

.gALYaB>li a{font-size:1.1rem;font-weight:600}

.gALYaB>li:only-child{display:none}

.gALYaB>li::after{content:"●";font-size:6px;display:inline-block;vertical-align:middle;padding:0 5px;color:#a09aac}

.gALYaB>li:last-child{color:#a09aac}

.gALYaB>li:last-child::after{display:none}
.cZiDFX{max-width:370px}

.byvn3a{color:#f5a623;display:block;margin:0 auto 20px}

.JnqvK4{text-align:center;margin-bottom:40px}

.lS4z3L{margin-bottom:20px}

.ntW7Du{margin-top:40px}

.TzJnSC{max-width:370px}

.YWCqz7{color:red;display:block;margin:0 auto 20px}

.uCZpFL{text-align:center;margin-bottom:40px}

.FQa3YV{margin-bottom:20px}
.tWggK4{display:flex;flex-direction:column;min-height:100vh}

.dMZWSu{flex:1;background:linear-gradient(90deg, #F9F9FC 0%, #ECECF8 100%);color:#544d60}

[dir="rtl"] .dMZWSu{background:linear-gradient(-90deg, #F9F9FC 0%, #ECECF8 100%)}

@media(min-width: 1201px){
.dMZWSu{display:grid;grid-template-columns:auto 1fr;align-content:stretch;justify-content:stretch;justify-items:stretch}}

.YGeqb0{flex:1;display:flex;justify-content:flex-start;flex-direction:column}

.TWyOMQ{flex:1;width:100%;max-width:1920px;padding:40px 40px 80px}

@media(max-width: 1366px){
.TWyOMQ{padding:40px 20px}}
.KD7WwQ{background:linear-gradient(90deg, #F9F9FC 0%, #ECECF8 100%);color:#1f0a4e;min-height:100vh}

[dir="rtl"] .KD7WwQ{background:linear-gradient(-90deg, #F9F9FC 0%, #ECECF8 100%)}

._0UNc1b{width:100%;text-align:center;padding:20px 0}

.lFUPW6{display:grid;align-items:center;align-content:center;min-height:calc(100vh - 87px);padding:20px}

.lFUPW6>div{margin:0 auto;width:100%}
._uqga4{width:0;height:0;display:block;position:absolute;left:0}

[dir="rtl"] ._uqga4{left:auto;right:0}
