#wpadminbar li#wp-admin-bar-lws_optimize_clearcache > div,
#wpadminbar li#wp-admin-bar-lws_optimize_clearopcache > div,
#wpadminbar li#wp-admin-bar-lws_optimize_clearcache_html > div,
#wpadminbar li#wp-admin-bar-lws_optimize_clearcache_jscss > div,
#wpadminbar li#wp-admin-bar-lws_optimize_clearcache_page > div {
    cursor: pointer;
}

#wpadminbar li#wp-admin-bar-lws_optimize_clearcache:hover,
#wpadminbar li#wp-admin-bar-lws_optimize_clearopcache:hover,
#wpadminbar li#wp-admin-bar-lws_optimize_clearcache_html:hover,
#wpadminbar li#wp-admin-bar-lws_optimize_clearcache_jscss:hover,
#wpadminbar li#wp-admin-bar-lws_optimize_clearcache_page:hover {
    cursor: pointer;
    background-color: #2271B1;
}

#wpadminbar li#wp-admin-bar-lws_optimize_managecache span.lws_optimize_admin_icon:before {
    content: url('../images/plugin_lws_optimize.svg');
    position: relative;
    float: left;
    speak: never;
    padding: 4px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: none !important;
    margin-right: 6px;
}

/* MODALE (NEW POPUP) */
#modal_popup div.container-modal {
    text-align: center;
}

#modal_popup div.container-modal p {
    color: #333;
    font-size: 16px;
}

#modal_popup div.container-modal button {
    color: #fff;
    font-weight: 600;
    border: 0;
    border-radius: 3px;
    padding: 7px 15px;
    margin: 10px 5px;
    background-color: rgb(0, 105, 92);
}

.success-animation {
    margin: 10px auto 30px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
    top: 5px;
    right: 5px;
    margin: 0 auto !important;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: #fff;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.error-animation,
.warning-animation {
    display: inline-block;
    position: relative;
    width: 150px;
}

.red-stroke {
    stroke: #FF6245;
}

.yellow-stroke {
    stroke: #FFC107;
}

.circular circle.path {
    stroke-dasharray: 330;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    opacity: 0.4;
    animation: 0.7s draw-circle ease-out;
}

.cross {
    stroke-width: 6.25;
    stroke-linecap: round;
    position: absolute;
    top: 54px;
    left: 54px;
    width: 40px;
    height: 40px;
}

.cross .first-line {
    animation: 0.7s draw-first-line ease-out;
    animation-delay: -0.25s;
}

.cross .second-line {
    animation: 0.7s draw-second-line ease-out;
}

.alert-sign {
    stroke-width: 6.25;
    stroke-linecap: round;
    position: absolute;
    top: 40px;
    left: 68px;
    width: 15px;
    height: 70px;
    animation: 0.5s alert-sign-bounce cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-delay: 0.15s;
}

.alert-sign .dot {
    stroke: none;
    fill: #FFC107;
}

#modal_popup[data-result='success'] .error-animation,
#modal_popup[data-result='success'] .warning-animation {
    display: none;
}

#modal_popup[data-result='success'] div.container-modal button {
    background-color: rgb(0, 105, 92);
}

#modal_popup[data-result='error'] .success-animation,
#modal_popup[data-result='error'] .warning-animation {
    display: none;
}

#modal_popup[data-result='error'] div.container-modal button {
    background-color: #e74c3c;
}

#modal_popup[data-result='warning'] .error-animation,
#modal_popup[data-result='warning'] .success-animation {
    display: none;
}

#modal_popup[data-result='warning'] div.container-modal button {
    background-color: #34495e;
}

div.content_message {
    margin-bottom: 20px;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}

@keyframes draw-first-line {
    0% {
        stroke-dasharray: 0, 56;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 0, 56;
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dasharray: 56, 330;
        stroke-dashoffset: 0;
    }
}

@keyframes draw-second-line {
    0% {
        stroke-dasharray: 0, 55;
        stroke-dashoffset: 1;
    }

    50% {
        stroke-dasharray: 0, 55;
        stroke-dashoffset: 1;
    }

    100% {
        stroke-dasharray: 55, 0;
        stroke-dashoffset: 70;
    }
}

@keyframes alert-sign-bounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* MODALE (NEW POPUP) */