
/* MODAL */
.hl_modal {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #f9690e;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 3px 3px 0 #c74f05;
    z-index: 3;
    text-align: center;
    opacity: .5;
    transform: translate( 0%, 150% );
    transition: all .5s cubic-bezier(0,-.14,.62,-.36);
}
.hl_modal.hl_visible {
    opacity: 1;
    transform: translate( 0%, 0% );
}

.hl_close-modal {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    font-size: 1em;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5;
    background: none;
    transition: all .25s;
}
.hl_close-modal:hover {
    background: none;
    color: #c74f05;
}

.hl_modal .hl_title {
    color: #ffffff;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 0;
}

.hl_modal p {
    margin: 0;
}

.hl_coupon-code {
    display: inline-block;
    padding: 6px 10px;
    border: none;
    color: #333333;
    background: #ffffff;
    box-shadow: 2px 2px 0 #666666;
    border-radius: 3px;
    margin-top: 15px;
    text-align: center;
}

/* NOTICE */
.hl_notice {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: #f9690e;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 12px;
    border-radius: 5px;
    box-shadow: 3px 3px 0 #c74f05;
    z-index: 3;
    opacity: .5;
    transform: translate( 0%, 150% );
    transition: all .5s cubic-bezier(0,-.14,.62,-.36);
}

.hl_notice.hl_visible {
    opacity: 1;
    transform: translate( 0%, 0% );
}

.hl_notice p {
    margin: 0;
}

.hl_icon {
    position: absolute;
    z-index: 999;
    opacity: 1;
}

/* SHAKES FOR ALL ICONS */
/* main class for all icons - add shake effect */

.hl_icon:active {
    animation: shake 1.3s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0%   { transform: translate(1px, 1px) rotate(0deg); }
    10%  { transform: translate(-1px, -2px) rotate(-1deg); }
    20%  { transform: translate(-3px, 0px) rotate(1deg); }
    30%  { transform: translate(3px, 2px) rotate(0deg); }
    40%  { transform: translate(1px, -1px) rotate(1deg); }
    50%  { transform: translate(-1px, 2px) rotate(-1deg); }
    60%  { transform: translate(-3px, 1px) rotate(0deg); }
    70%  { transform: translate(3px, 1px) rotate(-1deg); }
    80%  { transform: translate(-1px, -1px) rotate(1deg); }
    90%  { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}