@charset "utf-8";

@media all {
	/*GLOBAL*/
	@keyframes opacityAnimation {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}
	input:-webkit-autofill {
		-webkit-box-shadow: 0 0 0 1000px white inset !important;
	}

	* {
		margin: 0;
		padding: 0;
		font-family: 'Open Sans', sans-serif;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	a {
		outline: 0;
	}

	img {
		-webkit-user-select: none;
		   -moz-user-select: none;
		        user-select: none;
		-webkit-user-drag: none;
		user-drag: none;
		-webkit-touch-callout: none;
	}

	::-webkit-scrollbar {
		width: 8px;
		height: 8px;
	}

	::-webkit-scrollbar-button {
		width: 0px;
		height: 0px;
	}

	::-webkit-scrollbar-corner {
		background: transparent;
	}

	::-webkit-scrollbar-thumb {
		background: #b8b8b8;
		border: 0px solid #ffffff;
	}

	::-webkit-scrollbar-thumb:hover {
		background: #000;
	}

	::-webkit-scrollbar-track {
		background: #e9e9e9;
		border: 0px none #ffffff;
	}

	html {
    	overflow-x: hidden;
	} 

	body {
		font-weight: 100;
		color: #545454;
		background-color: #ffffff;
		font-size: 1.1rem;
		width: 100%;
		overflow-x: hidden;
		font-style: normal;
		max-width: 100vw;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
	}

	#snow {
		z-index: 9999999999;
		position: absolute;
		top: 10px;
		left: 0;
		opacity: 0;
		pointer-events: none;
	}

	#cookies {
		display: none;
		position: fixed;
		bottom: 0;
		left: 0;
		background-color: #303131;
		z-index: 9999999;
		width: 100%;
		transition: 0.5s ease;
	}

	.cookies {
		padding: 1rem;
		text-align: center;
	}

	.cookies button {
		padding: 0.4rem 0.6rem;
		background-color: #616060;
		color: #ffffff;
		border: none;
		border-radius: 0.3rem;
		font-weight: 600;
		cursor: pointer;
		font-size: 1rem;
		margin: 1rem 1rem 0.4rem 1rem;
		transition: 0.3s ease;
		outline: none;
	}

	.cookies button:hover {
		background-color: #868484;
	}

	.cookies p {
		color: #ffffff;
		font-size: 0.9rem;
	}

	.cookies a:link {
		text-decoration: none;
		color: #868484;
		font-weight: 400;
		font-style: italic;
		transition: 0.2s ease;
	}

	.cookies a:visited {
		text-decoration: none;
		color: #868484;
	}

	.cookies a:hover {
		text-decoration: none;
		color: #534dfa;
		transition: 0.2s ease;
	}

	.cookies a:active {
		text-decoration: none;
		color: #868484;
	}

	.blur { /* Safari 6.0 - 9.0 */
		filter: blur(20px);
	}

	/*WEBSITE LOADER*/
	#websiteLoaderContainer {
		position: absolute;
		width: 100%;
		height: 100vh;
		pointer-events: none;
		margin-top: 0;
		opacity: 1;
		z-index: 1;
	}

	.websiteLoader {
		width: 27%;
		max-width: 300px;
		padding-top: 12vw;
		margin: 0 auto;
		text-align: center;
	}

	.desktop {
		display: inherit;
		font-size: 3.5rem;
	}

	.mobile {
		display: none;
	}

	.textAlignLeft {
		text-align: left;
	}

	.textAlignRight {
		text-align: right;
	}

	.pageDivider {
		width: 100%;
		margin-top: -28px;
		height: 2px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	}

	.floatRight {
		float: right;
	}

	.marginTopSmall {
		margin-top: 40px;
	}

	.aboutMarginTopLarge {
		margin-top: 92px;
	}

	.iconPDF {
		width: 18px;
		height: 29px;
		background-repeat: no-repeat;
		display: inline-block;
		vertical-align: middle;
		padding-left: 8px;
		margin-right: 5px;
		background-size: contain;
		background-image: url(../img/site-img/icon-pdf.png);
	}

	/*PLAY GAME*/
	#playGame {
		display: none;
	}

	.playGameContainer {
		width: 100%;
		z-index: 10;
		position: absolute;
		pointer-events: none;
		opacity: 0;
		animation-name: opacityAnimation;
		animation-duration: 2s;
		animation-delay: 1s;
		animation-fill-mode: forwards;
	}

	.playGameContainerFullScreen {
		background-color: rgba(0, 0, 0, 0.6);
	}

	.playGameContent {
		height: 100%;
		width: 100%;
		position: relative;
	}

	.playGameControlls {
		opacity: 1;
	    width: 100%;
	    height: 100px;
	    display: block;
	    text-align: center;
	    margin: 0 auto;
	    pointer-events: all;
	    position: absolute;
	    bottom: 0;
	}

	.iframeContainer {
		text-align: center;
		pointer-events: all;
	}

	.iframeContainer iframe {
		border: none;
	}

	.gameIframe {
		height: calc(30.55vh * 16 / 9);
	    width: calc(54.3vh * 16 / 9);
	    margin-top: 3vh;
	    max-width: 90vw;
	    max-height: 50.57vw;
	}

	.gameIframeFullScreenMode {
		width: 100vw;
	    height: 100vh;
	    max-width: 100vw;
	    max-height: 100vw;
	    margin-top: 0;
	    top: -70px;
	    left: 0;
	    position: absolute;
	    z-index: 9;
	}

	.fullScreenMode {
		pointer-events: initial;
	    position: absolute;
	    width: 30px;
	    height: 30px;
	    right: 20px;
    	top: 3vh;
	    cursor: pointer;
	    background-image: url(../img/site-img/full-screen-mode.png);
	    background-size: cover;
	    opacity: 0.5;
	    transition: 0.3s ease;
	    z-index: 9;
	}

	.zIndex11 {
		z-index: 11;
	}

	.zIndex12 {
		z-index: 12;
	}

	.hover .fullScreenMode:hover {
		opacity: 1;
	}

	.playGameChooseDevice {
		font-size: 1.1rem;
	    width: 100%;
	    color: #ffffff;
	    text-align: center;
	    position: absolute;
	    left: 0;
	    right: 0;
	    margin: auto;
	    bottom: 0;
	}

	.playGameChooseDevice p {
		opacity: 0.5;
		width: 100%;
		margin-top: 5px;
		float: left;
	}

	.playGameChooseDevice ul {
		position: relative;
	    display: inline-block;
	    bottom: 10px;
	    text-align: center;
	}

	.playGameChooseDevice ul li {
		width: 5.7vw;
	    height: 5.2vw;
	    max-width: 7.2vh;
	    max-height: 6.5vh;
	    float: left;
	    list-style: none;
	    position: relative;
	    margin: 0 20px;
	    z-index: 9;
	}

	.deviceDesktopWhite {
		background-image: url(/img/site-img/device-desktop-black.png);
	    background-size: contain;
	    background-repeat: no-repeat;
	    opacity: 0.5;
	    backface-visibility: hidden;
	    transition: all 0.3s ease;
	}

	.hover .deviceDesktopWhite:hover {
		opacity: 1;
		cursor: pointer;
	}

	.deviceMobileWhite {
		background-image: url(/img/site-img/device-mobile-black.png);
	    background-size: contain;
	    background-repeat: no-repeat;
	    opacity: 0.5;
	    backface-visibility: hidden;
	    transition: all 0.3s ease;
	}

	.hover .deviceMobileWhite:hover {
		opacity: 1;
		cursor: pointer;
	}

	.deviceMobileLandscapeWhite {
		background-image: url(/img/site-img/device-mobile-landscape-black.png);
	    background-size: contain;
	    background-repeat: no-repeat;
	    opacity: 0.5;
	    backface-visibility: hidden;
	    transition: all 0.3s ease;
	}

	.hover .deviceMobileLandscapeWhite:hover {
		opacity: 1;
		cursor: pointer;
	}

	.mobileBackground {
		display: none;
		width: 35vh;
		pointer-events: none;
		margin: 0 auto;
	}

	.mobileBackground img {
		width: 100%;
	}

	.mobileLandscapeBackground {
		display: none;
		width: 75vh;
		pointer-events: none;
		margin: 0 auto;
	}

	.mobileLandscapeBackground img {
		width: 100%;
	}

	.iframeContainer iframe.iframIfMobile {
	    height: calc(29.55vh * 16 / 9);
	    width: calc(15.3vh * 16 / 9);
	    max-width: 25vw;
	    max-height: 48.57vw;
	    border: 15px solid #101010fc;
	    border-radius: 25px;
	    margin-top: 3vh;
	}

	.iframeContainer iframe.iframIfMobileLandscape {
	    border: 15px solid #101010fc;
	    background-color: #000;
	    border-radius: 25px;
	    height: calc(16.55vh * 16 / 9);
	    width: calc(34.3vh * 16 / 9);
	    margin-top: 15vh;
	    max-width: 90vw;
	    max-height: 50.57vw;
	}

	#outcome-iframe {
		width: 80%;
		height: 80%;
		border-radius: 10px;
		left: 10%;
		top: 5%;
		border: none;
		z-index: 9999;
		box-shadow: 0px 0px 184px 0px rgba(0, 0, 0, 0.5);
		position: fixed;
		background-color: rgba(255, 255, 255, 0.98);
	}

	a:link {
		text-decoration: none;
		color: #0900f8;
		font-weight: 400;
		font-style: italic;
		transition: 0.2s ease;
	}

	a:visited {
		text-decoration: none;
		color: #0900f8;
	}

	.hover a:hover {
		text-decoration: none;
		color: #534dfa;
		transition: 0.2s ease;
	}

	a:active {
		text-decoration: none;
		color: #0900f8;
	}

	h1 {
		font-size: 5rem;
		color: #000000;
		font-weight: 300;
		padding-top: 120px;
	}

	h1 span {
		font-weight: 800;
		font-style: italic;
		border-left: 1px solid #000000;
		padding-left: 2rem;
		margin-left: 1rem;
	}

	h2 {
		font-size: 2.5rem;
		font-weight: 300;
		color: #000000;
		margin-bottom: 10px;
		padding-right: 20px;
		display: inline-block;
	}

	.h2WithDivider {
		background-color: #ffffff;
		font-size: 1.5rem;
		font-weight: 900;
	}

	.h2about, .h2career {
		font-size: 1.3rem;
		font-weight: 600;
		display: block;
	}

	h3 {
		font-size: 1.3rem;
		color: #000000;
		font-weight: 600;
		display: inline;
	}

	.h3Games {
		font-size: 1.1rem;
		font-weight: 600;
		float: left;
		width: 100%;
		margin-bottom: 3px;
	}

	.h3careerContact {
		font-weight: 300;
		font-size: 1.4rem;
		float: left;
		margin-top: 4rem;
		margin-bottom: 80px;
	}

	h4 {
		display: inline;
		font-size: 1.3rem;
		color: #000000;
		font-weight: 600;
		padding-right: 6px;
	}

