  .myAlert-ButtonContainer {
    padding: 30px 0 30px;
    text-align: center;
    position: relative;
}

.myAlert-Button {
    background: #3c69c3;
    background-image: -webkit-linear-gradient(top, #3c69c3, #274580);
    background-image: -moz-linear-gradient(top, #3c69c3, #274580);
    background-image: -ms-linear-gradient(top, #3c69c3, #274580);
    background-image: -o-linear-gradient(top, #3c69c3, #274580);
    background-image: linear-gradient(to bottom, #3c69c3, #274580);
    -webkit-border-radius: 5;
    -moz-border-radius: 5;
    border-radius: 5px;
    text-shadow: 2px 2px 3px #242424;
    -webkit-box-shadow: 1px 2px 3px #666666;
    -moz-box-shadow: 1px 2px 3px #666666;
    box-shadow: 1px 2px 3px #666666;
    font-family: Georgia;
    color: #ffffff !important;
    font-size: 19px;
    padding: 10px 25px 10px 25px;
    text-decoration: none;
    cursor: pointer;
}

.myAlert-Button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: .5s;
}

.myAlert-Button span:after {
    content: '>>';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.myAlert-Button:hover span {
    padding-right: 25px;
}

.myAlert-Button:hover span:after {
    opacity: 1;
    right: -10px;
}

.myAlert-Button:hover {
    background: #6387cf;
    background-image: -webkit-linear-gradient(top, #6387cf, #365eb0);
    background-image: -moz-linear-gradient(top, #6387cf, #365eb0);
    background-image: -ms-linear-gradient(top, #6387cf, #365eb0);
    background-image: -o-linear-gradient(top, #6387cf, #365eb0);
    background-image: linear-gradient(to bottom, #6387cf, #365eb0);
    text-decoration: none;
}