#instant_push_container {
    display: block;
    position: fixed;
    top: -12px;
    left: 8px;
    width: 520px;
    min-height: 160px;
    height: fit-content;
    background-color:#FFFFFF;
    border-radius: 8px;
    z-index: 10000001;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border: 1px solid #CCC;
    transition: all 0.4s ease-out, opacity 0.2s linear, top 0.2s linear;
    opacity: 0;
    transform: scale(0.8);
}

#instant_push_container.instant_visible {
    opacity: 1;
    top: 10px;
    left: 8px;
    transform: scale(1);
}

.instant_push_yes {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #FFFFFF;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-weight: 600;
    color: #fff;
    background-color: #7952b3;
    border-color: #7952b3;
}

.instant_push_no {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #FFFFFF;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-weight: 600;
    color: #fff;
    background-color: #bcb8c2;
    border-color: #c5c2c9;
    margin-left: 8px;
}

.instant_push_yes:hover{
    background-color: #8860c5;
}

#instant_push_modalbg {
    width: 100%;
    height: 100%;
    background-color: #575757;
    position: fixed;
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: all 0.2s;
    z-index: 10000000;
    visibility: hidden;
}

#instant_push_modalbg.instant_visible {
    opacity: 0.35;
    visibility: visible;
    display: block;
}

p.instant_push_maintext {
    margin-bottom: 22px;
}

.instant_push_state {
    display: none;
}

.instant_push_state.instant_visible {
    display: block;
}