.Loading {
  display: block;
  margin: 30px auto;
  width: 60px;
  height: 30px;
  padding: 10px;
  text-align: center; }

.LoadingDots {
  margin: 0px 15px;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--Primary);
  color: var(--Primary);
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: .5s; }

.LoadingDots::before, .LoadingDots::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0px; }

.LoadingDots::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--Primary);
  color: #666666;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s; }

.LoadingDots::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--Primary);
  color: var(--Primary);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1s; }

@keyframes dotFlashing {
  0% {
    background-color: var(--Primary); }
  50%, 100% {
    background-color: var(--PrimaryAlt); } }

.ModalRedesign {
  position: fixed;
  cursor: default;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0px auto;
  padding: 40px;
  background-color: var(--Modal);
  border: solid 1px var(--ModalBorder);
  text-align: left;
  border-radius: 15px;
  z-index: 999998; }
  .ModalRedesign .ButtonIconClose {
    position: absolute;
    z-index: 22;
    top: 8px;
    right: 8px;
    display: block;
    width: 30px;
    height: 30px;
    padding: 3px;
    border-radius: 5px;
    cursor: pointer; }
    .ModalRedesign .ButtonIconClose:hover {
      background-color: rgba(49, 45, 77, 0.7); }
  .ModalRedesign__Content {
    height: 100%;
    position: relative; }

.toast__link {
  color: #fff;
  text-decoration: underline; }

