/* Please ❤ this if you like it! */
/* Follow Me https://codepen.io/designfenix */
/**/
/**/
/**/
/**/
/**/
/**/
/**/

/*Dialog Styles*/
dialog {
	padding: 1rem 2rem;
	background: white;
	max-width: 400px;
	padding-top: 2rem;
	border-radius: 20px;
	border: 0;
	box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
	animation: fadeIn 1s ease both;
	&::backdrop {
		animation: fadeIn 1s ease both;
		background: rgb(255 255 255 / 40%);
		z-index: 2;
		backdrop-filter: blur(20px);
	}
	.x {
		filter: grayscale(1);
		border: none;
		background: none;
		position: absolute;
		top: 15px;
		right: 10px;
		transition: ease filter, transform 0.3s;
		cursor: pointer;
		transform-origin: center;
		&:hover {
			filter: grayscale(0);
			transform: scale(1.1);
		}
	}
	h2 {
		font-weight: 600;
		font-size: 2rem;
		padding-bottom: 1rem;
	}
	p {
		font-size: 1rem;
		line-height: 1.3rem;
		padding: 0.5rem 0;
		a {
			&:visited {
				color: rgb(var(--vs-primary));
			}
		}
	}
}

.modal-container-body {
	padding: 24px 32px 51px;
	overflow-y: auto;
}

/*General Styles*/
// button.primary {
// 	display: inline-block;
// 	font-size: 0.8rem;
// 	color: #fff !important;
// 	background: rgb(var(--vs-primary) / 100%);
// 	padding: 13px 25px;
// 	border-radius: 17px;
// 	transition: background-color 0.1s ease;
// 	box-sizing: border-box;
// 	transition: all 0.25s ease;
// 	border: 0;
// 	cursor: pointer;
// 	box-shadow: 0 10px 20px -10px rgb(var(--vs-primary) / 50%);
// 	&:hover {
// 		box-shadow: 0 20px 20px -10px rgb(var(--vs-primary) / 50%);
// 		transform: translateY(-5px);
// 	}
// }

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
