/*----comeback---*/

.comeback_layout {
    display: none;
    position: fixed;
    color: #000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20000000;
    background: rgba(0, 0, 0, .75);
    overflow-y: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none
}

.comeback_layout::-webkit-scrollbar {
    width: 0
}

.comeback_wrapper {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.comeback_container {
    background: rgb(191, 10, 48);
    background: linear-gradient(180deg, rgba(191, 10, 48, 1) 0%, rgba(0, 56, 147, 1) 50%, rgba(255, 255, 255, 1) 100%);
    padding: 25px;
    margin-top: 2%;
    text-align: center;
    border: 3px solid #e10006;
    border-radius: 30px;
}

.comeback_container h1 {
    font-size: 23px
}

.comeback_container .form-group {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    text-align: left
}

.pulse-button {
    font-family: arial;
    padding: .75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    display: inline-block;
    color: #f5f6fd;
    position: relative;
    border: none;
    box-shadow: 0 0 0 0 #4cc474;
    background-color: #279548;
    cursor: pointer;
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
    }
}

.pulse-button:hover {
    color: rgb(220, 255, 217);
}

.comeback_img {
    width: 80%;
    margin: 10px auto;
    max-width: 200px
}

.form-horizontal span {
    display: block;
    margin: 20px 0
}

.comeback_close {
    float: right;
    cursor: pointer
}

#comeback p {
    font-size: 18px
}

@media (max-width:700px) {
    .comeback_container h1 {
        line-height: 18px;
        font-size: 16px
    }
    .comeback_img {
        margin: 5px auto
    }
    .comeback_container p {
        line-height: 14px;
        font-size: 15px
    }
    .comeback_container {
        padding: 5px
    }
}