.ehwc-campaign-icon {
    position: absolute;
    z-index: 1000;
}
#ehwc-modal-form {
    display: none;
    position: fixed;
    z-index: 2777;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
}
.ehwc-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff; /* White background */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Box shadow for a subtle effect */
}
#ehwc-modal-form .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #888;
}
#ehwc-modal-form .close:hover {
    color: #333;
}
#ehwc-modal-form .modal-header {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
#ehwc-modal-form .modal-custom-content {
    text-align: center;
    margin-bottom: 15px;
}
input#ehwc_egg_hunter_accept_terms_cond {
    width: 3% !important;
}
.ehwc_egghunter_checkbox {
    display: flex;
    align-items: center;
}
#ehwc-modal-form .form-group input {
    margin-bottom: 12px;
    width: 94%;
    padding: 10px 15px;
}
#ehwc-modal-form .form-group label {
    width: 100%;
    text-align: left !important;
}
.ehwc_egghunter_checkbox p {
    margin-bottom: 6px;
    margin-top: 5px;
}
div#ehwc-message-wrapper {
    padding: 15px;
}
button#ehwc_egghunter_submit {
    margin-top: 24px;
    width: 100%;
    background: #1e788c;
    border: none;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    cursor: pointer;
}
#ehwc-modal-form .modal-body-inner {
    padding: 15px;
}
#ehwc-modal-form .modal-footer {
  padding: 15px;
}
.ehwc-campaign-icon img {
    width: auto;
    height: 120px !important;
    z-index: 9999;
    animation: mtbounce 2s ease infinite;
    cursor: pointer;
}
.ehwc_winner_code_wrapper {
    background-color: #1e788c;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    border-radius: 5px;
}
.ehwc_winner_code_value {
    padding: 20px;
}
.ehwc-message-wrapper {
    padding: 15px 15px;
}
@keyframes mtbounce {
    0% {
        transform: scale(0.95);
        filter: drop-shadow(-1px -1px -1px);
    }
    25% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px crimson);
    }
    40% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 1px crimson);
    }
    100% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 1px crimson);
    }
}