.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

.preloader {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  background-color: var(--background-color);
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-around;
  align-items: center;
  z-index: 1100;
}
body {
  overflow-x: hidden;
}
[data-card-height="cover"] {
  min-height: 90vh;
}
.text-left {
  text-align: left !important;
}
.rec-item-wrapper {
  flex-direction: column;
}
.w-30 {
  width: 30%;
}
.w-20 {
  width: 20%;
}
.w-15 {
  width: 15%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.mr-2 {
  margin-right: 10px;
}
.ml-2 {
  margin-left: 10px;
}
