.cs-popup.outer{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
}
.cs-popup .inner{
    background: #fff;
    padding: 20px;
    margin: 10px;
    width: 100%;
    max-width: 650px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px rgba(19,66,107,0.4);
}
.cs-popup p {
    font-weight: 500;
}
.cs-popup .close-btn {
    text-align: center;
}
.cs-popup span {
    background: rgba(19,66,107,1);
    color: white;
    font-weight: bold;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
}

.cs-info-alert{
	padding: 20px;
	border-radius: 5px;
	color: #0c5460;
	background-color: #d1ecf1;
	border-color: #bee5eb;
}