/*NEW MENU START*/
	#header {
		width: 100%;
		height: 70px;
		background-color: #000000;
	}

	header {
		width: 100%;
		height: 70px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		background-color: #000000;
		-webkit-touch-callout: none;
		box-shadow: 0px 2px 4px 0px rgb(16 35 64 / 20%);
	}

	header .operator {
		position: fixed;
	    width: 33px;
	    height: 33px;
	    text-align: left;
	    top: 19px;
	    left: 60px;
	     background-color: #ffffff36; 
	    border-radius: 20px;
	    transition: background 0.3s ease;
	    cursor: pointer;
	}

	header .operator p {
        color: #7f7f7f;
        position: absolute;
        top: 6px;
        left: 25px;
        padding-left: 13px;
        font-style: normal;
        font-size: 1rem;
        font-weight: 700;
        text-transform: capitalize;
    }

	.hover header .operator:hover {
	    background-color: #fbf800;
	}
	.hover header .operator:hover span {
	    filter: initial;
	}

	header .operator span {
	    width: 22px;
	    height: 24px;
	    margin-top: 4px;
	    margin-left: 5px;
	    background-size: cover;
	    display: inline-block;
	    background-image: url(/img/site-img/operator.svg);
	    filter: brightness(0) invert(1);
	    transition: filter 0.3s ease;
	}

	header .headerLogo {
		width: 100%;
	    height: 70px;
	    text-align: center;
	}

	header .headerLogo img {
		height: 70px;
	}

	header .navToggle {
		position: fixed;
		width: 24px;
	    height: 18px;
	    right: 60px;
    	top: 26px;
	    cursor: pointer;
	    transition: background 0.2s ease;
	}

	header .navToggle.open {
	  
	}

	header .navToggle.close .line1, header .navToggle.close .line3 {
	    top: 8px;
	}

	header .navToggle .line1, header .navToggle .line2, header .navToggle .line3 {
		position: absolute;
	    width: 100%;
	    height: 2px;
	    background-color: #fff;
	    left: 0px;
	    transition: all 0.2s ease;
	}

	header .navToggle .line1 {
	    top: 0px;
	}

	header .navToggle .line2 {
	    top: 8px;
	}

	header .navToggle .line3 {
	    top: 16px;
	}

	header nav {
		display: none;
		width: 300px;
		height: 100vh;
	    position: absolute;
	    top: 70px;
	    right: -300px;
	    background-color: #000;
	    transition: right 0.4s ease;
	    overflow: hidden;
	    margin-right: -8px;
    	box-sizing: content-box;
    	overflow-y: scroll;
	}

	header nav.active {
		right: 0px;
	}

	header nav ul {
		width: 100%;
		font-size: 2rem;
		font-weight: 800;
		margin-bottom: 130px;
	}

	header nav ul li {
		width: 80%;
	    margin-left: 10%;
	    margin-bottom: 8px;
	    display: block;
	    transition: color 0.2s ease;
	    border-bottom: 1px solid #ffffff36;
	}

	header nav ul li a:link {
		text-decoration: none;
		color: #ffffff;
		opacity: 0.5;
		font-weight: 800;
		font-style: inherit;
	}

	header nav ul li a:visited {
		text-decoration: none;
		color: #ffffff;
	}

	.hover header nav ul li a:hover {
		text-decoration: none;
		color: #fbf800;
		opacity: 1;
	}

	header nav ul li a:active {
		text-decoration: none;
		color: #ffffff;
	}

	header .closeNav {
		display: none;
		opacity: 0;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color: #000;
	 transition: opacity 0.4s ease;
	}

	header .closeNav.active {
		opacity: 0.2;
	}


