/* dummy css */

html{
	scroll-behavior: smooth;
}
body {
	font-family: 'Roboto',serif;
}

@property --p {
	syntax: '<number>';
	inherits: true;
	initial-value: 1;
}

.pie {
	--p: 20;
	--b: 40px;
	--c: #4A3AFF;
	--w: 250px;
	color: #2867B2;
	font-weight: 900;
	width: var(--w);
	aspect-ratio: 1/1;
	position: relative;
	display: inline-grid;
	margin: 5px;
	place-content: center;
	font-size: 35px;
	font-family: sans-serif;
	border-radius: 50%;
}

.swal-text{
	color: #2E0249;
}
.swal-title{
	color: #2E0249;
}
.swal-button{
	border-radius: 30px;
}
.swal-button--danger{
	background-color: #fff !important;
	border: 1px solid #4A3AFF;
	color: #4A3AFF;
	outline: none !important;
	&:focus{
		outline: none !important;
		box-shadow: none!important;
	}
}
.swal-button--cancel{
	background-color:#4A3AFF;
	color: #fff;
	border: 1px solid #4A3AFF;
	outline: none !important;
	&:hover{
		background-color:#5b4AFF !important;
	}
	&:active{
		background-color:#5b4AFF !important;
	}
	&:focus{
		outline: none !important;
		box-shadow: none!important;
	}
}

.pie:before,
.pie:after {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.pie:before {
	inset: 0;
	background: radial-gradient(farthest-side, var(--c) 98%, #0000) top/var(--b) var(--b) no-repeat,
	conic-gradient(var(--c) calc(var(--p) * 1%), #0000 0);
	-webkit-mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #000 calc(100% - var(--b)));
	mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #000 calc(100% - var(--b)));
	background-color: #D5CCFF;

}

.pie:after {
	inset: calc(50% - var(--b) / 2);
	background: var(--c);
	transform: rotate(calc(var(--p) * 3.6deg - 90deg)) translate(calc(var(--w) / 2 - 50%));
}

.animate {
	animation: p 1s .5s both;
}

.no-round:before {
	background-size: 0 0, auto;
}

.no-round:after {
	content: none;
}

@keyframes p {
	from {
		--p: 0;
	}
}
