
button {
    outline: none;
}
.succeed
{
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid transparent;
    -moz-border-image: -moz-linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%);
    -webkit-border-image: -webkit-linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%);
    border-image: linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%);
    border-image-slice: 1;
    margin: 40px 0;
    display: table;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    font-weight: 700;
    color: #9e9e9e;
    font-weight: 300;
}
.succeed:hover
{
    text-decoration: none;
    color: #fff;
    background-image: linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%);
}

.success-modal {
    position: absolute;
    display: none;
    width: 500px;
    height: 360px;
    background-color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.success-modal.visible {
    display: block;
}
.success-modal .container-1 {
    position: absolute;
    top: -60%;
    left: -10%;
    /* transform: translate(-50%, -50%); */
    height: 100%;
}
.success-modal svg {
    transform: scale(0.4);
}
.success-modal > div {
    height: 180px;
    text-align: center
}
.success-modal .anim {
    /*background-color: #3fc59d;*/
    background: #ff9e7f; /* Old browsers */
    background: -moz-linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%);
    position: relative;
}
.success-modal .info {
    padding: 30px;
    color: #3b475e;
}
.success-modal .info .title {
    font-weight: 800;
}
.success-modal .info .text {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
}
.success-modal .info .continue {
    margin-top: 20px;
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    font-size: 13px;
    color: #fff;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#585dc9+0,7db9e8+100,7db9e8+100 */
    background: #ff9e7f; /* Old browsers */
    background: -moz-linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(136deg, #ff9e7f 0%, #ffc86d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#585dc9', endColorstr='#7db9e8',GradientType=1 ); /* IE6-9 */
    cursor: pointer;
}