/*NEW MENU END*/

	/*SECTION*/
	section {
		width: 100%;
		margin: 0 auto;
	}

	#operator {
		width: 100% !important;
		height: 100vh;
		margin-right: 90%;
		overflow-y: scroll;
		overflow-x: hidden;
		margin-left: -100%;
		position: fixed;
		z-index: 9996;
		background-color: #ffffff;
	}

	/*HOME*/
	#home {
		width: 100%;
		float: left;
		margin-bottom: 90px;
	}

	.logoDesktop {
		position: relative;
		width: 100%;
		height: 56.25vh;
		text-align: center;
		border-bottom: 2px solid #fff;
		background-color: #000000;
		overflow: hidden;
		box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
	}

	.latestGameMobile {
		position: relative;
		width: 100%;
		height: 70vh;
		display: none;
		background-color: #000;
		overflow: hidden;
		cursor: pointer;
	}

	.latestGameMobile img {
		opacity: 0;
	    position: absolute;
	    left: 0;
	    bottom: 0;
	    width: 100%;
	    display: block;
	    transition: opacity 1.6s ease;
	}

	.latestGameMobileLink {
		width: 100%;
	    position: absolute;
	    color: #fbf800;
	    padding: 7px 0;
	    font-size: calc(22px + 12 * ((100vw - 320px) / 680));
	    font-style: italic;
	    font-weight: 400;
	    bottom: -100px;
	    text-align: center;
		transition: bottom 0.6s ease;
	}

	.logoDesktop video {
		position: absolute;
	    left: 50%;
	    top: 50%;
	    transform: translate(-50%, -50%);
	    height: 100%;
	    width: 177.77777778vh;
	    min-width: 100%;
	    min-height: 56.25vw;
	}

	.websiteLoader video {
		width: 100%;
		background-color: #000000;
	}

	#videoInfo {
		position: absolute;
		width: 100%;
		text-align: center;
		color: #ffffff;
		bottom: 30px;
		opacity: 0;
		z-index: 1;
		-moz-user-select: none;
		-webkit-user-select: none;
		user-select: none;
		-webkit-user-drag: none;
		user-drag: none;
		-webkit-touch-callout: none;
	}

	.videoLink {
		color: #fbf800;
		padding: 7px 14px;
		font-size: calc(12px + 6 * ((100vw - 320px) / 680));
		font-style: italic;
		font-weight: 400;
		background-color: #000000a8;
		border-radius: 8px;
	}

	.videoLink a:link {
		text-decoration: none;
		color: #fbf800;
		font-style: italic;
	}

	.videoLink a:visited {
		text-decoration: none;
		color: #fbf800;
	}

	.hover .videoLink a:hover {
		text-decoration: none;
		color: #fbf800;
	}

	.videoLink a:active {
		text-decoration: none;
		color: #fbf800;
	}

	.date {
		font-size: 0.9rem;
		font-weight: 700;
		color: #000;
		display: block;
	}

	.link {
		text-decoration: none;
		color: #0900f8;
		font-style: italic;
		font-size: 1.1rem;
		font-weight: 400;
		cursor: pointer;
		transition: 0.2s ease;
	}

	.hover .link:hover {
		text-decoration: none;
		color: #534dfa;
	}

	.pageHeader {
		position: relative;
		height: 340px;
		text-align: center;
		width: 100%;
		overflow: hidden;
	}

	#homeArticlesContainer {
		width: 100%;
		max-width: 1600px;
		margin: 0 auto;
	}

	.homePageDivider {
		width: 100%;
		height: 90px;
		float: left;
		border-top: 1px solid rgba(0, 0, 0, 0.06);
		background: rgba(16, 35, 64, 0.05);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(16, 35, 64, 0.05)), color-stop(100%, rgba(255, 255, 255, 0)));
		background: linear-gradient(to bottom, rgba(16, 35, 64, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#ffffff', GradientType=0);

	}

	#homeArticlesContainer h2 {
		width: 82%;
		font-size: 1.5rem;
		font-weight: 200;
		padding-right: 0px;
		line-height: 30px;
		background-color: transparent;
		transition: all 300ms ease-out;
	}

	#homeArticlesContainer h2.big {
		text-align: center;
		width: 92%;
		font-weight: 300;
		font-size: 2.2rem;
		margin-top: 77px;
	}

	#homeArticlesContainer p {
		font-size: 1rem;
		padding-top: 5px;
		margin-top: 0px;
		font-weight: 300;
		width: 82%;
		font-style: normal;
		opacity: 0;
		background-color: transparent;
		transition: all 300ms ease-out;
	}

	.homeArticles {
		width: 94%;
    	margin: 0 3%;
    	float: left;
	}

	.homeArticles a:link {
		font-style: normal;
	}

	.homeArticle {
		margin: 1%;
		padding: 2%;
		opacity: 1;
		height: 12.8vw;
    	max-height: 200px;
		position: relative;
		overflow: hidden;
		cursor: pointer;
		z-index: 1;
		box-shadow: 0px 2px 4px 0px rgb(16 35 64 / 20%);
		display: block;
		float: left;
		transition: box-shadow 300ms ease-out;
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-o-backface-visibility: hidden;
	}

	.noCursor {
		cursor: default;
	}

	.hover .homeArticle:hover {
		box-shadow: 0px 10px 15px rgb(16 35 64 / 25%);
	}

	.hover .homeArticle:hover .homeArticleBackground {
		height: 330px;
	}

	.hover .homeArticle:hover .homeArticleContent.news h2 {
		color: #ffffff;
	}

	.newsImageHomeArticle {
		margin: 0 auto;
		margin-top: 30px;
		width: 100%;
		display: none;
	}

	.hover .homeArticleContent.news p {
		font-style: italic;
	}

	.hover .homeArticle:hover .homeArticleContent.news p {
		color: #ffffff;
		opacity: 1 !important;
	}

	.hover .homeArticle:hover .homeArticleReadMore {
		opacity: 1;
		bottom: 2px;
	}

	.hover .homeArticle:hover .homeArticleSlideInImage {
		left: -17%;
	}

	.hover .homeArticle:hover .homeArticleSlideInImagePromo {
		left: -7%;
	}

	.hover .homeArticle:hover .homeArticleSlideInImage img {
		transform: rotate(11deg);
		opacity: 0.1;
	}

	.hover .homeArticle:hover .homeArticleSlideInImagePromo img {
		opacity: 0.07;
	}

	.homeArticle .homeArticleSlideInImage {
		position: absolute;
		width: 120%;
		top: 0;
		left: 0;
		transition: all 400ms ease-out;
	}

	.homeArticle .homeArticleSlideInImage img {
		float: right;
		width: 200px !important;
		transform: rotate(-12deg);
		opacity: 0;
		transition: all 400ms ease-out;
	}

	.homeArticle .homeArticleSlideInImagePromo {
		position: absolute;
		width: 120%;
		top: 0;
		left: 0;
		transition: all 300ms ease-out;
	}

	.homeArticle .homeArticleSlideInImagePromo img {
		width: 290px !important;
		max-width: 500px !important;
		margin-right: 50px;
		margin-top: 80px;
		float: right;
		opacity: 0;
		transform: rotate(11deg);
		transition: all 200ms ease-out;
	}

	.homeArticle.homeArticleSigns {
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		box-shadow: none;
		cursor: inherit;
		pointer-events: none;
	}

	.homeArticle.homeArticleSigns:hover {
		box-shadow: none;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleSignsH2 {
		text-align: center;
		float: left;
		width: 100%;
		font-size: 1.6rem;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleReadMore {
		color: #000000;
		font-size: 0.8rem;
		bottom: 0px;
		transition: 400ms ease;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleReadMore.homeArticleReadMoreActive {
		opacity: 1;
		bottom: 35px;
		transition: 400ms ease;
	}

	.nolimitCitySigns {
		width: 100%;
		max-width: 210px;
		height: 47%;
		margin: 0 auto;
		margin-top: 13%;
		opacity: 0;
		backface-visibility: hidden;
		transform: scale(0, 0);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		transition: 400ms ease-in;
	}

	.nolimitCitySigns.nolimitCitySignsActive {
		opacity: 1;
		transform: scale(1, 1);
		transition: 400ms ease-out;
	}

	.homeArticleContent {
		width: 100%;
		position: absolute;
	}

	.homeArticleGame {
		width: calc(100% + 1px);
		position: absolute;
		top: -1px;
		left: -1px;
	}

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

	.homeArticleReadMore {
		position: absolute;
		opacity: 0;
		width: 100%;
		bottom: -15px;
		color: #ffffff;
		font-weight: 600;
		font-size: 0.8rem;
		left: 0;
		text-align: center;
		text-transform: uppercase;
		transition: all 300ms ease-out;
	}

	.homeArticleReadMore img {
		text-align: center;
		display: inline !important;
		width: 33px !important;
		margin-bottom: 0 !important;
	}

	.homeArticleBackground {
		width: calc(100% + 2px);
		height: 15px;
		position: absolute;
		left: -1px;
		bottom: 0;
		transition: all 300ms ease-out;
	}

	.widthMerch {
		width: 27.33%;
		background: url(/img/site-img/merch-store.jpg) no-repeat;
	    background-size: cover;
	    background-position: top;
	}

	.width25 {
		width: 27.33%;
	}

	.width75 {
		width: 60.66%;
	}

	.purple {
		background-color: #562483;
	}

	.green {
		background-color: #5d9386;
	}

	.colorYellow {
		color: #eef500 !important;
	}

	.colorBlack {
		color: #000000;
	}

	.colorBlackOpacity {
		color: rgb(107, 130, 78);
	}

	.colorWhite {
		color: #ffffff;
	}

	.cardColorNews {
		background-position: center;
		background-image: url("../img/site-img/gradient-news.jpg");
		box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.2);
	}

	.cardColorGames {
		background-position: center;
		background-image: url("../img/site-img/gradient-games.jpg");
		box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.2);
	}

	.cardColorCareer {
		background-position: center;
		background-image: url("../img/site-img/gradient-career.jpg");
		box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.2);
	}

	.cardColorAbout {
		background-position: center;
		background-image: url("../img/site-img/gradient-about.jpg");
		box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.2);
	}

	.cardColorContact {
		background-position: center;
		background-image: url("../img/site-img/gradienttest2.jpg");
		box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.2);
	}

	.hover .homeArticle:hover .cardColorNews {
		box-shadow: inset 0px 3px 8px rgba(0, 0, 0, 0);
	}

	.hover .homeArticle:hover .cardColorCareer {
		box-shadow: inset 0px 3px 8px rgba(0, 0, 0, 0);
	}

	.hover .homeArticle:hover .cardColorAbout {
		box-shadow: inset 0px 3px 8px rgba(0, 0, 0, 0);
	}

	.hover .homeArticle:hover .cardColorContact {
		box-shadow: inset 0px 3px 8px rgba(0, 0, 0, 0);
	}

	/*GAMES*/
	#games {
		width: 100%;
		float: left;
		margin-bottom: 70px;
	}

	#games article {
		width: 92%;
		padding: 0 4%;
		max-width: 1600px;
		margin: 0 auto;
	}

	.gamePromoImage {
		width: 100%;
    	float: left;
    	text-align: center;
    	margin-bottom: 50px;
	}

	.gamePromoImage img {
		width: 92%;
	    max-width: 1100px;
	    padding: 0 4%;
	}

	.searchGame {
		float: left;
		width: 100%;
		text-align: center;
		margin-top: 80px;
	}

	.affiliatesArticle .searchGame {
		margin-top: 60px;
	}

	#operatorContainer .searchGame {
    	margin-top: 60px;
	}

	.searchGame input {
		width: 300px;
	    max-width: 300px;
	    height: 40px;
	    border: 1px solid rgba(0, 0, 0, 0.3);
	    border-radius: 50px;
	    outline: none;
	    padding: 2px 0px;
	    font-size: 1.2rem;
	    text-align: center;
	    font-weight: 300;
	}

	.gamesContainer {
		margin-top: 60px;
	    width: 100%;
	    float: left;
	}

	.previewGamesArticle {
		width: 92%;
    	margin: 0 4% 0 4%;
    	float: left;
	}

	.previewGamesArticle h1 {
		font-size: 2.6rem;
	    text-align: center;
	    padding-bottom: 40px;
	}

	.previewGamesContainer {
		width: 100%;
	    float: left;
	    position: relative;
	}

	.previewGamesWrapper {
		width: 100%;
	    float: left;
	    overflow: hidden;
	}

	.previewGames {
		width: 100%;
	    white-space: nowrap;
	    position: relative;
        transition-duration: 400ms;
	    transform: translateX(0);
	    transition-timing-function: ease;
	}

	.previewGamesLeft, .previewGamesRight {
		position: absolute;
	    width: 48px;
	    height: 48px;
	    top: 0;
	    bottom: 0;
	    margin: auto 0;
	    background-color: #fff;
	    z-index: 1;
	    background-size: 24px 33px;
	    background-repeat: no-repeat;
	    cursor: pointer;
	    border-radius: 80px;
	    box-shadow: 0px 2px 4px 0px rgb(16 35 64 / 20%);
	    transition: box-shadow 300ms ease-out, opacity 300ms ease-out;
	}

	.previewGamesLeft {
		left: -24px;
    	opacity: 1;
    	background-position: 10px center;
		background-image: url(/img/site-img/preview-games-left.png);
	}

	.previewGamesRight {
		right: -24px;
	    opacity: 1;
	    background-position: 16px center;
		background-image: url(/img/site-img/preview-games-right.png);
	}

	.previewGamesLeft:hover, .previewGamesRight:hover {
	    box-shadow: 0px 10px 15px rgb(16 35 64 / 25%);
	}

	.previewGamesLeft.hide, .previewGamesRight.hide {
		opacity: 0;
	}

	.previewGames .game {
		width: 31.8%;
    	max-width: 468px;
		padding: 0 0% 0 2%;
		display: inline-block;
	    float: none;
	    position: relative;
	    margin-bottom: 20px;
	}

	.previewGames .game:first-child {
		padding: 0 0 0 0;
	}

	.game {
		width: 31.33%;
	    padding: 0 1%;
	    margin-bottom: 30px;
	    float: left;
	}

	.game img.openGamePage, .game img.openGameLink {
		width: 100%;
		float: left;
		cursor: pointer;
		box-shadow: 0px 2px 4px 0px rgb(16 35 64 / 20%);
		transition: box-shadow 300ms ease-out;
	}

	.game img.openGamePage:hover, .game img.openGameLink:hover {
		box-shadow: 0px 10px 15px rgb(16 35 64 / 25%);
	}

	.game .gameLicense {
		width: 100%;
		height: 20px;
		float: left;
	}

	.game .gameLicense img {
		width: 50px;
	}

	.gameInfo {
		width: 100%;
		position: relative;
		margin-top: 10px;
		float: left;
	}

	.gameInfo .link {
		position: absolute;
		right: 0;
	}

	.gameInfo img {
		width: 22px;
		right: 0;
		position: absolute;
	}

	.previewGamesAllGames {
		width: 100%;
	    float: left;
	    text-align: center;
	    margin-top: 10px;
	}

	.previewGamesAllGames.link {
	    font-size: 1.4rem;
	}

	.viewAllGames {
		position: absolute;
	    top: calc(50% + 10px);
	    transform: translateY(-50%);
	    width: 94%;
	    text-align: center;
	    font-size: 2.4rem;
	    pointer-events: none;
	    font-style: italic;
	    color: #fff;
	    font-weight: 700;
	}

	.releaseDate {
		display: inline;
		float: left;
		font-size: 0.7rem;
		color: #000000;
		font-weight: 600;
	}

	.releaseTime {
		position: absolute;
		width: 100%;
		text-align: center;
		font-style: italic;
		top: 72px;
		color: #ffffff;
		font-weight: 900;
		font-size: 3.6rem;
	}

	.comingSoonText {
		position: absolute;
		text-align: center;
		color: #000000;
		padding: 7px 16px;
		border-radius: 50px;
		top: 40%;
		left: 31%;
		font-weight: 400;
		background: #ffffff;
		opacity: 0;
		transition: all 400ms ease-out;
	}

	.comingSoon:hover .comingSoonText {
		opacity: 1;
	}

