:root {
  --color-primary: #242424;
  --color-secondary: #BA0F30;
  --color-tertiary: #FF6A18;
  --color-onfire: #FF6A18;
  --color-love: #FF4081;
  --color-tala: #CBA135;
  --color-direct: #1D4E89;
  --font-poppins: 'poppins';
}

/* Color Theme Red */
.color-theme-red {
  color: var(--color-secondary);
}

/* changing the table row hover background color */
tr:hover {
  background-color: #fbf9fa;
}

/* Loading Spinner */
.loader {
  width: 64px;
  height: 64px;
  position: relative;
  background-image:
    linear-gradient(#FFF 16px, transparent 0),
    linear-gradient(var(--color-secondary) 16px, transparent 0),
    linear-gradient(var(--color-secondary) 16px, transparent 0),
    linear-gradient(#FFF 16px, transparent 0);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: left top, left bottom, right top, right bottom;
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  0% {
    width: 64px;
    height: 64px;
    transform: rotate(0deg)
  }

  50% {
    width: 30px;
    height: 30px;
    transform: rotate(180deg)
  }

  100% {
    width: 64px;
    height: 64px;
    transform: rotate(360deg)
  }
}

/* End Loading Spinner */


/* Loading Wave */
.loader-wave {
  position: relative;
  display: flex;
  margin: 5px 0;
}

.loader-wave:before,
.loader-wave:after {
  content: '';
  width: 12px;
  height: 12px;
  display: inline-block;
  position: relative;
  margin: 0 6px;
  border-radius: 50%;
  color: gray;
  background: currentColor;
  box-shadow: 50px 0;
  animation: left 1s infinite ease-in-out;
}

.loader-wave:after {
  color: var(--color-secondary);
  animation: right 1.1s infinite ease-in-out;
}


@keyframes right {

  0%,
  100% {
    transform: translateY(-10px)
  }

  50% {
    transform: translateY(10px)
  }
}

@keyframes left {

  0%,
  100% {
    transform: translateY(10px)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* End Loading Wave */