.successmsgcontainer {
    width: 100%;
    height: 100%;
    /*  background: #3c5077;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.successmsgbtn {
    padding: 10px 60px;
    background: #fff;
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    border-radius: 30px;
}

.successmsgpopup {
    width: 400px;
    /*background: #e6f4e9;*/
    background: #f0eaf1;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%)scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}

.successmsgopenpopup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%,-50%)scale(0.7);
}

.successmsgpopup img {
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.successmsgpopup h2 {
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.successmsgpopup button {
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    /*background: #6fd649;*/
    background: #5b325f;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

#overlaycqb, #successmsgcontainer1, #ErrorDisplay, #overlaycqbSaveDraft, #successmsgcontainerNoReload {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 1500; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}
