.custom-alerts {
    position: absolute;
    bottom: 3%;
    z-index: 99999;
    right: 3%;
}

.modalDialog {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.modalDialog:target {
    opacity: 1;
    pointer-events: auto;
}

/* .modalDialog > div {
    width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
} */

.close {

	color: #ffffff;
	line-height: 25px;
	position: absolute;
	right: 12px;
	text-align: center;
	top: 10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	/* -webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000; */
}

.close:hover { color: #ff0000; }


.select-outlet-dropdown:hover .select-outlet-dropdown-menu {
    display: block;
}
.spinner {
    display: block;
    margin: auto;
    height: 1em;
    width: 1em;
    border: 6px solid rgb(253, 138, 243);
    border-top-color: rgba(217, 6, 168, 0.8);
    border-radius: 50%;
    animation: rotation 0.6s infinite linear;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

.zigzag-left {
    background: linear-gradient(-137deg, #ffffff 6px, transparent 0) 0 5px, linear-gradient(320deg, #ffffff 5px, #f3f4f6 0) 0 5px;
    background-color: #ffffff;
    background-position: left bottom;
    background-repeat: repeat-y;
    background-size: 10px 10px;
}

.zigzag-right {
    background: linear-gradient(137deg, #ffffff 6px, transparent 0) 0 5px, linear-gradient(-320deg, #ffffff 5px, #f3f4f6 0) 0 5px;
    background-color: #ffffff;
    background-position: right bottom;
    background-repeat: repeat-y;
    background-size: 10px 10px;
}
