/****** LIGHTBOXES ******/
/************************/


/* lightbox common */
.dark_overlay {
  display: block;
  position: fixed;
  z-index: 8;
  top:0;
  left:0;
  background:#000;
  opacity: 0;
  width:100%;
  height: 100%;
}





.lightbox_3d_space {
  /*3d*/
  display: block;
  text-align: center;
  position: fixed;
  z-index:9;
  vertical-align: middle;
  text-align: center;  

  /* width, left, margin-left: editado por JS */
  width: 50%;
  height: 100%;
  left:25%;
  top:0;
  transform-style: preserve-3d;
  /* transform: rotateX(-15deg) rotateY(15deg); /* perspectiva */
  -webkit-transform-style: preserve-3d;
  /*-webkit-transform: rotateX(-15deg) rotateY(15deg);*/
  -ms-transform-style: preserve-3d;
  /*-ms-transform: rotateX(-15deg) rotateY(15deg);*/

  perspective: 1200px;
  -webkit-perspective: 1200px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
   .lightbox_3d_space { perspective:none; }
}


.lightbox_3d_space:before {
  content: '';
  display: inline-block;
  height: 100%; 
  vertical-align: middle;
  margin-right: -0.25em;
}

.lightbox_base:before {

}

.lightbox_base a {
  color:#00668D;
  text-decoration: underline;
  outline: none;
}

.lightbox_base .lightbox  {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  background:#FFF;
  min-height: 300px;
  margin:0 auto;
  min-width:500px;
  overflow: visible;
  position: relative;
  z-index: 99;
  /*left:100%; /* escondido inicialmente, movido por js */

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;

  -webkit-box-shadow:  0px 0px 12px 4px rgba(0, 0, 0, 0.65);
  box-shadow:  0px 0px 12px 4px rgba(0, 0, 0, 0.65);

  /* 3d */
  transition: all 0.3s ;
  -webkit-transition: all 0.30s cubic-bezier(0.52,0.18,0.52,0.18);
  -ms-transition: all 0.30s cubic-bezier(0.52,0.18,0.52,0.18);

  transform: rotateY(0deg) translate3d(0, 0, 0);
  -webkit-transform: rotateY(0deg) translate3d(0, 0, 0);
  -ms-transform: rotateY(0deg) translate3d(0, 0, 0);

  opacity: 1;
  filter:alpha(opacity=100)\9;
}


.lightbox_base .lightbox_right {
  transform: rotateY(-35deg) translate3d(160%, 0, 0);
  -webkit-transform: rotateY(-35deg) translate3d(160%, 0, 0px);
  -ms-transform: rotateY(-35deg) translate3d(160%, 0, 0px);

  opacity: 0.1;
  filter:alpha(opacity=0)\9;

  display: none\9;
}

.lightbox_base .lightbox_left {
  transform: rotateY(35deg) translate3d(-160%, 0, 0px);
  -webkit-transform: rotateY(35deg) translate3d(-160%, 0, 0px);
  -ms-transform: rotateY(35deg) translate3d(-160%, 0, 0px);

  opacity: 0;
  filter:alpha(opacity=0)\9;

  display: none\9;
}

.lightbox_base .lightbox_off {
  transform: rotateY(0deg) translate3d(0, 0, 150px);
  -webkit-transform: rotateY(0deg) translate3d(0, 0, 150px);
  -ms-transform: rotateY(0deg) translate3d(0, 0, 150px);

  opacity: 0;
  filter:alpha(opacity=0)\9;

  display: none\9;
}





.lightbox .wrapper {
  padding:0 25px 25px 25px;
  overflow: hidden;
  min-height: 200px;
}

.lightbox_base .lightbox h1 {
  font-size: 24px;
  border:0;
  text-align: center;
  margin:10px 0;
  width:468px;
  line-height: 32px;
}

.lightbox input[type="text"], .lightbox input[type="password"] {
  height: 30px;
  line-height: 30px;
  border:solid 1px #E9E9E9;
  border-top:solid 1px #B5B5B5;
  font-size: 14px;
  padding:0 4px;
  color:#000;
  position: inherit;
  filter:alpha(opacity=100)\9;
}

