@charset "UTF-8";@import"https://fonts.googleapis.com/css?family=Oswald&display=swap";
*, *:after, *:before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

* {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 14px;
	color: #fff;
}

::selection {
    background: #0A748F;
}

body {
	background: #3e494c;
}

a:link,
a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

a:hover {
	color: #fff;
}				


.output-err, .output-yes, .output-def {
    border-radius: 2px;
    padding: 6px 10px;
}
.output-err {
	background-color: #751212;
}
.output-yes {
	background-color: #2e7d32;
}
.output-def {
	background-color: #0a748f;
}

.login-background {
	width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #000 url(images/bg.png) left top repeat;
    z-index: -1;
}

.login-container {
    margin: auto;
    width: 998px;
}

.login_header {
    background-image: url(images/head.png);
    height: 75px;
}
.login_middle {
    display: flex;
    justify-content: center;
    width: 998px;
    margin: auto;
}
.login_left {
    width: 55px;
    height:563px;
    background-image: url(images/left.png);
}
.login_center {
    width: 888px;
    background-color: #000000;
}
.login_logo {
    background-image: url(images/title.png);
    width: 888px;
    height: 140px;
}
.login_right {
    width: 55px;
    height: 563px;
    background-image: url(images/right.png);
}
.login_footer {
    background-image: url(images/foot.png);
    height: 38px;
}

.login-row {
    display: flex;
    align-items: flex-start; 
	justify-content: center;
    width: 100%;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form {
    width: 248px;
    text-align: center;
    margin: 10px;
    background-color: #202327;
    border-radius: 4px;
}

.login-form select,
.login-form input[type="text"],
.login-form input[type="password"] {
    width: calc(100% - 20px);
    padding: 8px;
    margin: 10px 0;
    border: 2px solid #424242;
	border-color: #424242;
    border-radius: 4px;
    background-color: #202327;
	outline: 0;
	transition: border-color .36s cubic-bezier(.4,0,.2,1);
}
.login-form select:hover,
.login-form input[type="text"]:hover,
.login-form input[type="password"]:hover {
	border: 2px solid #fff9;
}
.login-form select:focus,
.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
	border: 2px solid #0a748f;
}
.login-form input[type="submit"] {
    padding: 8px 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    background-color: #0a748f;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
    cursor: pointer;
	box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
    transition: box-shadow .3s cubic-bezier(.25,.8,.5,1);
}
.login-form input[type="submit"]:hover {
    background-color: #2d879e;
}
.login-form input[type="submit"]:active {
	background-color: #3c8fa4;
    box-shadow: 0 3px 5px -1px #0003, 0 5px 8px #00000024, 0 1px 14px #0000001f;
}
.login-form select.error-input, 
.login-form input.error-input {
    border: 2px solid #c10015;
}

.login-form_links {
    margin-top: 10px;
    text-align: center;
}

.login-form_links hr {
    border: none;
    border-top: 1px solid #424242;
    margin: 10px 0;
}

.login-form_links a {
    color: #fff;
    text-decoration: none;
    display: block;
	font-size: 15px;
	font-weight: 500;
	text-align: left;
    margin: 10px 10px;
}

.login-form_links a:hover {
    text-decoration: underline;
}

.error-login_msg {
    color: #c10015;
    font-size: 13px;
	font-weight: 500;
	margin-top: -10px;
	margin-left: 10px;
	text-align: left;
}

.login-info {
    width: 600px;
    margin: 10px;
    color: #fff;
}
.login-info h1 {
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 25px;
	color: #fff;
}
.login-info h2 {
	font-weight: 500;
	font-size: 15px;
	color: #fff;
}
.login-info p {
	font-weight: 400;
	margin-bottom: 10px;
	color: #fff;
}
.login-info p:last-of-type {
	margin-bottom: 20px;
}

.login-screenshots {
    width: 100%;
    text-align: center;
    padding: 10px;
    color: #fff;
}
.login-screenshots_container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}
.ss-image {
    width: calc(25% - 20px);
    border: 2px solid #424242;
    border-radius: 4px;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.ss-image:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    position: relative;
    text-align: center;
    background-color: #202327;
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box;
}

#btn_closemodal {
    margin: auto;
    display: inline-block; 
    padding: 8px 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    background-color: #0a748f;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
    transition: box-shadow .3s cubic-bezier(.25,.8,.5,1);
}

#btn_closemodal:hover {
    background-color: #2d879e;
}

#btn_closemodal:active {
    background-color: #3c8fa4;
    box-shadow: 0 3px 5px -1px #0003, 0 5px 8px #00000024, 0 1px 14px #0000001f;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh; 
    display: block;
    margin: auto;
}

input[type="submit"] {
    padding: 8px 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    background-color: #0a748f;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
    cursor: pointer;
	box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
    transition: box-shadow .3s cubic-bezier(.25,.8,.5,1);
}
input[type="submit"]:hover {
    background-color: #2d879e;
}
input[type="submit"]:active {
	background-color: #3c8fa4;
    box-shadow: 0 3px 5px -1px #0003, 0 5px 8px #00000024, 0 1px 14px #0000001f;
}


.em-grid {
    width: calc(100% - 20px);
    margin: auto;
}

.has-title {
    padding: 8px 12px;
    background: #090a0b;
    border-radius: 4px 4px 0 0;
    border: 1px solid #000;
    font-weight: 500;
    color: #fffc;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.has-cont {
    background-color: #202327;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 0 0 4px 4px;
    border: 1px solid #000;
    border-top-color: #2b3035;
    box-shadow: 0 0 6px #0003;
}

.has-cont p {
    margin-bottom: 5px;
    margin-top: 5px;
}

.tl {
    text-align: left;
}

.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

.q-text {
    font-size: 13px;
    opacity: .9;
    padding: 14px 10px;
    border-radius: 4px;
    background: #151619;
    display: inline-block;
}


table			{ color: #FFFFFF;   border: 1px; cellspacing: 0px; cellpadding: 2px; bordercolor: black; }
table.main		{ background: #aa3c3c; color: #FFFFFF;   }
td.subTitle		{ border: 2px solid #000000; background: #55738b;
    box-shadow: inset 0px 1px #8da5b7, inset 0px 2px #63829c; color: #FFFFFF;   text-align: center; letter-spacing: 2px; }
td.mainTxt		{ border: 2px solid #000000; background-color: #202327;   padding-left: 5px; padding-right: 5px; cellspacing: 0px; }
td.savedmainTxt		{ border: 2px solid #000000; background-color: #505050;   padding-left: 5px; cellspacing: 0px; }



table.menu		{ border: 3px solid #000000; border-left: none;   }
td.menuTitle		{ background: #9B2D2D; color: #000000;   letter-spacing: 5px; }
td.menuLink		{ background: #8C1E1E; color: #000000;   }
a.menu:link		{ color: #000000;   text-decoration: none; cursor: default; width: 120; }
a.menu:visited		{ color: #000000;   text-decoration: none; cursor: default; width: 120; }
a.menu:active		{ color: #000000;   text-decoration: none; cursor: default; width: 120; }
a.menu:hover		{ color: #E15D5D;   text-decoration: underline; cursor: default; width: 120; }

#meniu {
	background: #202327;
	padding: 10px;
}

#meniu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

#meniu ul li {
	display: inline;
}

#meniu ul li a {
	text-decoration: none;
	padding: 10px 50px;
	color: #fff;
}

#meniu ul li a:hover {
	background-color: #6e6e6e;
}


.text-center {
    text-align: center;
}
.fixed-center {
	position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}











