/* Remodal Bonus
   ========================================================================== */


.bonus {
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 0px;
    padding: 2px;
    height: 55px;
    transform: translate3d(0, 0, 0);
    color: #2b2e38;
    background-image: none;
    background: #f1f1f1;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.bonus {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10000;
}


.bonus::before { 
    content: " ";
    width: 140px;
    height: 110px;
    background-image: url(../images/bonus_never_miss.png);
    position: absolute;
    top: -120px;
    right: 30px;
}


.bonus .bonus_title{
    background-color: #ffb307;
    background-image: url(../images/bonus_email.png);
    line-height: 55px;
    width: 100%;
    border: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #644603;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
}

.bonus .bonus_title:focus {
        outline: none;
}


.bonus h1 {
    font-size: 16px;
    color: #555555;
    font-weight: 100;
    font-family: sans-serif;
    text-transform: none;
    margin-top: 20px;
    margin-bottom: 0px;
}


.bonus form input {
    font-size: 22px;
    padding: 10px;
    border-radius: 4px;
    border: none;
    min-width: 85%;
    margin: 10px;
    text-align: center;
}

.bonus p {
    font-size: 14px;
    text-transform: uppercase;
    color: #999999;
    margin: 10px;
}

.bonus .btn-confirm {
    color: #fff;
    background: #e74c3c;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 150px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0;
}


@media only screen and (min-width: 426px) {
  .bonus {
    max-width: 370px;
    margin-right: 40px;
  }
}