#enkac {
    display: none;
}

.modal-enkac {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.85); /* Black w/ opacity */

}

.modal-content-enkac {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    margin-top: 10%;
    padding: 0px;
    border: 1px solid #888;
    width: 60%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 15px;
    overflow: hidden;
}

.enkac-coupon-wrap {

    width: 60%;
    margin: auto;
    margin-top: 20px;

}


.enkac-coupon-but {
    float: left;
    width: 20%;
    font-size: 35px;
    padding: 10px;
    background-color: #E19200;
    margin-left: 10px;
    margin-top: 20px;
    color: #fff;

}

.modal-show-animatetop {
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.5s;
    animation-name: animatetop;
    animation-duration: 0.5s
}

.modal-show-animateleft {
    -webkit-animation-name: animateleft;
    -webkit-animation-duration: 0.5s;
    animation-name: animateleft;
    animation-duration: 0.5s
}

.modal-header-enkac {
    padding: 20px;
    background-color: #498AF3;
    color: white;
    text-align: center;
}

.modal-body-enkac {
    padding: 25px;
    text-align: center;
    padding-top: 10px;
    min-height: 150px;
}

.enkac-button {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 400;
    line-height: 20px;
    padding: 10px 15px;
    font-style: normal;
    background-color: #29BFAD;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    border: none;
    outline: none;
    box-shadow: none !important;
    -webkit-transition: all .35s ease-in-out !important;
    -moz-transition: all .35s ease-in-out !important;
    -ms-transition: all .35s ease-in-out !important;
    -o-transition: all .35s ease-in-out !important;
    transition: all .35s ease-in-out !important;
    cursor: pointer !important;
}

.enkac-button:hover {
    color: #fff;
    background-color: #282828;
}

.enkac-button:focus {
    color: #fff;
    background-color: #282828;
}

@media only screen and (max-width: 500px) {
    .modal-content-enkac {
        width: 80%;
    }
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@-webkit-keyframes animateleft {
    from {
        left: -600px;
        opacity: 0
    }
    to {
        left: 0;
        opacity: 1
    }
}

@keyframes animateleft {
    from {
        left: -600px;
        opacity: 0
    }
    to {
        left: 0;
        opacity: 1
    }
}

