@font-face {
	font-family: 'OpenSans';
	src: url("../fonts/OpenSans-Regular.ttf");
}

@font-face {
	font-family: 'OpenSans-Light';
	src: url("../fonts/OpenSans-Light.ttf");
}

@font-face {
	font-family: 'OpenSansHebrew-Regular';
	src: url("../fonts/OpenSansHebrew-Regular.ttf");
}

@font-face {
	font-family: 'OpenSansHebrew-Light';
	src: url("../fonts/OpenSansHebrew-Light.ttf");
}


/**/

button::-moz-focus-inner {
	border: 0;
}

button {
	/* ios adds weird padding to the text direction opposide */
	padding-left: 0;
	padding-right: 0;
}

body {
	background: white;
	font-family: OpenSansHebrew-Regular, OpenSans-Regular;
	font-size: 14px;
}

* {
	box-sizing: border-box;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

a:hover {
	text-decoration: underline;
}

.disableSelect {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.page {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.headerBar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 48px;
	background-repeat: no-repeat;
	background-image: url('../assets/gma_logo.svg');
	background-position: 12px center;
	background-size: auto 55%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.centerSection {
	position: absolute;
	left: 0;
	right: 0;
	top: 48px;
	bottom: 0;
	overflow-y: auto;
}

.centerSectionOuter {
	display: table;
	width: 100%;
	height: 100%;
}

.centerSectionInner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 100%;
	height: 100%;
}

.centerSectionInner>* {
	text-align: initial;
}

.centerFrame {
	/*position: absolute;*/
	/*left: 50%;
	top: 45%;*/
	/*transform: translate(-50%, -50%);*/
	display: inline-block;
	text-align: center;
	color: #444;
	padding-bottom: 50px;
}

.centerFrame a {
	color: #729dda;
}

.footerContainer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 42px;
	background: #729dda;
	color: white;
	text-align: center;
}

.footerContainer ul {
	display: inline-block;
}

.footerContainer ul>li {
	position: relative;
	float: left;
	padding: 12px 20px;
}

.footerContainer ul>li:not(:last-child):after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 50%;
	background: white;
	box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

.footerCopyright {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
}


.blinking{
	animation:blinkingElement 0.6s infinite;
}

@keyframes blinkingElement{
	0%{     opacity: 1;    }
	/*    49%{    opacity: 0; }*/
	50%{    opacity: 0; }
	/*    99%{    opacity: 0;  }*/
	100%{   opacity: 1;    }
}