/*DROP DOWN STARTS*/

	.chooseDeviceDropdownContainer {
		width: 100%;
		overflow: hidden;
		position: relative;
		cursor: pointer;
	}

	.chooseDeviceDropdownContainer img {
		width: 99.7%;
		margin-top: 1px;
		margin-left: 1px;
		z-index: 1;
	}

	.chooseDeviceDropdown {
		position: absolute;
		width: 100%;
		height: 0px;
		overflow: hidden;
		text-align: center;
		background-color: #ffffff;
		transition: 0.3s ease;
	}

	.hover .chooseDeviceDropdownContainer:hover .chooseDeviceDropdown {
		height: 92%;
		transition: 0.3s ease;
	}

	.hover .chooseDeviceDropdownContainer:hover .chooseDeviceDropdown p {
		margin-top: 13px;
	}

	.chooseDeviceDropdown p {
		font-size: 0.9rem;
		font-weight: 600;
		color: #000000;
		margin-top: 90px;
		transition: all 400ms ease-out;
	}

	.deviceIconContainerDropdown {
		position: absolute;
		width: 100%;
		padding-top: 8%;
		text-align: center;
	}

	.deviceIconContainerDropdown.morePaddingTop {
		padding-top: 14%;
	}

	.game .deviceDesktop {
		width: 20%;
		opacity: 0.2;
		margin-right: 50px;
		backface-visibility: hidden;
		transition: 0.3s ease;
	}

	.hover .game .deviceDesktop:hover {
		opacity: 1;
		cursor: pointer;
		backface-visibility: hidden;
		transition: 0.3s ease;
	}

	.game .deviceMobile {
		width: 9%;
		opacity: 0.2;
		margin-right: 50px;
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		transition: 0.3s ease;
	}

	.hover .game .deviceMobile:hover {
		opacity: 1;
		cursor: pointer;
		backface-visibility: hidden;
		transition: 0.3s ease;
	}

	.game .deviceMobileLandscape {
		width: 18%;
		opacity: 0.2;
		backface-visibility: hidden;
		vertical-align: top;
		margin-top: 5%;
		transition: 0.3s ease;
	}

	.hover .game .deviceMobileLandscape:hover {
		opacity: 1;
		cursor: pointer;
		backface-visibility: hidden;
		transition: 0.3s ease;
	}
