/* CSP CSS fixes: moved from Razor inline style / style tags */
.csp-noscript-message {
    text-align: center;
    padding: 20px;
    background-color: #f8d7da;
    color: #721c24;
}

.csp-admin-header-bg {
    background: no-repeat url("../../../images/header.png"), repeat-x url("../../../images/headerBg.png");
    height: 78px;
}

.csp-page-bg {
    background-color: #f5f5f7;
}

.csp-z-index-100 {
    z-index: 100;
}

.csp-youtube-color {
    color: #ca4638;
}

.csp-line-color {
    color: #00bd00;
}

.csp-facebook-color {
    color: #3c589e;
}

.csp-footer-link-color {
    color: #7f7f7f;
}

.form-control::placeholder,
.form-control::-webkit-input-placeholder,
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-ms-input-placeholder {
    color: #d7d7d5;
    opacity: 1;
}

.ui-widget button {
    font-family: 'Microsoft JhengHei';
}

.menu-link.selected {
    background-color: #d6d6d6;
    font-weight: bold;
    color: #003366;
}

li.selected {
    background-color: #d6d6d6;
    font-weight: bold;
    color: #003366;
}

.tab.selected,
.tab.checked,
.tab:hover {
    background-color: #FFFFFF;
    color: #003366;
}

/* Error page */
@font-face {
    font-family: 'Monoton';
    font-style: normal;
    font-weight: 400;
    src: local('Monoton'), local('Monoton-Regular'), url("../../../Errors/Fonts/latin.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.vc-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-position: center;
    background-size: contain;
}

.vc-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.vc-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    font-family: "Monoton", cursive;
}

.vc-heading {
    font-size: 12.1em;
    margin: 0 0 20px;
    color: #ff45ae;
    text-shadow: 0 0 40px;
    font-weight: 100;
    animation: blink 6s ease-in-out;
}

.vc-sub-heading {
    margin: 0;
    font-size: 2em;
    color: #66f38a;
    text-shadow: 0 0 60px;
    font-weight: 100;
    animation: blink-sub 6s ease-in-out;
}

.blink-infinite {
    animation: infinite-blink 0.2s 3s infinite;
}

.csp-error-content-large {
    font-size: xx-large;
    font-family: fantasy;
    font-weight: bold;
}

@media screen and (max-width: 500px) {
    .vc-heading {
        font-size: 8em;
    }

    .vc-sub-heading {
        font-size: 1.3em;
    }
}

@keyframes blink {
    35%, 37%, 39%, 41%, 100% {
        color: #ff45ae;
        text-shadow: 0 0 40px;
    }

    0%, 34%, 36%, 36%, 38%, 40% {
        color: #9f9f9fb3;
        text-shadow: none;
    }
}

@keyframes blink-sub {
    35%, 37%, 39%, 41%, 100% {
        color: #66f38a;
        text-shadow: 0 0 60px;
    }

    0%, 34%, 36%, 36%, 38%, 40% {
        color: #9f9f9fb3;
        text-shadow: none;
    }
}

@keyframes infinite-blink {
    60%, 80% {
        color: #9f9f9fb3;
        text-shadow: none;
    }

    70%, 100% {
        color: #66f38a;
        text-shadow: 0 0 30px;
    }
}
