.loading {
	display: none;
	margin: 8px;
	width: 2rem;
	height: 2rem;
	border-width: 0.3rem;
	border-radius: 50%;
	border: 4px solid #ddd;
	border-top-color: #3270FC;
	animation: loading 1s linear infinite;
}

@keyframes loading {
	to {
	  transform: rotate(360deg);
	}
}

.custom-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 999;
}

.custom-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #212231;
	color: #b1b2cb !important;
	padding: 0;
	width: 400px;
	max-width: 90%;
	font-size: 1.125em;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	word-wrap: break-word;
	z-index: 1000;
}

.custom-modal-header {
	padding: 15px;
	border-bottom: 0;
	position: relative;
}

.custom-modal-header h2{
	font-size: 14px !important;
	color: #b1b2cb !important;
}

.custom-modal-header button {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #fff !important;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	outline: none !important;
}

.custom-modal-header button:hover {
	color: #b1b2cb;
}

.custom-modal-body {
	padding: 20px;
	font-size: 14px !important;
	color: #b1b2cb;
}

.custom-modal-body a{
	color:#fff;
}

.custom-modal-footer {
	padding: 10px;
	border-top: 0;
	background: #28293e;
	display: flex;
	justify-content: center;
}

.custom-modal-footer button {
	padding: 10px 20px;
	color: #fff;
	background: #313348;
	border: none;
	cursor: pointer;
	font-size: 1em;
	border-radius: 4px;
}

.custom-modal-footer button:hover {
	background: #45475c;
}

.custom-modal-overlay.active {
	display: block;
}