.m-styled-title {
	color: var(--color-black);
	font-size: 30px;
	text-align: center;
	margin: 20px auto 40px;

}
.m-styled-title:after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    margin: 2px auto 0;
    line-height: auto;
    background: linear-gradient(90deg, #000FFF 0%, #00FFFF 100%);
}

@media screen and (max-width: 479px) {
	.m-styled-title {
		font-size: 20px;
		line-height: 26px;
	}
}

.m-color-primary {
	color: #000FFF;
}
.m-color-secondary {
	color: #00FFFF;
}
.m-color-white {
	color: #FFF;
}
.m-color-green {
	color: #00ff00;
}
.m-color-dark {
	color: #000;
}

/* ----------
	BADGE */
	
.badge {
	position: absolute;
	top: 0;
	left: 0;
	padding: 12px;
	margin: -10px -10px;
	background-color: #000;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	max-height: 40px;
	aspect-ratio: 1/1;
}
.badge img {
	max-width: 25px;
	height: auto;
}
.badge.badge-primary {
	background-color: #000FFF;
}
.badge.badge-secondary {
	background-color: #00FFFF;
}
.badge.badge-white {
	background-color: #fff;
}
.badge.badge-green {
  background-color: #00ff00;
}
.badge.badge-dark {
  background-color: #000;
}

.modal-container {
	background-color: #0000006e;
	height: 	100%;
	width: 		100%;
	position: 	fixed;
	top: 		0;
	left:		0;
	display: 	none;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(50px);
	/* overflow: 	hidden; */
	z-index: 	99;
}
.modal-container.active {
	display: 	block;
}
.modal-inner {
	background-color: #fff;
	min-height: 200px;
	height: auto;
	width: 80%;
	position: relative;
	border-radius: 24px;
	display: 	flex;
}
.modal-close {
	background-color: #000;
	width: 		48px;
	height: 	48px;
	border-radius: 50%;
	position: 	absolute;
	top: 		-20px;
	right: 		-20px;
	display: 	flex;
	justify-content: center;
	align-items: center;
	cursor: 	pointer;
}
.modal-close:before {
	content: "\2715";
	font-size: 18px;
	color: #fff;
}
.modal-box {

}