@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

.modal-loading {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-text {
  font-family: 'Nunito Sans', sans-serif !important;
  color: #fff;
  font-weight: 700;
  margin-top: 24px;
  font-size: 16px;
  text-align: center;
}

.modal-text:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 900ms infinite;      
  animation: ellipsis steps(4, end) 900ms infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}

.modal-loading .modal-loader {
  z-index: 3000;
  background: conic-gradient(from 180deg at 50% 50%, #21CDD8 0deg, rgba(217, 217, 217, 0) 360deg);;
  display: block;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	-webkit-animation: pace-spinner 800ms linear infinite;
	-moz-animation: pace-spinner 800ms linear infinite;
	-ms-animation: pace-spinner 800ms linear infinite;
	-o-animation: pace-spinner 800ms linear infinite;
	animation: pace-spinner 800ms linear infinite;
  margin-bottom: 24px;
}

.modal-loading .modal-loader:after {
  background: #7f7f7f;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes ellipsis { to { width: 16px; } }
@-moz-keyframes ellipsis { to { width: 16px; } }
@-o-keyframes ellipsis { to { width: 16px; } }
@-ms-keyframes ellipsis { to { width: 16px; } }
@keyframes ellipsis { to { width: 16px; } }

@-webkit-keyframes pace-spinner {
	0% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
	100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}
@-moz-keyframes pace-spinner {
	0% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
	100% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
}
@-o-keyframes pace-spinner {
	0% { -o-transform: rotate(360deg); transform: rotate(360deg); }
	100% { -o-transform: rotate(0deg); transform: rotate(0deg); }
}
@-ms-keyframes pace-spinner {
	0% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
	100% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
}
@keyframes pace-spinner {
	0% { transform: rotate(360deg); transform: rotate(360deg); }
	100% { transform: rotate(0deg); transform: rotate(0deg); }
}