.lightbox legend {
  background: none;
  filter:none;
  line-height: inherit;
  font-size: inherit;
  font-weight: 700;
}
.lightbox fieldset:before {
  border:0;
  background: #FFF;
}

.lightbox .btn { text-decoration: none; }
.lightbox .btn-gray:before { height:40px }

.lightbox form ul {
  background: none;
  overflow: hidden;
  clear: both;
}
.lightbox .text {

}

.lightbox li.submit {
  padding-left:20%;
  margin:20px 0 10px 0;
}

.lightbox li.submit .text-small {
  width:260px;float:right;
  display:block;
}

.lightbox footer {
  /*height: 129px;*/
  height: 27px;
  clear: both;

  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.lightbox .diagonal_pattern {
  background: url(../../img/common/bg_diagonal_pattern.gif);
  position: relative;
  top:-3px;
  padding:10px 25px 20px 25px;
  margin:0 0 25px 0;
}
.lightbox .diagonal_pattern h1 {
  margin:0 0 5px 0;
}

.lightbox .close_lightbox {
  width:29px;
  height: 29px;
  position: absolute;
  z-index: 1;
  margin-top: -14px;
  cursor: pointer;
}

.lightbox .message {
  display:block;
  clear:both;
  position:relative;
  top:10px;
  text-align: center;
}
.lightbox .message.error {
  width:100%;
}
.wrapper_msg {
  display: inline;
}

.wrapper_msg {
  color:#CC0000;
  padding-left:25px;
}
.message.confirm .wrapper_msg {
  color:#00CC00;
}

.msg {
  background: url(../../img/common/ico.available.png?banana) no-repeat 0 -3px;
  /*ico.available.png*/
  height:24px;
  line-height: 24px;
  padding-left:35px;
  color:#2faf3d;
  font-weight: bold;
  font-size:15px;
  margin-left:5px;
}

.msg.error {
  background: url(../../img/common/ico.not_available.png?banana) no-repeat 0 -3px;
  color:#CC0000;
}

/* end lightbox common */



/* Login */
#login_box {
  width:519px;
}
#login_box .close_lightbox {
  margin-left:507px;
}

#login_box p, #login_box strong {
  display: block;
  margin-bottom:20px;
  text-align: center;
}

#login_box .separator:before {
  content: attr(data-text);
  
  border:0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: #FFF;
  position:relative;
  z-index: 2;
  margin:0 auto;
  display: block;
  width: 30px;
  top:10px;
  padding:0 40px 0 20px;
}
#login_box .separator {
  display: block;
  border-bottom:solid 1px #999;
  position: relative;
  top:11px;
  width: 470px;
  margin:0 auto 40px auto;
}
#login_box ul {
  background: none;
  padding:0;
}

#login_box .col-lg-6 {
  margin-bottom: 20px;
}

#login_box .small_social {
  list-style: none;
  margin:0;
  padding:0;
}
#login_box .submit {
  text-align: center;
  padding:0;
}

.social_login {
  display: block;
  width:251px;
  height: 48px;
  background: #DDD;
  background: url(../../img/common/sprite_log_social-networks_long.png?banana);
  padding-left: 65px;
  line-height: 48px;
  font-weight: 700;
  color:#FFF;
  text-decoration: none;
}

#login_box .small_social {
  overflow: hidden;
}
#login_box .small_social .social_login {
  width:129px;
  margin:0 auto;
}
#login_box .small_social .social_login.google,
#login_box .small_social .social_login.facebook,
#login_box .small_social .social_login.twitter { 
  background-image: url(../../img/common/sprite_log_social-networks_mini.png?banana);
  padding-left: 61px;
}
#login_box .small_social .social_login.facebook {
  font-size:13px;
  padding-left: 55px;
}

