@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,600,300);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600,700);

html,
body {
  font-size: 14px;
  height: 100%;
}
@media only screen and (min-width: 768px) {	
	html,
	body {
	  font-size: 15px;
	}
}

body {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	height: 100%;
	left: 0px;
	line-height: 1.6;
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	background-color: #000;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	background-attachment: fixed;
/*	background-image: url(../img/bg.jpg);*/
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}

.bg-white{
	background-color: #fff;
}
.bg-black{
	background-color: #000;
}
.bg-dark-blue{
	background-color:rgba(43, 50, 77, 0.42);	
}
.btn-sede-online{
	background-image:url(../img/btn-sede-online.png);
	width:206px;
	height:36px;
		
}
.hacete-socio{
	float: right;
    width: 280px;
    margin-top: 38px;	
}

/***************************** MISCELANEA **************************************************/

/***************************** HEADER ************************************************************/
.header-separator{
	width:100%;
	height: 62px;
}
@media only screen and (min-width: 768px) {	
	.header-separator{
		width:100%;
		height: 212px;
	}
}
.header {
	width: 100%;
	min-height: 64px;
    position: fixed;
    top: 0px;
	z-index: 40;
}
.header .header-top{
	width: 100%;
	background-color: #2067b2;
	color: #89A1BD;
    overflow: hidden;
	
	height:40px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.header .header-top .btn{
	color: rgba(255,255,255,0.6);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.header .header-top .btn:hover{
	color: #fff;
}
.header .header-top h1{
	font-size: 0.8em;
    padding: 0px;
    margin: 0px;
    line-height: 40px;
    float: left;
}
.header .header-middle{
	height:124px;
	overflow:hidden;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	
}
.header .header-wrapper {
    background: #fff;
    padding: 2px 0;
}
.header .header-wrapper .logo {
	min-height: 120px;
	max-height: 120px;
}
.header .header-wrapper-menu{
	padding: 0px;
	min-height: 54px;
	background: #000;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.header-fix{
    height: 220px;
    width: 100%;
    display: block;	
}

.header.small {
}
	.header.small .header-top{
		height:0px;
	}
	.header.small .header-middle {
		padding: 0px;
		height:0px;
	}	
	.header.small .nav-main > .nav > li.nav-logo {
    	width: 58px;
	}
	
/******************************************** MENU MOBILE *****************************************/
	.header-mobile .navbar-mobile {
		background-color: #fff;
		border-color: #e7e7e7;
		border-radius: 0px;
		position:fixed;
		width: 100%;
		left:0px;
		height:64px;
		z-index: 100;
		top:0px;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.header-mobile.open .navbar-mobile {
		left: 270px;
	}
	
	.header-mobile .navbar-mobile .btn-toggle-menu {
		position: relative;
		float: left;
		margin-right: 15px;
		padding: 16px 18px;
		font-size: 1em;
		margin: 0px;
		background-color: transparent;
		background-image: none;
		border: none;
	}
	.header-mobile .navbar-mobile .logo{
	    float: left;
	    width: 180px;
	    overflow: hidden;
	}

	.header-mobile .navbar-collapse {
		width: 270px;
		height: 100%;
		display: block; 
		visibility: visible; 
		top: 0px;
		left: -280px;
		position: fixed;
		z-index: 100;
		bottom: 0px;
		background-color: #082543;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.header-mobile .navbar-collapse.in {
		left:0px;
	}
	.header-mobile .navbar-collapse.collapsing {
		height: 100%;
	}
	.navbar-mobile .navbar-nav  ul {
    	margin:0px;
		padding:0px;
	}
	.navbar-mobile .navbar-nav  ul.subsub {
    	margin-left:12px;
	}
	.navbar-mobile .navbar-nav  li {
    	width:100%;
	}
	.navbar-mobile .navbar-nav  li  a {
    	color: #fff;
		line-height: 22px;
		text-decoration: none;
		position: relative;
		display: block;
		padding: 13px 16px;
		width: 100%;
	}
	.navbar-mobile .navbar-nav  li  a:hover,
	.navbar-mobile .navbar-nav  li  a:active {
		color: #fff;
		background-color: #16406b;
	}
	.navbar-mobile .navbar-nav  .sub li a {
    	padding: 10px 30px;
	}

	.header-mobile .overlay{
		width:0%;
		height:0%;
		position:fixed;
		z-index:99;
		background-color:rgba(0,0,0,0.5);
		-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	}
	.header-mobile.open .overlay{
		width:100%;
		height:100%;
	}
	
	.floating-button{
	    position: fixed;
		z-index: 10;
	    padding: 5px;
		left: 0px;
		top: calc(50% - 140px);
		width: 59px;
		height: 280px;
		background-color: #2067b2;
    	overflow: hidden;
		cursor:pointer;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.floating-button:hover{
		background-color: #1B5494;
	}
		.floating-button > img{
			width: 100%;
		}

/******************************** header full ******************************************/
.header-floating{
    padding: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 1000;
}
.header-floating .logo {
    min-height: 120px;
    max-height: 120px;
}
.header-floating .header-top, .header-floating .header-middle{
    background-color: transparent;
	color: rgba(255,255,255,0.6);
}
.header-floating .header .header-wrapper-menu{
	background-color:#000;	
}
.header-floating .header.large .header-wrapper-menu{
	background-color:transparent;	
}

.header-floating .nav-main > .nav {
	background-color:rgba(0,0,0,0.4);
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.slick-full .slick-arrow{
	width: 70px;
    height: 70px;
}
.slick-full .slick-arrow img{
	width: 40px;
    height: 40px;
}
	
.slick-full .slick-prev{
	left:30px;	
}
.slick-full .slick-next{
	right:30px;	
}


.next-match-bar{
	background-color:#082543;
}
.next-match-bar .match-title{
	    color: rgba(255,255,255,0.4);
    font-size: 14px;
    width: 100%;
    text-align: center;
    font-weight: 500;
    padding: 0px;
    margin: 14px 0px 0px 0px;
}
.next-match-bar .teams{
	overflow:hidden;
}
.next-match-bar .teams .team{
	width: calc( 50% - 30px);
    float: left;
}
.next-match-bar .teams .team img{
	width: 70px;
}
.next-match-bar .teams .team h3{
	color:#fff;
    font-size: 15px;
    line-height: 60px;
}
.next-match-bar .teams .team.team-left img, .next-match-bar .teams .team.team-left h3{
	float:right;
    margin: 16px 20px 16px 0px;
}
.next-match-bar .teams .team.team-right img, .next-match-bar .teams .team.team-right h3{
	float:left;
    margin: 16px 0px 16px 20px;
}

.next-match-bar .teams .vs{	
	width: 60px;
    height: 80px;
    text-align: center;
    color: #8b96a0;
    line-height: 107px;
    font-size: 28px;
    font-weight: bold;
    float: left;
}

.next-match-bar .info{
	text-align: center;
    font-size: 14px;
    margin-bottom: 7px;
    font-weight: 500;
    color:rgba(255,255,255,0.7);
}
.next-match-bar .info.detail{
	margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 50s linear infinite;
}


.slide-full-background{
	width:100%;		
}

.slide-full-background .float-slide{
	background-position:center;
	background-size:cover;
	padding-bottom:40%;
}

/******************************** header full ******************************************/




/******************************************** MENU DESKTOP *****************************************/

	.nav-main{
	    font-size: 0.9em;	
	}
		.nav-main > .nav{
			border-bottom:3px solid #000;
		}
		.nav-main > .nav > li{
			padding: 0px;
		    position: relative;
			float: left;
			display:block;
		    height: 54px;
		}
		.nav-main > .nav > li.nav-logo{
			width:0px;
			overflow:hidden;
		}
	    .nav-main > .nav > li:hover{
			border-bottom:3px solid #fff;
		}
		.nav-main > .nav > li > a{
		    background: none;
			border: 1px solid #fff;
			border: 1px solid transparent;
			border-radius: 3px;
			line-height: 52px;
		    padding: 0px 10px;
			position: relative;
		    text-transform: uppercase;
			text-decoration: none;
			text-align:left;
			text-shadow: none;
			-webkit-transition: all 0.2s linear;
			transition: all 0.2s linear;
			z-index: 901;
			color: #D2D2D2;
    		font-size: 1rem;
		    font-weight: 700;
		}
		.nav-main > .nav > li:hover > a{
			color:#fff;
		}
		.nav-main > .nav > li > .sub {
		    background-color: #000;
		    list-style: none;
			border-radius: 0px;
			display: none;
			line-height: 24px;
			margin: 0px 0 0;
			padding: 0px;
			position: absolute;
			z-index: 905;
			color:#fff;
			/*
			-webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.15);
			-moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.15);
			box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.15);
			*/
		}
		.nav-main > .nav > li:hover > .sub {
			display: block;
    		-webkit-animation: fadeIn 0.4s;
		    animation: fadeIn 0.4s;
		}
		.nav-main > .nav > li > .sub > li{
			min-width:180px;	
			padding: 0px;
			border: none;
		}
		.nav-main > .nav > li > .sub > li > a{
			padding: 12px 16px;
			width:100%;	
			display: block;
			color: inherit;
		    text-transform: uppercase;
		    white-space: nowrap;
		    text-decoration: none;
		}
		
		.nav-main > .nav > li > .sub  .subsub {
			padding-left: 18px;
			list-style: none;
		}
		.nav-main > .nav > li > .sub .subsub > li{
			min-width:180px;	
			padding: 0px;
			border: none;
		}
		.nav-main > .nav > li > .sub  .subsub > li > a{
			padding: 6px 16px;
			width:100%;	
			display: block;
			color: inherit;
		    text-transform: uppercase;
		    white-space: nowrap;
		    text-decoration: none;
		}
		
		
		.nav-main > .nav > li.megamenu {
    		overflow: hidden;
    		position: static;
		}
		.nav-main > .nav > .megamenu > .sub {
			left: -15px;
			padding: 0;
			width: 886px;
			z-index: 900;
		}
		.nav-main > .nav > .megamenu > .sub > .sub-list {
	    	width: 66%;	
			display: table-cell;
    		padding: 0px 5px;
		    vertical-align: top;
		}
		.nav-main > .nav > .megamenu > .sub > .promo-block {
			border-left: 1px solid #ccc;
			border-right: 0 none;
			border-right: 1px solid #ccc;
			display: table-cell;
			font-size: 0.7em;
			line-height: 18px;
			position: relative;
			text-align: center;
			width: 34%;
		}
		.nav-main > .nav > .megamenu > .sub > .sub-wrapper {
		    display: table;
		    width: 100%;
		}
		.nav-main > .nav > .megamenu > .sub > .sub-list > .box{
			clear: none;
    		width: 50%;
		    float: left;
		    padding: 20px 28px;
		}
		.nav-main > .nav > .megamenu > .sub > .sub-list > .box > ul{
			list-style: none;
		    padding: 0px 20px;			
		}
		.nav-main > .nav > .megamenu > .sub > .sub-list > .box > ul > li{
		    display: block;
		}
		.nav-main > .nav > .megamenu > .sub > .sub-list > .box > ul > li > a {
		    padding: 8px 0px;
			width: 100%;
			text-decoration: none;
		    color: inherit;
			display: block;
		}
		
		.item-new {
			background: #2067b2;
			border-radius: 3px;
			color: #fff;
			font-size: 0.6em;
			line-height: 1;
			letter-spacing: 0.01em;
			padding: 6px 10px;
			position: absolute;
			right: 2px;
			top: -12px;
			text-transform: uppercase;
		}
		.item-new:before{
		    border: 5px solid transparent;
			border-right-color: #2067b2;
			bottom: -5px;
			content: "";
			display: block;
			position: absolute;
			right: 0;
		}
/******************************************** MENU DESKTOP *****************************************/
	
	





/***************************** HEADER ************************************************************/


/***************************** TITULO PRINCIPAL **************************************************/
.title-box {
    margin-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #D4D4D4;
}
	.title-box:before {
		background: #2067b2;
		bottom: 0;
		content: "";
		display: block;
		height: 4px;
		left: 0;
		margin: 0 0 -1px;
		position: absolute;
		width: 40px;
	}
	.title-box.text-right:before {
	  left: auto;
	  right: 0;
	}
	
	.title-box.text-center:before {
	  left: 50%;
	  margin-left: -20px;
	}
	.title-box .title {
	  color: #fff;
	  font-size: 1.1em;
	  font-weight: normal;
	  margin: 0 0 12px 0;
	  padding: 14px 0 0;
	}
	.title-box h1.title,
	.title-box .h1.title {
	  font-size: 1.8em;
	}
	.title-box .btn {
	  font-size: 0.7em;
	  padding-left: 15px;
	  padding-right: 15px;
	  position: absolute;
	  right: 0;
	  top: 0;
	}
	.title-box .btn .glyphicon {
	  margin: -1px 0 0 3px;
	}
	.title-box.title-white .title {
	  color: #fff;
	}
	.title-box.no-margin,
	.no-margin {
	  margin-bottom: 0 !important;
	}
	.title-box.title-white,
	.page-header.white {
	  border-color: rgba(255, 255, 255, 0.3);
	}
	.title-box.title-white:before,
	.page-header.white .container:before {
	  background: #fff;
	}
/***************************** TITULO PRINCIPAL **************************************************/

/***************************** SLIDE PRINCIPAL **************************************************/
.main-slide{
	
}
	
	.main-slide .col:first-child {
    	padding-right: 0px;
	}
	.main-slide .col:nth-child(2) {
    	padding-left: 0px;
	}
/*
.main-slide .slide{
	background: #1A1D2B;
	    overflow: hidden;
}
	.main-slide .slide  .item{
		width:100%;
		float:left;	
		position: relative;
	}
	.main-slide .slide  .item .image{
		width: 100%;
	    padding-bottom:60%;
		height: auto;
		background-position:center;
		background-size:cover;
		position:relative;
	}
	.main-slide .slide .item > .overlay{
		position:absolute;
		top:0px;
		right:0px;
		left:0px;
		bottom:0px;
	    background: rgba(0,0,0,0);
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.61) 50%, rgba(0,0,0,1) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(50%, rgba(0,0,0,0.61)), color-stop(100%, rgba(0,0,0,1)));
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.61) 50%, rgba(0,0,0,1) 100%);
		background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.61) 50%, rgba(0,0,0,1) 100%);
		background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.61) 50%, rgba(0,0,0,1) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.61) 50%, rgba(0,0,0,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
		opacity:1;
	}
	.main-slide .slide .item > .info{
		width: 100%;
		height:90px;
		left: 0px;
		bottom: 0px;
		position: absolute;
		white-space: normal;
		color: white;
		background-color: rgba(0, 0, 0, 0.3);
		padding: 18px 25px;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.main-slide .slide .item > .info > h2{
	
	    font-size: 1.6em;
    	font-weight: bold;
    	line-height: 1.1em;
		margin:0px;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.main-slide .slide .item > .info > p{
		opacity:0;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}

	.main-slide .slide> .item:hover > .overlay{
		opacity:0;
	}
	.news-main  .item:hover .info{
		height:120px;
		background-color: rgba(0, 0, 0, 0.8);	
	}
	.main-slide .slide .item:hover > .info > p{
		opacity:1;
	}
	*/
	
	.image-list{
		list-style: none;
		padding: 0px;
		overflow: hidden;
		width:100%;
		margin:0px;
	}
	.image-list .slick-prev,
	.image-list .slick-next{
		
		width: 46px;
		height: 50px;
		background: #2067b2;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.image-list .slick-prev:hover,
	.image-list .slick-next:hover{
		background: #325082;
	}

	.image-list .item{
		width: 50%;
		margin: 0px;
		position: relative;
	    display: block;
		float:left;
		overflow:hidden;
		border:none;
	}
	.image-list .item a{
		display:block;	
	}
	.image-list .item a .image{
		width: 100%;
	    height:270px;
		background-position: center;
		background-size: cover;
		position: relative;
	}
	.image-list .item a .info{
		left: 0px;
		bottom: 0px;
		position: absolute;
		white-space: normal;
		color: white;
	    padding: 40px 36px;
		width:100%;
		
		background: rgba(76,76,76,0);
		background: -moz-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(76,76,76,0)), color-stop(9%, rgba(69,69,69,0)), color-stop(58%, rgba(32,32,32,0.81)), color-stop(100%, rgba(0,0,0,0.8)));
		background: -webkit-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: -o-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: -ms-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: linear-gradient(to bottom, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#000000', GradientType=0 );

		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.image-list .item a .info  h2{
		font-family: 'Open Sans', sans-serif;
	    font-size: 1.8em;
	    font-weight: bold;
        line-height: 34px;
		margin:0px;
	    text-shadow: 3px 3px 0 #000,3px 3px 10px #000;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.image-list .item a .tag{
	    background: #2067b2;
	    border-radius: 3px;
		color:#fff;
		font-size:0.7em;
		position:absolute;
		top:12px;
		left:12px;
	    padding: 6px 10px;
	    text-transform: uppercase;
	}
	.image-list .item a .info p{
		display:none;
	}
	.image-list .item:hover a .overlay{
		opacity:0;
	}
	.image-list .item:hover a .info > p{
		opacity:1;
		height:auto;
	}
	
	.image-list-x2 .item a .image{
	    height:540px;
	}
	.image-list-x2 .item a .info{
	    padding: 90px 36px;
	}
	.image-list-x2 .item a .info > h2{
	    font-size: 2.5em;
	}
	
	
	
/***************************** SLIDE PRINCIPAL **************************************************/


/******************************* CAROUSEL DE JUGADORES **********************************************/
.players-slide .slick-prev,
.players-slide .slick-next{
	    padding: 12px;
    width: 46px;
    height: 50px;
    background: #2067b2;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.players-slide .slick-prev:hover,
.players-slide .slick-next:hover{
	background: #325082;
}
.carousel-players{
}
	.player-item{
        width: 100%;
	    margin-top: 40px;
	 	border-radius: 3px;
    	display: block;
    	float: none;
    	overflow: hidden;
    	position: relative;
    	text-align: left;
    	vertical-align: top;
	}
	.player-item > .default{
		background: #f7f7f7;
    	border-radius: 3px;
		padding-bottom: 140%;
    	overflow: hidden;
    	position: relative;		
		-webkit-transform: rotateX(0deg) rotateY(0deg);
		-webkit-transform-style: preserve-3d;
		-webkit-backface-visibility: hidden;
		-moz-transform: rotateX(0deg) rotateY(0deg);
		-moz-transform-style: preserve-3d;
		-moz-backface-visibility: hidden;
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
		-webkit-transition: all .6s ease-in-out;
		transition: all .6s ease-in-out;
		z-index: 24;
		height:100%;
	}
	.player-item:hover > .default{
			-webkit-transform: rotateY(-180deg);
			-webkit-transform-style: preserve-3d;
			/* -webkit-backface-visibility: hidden; */
			-moz-transform: rotateY(-180deg);
			-moz-transform-style: preserve-3d;
			-webkit-transform: rotateY(-180deg);
			transform: rotateY(-180deg);
			-webkit-transition: all .6s ease-in-out;
			transition: all .6s ease-in-out;
		}
	
	.player-item > .default > .image{
	    width: 100%;
		position: absolute;
		height: calc( 100% - 72px);
	    top: 0px;
	    border: 0 none;
    	display: block;
    	margin: 0;
    	background: #f2f2f2;
		background-size:cover;
		background-position:center;
    	line-height: 0;
    	text-decoration: none;
	}
	.player-item > .default > .description{
		background: #f2f2f2;
		border-top: 1px solid #e1e1e1;
		color: #505050;
		display: table;
		font-size: 0.8em;
		height: 72px;
		line-height: 18px;
		position: absolute;
		bottom:0px;
		text-align: center;
		width: 100%;
	    z-index: 1;
	}
	.player-item > .default > .description > h2{
		color: #1e1e1e;
	    font-size: 1.3em;
		font-weight: normal;
		line-height: 60px;
		margin: 0 0 4px;
	}
	.player-item > .hover{
		background: #1e1e1e;
		border-radius: 3px;
		bottom: 0;
	    color: #7f7f7f;
		font-size: 0.75em;
		line-height: 20px;
		left: 0;
		padding: 16px 20px 90px;
		position: absolute;
		right: 0;
		top: 0;
		width: auto !important;
		
		display: block;
		height: inherit;
		-webkit-transform: rotateY(-180deg);
		-webkit-transform-style: preserve-3d;
		/* -webkit-backface-visibility: hidden; */
		-moz-transform: rotateY(-180deg);
		-moz-transform-style: preserve-3d;
		-webkit-transform: rotateY(-180deg);
		transform: rotateY(-180deg);
		-webkit-transition: all .6s ease-in-out;
		transition: all .6s ease-in-out;
		width: 100%;
		z-index: 13;
	}
	.player-item:hover > .hover{
		-webkit-transform: rotateX(0deg) rotateY(0deg);
		-webkit-transform-style: preserve-3d;
		-webkit-backface-visibility: hidden;
		-moz-transform: rotateX(0deg) rotateY(0deg);
		-moz-transform-style: preserve-3d;
		-moz-backface-visibility: hidden;
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
		-webkit-transition: all .6s ease-in-out;
		transition: all .6s ease-in-out;
	}
	.player-item > .hover h2{	
	    font-size: 1.7em;
		font-weight: normal;
		line-height: 18px;
		margin: 0 0 28px;
		color: #F2F2F2;
	}
	.player-item > .hover h3{	
	    font-size: 1.5em;
		line-height: 18px;
		margin: 0 0 7px;
	}
	.player-item > .hover > .image{
	    background: #f7f7f7;
		border: 0 none;
		border-radius: 2px;
		display: block;
	    background-size: cover;
	    background-position: center;
		height: 120px;
		float: right;
		line-height: 0;
		margin: 4px 0 0 5px;
		padding: 0;
		position: relative;
		text-decoration: none;
		width: 90px;
		z-index: 1;
		border-radius: 3px;
	}
	.player-item > .hover > ul{
		margin: 17px 0px;
    	max-height: 120px;
    	overflow: hidden;
    	padding: 0
	}
	.player-item > .hover > ul > li{
		    font-size: 1.3em;
	}
	.player-item > .hover > .btn{
	    position: absolute;
		bottom: 20px;
		left: 20px;
		right: 20px;
		background-color:#000;
		color:#CCC;
	}
	.carousel-players .next, .carousel-players .prev {
		background-color: #18244C;
		border-radius: 3px;
		color: #fbfbfb;
		display: block;
		float: right;
		height: 40px;
		line-height: 40px;
		margin: 0 0 0 10px;
		text-align: center;
		text-decoration: none;
		width: 40px;
		-webkit-transition: all .2s linear;
		transition: all .2s linear;
	}
/******************************* CAROUSEL DE JUGADORES **********************************************/
	
/**************************************************** LISTADO DE NOTICIAS *******************************************/	
.news-list{
	list-style: none;
    padding: 0px;
    overflow: hidden;
	width:100%;
    margin: 15px 0px;
	cursor:pointer;
}	
	.news-list a{
		height: auto;
	    width: 100%;
    	margin: 10px 0px;
		position: relative;
	    display: inline-block;
		border-bottom: 2px solid #DCDCDC;
		overflow:hidden;
		text-decoration: none;
	}
	.news-list a .image{
		width: 100%;
	    padding-bottom: 50%;
		height: auto;
		background-position: center;
		background-size: cover;
		position: relative;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.news-list a > .info{
		position: relative;
    	background: none;
    	color: #333;
    	padding: 8px 5px;
		white-space: normal;
	    min-height: 100px;
		width:100%;
	}
	.news-list a .info > h2{
	    font-size: 1.6em;
	    font-weight: 600;
        line-height: 28px;
		margin:0px;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.news-list a .info > p{
	    margin: 10px 0px;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.news-list a > .tag{
	    background: #2067b2;
	    border-radius: 3px;
		color:#fff;
		font-size:0.7em;
		position:absolute;
		top:12px;
		right: 12px;
		left:12px;
	    padding: 6px 10px;
	    text-transform: uppercase;
	}	
	
	
	.news-list a:hover > .overlay{
		opacity:0;
	}
	.news-list a:hover .image{
		opacity: .8 !important;
		background-color: #000 !important;
	}
	.news-list a:hover h2{
		color:#2e5481 !important;
	}
	
	
@media only screen and (min-width: 768px) {	
	
	.news-list a{
		height: 17vw;
		width: calc( 50% - 5px );
		margin: 0px;
		position: relative;
	    display: inline-block;
		border:none;
	}
	.news-list a:first-child{
		margin-right: 10px;
	}
	.news-list a .image{
		width: 100%;
		height: 100%;
		background-position: center;
		background-size: cover;
		position: relative;
	}
	.news-list a > .info{
		left: 0px;
		bottom: 0px;
		position: absolute;
		white-space: normal;
		color: white;
	    padding: 40px 36px;
		width:100%;
		
		background: rgba(76,76,76,0);
		background: -moz-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(76,76,76,0)), color-stop(9%, rgba(69,69,69,0)), color-stop(58%, rgba(32,32,32,0.81)), color-stop(100%, rgba(0,0,0,0.8)));
		background: -webkit-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: -o-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: -ms-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: linear-gradient(to bottom, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#000000', GradientType=0 );

		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.news-list a .info > h2{
	    font-size: 1.6em;
	    font-weight: 600;
        line-height: 34px;
		margin:0px;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.news-list a:not(.thumb):hover h2{
		color:#fff!important;
	}
	.news-list a .info > p{
		display:none;
	}

	
	.news-list a:hover > .overlay{
		opacity:0;
	}

	.news-list a:hover > .info > p{
		opacity:1;
		height:auto;
	}
	
	/************* listado ******************/
	.news-list a.list{
		height: auto;
		width: 100%;
		position: relative;
	    display: inline-block;
	    border-bottom: 2px solid #DCDCDC;
	    padding-bottom: 10px;
	}
	.news-list a.list .image{
		width: 240px;
	    height: 150px;
	    padding: 0px;
    	float: left;
	}
	.news-list a.list > .info{
	    float: left;
	    position: relative;
	    width: calc( 100% - 240px);
	    background: none;
		padding: 20px;
	}
	.news-list a.list .info > h2{
		color: #333;
	    margin-top: -4px;
		width: calc( 100% - 150px);
	}
	.news-list a.list .info > p{
	    color: #333;
		display:block;
	}
	.news-list a.list > .tag{
	    right: 20px;
    	top: 20px;
	    left: auto;
	}
	
	
	/************* thumbs ******************/
	.news-list a.thumb{
		width: calc( 50% - 5px );
		height: auto;
		position: relative;
	    display: inline-block;
    	float: left;
		margin-top: 8px;
	    margin-bottom: 25px;
	}
	.news-list a.thumb:nth-child(odd){
		margin-right: 10px;
	}
	.news-list a.thumb .image{
		width: 100%;
		padding-bottom: 50%;
		height: 0px;
		opacity:1;
		float: left;
	}
	.news-list a.thumb > .info{
	    float: left;
	    position: relative;
	    width: 100%;
	    background: none;
    	height: 0px;
	    padding: 20px 0px 45% 0px;
	}
	.news-list a.thumb .info > h2{
		color: #333;
		margin-top: -4px;
		width: 100%;
		font-size: 1.4em;
		line-height: 28px;
	}
	.news-list a.thumb .info > p{
	    color: #333;
		display:block;
	}
	.news-list a.thumb > .tag{
	    right: 20px;
    	top: 20px;
	    left: auto;
	}
	
	
}





/**************************************************** LISTADO DE NOTICIAS *******************************************/	



/**************************************************** ENCUENTROS *******************************************/	
.match-slide .slick-prev,
.match-slide .slick-next{
	-webkit-filter: invert(100%);
	filter: invert(100%);
	opacity: 0.4;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.match-slide .slick-prev:hover,
.match-slide .slick-next:hover{
	opacity:0.8;
}
	.match-slide .item{

	}
	.match{
		width:100%;
		height:270px;
		overflow: hidden;
		position:relative;
/*	    background-color: rgba(0,0,0,0.7); */
		background-color:rgba(32, 103, 178, 0.88);
	}

	.match .match-head{
	    width: 100%;
		float:left;
		text-align: center;
		font-size: 1.1em;
		color: #ECECED;
	    margin-top: 30px;
		font-weight: 300;
	}
	.match .match-head h5{
	    margin: 0px;
    	padding: 0px;
	}
	.match .team{
		width:calc( 50% - 55px);
		float:left;
	    padding: 10px;
	    margin-top: 12px;
	}
	
	
		.match .team .team-info h2{
			width: 100%;
		    text-align: center;
	   	 	font-size: 1em;
		    color: #fff;
	   	 	margin: 10px 0px;
		}
		.match .team .team-info img{
		    width: 60%;
		    margin: 0px 20%;
		}
		    
	.match .match-info{
	    margin-top: 38px;
	    width: 110px;
		text-align: center;
		color: #FFF;
		font-weight: 600;
		font-size: 1.4em;
		line-height: 25px;
		float: left;
	}
		.match .match-info small{
			clear:both;	
			 width: 100%;
		    float: left;
		    text-transform: capitalize;
		}
		.match .match-info .stadium{
			font-size: 0.7em;
    		clear: both;	
		    width: 100%;
		    float: left;	
		    font-weight: normal;
    		margin-top: 8px;
		    line-height: 18px;
		}
	.match .match-results{
	    margin-top: 42px;
	    width: 110px;
		text-align: center;
		color: #FFF;
		font-weight: 600;
		font-size: 2.3em;
		line-height: 25px;
		float: left;
	}


/**************************************************** ENCUENTROS *******************************************/



/**************************************************** PRODUCTS LIST ***************************************/

ul.store-category-menu{
	padding:0px;
	margin:0px;
	list-style:none;
	font-size:13px;
	color:#666;
}
	ul.store-category-menu > li{
		
	}
	ul.store-category-menu a{
		padding:12px;
	    display: block;
		    text-decoration: none;
		color:inherit;
	}
	ul.store-category-menu a:hover {
	background-color: #F4F4F4;
	}


.store-list-options{
	overflow:hidden;
	width:100%;
	border-bottom:#eaeaea solid 1px;
	padding-bottom:6px;	
}
	.store-list-options .store-list-order{
		float:right;	
		margin: 0px;
	}
	.store-list-options .store-list-order label{
		width:140px;
		font-size:12px;
		font-weight:400;
	    display: inline;
		margin-right:6px;
	}
	.store-list-options .store-list-order .form-control{
	    width: 140px;
		display: inline;
		font-size: 13px;
		border-radius: 0px;
		padding: 6px;
		height: 34px;
		border:#eaeaea;
	}
	
	
	

.product-list{
	padding:25px 0px;
	margin:0px;	
}
	.product-list .product-list-item{
		border:solid 1px #eaeaea;
		width:100%;
		overflow:hidden;	
		position:relative;		
	}
	.product-list .product-list-item .image{
		width:100%;
		padding-bottom: 103%;
		background-position:center;
		background-repeat:none;
		background-size:cover;
	}
	.product-list .product-list-item h2{
		height:80px;
		font-size:14px;
		padding: 16px;
		margin: 0px;
		text-transform:uppercase;
		color:#999;
	}
	.product-list .product-list-item .price{
		float: left;
		margin-left: 16px;
	    font-weight: 600;
		color:#0088cc;
	    margin-top: 6px;
	}
	.product-list .product-list-item .buy{
		float: right;
		margin-right: 16px;
	    margin-bottom: 16px;
	}


.product-detail{
	
}

	.product-detail .gallery{
		border: solid 1px #eaeaea;
	}
	.product-detail h1{
		font-size: 22px;
	    font-weight: 600;
	    color: #444;
	}
	.product-detail .price{
	    font-size: 22px;
	    font-weight: 700;
	    color: #0088cc;
	}
	
	
	.product-detail .variants{
		padding-top: 12px;
		padding-bottom: 22px;
		margin-top: 22px;
		border-top:solid 1px #eaeaea;
		overflow: hidden;
	}
	.product-detail .variants label{
	    font-size: 12px;
	    width: 100%;
	}
	
	.product-detail .buy-box{
		padding-top: 22px;
		padding-bottom: 22px;
		margin-bottom: 22px;
		border-top:solid 1px 	#eaeaea;
		border-bottom:solid 1px 	#eaeaea;
		overflow: hidden;
	}
	.product-detail .buy-box .cant{
		height: 36px;
		float:left;
		width: 60px;
		border-radius: 2px;
		border: solid 1px #eaeaea;
	    padding: 0px 4px 0px 12px;
		margin-right: 6px;
	}
	.product-detail .buy-box .btn-buy{
		display: inline-block;	
		float:left;
		background-color:#0088cc;
		border-color:#0088cc;
	}
	.product-detail .buy-box .btn-buy:hover{
		background-color: #007CB9;
	}
	.product-detail .buy-box .info{
		float:right;
		text-align:right;
	}
	.product-detail .buy-box .info .stock{
		font-size:12px;
		font-weight:bolder;
	}
	.product-detail .buy-box .info .sku{
		font-size:12px;	
	}


/**************************************************** PRODUCTOS *******************************************/
.product {
	border-radius: 3px;
	display: block;
	float: none;
	overflow: hidden;
	position: relative;
	text-align: left;
	vertical-align: top;
    width: calc(100% - 20px);
}
	.product > .image::before{
		content:"";
		background:rgba(0,0,0,0.7);
		width:100%;
		height:100%;
		position:absolute;
		opacity:0;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.product > .image {
		position:relative;
		border: 0 none;
		padding-bottom: 120%;
		display: block;
		background-color: #FFFFFF;
		background-size:100%;
		background-position:center;
		line-height: 0;
		margin: 0;
		text-decoration: none;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
		
	}
	.product > .image .actions{
		width:100%;
		opacity:0;
		position:absolute;
	    bottom: 0px;
		padding:4px;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.product .image .actions .btn{
		width:48%;
		margin:1%;
		float:left;
		color:#fff;
		text-align:center;
		border:solid 1px #fff;
		border-radius:3px;
	    font-size: 0.7em;
		text-transform:uppercase;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;	
	}
	.product .image .actions .btn:hover{
		background-color:#2067b2;
		border: 1px solid #2067b2;
	}
	.product .description{
		padding: 25px !important;
		background-color: #fff;
		border-top: solid 1px #E9E9E9;
		overflow:hidden;
	}
	.product .description .name{		
		margin: 0px;
	    font-size: 0.9em;
		width:72%;
		float:left;
	}
	.product .description .name a{
		text-align: center;
		color:inherit;
		text-decoration:none;
	}
	.product .description .price{
	    font-weight: 600;
    	font-size: 1.3em;
    	color: #d92222;
    	vertical-align: middle;
    	line-height: 1;
		width:28%;
		text-align:right;
		float:left;
	}
	.product .description .price small{
		font-size: 1.1em;
	}
	.product:hover > .image {
		background-size:110%;
	}
	.product:hover > .image .actions{
		opacity:1;
	}
	.product:hover > .image::before{
		opacity:1;	
	}

.sale {
  border-top: 56px solid #f89406;
  border-right: 56px solid transparent;
  display: block;
  height: 0;
  line-height: 22px;
  position: absolute;
  width: 0;
  z-index: 1;
  -webkit-transform: translateZ(0px);
}
	.sale:before {
	  color: #fff;
	  content: "Sale";
	  display: block;
	  font-size: 0.7em;
	  font-weight: bold;
	  margin: -46px 0 0 5px;
	  position: absolute;
	  text-transform: uppercase;
	  -webkit-transform: rotate(315deg);
		  -ms-transform: rotate(315deg);
			  transform: rotate(315deg);
	}
	.sale.new {
	  border-top: 56px solid #c10841;
	}
	.sale.new:before {
	  content: "NUEVO";
	}
	.sale.offer {
	  border-top: 56px solid #0098ca;
	}
	.sale.offer:before {
	  content: "OFERTA";
	}
/**************************************************** PRODUCTOS *******************************************/



/**************************************************** CARRITO DE COMPRAS - *******************************************/
.step{
	color: #8c9497;
    font-size: 15px;
    font-weight: 600;
    margin: 12px 0px;
	cursor:pointer;
}
.step .circle{
	width:48px;
	height:48px;
	border-radius:50%;
	line-height:48px;
	text-align:center;
	background-color:#dde7e9;
    margin-right: 10px;
	display: inline-block;
}
.step .circle i{
	font-size:18px;
	color:inherit;
}
.step.step-ok .circle{
	background-color:#5ab059;
	color:#fff;
}
.step.step-active{
	color:#5ab059;
}
.step.step-active .circle{
	background-color:#5ab059;
	color:#fff;
}



.payment-method{
	display: block;
    border: 2px solid #ddd;
	color:#555;
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(242,242,242,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(242,242,242,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(242,242,242,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(242,242,242,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(242,242,242,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(242,242,242,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0 );
	border-radius:4px;
	margin-top:14px !important;
}
.payment-method.selected{
    border: 2px solid #5ab059;
}
.payment-method label{
	position:relative;	
	display:block;
    height: 58px;
	margin: 0px;
    padding: 0px;
}
.payment-method label input{
    left: 40px;
    top: 18px;	
}
.payment-method label .payment-icon{
	width:56px;
	height:38px;
	background-size:cover;
	background-position:center;
	position: absolute;
    top: 10px;
    left: 52px;
	border-radius:4px;
}
.payment-method label h2{
	width: calc(100% - 120px);
    height: 38px;
    position: absolute;
    top: 10px;
    left: 120px;
    font-size: 16px;
    padding: 0px;
    font-weight: 600;
    margin: 0px;
}
.payment-method label p{
	width: calc(100% - 120px);
    height: 38px;
    position: absolute;
    top: 27px;
    left: 120px;
    font-weight: 100;
}
.payment-method .payment-icon.payment-cash{
	background-image:url(../img/payment-icon-cash.png);
}

.payment-method .payment-icon.payment-visa{
	background-image:url(../img/payment-icon-visa.png);
}



/**************************************************** CARRITO DE COMPRAS - *******************************************/


/**************************************************** TABLA DE POSICIONES *******************************************/
.position-table{
	background-color: #fff;
    margin: 15px 0px;
	font-size: 0.9em;
}
	.position-table thead tr{
		background-color:#2067b2;
		color:#fff;
	}
	.position-table tbody tr{
		border-bottom: solid 1px #ccc;
		border-left: solid 1px #ccc;
		border-right: solid 1px #ccc;
	}
	.position-table  td,
	.position-table  th{
		padding: 5px !important;
		text-align:center;
	}


/**************************************************** TABLA DE POSICIONES *******************************************/

/**************************************************** BOXES *******************************************/
.full-width-box {
  overflow: hidden;
  padding: 50px 0;
  position: relative;
  -webkit-transition: opacity .2s linear;
          transition: opacity .2s linear;
}
@media (max-width: 767px) {
  /* line 4, ../sass/elements/_full-width-box.scss */
  .full-width-box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}	

/**************************************************** BOXES *******************************************/





/**************************************************** CONTENT *******************************************/
.main-content{
	margin-top:10px;	
	 margin-bottom: 50px;

}

.post-head{
    padding-bottom: 39px;
    border-bottom: 1px solid #e1e1e1;	
}
	.post-head datetime{
	    float: right;
	    margin: 17px 0px 0px 0px;	
		color:#999;
	}
	.post-head h1{
		clear: both;
	}
	.post-head p{
		font-size: 1.5em;
		line-height: 36px;
		font-weight: 300;
		margin-bottom: 26px;
	}
	.post-head .tag{
	    margin-top: 15px;
	    background: #2067b2;
	    border-radius: 3px;
		color:#fff;
		font-size:0.7em;
		top:12px;
		left:12px;
	    padding: 6px 10px;
		float: left;
	    text-transform: uppercase;
	}
.post-images{
	width:100%;
}
	.post-images .item{
		
	}
	.post-images .item .image{
	    width: 100%;
		height: 450px;
		background-position: center;
		background-size: cover;
		position: relative;	
	}
	
	
.post-body{
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 27px;
    margin-top: 20px;	
}
.post-body img{
	max-width:100%;
}
.post-foot{
    margin-bottom: 50px;
    margin-top: 20px;	
}

.post-social{
	margin-top:20px;
	margin-bottom:20px;
	overflow: hidden;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #E9E9E9;
	border-bottom-color: #E9E9E9;
}
	.post-social h4{
	    float: left;
		font-weight: normal;
		line-height: 58px;
		margin: 0px;
		color:#666;
		font-size: 1em;
	}
	.post-social .share-buttons{
		float:right;
	}




/**************************************************** CONTENT *******************************************/


/*********************************************** SOCIAL *************************************************/
.share-buttons{
	overflow:hidden;
}
	.share-buttons .share-btn{
		width:48px;
		height:48px;
		display:inline-block;
		margin:4px;
		text-align:center;
		position:relative;
	}
	.share-buttons .share-btn::before{
		content:" ";
		width:48px;
		height:5px;
		position:absolute;
		bottom:0px;
		left:0px;
		background-color:rgba(0,0,0,0.08);
	}
	.share-buttons .share-btn i{
		font-size:1.3em;
		line-height:48px;
		color:#fff;
	}
	.share-buttons .share-btn.facebook{
		background-color:#3b5997;
	}
	.share-buttons .share-btn.twitter{
		background-color:#2ba8e0;
	}
	.share-buttons .share-btn.google{
		background-color:#353631;
	}
	.share-buttons .share-btn.pinterest{
		background-color:#cd1d1f;
	}
	
	
/***************************************************** SOCIOS ***************************************************************/
.login-box{
	width:550px;
	margin:auto;
	margin-top: 200px;
	background-color: #FFF;
	position:relative;
}
.login-head{
	background-image: url(../img/socios-head.png);
 	height: 189px;
	width: 720px;
    left: -88px;
    top: -158px;
	position:absolute;
}
.login-box .login-content{
	padding:26px;
}
.login-box .foot{
	padding:26px;
	background-color:#E4E4E4;
	text-align:center;
}
.login-box h2{
	margin:0px;
    color: #354A8C;
	font-size:26px;
}


.socios-box{
    width: 780px;
	margin:auto;
	margin-top: 200px;
	background-color: #FFF;
	position:relative;	
}
	.socios-head{
		background-image: url(../img/socios-head.png);
 		height: 210px;
		width: 720px;
    	left: -160px;
    	top: -158px;
		position:absolute;
	}
	.socios-box > .lateral{
		background-color:#00aff0;
		width:190px;
		min-height: 350px;
		float:left;
		border-radius: 4px 0px 0px 4px;
	    padding-bottom: 20px;
	}
		.socios-box > .lateral > .user{
			margin-top: 30px;
			margin-bottom: 15px;
			width: 100%;
			color: #fff;
		    font-size: 14px;
			text-align: center;
		}
		.socios-box > .lateral > .mbtn{
			color: #fff;
			font-size: 14px;
			cursor: pointer;
			padding: 10px 20px;
			-webkit-transition: all 0.3s ease-in-out 0s;
			-moz-transition: all 0.3s ease-in-out 0s;
			-ms-transition: all 0.3s ease-in-out 0s;
			-o-transition: all 0.3s ease-in-out 0s;
			transition: all 0.3s ease-in-out 0s;
		}
		.socios-box > .lateral > .mbtn:hover{
			background-color:rgba(0,0,0,0.1);
		}
		
	.socios-box > .content{
		width: calc( 100% - 190px);
		padding:30px;
	    background-color: #fff;
	    overflow: hidden;
		min-height: 350px;
		border-radius: 0px 4px 4px 0px;
		float:left;
	}

	.socios-box > .content h1{
	    font-size: 30px;
	    margin: 0px;
	}
	
.loading{
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color:rgba(0,0,0,0.4);
	line-height: 50%;
	text-align: center;
	display: table;
} 
.loading i{
	color: #fff;
	display: table-cell;
    vertical-align: middle;
}
	
/***************************************************** SOCIOS ***************************************************************/
.partners{
	background-color: #fff;
	height: 100%;
    position: fixed;
    width: 100%;
	overflow:auto;
}
	.partners-top{
		background-color:#fff;	
	}
		.partners-top .btn{
			font-size: 13px;
		    color: #808080;
			
		}
		.partners-top .btn:hover{
			color:#000;
			text-decoration:none;
		}
	.partners-head{
		background-color:#2067b2;
	    padding-bottom: 110px;	
		border-bottom: solid 4px #E6E6E6;
	}
		.partners-head .logo{
			float: left;
		    width: 70%;
			max-width:365px;
		    margin-bottom: -45px;
		    margin-left:15px;
			margin-top: 8px;			
		}
		.partners-head h1{
			float:right;
			color:#fff;
			line-height: 0px;
    		margin-top: 60px;
			margin-right:15px;
		    font-size: 24px;
		}	
	.partners-container{
		background-color:#fff;
	    margin-top: -90px;	
	    margin-bottom: 50px;
		padding: 0px;
	    border: solid 1px #E8E8E8;
	}
		@media (min-width: 768px) {
			.partners-container{
				padding: 50px;
			}
		}

		
	
	
		.partners-container h1{
			font-size: 36px;
			padding: 0px;
			margin: 0px;
		}
		.partners-container .form-group{
			overflow: hidden;
		}
		.partners-container label {
		    font-weight: normal;
			color: inherit !important;
		}
		.partners-container label span{
			color:#C00;
		}
		.partners-container error {
			color:#C00;
			font-size: 13px;
		    position: absolute;
		    right: 16px;
	        bottom: -18px;
		}
		.partners-container .has-error .form-control {
		    border-color: #C00;
		}
		.partners-container .form-control:focus{
			border-color: #8296DA;
		}
		.partners-container .category-box{
			width:100%;
			background-color:#B9C2D0;
			padding:20px;	
		    overflow: hidden;
		    color: #fff;
		}
			.partners-container .category-box img{
				width: 45px;
				float: left;	
			}
			.partners-container .category-box h3{
				width: calc(100% - 125px);
				margin-left:10px;
				float: left;	
			    font-size: 15px;
			    margin-top: 10px;
			}
			.partners-container .category-box .price{
				width: 70px;
				float: left;
			    font-size: 18px;
			    margin-top: 2px;
				font-weight: bold;
				text-align: center;
			}
			.partners-container .category-box .price span{
			    font-size: 12px;
			    margin-top: -5px;
			    display: block;
			}
		.partners-container .profile-picture{
			width:100%;
			position:relative;
			border:solid 2px #fff;
		    max-width: 200px;
	    	margin: auto;
		    clear: both;
		}
			.partners-container .profile-picture.has-error{
				 border-color: #C00;
			}
			.partners-container .profile-picture img{
				width:100%;
			}
			.partners-container .profile-picture .btn-upload{
				width: 100%;
				height: 32px;
				line-height: 32px;
				background-color: rgba(0,0,0,0.6);
				color: #fff;
				text-align: center;
				position: absolute;
				bottom: 0px;
				left: 0px;
				-webkit-transition: all 0.3s ease-in-out 0s;
				-moz-transition: all 0.3s ease-in-out 0s;
				-ms-transition: all 0.3s ease-in-out 0s;
				-o-transition: all 0.3s ease-in-out 0s;
				transition: all 0.3s ease-in-out 0s;
				cursor:pointer;
			}
			.partners-container .profile-picture .btn-upload:hover{
				background-color:rgba(0,0,0,1);
			}
		
		.partners-container .separator{
			margin-top: 10px;
			margin-bottom: 10px;
			width: 100%;
			color: #4E75CC;
			font-size: 14px;
			font-weight: bold;
			border-bottom: 1px solid #E4E4E4;
		}
		.partners-container .avatar{
		    background-color: #d6d6d6;
		    width: 160px;
			margin: 30px auto 10px auto;
			height: 160px;
			border-radius: 80px;
			background-size: cover;
			background-position: center;	
		}
		.partners-container .userData{
			text-align:center;
			width:100%;
		}
		.partners-container .menu{
			padding: 0px;
		    list-style: none;	
		}
		.partners-container .menu li{
			padding: 10px;
			cursor:pointer;
			-webkit-transition: all 0.3s ease-in-out 0s;
			-moz-transition: all 0.3s ease-in-out 0s;
			-ms-transition: all 0.3s ease-in-out 0s;
			-o-transition: all 0.3s ease-in-out 0s;
			transition: all 0.3s ease-in-out 0s;
		}
		.partners-container .menu li:hover{
		    background-color: rgba(238, 238, 238, 0.52);
		}
		
/***************************************************** REDES SOCIALES ***************************************************************/	
	
	
.twitter-box{
	    max-height: 310px;
    overflow: auto;
	background-color: #fff;
}
.twitter-box::-webkit-scrollbar {
    width: 6px;
}
 
.twitter-box::-webkit-scrollbar-track {
/*    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
}
 
.twitter-box::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.facebook-box{
	margin-top:10px;
	background-color: #000;
}
	._2lqh{
		display:none;
	}
	
	
	
	
	
	
	

/************************************************************************** FOOTER ***********************************************************/
.footer{
	background-color: #000;
    padding: 32px;
}

	.escudo{
	    margin: 15px 0px 10px 5px;
	    display: block;
		float:left;
	}
	.footer .business-info{
	    color: #D2CECE;
	    font-size: 14px;
	    padding-left: 41px;
	    line-height: 17px;
		float:left;	
	    margin-top: 66px;
	}
	.sponsors-box{
		display:inline-flex;	
	}
	.sponsors{
		opacity: 0.4;
	    margin: auto;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.sponsors:first-child{
		margin-left:0px;
	}
	.sponsors:last-child{
		margin-right:0px;
	}
	.sponsors:hover{
		opacity:1;
	}
	



/************************************************************************** FOOTER ***********************************************************/




/************************************************************************** BANNERS ***********************************************************/
.advertising{
	width:100%;
	margin-top:10px;
	margin-bottom:10px;
    display: block;
}
	.advertising a{
		display:block;
	}
	.advertising img{
		width:100%;
	}
	



/************************************************************************** BANNERS ***********************************************************/




/************************************************************************** VIDEOS ***********************************************************/
.video-showcase{
	padding: 15px 0px;
	position: relative;	
}
	.video-showcase .video-thumbs{
		margin-top: 6px;
	    margin-left: 25px;
		padding: 0px;
	    width: calc( 100% - 39px);
	    position: relative;
		overflow-x: scroll;
	    overflow-y: hidden;
	    white-space: nowrap;
	}
	.video-showcase .video-thumbs .video-thumb{
		width: 120px;
		margin-right: 10px;
		height: 80px;
		display: inline-block;	
		overflow:hidden;
		cursor: pointer;
		border: solid 4px transparent;
		opacity: 0.6;
		background-size: cover;
		background-position: center;
		position: relative;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	
	
	.video-showcase .video-thumbs::-webkit-scrollbar {width: 6px; height:6px;}
	.video-showcase .video-thumbs::-webkit-scrollbar-track {  }
	.video-showcase .video-thumbs::-webkit-scrollbar-thumb {   border-radius: 10px;    background-color:#323436; }
	
	
	.video-showcase .video-thumbs .video-thumb.active{
		border: 4px solid #18508D;
		opacity: 1;
	}
	.video-showcase .video-thumbs .video-thumb:hover{
		opacity:1;
	}
	.video-showcase .video-thumbs .video-thumb:before{
		content:" ";
		position:absolute;
		top: calc( 50% - 26px);
		left: calc( 50% - 26px);
		background-image:url(../img/video-play.png);
		width:55px;
		height:55px;
		z-index:1;
		opacity:0.2;
	}
	.video-showcase .video-thumbs .video-thumb:hover:before{
		opacity:0.8;
	}
	.video-showcase .video-thumbs .video-thumb .title{
		position:absolute;
		color:#fff;
	    font-size: 0.8rem;
	    line-height: 0.8rem;
		bottom:6px;
		left:6px;
		right:6px;
		font-weight:bold;
		display:none;
	}
	
	
	.video-responsive {
	  position: relative;
	  display: block;
	  height: 0;
	  padding: 0;
	
	}
	
	.video-responsive.video-responsive-16by9 {
	  padding-bottom: 56.25%;
	}
	
	.video-responsive-item {
	  position: absolute;
	  top: 10px;
	  bottom: 10px;
	  width: 100%;
	  height: 100%;
	    width: 100%;
	  border: 0;
	}
	

	.video-container .ribbon{
		content:" ";
		background-image:url(../img/tv-corner.png);
		width:145px;
		height:143px;
		backgorund-position:center;
		background-size:cover;
		position: absolute;
		z-index: 1;
		top: 2px;
		left: -7px;
	}


@media only screen and (min-width: 768px) {	
	.video-showcase .video-thumbs{
		margin-top: 10px;
	    overflow-y: scroll;
	    overflow-x: hidden;
		height: calc(100% - 31px);
	    position: absolute;
		width: calc( 25% - 12px);
	    right: 13px;
		white-space: initial;
	}
	
	.video-showcase .video-thumbs .video-thumb{
		width: 100%;
		margin-bottom: 4px;
		height: 120px;		
	}
	.video-showcase .video-thumbs .video-thumb .title{
		display:block;
	}
}


.video-item{
	overflow:hidden;
	position: relative;
    margin-bottom: 15px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
	.video-item:before{
		content:" ";
		position:absolute;
		top: calc( 50% - 26px);
		left: calc( 50% - 26px);
		background-image:url(../img/video-play.png);
		width:55px;
		height:55px;
		z-index:1;
		opacity:0.2;
	}
	.video-item:hover:before{
		opacity:0.8;
	}
	
	.video-item .image{
		width: 100%;
		height: 11vw;
		display: inline-block;	
		overflow:hidden;
		
		border: solid 4px transparent;
		background-size: cover;
		background-position: center;
		position: relative;
	}
	.video-item .title{
		position: absolute;
		bottom: 0px;
	    padding: 10px 13px;
	    margin: 7px 15px;
		left: 0px;
		font-size: 1.2em;
    	font-weight: 600;
    	line-height: 1.2em;
	    color: #fff;
		
		background: rgba(76,76,76,0);
		background: -moz-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(76,76,76,0)), color-stop(9%, rgba(69,69,69,0)), color-stop(58%, rgba(32,32,32,0.81)), color-stop(100%, rgba(0,0,0,0.8)));
		background: -webkit-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: -o-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: -ms-linear-gradient(top, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		background: linear-gradient(to bottom, rgba(76,76,76,0) 0%, rgba(69,69,69,0) 9%, rgba(32,32,32,0.81) 58%, rgba(0,0,0,0.8) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#000000', GradientType=0 );
	}
	

/************************************************************************** VIDEOS ***********************************************************/



/************************************************************************** CONTACTO ***********************************************************/
.contact-form{
	position:relative;	
}
	.contact-form .loader{
		position:absolute;
		top:0px;
		left:0px;
		width:100%;
		height:100%;
		background-color:rgba(255,255,255,0.9);	
		line-height: 23px;
    	padding-top: 33%;
	    text-align: center;
	}


/************************************************************************** CONTACTO ***********************************************************/

/************************************************************************** PORTAD  ***********************************************************/

.portada{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	background-image: url(../img/portada.jpg);
	background-position: center;
	background-size: cover;
	z-index: 1500;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	opacity:0;
	backgorund-color:#000;
}
.portada-open{
	opacity:1;
}
	.portada .container{
		position:relative;	
	    height: 100%;
	}
	.portada .portada-data{
		position:absolute;
		bottom:112px;
		right:0px;
		width:100%;
		max-width:428px;
		height:485px;
		background-image:url(../img/portada-data.png);
		background-position:center;
		background-size:contain;	
	}
	.portada .portada-btn{
		background-color:#2067b2;
		color:#fff;
		font-size:20px;
		text-align:center;
		max-width:407px;
		width:calc( 100% - 20px);
		position:absolute;
		bottom:70px;
		right:0px;
		height:64px;
		line-height:64px;
		cursor:pointer;
		margin:0px 10px;
		-webkit-transition: all 0.3s ease-in-out 0s;
		-moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.portada .portada-btn:hover{
	background-color: #184D87;
	}

/************************************************************************** PORTAD  ***********************************************************/




.m{			margin:8px !important;}
.m\+{		margin:16px !important;}
.m\+\+{		margin:24px !important;}
.m\+\+\+{	margin:32px !important;}
.m\-{		margin:4px !important;}

.mt{		margin-top:8px !important;}
.mt\+{		margin-top:16px !important;}
.mt\+\+{	margin-top:24px !important;}
.mt\+\+\+{	margin-top:32px !important;}
.mt\-{		margin-top:4px !important;}

.mr{		margin-right:8px !important;}
.mr\+{		margin-right:16px !important;}
.mr\+\+{	margin-right:24px !important;}
.mr\+\+\+{	margin-right:32px !important;}
.mr\-{		margin-right:4px !important;}

.mb{		margin-bottom:8px !important;}
.mb\+{		margin-bottom:16px !important;}
.mb\+\+{	margin-bottom:24px !important;}
.mb\+\+\+{	margin-bottom:32px !important;}
.mb\-{		margin-bottom:4px !important;}

.ml{		margin-left:8px !important;}
.ml\+{		margin-left:16px !important;}
.ml\+\+{	margin-left:24px !important;}
.ml\+\+\+{	margin-left:32px !important;}
.ml\-{		margin-left:4px !important;}

.ml0{		margin-left:0px !important;}
.mr0{		margin-right:0px !important;}
.mt0{		margin-top:0px !important;}
.mb0{		margin-bottom:0px !important;}
.m0{		margin:0px !important;}

.p{			padding:8px !important;}
.p\+{		padding:16px !important;}
.p\+\+{		padding:24px !important;}
.p\+\+\+{	padding:32px !important;}
.p\-{		padding:4px !important;}

.pt{		padding-top:8px !important;}
.pt\+{		padding-top:16px !important;}
.pt\+\+{	padding-top:24px !important;}
.pt\+\+\+{	padding-top:32px !important;}
.pt\-{		padding-top:4px !important;}

.pr{		padding-right:8px !important;}
.pr\+{		padding-right:16px !important;}
.pr\+\+{	padding-right:24px !important;}
.pr\+\+\+{	padding-right:32px !important;}
.pr\-{		padding-right:4px !important;}

.pb{		padding-bottom:8px !important;}
.pb\+{		padding-bottom:16px !important;}
.pb\+\+{	padding-bottom:24px !important;}
.pb\+\+\+{	padding-bottom:32px !important;}
.pb\-{		padding-bottom:4px !important;}

.pl{		padding-left:8px !important;}
.pl\+{		padding-left:16px !important;}
.pl\+\+{	padding-left:24px !important;}
.pl\+\+\+{	padding-left:32px !important;}
.pl\-{		padding-left:4px !important;}

.pl0{		padding-left:0px !important;}
.pr0{		padding-right:0px !important;}
.pt0{		padding-top:0px !important;}
.pb0{		padding-bottom:0px !important;}
.p0{		padding:0px !important;}


