@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700|Work+Sans:300,400,700,900");
* {
    outline-width: 0;
    font-family: "Montserrat" !important;
}

body, html {
    background: #23272A;
    background-size: cover !important;
    background: radial-gradient(farthest-side ellipse at 10% 0, #333867 20%, #17193b);
	background: url( ../img/bg/orbitverse.jpg );
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

@font-face {
    font-family: 'text-security-disc';
    src: url('fonts/text-security-disc.eot');
    src: url('fonts/text-security-disc.eot?#iefix') format('embedded-opentype'),
        url('fonts/text-security-disc.woff') format('woff'),
        url('fonts/text-security-disc.ttf') format('truetype'),
        url('images/text-security-disc.svg#text-security') format('svg');
}
 
input {
    font-family: 'text-security-disc';
}

.link
{
    cursor: pointer;
}

#overlay 
{
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover !important;
    background-color: #000;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	display: none;
	z-index: 5;
}

/*--- AJAX---*/
#loading-layer 
{
	display: block !important;
	background-color: #000;
	background-color: rgba(0,0,0,0.5);
	z-index: 6 !important;
    position: fixed;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0;
	width: 100%; 
	height: 100%; 
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
}
#loading-layer:before, #loading-layer:after 
{
	content: "";
	border-radius: 50%;
	background-color: #7a25b6;
	position: absolute;
	left: 50%; 
	top: 50%;
}
#loading-layer:before 
{
	width: 100px; 
	height: 100px;
	margin: -50px 0 0 -50px;
}
#loading-layer:after 
{
	width: 40px; 
	height: 40px;
	background-color: #25a5b6;
	margin: -20px 0 0 -20px;
}
#loading-layer:before 
{
	animation: load1 1s infinite ease;
}
#loading-layer:after 
{
	animation: load2 1s infinite -0.32s ease;
}
@keyframes load1 {0%, 80%, 100% { transform: scale(1,1); } 40% { transform: scale(.6,.6); }}
@keyframes load2 {0%, 80%, 100% { transform: scale(1,1); } 40% { transform: scale(.5,.5); }}

#container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#inviteContainer {
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  box-shadow: 1px 1px 10px 10px rgba(255, 255, 255, 0.15);
}
#inviteContainer .acceptContainer {
  padding: 45px 30px;
  box-sizing: border-box;
  width: 400px;
  margin-left: -400px;
  overflow: hidden;
  height: 0;
  opacity: 0;
}
#inviteContainer .acceptContainer.loadIn {
  opacity: 1;
  margin-left: 0;
  transition: 0.5s ease;
  height: auto;
}
#inviteContainer .acceptContainer:before {
  content: "";
  background-size: cover !important;
  box-shadow: inset 0 0 0 3000px rgba(40, 43, 48, 0.75);
  filter: blur(10px);
  position: absolute;
  width: 150%;
  height: 150%;
  top: -50px;
  left: -50px;
}

form {
  position: relative;
  text-align: center;
  height: 100%;
}
form h1 {
  margin: 0 0 15px 0;
  font-family: "Work Sans" !important;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  left: -30px;
  position: relative;
  text-transform: uppercase;
  transition: 0.5s ease;
}
form h1.loadIn {
  left: 0;
  opacity: 1;
}

#language {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 200px;
	height: 200px;
	background: #121212;
	box-shadow: 1px 1px 10px 10px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	padding: 10px;
	margin: auto;
	opacity: 0;
	z-index: 2;
	display: none;
}
#language.loadIn {
	opacity: 0.9;
    transition: 0.8s ease;
}
#language a {
	color: 	#00FFFF;
	text-decoration: none;
	padding: 5px;
	display: block;
}
#language h2 {
    font: 500 14px/32px DINPro-Regular,Arial,Helvetica Neue,Sans-Serif;
	color: #aaa;
	text-transform: uppercase;
	
}
#language button {
	position: absolute;
	right: 15px;
	bottom: 15px;
    background: #ADADAD;
	border: 0;
	border-radius: 2px;
	padding: 5px;
	cursor: pointer;
}