/*DROP DOWN ENDS*/

	/*CAREER*/
	#career {
		width: 100%;
		float: left;
		margin-bottom: 70px;
	}

	.careerHeaderImg {
		background-size: 100%;
		background-repeat: no-repeat;
		height: 44vh;
		opacity: 0.05;
		margin-top: -234px;
		background-image: url("../img/site-img/career-bg.png");
	}

	.careerArticleContainer {
		width: 100%;
	    max-width: 1600px;
	    margin: 0 auto;
	    margin-top: -80px;
	}

	#career article {
		width: 92%;
    	margin: 0 4%;
    	float: left;
	}

	#india {
		padding-top: 100px;
		margin-top: -100px;
		float: left;
		width: 100%;
	}

	#malta {
		padding-top: 160px;
		float: left;
		width: 100%;
	}

	#sweden {
		padding-top: 160px;
		float: left;
		width: 100%;
	}

	#romania {
		padding-top: 160px;
		float: left;
		width: 100%;
	}

	#india .pageDivider, #malta .pageDivider, #sweden .pageDivider, #romania .pageDivider {
		margin-bottom: 80px;
	}

	.pageMenu {
		width: 100%;
		text-align: center;
		margin-bottom: 50px;
		float: left;
	}

	.pageMenu ul {

	}

	.pageMenu ul li {
		width: 70px;
		height: 22px;
		text-align: center;
		display: inline-block;
		margin: 5px 5px;
		border: 1px solid rgba(0, 0, 0, 0.3);
		color: #000;
		padding: 5px 30px;
		border-radius: 50px;
		font-size: 1rem;
		transform: scale(1);
		cursor: pointer;
		transition: all 0.2s ease-in;
		font-style: normal;
		font-weight: 100;
	}

	.pageMenu ul li.active {
		background-color: #000000;
		color: #ffffff;
	}

	.hover .pageMenu ul li:hover {
		background-color: #000000;
		color: #ffffff;
		border: 1px solid rgb(0, 0, 0);
	}

	.careerInfo {
		width: 100%;
		float: left;
	}

	.careerInfo.intro {
		margin-bottom: 100px;
	}

	.careerInfo.india, .careerInfo.sweden {
		width: 50%;
		float: right;
	}

	.careerInfo.malta, .careerInfo.romania {
		width: 50%;
		float: left;
	}

	.careerInfoImg {
		width: 50%;
		float: right;
		text-align: center;
	}

	.careerInfoImg img {
		width: 100%;
		max-width: 625px;
		margin-bottom: 20px;
	}

	.positions {
		width: 102%;
		margin-left: -1%;
		float: left;
		font-size: 1rem;
	}

	.positions h3 {
		font-size: 2.2rem;
		color: #000000;
		font-weight: 300;
		display: block;
		margin-left: 1%;
		margin-bottom: 20px;
		margin-top: 60px;
	}

	.positions img {
		transform: scale(0.8);
		position: relative;
		vertical-align: middle;
		margin-right: 12px;
		margin-left: 12px;
		margin-top: -9px;
	}

	.position {
		width: 27.33%;
	    margin: 1%;
	    padding: 2%;
	    opacity: 1;
	     height: 140px;
	    position: relative;
	    overflow: hidden;
	    color: #000000;
	    cursor: pointer;
	    z-index: 1;
	    box-shadow: 0px 2px 4px 0px rgb(16 35 64 / 20%);
	    display: block;
	    float: left;
	    transition: all 300ms ease-out;
	    backface-visibility: hidden;
	}

	.hover .position:hover {
		box-shadow: 0px 15px 30px rgba(16, 35, 64, 0.2);
		-webkit-box-shadow: 0px 15px 30px rgba(16, 35, 64, 0.2);
		-moz-box-shadow: 0px 15px 30px rgba(16, 35, 64, 0.2);
	}

	.position span {
		font-style: normal;
		font-size: 1rem;
		opacity: 0;
		transition: all 300ms ease-out;
	}

	.position p {
		margin-top: 10px;
		font-style: normal;
		font-weight: normal;
		font-size: 0.8rem;
		opacity: 0;
		transition: all 300ms ease-out;
	}

	.hover .position:hover .positionContent span, .hover .position:hover .positionContent p {
		opacity: 1;
	}

	.hover .position:hover .positionContent h4 {
		font-size: 1.4rem;
		margin-left: 0;
		margin-top: 0;
		width: 84%;
	}

	.hover .position:hover .positionBackground {
		height: 330px;
	}

	.hover .position:hover .positionReadMore {
		opacity: 1;
		bottom: 15px;
	}

	.positionContent {
		width: 100%;
		position: absolute;
	}

	.positionContent p {
		font-size: 0.9rem;
		padding-top: 3px;
		width: 82%;
		opacity: 0;
		font-style: italic;
		background-color: transparent;
		transition: all 300ms ease-out;
	}

	.positionContent h4 {
		display: block;
		margin-left: 21px;
		margin-top: 14px;
		width: calc(84% - 20px);
		font-size: 1.6rem;
		transition: all 200ms ease-out;
	}

	.positionReadMore {
		position: absolute;
		opacity: 0;
		width: 100%;
		bottom: -15px;
		color: #ffffff;
		font-weight: 600;
		font-size: 0.8rem;
		left: 0;
		text-align: center;
		transition: all 300ms ease-out;
	}

	.positionBackground {
		width: calc(100% + 2px);
		height: 6px;
		position: absolute;
		left: -1px;
		bottom: 0;
		transition: all 200ms ease-out;
	}

	.cardColorDeveloper {
		background-color: #ffd300;
	}

	.cardColorGraphic {
		background-color: #017ffe;
	}

	.cardColorSales {
		background-color: #fd0147;
	}

	.hover .position:hover:before {
		top: 0;
	}

	/*ABOUT*/
	#about {
		width: 100%;
		float: left;
		margin-bottom: 70px;
	}

	.aboutHeaderImg {
		background-size: 100%;
		background-repeat: no-repeat;
		height: 44vh;
		opacity: 0.05;
		margin-top: -234px;
		background-image: url("../img/site-img/about-bg.png");
	}

	#about article {
		width: 92%;
	    padding: 0 4%;
		float: left;
		margin-top: 80px;
		margin-bottom: 2rem;
	}

	.aboutInfoContainer {
		float: left;
		margin-top: 30px;
		margin-bottom: 60px;
	}

	.aboutInfo {
		width: 48%;
		padding-right: 2%;
		float: left;
	}

	.aboutArticleContainer {
		width: 100%;
	    max-width: 1600px;
	    margin: 0 auto;
	    margin-top: -80px;
	}

	.aboutFullWidthColumn {
		width: 100% !important;
		-moz-column-count: 2;
		column-count: 2;
	}

	.aboutInfoImg {
		width: 50%;
		float: left;
	}

	.aboutInfoImg img {
		width: 100%;
	}

	.aboutInfo h3 {
		font-size: 1.8rem;
		color: #000000;
		font-weight: 100;
		display: block;
		margin-bottom: 20px;
	}

	.aboutOurFriends {
		width: 100%;
		text-align: center;
		margin-top: 80px;
	}

	.aboutOurFriends h2 {
		font-size: 2.1rem;
		font-weight: 300;
		font-style: normal;
		color: #000;
		margin-bottom: 40px;
	}

	.ourFriends {
		width: 100%;
		float: left;
		text-align: center;
	}

	.ourFriends h2, .ourFriends h3 {
		margin-bottom: 30px;
		text-align: left;
	}

	.showAllFriends {
		float: left;
		width: 100%;
		text-align: center;
	}

	.showAllFriends p {
		font-size: 1.5rem;
		margin-top: 30px;
	}

	/*ABOUT*/
	#contact {
		width: 100%;
		float: left;
		margin-bottom: 40px;
	}

	#contact h2 {
		font-size: 1.5rem;
		font-weight: 600;
		font-style: italic;
		width: 100%;
		margin-top: 1rem;
	}

	#contact h3 {
		font-size: 1.2rem;
		font-weight: 500;
		font-style: italic;
	}

	.contactHeaderImg {
		background-size: 100%;
		background-repeat: no-repeat;
		height: 44vh;
		opacity: 0.05;
		margin-top: -234px;
		background-image: url("../img/site-img/contact-bg.png");
	}

	#contact article {
		width: 100%;
	    max-width: 1600px;
	    margin: 0 auto;
	    margin-top: 50px;
	}

	.contactInfoContainer {
		width: 100%;
	}

	.contactInfo {
		width: 42%;
		margin: 0 4%;
		float: left;
		margin-bottom: 40px;
	}

	.map {
		width: 100%;
		height: 240px;
		float: left;
		pointer-events: auto;
	}

	.address {
		width: 100%;
		float: left;
		margin-bottom: 20px;
	}

	.invoice {
		width: 100%;
		float: left;
	}

	.invoice p {
		margin-top: 4px;
	}

	.contactFooter {
		width: 100%;
	    float: left;
	    text-align: center;
	    padding-bottom: 40px;
	}

	.friends {
		width: 100%;
    	float: left;
	}

	.friends ul {
		width: 100%;
    	text-align: center;
	}

	.friends ul li {
		width: 170px;
	    list-style: none;
	    display: inline-block;
	    margin: 2% 4%;
	}

	.friends ul li img {
		width: 100%;
	}

	.articleContainerSmall {
		width: 92%;
	    max-width: 900px;
	    padding: 0 4%;
	    margin: 0 auto;
	    position: relative;
	}

	.articleWrapperSmall {
		width: 100%;
	    float: left;
	    margin-bottom: 80px;
	}

	.articleContainerSmall p {
	    margin-bottom: 40px;
	}

	.articleContainerSmall h2 {
		margin-bottom: 10px;
    	margin-top: 30px;
	}

	.articleContainerSmall h2:first-child {
    	margin-top: 0;
	}

	footer {
    	width: 100%;
    	float: left;
    	overflow-x: hidden;
		background-color: #f8f8f8;
		text-align: center;
	}

	footer .footerContainer {
    	width: 100%;
	    max-width: 1600px;
	    margin: 0 auto;
	}

	footer .footerWrapper {
    	width: 92%;
	    margin: 0 4%;
	    float: left;
	    padding-top: 20px;
	}

	footer .footerMenu {
		float: left;
	    width: 100%;
	    font-size: 1rem;
	    margin-top: 20px;
	}

	footer .footerMenu ul {
		float: left;
	    width: 100%;
	}

	footer .footerMenu ul li {
	    list-style: none;
	    display: inline;
	    padding-right: 10px;
	    margin-right: 10px;
	    border-right: 1px solid #868484;
	}

	footer .footerMenu ul li:last-child {
	    border-right: none;
	}

	footer .footerMenu a:link {
		text-decoration: none;
		color: #545454;
		font-weight: 400;
		font-style: normal;
		transition: 0.2s ease;
	}

	footer .footerMenu a:visited {
		text-decoration: none;
		color: #868484;
	}

	footer .footerMenu a:hover {
		text-decoration: none;
		color: #534dfa;
		transition: 0.2s ease;
	}

	footer .footerMenu a:active {
		text-decoration: none;
		color: #868484;
	}

	footer .socialMedia {
		width: 100%;
		float: left;
	}

	footer .socialMedia img {
		margin-left: 10px;
	    width: 35px;
	    border-radius: 100px;
	    transition: opacity 0.4s ease;
	}

	footer #licenseContainer {
	    float: left;
	    width: 100%;
	    margin-top: 10px;
	    margin-bottom: 100px;
	}

	footer .licenseText {
	    width: 100%;
	    float: left;
	    margin-top: 10px;
	}

	footer .licenseText p {
	    font-size: 0.6rem;
	    font-weight: 400;
	    color: #868484;
	}

	footer .licenseLogos {
		width: 100%;
		float: left;
	}

	footer .licenseLogos img {
		height: 20px;
	    margin: 10px 16px 0 0px;
	    opacity: 0.5;
	    transition: opacity 0.4s ease;
	    filter: grayscale(100%);
	}

	footer .licenseLogos.big img {
		height: 55px;
	}

	.hover footer .licenseLogos img:hover {
		opacity: 0.9; /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
	}

	footer .footerLogos {
		width: 100%;
	    float: left;
	    margin-top: 20px;
	}

	footer .footerLogo {
		width: 50%;
		float: left;
	}

	footer .footerLogo:first-child {
		text-align: right;
	}

	footer .footerLogo:last-child {
		text-align: left;
	}

	footer .footerLogo img {
		width: 156px;
		margin: 0 5px;
	}

	footer .footerLogo.evo img {
		width: 136px;
	}

	footer .footerLogo p {
		margin-left: 3px;
	    margin-top: -6px;
	    font-size: 0.8rem;
	}

	footer .footerLogo a:link {
		text-decoration: none;
		color: #000;
		font-weight: 400;
		font-style: normal;
		transition: 0s ease;
	}

	footer .footerLogo a:visited {
		text-decoration: none;
		color: #000;
	}

	footer .footerLogo a:hover {
		text-decoration: none;
		color: #000;
		transition: 0s ease;
	}

	footer .footerLogo a:active {
		text-decoration: none;
		color: #000;
	}
}

