@charset "UTF-8";
/**
 *  Folha de estilos para lighbox de error 404
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
/**
 *  Variáveis, mixins e configurções
 *
 *  @author     Bruno Lima <brunothelima@gmail.com>
 *  @link       assets/scss/configurations.scss
 */
/*  NTH da mais escura -> para a mais clara */
/* 				 nth(1)   nth(2)   nth(3)   nth(4)   nth(5)   nth(6)   nth(7) */
/* 				nth(1)  nth(2)    nth(3)   nth(4)   nth(5) */
/* 					  nth(1)   nth(2)    nth(3)   nth(4)   nth(5) */
/* 					     nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			   nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			 nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			      nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/**
 *  Folha de estilos para configurações de texto
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
h1 {
  font-size: 30px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-size: 21px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h2 {
    font-size: 18px;
  }
}

h3 {
  font-size: 19px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 17px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h4 {
    font-size: 15px;
  }
}

p {
  margin-bottom: 15px;
}
@media screen and (max-width: 1200px) {
  p {
    margin-bottom: 11px;
  }
}

.text {
  font-size: 15px;
  line-height: 200%;
}
@media screen and (max-width: 1200px) {
  .text {
    font-size: 14px;
  }
}

.mail-share-form {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
.mail-share-form .mask {
  position: absolute;
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.mail-share-form .panel {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 750px;
  height: 460px;
  padding: 60px;
  background-color: #FFFFFF;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -moz-transform: translateY(20px) scale(0.9);
  -ms-transform: translateY(20px) scale(0.9);
  -webkit-transform: translateY(20px) scale(0.9);
  transform: translateY(20px) scale(0.9);
}
@media screen and (max-width: 980px) {
  .mail-share-form .panel {
    height: 97%;
    width: 97%;
    padding: 15px 70px 15px 15px;
  }
}
.mail-share-form .panel .close {
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 15px;
  height: 100%;
  width: 60px;
  background: #D8D8D8 url("../../img/404-border.png") repeat-y center;
  text-align: center;
}
.mail-share-form .panel form {
  position: relative;
  height: 100%;
  padding-right: 15px;
}
.mail-share-form .panel form:after {
  clear: both;
  content: '';
  display: block;
}
@media screen and (max-width: 980px) {
  .mail-share-form .panel form {
    padding-right: 5px;
  }
}
.mail-share-form .panel form h1 {
  margin-bottom: 15px;
  font-weight: normal;
}
.mail-share-form .panel form h2 {
  margin-bottom: 30px;
  min-height: 48px;
}
.mail-share-form .panel form h2 sup {
  font-size: 13px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .mail-share-form .panel form h2 sup {
    font-size: 12px;
  }
}
@media screen and (max-width: 980px) {
  .mail-share-form .panel form h2 {
    display: none;
  }
}
.mail-share-form .panel form .field {
  float: left;
  width: 50%;
  padding-right: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 980px) {
  .mail-share-form .panel form .field {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}
.mail-share-form .panel form .field input {
  background-color: #F3F3F3;
}
.mail-share-form .panel form .field label {
  display: inline-block;
  margin-bottom: 5px;
}
.mail-share-form .panel form .submit {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 980px) {
  .mail-share-form .panel form .submit {
    padding: 0;
  }
}
.mail-share-form.active {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
}
.mail-share-form.active .panel {
  -moz-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}