@media only screen and (max-width: 600px) 
{
  #header-success, #header-message, #header-error {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 46px;
  }
  
  #header-success {
    background: #009900;
  }
  
  #header-message, #header-error {
    background: #000;
  }

  #header-message .text, #header-error .text, #header-success .text {
    position: relative;
    top: 14px;
    left: 30px;
    font: normal 20px/1 DINPro-Regular,Sans-Serif,Trebuchet,Helvetica,Arial,sans-serif;
    color: #fff;
	float: left;
    text-align: left;
    text-transform: uppercase;
  }
  #content-message
  {
      width: 350px;
	  height: auto;
  }
}

@media only screen and (min-width: 600px) 
{
  #header-message, #header-success, #header-error {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 68px;
  }
  
  #header-success {
    background: #009900;
  }
  
  #header-message, #header-error {
    background: #000;
  }

  #header-message .text, #header-error .text, #header-success .text {
    position: relative;
    top: 16px;
    left: 80px;
    font: normal 36px/1 DINPro-Regular,Sans-Serif,Trebuchet,Helvetica,Arial,sans-serif;
    color: #fff;
	float: left;
    text-align: left;
    text-transform: uppercase;
  }
  #content-message
  {
      width: 550px;
	  height: auto;
  }
}
#content-message, #content-success, #content-error {
  position: absolute;
  top: 250px;
  color: #fff;
}
#content-message a {
  color: #4db8ff;
  text-decoration-skip-ink: auto;
  transition: color 150ms ease;
}

.formContainer {
  text-align: left;
}
.formContainer .formDiv {
  margin-bottom: 30px;
  left: -25px;
  opacity: 0;
  transition: 0.5s ease;
  position: relative;
}
.formContainer .formDiv.loadIn {
  opacity: 1;
  left: 0;
}
.formContainer .formDiv:last-child {
  padding-top: 10px;
  margin-bottom: 0;
}
.formContainer p {
  margin: 0;
  font-weight: 700;
  color: #aaa;
  font-size: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.formContainer input[type=text], .formContainer input[type=password], .formContainer input[type=email], .select-birthday, .select-gender, .select-birthday, .select-language  {
  background: transparent;
  border: none;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.15);
  padding: 15px 0;
  box-sizing: border-box;
  color: #fff;
  width: 100%;
}
.formContainer input[type=text]:focus, .formContainer input[type=password]:focus, .formContainer input[type=email]:focus, .select-birthday:focus, .select-gender:focus, .select-language:focus {
  box-shadow: inset 0 -2px 0 #fff;
}
.select-birthday option, .select-gender option, .select-language option {
  background: #121212;
  opacity: 0.9;
}

.formDiv p {
  text-transform: uppercase;
}

#recoverbox, #registerbox, #registerbox2, #accessbox, #intex-account-box {
  display: none;
}

.successMessage {
  color: #00FF00;
}
.errorMessage {
  color: #f04747;
}

.logoContainer {
  padding: 45px 35px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: scale(1, 1);
}
.logoContainer img {
  width: 150px;
  margin-bottom: -5px;
  display: block;
  position: relative;
  border-radius: 50px;
  box-shadow: 1px 1px 10px 10px rgba(0, 0, 0, 0.15);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}
.logoContainer img:first-child {
  width: 150px;
}
.logoContainer .text {
  padding: 25px 0 10px 0;
  margin-top: -70px;
  opacity: 0;
}
.logoContainer .text.loadIn {
  margin-top: 0;
  opacity: 1;
  transition: 0.8s ease;
}
.logoContainer .logo {
  position: relative;
  top: -20px;
  opacity: 0;
}
.logoContainer .logo.loadIn {
  top: 0;
  opacity: 1;
  transition: 0.8s ease;
}
.logoContainer:before {
  /*content: "";*/
  background-size: cover !important;
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150%;
  height: 150%;
  filter: blur(10px);
  box-shadow: inset 0 0 0 3000px rgba(255, 255, 255, 0.8);
}

