.modal-content.modal-offer {
    background: #ccc;
    border: 0;
    width: 300px;
    height: 300px;
    margin: auto;
    overflow: hidden;
    box-shadow: 0 1em 4em #182528d1;
    position: relative;
    border-radius: 2rem;
}
.modal-content.modal-offer .scrach {
    position: absolute;
    z-index: 9;
    top: 0
}
.modal-content.modal-offer img.offer_watch {
    width: 170px;
}
#offers_modal .btn-close,
#imageModal .btn-close {
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 20px;
    opacity: 1;
}
.modal-content.modal-offer .scrach_contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: #444 url(../images/coupon/scrach-card-bg.svg);
    background-size: cover;
    padding: 50px;
    height: 300px;
    pointer-events: none;
}
.modal-content.modal-offer .help_text_title {
    font-size: 1em;
    text-align: center;
}
.modal-content.modal-offer .help_text {
    font-size: 12px;
}
.confetti {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    animation: explode 1s ease-out forwards;
}
.toast-body {
    flex: 1;
}
@keyframes explode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) rotate(720deg) scale(0.8);
        opacity: 0;
    }
}
.zoom-bounce {
    overflow: hidden;
}
/* Modal dialog starts hidden and scaled down */
.zoom-bounce .modal-dialog {
    animation: zoomBounceIn 0.5s forwards ease-out;
}
/* When modal is shown, animate dialog */
.zoom-bounce.show .modal-dialog {
    animation: zoomBounceIn 0.5s forwards ease-out;
}
/* Keyframe animation: 0.5 -> 1.1 -> 1 */
@keyframes zoomBounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.watchcoupon {
    max-width: 400px;
    margin: auto;
}
.coupon-box {
    border: 4px dotted #333;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    margin: 15px auto;
    position: relative;
    background: #1b2023;
    max-width: 310px;
}
#couponCode {
    color: #ccc;
    flex: 1;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 2px;
}
.scissors {
    position: absolute;
    top: -16px;
    left: 20px;
    padding: 6px;
}
#copyBtn2 {
    background: transparent;
    border: 0;
    color: white;
}
#copyBtn {
    background: transparent;
    position: absolute;
    bottom: 46px;
    left: 108px;
    width: 80px;
    height: 40px;
    color: #cc621e;
    border: 2px solid #ff7a267d;
    border-radius: 2rem;
}