/* - - - ADMIN LOGIN - - - */
#admin-login {
	display: block;
	
	width: 400px;
	
	margin: 0 auto;
	margin-top: 60px;
	padding: 20px;
	
	box-sizing: border-box;
	
	border: 1px solid #C0C0C0;
	border-radius: 5px;
	background: #EAEAEA;
	
	text-align: center;
	color: #2C2C2C;
}
#admin-login h2 {
	margin-bottom: 25px;
	
	color: ##2d2d2d;
	font-size: 16px;
	font-weight: bold;
}
#admin-login input {
	display: block;
	
	width: 100%;
	
	box-sizing: border-box;
	
	height: 40px;
	padding: 0 15px;
	
	background: #fff;
	border: 1px solid #C0C0C0;
}
#admin-login button {
	display: block;
	
	width: 100%;
	
	box-sizing: border-box;
	
	height: 40px;
	
	margin-top: 10px;
	padding: 0 15px;
	
	background: #9E3434;
	border-bottom: 3px solid #861F1F;
	
	text-align: center;
	color: #fff;
	
	cursor: pointer;
	
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
#admin-login button:hover { background: #B64242; }
#admin-login button:active { background: #861F1F; }


/* - - - MESSAGE - - - */
#message {
	position: relative;
	
	background: #ccc;
	
	font-size: 14px;
	color: #fff;
}
#message .center {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	min-height: 50px;
	box-sizing: border-box;
	padding: 10px 20px;

	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
#message.error { background: #EA5343; }
#message.success { background: #73BC43; }


/* - - - TITLE - - - */
#title {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	padding-bottom: 15px;

	border-bottom: 1px solid #803131;
}
#title .row.button { width: 180px; flex-shrink: 0; }
#title .back {
	display: inline-block;

	height: 53px;
	padding: 0 35px;
	padding-top: 16px;

	box-sizing: border-box;
	-moz-box-sizing: border-box;

	font-size: 17px;
	color: #2e2e2e;
	text-align: center;
	text-transform: uppercase;

	background-color: #ffffff;
	border-bottom: 4px solid #949494;

	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
#title .back:hover { background: #fff; border-color: #ffb620; }
#title .back:active { background: #949494; }
#title h1 {
	vertical-align: -6px;
	margin-bottom: 12px;

	font-family: 'LeagueGothic', sans-serif;
	font-size: 35px;
	color: #2d2d2d;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
	text-transform: uppercase;
	font-style: italic;
}
#title p {
	font-size: 15px;
	line-height: 1.4;
}
@media screen and (max-width: 660px){
	#title { display: block; }
	#title .row.button { display: none; }
	#title h1, #title p { text-align: center; }
}
@media screen and (max-width: 500px){
	#main { padding-top: 12px; }
	#title { padding-bottom: 0; }
	#title p { display: none; }
	#title h1 { border-bottom: 0; }
}


/* - - - KOMMENTEK - - - */
#kommentek { padding-top: 13px; }
#kommentek .new { margin-bottom: 39px; }
#kommentek .new a {
	display: inline-block;
	padding: 8px 28px;

	color: #681514;
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;

	background-color: #eedcdc;
	border-radius: 5px;
}
#kommentek .new a:hover { background-color: #FFF9F9; }
#kommentek article {
	display: block;

	margin-bottom: 35px;
	padding: 15px 23px;

	font-size: 15px;
	color: #282828;

	background-color: #ffffff;
	border-radius: 5px;
}
#kommentek h1 {
	margin-bottom: 6px;

	font-size: 17px;
	color: #282828;
	font-weight: bold;
}
#kommentek .WA-rating { margin-bottom: 9px; }

#kommentek button {
	display: inline-block;
	
	padding: 5px 10px;
	margin-bottom: 15px;
	
	border-radius: 3px;
	background: #ddd;
	border-bottom: 2px solid #aaa;
	
	cursor: pointer;
	
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
#kommentek button:hover { background: #E5E5E5; }
#kommentek button:active { background: #aaa; }
#kommentek button.delete { background: #ED5050; border-bottom-color: #B22B2B; color: #fff; }
#kommentek button.delete:hover { background: #F56262; }
#kommentek button.delete:active { background: #B22B2B; }
#kommentek button.enable { background: #59C85A; border-bottom-color: #2F962F; color: #fff; }
#kommentek button.enable:hover { background: #66D567; }
#kommentek button.enable:active { background: #2F962F; }

