﻿.ezAniFadeIn {
    -webkit-animation-name: ezFadeIn;
    -webkit-animation-duration: 0.5s;
    animation-name: ezFadeIn;
    animation-duration: 0.5s
}

.ezAniFadeOut {
    -webkit-animation-name: ezFadeOut;
    -webkit-animation-duration: 0.6s;
    animation-name: ezFadeOut;
    animation-duration: 0.6s
}

.ezAniColorOut {
    -webkit-animation-name: ezColorOut;
    -webkit-animation-duration: 0.6s;
    animation-name: ezColorOut;
    animation-duration: 0.6s
}

.nseLoadModal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.nseLoader {
    position: absolute;
    top: 45%;
    left: 47%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #3498db; /* Blue */
    border-radius: 50%;
    background-color: transparent;
    animation: nseSpin 2s linear infinite;
}

@keyframes nseSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.nseLightModal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100000;
}

.nseLightBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    outline: 0;
    box-sizing: content-box;
    z-index: 100001;
}

    .nseLightBox .nlbBorder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background: #ccc;
        opacity: .7;
    }

    .nseLightBox .nlbCircle {
        position: absolute;
        top: -15px;
        right: -16px; /**always align on right*/
        background-color: transparent;
        background: #ccc;
        opacity: .7;
        width: 46px;
        height: 46px;
        border-radius: 100%;
        box-sizing: content-box;
        background-repeat: no-repeat;
        z-index: 100000;
    }

    .nseLightBox .nlbCloseButton {
        position: absolute;
        top: -7px;
        right: -8px;
        height: 30px;
        width: 30px;
        padding: 0px 0px 0px 0px;
        border-radius: 100%;
        background-repeat: no-repeat;
        background-color: transparent;
        background: #888;
        color: white;
        border: none;
        outline: none;
        cursor: pointer;
        z-index: 100003;
    }

        .nseLightBox .nlbCloseButton:hover {
            background: #444;
        }

        .nseLightBox .nlbCloseButton:focus-within {
            outline: 2px solid #666 !important;
            border-radius: 100% !important;
            background: #cc3300 !important;
        }

    .nseLightBox .nlbCloseIcon {
        position: absolute;
        top: -2px;
        left: 6.5px;
        font-family: Arial,Helvetica,sans-serif;
        font-size: 30px;
        padding: 0px 0px 0px 0px;
    }

    .nseLightBox .nlbTemplate {
        position: relative;
        height: 100%;
        border-radius: 5px;
        border-color: #ccc;
        color: #333;
        background-color: #fff;
        overflow: hidden;
        z-index: 100002;
    }

/* ADA */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.skip {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    font-size: 17px;
}

    .skip:focus {
        position: static;
        width: auto;
        height: auto;
    }
