react-gldn-kit 0.1.53 → 0.1.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/lib/components/Layouts/ModalLayout/index.js +2 -2
  3. package/dist/lib/components/Layouts/ModalLayout/types.d.ts +1 -0
  4. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/EmailSignInForm/index.d.ts +7 -0
  5. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/EmailSignInForm/index.js +50 -0
  6. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/EmailSignInForm/types.d.ts +1 -0
  7. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/IdSignInForm/index.d.ts +6 -0
  8. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/IdSignInForm/index.js +65 -0
  9. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/IdSignInForm/types.d.ts +1 -0
  10. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/PhoneSignInForm/index.d.ts +6 -0
  11. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/PhoneSignInForm/index.js +52 -0
  12. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/components/PhoneSignInForm/types.d.ts +1 -0
  13. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/constants.d.ts +5 -0
  14. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/constants.js +18 -0
  15. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/index.d.ts +1 -0
  16. package/dist/lib/components/Modals/Alert/components/Auth/SignIn/Third/index.js +125 -0
  17. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/First/components/Forms/OneClickKit/types.js +2 -0
  18. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/First/components/Forms/PhoneSignUp/types.js +2 -0
  19. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{index.js → First/index.js} +4 -4
  20. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{types.d.ts → First/types.d.ts} +5 -0
  21. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/First/types.js +9 -0
  22. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/EmailSignUp/index.d.ts +11 -0
  23. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/EmailSignUp/index.js +137 -0
  24. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/OneClickKit/constants.d.ts +9 -0
  25. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/OneClickKit/constants.js +12 -0
  26. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/OneClickKit/index.d.ts +3 -0
  27. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/OneClickKit/index.js +125 -0
  28. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/OneClickKit/types.d.ts +17 -0
  29. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/OneClickKit/types.js +2 -0
  30. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/PhoneSignUp/constants.d.ts +2 -0
  31. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/PhoneSignUp/constants.js +14 -0
  32. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/PhoneSignUp/index.d.ts +2 -0
  33. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/PhoneSignUp/index.js +160 -0
  34. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/PhoneSignUp/types.d.ts +11 -0
  35. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/components/Forms/PhoneSignUp/types.js +2 -0
  36. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/index.d.ts +2 -0
  37. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/index.js +141 -0
  38. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/types.d.ts +10 -0
  39. package/dist/lib/components/Modals/Alert/components/Auth/SignUp/Third/types.js +9 -0
  40. package/dist/lib/components/Modals/Alert/components/LostPassword/{constants.d.ts → First/constants.d.ts} +1 -1
  41. package/dist/lib/components/Modals/Alert/components/LostPassword/{constants.js → First/constants.js} +1 -1
  42. package/dist/lib/components/Modals/Alert/components/LostPassword/{index.js → First/index.js} +2 -2
  43. package/dist/lib/components/Modals/Alert/components/LostPassword/Third/components/LostPasswordEmailForm/index.d.ts +5 -0
  44. package/dist/lib/components/Modals/Alert/components/{Auth/LostPassword → LostPassword/Third}/components/LostPasswordEmailForm/index.js +25 -21
  45. package/dist/lib/components/Modals/Alert/components/LostPassword/Third/components/LostPasswordPhoneForm/index.d.ts +5 -0
  46. package/dist/lib/components/Modals/Alert/components/LostPassword/Third/components/LostPasswordPhoneForm/index.js +90 -0
  47. package/dist/lib/components/Modals/Alert/components/LostPassword/Third/index.d.ts +2 -0
  48. package/dist/lib/components/Modals/Alert/components/LostPassword/Third/index.js +61 -0
  49. package/dist/lib/components/Modals/Alert/index.js +48 -7
  50. package/dist/lib/components/Scratch/index.js +5 -5
  51. package/dist/lib/components/Scratch/types.d.ts +3 -3
  52. package/dist/lib/components/Scratch/types.js +1 -2
  53. package/dist/lib/components/SignUp/CountrySelector/index.js +2 -2
  54. package/dist/lib/components/SignUp/CountrySelector/types.d.ts +2 -0
  55. package/dist/lib/components/SignUp/CurrencySelector/index.js +2 -2
  56. package/dist/lib/components/SignUp/CurrencySelector/types.d.ts +2 -0
  57. package/dist/lib/components/SignUpThree/DocsCheckBox/index.d.ts +9 -0
  58. package/dist/lib/components/SignUpThree/DocsCheckBox/index.js +41 -0
  59. package/dist/lib/components/Wheel/index.js +3 -1
  60. package/dist/lib/components/Wheel/types.d.ts +5 -42
  61. package/dist/lib/components/ui/Icons/Base/CheckSvg.d.ts +2 -0
  62. package/dist/lib/components/ui/Icons/Base/CheckSvg.js +20 -0
  63. package/dist/lib/components/ui/Inputs/CheckBox/index.d.ts +1 -0
  64. package/dist/lib/components/ui/Inputs/CheckBox/index.js +6 -3
  65. package/dist/lib/components/ui/Inputs/PhoneInput/index.js +2 -2
  66. package/dist/lib/components/ui/Inputs/PhoneInput/types.d.ts +1 -0
  67. package/dist/lib/components/ui/Selector/index.js +3 -3
  68. package/dist/lib/components/ui/Selector/types.d.ts +1 -0
  69. package/dist/lib/context/logic/ModalContext.d.ts +2 -0
  70. package/dist/lib/index.d.ts +10 -7
  71. package/dist/lib/index.js +33 -29
  72. package/dist/lib/zustandStore/alerts/modal/types.d.ts +4 -1
  73. package/dist/lib/zustandStore/alerts/modal/types.js +3 -0
  74. package/dist/lib/zustandStore/forms/signUp/types.d.ts +4 -0
  75. package/dist/lib/zustandStore/forms/signUp/types.js +6 -1
  76. package/dist/main.css +916 -121
  77. package/package.json +1 -1
  78. package/dist/lib/components/Modals/Alert/components/Auth/LostPassword/components/LostPasswordEmailForm/index.d.ts +0 -4
  79. package/dist/lib/components/Modals/Alert/components/Auth/LostPassword/components/LostPasswordPhoneForm/index.d.ts +0 -4
  80. package/dist/lib/components/Modals/Alert/components/Auth/LostPassword/components/LostPasswordPhoneForm/index.js +0 -54
  81. package/dist/lib/components/Modals/Alert/components/Auth/LostPassword/index.d.ts +0 -3
  82. package/dist/lib/components/Modals/Alert/components/Auth/LostPassword/index.js +0 -50
  83. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/EmailSignInForm/index.d.ts +0 -0
  84. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/EmailSignInForm/index.js +0 -0
  85. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/EmailSignInForm/types.d.ts +0 -0
  86. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/EmailSignInForm/types.js +0 -0
  87. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/IdSignInForm/index.d.ts +0 -0
  88. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/IdSignInForm/index.js +0 -0
  89. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/IdSignInForm/types.d.ts +0 -0
  90. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/IdSignInForm/types.js +0 -0
  91. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/PhoneSignInForm/index.d.ts +0 -0
  92. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/PhoneSignInForm/index.js +0 -0
  93. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/PhoneSignInForm/types.d.ts +0 -0
  94. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{components → First/components}/PhoneSignInForm/types.js +0 -0
  95. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{constants.d.ts → First/constants.d.ts} +0 -0
  96. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{constants.js → First/constants.js} +0 -0
  97. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{index.d.ts → First/index.d.ts} +0 -0
  98. /package/dist/lib/components/Modals/Alert/components/Auth/SignIn/{index.js → First/index.js} +0 -0
  99. /package/dist/lib/components/Modals/Alert/components/Auth/{SignUp/components/Forms/OneClickKit → SignIn/Third/components/EmailSignInForm}/types.js +0 -0
  100. /package/dist/lib/components/Modals/Alert/components/Auth/{SignUp/components/Forms/PhoneSignUp → SignIn/Third/components/IdSignInForm}/types.js +0 -0
  101. /package/dist/lib/components/Modals/Alert/components/Auth/{SignUp → SignIn/Third/components/PhoneSignInForm}/types.js +0 -0
  102. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/EmailSignUp/index.d.ts +0 -0
  103. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/EmailSignUp/index.js +0 -0
  104. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/OneClickKit/constants.d.ts +0 -0
  105. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/OneClickKit/constants.js +0 -0
  106. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/OneClickKit/index.d.ts +0 -0
  107. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/OneClickKit/index.js +0 -0
  108. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/OneClickKit/types.d.ts +0 -0
  109. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/PhoneSignUp/constants.d.ts +0 -0
  110. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/PhoneSignUp/constants.js +0 -0
  111. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/PhoneSignUp/index.d.ts +0 -0
  112. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/PhoneSignUp/index.js +0 -0
  113. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{components → First/components}/Forms/PhoneSignUp/types.d.ts +0 -0
  114. /package/dist/lib/components/Modals/Alert/components/Auth/SignUp/{index.d.ts → First/index.d.ts} +0 -0
  115. /package/dist/lib/components/Modals/Alert/components/Auth/{SignUpTypeTwo → SignUp/Second}/index.d.ts +0 -0
  116. /package/dist/lib/components/Modals/Alert/components/Auth/{SignUpTypeTwo → SignUp/Second}/index.js +0 -0
  117. /package/dist/lib/components/Modals/Alert/components/LostPassword/{components → First/components}/LostPasswordEmailForm/index.d.ts +0 -0
  118. /package/dist/lib/components/Modals/Alert/components/LostPassword/{components → First/components}/LostPasswordEmailForm/index.js +0 -0
  119. /package/dist/lib/components/Modals/Alert/components/LostPassword/{components → First/components}/LostPasswordPhoneForm/index.d.ts +0 -0
  120. /package/dist/lib/components/Modals/Alert/components/LostPassword/{components → First/components}/LostPasswordPhoneForm/index.js +0 -0
  121. /package/dist/lib/components/Modals/Alert/components/LostPassword/{index.d.ts → First/index.d.ts} +0 -0
  122. /package/dist/lib/components/Modals/Alert/components/{Auth/LostPassword → LostPassword/Third}/constants.d.ts +0 -0
  123. /package/dist/lib/components/Modals/Alert/components/{Auth/LostPassword → LostPassword/Third}/constants.js +0 -0
  124. /package/dist/lib/components/Modals/Alert/components/{Auth/LostPassword → LostPassword/Third}/types.d.ts +0 -0
  125. /package/dist/lib/components/Modals/Alert/components/{Auth/LostPassword → LostPassword/Third}/types.js +0 -0