.forgotPas, .acpLink, .agreetos, .required_age, .required_fivochat {
  color: #aaa;
  opacity: 0.8;
  text-decoration: none;
  font-weight: 700;
  font-size: 10px;
  margin-top: 15px;
  display: block;
  transition: 0.2s ease;
}
.acpLink {
  position: absolute;
  top: 59px;
  right: 0;
}
.forgotPas:hover, .agreetos:hover, .required_age:hover, .acpLink:hover {
  opacity: 1;
  color: #fff;
}

.acceptBtn, .refuseBtn, .acpBtn, .nextBtn, div.nextBtn, .closeBtn {
  width: 100%;
  box-sizing: border-box;
  background: #674C8E;
  border: none;
  color: #fff;
  padding: 20px 0;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
   user-select: none;
}
.acceptBtn:hover, .acpBtn:hover {
  background: #623E7E;
}
.refuseBtn {
  background: #ff9933;
}
.refuseBtn:hover {
  background: #ff8000;
}
.nextBtn, .closeBtn {
  background: #0066ff;
}
.closeBtn {
  padding-left: 10px;
  padding-right: 10px;
}
.nextBtn:hover, .closeBtn:hover {
  background: #0052cc;
}
div.nextBtn {
  background: #0066ff;
}
div.nextBtn:hover {
  background: #0052cc;
}

.register {
  color: #aaa;
  font-size: 12px;
  padding-top: 15px;
  display: block;
}
.register a {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
  box-shadow: inset 0 -2px 0 transparent;
  padding-bottom: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.register a:hover {
  box-shadow: inset 0 -2px 0 #fff;
}

#footer, #tfooter {
	position:absolute;
	top: 800px;
	bottom: 50px;
	left: 10px;
	right: 10px;
    max-width: 800px;
    height: 60px; 
    color: #aaa;
	padding-bottom: 10px;
	margin: auto;
	opacity: 0;
	display: none;
}
@media only screen and (max-width: 600px) 
{
    #tfooter {
	    top: 22000px;
		display: block;
    }
}
@media only screen and (min-width: 600px) 
{
	#tfooter {
	    top: 15500px;
		display: block;
    }
}
#footer.loadIn, #tfooter.loadIn {
  opacity: 1;
  transition: 0.5s ease;
}
#footer .foo-top, #tfooter .foo-top {
	width: 100%;
}
#footer .foo-top .language .link, #footer .links .link, #tfooter .foo-top .language .link, #tfooter .links .link {
    color: #aaa;
	text-decoration: none;
}
#footer .foo-top .language .link:hover, #footer .links .link:hover, #tfooter .foo-top .language .link:hover, #tfooter .links .link:hover {
    color: #fff;
}
#footer .foo-top .language, #tfooter .foo-top .language {
    float: left;
}
#footer .foo-top .language b, #tfooter .foo-top .language b {
	vertical-align: center;
}
#footer .foo-top .links, #tfooter .foo-top .links {
    text-align: right;
}
#footer .copyright, #tfooter .copyright {
	width: 100%;
    text-align: right;
	padding-top: 10px;
}

#cookies-popup {
	position: fixed;
	left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
	background: #000;
    color: #fff;
	padding: 10px;
	z-index: 1;
}

#cookies-popup .cookies-message {
	width: 65%;
	float: left;
	padding-top: 5px;
}

#cookies-popup .cookies-message p {
	padding-top: 5px;
	padding-left: 10px;
	margin: 0;
	font-size: 14px;
}

#cookies-popup .cookies-button {
	min-width: 150px;
	max-width:15%;
	float: right;
}

#cookies-popup a {
	width: 105px;
    padding: 15px;
	margin: 10px;
    text-align: center;
	display: block;
}