@media only screen and (max-width: 1600px) and (min-width: 100px) {
	.previewGamesArticle {
	    width: 100%;
	    margin: 0;
	}

	.previewGames .game:first-child {
	    padding: 0 0 0 4%;
	}

	.previewGames .game {
	    width: 29.2%;
	}

	.previewGamesLeft, .previewGamesRight {
	    width: 3vw;
	    height: 3vw;
	    background-size: 1.5vw 2.1vw;
	}

	.previewGamesLeft {
	    left: 2.4vw;
	    background-position: 0.6vw center;
	}

	.previewGamesRight {
	    right: 2.4vw;
	    background-position: 1vw center;
	}

	.viewAllGames {
	    font-size: calc(12px + 6 * ((100vw - -1370px) / 680));
	}
}

@media only screen and (max-width: 1270px) and (min-width: 100px) {

	/*################################ HOME ################################""*/

	#homeArticlesContainer h2 {
		font-size: 1.3rem;
		line-height: 27px;
	}

	#homeArticlesContainer h2.big {
		font-size: 2.3rem;
		margin-top: 24px;
	}

	#homeArticlesContainer p {
		display: none;
	}

	.nolimitCitySigns {
		max-width: 180px;
		height: 47%;
		margin-top: 16%;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleReadMore.homeArticleReadMoreActive {
		bottom: 15px;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleSignsH2 {
		font-size: 1.3rem;
	}

	.releaseTime {
		top: 50px;
		font-size: 3rem;
	}

	.homeArticle .homeArticleSlideInImagePromo img {
		width: 200px !important;
		margin-top: 40px;
	}

	.hideOnSmallDesktopAndBelow {
		display: none;
	}

	.hideOnMediumDesktop {
		display: none;
	}

	.hideOnMediumDesktopAndDown {
		display: none;
	}

	.width50 {
		width: 489px;
	}

	/*################################ HOME END ################################""*/
	/*################################ GAMES ################################""*/
	.gamePromoImage img {
		max-width: 920px;
	}

	.h3Games {
	    font-size: 0.92rem;
	}

	.gameInfo img {
		width: 18px;
		margin-top: 4px;
	}

	/*################################ GAMES END ################################""*/
	/*################################ CAREER ################################""*/

	/*################################ CAREER END ################################""*/

	.comingSoonText {
	    left: 28%;
	    font-size: 0.8rem;
	}
}

@media only screen and (max-width: 1025px) and (min-width: 100px) {
	body {
		font-size: 1.1rem;
		color: #000000;
		-webkit-tap-highlight-color: rgba(0,0,0,0);
		-webkit-tap-highlight-color: transparent;
	}

	header .operator {
	    left: 20px;
	}

	header .navToggle {
	    right: 20px;
	}

	header nav {
		width: calc(100vw + 10px);
    	text-align: center;
	    right: -100vw;
	}

	header nav ul {
		margin-top: 50px;
	}

	.hideOnMobileAndTablet {
		display: none;
	}

	.hideOnMediumDesktop {
		display: inline-block;
	}

	.desktop {
		display: none;
	}

	.mobile {
		display: inherit;
	}

	h1 {
		padding-top: 80px;
		font-size: 2.7em;
	}

	h2 {
		font-size: 2.2rem;
	}

	.h2WithDividerContainer {
		text-align: center;
	}

	.h2WithDivider {
		padding-left: 20px;
	}

	.h2about, .h2career {
		font-size: 1.2rem;
	}

	.h3careerContact {
		font-size: 1.3rem;
		margin-top: 1rem;
	}

	.link {
		font-size: 1.1rem;
	}

	.navFooter {
		width: 100%;
		height: 54px;
		font-size: 1.7rem;
		bottom: 0;
		top: initial;
		text-align: center;
		background-color: #000;
		position: fixed;
	}

	.playGameContent {
		top: 0;
	}

	.playGameContainer {
		height: 87vh;
		margin-top: 0;
	}

	.playGameControlls {
		display: none;
	}

	.playGameChooseDevice {
		display: none;
	}

	.mobileBackground {
		display: none !important;
	}

	.iframeContainer {
		width: 100%;
		text-align: left;
		margin-top: 0;
	}

	.iframeContainer iframe.gameIframe {
		width: 100vw;
		height: 70vh;
		max-width: 100vw;
		max-height: 87vh;
		position: absolute;
		margin-left: 0;
		top: 0;
		left: 0;
		margin-top: 0;
		border: none;
		border-radius: 0;
	}

	.iframeContainer iframe.iframIfMobile {
		width: 100vw;
		height: 70vh;
		max-width: 100vw;
		max-height: 87vh;
		position: absolute;
		margin-left: 0;
		top: 0;
		left: 0;
		margin-top: 0;
		border: none;
		border-radius: 0;
	}

	.iframeContainer iframe.iframIfMobileLandscape {
		width: 100vw;
		height: 70vh;
		max-width: 100vw;
		max-height: 80vh;
		position: absolute;
		margin-left: 0;
		top: 0;
		left: 0;
		margin-top: 0;
		border: none;
		border-radius: 0;
	}

	/*################################ HOME ################################""*/

	.homePageDivider {
		height: 50px;
	}

	.homeArticle {
		height: 21vw;
		max-height: 260px;
	}

	.homeArticle.homeArticleSigns {
		height: 200px;
		width: 92%;
	}

	.nolimitCitySigns {
		max-width: 210px;
		height: 57%;
		margin-top: 3%;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleReadMore {
		bottom: 25px;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleReadMore.homeArticleReadMoreActive {
		bottom: 65px;
	}

	.homeArticleReadMore {
		opacity: 0;
	}

	.widthMerch {
		width: 94%;
	}

	.width25 {
		width: 44%;
	}

	.width50 {
		width: 478px;
	}

	.width75 {
		width: 94%;
	}

	/*################################ HOME END ################################""*/
	/*################################ GAMES ################################""*/
	.gamesHeader {
		height: 13rem;
	}

	.previewGames .game {
	    width: 44.7%;
	}

	.previewGamesLeft, .previewGamesRight {
	    display: none;
	}

	.gameInfo {
		margin-top: 0;
	}

	.previewGamesAllGames.link {
	    font-size: 1.2rem;
	}

	.comingSoonText {
		left: 28%;
		font-size: 0.8rem;
	}

	.gameInfo img {
		width: 18px;
		margin-top: 4px;
	}

	.h2WithDivider {
		padding-left: 20px;
		font-size: 1.3rem;
		margin-bottom: 12px;
	}

	.game {
	    width: 48%;
	}

	.h3Games {
		font-size: 0.92rem;
	}

	/*################################ GAMES END ################################""*/
	/*################################ CAREER ################################""*/

	.careerInfo {
		width: 100%;
	}

	.careerInfoImg {
		width: 100%;
	}

	.careerInfoImg img {
	    max-width: 500px;
	}

	.careerInfo.india, .careerInfo.sweden, .careerInfo.malta, .careerInfo.romania {
		width: 100%;
		float: left;
	}

	.position {
		width: 44%;
	}

	.positions h3 {
		font-size: 1.8rem;
	}

	.positionContent h4 {
		font-size: 1.3rem;
	}

	/*################################ CAREER END ################################""*/
	/*################################ ABOUT ################################""*/
	#about article {
	    margin-bottom: 0;
	}
	.aboutHeader {
		height: 13rem;
	}

	.aboutInfo {
		width: 100%;
	}

	.aboutInfoContainer {
		margin-bottom: 30px;
		margin-top: 0px;
	}

	.aboutInfoImg {
		width: 100%;
		text-align: center;
	}

	.aboutInfoImg img {
	    width: 80%;
	}

	.aboutFullWidthColumn {
		-moz-column-count: 1;
		column-count: 1;
	}

	.aboutMarginTopLarge {
		margin-top: 10px;
		margin-bottom: 20px;
	}

	.aboutOurFriends h2 {
		font-size: 1.6rem;
	}

	.friends ul li {
	    width: 160px;
	}

	.showAllFriends p {
		font-size: 1.3rem;
	}

	/*################################ ABOUT END ################################""*/

	.pageHeader, #career .pageHeader {
		height: 218px;
	}
}

@media only screen and (max-width: 780px) and (min-width: 100px) {

	.h2about {
		font-size: 1.1rem;
		font-weight: 700;
		display: block;
	}

	h3 {
		font-size: 1.3rem;
		margin-bottom: 0.2rem;
	}

	h4 {
		font-size: 1rem;
	}
}

@media only screen and (max-width: 594px) and (min-width: 100px) {
	.hideOnMobile {
		display: none;
	}

	body {
		font-size: 1rem;
	}

	.link {
		font-size: 1rem;
	}

	.iconPDF {
		width: 13px;
		height: 23px;
	}

	h1 {
		font-size: 2em;
	}

	h1 span {
		padding-left: 1rem;
		margin-left: 0.6rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	.h2about, .h2career {
		font-size: 1.1rem;
	}

	#header {
	    height: 60px;
	}

	header {
	    height: 60px;
	}

	header .operator {
	    top: 14px;
	}

	header .operator p {
	    top: 7px;
	    font-size: 0.8rem;
	}

	header .headerLogo {
	    height: 60px;
	}

	header .headerLogo img {
	    height: 60px;
	}

	header .navToggle {
	    top: 21px;
	}

	header nav {
	    top: 60px;
	}

	.logoDesktop {
		display: none;
	}

	.latestGameMobile {
		width: 100%;
		display: block;
	}

	#websiteLoaderContainer {
		display: none;
	}

	.pageDivider {
		width: 120%;
		margin-left: -10%;
	}

	/*################################ HOME ################################""*/
	.homePageDivider {
		display: none;
	}

	#homeArticlesContainer h2 {
		font-size: 1.6rem;
		line-height: 36px;
		font-weight: 700;
		width: 100%;
		margin-bottom: 0px;
		margin-top: 10px;
	}

	.homeArticles {
		max-width: 88%;
		margin: 0 6%;
	}

	.homeArticle.widthMerch {
	    width: 100%;
	    height: 32.5vw;
	    margin-top: 30px;
	}

	.homeArticle {
		height: auto;
		max-height: initial;
		border-radius: 0;
		box-shadow: none;
		border-bottom: 1px solid #d6d0d0;
		padding: 30px 0;
		margin: 0;
	}

	.homeArticle.homeArticleSigns {
		width: 130%;
		background: rgba(0, 0, 0, 0.01);
		margin-left: -15%;
		padding-top: 60px;
		height: 180px;
		margin-top: -5px;
		box-shadow: inset 0 10px 34px rgba(0, 0, 0, 0.13);
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}

	.newsImageHomeArticle {
		display: block;
	}

	.homeArticleBackground {
		display: none;
	}

	.homeArticleContent {
		position: initial;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleSignsH2 {
		font-size: 1.5rem;
	}

	#homeArticlesContainer h2.big {
		font-size: 1.8rem;
	}

	.homeArticle .homeArticleSlideInImage {
		display: none;
	}

	.nolimitCitySigns {
		max-width: 160px;
		margin-top: 36px;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleReadMore {
		bottom: 35px;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleReadMore.homeArticleReadMoreActive {
		bottom: 55px;
	}

	#homeArticlesContainer .homeArticleSigns .homeArticleReadMore {
		font-style: normal;
		opacity: 0;
		font-weight: 600;
		font-size: 1.1rem;
		text-align: center;
	}

	.newsImageHomeArticle {
	    margin-top: 0px;
	}

	.homeArticleReadMore {
		opacity: 1;
		bottom: 20px;
		color: #0900f8;
		font-size: 1rem;
		font-style: italic;
		font-weight: 400;
		text-align: left;
		text-transform: none;
	}

	.width25 {
		width: 100%;
	}

	.width50 {
		width: 100%;
	}

	.width75 {
		width: 100%;
	}

	/*################################ HOME END ################################""*/
	/*################################ GAMES ################################""*/
	.gamePromoImage {
		display: none;
	}

	#operatorContainer .searchGame {
	    margin-top: 40px;
	}

	.searchGame input {
		width: 80%;
	    font-size: 1rem;
	}

	.previewGamesArticle h1 {
	    font-size: 1.8rem;
	    padding-bottom: 20px;
	}

	.previewGames .game {
		width: 88%;
		max-width: none;
	}

	.previewGames .game:first-child {
	    padding: 0 0 0 6%;
	}

	.viewAllGames {
	    font-size: 7vw;
	}

	.previewGamesAllGames.link {
	    font-size: 1.1rem;
	}

	.game {
		width: 100%;
	    margin-bottom: 30px;
	    padding: 0;
	}

	.comingSoonText {
		width: 140px;
		left: calc(50% - 80px);
		font-size: 1.1rem;
	}

	.gameInfo {
		display: none;
	}

	/*################################ GAMES END ################################""*/
	/*################################ CAREER ################################""*/

	#career article {
		max-width: 88%;
		margin-left: 6%;
		padding: 0;
	}

	.pageMenu ul li {
		width: 60px;
		height: 20px;
		font-size: 0.9rem;
		padding: 5px 20px;
	}

	.careerInfo {
		width: 100%;
	}

	.careerInfoImg {
		width: 100%;
	}

	#malta, #sweden, #romania {
	    padding-top: 110px;
	}

	.h3careerContact {
		font-size: 1.1rem;
		margin-top: 2rem;
	}

	.position {
		width: 94%;
	    height: 120px;
	    margin: 3%;
	    padding: 0%;
	}

	.positions img {
		transform: scale(0.6);
		margin-right: 2px;
		margin-left: 2px;
	}

	.positions h3 {
		font-size: 1.6rem;
	}

	.positionContent h4 {
		font-size: 1.1rem;
	}

	/*################################ CAREER END ################################""*/
	/*################################ ABOUT ################################""*/
	#about article {
		margin-bottom: -2rem;
	}

	.aboutInfoImg img {
		width: 100%;
	}

	.aboutOurFriends h2 {
		font-size: 1.3rem;
	}

	/*################################ ABOUT END ################################""*/
	/*################################ CONTACT ################################""*/
	#contact h2 {
		font-size: 1.2rem;
	}

	.contactInfo {
	    width: 92%;
	}
	/*################################ CONTACT END ################################""*/
	.pageHeader, #career .pageHeader {
		height: 198px;
	}

	.gamesHeader {
		height: 9rem;
	}

	.aboutHeader {
		height: 9rem;
	}

	.contactHeader {
		height: 9rem;
	}

	.friends ul li {
		width: 140px;
	    margin: 4% 4%;
	}

	.showAllFriends p {
		margin-top: 20px;
    	font-size: 1.1rem;
	}

}

@media (max-aspect-ratio: 2/5) {
  	.latestGameMobile {
		height: auto;
	}
	.latestGameMobile img {
	    position: initial;
	}
}