body {
	background-color: #FFFFFF;
	margin: 0;
	font-family: Helvetica, Arial;
	font-size: 16px;
}

a {
	text-decoration: none;
	color: inherit;
}

div {
	box-sizing: border-box;
}

h1 {
	font-size: 40px;
	color: #000000;
}

h2 {
	font-size: 28px;
}

.login-box {
	border: 1px solid black;
	border-radius: 10px;
	margin: 30px auto;
	width: 400px;
	padding: 20px;
}

.login-box label {
	width: 120px;
	display: inline-block;
}

.login-box input {
	width: 220px;
	display: inline-block;
}

.flexcontainer {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fullwidth {
	width: 100%;
}

.flex-left {
	justify-content: left;
}

.flex-between {
	justify-content: space-between;
}

.header {
	background-color: #000000;
}

.header-content {
	color: #FFFFFF;
	padding: 20px 0px 10px 0px;
	height: 72px;
	font-weight: bold;
	font-size: 1.5em;	
}

.header-left {
	height: 62px;
	margin-bottom: 10px;
}

.header-left img {
	height: 100%;
}

.header-right img {
	height: 32px;
	margin-left: 16px;
}

.container {
	width: 100%;
}

.bg-white {
	background-color: #fff;
}

.bg-white h2 {
	color: #000000;
}

.margin-20 {
	margin-top: 20px;
}

.padding20 {
	padding: 20px;
}

.box-white {
	color: #6A7981;
	padding: 30px;
	background-color: #ffffff;
}

.box-blue {
	color: #FFFFFF;
	padding: 30px;
	background-color: #000000;
}

.box-gray {
	color: #FFFFFF;
	padding: 30px;
	background-color: #9EB3BE;
}

.container img {
	max-width: 100%;
}

.col-12 {
	flex-grow: 1;
	max-width: 100%;
}
.col-9 {
	flex-grow: 9;
	max-width: 75%;
}
.col-8 {
	flex-grow: 8;
	max-width: 66.66%;
}
.col-4 {
	flex-grow: 4;
	width: 33.33%;
}
.col-3 {
	flex-grow: 3;
	width: 25%;
}
.col-2 {
	flex-grow: 2;
	width: 16.66%;
}
.col-1 {
	flex-grow: 1;
	width: 8.33%;
}


.nav .logo {
	background-image: url('/resources/images/gd_logo_white.svg');
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: center center;
	/*width: 370px;*/
	height: 140px;
	background-color: #000000;
	width: 100%;
	margin-right: 30px;
}

.nav nav ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
}

.nav nav ul li {
	display: block;
	width: 140px;
	height: 140px;
	background-color: #fff;
	border-top: 5px solid #F5F7F9;
	border-bottom: 5px solid #F5F7F9;
	background-position: center;
	background-size: 50px;
	background-repeat: no-repeat;
	text-align: center;
	padding-top: 105px;
	box-sizing: border-box;	
	margin-left: 10px;
	cursor: pointer;
	font-family: LatoLatinWebBlack;
	text-transform: uppercase;
	color: #000000;
	font-size: 14px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.nav nav ul li:hover {
	background-size: 60px;
}

.nav nav ul li.active {
	border-top: 5px solid #000000;
	border-bottom: 5px solid #000000;
}

.menu-fooldal {
	background-image: url('/resources/images/icon_nav_fooldal.svg');
}

.menu-kviz {
	background-image: url('/resources/images/icon_nav_kviz.svg');
}

.menu-fontos {
	background-image: url('/resources/images/icon_nav_fontos.svg');
}

.menu-szamolj {
	background-image: url('/resources/images/icon_nav_szamolj.svg');
}

.menu-rolunk {
	background-image: url('/resources/images/icon_nav_rolunk.svg');
}


.footer {
	margin-top: 20px;
	width: 100%;
	height: 50px;
	background-color: #293C3E;
	text-align: center;
	color: #B2C2CB;
	padding-top: 15px;	
}

.button {
	padding: 10px 30px;
	background-color: #000000;
	border-radius: 15px;
	text-transform: uppercase;
	color: #ffffff;
	cursor: pointer;
	font-family: LatoLatinWebBlack;
	margin-top: 20px;
	display: inline-block;
}

.icon {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 64px;
	height: 64px;
}

.icon-alert {
	background-image: url('/resources/images/icon_alert.svg');
}
.icon-owl {
	background-image: url('/resources/images/icon_owl.svg');
}
.icon-eurzoom {
	background-image: url('/resources/images/icon_eurzoom.svg');
}

.box-text {
	min-height: 150px;
}

.box-arrow {
	text-align: right;
}

.box-arrow img {
	width: 56px;
}

.box-example {
	margin: 0px 20px;
	padding: 0 !important;
	position: relative;
	background-color: transparent;
}

.box-example img {
	width: 100%;
}

.box-example-label {
	position: absolute;
	width: 50%;
	bottom: 30px;
	left: 0px;
	background-color: #000000;
	padding: 5px;
}

.box-example-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,178,213, 0.9);
	opacity: 0;
	padding: 40px 20px;
	text-align: center;
	/*font-size: 1.1em;*/
	font-weight: bold;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.box-example:hover .box-example-overlay {
	opacity: 1;
}

