@import "https://fonts.fontstorage.com/import/ubuntumono.css";
@import "/css/cssload-loader.css";

@font-face {
    font-family: Neuropol;
    src: url(fonts/Neuropol_Rus.ttf);
}

@-webkit-keyframes pulsate {
    50% {
        color: #fff;
        text-shadow: 0 -1px rgba(0, 0, 0, .3), 0 0 5px #ffd, 0 0 8px #fff;
    }
}

@keyframes pulsate {
    50% {
        color: #fff;
        text-shadow: 0 -1px rgba(0, 0, 0, .3), 0 0 5px #ffd, 0 0 8px #fff;
    }
}

@-webkit-keyframes blink6 {
    10% {
        transform: scale(1, 1) rotate(80deg);
    }

    20% {
        transform: scale(0, 0) rotate(160deg);
    }

    100% {
        transform: scale(0, 0) rotate(0deg);
    }
}

@keyframes blink6 {
    10% {
        transform: scale(1, 1) rotate(80deg);
    }

    20% {
        transform: scale(0, 0) rotate(160deg);
    }

    100% {
        transform: scale(0, 0) rotate(0deg);
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: auto;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    color: #fff;
    background-image: url(/images/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #464646;
    font-weight: normal;
    text-shadow: 2px 1px 1px #000;
    margin: 0;

    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

.red_border {
    border: 1px solid rgba(255, 0, 0, 0.5);
    box-shadow: inset 0 0 10px rgba(255, 0, 0, 1);
}

.lime_border {
    border: 1px solid rgba(0, 255, 0, 0.5);
    box-shadow: inset 0 0 5px rgba(0, 255, 0, 1);
}

body,
table,
td,
tr,
button,
input,
input[type=button],
input[type=password],
input[type=text],
input[type=submit] {
    font-family: 'Ubuntu Mono';
    /*font-family: Verdana, Arial, sans-serif;*/
    letter-spacing: 1px;
    text-align: center;
    font-size: 14px;
}

button,
input {
    background-color: rgba(0, 25, 0, 0.5);
    /*width: 200px;
    height: 30px;*/
    border: 1px solid rgba(0, 125, 0, 1);
    border-radius: 5px;
    color: #0f0;
    /*padding: 0px 4px 1px;*/
    padding: 8px;
    margin: 4px;
    text-shadow: 0;
}

input:focus,
span:focus,
a:focus,
img:focus {
    outline: none;
}

button,
input[type=submit],
input[type=button] {
    background: linear-gradient(rgba(0, 25, 0, 0.5), rgba(0, 115, 0, 0.25), rgba(0, 25, 0, 0.5));
    box-shadow: 2px 2px 5px black;
    border: 1px solid rgba(0, 125, 0, 0.2);

    font-size: 13px;
    font-style: bold;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
    cursor: pointer;
    text-shadow: 2px 1px 1px #000;
}
button:hover,
input[type=submit]:hover,
input[type=button]:hover {
    box-shadow: 2px 2px 5px black, inset 0 0 5px rgba(0, 125, 0, 0.5);
}
button:active,
input[type=submit]:active,
input[type=button]:active {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    background: rgba(0, 25, 0, 0.5);
}
button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled,
input:disabled {
    background: url(/images/dline.png);
    border: 1px solid #666;
    color: #999;
}

.wrapper {
    display: grid;
}

overlay {
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    opacity: 0.75;
    position: absolute;
    background: url(images/loader.gif) no-repeat center #000;
    z-index: 5000;
}

.tip {
    display: none;
    padding: 7px;
    position: absolute;
    z-index: 1000;

    border: 1px solid rgba(0, 10, 45, 1);
    box-shadow: 0 0 10px 5px rgba(0, 0, 15, 1);
    background-color: rgba(0, 0, 15, 0.85);
    border-radius: 7px;

    text-align: center;

    font-size: 14px;
    max-width: 90%;
}

a {
    color: #fff;
    text-shadow: 0;
    text-decoration: none;
}

a:hover {
    color: #fff;
    /*#ff6f5b*/
    -webkit-animation: pulsate 1.2s linear infinite;
    animation: pulsate 1.2s linear infinite;
}