#kommentek p {
	line-height: 1.4;
	text-align: justify;
}
#kommentek time {
	display: block;
	margin-top: 6px;

	text-align: right;
	color: #5b5b5b;
	font-size: 14px;
	font-style: italic;
}
#kommentek section {
	width: 92%;

	margin-top: 18px;
	margin-left: auto;
	padding: 12px 18px 18px 45px;

	box-sizing: border-box;
	-moz-box-sizing: border-box;

	border-top: 9px solid #f2ac33;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.45);

	background: url('../images/answer-arrow.png') no-repeat 13px 14px;
}
#kommentek section h1 { margin-bottom: 0; }
#kommentek section .email {
	display: block;
	margin-bottom: 15px;

	color: #696969;
	font-size: 14px;
	font-style: italic;
}
#kommentek section .email:hover { text-decoration: underline; }
@media screen and (max-width: 500px){
	#kommentek .new { text-align: center; }
	#kommentek .new a { padding-top: 15px; padding-bottom: 15px; }
	#kommentek section {
		width: 100%;
		margin-left: 0;
	}
}
@media screen and (max-width: 380px){
	#kommentek section {
		padding-left: 18px;
		background: none;
	}
}


/* - - - ÚJ KOMMENT - - - */
#komment_uj { padding-top: 25px; padding-left: 180px; }
#komment_uj .box {
	padding: 33px 66px;

	background-color: #ffffff;
	border-radius: 6px;

	color: #414040;
	font-size: 15px;
}
#komment_uj input:not([type="submit"]):not([type="checkbox"]), #komment_uj textarea {
	display: block;

	width: 100%;
	height: 35px;

	box-sizing: border-box;
	-moz-box-sizing: border-box;

	padding: 0 23px;
	margin-bottom: 8px;

	border: 1px solid #95908a;
}
#komment_uj textarea {
	height: 110px;

	padding-top: 8px;
	padding-bottom: 8px;
}
#komment_uj .WA-rating {
	padding-left: 24px;
	margin-top: 8px;
	margin-bottom: 14px;
}
#komment_uj .WA-rating .stars {
	display: inline-block;
	margin-top: 6px;
}
#komment_uj .WA-rating span {
	width: 24px;
	height: 22px;
	vertical-align: -5px;
	cursor: pointer;
}
#komment_uj .form_bottom {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	justify-content: space-between;
}
#komment_uj .form_bottom .row.label { padding-right: 15px; }
#komment_uj .form_bottom .row.submit { flex-shrink: 0; }
#komment_uj label {
	display: inline-block;
	padding-left: 24px;
	margin-top: 8px;

	line-height: 1.5;
}
#komment_uj label a {
	color: #2287ee;
	text-decoration: underline;
}
#komment_uj label a:hover { color: #49A2FC; }
#komment_uj input[type="submit"], #komment_uj a.cancel{
	display: inline-block;

	height: 37px;
	padding: 0 18px;

	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;

	background-color: #444444;
	border-radius: 5px;
	vertical-align: top;
	
	box-sizing: border-box;
	-moz-box-sizing: border-box;

	cursor: pointer;
}
#komment_uj input[type="submit"]:hover, #komment_uj a.cancel:hover { background-color: #5C5C5C; }
#komment_uj input[type="submit"]:active, #komment_uj a.cancel:active { background-color: #1A1A1A; }
#komment_uj a.cancel {
    margin-right: 5px;
    padding-top: 10px;
    
    background-color: #CCCCCC;
    color: #444;
}
#komment_uj a.cancel:hover { background-color: #C0C0C0; }
#komment_uj a.cancel:active { background-color: #9C9C9C; }
#komment_uj .error_msg {
    padding: 10px 15px;
    margin-bottom: 14px;
    
    background: rgb(212, 73, 73);
    color: white;
    border: 1px solid rgb(179, 20, 20);
}
@media screen and (max-width: 750px){ #komment_uj { padding-left: 0; } }
@media screen and (max-width: 600px){
    #komment_uj .form_bottom { display: block; text-align: center; }
    #komment_uj .form_bottom .row.submit { margin-top: 10px; }
}
@media screen and (max-width: 500px){ #komment_uj .box { padding-left: 30px; padding-right: 30px; } }
@media screen and (max-width: 400px){
	#komment_uj .WA-rating {
		padding: 0;
		text-align: center;
	}
}