.wecantrack_body {
    background-color: #f3f6f9;
    padding: 20px;
}

.wecantrack_hero_image {
    text-align: right;
    position: relative;
    float: right;
    right: 0;
    /*margin-right: 20px;*/
}

.wecantrack_hero_image img {
    height: 50px;
    width: auto;
}

.wecantrack-text-danger {
    color: red;
}

.wecantrack-text-success {
    color: green;
}

.wecantrack-button-danger {
    border-color: red !important;
    color: red !important;
}

#wecantrack_form_feedback {
}

.wecantrack_animation_rotate {
    animation-name: wecantrack_360_rotate;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.wecantrack-prerequisites .dashicons-yes {
    color: green;
}

.wecantrack-prerequisites .dashicons-no {
    color: red;
}

@keyframes wecantrack_360_rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes wecantrack-loader-animation {
    0% {left: -100%;}
    49% {left: 100%;}
    50% {left: 100%;}
    100% {left: -100%;}
}

#wecantrack_loading {
    width: 100%;
    opacity: 0.8;
    position: fixed;
    height: 5px;
    top: 32px;
    background-color: rgb(34, 113, 184);
    animation-name: wecantrack-loader-animation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999999;
    display: none;
}