/* Kvíz */

.moyo-question {
	margin-top: 10px;
	padding-bottom: 18px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #eee;
}

.moyo-question-error {
	background-color: #fff5f8;
	border-radius: 10px;
	border-right: 5px solid red;
	border-left: 5px solid red;
	padding-left: 10px;
}

.moyo-question-text {
	/*text-transform: uppercase;*/
	color: #000000;
	font-weight: bold;
	padding-top: 15px;
	/*font-size: 24px;*/
}

.moyo-answer {
	font-size: 1.1em;
	/*margin-bottom: 5px;*/
	min-width: 200px;
	margin-left: 20px;
	margin-top: -10px;
}

.quizError, .leadError {
	color: red;
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 10px;
	font-weight: bold;
	display: none;
}


.moyo-input input {
	font-size: 18px;
	border-radius: 8px;
	border: 1px solid #000000;
	padding: 10px 20px;
	margin-bottom: 10px;
	width: 50%;
	color: #555;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ccc;
    font-weight: 100;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-weight: 100;
    color: #ccc;
}

::-ms-input-placeholder { /* Microsoft Edge */
    font-weight: 100;
    color: #ccc;
}


/* FORM ELEMENTS */

/* RADIO */

.input-container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.input-container input {
    position: absolute;
    opacity: 0;
    /*cursor: pointer;*/
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #ddd;
    border-radius: 50%;
	box-sizing: border-box;
	border: 1px solid #ccc;	
	padding-left: 10px;
	padding-top: 4px;   
	color: #fff; 
}

/* On mouse-over, add a grey background color */
.input-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.input-container input:checked ~ .checkmark {
    background-color: #000000;
    color: white;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.input-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.input-container .checkmark:after {
 	top: 0px;
	left: 0px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	/*border: 2px solid #9EB3BE;*/
	/*background: white;*/
}

table.listtable {
	border-collapse: collapse;
	margin-top: 20px;
}

table.listtable th {
	background-color: #000;
	color: #FFF;
	padding: 10px 30px;
}

table.listtable td {
	padding: 5px 30px;
	border: 1px solid #ccc;
}

table.listtable .button {
	margin: 0;
	padding: 6px 20px;
}

.adminbutton {
	padding: 6px 10px !important;
	border-radius: 10px;
}


@media screen and (min-width: 576px) {
	.container {
		max-width: 576px;
	}
}


@media screen and (min-width: 768px) {
	.container {
		max-width: 700px;
	}
}


@media screen and (min-width: 992px) {
	.container {
		max-width: 900px;
	}
}



@media screen and (min-width: 1200px) {
	.container {
		max-width: 1100px;
	}
}


/*
	>=576px
	>=768px
	>=992px
	>=1200px
 */


input.error {
	background-color:  red;
	color: white;
}