package/dist/main.css CHANGED
@@ -1071,7 +1071,6 @@
1071
1071
  padding: 2px 10px;
1072
1072
  }
1073
1073
 
1074
-
1075
1074
  .KIT__Selector-module__animationSelectorGrowing___iR5t8 {
1076
1075
  animation: KIT__Selector-module__SelectorGrowing___ymeCM 0.3s forwards;
1077
1076
  }
@@ -1099,6 +1098,11 @@
1099
1098
  max-height: 0;
1100
1099
  }
1101
1100
  }
1101
+
1102
+ .KIT__Selector-module__rotate___HYMRK {
1103
+ transform: rotate(180deg);
1104
+ }
1105
+
1102
1106
  .KIT__HOCRequestLoader-module__loader___xFYfs {
1103
1107
  width: inherit;
1104
1108
  height: inherit;
@@ -1150,7 +1154,12 @@
1150
1154
 
1151
1155
  .KIT__CheckBox-module__checkboxWrapperBig___lQiT2 .KIT__CheckBox-module__checked___zbGvO .KIT__CheckBox-module__slider___SGVW0:before {
1152
1156
  /* 4 + 4 left and right */
1153
- transform: translateX(calc(var(--check-box-width) - (var(--check-box-slider-size) + var(--check-box-slider-padding) * 2)));
1157
+ transform: translateX(
1158
+ calc(
1159
+ var(--check-box-width) -
1160
+ (var(--check-box-slider-size) + var(--check-box-slider-padding) * 2)
1161
+ )
1162
+ );
1154
1163
  height: var(--check-box-slider-size);
1155
1164
  width: var(--check-box-slider-size);
1156
1165
  background-color: var(--base-0);
@@ -1166,6 +1175,25 @@
1166
1175
  width: 70%;
1167
1176
  margin-left: var(--indent-l);
1168
1177
  }
1178
+
1179
+ .KIT__CheckBox-module__checkbox___eH2PT {
1180
+ --size: 20px;
1181
+ border: 1px solid var(--checkbox-border-color);
1182
+ border-radius: var(--border-xs);
1183
+ height: 20px;
1184
+ height: var(--size);
1185
+ justify-content: center;
1186
+ width: 20px;
1187
+ width: var(--size);
1188
+ display: flex;
1189
+ align-items: center;
1190
+ }
1191
+
1192
+ .KIT__CheckBox-module__checkbox___eH2PT.KIT__CheckBox-module__checked___zbGvO {
1193
+ background-color: var(--checkbox-checked-background-color);
1194
+ border-color: var(--checkbox-checked-border-color);
1195
+ }
1196
+
1169
1197
  .KIT__Docs-module__checkbox___DCvmb {
1170
1198
  margin-bottom: var(--indent-l);
1171
1199
  color: var(--sign-up-modal-checkbox-color);
@@ -1247,35 +1275,35 @@
1247
1275
  width: 0;
1248
1276
  height: 0;
1249
1277
  }
1250
- .KIT__SignUp-module__wrapperSignUpModal___xR9cE {
1278
+ .KIT__SignUp-module__wrapperSignUpModal___rbBZ2 {
1251
1279
  display: flex;
1252
1280
  flex-direction: column;
1253
1281
  align-items: center;
1254
1282
  width: 100%;
1255
1283
  }
1256
1284
 
1257
- .KIT__SignUp-module__wrapperTitle___ozW8l {
1285
+ .KIT__SignUp-module__wrapperTitle___5QJvI {
1258
1286
  padding: var(--indent-l);
1259
1287
  }
1260
1288
 
1261
- .KIT__SignUp-module__textTitle___yNl9W {
1289
+ .KIT__SignUp-module__textTitle___GMbij {
1262
1290
  font-size: var(--font-size-l);
1263
1291
  line-height: 20px;
1264
1292
  color: var(--sign-up-modal-bonus-text-title-color);
1265
1293
  }
1266
1294
 
1267
- .KIT__SignUp-module__subText___RqU7d {
1295
+ .KIT__SignUp-module__subText___mEdDI {
1268
1296
  font-size: var(--font-size-s);
1269
1297
  color: var(--sign-up-modal-bonus-subtext-color);
1270
1298
  font-weight: 400;
1271
1299
  line-height: 18.2px;
1272
1300
  }
1273
1301
 
1274
- .KIT__SignUp-module__subText___RqU7d::first-letter {
1302
+ .KIT__SignUp-module__subText___mEdDI::first-letter {
1275
1303
  text-transform: uppercase;
1276
1304
  }
1277
1305
 
1278
- .KIT__SignUp-module__bonusText___Jir0o {
1306
+ .KIT__SignUp-module__bonusText___Bn8RW {
1279
1307
  font-size: var(--font-size-l);
1280
1308
  color: var(--sign-up-modal-bonus-text-color);
1281
1309
  padding: var(--indent-l);
@@ -1284,29 +1312,29 @@
1284
1312
  line-height: 26px;
1285
1313
  }
1286
1314
 
1287
- .KIT__SignUp-module__wrapperTabsAndForm___r8l1i {
1315
+ .KIT__SignUp-module__wrapperTabsAndForm___GosvT {
1288
1316
  width: 100%;
1289
1317
  }
1290
1318
 
1291
- .KIT__SignUp-module__zIndex___HX8Nv {
1319
+ .KIT__SignUp-module__zIndex___MU34S {
1292
1320
  position: relative;
1293
1321
  z-index: 3;
1294
1322
  }
1295
1323
 
1296
- .KIT__SignUp-module__tabs___yL_k1 {
1324
+ .KIT__SignUp-module__tabs___V1uaG {
1297
1325
  margin-bottom: calc(var(--indent-l) * 2);
1298
1326
  }
1299
1327
 
1300
- .KIT__SignUp-module__marginB___gJd7z {
1328
+ .KIT__SignUp-module__marginB___vy5fB {
1301
1329
  margin-bottom: var(--indent-l);
1302
1330
  }
1303
1331
 
1304
- .KIT__SignUp-module__checkbox___SgctZ {
1332
+ .KIT__SignUp-module__checkbox___VFwSz {
1305
1333
  margin-bottom: var(--indent-l);
1306
1334
  color: var(--sign-up-modal-checkbox-color);
1307
1335
  }
1308
1336
 
1309
- .KIT__SignUp-module__promoTitle___Qv0oq {
1337
+ .KIT__SignUp-module__promoTitle___mWsU7 {
1310
1338
  color: var(--sign-up-promo-code-color);
1311
1339
  font-size: var(--font-size-s);
1312
1340
 
@@ -1317,7 +1345,7 @@
1317
1345
  margin-bottom: 60px;
1318
1346
  }
1319
1347
 
1320
- .KIT__SignUp-module__promoTitle___Qv0oq .KIT__SignUp-module__promocodeSvg___ILvew {
1348
+ .KIT__SignUp-module__promoTitle___mWsU7 .KIT__SignUp-module__promocodeSvg___c8fQQ {
1321
1349
  --size: 24px;
1322
1350
  width: 24px;
1323
1351
  width: var(--size);
@@ -1325,24 +1353,24 @@
1325
1353
  height: var(--size);
1326
1354
  }
1327
1355
 
1328
- .KIT__SignUp-module__bigMargin___IHLl0 {
1356
+ .KIT__SignUp-module__bigMargin___hRtd8 {
1329
1357
  margin-bottom: 60px;
1330
1358
  }
1331
1359
 
1332
- .KIT__SignUp-module__wrapperReferralFailure___Nv53h {
1360
+ .KIT__SignUp-module__wrapperReferralFailure___rXbdd {
1333
1361
  overflow-y: auto;
1334
1362
  }
1335
1363
 
1336
- .KIT__SignUp-module__authButton___Zrxas {
1364
+ .KIT__SignUp-module__authButton___Is19k {
1337
1365
  height: 52px;
1338
1366
  }
1339
1367
 
1340
- .KIT__EmailSignUp-module__animationFadeIn___OYv3L {
1341
- animation: KIT__EmailSignUp-module__FadeIn___jKgXy 1s forwards;
1368
+ .KIT__EmailSignUp-module__animationFadeIn___oPHga {
1369
+ animation: KIT__EmailSignUp-module__FadeIn___VNdcc 1s forwards;
1342
1370
  width: 100%;
1343
1371
  }
1344
1372
 
1345
- @keyframes KIT__EmailSignUp-module__FadeIn___jKgXy {
1373
+ @keyframes KIT__EmailSignUp-module__FadeIn___VNdcc {
1346
1374
  0% {
1347
1375
  opacity: 0;
1348
1376
  }
@@ -1351,10 +1379,10 @@
1351
1379
  opacity: 1;
1352
1380
  }
1353
1381
  }
1354
- .KIT__OneClick-module__fullWidth___wdizL {
1382
+ .KIT__OneClick-module__fullWidth___Lg9pp {
1355
1383
  width: 100%;
1356
1384
  }
1357
- .KIT__OneClick-module__fullWidth___wdizL .KIT__OneClick-module__marginB___6BxYS {
1385
+ .KIT__OneClick-module__fullWidth___Lg9pp .KIT__OneClick-module__marginB___nYdpz {
1358
1386
  margin-bottom: var(--indent-l);
1359
1387
  }
1360
1388
  .KIT__Timer-module__wrapperTimer___yxeGk {
@@ -1712,7 +1740,7 @@
1712
1740
  color: var(--base-0);
1713
1741
  }
1714
1742
 
1715
- .KIT__SignUpTypeTwo-module__wrapperSignUp___aWAxM {
1743
+ .KIT__SignUpTypeTwo-module__wrapperSignUp___P12OH {
1716
1744
  --tab-color: rgba(255, 255, 255, 0.5);
1717
1745
  --active-tab-color: var(--base-0);
1718
1746
  --submit-button-color: var(--base-1000);
@@ -1739,7 +1767,7 @@
1739
1767
  box-shadow: var(--shadow);
1740
1768
  }
1741
1769
 
1742
- .KIT__SignUpTypeTwo-module__brown___CRS44 {
1770
+ .KIT__SignUpTypeTwo-module__brown___nwlXm {
1743
1771
  --background: linear-gradient(163.29deg, #4d0909 1.62%, #120202 99.51%);
1744
1772
  --border: 1px solid rgba(202, 113, 249, 1);
1745
1773
  --shadow: 1px 1px 27px 3px rgba(202, 113, 249, 1);
@@ -1753,7 +1781,7 @@
1753
1781
  --thumb-background: rgba(96, 105, 148, 1);
1754
1782
  }
1755
1783
 
1756
- .KIT__SignUpTypeTwo-module__purple___B7cKn {
1784
+ .KIT__SignUpTypeTwo-module__purple___OZUJU {
1757
1785
  --background: linear-gradient(180deg, #581ba4, #641261);
1758
1786
  --border: 1px solid rgb(212, 122, 255);
1759
1787
  --shadow: 0 4px 40px 5px rgba(205, 98, 255, 0.851);
@@ -1763,7 +1791,7 @@
1763
1791
  --phone-box-background: rgba(255, 255, 255, 0.071);
1764
1792
  }
1765
1793
 
1766
- .KIT__SignUpTypeTwo-module__green___CUtPI {
1794
+ .KIT__SignUpTypeTwo-module__green___VovSE {
1767
1795
  --background: linear-gradient(180deg, #055515 -10.46%, #031905 100%);
1768
1796
  --border: 4px solid;
1769
1797
  --shadow: initial;
@@ -1787,7 +1815,7 @@
1787
1815
  --input-focus-border-color: rgba(252, 216, 32, 1);
1788
1816
  }
1789
1817
 
1790
- .KIT__SignUpTypeTwo-module__yellow___fSYHc {
1818
+ .KIT__SignUpTypeTwo-module__yellow___KewoT {
1791
1819
  --background: linear-gradient(163.29deg, #4d0909 1.62%, #120202 99.51%);
1792
1820
  --border: 2px solid rgb(250, 255, 0);
1793
1821
  --tab-indicator-background: rgb(252, 216, 32);
@@ -1797,7 +1825,7 @@
1797
1825
  --currency-box-background: rgba(136, 33, 17, 1);
1798
1826
  }
1799
1827
 
1800
- .KIT__SignUpTypeTwo-module__darkBrown___U54IJ {
1828
+ .KIT__SignUpTypeTwo-module__darkBrown___irHpy {
1801
1829
  --background: rgb(18, 2, 2);
1802
1830
  --submit-button-background: linear-gradient(
1803
1831
  90deg,
@@ -1817,7 +1845,7 @@
1817
1845
  --tab-border-bottom: 2px solid rgba(252, 216, 32, 0.2);
1818
1846
  }
1819
1847
 
1820
- .KIT__SignUpTypeTwo-module__gray___ix0Zs {
1848
+ .KIT__SignUpTypeTwo-module__gray____6LQ_ {
1821
1849
  --background: rgba(25, 33, 44, 1);
1822
1850
  --border: 4px solid;
1823
1851
  -o-border-image: linear-gradient(180deg, #dcb692 20.52%, #4e3621 113.24%) 1;
@@ -1836,11 +1864,11 @@
1836
1864
  --input-focus-border-color: rgba(213, 163, 101, 1);
1837
1865
  }
1838
1866
 
1839
- .KIT__SignUpTypeTwo-module__gray___ix0Zs .KIT__SignUpTypeTwo-module__submitButton___aPLn7 {
1867
+ .KIT__SignUpTypeTwo-module__gray____6LQ_ .KIT__SignUpTypeTwo-module__submitButton___wN2jO {
1840
1868
  font-size: var(--font-size-l);
1841
1869
  }
1842
1870
 
1843
- .KIT__SignUpTypeTwo-module__pink___T1c13 {
1871
+ .KIT__SignUpTypeTwo-module__pink___cIZDT {
1844
1872
  --background: linear-gradient(181.81deg, #a21a4b -0.66%, #350717 98.3%);
1845
1873
  border: 4px solid;
1846
1874
  -o-border-image: linear-gradient(181.3deg, #ff6489 -1.04%, #ba405d 93.8%) 1;
@@ -1857,7 +1885,7 @@
1857
1885
  --phone-box-background: rgb(255, 255, 255, 0.1);
1858
1886
  }
1859
1887
 
1860
- .KIT__SignUpTypeTwo-module__silver___TF63d {
1888
+ .KIT__SignUpTypeTwo-module__silver___nM6se {
1861
1889
  --background: linear-gradient(183.6deg, #67615e 0.64%, #2b2b2b 97.12%);
1862
1890
  --input-filled-border-color: rgba(255, 161, 0, 0.5);
1863
1891
  --input-focus-border-color: rgba(255, 161, 0, 1);
@@ -1868,7 +1896,7 @@
1868
1896
  --currency-box-shadow: 1px 1px 8.6px 3px rgba(253, 249, 255, 0.5);
1869
1897
  }
1870
1898
 
1871
- .KIT__SignUpTypeTwo-module__silverTwo___EVriL {
1899
+ .KIT__SignUpTypeTwo-module__silverTwo___C1ffi {
1872
1900
  --background: rgba(25, 33, 44, 1);
1873
1901
  border: 4px solid;
1874
1902
  -o-border-image: linear-gradient(
@@ -1899,39 +1927,39 @@
1899
1927
  --track-background: var(--base-1000);
1900
1928
  }
1901
1929
 
1902
- .KIT__SignUpTypeTwo-module__contentArea___fA84v {
1930
+ .KIT__SignUpTypeTwo-module__contentArea___N15Kc {
1903
1931
  overflow-y: auto;
1904
1932
  width: 100%;
1905
1933
  }
1906
1934
 
1907
- .KIT__SignUpTypeTwo-module__contentArea___fA84v::-webkit-scrollbar {
1935
+ .KIT__SignUpTypeTwo-module__contentArea___N15Kc::-webkit-scrollbar {
1908
1936
  width: 9px;
1909
1937
  }
1910
1938
 
1911
- .KIT__SignUpTypeTwo-module__contentArea___fA84v::-webkit-scrollbar-thumb {
1939
+ .KIT__SignUpTypeTwo-module__contentArea___N15Kc::-webkit-scrollbar-thumb {
1912
1940
  background: var(--thumb-background);
1913
1941
  border-radius: 3px;
1914
1942
  }
1915
1943
 
1916
- .KIT__SignUpTypeTwo-module__contentArea___fA84v::-webkit-scrollbar-track {
1944
+ .KIT__SignUpTypeTwo-module__contentArea___N15Kc::-webkit-scrollbar-track {
1917
1945
  background: var(--track-background);
1918
1946
  }
1919
1947
 
1920
- .KIT__SignUpTypeTwo-module__tabs___Ya07h .KIT__SignUpTypeTwo-module__tab___pHssv {
1948
+ .KIT__SignUpTypeTwo-module__tabs___OWm0f .KIT__SignUpTypeTwo-module__tab___vTag3 {
1921
1949
  color: var(--tab-color);
1922
1950
  border-bottom: var(--tab-border-bottom);
1923
1951
  }
1924
1952
 
1925
- .KIT__SignUpTypeTwo-module__tabs___Ya07h .KIT__SignUpTypeTwo-module__activeTab___fcplL {
1953
+ .KIT__SignUpTypeTwo-module__tabs___OWm0f .KIT__SignUpTypeTwo-module__activeTab___n1d91 {
1926
1954
  color: var(--active-tab-color);
1927
1955
  }
1928
1956
 
1929
- .KIT__SignUpTypeTwo-module__tabs___Ya07h .KIT__SignUpTypeTwo-module__indicator___cElAW {
1957
+ .KIT__SignUpTypeTwo-module__tabs___OWm0f .KIT__SignUpTypeTwo-module__indicator___rlu4L {
1930
1958
  background-color: var(--tab-indicator-background);
1931
1959
  bottom: 1px;
1932
1960
  }
1933
1961
 
1934
- .KIT__SignUpTypeTwo-module__title___QjEOZ {
1962
+ .KIT__SignUpTypeTwo-module__title___or0dJ {
1935
1963
  background: rgba(255, 255, 255, 0.071);
1936
1964
  padding: var(--indent-l) var(--indent-xl);
1937
1965
  color: var(--base-0);
@@ -1940,21 +1968,21 @@
1940
1968
  line-height: 32px;
1941
1969
  }
1942
1970
 
1943
- .KIT__SignUpTypeTwo-module__bonusImage___b5O68 {
1971
+ .KIT__SignUpTypeTwo-module__bonusImage___vWDL5 {
1944
1972
  width: 100%;
1945
1973
  height: auto;
1946
1974
  padding: 0 var(--indent-xxl);
1947
1975
  }
1948
1976
 
1949
- .KIT__SignUpTypeTwo-module__content___jouQA {
1977
+ .KIT__SignUpTypeTwo-module__content___HGdVi {
1950
1978
  padding: 0 var(--indent-xl);
1951
1979
  }
1952
1980
 
1953
- .KIT__SignUpTypeTwo-module__content___jouQA .KIT__SignUpTypeTwo-module__tabs___Ya07h {
1981
+ .KIT__SignUpTypeTwo-module__content___HGdVi .KIT__SignUpTypeTwo-module__tabs___OWm0f {
1954
1982
  margin-bottom: var(--indent-xl);
1955
1983
  }
1956
1984
 
1957
- .KIT__SignUpTypeTwo-module__accountExist___mdB_c {
1985
+ .KIT__SignUpTypeTwo-module__accountExist___KSrLZ {
1958
1986
  color: rgba(255, 255, 255, 0.5);
1959
1987
  display: flex;
1960
1988
  align-items: center;
@@ -1964,12 +1992,12 @@
1964
1992
  font-size: var(--font-size-s);
1965
1993
  }
1966
1994
 
1967
- .KIT__SignUpTypeTwo-module__accountExist___mdB_c .KIT__SignUpTypeTwo-module__link___vs0oB {
1995
+ .KIT__SignUpTypeTwo-module__accountExist___KSrLZ .KIT__SignUpTypeTwo-module__link___KsiXA {
1968
1996
  -webkit-text-decoration: underline;
1969
1997
  text-decoration: underline;
1970
1998
  }
1971
1999
 
1972
- .KIT__SignUpTypeTwo-module__submitButton___aPLn7 {
2000
+ .KIT__SignUpTypeTwo-module__submitButton___wN2jO {
1973
2001
  background: var(--submit-button-background);
1974
2002
  color: var(--submit-button-color);
1975
2003
  align-items: center;
@@ -1982,7 +2010,7 @@
1982
2010
  font-size: var(--submit-button-font-size);
1983
2011
  }
1984
2012
 
1985
- .KIT__SignUpTypeTwo-module__signIn___MXDj9 {
2013
+ .KIT__SignUpTypeTwo-module__signIn_____9U7 {
1986
2014
  color: rgba(255, 255, 255, 0.702);
1987
2015
  text-align: center;
1988
2016
  margin: var(--indent-l) 0;
@@ -1991,11 +2019,11 @@
1991
2019
  align-items: center;
1992
2020
  }
1993
2021
 
1994
- .KIT__SignUpTypeTwo-module__signIn___MXDj9 span {
2022
+ .KIT__SignUpTypeTwo-module__signIn_____9U7 span {
1995
2023
  -webkit-text-decoration: underline;
1996
2024
  text-decoration: underline;
1997
2025
  }
1998
- .KIT__SignUpTypeTwo-module__box___sRM9k {
2026
+ .KIT__SignUpTypeTwo-module__box___N6uHq {
1999
2027
  --size: 24px;
2000
2028
  width: 24px;
2001
2029
  width: var(--size);
@@ -2010,12 +2038,12 @@
2010
2038
  justify-content: center;
2011
2039
  }
2012
2040
 
2013
- .KIT__SignUpTypeTwo-module__box___sRM9k:has(.KIT__SignUpTypeTwo-module__checkboxImg___kFnz7) {
2041
+ .KIT__SignUpTypeTwo-module__box___N6uHq:has(.KIT__SignUpTypeTwo-module__checkboxImg___boCKm) {
2014
2042
  border-color: transparent;
2015
2043
  background: rgba(255, 255, 255, 0.5);
2016
2044
  }
2017
2045
 
2018
- .KIT__SignUpTypeTwo-module__checkboxImg___kFnz7 {
2046
+ .KIT__SignUpTypeTwo-module__checkboxImg___boCKm {
2019
2047
  --size: 19px;
2020
2048
  width: 19px;
2021
2049
  width: var(--size);
@@ -2023,19 +2051,19 @@
2023
2051
  height: var(--size);
2024
2052
  }
2025
2053
 
2026
- .KIT__SignUpTypeTwo-module__terms___wVYfi {
2054
+ .KIT__SignUpTypeTwo-module__terms___QTFnM {
2027
2055
  margin-left: var(--indent-s);
2028
2056
  text-align: left;
2029
2057
  will-change: color;
2030
2058
  }
2031
2059
 
2032
- .KIT__SignUpTypeTwo-module__disable___sarcI {
2060
+ .KIT__SignUpTypeTwo-module__disable___XeIWi {
2033
2061
  opacity: 0.5;
2034
2062
  pointer-events: none;
2035
2063
  }
2036
2064
 
2037
2065
  @media (min-width: 768px) {
2038
- .KIT__SignUpTypeTwo-module__wrapperSignUp___aWAxM {
2066
+ .KIT__SignUpTypeTwo-module__wrapperSignUp___P12OH {
2039
2067
  height: auto;
2040
2068
  height: initial;
2041
2069
  width: 450px;
@@ -2048,7 +2076,7 @@
2048
2076
  }
2049
2077
  }
2050
2078
 
2051
- .KIT__SignUpTypeTwo-module__warning___v7bts {
2079
+ .KIT__SignUpTypeTwo-module__warning___SjkUi {
2052
2080
  display: flex;
2053
2081
  align-items: center;
2054
2082
  gap: var(--indent-s);
@@ -2059,11 +2087,11 @@
2059
2087
  border-radius: var(--border-xs);
2060
2088
  }
2061
2089
 
2062
- .KIT__SignUpTypeTwo-module__warning___v7bts .KIT__SignUpTypeTwo-module__warningText___SLQli {
2090
+ .KIT__SignUpTypeTwo-module__warning___SjkUi .KIT__SignUpTypeTwo-module__warningText___MV5_X {
2063
2091
  color: var(--base-0);
2064
2092
  }
2065
2093
 
2066
- .KIT__SignUpTypeTwo-module__errorColor___YHAJD {
2094
+ .KIT__SignUpTypeTwo-module__errorColor___PHTYc {
2067
2095
  color: var(--red-1000);
2068
2096
  }
2069
2097
 
@@ -2126,7 +2154,347 @@
2126
2154
  font-size: var(--font-size-m);
2127
2155
  }
2128
2156
 
2129
- .KIT__SignIn-module__content___fTb1F {
2157
+ .KIT__SignUpTypeThree-module__wrapperSignUpModal___ODeA9 {
2158
+ --semi-dark-gray: rgb(46, 58, 76);
2159
+ --third-primary-color: rgb(252, 212, 53);
2160
+ --third-submit-button-background: var(--third-primary-color);
2161
+ --third-submit-button-color: var(--semi-dark-gray);
2162
+ --tab-text-color: var(--semi-dark-gray);
2163
+ --input-background: rgb(244, 247, 250);
2164
+ --input-base-autofill-background-color: rgb(244, 247, 250);
2165
+ --input-border: none;
2166
+ --input-text-color: rgb(65, 82, 106);
2167
+ --input-label-text-color: rgb(65, 82, 106);
2168
+ --selector-item-background: rgb(244, 247, 250);
2169
+ --selector-border: none;
2170
+ --sign-up-modal-checkbox-color: var(--semi-dark-gray);
2171
+ --selector-main-bg-opened: rgb(244, 247, 250);
2172
+ --selector-color: rgb(65, 82, 106);
2173
+ --selector-drop-down-bg: rgb(244, 247, 250);
2174
+ --checkbox-border-color: rgb(166, 181, 201);
2175
+ --checkbox-checked-background-color: var(--third-primary-color);
2176
+ --checkbox-checked-border-color: var(--third-primary-color);
2177
+ --sign-up-modal-checkbox-color: var(--semi-dark-gray);
2178
+ --sign-up-modal-checkbox-terms-color: var(--third-primary-color);
2179
+ --PhoneInputCountrySelectArrow-color: rgb(179, 190, 205);
2180
+ --tab-indicator-bg: var(--third-primary-color);
2181
+
2182
+ padding: var(--indent-xs);
2183
+
2184
+ display: flex;
2185
+ flex-direction: column;
2186
+ align-items: center;
2187
+ justify-content: flex-end;
2188
+ }
2189
+
2190
+ .KIT__SignUpTypeThree-module__wrapperSignUpModal___ODeA9.KIT__SignUpTypeThree-module__purple___mpjtR {
2191
+ --third-primary-color: rgb(136, 103, 255);
2192
+ }
2193
+
2194
+ .KIT__SignUpTypeThree-module__wrapperSignUpModal___ODeA9.KIT__SignUpTypeThree-module__lightBlue___lIzub {
2195
+ --third-primary-color: rgb(102, 231, 248);
2196
+ }
2197
+
2198
+ .KIT__SignUpTypeThree-module__leftSide___AW27e {
2199
+ border-radius: 10px 10px 0 0;
2200
+ width: var(--full);
2201
+ }
2202
+
2203
+ .KIT__SignUpTypeThree-module__title___OcWJc {
2204
+ margin-bottom: var(--indent-m);
2205
+ font-size: var(--font-size-m);
2206
+ width: var(--full);
2207
+ font-weight: 700;
2208
+ color: var(--semi-dark-gray);
2209
+
2210
+ display: flex;
2211
+ align-items: center;
2212
+ justify-content: space-between;
2213
+ }
2214
+
2215
+ .KIT__SignUpTypeThree-module__wrapperTabsAndForm___AxVy9 {
2216
+ width: var(--full);
2217
+ }
2218
+
2219
+ .KIT__SignUpTypeThree-module__tabs___Hz3lI {
2220
+ display: flex;
2221
+ justify-content: space-between;
2222
+ align-items: center;
2223
+ margin-bottom: var(--indent-m);
2224
+ }
2225
+
2226
+ .KIT__SignUpTypeThree-module__tab___npzge {
2227
+ display: flex;
2228
+ justify-content: center;
2229
+ text-transform: capitalize;
2230
+ flex-shrink: initial;
2231
+ font-weight: 700;
2232
+ font-size: var(--font-size-xs);
2233
+ padding: var(--indent-m);
2234
+ }
2235
+
2236
+ .KIT__SignUpTypeThree-module__activeTab___Xn0un {
2237
+ color: var(--semi-dark-gray);
2238
+ border-bottom: 2px solid var(--third-primary-color);
2239
+ }
2240
+
2241
+ .KIT__SignUpTypeThree-module__dash___sHHY7 {
2242
+ height: 1px;
2243
+ background: rgb(244, 247, 250);
2244
+ margin-bottom: var(--indent-m);
2245
+ }
2246
+
2247
+ .KIT__SignUpTypeThree-module__subTitle___csy_m {
2248
+ font-size: 0.75rem;
2249
+ font-weight: 700;
2250
+ color: var(--semi-dark-gray);
2251
+ margin-bottom: var(--indent-m);
2252
+ }
2253
+
2254
+ .KIT__SignUpTypeThree-module__subTitle___csy_m span {
2255
+ color: var(--third-primary-color);
2256
+ }
2257
+
2258
+ .KIT__SignUpTypeThree-module__close___YVYpw {
2259
+ --size: 36px;
2260
+ width: 36px;
2261
+ width: var(--size);
2262
+ height: 36px;
2263
+ height: var(--size);
2264
+ border-radius: 10px;
2265
+ background-color: rgb(227, 234, 242);
2266
+
2267
+ display: flex;
2268
+ align-items: center;
2269
+ justify-content: center;
2270
+ }
2271
+
2272
+ .KIT__SignUpTypeThree-module__closeIcon___Hzx_D path {
2273
+ stroke: rgb(97, 113, 158);
2274
+ }
2275
+
2276
+ .KIT__SignUpTypeThree-module__banner___gbn4d {
2277
+ height: 160px;
2278
+ border-radius: 10px;
2279
+ margin-bottom: var(--indent-m);
2280
+ }
2281
+
2282
+ .KIT__SignUpTypeThree-module__rightSide___y6oAD {
2283
+ display: none;
2284
+ }
2285
+
2286
+ .KIT__SignUpTypeThree-module__marginBottom___UfDrh {
2287
+ margin-bottom: var(--indent-m);
2288
+ }
2289
+
2290
+ @media screen and (min-width: 768px) {
2291
+ .KIT__SignUpTypeThree-module__wrapperSignUpModal___ODeA9 {
2292
+ flex-direction: row;
2293
+ justify-content: center;
2294
+ align-items: start;
2295
+ padding: 0;
2296
+ padding: initial;
2297
+ height: 800px;
2298
+ margin: 0 auto;
2299
+ background-color: var(--base-0);
2300
+ margin: 0;
2301
+ margin: initial;
2302
+ border-radius: var(--border-l);
2303
+ }
2304
+
2305
+ .KIT__SignUpTypeThree-module__leftSide___AW27e {
2306
+ padding: var(--indent-xxl);
2307
+ width: 50%;
2308
+ height: var(--full);
2309
+ }
2310
+
2311
+ .KIT__SignUpTypeThree-module__contentSignIn___IxCVz {
2312
+ display: flex;
2313
+ flex-direction: column;
2314
+ }
2315
+
2316
+ .KIT__SignUpTypeThree-module__rightSide___y6oAD {
2317
+ width: 50%;
2318
+ height: 100%;
2319
+
2320
+ display: block;
2321
+
2322
+ border-radius: var(--border-l);
2323
+ overflow: hidden;
2324
+ position: relative;
2325
+
2326
+ cursor: pointer;
2327
+ }
2328
+
2329
+ .KIT__SignUpTypeThree-module__title___OcWJc {
2330
+ font-size: 1.3rem;
2331
+ }
2332
+
2333
+ .KIT__SignUpTypeThree-module__offer____hLiQ {
2334
+ font-weight: 700;
2335
+ text-transform: uppercase;
2336
+
2337
+ position: absolute;
2338
+ bottom: var(--indent-m);
2339
+ left: var(--indent-xxl);
2340
+ }
2341
+
2342
+ .KIT__SignUpTypeThree-module__primaryText___a87Bl {
2343
+ color: rgb(252, 212, 53);
2344
+ font-size: 2.4rem;
2345
+ }
2346
+
2347
+ .KIT__SignUpTypeThree-module__percents____MNtS {
2348
+ color: rgb(var(--welcome-banner--bonus-color));
2349
+ font-size: 6.8rem;
2350
+ }
2351
+
2352
+ .KIT__SignUpTypeThree-module__freespins___koK4u {
2353
+ color: rgb(var(--welcome-banner--bonus-color));
2354
+ font-size: 4rem;
2355
+ }
2356
+
2357
+ .KIT__SignUpTypeThree-module__close___YVYpw,
2358
+ .KIT__SignUpTypeThree-module__tab___npzge {
2359
+ cursor: pointer;
2360
+ }
2361
+
2362
+ .KIT__SignUpTypeThree-module__banner___gbn4d {
2363
+ display: none;
2364
+ }
2365
+ }
2366
+
2367
+ .KIT__Logos-module__wrapperLogo___jKLCC {
2368
+ --width: 100px;
2369
+ --height: calc(var(--height-48) - var(--indent-m) / 2);
2370
+
2371
+ width: 100px;
2372
+
2373
+ width: var(--width);
2374
+ height: var(--height);
2375
+ }
2376
+
2377
+ .KIT__Docs-module__checkbox___uJZLH {
2378
+ margin-bottom: var(--indent-l);
2379
+ color: var(--sign-up-modal-checkbox-color);
2380
+ font-weight: 700;
2381
+ }
2382
+
2383
+ .KIT__Docs-module__termsCheckbox___HOSyc {
2384
+ color: var(--sign-up-modal-checkbox-terms-color);
2385
+ }
2386
+
2387
+ .KIT__Docs-module__link___X_m_L {
2388
+ margin-left: calc(var(--indent-m) / 2);
2389
+ }
2390
+
2391
+ .KIT__Docs-module__termsCheckbox___HOSyc .KIT__Docs-module__link___X_m_L {
2392
+ -webkit-text-decoration: underline;
2393
+ text-decoration: underline;
2394
+ }
2395
+
2396
+ .KIT__EmailSignUp-module__animationFadeIn___OckPr {
2397
+ animation: KIT__EmailSignUp-module__FadeIn___MorJb 1s forwards;
2398
+ width: 100%;
2399
+ }
2400
+
2401
+ @keyframes KIT__EmailSignUp-module__FadeIn___MorJb {
2402
+ 0% {
2403
+ opacity: 0;
2404
+ }
2405
+
2406
+ 100% {
2407
+ opacity: 1;
2408
+ }
2409
+ }
2410
+
2411
+ .KIT__EmailSignUp-module__dropdown___oLLgN {
2412
+ top: calc(100% + var(--indent-xs));
2413
+ border-radius: var(--border-m);
2414
+ }
2415
+
2416
+ .KIT__EmailSignUp-module__selectorMainItem___uRa2a {
2417
+ border-radius: var(--border-m);
2418
+ font-size: var(--font-size-xs);
2419
+ font-weight: 700;
2420
+ }
2421
+
2422
+ .KIT__EmailSignUp-module__authButton___I50fH {
2423
+ --button-color-primary: var(--third-submit-button-background);
2424
+ --button-color-primary-text: var(--third-submit-button-color);
2425
+ border: none;
2426
+ --height: 40px;
2427
+ min-height: 40px;
2428
+ min-height: var(--height);
2429
+ max-height: 40px;
2430
+ max-height: var(--height);
2431
+ border-radius: var(--border-s);
2432
+ font-size: var(--font-size-xs);
2433
+ }
2434
+
2435
+ .KIT__PhoneSignUp-module__authButton___Vi1FD {
2436
+ --button-color-primary: var(--third-submit-button-background);
2437
+ --button-color-primary-text: var(--third-submit-button-color);
2438
+ border: none;
2439
+ --height: 40px;
2440
+ min-height: 40px;
2441
+ min-height: var(--height);
2442
+ max-height: 40px;
2443
+ max-height: var(--height);
2444
+ border-radius: var(--border-s);
2445
+ font-size: var(--font-size-xs);
2446
+ }
2447
+
2448
+ .KIT__PhoneSignUp-module__phoneInput___KOMRq {
2449
+ background: var(--third-input-background);
2450
+ color: var(--third-input-text-color)
2451
+ }
2452
+
2453
+ .KIT__PhoneSignUp-module__dropdown___qjZdi {
2454
+ top: calc(100% + var(--indent-xs));
2455
+ border-radius: var(--border-m);
2456
+ }
2457
+
2458
+ .KIT__PhoneSignUp-module__selectorMainItem___eTxcU {
2459
+ border-radius: var(--border-m);
2460
+ font-size: var(--font-size-xs);
2461
+ font-weight: 700;
2462
+ }
2463
+
2464
+ .KIT__OneClick-module__fullWidth___peNyb {
2465
+ width: 100%;
2466
+ }
2467
+
2468
+ .KIT__OneClick-module__fullWidth___peNyb .KIT__OneClick-module__marginB___icBAl {
2469
+ margin-bottom: var(--indent-l);
2470
+ }
2471
+
2472
+ .KIT__OneClick-module__authButton___C1lCE {
2473
+ --button-color-primary: var(--third-submit-button-background);
2474
+ --button-color-primary-text: var(--third-submit-button-color);
2475
+ border: none;
2476
+ --height: 40px;
2477
+ min-height: 40px;
2478
+ min-height: var(--height);
2479
+ max-height: 40px;
2480
+ max-height: var(--height);
2481
+ border-radius: var(--border-s);
2482
+ font-size: var(--font-size-xs);
2483
+ }
2484
+
2485
+ .KIT__OneClick-module__dropdown___PGZZL {
2486
+ top: calc(100% + var(--indent-xs));
2487
+ border-radius: var(--border-m);
2488
+ }
2489
+
2490
+ .KIT__OneClick-module__selectorMainItem___Z9e1m {
2491
+ border-radius: var(--border-m);
2492
+ font-size: var(--font-size-xs);
2493
+ font-weight: 700;
2494
+ }
2495
+
2496
+
2497
+ .KIT__SignIn-module__content___tU4ST {
2130
2498
  width: 100%;
2131
2499
  display: flex;
2132
2500
  flex-direction: column;
@@ -2134,35 +2502,35 @@
2134
2502
  overflow: hidden;
2135
2503
  }
2136
2504
 
2137
- .KIT__SignIn-module__wrapperTitle___lYD6o {
2505
+ .KIT__SignIn-module__wrapperTitle___oAaJ4 {
2138
2506
  padding: var(--indent-m);
2139
2507
  margin-bottom: var(--indent-m);
2140
2508
  }
2141
2509
 
2142
- .KIT__SignIn-module__content___fTb1F .KIT__SignIn-module__wrapperTabs___DX4sX {
2510
+ .KIT__SignIn-module__content___tU4ST .KIT__SignIn-module__wrapperTabs___Y69IT {
2143
2511
  width: calc(var(--full) - var(--indent-xxl));
2144
2512
  margin-bottom: var(--indent-m);
2145
2513
  border-bottom: 2px solid transparent;
2146
2514
  }
2147
2515
 
2148
- .KIT__SignIn-module__marginInput___DhXR2 {
2516
+ .KIT__SignIn-module__marginInput___bf0Um {
2149
2517
  margin-bottom: var(--indent-m);
2150
2518
  flex-shrink: 0;
2151
2519
  }
2152
2520
 
2153
- .KIT__SignIn-module__wrapperForms___XD4t9 {
2521
+ .KIT__SignIn-module__wrapperForms___Tahny {
2154
2522
  width: 100%;
2155
2523
  display: flex;
2156
2524
  }
2157
2525
 
2158
- .KIT__SignIn-module__content___fTb1F .KIT__SignIn-module__passwordField___JDN8l,
2159
- .KIT__SignIn-module__wrapperForm___QHw6_>div,
2160
- .KIT__SignIn-module__lostPsw___UZZrP {
2526
+ .KIT__SignIn-module__content___tU4ST .KIT__SignIn-module__passwordField___PMmjM,
2527
+ .KIT__SignIn-module__wrapperForm___n33_f>div,
2528
+ .KIT__SignIn-module__lostPsw___bqjdO {
2161
2529
  cursor: pointer;
2162
2530
  width: calc(var(--full) - var(--indent-xxl));
2163
2531
  }
2164
2532
 
2165
- .KIT__SignIn-module__wrapperForm___QHw6_ {
2533
+ .KIT__SignIn-module__wrapperForm___n33_f {
2166
2534
  flex-shrink: 0;
2167
2535
  width: 100%;
2168
2536
  display: flex;
@@ -2171,51 +2539,51 @@
2171
2539
  transition: 0.5s;
2172
2540
  }
2173
2541
 
2174
- .KIT__SignIn-module__formOne___AFk7Y {
2542
+ .KIT__SignIn-module__formOne___bOJlX {
2175
2543
  transform: translateX(0%);
2176
2544
  transition: 0.5s;
2177
2545
  }
2178
2546
 
2179
- .KIT__SignIn-module__formTwo___mCHk4 {
2547
+ .KIT__SignIn-module__formTwo___yFc2Y {
2180
2548
  transition: 0.5s;
2181
2549
  transform: translateX(-100%);
2182
2550
  }
2183
2551
 
2184
- .KIT__SignIn-module__formThree___NlshF {
2552
+ .KIT__SignIn-module__formThree___XJUgt {
2185
2553
  transition: 0.5s;
2186
2554
  transform: translateX(-200%);
2187
2555
  }
2188
2556
 
2189
- .KIT__SignIn-module__lostPsw___UZZrP {
2557
+ .KIT__SignIn-module__lostPsw___bqjdO {
2190
2558
  text-align: right;
2191
2559
  color: var(--sign-in-modal-lost-password-color);
2192
2560
  font-weight: 400;
2193
2561
  font-size: 12px;
2194
2562
  }
2195
2563
 
2196
- .KIT__SignIn-module__dash___C4wzA {
2564
+ .KIT__SignIn-module__dash___UQOxa {
2197
2565
  width: calc(var(--full) - var(--indent-xxl));
2198
2566
  margin-bottom: var(--indent-m);
2199
2567
  border-bottom: 2px solid var(--border-color-gray);
2200
2568
  }
2201
2569
 
2202
- .KIT__SignIn-module__content___fTb1F .KIT__SignIn-module__btn___zszwq {
2570
+ .KIT__SignIn-module__content___tU4ST .KIT__SignIn-module__btn___i75DV {
2203
2571
  width: calc(var(--full) - var(--indent-xxl));
2204
2572
  max-width: calc(var(--full) - var(--indent-xxl));
2205
2573
  min-width: calc(var(--full) - var(--indent-xxl));
2206
2574
  margin-bottom: var(--indent-m);
2207
2575
  }
2208
2576
 
2209
- .KIT__SignIn-module__btn___zszwq:last-child {
2577
+ .KIT__SignIn-module__btn___i75DV:last-child {
2210
2578
  margin-bottom: 0;
2211
2579
  }
2212
2580
 
2213
- .KIT__SignIn-module__reg___y_Vwi {
2581
+ .KIT__SignIn-module__reg___GSs_9 {
2214
2582
  opacity: 0.7;
2215
2583
  }
2216
2584
 
2217
2585
  @media (min-width: 768px) {
2218
- .KIT__SignIn-module__wrapperSignInModal___It11Z {
2586
+ .KIT__SignIn-module__wrapperSignInModal___TsZU2 {
2219
2587
  width: 500px;
2220
2588
  }
2221
2589
  }
@@ -2790,16 +3158,6 @@
2790
3158
  }
2791
3159
  }
2792
3160
 
2793
- .KIT__Logos-module__wrapperLogo___jKLCC {
2794
- --width: 100px;
2795
- --height: calc(var(--height-48) - var(--indent-m) / 2);
2796
-
2797
- width: 100px;
2798
-
2799
- width: var(--width);
2800
- height: var(--height);
2801
- }
2802
-
2803
3161
  .KIT__LandingLayoutTemplate-module__wrapperLanding___DVPCk {
2804
3162
  height: 100dvh;
2805
3163
  width: 100%;
@@ -2853,25 +3211,25 @@
2853
3211
  text-overflow: ellipsis;
2854
3212
  }
2855
3213
 
2856
- .KIT__LostPasswordEmailForm-module__wrapper___t1b_a {
3214
+ .KIT__LostPasswordEmailForm-module__wrapper___HXgef {
2857
3215
  display: flex;
2858
3216
  flex-direction: column;
2859
3217
  gap: var(--indent-m);
2860
3218
  }
2861
3219
 
2862
- .KIT__LostPasswordEmailForm-module__formInput___NTLA7 {
3220
+ .KIT__LostPasswordEmailForm-module__formInput____zKy1 {
2863
3221
  width: var(--full);
2864
3222
  }
2865
3223
 
2866
- .KIT__LostPasswordPhoneForm-module__formInput___dTNA5 {
3224
+ .KIT__LostPasswordPhoneForm-module__formInput___Yf4ru {
2867
3225
  margin-bottom: var(--indent-m);
2868
3226
  }
2869
3227
 
2870
- .KIT__LostPasswordPhoneForm-module__formPhoneWrapper___z2S8h {
3228
+ .KIT__LostPasswordPhoneForm-module__formPhoneWrapper___ivZsg {
2871
3229
  margin-bottom: var(--indent-xxl);
2872
3230
  }
2873
3231
 
2874
- .KIT__LostPassword-module__tabWrapper___VqdrX {
3232
+ .KIT__LostPassword-module__tabWrapper___M1C0O {
2875
3233
  width: var(--full);
2876
3234
  margin-bottom: var(--indent-m);
2877
3235
  }
@@ -2882,6 +3240,441 @@
2882
3240
  gap: var(--indent-m);
2883
3241
  }
2884
3242
 
3243
+ .KIT__SignInThird-module__wrapperReferralCopyContent___zr3MY {
3244
+ --semi-dark-gray: rgb(46, 58, 76);
3245
+ --third-primary-color: rgb(252, 212, 53);
3246
+ --third-submit-button-background: var(--third-primary-color);
3247
+ --third-submit-button-color: var(--semi-dark-gray);
3248
+ --tab-text-color: var(--semi-dark-gray);
3249
+ --input-background: rgb(244, 247, 250);
3250
+ --input-base-autofill-background-color: rgb(244, 247, 250);
3251
+ --input-border: none;
3252
+ --input-text-color: rgb(65, 82, 106);
3253
+ --input-label-text-color: rgb(65, 82, 106);
3254
+ --selector-item-background: rgb(244, 247, 250);
3255
+ --selector-border: none;
3256
+ --sign-up-modal-checkbox-color: var(--semi-dark-gray);
3257
+ --selector-main-bg-opened: rgb(244, 247, 250);
3258
+ --selector-color: rgb(65, 82, 106);
3259
+ --selector-drop-down-bg: rgb(244, 247, 250);
3260
+ --checkbox-border-color: rgb(166, 181, 201);
3261
+ --checkbox-checked-background-color: var(--third-primary-color);
3262
+ --checkbox-checked-border-color: var(--third-primary-color);
3263
+ --sign-up-modal-checkbox-color: var(--semi-dark-gray);
3264
+ --sign-up-modal-checkbox-terms-color: var(--third-primary-color);
3265
+ --PhoneInputCountrySelectArrow-color: rgb(179, 190, 205);
3266
+ --tab-indicator-bg: var(--third-primary-color);
3267
+ --sign-in-modal-lost-password-color: var(--third-primary-color);
3268
+ --register-color: var(--third-primary-color);
3269
+ --no-account-color: rgb(38, 61, 64);
3270
+
3271
+ padding: var(--indent-xs);
3272
+
3273
+ display: flex;
3274
+ flex-direction: column;
3275
+ align-items: center;
3276
+ justify-content: flex-end;
3277
+ }
3278
+
3279
+ .KIT__SignInThird-module__wrapperReferralCopyContent___zr3MY.KIT__SignInThird-module__purple___Kzfot {
3280
+ --third-primary-color: rgb(136, 103, 255);
3281
+ }
3282
+
3283
+ .KIT__SignInThird-module__wrapperReferralCopyContent___zr3MY.KIT__SignInThird-module__lightBlue___vdrK_ {
3284
+ --third-primary-color: rgb(102, 231, 248);
3285
+ }
3286
+
3287
+ .KIT__SignInThird-module__leftSide___gsLbK {
3288
+ border-radius: 10px 10px 0 0;
3289
+ width: var(--full);
3290
+ display: flex;
3291
+ flex-direction: column;
3292
+ align-items: center;
3293
+ }
3294
+
3295
+ .KIT__SignInThird-module__rightSide___PDqxP {
3296
+ display: none;
3297
+ }
3298
+
3299
+ .KIT__SignInThird-module__title___ETj0k {
3300
+ margin-bottom: var(--indent-m);
3301
+ font-size: var(--font-size-m);
3302
+ width: var(--full);
3303
+ font-weight: 700;
3304
+ color: var(--semi-dark-gray);
3305
+
3306
+ display: flex;
3307
+ align-items: center;
3308
+ justify-content: space-between;
3309
+ }
3310
+
3311
+ .KIT__SignInThird-module__leftSide___gsLbK .KIT__SignInThird-module__wrapperTabs___x1QCU {
3312
+ width: calc(var(--full) - var(--indent-xxl));
3313
+ margin-bottom: var(--indent-m);
3314
+ border-bottom: 2px solid transparent;
3315
+ }
3316
+
3317
+ .KIT__SignInThird-module__marginInput___Vb4fh {
3318
+ margin-bottom: var(--indent-m);
3319
+ flex-shrink: 0;
3320
+ }
3321
+
3322
+ .KIT__SignInThird-module__wrapperForms___GVrnY {
3323
+ width: 100%;
3324
+ display: flex;
3325
+ }
3326
+
3327
+ .KIT__SignInThird-module__leftSide___gsLbK .KIT__SignInThird-module__passwordField___kLrFq,
3328
+ .KIT__SignInThird-module__wrapperForm___JbR6w > div,
3329
+ .KIT__SignInThird-module__lostPsw___Fi5JF {
3330
+ cursor: pointer;
3331
+ width: var(--full);
3332
+ }
3333
+
3334
+ .KIT__SignInThird-module__leftSide___gsLbK .KIT__SignInThird-module__submitButton___nxlyt {
3335
+ width: var(--full);
3336
+ max-width: var(--full);
3337
+ min-width: var(--full);
3338
+ margin-bottom: var(--indent-m);
3339
+ }
3340
+
3341
+ .KIT__SignInThird-module__wrapperForm___JbR6w {
3342
+ flex-shrink: 0;
3343
+ width: 100%;
3344
+ display: flex;
3345
+ flex-direction: column;
3346
+ align-items: center;
3347
+ transition: 0.5s;
3348
+ }
3349
+
3350
+ .KIT__SignInThird-module__formOne___is_2h {
3351
+ transform: translateX(0%);
3352
+ transition: 0.5s;
3353
+ }
3354
+
3355
+ .KIT__SignInThird-module__formTwo___cQ1SL {
3356
+ transition: 0.5s;
3357
+ transform: translateX(-100%);
3358
+ }
3359
+
3360
+ .KIT__SignInThird-module__formThree___u078S {
3361
+ transition: 0.5s;
3362
+ transform: translateX(-200%);
3363
+ }
3364
+
3365
+ .KIT__SignInThird-module__lostPsw___Fi5JF {
3366
+ text-align: right;
3367
+ color: var(--sign-in-modal-lost-password-color);
3368
+ font-weight: 400;
3369
+ font-size: 12px;
3370
+ }
3371
+
3372
+ .KIT__SignInThird-module__banner___Xwdx6 {
3373
+ height: 160px;
3374
+ border-radius: 10px;
3375
+ margin-bottom: var(--indent-m);
3376
+ width: 100%;
3377
+ }
3378
+
3379
+ .KIT__SignInThird-module__submitButton___nxlyt {
3380
+ --button-color-primary: var(--third-submit-button-background);
3381
+ --button-color-primary-text: var(--third-submit-button-color);
3382
+ border: none;
3383
+ --height: 40px;
3384
+ min-height: 40px;
3385
+ min-height: var(--height);
3386
+ max-height: 40px;
3387
+ max-height: var(--height);
3388
+ border-radius: var(--border-s);
3389
+ font-size: var(--font-size-xs);
3390
+ }
3391
+
3392
+ .KIT__SignInThird-module__close___GbRf6 {
3393
+ --size: 36px;
3394
+ width: 36px;
3395
+ width: var(--size);
3396
+ height: 36px;
3397
+ height: var(--size);
3398
+ border-radius: 10px;
3399
+ background-color: rgb(227, 234, 242);
3400
+
3401
+ display: flex;
3402
+ align-items: center;
3403
+ justify-content: center;
3404
+ }
3405
+
3406
+ .KIT__SignInThird-module__closeIcon___aSPJ2 path {
3407
+ stroke: rgb(97, 113, 158);
3408
+ }
3409
+
3410
+ .KIT__SignInThird-module__noAccount___z3xZf {
3411
+ color: var(--no-account-color);
3412
+ font-weight: 700;
3413
+ }
3414
+
3415
+ .KIT__SignInThird-module__register___mrU2L {
3416
+ color: var(--register-color);
3417
+ -webkit-text-decoration: underline;
3418
+ text-decoration: underline;
3419
+ }
3420
+
3421
+ .KIT__SignInThird-module__row___Lsqbj {
3422
+ display: flex;
3423
+ font-size: var(--font-size-xs);
3424
+ gap: var(--indent-xs);
3425
+ }
3426
+
3427
+ .KIT__SignInThird-module__formTitle___AkwjL {
3428
+ font-size: var(--font-size-xs);
3429
+ margin-bottom: var(--indent-m);
3430
+ }
3431
+
3432
+ .KIT__SignInThird-module__tab___R7fUD {
3433
+ font-size: var(--font-size-xs);
3434
+ }
3435
+
3436
+ @media screen and (min-width: 768px) {
3437
+ .KIT__SignInThird-module__wrapperReferralCopyContent___zr3MY {
3438
+ flex-direction: row;
3439
+ justify-content: center;
3440
+ align-items: start;
3441
+ padding: 0;
3442
+ padding: initial;
3443
+ height: 800px;
3444
+ margin: 0 auto;
3445
+ background-color: var(--base-0);
3446
+ margin: 0;
3447
+ margin: initial;
3448
+ border-radius: var(--border-l);
3449
+ }
3450
+
3451
+ .KIT__SignInThird-module__rightSide___PDqxP {
3452
+ width: 50%;
3453
+ height: 100%;
3454
+
3455
+ display: block;
3456
+
3457
+ border-radius: var(--border-l);
3458
+ overflow: hidden;
3459
+ position: relative;
3460
+
3461
+ cursor: pointer;
3462
+ }
3463
+
3464
+ .KIT__SignInThird-module__leftSide___gsLbK {
3465
+ padding: var(--indent-xxl);
3466
+ width: 50%;
3467
+ height: var(--full);
3468
+ }
3469
+
3470
+ .KIT__SignInThird-module__banner___Xwdx6 {
3471
+ display: none;
3472
+ }
3473
+ }
3474
+
3475
+ .KIT__SignInThird-module__animationFadeIn___uAXSj {
3476
+ animation: KIT__SignInThird-module__FadeIn___voZUP 1s forwards;
3477
+ }
3478
+
3479
+ @keyframes KIT__SignInThird-module__FadeIn___voZUP {
3480
+ 0% {
3481
+ opacity: 0;
3482
+ }
3483
+
3484
+ 100% {
3485
+ opacity: 1;
3486
+ }
3487
+ }
3488
+
3489
+ .KIT__LostPasswordEmailForm-module__dash___A4AOy {
3490
+ width: var(--full);
3491
+ height: 1px;
3492
+ background: rgb(244, 247, 250);
3493
+ margin: var(--indent-m) 0;
3494
+ }
3495
+
3496
+ .KIT__LostPasswordEmailForm-module__submitButton___Ma5P0,
3497
+ .KIT__LostPasswordEmailForm-module__loginButton___YFQAN {
3498
+ --button-color-primary: var(--third-submit-button-background);
3499
+ --button-color-primary-text: var(--third-submit-button-color);
3500
+ border: none;
3501
+ --height: 40px;
3502
+ min-height: 40px;
3503
+ min-height: var(--height);
3504
+ max-height: 40px;
3505
+ max-height: var(--height);
3506
+ border-radius: var(--border-s);
3507
+ font-size: var(--font-size-xs);
3508
+ }
3509
+
3510
+ .KIT__LostPasswordEmailForm-module__loginButton___YFQAN {
3511
+ --button-color-primary: var(--third-login-button-in-recovery-background);
3512
+ }
3513
+
3514
+ .KIT__LostPasswordEmailForm-module__formTitle___kaLWK {
3515
+ color: var(--semi-dark-gray);
3516
+ font-size: 0.75rem;
3517
+ font-weight: 700;
3518
+ margin-bottom: var(--indent-m);
3519
+ }
3520
+ .KIT__LostPasswordEmailForm-module__marginBottom___I6pGv {
3521
+ margin-bottom: var(--indent-m);
3522
+ }
3523
+
3524
+
3525
+ .KIT__LostPasswordPhoneForm-module__phoneInput___Ms0SK svg path {
3526
+ stroke: rgb(var(--semi-blue-gray));
3527
+ }
3528
+
3529
+ .KIT__LostPasswordPhoneForm-module__dash___JvFfL {
3530
+ width: var(--full);
3531
+ height: 1px;
3532
+ background: rgb(244, 247, 250);
3533
+ margin: var(--indent-m) 0;
3534
+ }
3535
+
3536
+ .KIT__LostPasswordPhoneForm-module__resetButton___weXaU,
3537
+ .KIT__LostPasswordPhoneForm-module__loginButton___mDTLs,
3538
+ .KIT__LostPasswordPhoneForm-module__codeButton___IAkKo {
3539
+ --button-color-primary: var(--third-submit-button-background);
3540
+ --button-color-primary-text: var(--third-submit-button-color);
3541
+ border: none;
3542
+ --height: 40px;
3543
+ min-height: 40px;
3544
+ min-height: var(--height);
3545
+ max-height: 40px;
3546
+ max-height: var(--height);
3547
+ border-radius: var(--border-s);
3548
+ font-size: var(--font-size-xs);
3549
+ }
3550
+
3551
+ .KIT__LostPasswordPhoneForm-module__loginButton___mDTLs {
3552
+ --button-color-primary: var(--third-login-button-in-recovery-background);
3553
+ }
3554
+
3555
+ .KIT__LostPasswordPhoneForm-module__formTitle___bBPsu {
3556
+ color: var(--semi-dark-gray);
3557
+ font-size: 0.75rem;
3558
+ font-weight: 700;
3559
+ margin-bottom: var(--indent-m);
3560
+ }
3561
+
3562
+ .KIT__LostPasswordPhoneForm-module__marginBottom___tHdgP {
3563
+ margin-bottom: var(--indent-m);
3564
+ }
3565
+
3566
+ @media screen and (min-width: 768px) {
3567
+ .KIT__LostPasswordPhoneForm-module__resetButton___weXaU,
3568
+ .KIT__LostPasswordPhoneForm-module__loginButton___mDTLs {
3569
+ font-size: 0.9rem;
3570
+ }
3571
+ }
3572
+
3573
+ .KIT__LostPassword-module__wrapperLostPasswordThree___YIb4S {
3574
+ --third-primary-color: rgb(252, 212, 53);
3575
+ --third-submit-button-background: var(--third-primary-color);
3576
+ --third-submit-button-color: rgb(46, 58, 76);
3577
+ --tab-text-color: rgb(46, 58, 76);
3578
+ --input-background: rgb(244, 247, 250);
3579
+ --input-base-autofill-background-color: rgb(244, 247, 250);
3580
+ --input-border: none;
3581
+ --input-text-color: rgb(65, 82, 106);
3582
+ --input-label-text-color: rgb(65, 82, 106);
3583
+ --selector-item-background: rgb(244, 247, 250);
3584
+ --selector-border: none;
3585
+ --sign-up-modal-checkbox-color: rgb(46, 58, 76);
3586
+ --selector-main-bg-opened: rgb(244, 247, 250);
3587
+ --selector-color: rgb(65, 82, 106);
3588
+ --selector-drop-down-bg: rgb(244, 247, 250);
3589
+ --checkbox-border-color: rgb(166, 181, 201);
3590
+ --checkbox-checked-background-color: var(--third-primary-color);
3591
+ --checkbox-checked-border-color: var(--third-primary-color);
3592
+ --sign-up-modal-checkbox-color: rgb(46, 58, 76);
3593
+ --sign-up-modal-checkbox-terms-color: var(--third-primary-color);
3594
+ --PhoneInputCountrySelectArrow-color: rgb(179, 190, 205);
3595
+ --tab-indicator-bg: var(--third-primary-color);
3596
+ --sign-in-modal-lost-password-color: var(--third-primary-color);
3597
+ --register-color: var(--third-primary-color);
3598
+ --no-account-color: rgb(38, 61, 64);
3599
+ --third-login-button-in-recovery-background: rgb(235, 240, 246);
3600
+ --semi-dark-gray: rgb(46, 58, 76);
3601
+ }
3602
+
3603
+ .KIT__LostPassword-module__wrapperLostPasswordThree___YIb4S.KIT__LostPassword-module__purple___i99YC {
3604
+ --third-primary-color: rgb(136, 103, 255);
3605
+ }
3606
+
3607
+ .KIT__LostPassword-module__wrapperLostPasswordThree___YIb4S.KIT__LostPassword-module__lightBlue____e3Wb {
3608
+ --third-primary-color: rgb(102, 231, 248);
3609
+ }
3610
+
3611
+ .KIT__LostPassword-module__title___OAQqL {
3612
+ margin-bottom: var(--indent-m);
3613
+ font-size: var(--font-size-m);
3614
+ width: var(--full);
3615
+ font-weight: 700;
3616
+ color: rgb(46, 58, 76);
3617
+
3618
+ display: flex;
3619
+ align-items: center;
3620
+ justify-content: space-between;
3621
+ }
3622
+
3623
+ .KIT__LostPassword-module__tab___hvMJE {
3624
+ font-size: var(--font-size-xs);
3625
+ }
3626
+
3627
+ .KIT__LostPassword-module__dash___ZPegi {
3628
+ width: var(--full);
3629
+ height: 1px;
3630
+ background: rgb(244, 247, 250);
3631
+ margin: var(--indent-m) 0;
3632
+ }
3633
+
3634
+ .KIT__LostPassword-module__marginB___YIyPk {
3635
+ width: var(--full);
3636
+ margin-bottom: var(--indent-m);
3637
+ }
3638
+
3639
+ .KIT__LostPassword-module__close___RA8KC {
3640
+ --size: 36px;
3641
+ width: 36px;
3642
+ width: var(--size);
3643
+ height: 36px;
3644
+ height: var(--size);
3645
+ border-radius: 10px;
3646
+ background-color: rgb(227, 234, 242);
3647
+
3648
+ display: flex;
3649
+ align-items: center;
3650
+ justify-content: center;
3651
+ }
3652
+
3653
+ .KIT__LostPassword-module__closeIcon___odBJ2 path {
3654
+ stroke: rgb(97, 113, 158);
3655
+ }
3656
+ .KIT__LostPassword-module__tab___hvMJE {
3657
+ display: flex;
3658
+ justify-content: center;
3659
+ text-transform: capitalize;
3660
+ flex-shrink: initial;
3661
+ width: 50%;
3662
+ font-weight: 700;
3663
+ font-size: 0.75rem;
3664
+ padding: var(--indent-m);
3665
+ }
3666
+
3667
+
3668
+ @media screen and (min-width: 768px) {
3669
+ .KIT__LostPassword-module__wrapperLostPassword___BHplJ {
3670
+ justify-content: center;
3671
+ }
3672
+
3673
+ .KIT__LostPassword-module__title___OAQqL {
3674
+ font-size: var(--font-size-m);
3675
+ }
3676
+ }
3677
+
2885
3678
  .KIT__Alert-module__wrapperModal___lOle6 {
2886
3679
  width: 100%;
2887
3680
  height: 100%;
@@ -2975,12 +3768,31 @@
2975
3768
  border-radius: initial;
2976
3769
  }
2977
3770
 
3771
+ .KIT__Alert-module__thirdAuth___cnfqR {
3772
+ background: var(--third-modal-layout-background-color);
3773
+ }
3774
+
3775
+ @media screen and (min-width: 768px) {
3776
+
3777
+ .KIT__Alert-module__thirdAuth___cnfqR {
3778
+ max-width: 960px;
3779
+ }
3780
+ }
3781
+
3782
+ .KIT__Alert-module__thirdLostpassword___JMYIW {
3783
+ background: var(--third-modal-layout-background-color);
3784
+ }
3785
+
2978
3786
  @media (min-width: 768px) {
2979
3787
  .KIT__Alert-module__wrapperModal___lOle6 {
2980
3788
  display: flex;
2981
3789
  justify-content: center;
2982
3790
  align-items: center;
2983
3791
  }
3792
+
3793
+ .KIT__Alert-module__maxWidth___h6QQZ {
3794
+ max-width: 960px;
3795
+ }
2984
3796
  }
2985
3797
 
2986
3798
  @keyframes KIT__Alert-module__MoveToUp___vOjgR {
@@ -4040,34 +4852,6 @@
4040
4852
  flex-direction: column;
4041
4853
  }
4042
4854
 
4043
- .KIT__Wheel-module__item2___GeqJL {
4044
- transform: translate(-50%, -50%) rotate(45deg);
4045
- }
4046
-
4047
- .KIT__Wheel-module__item3___IvSJ3 {
4048
- transform: translate(-50%, -50%) rotate(90deg);
4049
- }
4050
-
4051
- .KIT__Wheel-module__item4___q3RZY {
4052
- transform: translate(-50%, -50%) rotate(135deg);
4053
- }
4054
-
4055
- .KIT__Wheel-module__item5___w7Jwh {
4056
- transform: translate(-50%, -50%) rotate(180deg);
4057
- }
4058
-
4059
- .KIT__Wheel-module__item6___rycKo {
4060
- transform: translate(-50%, -50%) rotate(225deg);
4061
- }
4062
-
4063
- .KIT__Wheel-module__item7___jfKrL {
4064
- transform: translate(-50%, -50%) rotate(270deg);
4065
- }
4066
-
4067
- .KIT__Wheel-module__item8___En5Ei {
4068
- transform: translate(-50%, -50%) rotate(315deg);
4069
- }
4070
-
4071
4855
  .KIT__Wheel-module__spinBtn___AngbQ {
4072
4856
  --size: 80px;
4073
4857
  --indent: 50%;
@@ -5497,11 +6281,22 @@
5497
6281
 
5498
6282
  :root {
5499
6283
  /* First */
5500
- --sign-up-promo-code-color: color-mix(in oklab, var(--base-0, red) 50%, transparent 50%);
6284
+ /* First */
6285
+ --sign-up-promo-code-color: color-mix(
6286
+ in oklab,
6287
+ var(--base-0, red) 50%,
6288
+ transparent 50%
6289
+ );
5501
6290
  /*Notice: it equals 255,255,255,0.5*/
5502
6291
  --sign-up-modal-checkbox-color: var(--base-0, white);
6292
+
5503
6293
  /* Second */
6294
+
6295
+ /* Third */
6296
+ --third-primary-color: rgb(252,212,53);
6297
+ --third-modal-layout-background-color: var(--base-0);
5504
6298
  }
6299
+
5505
6300
  :root {
5506
6301
  --selector-border: var(--input-border);
5507
6302
  --selector-border-radius: var(--input-border-radius);