﻿@import url('https://fonts.googleapis.com/css?family=Roboto:300,500,900');
body{
  font-family: 'Roboto','Helvetica', 'Arial', sans-serif;
  font-weight: 500;
  font-size: 100%;
  color: #333333;
  margin: 0px;
}
header{
	width: 100%;
	margin:0 auto;
	padding: 10px 0;
	top:0;
}
footer a{
    color:#fff;
}
img{
    -webkit-user-drag: none;
   -khtml-user-drag: none;
   -moz-user-drag: none;
   -o-user-drag: none;
   user-drag: none;
}
.title-align-left {
  display: inline-block;
  width: 75%; 
}
.title-align-right {
  float: right;
}
.equipaCalendario .wrap{
  width: 65%;
  display: inline-block;
}
.first-color{
  color: #ff6600;
}
.insirer_email{
  font-size: 17px;
}
.insirer_email label{
  font-weight: 500;
}
.square{
  width:20px;height:20px;
}
.legend {
    padding: 4px 0px 0px 0px;
    font-size: 16px;
    font-weight: 300;
    color: #888;
    clear: both;
    line-height: 14px;
    letter-spacing: 0px;
}
.legend tr{
  display:table;margin-top:10px;margin-bottom:10px;
}
.legend div{
  padding-top:5px;padding-left:5px;
}
#lista li:nth-child(2n+3),#lista-Classificacao li:nth-child(2n+3) {background: #e5e5e5;}
.noticiaSingleDescricao img{
    width: 100%;
    height: auto!important;
}
.m{
	width: 100%;
	margin:0 auto;
	max-width: 65rem;
}
section{
	width: 100%;
	margin:0 auto;
}
div.main{
    margin:0 auto;
    max-width: 1040px; 
    width: 100%;  
}
.header_main{
	width: 100%;
    margin: 0 auto;
    max-width: 1040px;
    height: 100%;
}
#header_center_logo{
	display: inline-block;
}
.first_header{
	height: 50px;
	margin-bottom: 10px;
	text-align: center;
}
.nav_left{
    float: left;
}
.nav{
	line-height: 40px;
	height: 100%;
}
.logo{
	height: 100%;
	text-align: center;
}
.nav_right{
	float: right;
}
ul{
    list-style: none;
}
/*
** PopUP
*/
.fancy-btn {
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  border: none;
  position: relative;
  top: 50%;
  display: block;
  min-width: 10%;
  line-height: 55px;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 0 10px;
  background-color: #F2594B;
  color: #FFF;
  border-radius: 3px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.fancy-btn:hover {
  background-color: #f46f63;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 40;
  -moz-transition: opacity 0.25s ease 0s, visibility 0.35s linear;
  -o-transition: opacity 0.25s ease 0s, visibility 0.35s linear;
  -webkit-transition: opacity 0.25s ease, visibility 0.35s linear;
  transition-delay: 0s, 0s;
  -webkit-transition-delay: 0s, 0s;
  transition: opacity 0.25s ease 0s, visibility 0.35s linear;
}
.modal-overlay.state-show {
  opacity: .7;
  visibility: visible;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transition-duration: 0.2s, 0s;
  -o-transition-duration: 0.2s, 0s;
  -webkit-transition-duration: 0.2s, 0s;
  transition-duration: 0.2s, 0s;
}
.modal-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1050;
  width: 100%;
  text-align: center;
  visibility: hidden;
}
.modal-frame.state-appear {
  visibility: visible;
}
.modal-frame.state-appear .modal-inset {
  -moz-animation: modalComeIn 0.25s ease;
  -webkit-animation-name: modalComeIn;
  -webkit-animation-timing-function: ease;
  animation-name: modalComeIn;
  animation-timing-function: ease;
  animation: modalComeIn 0.25s ease;
  visibility: visible;
  /* to keep @ final state */
}
.modal-frame.state-appear .modal-body {
  opacity: 1;
  -moz-transform: translateY(0) scale(1, 1);
  -ms-transform: translateY(0) scale(1, 1);
  -webkit-transform: translateY(0) scale(1, 1);
  transform: translateY(0) scale(1, 1);
}
.modal-frame.state-leave {
  visibility: visible;
}
.modal-frame.state-leave .modal-inset {
  -moz-animation: modalHeadOut 0.35s ease 0.1s;
  -webkit-animation: modalHeadOut 0.35s ease 0.1s;
  animation: modalHeadOut 0.35s ease 0.1s;
  visibility: visible;
}
.modal-frame.state-leave .modal-body {
  opacity: 0;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -moz-transform: translateY(25px);
  -ms-transform: translateY(25px);
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
}
@-moz-document url-prefix() {
  .modal-frame {
    height: calc(100% - 55px);
  }
}
.modal-popUp {
  position: fixed;
  margin: auto;
  width: 400px;
  left: 0;
  right: 0;
  transform:translateY(25%);
 -moz-transform: translateY(25%);
  -ms-transform: translateY(25%);
  -webkit-transform: translateY(25%);
}
.modal-inset {
  position: relative;
  padding: 30px;
  background-color: white;
  min-width: 320px;
  min-height: 400px;
  margin: auto;
  visibility: hidden;
  -moz-box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.modal-inset .close {
  display: block;
  cursor: pointer;
  background-color: #ff6600;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  opacity: .4;
}
.modal-inset .close:hover {
  opacity: 1;
}

.modal-body h3 {
  font-weight: 700;
  padding-bottom: 10px;
  display: block;
  color: #F2594B;
  text-align: center;
  font-size: 30px;
}
.modal-body p {
  font-size: 14px;
  text-align: center;
  padding-bottom: 10px;
}
.modal-body .ps {
  font-size: 12px;
  opacity: .3;
}
.tg-yw4l .float-left{
  font-size: 13px;
}
@-webkit-keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-moz-keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}
@-moz-keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}
@keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}
.button-newsletter{
    margin-top: 20px;
    cursor: pointer;
    text-align: center;
    background-color: #ff6600;
    color: #fff;
    padding: 10px 10px;
    width: 50%;
    font-size: 17px;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #ff6600;
}
.float-right{
    float: right;
}
.float-left{
    float: left;
}
.tg-yw4l input{
    margin-bottom: 5px;
}
.nav>ul{
	list-style: none;
}
.nav>ul>li{
	float: left;
    color:#fff;
    margin-left: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 60px;
    text-transform: uppercase;
}
.nav>ul>li.newsletter a,.nav>ul>li.facebook a{
	padding: 1px 4px 2px;
	color: #fff;
	text-align: center;
	font-size: 1rem;
	margin-top: 15px;
}
ul.menu li a{
    padding: 5px 10px;
}
ul.menu li a:hover{
    background-color: rgba(214, 25, 25, 1);
}
.newsletter a{
	background: #666;
}
.facebook a{
	background: #3b5998;
}
.container{
	display: -webkit-box;
	width: 100%;
    margin-bottom: 10px;
    text-align: left;
}
div.center
{
  width: 200px;
  display: inline-block;
  margin-left: 140px;
  line-height: 50px;
}
.container ul{
	list-style-type: none;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
}
.container ul>li>a{
	color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
li.facebookk{
	margin-right: 10px;
}
/* Stiky menu*/
.stiky{
	width: 100%;
	top:0;
    position: fixed;
    display: block;
    background: #FFF;
    z-index: 900;
}
.inner_sticky{
	width: 100%;
	margin:0 auto;
	max-width: 65rem;
	text-align: center;
}
.shadow{
    -webkit-box-shadow:0px 1px 1px #9d9c9c;
    -moz-box-shadow:0px 1px 1px #9d9c9c;
    box-shadow:0px 1px 1px #9d9c9c;
}
.header {
    -webkit-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.inner_sticky ul>li{
	display: inline;
}
.inner_sticky ul{
	list-style-type: none;
	text-align: center;
}
.inner_sticky ul>li>a{
	color: #231f20;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.center_stiky{
	display: inline-block;
	line-height: 50px;
	margin-left: 80px;
}
/*End Sticky*/
.info{
	margin-top: 20px;
    width: 100%;
    overflow: hidden;
}
.wraper{
    width: 100%;
}
.img_responsive{
	display: block;
	max-width: 100%;
	height: 363px;
}
.Banner{
	height: 100%;
	width: 100%;
	text-align: center;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.col{
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}
.linha_duas_col{
	width: 50%;
	float: left;
}
.jogosRecomendados{
    width: 33%;
    float: left;
}
.linha_col{
	min-width: 1px;
	padding-right: 15px;
	padding-left:15px;
	padding-bottom: 15px;
}
.colum1{
	width: 65%;
	float: left;
    padding-right: 15px;
}
.colum2{
	width: 35%;
	float: left;
}
.colum3{
	width: 35%;
	float: left;
    padding-left: 15px;
}
.horizontal-pub{
    display: inline-block;
}
.vertical-pub{
    display: none;
}
.colorBlack{
    color:#000;
}
.colorMainColor{
    color:#ff6600!important;
}
.title-list{
  text-align: center;
  text-transform: uppercase;
  font-size:17px;
}
.title_theme{
    position: relative;
    color:#333333;
    font-weight: 900;
    font-size:24px;
    margin-bottom:30px;
    padding-top:5px;
    border-top:2px solid #ff6600;
}
.main_title{
    color:#000000;
    font-size:24px;
    margin-bottom:30px;
    padding-top:5px;
    text-align: center;

}
.title_ranking{
	position: relative;	
}
.title_ranking h2 span{
	font-weight: 300 !important
}
.title_ranking h2{
	color: #ffffff;
    background-color: #000000;
    font-size: 24px;
    margin-bottom: 12px;
    padding: 12px 12px 12px 12px;
    font-weight: 700;
    text-align: center;
}
.ranking{
	padding: 10px;
    border:1px solid #e5e5e5;
    margin-bottom: 20px;
}
.clubs_rank, .afa_rank{
	list-style: none;
  padding: 0;
  margin: 0;
}
.clubs_rank li, .afa_rank li{
    font-size: 16px;
    margin-right: 0;
    line-height: 23px;
    text-transform: uppercase;
}
.jogos>li{
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 3px;
    font-size: 16px;
    margin-right: 0;
    line-height: 18px;
    text-transform: uppercase;
}

.jogoMaisVistoEsquerda{
    width:42.5%;
    text-align:right;
    font-size:15px;
}
.jogoMaisVistoCentro{
    text-align:center;
    width:15%;
    font-size:15px;
}
.jogoMaisVistoDireita{
    width:42.5%;
    text-align:left;
    font-size:15px;
}

.clubs_rank li:hover, .afa_rank li:hover{
    background-color: #e5e5e5;
}
.jogos li:hover{
    background-color: #e5e5e5;
}
.clubs_rank li span{
   display: inline-block;
   vertical-align:middle;
   line-height: 23px; 
}
.clubs_rank li img{
    margin: 0px;
    vertical-align:middle;
    max-height: 18px;
}
.afa_rank li span{
   display: inline-block;
   vertical-align:top;
   line-height: 23px; 
}
.sideContent{
    margin-bottom: 40px;
}
.sideContentTitle{
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ff6600;
}
.roundBoxAFAColor{
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid #ff6600;  
}
.categoriasTagsContent{
    float:left;
    margin:5px;
    background-color:#ff6600;
    padding:10px;
    font-size: 15px;
}
.sideContentMainTitle{
    color:#fff!important;
    background-color: #ff6600;
    padding: 8px 12px!important;
}
.sideContentMainTitle:hover{
    background-color: #ff6600!important;
}
.sideContentList{
    border-right: 1px solid #ff6600;
    border-left: 1px solid #ff6600;
    margin:0px!important;
    padding: 8px 8px;
}
.sideContentFooter{
    padding:10px;
    background-color: #fff;
    border-radius: 0px 0px 6px 6px;
    border-right: 1px solid #ff6600;
    border-left: 1px solid #ff6600;
    text-align: center;
}
.sideContentFooter a{
    color:#ff6600!important;
}
.sideContentFooter:hover{
    background-color: #ff6600!important;
}
.sideContentFooter:hover a{
    color:#fff!important;
}
.logosEquipas{
    min-width:18px;
    max-width:18px;
    width:18px;
    display:inline;
    margin: 0;
    margin-left: 10px;
    margin-right: 10px;
    overflow: auto;
    text-align: center;
    max-height: 23px;
}
.pull_right{
    float: right;
    width: 30px;
    text-align: center;
}
.pull_right a{
	padding: 10px;
	color: #231f20;
    font-weight: 600;
    text-transform: uppercase;
}
.mainHeaderJogador{
    background: url('/img/jogadores/triangulos.png') 50% 80%;
    padding: 40px 0 40px;
}
.inner_ranking{
	position: relative;
	width: 100%;
}
.row{
	margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 30px;
}
.row1{
	margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 30px;
}
.rows{
	list-style: none;
    padding: 0;
}
.yes{
	width: 100%;
	height: 100%;
	position: relative;
}
.yes:after{
	position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
    background: url(../img/pattern.png);
}
.yes i{
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 24px;
    border-width: 3px;
    border-style: solid;
    border-color: #FFF;
    border-radius: 100%;
    color: #fff;
    margin-left: -33px;
    margin-top: -40px;
    z-index: 4;
    width: 68px;
    height: 66px;
    text-align: center;
    line-height: 64px;
    transition: 300ms;
}
.overlay{
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
}
.overlay i{
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 24px;
    border-width: 3px;
    border-style: solid;
    border-color: #FFF;
    border-radius: 100%;
    color: #fff;
    margin-left: -33px;
    margin-top: -40px;
    z-index: 4;
    width: 68px;
    height: 66px;
    text-align: center;
    line-height: 64px;
    transition: 300ms;
}
.overlay_inner{
	bottom: 0;
	position: absolute;
	padding: 25px 30px;
    width: 100%;
    text-align: center;
    background: transparent;
}
.overlay_inner span{
	color: #fff;
    font-weight: 900;
    font-style: normal;
    font-size: 50px;
}
.infoTreinadoresArbitros{
    margin-top: 30px;
    color:#fff;
    text-align: center;
    font-size: 22px;
    text-shadow: 1px 1px #000;
}
.infoTreinador{
    font-size: 20px;
    color:#D3D3D3;
}
.treinador,.arbitro{
    width: 33%;
    float: left;
}
.wrapp_video{
	position: relative;
	margin-bottom: 30px;
}
.add{
	margin-top: 35px;
    text-align: center;
}
.add>img{
	max-height:100%; max-width:100%;
}
/* FOOTER*/
footer{
	width: 100%;
	margin:0 auto;
	display: table!important;
  position: relative;
  padding: 66px 0px;
  background-image: url("../../img/header/stripes3.png");
  background-repeat: repeat;
  color: #fff;
}
.FooterColuna{
    padding: 0px 15px;
}
.FooterColuna p,.FooterColuna ul{
    padding-top: 20px;
    font-size: 14px;
}
.maisVistoLink{
    color: #fff;
    text-decoration: none;
}
ul.contactos li{
    margin-bottom: 10px;
}
.footerTitle{
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 900;
}
.footer_inner>div{
  margin-top: 15px;
  float: left;
  width: 33.33%;
}
.footer>ul{
    list-style-type: none;
}
.footer>h2{
	color: #231f20;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/*END FOOTER*/
a{
	text-decoration: none;
	line-height: inherit;
    color:#fff;
}
div{
	display: block;
}
div, dl, dt, form, h1, h2, h3, h4, h5, h6, li, ol, p, pre, td, th, ul {
	margin:0;
	padding:0;
}
.header-search.full {
    margin-top: 20px;
    position: absolute;
    right: 430px;
}
/*teste*/
.row_header{
    margin: 0 auto;
    width: 100%;
    text-align: center;
    height: 50px;
    max-width: 65rem;
}
.row_header:before, .row:after {
	line-height: 0;
	content: "";
}
.left{
	line-height: 50px;
	float: left;
}
.row_header:after {
	clear: both;
}
.span2{
	float: right;
    padding: 5px 0px;
}
#navigation {
    overflow: hidden;
}
.search .input {
    background: url(../img/ico_search.png) no-repeat 8px center #f7f6f4;
    width: 34px;
    height: 30px;
    border: solid 1px #e8e8e8;
    padding: 0 5px 0 27px;
    font-size: 11px;
    color: #333;
    margin: 7px 0 0 0;
}
#navigation > ul:first-child > li {
    font-size: 14px;
    color: #333;
    float: left;
    margin: 0 3px;
}
#navigation ul:first-child > li > a {
    padding: 0 7px;
}
input[type="checkbox"] {
	margin:3px 6px 3px 3px;
}
.search{
    float: right;
}
/* NVEGADOR*/
.jssorb21 {
    position: absolute;
}
.jssorb21 div, .jssorb21 div:hover, .jssorb21 .av {
    position: absolute;
    /* size of bullet elment */
    width: 19px;
    height: 19px;
    text-align: center;
    line-height: 19px;
    color: white;
    font-size: 12px;
    background: url(../img/b21.png) no-repeat;
    overflow: hidden;
    cursor: pointer;
}
.jssorb21 div { background-position: -5px -5px; }
.jssorb21 div:hover, .jssorb21 .av:hover { background-position: -35px -5px; }
.jssorb21 .av { background-position: -65px -5px; }
.jssorb21 .dn, .jssorb21 .dn:hover { background-position: -95px -5px; }
/*ARROWS*/
.jssora21l, .jssora21r {
    display: block;
    position: absolute;
    /* size of arrow element */
    width: 55px;
    height: 55px;
    cursor: pointer;
    background: url(../img/a21.png) center center no-repeat;
    overflow: hidden;
}
.jssora21l { background-position: -3px -33px; }
.jssora21r { background-position: -63px -33px; }
.jssora21l:hover { background-position: -123px -33px; }
.jssora21r:hover { background-position: -183px -33px; }
.jssora21l.jssora21ldn { background-position: -243px -33px; }
.jssora21r.jssora21rdn { background-position: -303px -33px; }
/*newsletter*/
.new{
	margin: 0 auto;
	width: 50%;
}
.escolher_newsletter ul{
	list-style: none;
}
.escolher_newsletter, .contactosForm{
    padding: 20px;
    border: 1px solid #e5e5e5;
}
.escolher_newsletter ul li input {
    float: right;
    margin-left: 0;
    margin-right: 0;
}
.escolher_newsletter ul li select {
    float: right;
    margin-left: 0;
    margin-right: 0;
}
.escolher_newsletter ul li input,.escolher_newsletter ul li select{
    margin-bottom: 20px;
}
.escolher_newsletter ul li {
    border-bottom:1px solid #e5e5e5;
    overflow: hidden;
}
.escolher_newsletter ul li label {
    font-size: 1rem;
    margin-top: 20px;
    font-weight: 600;
    display: block;
    text-transform: uppercase;
}
.formContactos input[type=email], .formContactos {
 -webkit-appearance: none; 
 border: 1px solid #ccc; 
 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1); 
 box-shadow: inset 0 1px 2px rgba(0,0,0,.1); 
 display: block; 
 margin: 0 0 1rem; 
 padding: .5rem; 
 width: 100%; 
}
footer .formContactos{
padding:17px;margin:0;font-size:13px;height: 10px;color: #333333;
}
.button {
    background-color:rgba(214, 25, 25, 1);
    color:#fff;
    text-align:center;
    font-family: Roboto,Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0px;
    text-align: center;
    padding:8px 15px;
    font-size: 16px;
    border: none;
    border-radius: 0;
}
.desactivo{
    background-color: grey;
}
.recebidoComSucesso{
    margin-top: 20px;
    background-color: #ff6600;
    color:#fff;
    text-align:center;
    padding: 15px;
    overflow: hidden;
    font-weight: bold;
    font-size: 18px;
}
.escolher_newsletter p{
	color: #231f20;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.insirer_email p{
    margin-top: 20px;
    color: rgba(214, 25, 25, 1);
    font-size: 20px;
    margin-bottom: 5px;
}
select.soflow, select.soflow-color {
    -webkit-appearance: button;
    -webkit-border-radius: 2px;
    -webkit-padding-end: 20px;
    -webkit-padding-start: 2px;
    -webkit-user-select: none;
    border-radius: 2px;
    user-select: none;
    background-image: url(../arrowDown.png);
    background-position: 99% center;
    background-repeat: no-repeat;
    border: 1px solid #AAA;
    color: #555;
    font-size: inherit;
    overflow: hidden;
    padding: 5px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 250px;
}
select.epocaSelect{
    -webkit-appearance: button;
    -webkit-border-radius: 2px;
    -webkit-padding-end: 20px;
    -webkit-padding-start: 2px;
    -webkit-user-select: none;
    border-radius: 2px;
    user-select: 2px;
    background-image: url(/img/general/arrowDown.png);
    background-position: 99% center;
    background-repeat: no-repeat;
    border: 1px solid #AAA;
    color: #555;
    font-size: 16px;
    overflow: hidden;
    padding: 5px 15px;
    padding-right: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: auto;
}
.logo a{
    font-size: 26px;
    text-decoration: none;
}
.sticky-menu ul{
    list-style: none;
    text-align: center;
    font-family:'Roboto', sans-serif;
    font-size: 14px;
    margin-top: 5px;
    float: right;
    font-weight: 300;
}
.sticky-menu ul>li{
    display: inline;
    margin-right: 0px; 
}
.sticky-menu ul>li>a{
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mainTitleSection{
    text-transform: uppercase;
    font-size: 35px;
    text-align: center;
    vertical-align: middle;
    background-color: #000;
    color: #fff;
    width: 50%;
    margin: 0 auto;
    border-radius: 4px;
    padding: 15px 5px;
}
.beforeVerTodos{
    text-align: center;
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
}
.pagination{
    text-transform:uppercase;
    font-size: 20px;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    display: inline-block;
}
.pagination a{
    color:#fff;
    padding: 10px 20px;
    background-color: #ff6600;
}
.pagination a:hover{
    color:#E0E0E0;
}
.paginationLeft{
    float:left;
    padding-top: 20px;
}
.paginationRight{
    float:right;
    padding-top: 20px;
}
.c--anim-btn span {
  color: white;
  text-decoration: none;
  text-align: center;
  display: block;
}

.c--anim-btn, .c-anim-btn {
  transition: 0.3s;     
}

.c--anim-btn {
  height: 64px;
  line-height: 4em;
  /*font: normal normal 700 1em/4em Arial,sans-serif;*/
  /*overflow: hidden;
  width: 200px;
  background-color: #3b5998;*/
}

.c-anim-btn{
  margin-top: 0em;   
}

.c--anim-btn:hover .c-anim-btn{
  margin-top: -4em;
}


.verTodos{
    cursor: pointer;
    text-align: center;
    background-color:#ff6600;
    color:#fff;
    padding: 17px 10px;
    width: 50%;
    font-size: 17px;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #ff6600;
}/*
.verTodos:hover{
    border: 1px solid #ff6600;
    background-color: #fff;
    color: #ff6600;
}*/
.green{
    background-color:#03821e;
}
.buttonVotacao{
    text-align: center;
    background-color:rgba(214, 25, 25, 1);
    color:#fff;
    padding: 17px 10px;
    width: 100%;
    font-size: 17px;
    text-transform: uppercase;
    display: inline-block;
    background-color:#03821e;
}
.verTodos a,.buttonVotacao a{
    color: #fff;
}
.goToVideoJogoInfo{
    background-color:rgba(255, 255, 255, 0.90);
    color:white;
    text-align: center;
    background: url(../SoccerField3.jpg) no-repeat ;
    background-size: cover;
    width:308px;
    height:178px;
}
.overlayVideo{
   position:absolute;
   top:0;
   cursor: pointer;
   left:0;
   right:0;
   bottom:0;
   background-color:rgba(255, 255, 255, 0.90);
   z-index:1;
   color:white;
   text-align: center;
   background: url(../img/general/backgroundTodosOsGolos.jpg) no-repeat center ;
   background-size: cover;

}
.overlayVideoFutsal{
   position:absolute;
   top:0;
   cursor: pointer;
   left:0;
   right:0;
   bottom:0;
   background-color:rgba(255, 255, 255, 0.90);
   z-index:1;
   color:white;
   text-align: center;
   background: url(../img/general/backgroundTodosOsGolosFutsal.jpg) no-repeat center ;
   background-size: cover;

}
.overlayVideoTorneioInterassociacoes{
   position:absolute;
   top:0;
   cursor: pointer;
   left:0;
   right:0;
   bottom:0;
   background-color:rgba(255, 255, 255, 0.90);
   z-index:1;
   color:white;
   text-align: center;
   background: url(../img/main/backgroundTorneio_big.jpg) no-repeat center ;
   background-size: cover;

}
.overlayVideo:before,.overlayVideoFutsal:before ,.overlayVideoTorneioInterassociacoes:before{
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.overlayVideoJogo{
   position:absolute;
   top:0;
   left:0;
   right:0;
   bottom:0;
   background-color:rgba(255, 255, 255, 0.90);
   z-index:5;
   color:white;
   text-align: center;
   background: none;

}
.overlayVideoJogo:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.justRelative{
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 30px;
    margin-top: 10px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}
.justRelative iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}
.relative{
    position: relative;
    width:100%;
}
.backgroundJogador{
    padding:80px 0 80px;
    background-image:url(/img/jogadores/triangulos.png);
    background-size: cover;
    background-position: 50% 50%;
}
.backgroundJogoResultado{
    padding:80px 0 80px;
    background-image:url(/img/main/backgroundJogos.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.backgroundJogoResultadoFutsal{
    padding:80px 0 80px;
    background-image:url(/img/main/backgroundJogosFutsal.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.backgroundTorneioInter{
    padding:80px 0 80px;
    background-image:url(/img/main/backgroundTorneioInter.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.backgroundTorneio{
    padding:80px 0 80px;
    background-image:url(/img/main/backgroundTorneio_big.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.backgroundTorneioTaca{
    padding:80px 0 80px;
    background-image:url(/img/main/backgroundTacaHonra.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.backgroundTacaAveiro{
    padding:80px 0 80px;
    background-image:url(/img/estadios/backgroundTacaAveiro.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.backgroundSupertaca{
    padding:80px 0 80px;
    background-image:url(/img/estadios/backgroundSupertaca.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.backgroundTorneio16{
    padding:80px 0 80px;
    background-image:url(/img/estadios/backgroundInterJogo16.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.imgAutoSize{
    max-width:100%;
    max-height:100%;
}
.infoJogo{
    display: inline;
    vertical-align: middle;
    padding: 10px 15px;
    position:relative;
    font-weight:bold;
}
.infoJogo img{
    vertical-align: middle;
    margin:10px;
}
.infoVideoAFA{
    display: inline;
    vertical-align: middle;
    padding: 10px 15px;
    position:relative;
    text-transform: uppercase;
    background-color: rgba(229, 229, 229, 0.4);
}
.infoVideoAFA img{
    vertical-align: middle;
    margin:10px;
}
.overlayHalfVideo{
    bottom: 0;
    position: absolute;
    padding: 10px 10px;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    background: #ff6600;
}
.overlayHalfVideo span{
    font-size: 14px;
}
.copyright{
    color: #000;
    font-size: 13px;
    padding: 50px;
    font-family: Roboto, Arial, sans-serif;
}
.copyright a{
    color:rgba(214, 25, 25, 1);
}
.newsletterSection{
    background-color:rgba(214, 25, 25, 1);
    font-size: 30px;
    padding: 40px;
}
.newsletterBanner a{
    color:#fff;

}
.sectionJogo{
    padding-top: 20px;
}
.sideContentMainTitle a:hover{
  color: #000;
}
.title_theme .first_title_theme {
  color: #333333;
}
.title_theme a:hover .first_title_theme{
  color: #ff6600;
}
.title_theme .second_title_theme{
  color: #ff6600;
}
.title_theme a:hover .second_title_theme{
  color: #333333;
}
.main-section{
    width:100%;
    background-color:#fff;
    padding-bottom: 40px;
    margin-bottom: 30px;
    overflow: hidden;
}
.main-section a{
    color:#fff;
}
.follow_us li {
  display: inline-block;
  margin: 0 10px 10px 0;
}
.follow_us li a, .floating-box a {
    color: #fff;
    font-size: 20px;
    display: block;
    width: 51px;
    height: 51px;
    text-align: center;
    line-height: 51px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.follow_us li.facebook a, a.facebook{
    background-color: #3b5998;
}
.follow_us li.instagram a{
    background-color: #825c48;
}
.follow_us li.newsletter a, a.newsletter{
    background-color: #e98c14;
}
.follow_us li.twitter a, a.twitter {
    background-color: #00a0d1;
}
.follow_us li.google-plus a, a.google-plus {
    background-color: #b21f1f;
}
.follow_us li.pocket a, a.pocket {
    background-color: #ed4055;
}
a.whatsapp {
    background-color: #35bb48;
}
.floating-box{
    font-family: "Raleway",Helvetica,Arial,sans-serif;
    font-weight: 300;
    width: auto;
    position: fixed;
    top: 150px;
    left: 0px;
    color: white;
    text-transform: uppercase;
    z-index: 1000;

    text-align: center;
}



.show-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background: transparent;
    text-align: center;
    padding: 0;
    padding-bottom: 0;
    display: none;
}

/*Display the dropdown on hover*/
ul.menu li a:hover + .hidden, .hidden:hover {
    display: block;
}
/*Hide checkbox*/
input#show-menu[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
input#show-menu[type=checkbox]:checked ~ #menu{
    display: block;
}

.whatsapp{
    display: none!important;
}

.classificacaoNomeEquipa{
    display: inline-block!important;
}
.classificacaoSigla{
    display: none!important;
}
.fragment1 {
    z-index: 99;
    display: none;
    position: fixed;
    bottom: 0px;
    color: #555;
    box-sizing: border-box;
    text-decoration: none;
}
.fragment1 img {  
    width: 100%;
}
#close1 {
    position: absolute;
    cursor: pointer;
    font-size: 30px;
    right: 0;
    padding: 5px 7px;
    background: #ccc;
}
.fragment {
    z-index: 99;
    width: 300px;
    position: fixed;
    bottom: 0px;
    right: -400px;
    font-size: 12px;
    color: #555;
    box-sizing: border-box;
    text-decoration: none;
}
.fragment img { 
    float: right;
}
#close {
    position: absolute;
    cursor: pointer;
    font-size: 15px;
    right: 0;
    padding: 2px 5px;
    background: #ccc;
}
@media only screen and (max-width: 767px) {
    .fragment{
        display: none;
    }
    .fragment1 {
        display: block;
    }
    .mainHeaderJogador{
        padding: 90px 0 40px;
    }
    .title_banner h3{
        font-size: 30px;
        padding: 25px;
        line-height: 30px;
    }
    .treinador,.arbitro{
        margin-top: 15px;
        width: 100%;
        float: none;
    }
    .deleteMobile{
        display: none!important;
    }
    .main{
        width:100%;
    }
    .header_main{
        width:100%;
    }
    .nav_left{
        float: none;
    }
    .first_header{
        margin-bottom: 20px;
    }
    .clubs_rank li{
        font-size: 15px;
        padding: 5px;
        line-height: 12px;
    }
    .title_theme{
        margin-bottom: 10px;
        margin-top: 0px;
    }
    .footer_inner>div{
        width: 100%;
        float: none;
    }
    .floating-box{
        font-weight: 300;
        width: 100%;
        height:40px;
        position: fixed;
        bottom: 0px;
        right: 0px;
        top:auto;
        color: white;
        z-index: 10;
        text-align: center;
        font-size: 12px;
        background-color: #fff;
    }
    .floating-box a{
        display: inline;
        float:right;
        width: 20%;
        line-height: 30px;
        font-size: 22px;
        padding: 8px;
    }
    .whatsapp{
        display: inline!important;
    }
    .classificacaoNomeEquipa{
        display: none!important;
    }
    .classificacaoSigla{
        display: inline-block!important;
    }
.jogoMaisVistoEsquerda,.jogoMaisVistoCentro,.jogoMaisVistoDireita{
  font-size:13px;
}

}

    @media only screen and (max-width: 769px) {
      .colum1{
        width:100%;
        float: none;
    }
    .colum3{
        width: 100%;
        float: none;
    }
    .verTodos,.buttonVotacao{
        width:100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .vertical-pub{
        display: inline-block;
    }
    .horizontal-pub{
        display: none;
    }
}

@media only screen and (max-width: 1023px) {
    .mainMenu{
        display: none;
    }
    .container{
        display: block;
        margin-bottom: 0px;
    }
    li:hover > ul#teste {
        display: none!important;
    }
    /*Make dropdown links appear inline*/
    .container ul {
        position: static!important;
        display: none;

    }
    /*Create vertical spacing*/
    .container ul li {
        margin-bottom: 1px;
    }
    /*Make all menu links full width*/
    .container ul li, .container ul li a {
        width: 100%;
        display: block;
        text-align:center;
    }
    /*Display 'show menu' link*/
    .show-menu {
        display:block;
        width:100%;
        overflow: hidden;
    }

    
    .title_banner{
        width:100%;
        padding: 0px 10px;
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .linha_duas_col, .jogosRecomendados{
        width: 100%;
        float: none;
    }
    .row{
        margin-bottom: 0px;
        display: block;
    }
    .escolher_newsletter ul li input {
        float: left;
        margin-right: 20px;
        margin-left: 6px;
    }
    .escolher_newsletter ul li select{
        float: none;
        display: block;
        margin-top: 10px;
        max-width: 100%;
    }
    .colum1{
        padding-left: 15px;
        padding-right: 15px;
    }
    .colum3{
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .overlay_inner span {
        font-size:30px;
    }
    .overlay_inner {
        padding-bottom: 10px;
    }
}

.melhor-golo-title{
    color: rgba(214, 25, 25, 1);
    text-transform: uppercase;
    font-weight:300;
    font-size:34px;
}
.color-black{
    color:#000;
}
.melhor-golo-main{
    margin:10px;
    margin-top:25px;
}
.melhor-golo-cell{
    text-align:left;
    padding:5px 5px;
    padding-top: 10px;
    text-transform: uppercase;
    max-width:auto;
    overflow: hidden;
    margin:0 auto;
    border-bottom:1px solid #e3e3e3;
}
.mouse-over-cell:hover{
    background-color: #e4e4e4;
    cursor: pointer;
}
.melhor-golo-number{
    width:auto;
    padding:0px;
    margin-right:10px;
    vertical-align:top;
    font-size:35px;
    color:rgba(214, 25, 25, 1);
    display:inline;
    float:left;
}
.melhor-golo-jogador{
    width:auto;
    float:left;
    color: rgba(214, 25, 25, 1);
    font-size:17px;
}
.melhor-golo-equipa{
    display:block;
    color:#000;
    font-weight: 100;
    font-size: 13px;
}
.equipa-jogador{
    color:#000;
    font-weight: 300;
}
.golo-minuto{
    color:#000;
}
.percentagem-votos{
    float:right;
    font-size: 20px;
    width:auto;
    padding: 0px;
    color:#03821e;
}
.loadingVotacaoImage{
    width:50px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 0;
  margin-top: 15px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: Roboto,Helvetica, Arial, sans-serif;
}
.btn-primary {
    border-color: #000;
    font-weight: 300;
    color: #fff;
    background-color: #000;
    border-radius: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    border-color: rgba(214, 25, 25, 1);
    color: #fff;
    background-color: rgba(214, 25, 25, 1);
    border-radius: 0;
}
.specialties-modal .modal-content {
    padding: 100px 0;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    text-align: center;
    background-clip: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.specialties-modal .modal-content h2 {
    margin-bottom: 15px;
    font-size: 3em;
}
.specialties-modal .modal-content p {
    margin-bottom: 30px;
}
.specialties-modal .modal-content p.item-intro {
    margin: 20px 0 30px;
    font-family: "Roboto",Helvetica,Arial,sans-serif;
    font-size: 18px;
}
.specialties-modal .modal-content ul.list-inline {
    margin-top: 0;
    margin-bottom: 30px;
}
.specialties-modal .modal-content img {
    margin-bottom: 30px;
} 
.specialties-modal .close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 75px;
    height: 75px;
    background-color: transparent;
    cursor: pointer;
} 
.specialties-modal .close-modal:hover {
    opacity: .3;
} 
.specialties-modal .close-modal .lr {
    z-index: 1051;
    width: 1px;
    height: 75px;
    margin-left: 35px;
    background-color: #222;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.specialties-modal .close-modal .lr .rl {
    z-index: 1052;
    width: 1px;
    height: 75px;
    background-color: #222;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition:      -o-transform .3s ease-out;
  transition:         transform .3s ease-out;
  -webkit-transform: translate3d(0, -25%, 0);
  -o-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
}
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
}
.modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}
.modal-sm {
    width: 300px;
}
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
}
}



/*ADS*/

.responsive-mobile-inline { display: none;}
.responsive-laptop-inline { display: none;}
@media(max-width: 1030px) { 
    .responsive-mobile-inline { display: inline; } 
    .responsive-laptop-inline { display: none; } 
}
@media(min-width: 1030px) { 
    .responsive-laptop-inline { display: inline; }
    .responsive-mobile-inline { display: none; } 
}

.responsive-mobile { display: none;}
.responsive-laptop { display: none;}

@media(max-width: 1030px) { 
    .responsive-mobile { display: block; } 
    .responsive-laptop { display: none; } 
}
@media(min-width: 1030px) { 
    .responsive-laptop { display: block; }
    .responsive-mobile { display: none; } 
}

.social-networks-mobile { display: block; } 

@media(max-width: 500px) { 
    .social-networks-mobile { display: none; } 
}
@media(max-width: 400px) { 
.classificacaoPosicao{
  font-size: 20px!important;
  width: 8%!important;
}
.classificacaoLogo{
text-align: center;
width: 10%!important;
}
.classificacaoLogo img{
max-width: 20px!important;
}
.classificacaoEquipa{
  font-size: 15px!important;
  width: 20%!important;
}
.pull_right{
  font-size: 15px!important;
  width: 10%!important;
}
.modal-inset {
  min-width: 80%;
  min-height: 400px;
}
.modal-popUp{
width: 90%;
}
.modal-body img{
  width: 100%;
}
.button-newsletter{
  font-size: 13px;
  padding: 5px 5px;
}
}
.fa-sort-desc{
  color: red;
}
.fa-sort-asc{
  color: green;
}
.classificacao-icon{
  width: 30px;
  text-align: center;
}
.newsletter-style input[type="text"] {
  padding: 12px;
  border: none;
  margin-top: 10px;
  margin-bottom: 5px;
  border-bottom: solid 2px #c9c9c9;
  transition: border 0.3s;
  width:40%;
  font-size:15px;
}
.newsletter-style input[type="text"]:focus,
.newsletter-style input[type="text"].focus {
  border-bottom: solid 2px #969696;
}

.newsletter-style input[type="submit"]{
    padding:10px 20px; 
    background:transparent;
    cursor:pointer;
    color:#505050;
    text-transform: uppercase; 
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    border:2px solid #505050;
}
.newsletter-style input[type="submit"]:hover{
    background:#505050;
    color:#fff;
}
.newsletter-section{
    width:100%;
    background-color:#efefef;
    padding-top:30px;
    padding-bottom:30px;
    border-bottom: solid 2px #c9c9c9;
}
.newsletter-section .main{
    font-size:20px;
    text-transform:uppercase;
    color:#505050;
    overflow:hidden;
}
.button-laptop{
    display: inline;
}
.button-mobile{
    display: none;
}
@media(max-width: 1030px) { 
    .newsletter-section .main{
        padding-left:10px;
        padding-right: 10px;
    }
    .newsletter-style input[type="text"] {
        width:100%;
    }
    .button-laptop{
        display: none;
    }
    .button-mobile{
        display: block;
    }
}
@media(min-width: 738px) and (max-width: 1030px) { 
    .newsletter-section .main{
        padding-left:20px;
        padding-right: 20px;
    }

}

@media(max-width: 768px) { 
    h3.maxHeightSlider{
        font-size:20px!important;
    }
}
.newsletterErro{
    font-weight: bold;
    margin-top: 20px;
    color: red;
    font-size: 18px;
}
.floating-box2{
    font-family: "Raleway",Helvetica,Arial,sans-serif;
    font-weight: 200;
    font-size: 15px;
    width: 400px;
    padding: 15px;
    position: fixed;
    top: 170px;
    right: 0px;
    color: white;
    background-color:#cd6b5c; 
    z-index: 1000;
}
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.rslides li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}

.emDireto{
    color: rgba(214, 25, 25, 1)!important;
}
.emDireto:hover{
    background-color: #fff!important;
}
/**
* Página Jogador
**/
.circular-perfil{
 max-width:250px;
 border-radius: 250px;
 -webkit-border-radius: 250px;
 -moz-border-radius: 250px; 
 border: 6px solid rgba(255, 255, 255, 0.4);
}
.nextGames{
    list-style: none;
    color: #fff;
    padding: 0;
    margin: 0;
    font-family:'Roboto', sans-serif;
    text-align: center;
    font-weight: 300;
}
.nextGames li{
    font-size: 14px;
    margin-right: 0;
    line-height: 40px;
    text-transform: uppercase;
    border-bottom: 1px solid #504f4c;
}
.ultimosJogosJornada:hover,.ultimosJogosResultados:hover{
    background-color: #43423f;
}
.playerInfo, .substituicaoInfo{
    transition: all 0.4s;
    background-color: #ffffff;
    padding: 15px;
    border: 1px solid #f2f2f2;
    text-transform: uppercase;
    width:30%;
    float: left;
    margin-bottom: 15px;
    margin-left:15px;
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.playerInfo a, .substituicaoInfo a{
    color: #000;
}
.playerInfo a:hover, .substituicaoInfo a:hover{
    text-decoration: none;
    color: #ff6600;
}
.quatroEmLinha{
    width:22.8%;
}
.playerInfo:hover{
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.playerInfoPosicao{
    display: block;
    color: #a6a6a6;
}
.playerInfoTitular{
    display: inline-block;
    color:#a1a1a1;
    font-size: 12px;
}
.playerTitular{
    padding: 5px;
    overflow: hidden;
    background-color: #ff6600;
    color: #fff;
    margin-top: 5px;
}
.playerSuplente{
    padding: 5px;
    overflow: hidden;
    background-color: #B9AB9A;
    color: #fff;   
    margin-top: 5px;
}
.ultimosJogosJornada{
    padding: 5px;
    width:30%;
    display:block;
    overflow:auto;
    float:left;
    border-right:1px solid #504f4c;
}
.ultimosJogosResultados{
    padding: 5px;
    width:70%;
    text-align:center;
    display:inline-block;
    overflow:auto;
    float:right;
}
.contentNextLastGames{
    width:50%;
    float:left;
}
.nextGame{
    background-color: #e9e9e9;
    height:255px;
    padding:40px;
    padding-bottom:0px;
}
.roundChart{
    width:33.33%;
    padding:40px;
    float:left;
    text-align:center;
    font-weight: 300;
    font-size: 16px;
}
.minutosChart{
    height:20%;
}
.mainMinutosGolos{
    text-align:center;
    overflow:hidden;
    text-transform:uppercase;
}
.nextGameImageLeft{
    width:40px;
    height:auto;
    vertical-align:middle;
    margin-right:30px;
}
.nextGameImageRight{
    margin-left:30px;
    width:40px;
    height:auto;
    vertical-align:middle;

}
.nextGameBigTitle{
    color: #000000;
    font-size: 24px;
    margin-bottom: 30px;
    padding-top: 5px;
    margin-bottom:15px;
}
.mainPlayers{
    overflow: hidden;
    margin-bottom:0;
    margin-left: -15px;
    margin-right: -15px;
}
.mainPlayerJogo{
 overflow: hidden;
 margin-bottom:0;
 margin-left: -15px;
 margin-right: -15px;
}
@media only screen and (max-width: 767px) {
    .contentNextLastGames{
        width:100%;
        float:none;
    }
    .playerInfo, .substituicaoInfo{
        width:100%;
        margin-left: 0px;
    }
    .roundChart{
        width:100%;
    }
    .mainMinutosGolos{
        display: none;
    }
    .mainPlayers{
        width:100%;
        margin:0px;
    }
    .mainPlayerJogo{
        width:100%;
        padding: 15px;
        margin:0px;
    }
    .nextGame{
        padding: 10px;
        padding-bottom: 30px;
        height:auto;
    }
    .nextGameImageLeft{
        width:30px;
        margin-right:3px;
    }
    .nextGameImageRight{
        width:30px;
        margin-left:3px;
    }
    .nextGameBigTitle{
        font-size: 18px;
    }
    .ultimosJogosJornada{
        width: 100%;
    }
    .ultimosJogosResultados{
        width: 100%;
    }
}

@media only screen and (max-width: 1023px) {
    .contentNextLastGames{
        width:100%;
        float:none;
    }
}

.imageRotateHorizontal{
    -moz-animation: spinHorizontal .8s 1 linear;
    -o-animation: spinHorizontal .8s 1 linear;    
    -webkit-animation: spinHorizontal .8s 1 linear;
    animation: spinHorizontal .8s 1 linear;
}

@-moz-keyframes spinHorizontal {
    0% {
        -moz-transform: rotateY(0deg);
    }

    100% {
        -moz-transform: rotateY(360deg);
    }
}

@keyframes spinHorizontal {
    0% { 
        transform: rotateY(0deg); 
    }
    100% {
        transform: rotateY(360deg);
    }
}

@-ms-keyframes spinHorizontal {
    0% { 
        -ms-transform: rotateY(0deg); 
    }
    100% {
        -ms-transform: rotateY(360deg);
    }
}

@-o-keyframes spinHorizontal {
    0% { 
        -o-transform: rotateY(0deg); 
    }
    100% { 
        -o-transform: rotateY(360deg); 
    }
}

@-webkit-keyframes spinHorizontal {
    0% { 
        -webkit-transform: rotateY(0deg); 
    }
    100% { 
        -webkit-transform: rotateY(360deg); 
    }
}
/**
*Mercado de Transferencias
**/
.clubMercado-Barra{
    padding: 10px;
  font-size: 15px; 
  background-color: #ff6600;
}
a.buttonMercado{
    background-color:#fff;
    color: #777!important;
    border-bottom: 2px solid #777!important;
    border: none;
    text-align:center;
    font-family: Roboto,Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0px;
    text-align: center;
    padding:8px 15px;
    font-size: 16px;
    border: none;
}
a.buttonMercado:hover, a.buttonMercado.active {
    background-color:#fff;
    color: #ff6600!important;
    border-bottom: 2px solid #ff6600!important;
    border: none;
    text-align:center;
    font-family: Roboto,Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0px;
    text-align: center;
    padding:8px 15px;
    font-size: 16px;
    border: none;
}
.clubImg img {
    -webkit-transition: all 1s ease; /* Safari and Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* IE 9 */
    -o-transition: all 1s ease; /* Opera */
    transition: all 1s ease;
}

.clubImg:hover img {
    -webkit-transform:scale(1.15); /* Safari and Chrome */
    -moz-transform:scale(1.15); /* Firefox */
    -ms-transform:scale(1.15); /* IE 9 */
    -o-transform:scale(1.15); /* Opera */
    transform:scale(1.15);
}
.clubMercado{
    width: 100%;
    border: 1px solid #e6e6e6;
    border-bottom: none;
    position: relative;
    margin-bottom: 20px;
}
.clubBottom{
    background-color: #DCDCDC;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}
.clubImg{
    text-align: center;
    padding-top: 17px;
    padding-bottom: 17px;
}
.clubImgTamanhos{
    max-width: 84px;
    height: 84px;
}
.clubBottomInfo{
    color: #000000;
    display: inline-block;
    text-align: left;
}
.entradas, .saidas{
    font-size: 13px;
    text-transform: uppercase;
}

.clubMercado .clubBottom .clubBottomInfo .entradas:before {
    content: "";
    background: url(/img/transferencias/entradas.png) no-repeat 0 0;
    vertical-align: text-bottom;
    display: inline-block;
    background-size: 100%; 
    width: 20px;
    height: 20px;
    margin-right: 2px;
    vertical-align: middle;
}

.clubMercado .clubBottom .clubBottomInfo .saidas:before {
    content: "";
    background: url(/img/transferencias/saidas.png)  no-repeat 0 0;
    background-size: 100%;
    vertical-align: text-bottom;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 2px;
    margin-left: 5px;
    vertical-align: middle;
}
.afalink{
    color:#fff;
}
.afalinkRed{
    color:#ff6600!important;
}
.afalinkRed:hover{
    color:#ff6600!important;
}
.afalink:hover, .infoAutor:hover{
    color:#ff6600!important;
}
.infoAutor{
    color:#000!important;
}

.noticiaMainContent{
    overflow:hidden;
    padding-bottom: 20px;
    border-bottom:1px solid #c8c8c8;
}
.noticiaImagemPrincipal{
    width:50%;
    float:left;
    border-radius:3px;
    margin-right: 10px;
}
.noticiaImagemRelacionada{
    width:25%;
    float:left;
    border-radius:3px;
    margin-right: 10px;
}
.noticiaBodyContent, .noticiaBodyContentRelacionadas{
    overflow:hidden;
    margin-left:15px;
}
.noticiaCategoriaPrincipal{
    color:#ff6600;
    width:auto;
    display:block;
    font-size:16px;
    text-transform:uppercase;
    overflow:hidden;
}
.noticiaDataPublicacao{
    color:#808080;
    padding-bottom: 5px;
    display:inline-block;
    font-size:14px;
    font-weight: 300;
}
.noticiaTitulo{
    font-weight:900;
    font-size:18px;
    text-transform:uppercase;
    padding-bottom: 5px;
}
.noticiaDescricao{
    font-size:18px;
    font-family: Georgia, Times, serif;
}
.noticiaSingleDescricao{
    margin-top:10px;
    font-family: Georgia, Times, 'Times New Roman', serif;
    line-height: 24px;
    font-size: 18px;
}
.noticiaSingleDescricao a{
    color:#ff6600;
}
.noticiaSingleDescricao a:hover{
    text-decoration: underline!important;
    color:#ff6600;
}
.noticiaBotaoLerMais{
    background-color: #ff6600;
    padding: 8px 10px;
    display: inline-block;
    font-size: 12px;
}
.noticiaSocialNetWorksContent{
    margin-top:10px;
}
.noticiaSocialNetWorksContent a{
    margin-right:5px;
}
.noticiaSocialNetWorksContent img{
    width:40px;
}

@media(max-width: 768px) { 
    .noticiaImagemPrincipal{
        width:100%;
        float:none;
    }
    .noticiaBodyContent{
        margin-top: 10px;
        margin-left:0px;
    }
    .noticiaSocialNetWorksContent img{
        width:45px;
    }
}
/**
*Calendario
**/
.linhaLista{
    padding-bottom: 0px;
    width: 100%;
    font-size: 16px;
}
.resultado-calendario{
    width: 30%;
    margin-bottom: 2px;
    text-align: center;
    display: inline-block;
}
.wrap{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.equipaCalendario img{
    max-height: 30px!important;
}
.resultadoCalendario{
    font-size: 25px;
    margin-left: 10px;
    margin-right: 10px;
}
.dataCalendario{
  font-weight: 300;
  color: #6d6d6d;
  font-size: 14px;
  padding-top: 10px;
}
.equipaCalendario{
    display: inline-block;
    width: 35%;
    color: #333333;
    font-weight: 300;
}
.equipaCalendario img{
    margin-bottom: 10px;
}
.nano .nano-content {
    padding: 0px;
}
/**
*Scroll
**/
.nano .nano-pane {
    background: #555;
    width: 8px;
    right: 1px;
  margin: 5px;
}

.nano .nano-slider {
    background: #111;
}
/** initial setup **/
.nano {
  position : relative;
  width    : 100%;
  height   : 100%;
  overflow : hidden;
}
.nano > .nano-content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
}
.nano > .nano-content:focus {
  outline: thin dotted;
}
.nano > .nano-content::-webkit-scrollbar {
  display: none;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
  display: block;
}
.nano > .nano-pane {
  background : rgba(0,0,0,.25);
  position   : absolute;
  width      : 10px;
  right      : 0;
  top        : 0;
  bottom     : 0;
  visibility : hidden\9; /* Target only IE7 and IE8 with this hack */
  opacity    : .01;
  -webkit-transition    : .2s;
  -moz-transition       : .2s;
  -o-transition         : .2s;
  transition            : .2s;
  -moz-border-radius    : 5px;
  -webkit-border-radius : 5px;
  border-radius         : 5px;
}
.nano > .nano-pane > .nano-slider {
  background: #444;
  background-color: #ff6600;
  position              : relative;
  margin                : 0 1px;
  -moz-border-radius    : 3px;
  -webkit-border-radius : 3px;
  border-radius         : 3px;
}
.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack */
  opacity    : 0.99;
}
.link-contatos{
    padding-top: 15px;
}
.link-contatos > span{
    text-transform: uppercase;
    font-size: 18px;
}
.link-contatos >span ~ a{
    font-size: 15px;
    color: #545454!important;
}
.link-contatos > span ~ a:hover{
    color: #ff6600!important; 
}
/**
*Melhores Marcadores
**/
.linha-melhores-marcadores{
    width: 70%;
    display: inline-block;
    height: 60px;
}
.linha-melhores-marcadores-imagens{
    margin: 0.5em 0;
    text-align: center;
    float: left;
    height: inherit;
    width: 50%;
}
.linha-melhores-marcadores .circular-melhores-marcadores{
    border-radius: 50%;
    max-height: 70%;
}
.linha-melhores-marcadores .circular-melhores-marcadores ~ img{
    max-height: 50%;
    margin-left: 10px;
}
.linha-melhores-marcadores-informacao{
    margin: 0.5em 0;
    vertical-align: middle;
    float: left;
    width: 50%;
    height: inherit;
}
.informacao-melhores-marcadores{
    color: #333333;
    text-transform: capitalize;
    margin-bottom: 2px;
    font-weight: 300;
    font-size: 22px;
    display: block!important;
    position: relative;
}
.informacao-melhores-marcadores-2{
    color: #6d6d6d;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
    display: block!important;
    position: relative;
}
.golos{
    font-weight: 300;
    color: #333333;
    text-align: center;
    width: 20%;
    line-height: 2.3;
    font-size: 25px;
    float: right;
    height: 60px;
}
.melhores-marcadores-posicao{
    width: 10%;
    float:left;
    font-size: 40px;
    line-height: 1.23;
    height: 60px;
    font-weight: 300;
    color: #B9AB9A;
}
/**
*Classificação
**/
.classificacaoPosicao{
    width: 30px;
    font-size:25px;
    color:#B9AB9A;
    font-weight: 300;
}
.classificacaoLogo > img{
    max-height:30px!important;
    margin-left:10px;
    margin-right:10px;
}
.classificacaoLogo{
    width: 60px;
}
.classificacaoEquipa{
    font-size:20px;
    color:#000;
    font-weight: 300;
    line-height: 35px!important;
}
.classificacaoDados{
   font-weight: 300;
   width:30px;
   color:#000;
   font-size:18px;
   line-height:30px!important;
}
ul.golosAoMinutoUL:first-child{
    border-top:1px solid #ff6600;
}
.golosAoMinutoUL{
  text-align: center;
  margin: 0;
  padding: 0;
}
ul.golosAoMinutoUL:last-child{
      border-bottom:1px solid #ff6600;
}
.borderBottomGrey{
    border-bottom:1px solid #d3d3d3;
}
.golosAoMinutoNomeEquipa{
    font-weight: bold;
}
.resultadoGoloAoMinuto{
    width:20%;
}
.estadoEmDirectoGoloAoMinuto{
    width:40%;
    margin-left:30%;
    font-size:11px;
    background-color:#99cc66;
    padding:5px;
    color:#fff;
}
.estadoFinalizadoGoloAoMinuto{
    width:45%;
    margin-left:27.5%;
    font-size:11px;
    background-color:#ff6600;
    padding:5px;
    color:#fff;
}
@media only screen and (max-width: 767px) {
    .resultadoGoloAoMinuto{
        width:30%;
}
.estadoFinalizadoGoloAoMinuto{
    width:90%;
    margin-left:5%;
    font-size:11px;
    background-color:#ff6600;
    padding:5px;
    color:#fff;
}
.estadoEmDirectoGoloAoMinuto{
    width:90%;
    margin-left:5%;
    font-size:11px;
    background-color:#99cc66;
    padding:5px;
    color:#fff;
}
}
@media only screen and (max-width: 615px) {
  .title-align-left{
    width: 100%;
  }
  .title-align-right{
    float: none;
  }
}

/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(155, 155, 155, 0.9);
	z-index: 1001;
	overflow-y: scroll;
}
.modal-content{
	border-radius: 0;
}
/* Overlay closing cross */
.overlay .overlay-close {
	width: 80px;
	height: 80px;
	position: absolute;
	right: 20px;
	top: 20px;
	overflow: hidden;
	border: none;
	background: url(/img/magazine/cross.png) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 100;
}
/* Menu style */
.overlay > div:nth-of-type(1) {
	text-align: center;
	position: relative;
	top: 50%;
	height: 60%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
/* Effects */
.overlay-door {
	visibility: hidden;
	width: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: width 0.5s 0.3s, visibility 0s 0.8s;
	transition: width 0.5s 0.3s, visibility 0s 0.8s;
}
.overlay-door.open {
	visibility: visible;
	width: 100%;
	-webkit-transition: width 0.5s;
	transition: width 0.5s;
}
.overlay-door > div:nth-of-type(1) {
	position: absolute;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
.overlay-door > div:nth-of-type(1),
.overlay-door .overlay-close {
	opacity: 0;
	-webkit-transition: opacity 0.3s 0.5s;
	transition: opacity 0.3s 0.5s;
}
.overlay-door.open > div:nth-of-type(1),
.overlay-door.open .overlay-close {
	opacity: 1;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
.overlay-door.close > div:nth-of-type(1),
.overlay-door.close .overlay-close {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
div.gallery {
    border: 1px solid #ccc;
    transition: transform .3s;
}
div.gallery:hover {
    border: -1px solid #ccc;
    cursor: pointer;
    box-shadow: 4px 5px 5px 0px #777;
    transform: scale(1.2);
}
div.gallery:hover .desc{
    background-color:#f60;
    color:#fff;
}
div.gallery img {
    width: 100%;
    height: auto;
}
div.desc {
    padding: 15px;
    text-align: center;
}
* {
    box-sizing: border-box;
}
.responsive {
    padding: 6px 6px;
    float: left;
    width: 24.99999%;
}
@media only screen and (max-width: 700px) {
    .responsive {
        width: 100%;
        margin: 6px 0;
    }
}
@media only screen and (max-width: 500px) {
	.overlay-door.open > div:nth-of-type(1){
		width: 80%;
	}
    .responsive {
        width: 100%;
    }
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
/*MODAL*/
#myImg {
    cursor: pointer;
    transition: 0.3s;
}
#myImg:hover {opacity: 0.7;}
/* The Modal (background) *//*


/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}
/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
/* The Close Button */
.close-overlay-afamagazine {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.close-overlay-afamagazine:hover,
.close-overlay-afamagazine:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}