#redirectMask {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1000;
    opacity: 0.5;    
    display:none;
}

#redirectBox {
    display:none;
    position: fixed;
    width: 730px;
    height: 315px;
    background-color: white;
    z-index: 1001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#redirectClose {
    width: 17px;
    margin-top: 15px;
    margin-left: 397px;
    cursor: pointer;
    position: absolute;
}

#redirectIcon {
    width:130px;
    margin-top: 25px;
}

#redirectTitle {
    font-family: "Roboto", "Open Sans",sans-serif, Arial;
    font-size: 27px;
    color: #cf0072;
    margin-top: 5px;
}

#redirectMessage {
    font-family: "Roboto", "Open Sans",sans-serif, Arial;
    font-size: 19px;
    color: #002a53;
    margin-top: 20px;
}

#redirectButtonPanel {
    width: 70%;
    margin-top: 35px;
    margin-left: 110px;
}

.redirectButton {
    width: 235px;
    height: 39px;
    border-radius: 50px;
    padding: 8px;
    background-color: #002a54;
    color: white;
    font-family: "Roboto", "Open Sans",sans-serif, Arial;
    font-size: 16px;
    cursor: pointer;
}

    .redirectButton:hover {
        background-color: #305a84;
    }


#redirectButtonDemo {
    float:left;
}

#redirectButtonRep {
    float: right;
}

@media screen and (max-width: 500px) {
    #redirectBox {        
        width: 343px;
        height: 300px;        
        border-radius: 10px;
    }

    #redirectTitle {        
        font-size: 22px;        
        margin-top: 5px;
    }

    #redirectMessage {        
        font-size: 14px;        
        margin-top: 20px;
    }

    #redirectButtonPanel {
        width: 96%;
        margin-top: 35px;
        margin-left: 2%;
    }

    .redirectButton {
        width: 160px;
        height: 39px;        
        padding-top: 12px;        
        font-size: 11px;        
    }

    #redirectClose {
        margin-left: 205px;
    }
    }