@font-face {
	font-family: Futura;
	src: url(Futura.woff);
}

body {
	background-color: #000;
	color: #00b4ff;
	font-family: Futura;
	font-size: 14px;
}

a{
    color: #00b4ff !important;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: 0 0;
}

::-webkit-scrollbar-thumb {
	background: #00b4ff;
}

h1{
	font-size: 30px;
	margin: 20px auto;
    max-width: 560px;
}

hr {
    border-color: #00B4FF;
}

.box {
    border: 1px solid;
    border-radius: 6px;
    overflow: hidden;
	font-family: Futura;
	font-size: 20px;
	padding: 15px 30px;
	max-width: 500px;
    margin: 20px auto;
}

ul {
    margin: 20px 0px;
}

li {
    cursor: pointer;
    padding-right: 10px;
    list-style-type: disc;
	padding: 0px;
	position: relative;
}

input[type="text"], input[type="password"] {
    border: 0px none;
    box-shadow: none;
    background-color: transparent;
    color: inherit;
    font-family: inherit;
    width: calc(100% - 4px);
	font-size: 20px;
	outline: none;
}

.buttons {
	width: 120px;
	position: absolute;
    right: 0px;
    top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.vlastni .buttons {
	width: 54px;
}

.prepinacChybi, .prepinacKdo {
	border: 1px solid;
    border-radius: 6px;
	font-size: 17px;
	display: block;
    text-align: center;
	margin-left: 3px;
}

.prepinacChybi {
	width: 50px;
	color: gray;
	float: left;
}
.prepinacChybi.chybi {
	color: #00B4FF;
}

.prepinacKdo {
	width: 60px;
	float: right;
}

.pravidelne input[type="text"] {
	width: calc(100% - 130px);
}

.vlastni .pravidelne input[type="text"] {
    width: calc(100% - 64px);
}

@media (max-width:1880px) {
	body {
		margin: 8px 3px;
	}
}

@media (max-width:949px) {
	body {
		font-size: 20px;
	}
}

li.unsended {
    list-style-type: circle;
}

li.unsended::after {
	content: "";
	border: 0px solid transparent;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    right: -20px;
	top: calc(50% - 15px / 2);

    animation: spin 0.3s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}