		/*Modal Container*/
		.modal {
			background-color: rgba(0, 0, 0, 0.15);
			position: fixed;
			z-index: 9999;
			height: 100vh;
			width: 100%;
			cursor: pointer;
			top: 0;
			left: 0;
			bottom: 0;
			right: 0;
		}
		.modal-background-close {
			width: 100%;
			height: 100%;
		}
		.modal-contain {
			position: absolute;
			display: flex;
			align-items: center;
			justify-content: center;
			height: 100%;
			width: fit-content;
			z-index: 9999;
			left: 0;
			right: 0;
			top: 0;
			flex-direction: column;
		}
		.modal-label {
			background-color: rgb(231,148,45);
			margin: auto;
			border-radius: 11px 11px 0 0;
			padding: 15px 25px;
			color: white;
			display: flex;
			position: relative;
		}
		.modal-button {
			width: fit-content;
			background-color: white;
			border-radius: 22px;
			box-shadow: 0 2px 3px rgba(0,0,0,0.4);
			margin: 0 15px;
			padding: 7px 25px;
			cursor: pointer;
			color: black;
			transition: 0.3s;
		}
		.modal-button:hover {
			transform: translateY(-3px);
			transition: 0.3s;
		}
		.modal h6 {
			font-size: 11px; margin-bottom: 7px; font-weight: 600;
		}