Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .overlay {
  2. &__container,
  3. &__container-light {
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. position: fixed;
  9. z-index: $overlayZ;
  10. background: $defaultBackground;
  11. }
  12. &__container-light {
  13. @include transparentBg($defaultBackground, 0.7);
  14. }
  15. &__content {
  16. position: absolute;
  17. margin: 0 auto;
  18. height: 100%;
  19. width: 56%;
  20. left: 50%;
  21. @include transform(translateX(-50%));
  22. &_bottom {
  23. position: absolute;
  24. bottom: 0;
  25. }
  26. }
  27. &__policy {
  28. position: absolute;
  29. bottom: 24px;
  30. width: 100%;
  31. }
  32. &__spinner-container {
  33. display: flex;
  34. width: 100%;
  35. height: 100%;
  36. justify-content: center;
  37. align-items: center;
  38. }
  39. }