﻿.font08 {
    font-size: 0.8em;
}

.font09 {
    font-size: 0.9em;
}

.user-close {
    padding: 0.5em;
    border-radius: 5px;
    margin: 0.5em 0;
    cursor: pointer;
}

    .user-close::after {
        content: 'X';
        float: right;
        font-weight: 300;
        font-family: Arial, sans-serif;
        /*cursor: pointer;*/
    }

input[type=checkbox] {
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

.validation-summary-errors ul {
    color: #dd2424;
    margin: 0;
    padding-left: 1.5em;
}

/* Ajax Loader css */
.ajax-loader {
    position: absolute;
    background: #000;
    opacity: .3;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10000;
}

.loader {
    display: inline-block;
    width: 160px;
    text-align: center;
    padding: 0.5em 0;
    position: fixed;
    top: 2.8em;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-worker-image {
    background-image: url('images/union-large.jpg');
    background-position: center;
    background-size: cover;
    /*-webkit-filter: grayscale(100%);*/ /* Safari 6.0 - 9.0 */
    /*filter: grayscale(100%);*/
    /*-webkit-filter: blur(1px);*/ /* Safari 6.0 - 9.0 */
    /*filter: blur(1px);*/
}

.nicEdit-main {
    background-color: #fff !important;
}

.pointer {
    cursor: pointer;
}

.test-environment-notification-banner {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -0%);
    min-width: 320px;
    text-align: center;
    background-color: #ff6a00;
    color: #fff;
    font-weight: bold;
    padding: 0.1em 0.3em;
    font-size: 0.8em;
    z-index: 20000;
    border-radius: 5px;
}

    .test-environment-notification-banner:after {
        content: 'Union Drive Test Environment ONLY!';
    }