@charset "UTF-8";

.custom-alert {
    display: none;
    position: fixed;
    top: 15%;
    left: 85%;
    border-radius: 6px;
    transform: translate(-50%, -50%);
    background-color: #00D15E;
	color: white;
    padding: 30px;
	border: 1px solid #ccc;
    /* color: black; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 418px;
    max-width: 500px;
	font-size: 16px;
	font-weight: bold;
}

.error-alert{
	background-color: #FF004d !important;
}



/* Styling for the close button */
.custom-alert .close {
    position: absolute;
    right: -1px;
    font-size: 22px;
    color: white; /* Set your desired color */
	top: -10px;
}

/* confirmation alert CSS is here */

.tooltip-inner {
	max-width: 300px;
	text-align: left; /* Adjust the width as needed */
}

.custom-alert-conf {
	display: none;
	position: fixed;
	top: 10%;
	left: 30%;
	left: 30%;
	border-radius: 6px;
	background-color: white;
	color: black;
	z-index: 100020;
	width: 32%
}

.custom-alert-conf {
	position: fixed;
	top: 50%;
	left: 50%;
	border-radius: 6px;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 20px;
	border: 1px solid #ccc;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	text-align: center;
}


