@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

@import "./_guest-user.css";
@Import "./_typography.css";
@Import "./_button.css";

/* list  */
/* 1. spacing classes  */

p {
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* global classess */

.h-100 {
  height: 100%;
}

.cursor-pointer {
  cursor: pointer;
  ;
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background-color: #C7C8C7;
}

.container-padding {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* spacing classes */

.m--1 {
  margin: 4px;
}

.mt--1 {
  margin-top: 4px;
}

.mb--1 {
  margin-bottom: 4px;
}

.ml--1 {
  margin-left: 4px;
}

.mr--1 {
  margin-right: 4px;
}

.mx--1 {
  margin-left: 4px;
  margin-right: 4px;
}

.my--1 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #ffffff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #bfbfbf transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
 
.loader-wrapper {
    height: 100%;
    position: fixed;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: 0;
    background: #00000061;
    z-index: 1;
}