.social_login.google {
  background-position: 0 0;
  text-shadow: 0px 0px 2px #da2b14;
  filter: dropshadow(color=#da2b14, offx=0, offy=0);
}
.social_login.google:hover {
  background-position: 0 -48px;
}

.social_login.facebook { background-position: 0 -96px; }
.social_login.facebook:hover { background-position: 0 -144px; }

.social_login.twitter {
  background-position: 0 -192px;
  text-shadow: 0px 0px 2px #399CC1;
  filter: dropshadow(color=#399CC1, offx=0, offy=0);
}
.social_login.twitter:hover {
  background-position: 0 -240px;
}

/* end Login */


/* sign up */
#signup_box {
	overflow-y: auto;
}
#signup_box_1, #signup_box_2, #signup_box_3, #signup_box_finish {
  width:706px;
}

#signup_box_1 .close_lightbox, #signup_box_2 .close_lightbox, #signup_box_3 .close_lightbox {
  margin-left:694px;
}

#signup_box, #cookies_legal {
  width:519px;
  min-height: 200px;
}
#signup_box .close_lightbox, #cookies_legal .close_lightbox {
  margin-left: 507px;
}
#cookies_legal .wrapper {
  min-height: 120px;
}

#cookieslegal {
  width:1200px;
  margin:60px auto -40px auto;
  color:#999;
  text-align:center;
}
#cookieslegal a {
  color:#E0E0E0;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  transition: color  .2s ease;
}
#cookieslegal a:hover { color:#FFF; }

.buorg {
    color: #000;
    cursor: pointer;
    font-size: 12px;
    left: 0;
    position: fixed;
    text-align: left;
    top: 0;
    width: 100%;
    z-index: 111111;
}


.buorg div {
    padding: 10px;
    width: 1200px;
    margin: 0 auto;
    background: #fdf2ab;
    border-bottom: 1px solid #a29330;
}

.buorg a, .buorg a:visited {
    color: #428bca;
    text-decoration: underline;
    font-weight: bold;	
}

#ico_chrome, #ico_firefox {
  overflow: visible;
  background:url(../../img/common/ico.google_chrome.png?banana) no-repeat;
  padding-left:36px;
  margin-left:4px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  font-weight: bold;
}
#ico_firefox { background:url(../../img/common/ico.mozilla_firefox.png?banana) no-repeat; }

.avatar_choose {
  width:128px;
  height: 128px;
  padding:2px;
  border:solid 1px #333;
}

#signup_box_2 .select_black {
  float:left;
  margin-right: 10px;
  width: 150px;
}

#signup_box_finish .close_lightbox {
  margin-left:694px;
}

#signup_box_finish .finish {
  margin:0 0 0 205px
}

/* sign up end */

#live_timing_box { text-align:center; }




.lightbox ul {
  margin:0;
  padding:0;
  filter:0;
  overflow: visible;
}

.lightbox li {
  position: relative;
}

.lightbox .close_lightbox {
  margin-left: 507px;
}

.signup_steps {
  list-style: none;
  overflow: hidden;
  margin:20px 0 0 0;
  border:solid 1px #DFDFDF;
  cursor: default;

  -webkit-box-shadow:  0px 0px 3px 0px rgba(0, 0, 0, 0.20);
  box-shadow:  0px 0px 3px 0px rgba(0, 0, 0, 0.20);

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.signup_steps li {
  width:33.3%;
  height: 54px;
  line-height: 51px;
  font-size: 24px;
  float:left;
  color:#D6D6D6;
}
.signup_steps li:last-child { width: 33.4%; }
.signup_steps li.dark_gray {
  background: #A7A7A7;
}
.signup_steps li.light_gray {
  background: #C7C7C7;
  color:#E5E5E5;
}
.signup_steps li.active {
  color:#FFF;
}
.signup_steps li.over {
  color:#8F8F8F;
}
.signup_steps li.active:after, .signup_steps li.over:after, .signup_steps li.dark_gray:after {
  content:"";
  width:25px;
  height: 54px;
  position: relative;
  top:0;
  float: right;
}
.signup_steps li.over:after {
  background-position: 0 -54px;
}
.signup_steps li.dark_gray:after {
  background-position: 0 -108px;
}
.signup_steps li:last-child:after { display: none; }

.signup_steps span {
  display: block;
  float: left;
  margin: 0 30px 0 20px;
  font-size:40px;
  font-weight: 700;
}

/* end sign up */


/***** END LIGHTBOXES *****/
/**************************/