/* BODY */
body{
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    font-family: 'BebasNeue', 'Bebas Neue', Arial, Helvetica, sans-serif;
    font-size:62.5%;
    font-weight:400;
    color:#fff;
    background-color:#000;
}
strong{
    font-weight:700;
}
em{
    font-style:italic;
}
a,input[type=submit]{
    transition:all 0.2s ease-out;
    -webkit-transition:all 0.2s ease-out;
    -moz-transition:all 0.2s ease-out;
}

input,textarea{
    border:none;
    background-color:transparent;
    outline:none;
    resize:none;
    -webkit-appearance:none;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    font-family: 'BebasNeue', 'Bebas Neue', Arial, Helvetica, sans-serif;
}

p{
    font-family:"Open Sans", Arial, Helvetica, sans-serif;
    font-size:1.4em;
    line-height:1.3;
}
article, aside, figure, footer, header, hgroup, menu, nav, section,
.gente, #visor_ppal, #banner #thumbs_container {
    width:100%;
    min-width:960px;
}

/* GENERAL CLASSES */

.wrapper{
    width:960px;
    margin:0 auto;
}

.outerContainer {
    display: table;
    overflow: hidden;
}
.outerContainer .innerContainer {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.boton{
    height:52px;
    display:inline-block;
    padding:0 16px;
    background-color:#52751f;
    line-height:56px;
    font-size:2.5em;
    color:#fff;
}
.boton:hover{
    background-color:#10c0ff;
    cursor:pointer;
}

/* FLECHAS */

.flecha, .flex-prev, .flex-next {
    width: 75px;
    height: 122px;
    display:block;
    background-image:url(../../images/banner_flechas.svg);
    background-repeat:no-repeat;
    background-position:left top;
    position:absolute;

    transition:opacity 0.2s ease-out;
    -webkit-transition:opacity 0.2s ease-out;
    -moz-transition:opacity 0.2s ease-out;
    text-indent: -10000px;
}
.flecha.next, .flex-next {
    background-position:right top;
}
.flecha.prev:hover, .flex-prev:hover{
    background-position:left bottom;
    opacity:0.8;
}
.flecha.next:hover, .flex-next:hover{
    background-position:right bottom;
    opacity:0.8;
}


/* ICONOS */

.icon,
.icon .iso{
    width:135px;
    height:135px;
    background-image:url(../../images/icon_bg.svg);
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}


/* HEADER */

header{
    background-color: #000000;
    height: 158px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
header .top{
    background-image:url(../../images/header_top_bg.jpg);
    background-repeat:no-repeat;
    background-position:center top;
    height:107px;
    font-size:1.8em;
}
header .top .wrapper{
    position:relative;
    height:107px;
}
header .top #logo{
    width:143px;
    height:143px;
    position:absolute;
    top:54px;
    left:50%;
    margin-left:-67px;
    z-index:500;
}
header .top #logo a{
    background-image:url(../../images/header_logo.svg);
    background-repeat:no-repeat;
    background-position:center;
    width:143px;
    height:143px;
    display:block;
    border-radius:200px;
    text-indent:-1000000px;
}

header .top #carrito{
    float:left;
    margin-top:27px;
    position:relative;
}
header .top #carrito .cart_open{
    display:inline-block;
    height:57px;
    line-height:59px;
}
header .top #carrito .cart_open .icono{
    display:block;
    height:57px;
    width:60px;
    float:left;
    background-image:url(../../images/header_cart_icon_items.svg);
    background-position:center top;
    background-repeat:no-repeat;
    margin-right: 10px;

    transition:all 0.2s ease-out;
    -webkit-transition:all 0.2s ease-out;
    -moz-transition:all 0.2s ease-out;
}
header .top #carrito.empty .cart_open .icono{    
    background-image:url(../../images/header_cart_icon.svg);
}
header .top #carrito .cart_open:hover{
    color:#39e3ff;
}
header .top #carrito.opened .cart_open .icono{
    background-position:center bottom;
    background-color:#fafafa;
    border-bottom:1px solid #fafafa;
    height:56px;
}
header .top #carrito.opened .cart_open:hover .icono{
    background-color:#e6e6e6;
    border-bottom:1px solid #dfdfdf;
}
header .top #carrito #carrito_box{
    position:absolute;
    top:57px;
    left:0px;
    z-index:600;
    box-shadow:0px 16px 35px 4px rgba(0,0,0,0);
    overflow:hidden;

    transition:box-shadow 400ms ease-out;
    -webkit-transition:box-shadow 400ms ease-out;
    -moz-transition:box-shadow 400ms ease-out;
}
header .top #carrito.opened #carrito_box{
    box-shadow:0px 16px 35px 4px rgba(0,0,0,0.3);
}
header .top #carrito #carrito_box .contenedor{
    background-color:#fafafa;
    color:#5c5c5c;
    padding:23px 26px 10px 26px;
    width: 330px;
    font-size:1.1em;
}
header .top #carrito #carrito_box .paquetes{
}
header .top #carrito #carrito_box .paquetes li,
header .top #carrito #carrito_box .total{
    width:100%;
    overflow:hidden;
    border-top:1px solid #d4d4d4;
    padding:13px 0 11px 0;
}
header .top #carrito #carrito_box .nombre{
    float: left;
    margin-right: 15px;
    line-height: 37px;
    overflow: hidden;
    width: 190px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
header .top #carrito #carrito_box .cantidad{
    float:left;
    display:block;
    width:35px;
    height:35px;
    background-color:#373b3e;
    color:#39e3ff;
    border-radius:50px;
    text-align:center;
    line-height:37px;
}
header .top #carrito #carrito_box .cantidad span{
    font-size:0.8em;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    margin-right:1px;
}
header .top #carrito #carrito_box .precio{
    float:right;
    line-height:37px;
    color:#3699ab;
}
header .top #carrito #carrito_box .total{
    border-bottom:1px solid #d4d4d4;
}
header .top #carrito #carrito_box strong{
    font-weight:normal;
}
header .top #carrito #carrito_box .checkout{
    height:52px;
    width:50%;
    display:block;
    line-height:54px;
    background-color:#0d849a;
    color:#fff;
    margin:10px auto 0 auto;
    text-align:center;
}
header .top #carrito #carrito_box .checkout:hover{
    background-color:#10c0ff;
}

header .top .redes{
    float:left;
    margin:37px 0 0 15px;
    border-left:1px solid rgba(255,255,255,0.15);
    border-right:1px solid rgba(255,255,255,0.15);
    height:31px;
    padding:6px 10px 0 10px;
}
header .top .redes li{
    float:left;
    width:27px;
    height:26px;
    margin-left:2px;
}
header .top .redes li:first-child{
    margin-left:0;
}
header .top .redes li a{
    background-position:top center;
    background-repeat:no-repeat;
    width:27px;
    height:26px;
    display:block;
    text-indent:-1000000px;
    border-radius:30px;
}
header .top .redes li:hover a{
    background-position:bottom center;
}
header .top #language{
    float:left;
    margin-left:4px;
}

header .top .support{
    float:right;
    margin-right:15px;
}
header .top .support strong{
    float:left;
    line-height:1;
    margin-top:48px;
    font-weight:normal;
}
header .top .support a{
    display:block;
    float:left;
    text-indent:-1000000px;
    background-repeat:no-repeat;
    background-position:center;
}
header .top .support a.urunat{
    background-image:url(../../images/header_support_uruguaynatural.svg);
    width:170px;
    height:38px;
    margin:36px 0 0 22px;
}
header .top .support a.anii{
    background-image:url(../../images/header_support_anii.svg);
    width:48px;
    height:76px;
    margin:15px 0 0 26px;
}
header .top .support a:hover{
    opacity:0.6;
}


/* IDIOMA */

.custom_select {
    width:104px;
    height:60px;
    margin:26px 0 0 0 !important;
    background-color:transparent;
    z-index:1000;
    position:relative;
}
.custom_select.oculto {
    display:none;
}
.custom_select dd{
    z-index:900;
}
.custom_select a {
    color:#fff;
    font-size:1.1em;
    line-height:62px;
    height:60px;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    padding:0 0 0 13px;
}
.custom_select dt a {
    background-image:url(../../images/header_lang_flecha.svg);
    background-position:right top;
    background-repeat:no-repeat;
}
.custom_select:hover dt a{
    color:#39e3ff;
}
.custom_select.abierto dt a{
    background-color:#fff;
    color:#373b3e;
    background-position:right bottom;
}
.custom_select.abierto dt a:hover{
    color:#0d849a;
}
.custom_select dd ul {
    width: 100% !important;
    top:0 !important;
    background-color:#fff;
    box-shadow:0px 16px 35px 4px rgba(0,0,0,0.3);

}
.custom_select dd ul li {
    background-image:url(../../images/header_idioma_separador.gif);
    background-repeat:no-repeat;
    background-position:center top;
    height:61px;
    margin-top:-1px;
    position:relative;
    z-index:1;

    transition:background-color 200ms ease-out;
    -webkit-transition:background-color 200ms ease-out;
    -moz-transition:background-color 200ms ease-out;
}
.custom_select dd ul li:first-child{
    margin-top:0;
}
.custom_select dd ul li a{
    color:#373b3e;
}
.custom_select dd ul li:hover{
    background-color:#373b3e;
    z-index:2;
    background-image:none;
}
.custom_select dd ul li a:hover{
    color:#fff;
}


/* MENU */

header nav{
    background-image:url(../../images/header_menu_bg.png);
    background-repeat:repeat-x;
    background-position:top;
    height:52px;
    margin-bottom:-1px;
    position:relative;
    z-index:100;
}
header nav #menu{
}
header nav #menu li{
    float:left;
    padding-left:3px;
    background-image:url(../../images/header_menu_separator.png);
    background-repeat:no-repeat;
    background-position:left center;
    height:52px;
}
header nav #menu li:nth-child(n+6){
    float:right;
}
header nav #menu li:first-child,
header nav #menu li:last-child{
    padding-left:0;
    background-image:none;
}
header nav #menu li a{
    color:#454545;
    padding:0 14px;
    display:block;
    line-height:52px;
    font-size:1.7em;
    background-image:url(../../images/header_menu_hover.png);
    background-repeat:repeat-x;
    background-position:0 -52px;

    transition:all 350ms cubic-bezier(0.815, 0.005, 0.305, 1.000);
    -webkit-transition:all 350ms cubic-bezier(0.815, 0.005, 0.305, 1.000);
    -moz-transition:all 350ms cubic-bezier(0.815, 0.005, 0.305, 1.000);
}
header nav #menu li a:hover,
header nav #menu li.selected a{
    background-position:0;
    color:#fff;
}


/* BANNER */

#banner{
    margin-bottom:40px;
    padding-top:158px;
}
#banner #visor_ppal{
    width:100%;
    height:490px;
    position:relative;
    z-index:10;
    overflow:hidden;
}
#banner #visor_ppal .fondo{
    background-image:url(../../images/banner_bg.jpg);
    background-repeat:no-repeat;
    background-position:center top;
    height:950px;
    width:100%;
    position:absolute;
    z-index:10;
    overflow:hidden;
}
#banner #visor_ppal .gente{
    background-image:url(../../images/banner_overlay_gente.png);
    background-repeat:no-repeat;
    background-position:bottom center;
    width:100%;
    height:242px;
    position:absolute;
    bottom:0;
    left:0;
    z-index:200;
}
#banner #visor_ppal .outerContainer{
    height:430px;
    width:100%;
}
#banner #visor_ppal .texto{
    background-color:rgba(0,0,0,0.7);
    border-top:1px solid rgba(0,0,0,0.1);
    border-bottom:1px solid rgba(0,0,0,0.1);
    position:relative;
    z-index:100;
}
#banner #visor_ppal .texto .wrapper{
    position:relative;
    z-index:150;
}
#banner #visor_ppal .texto h2{
    font-size:5.2em;
    line-height:1.3;
    margin-bottom:5px;
}
#banner #visor_ppal .texto h2 strong,
#banner #visor_ppal .texto h3 strong{
    font-weight:normal;
    color:#ace857;
}
#banner #visor_ppal .texto h3{
    font-size:1.8em;
}
#banner #visor_ppal .texto h3 strong{
    margin-right:10px;
}

#banner #thumbs_container{
    width: 100%;
    height:102px;
    padding:10px 0;
    background-color:#3f3f3f;
    overflow:hidden;
    position: relative;
}
#banner #thumbs_container .scrollingHotSpotLeft {
    position:absolute;
    width: 50px;
    height: 122px;
    display: block;
    left: 0px;
    top:0px;
    background-image:url(../../images/banner_flechas.svg);
    background-position: left top;
    background-repeat: no-repeat;
    background-color: #000;
    opacity:0.7;
}
#banner #thumbs_container .scrollingHotSpotRight {
    position:absolute;
    width: 50px;
    height: 122px;
    display: block;
    right: 0px;
    top:0px;
    background-image:url(../../images/banner_flechas.svg);
    background-position: right top;
    background-repeat: no-repeat;
    background-color: #000;
    opacity:0.7;
}
#banner #thumbs_container .scrollingHotSpotLeft:hover {
    background-position: left bottom;
}
#banner #thumbs_container .scrollingHotSpotRight:hover {
    background-position: right bottom;
}
#banner #thumbs_container .scrollingHotSpotRightVisible {
    opacity:0.7;
}
#banner #thumbs_container .scrollingHotSpotLeftVisible {
    opacity:0.7;
}
#banner #thumbs_container .thumbs{
    height:102px;
}
#banner #thumbs_container .thumbs .thumb{
    background-color:#000;
    float:left;
    margin-right:10px;
}
#banner #thumbs_container .thumbs .thumb:first-child{
    margin-left:10px;
}
#banner #thumbs_container .thumbs .thumb a{
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    opacity:0.4;
    width:162px;
    height:102px;
    display:block;
}
#banner #thumbs_container .thumbs .thumb a:hover,
#banner #thumbs_container .thumbs .thumb a.flex-active{
    opacity:1;
}

#banner #galeria{
    width:728px;
    height:455px;
    padding:12px;
    background-color:#fff;
    position:absolute;
    left:50%;
    margin-left:-376px;
    z-index:190;
    box-shadow:0px 0px 1px 0px rgba(0,0,0,0.15);
    bottom:0px;

    transition:all 0.2s ease-out;
    -webkit-transition:all 0.2s ease-out;
    -moz-transition:all 0.2s ease-out;
}
#banner #galeria.cerrada {
    bottom:-500px;
}
#banner #galeria.cerrada .flecha{
    opacity:0;
}
#banner #galeria ul{
    width:728px;
    height:455px;
}
#banner #galeria ul li{
    width:728px;
    height:455px;
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    box-shadow:inset 2px 2px 30px rgba(0,0,0,0.2);
}
#banner #galeria .close{
    width:38px;
    height:38px;
    display:block;
    background-image:url(../../images/banner_galeria_cruz.svg);
    background-repeat:no-repeat;
    background-position:center top;
    position:absolute;
    top:19px;
    right:19px;
    z-index: 1000;

    transition:opacity 0.2s ease-out;
    -webkit-transition:opacity 0.2s ease-out;
    -moz-transition:opacity 0.2s ease-out;
}
#banner #galeria .close:hover{
    background-position:center bottom;
}
#banner #galeria .flecha{
    top:150px;
    opacity:1;
    transition:opacity 3s ease-out;
    -webkit-transition:opacity 3s ease-out;
    -moz-transition:opacity 3s ease-out;
}
#banner #galeria .flecha.prev{
    left:-90px;
}
#banner #galeria .flecha.next{
    right:-90px;
}


/* CONTENT */

#content .title{
    height:54px;
    background-color:#7ba540;
    line-height:58px;
}
#content h2{
    float:left;
    color:#000;
    font-size:3.2em;
    padding-left:20px;
}
#content .title h2{
    height:54px;
}
#content h2.title{
    float:none;
}
#content .title a,
.pager_bottom a{
    float:right;
    height:54px;
    line-height:58px;
    font-size:2.5em;
    color:#fff;
    padding:0 25px;
    display:inline-block;
    background-color:#51751f;
    border-left:4px solid #000;
}
#content .title a:hover,
.pager_bottom a:hover{
    background-color:#10c0ff;
}
#content .container{
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    border:1px solid #292929;
    border-radius:10px;
    margin-top:8px;
    padding:24px 35px 40px 35px;
}
#content .container h3{
    font-size:3.4em;
    line-height:1.1;
}
#content .container p{
    margin-top:1.2em;
}
#content section{
    margin-bottom:25px;
}


/* ASIDE */

aside{
    margin-top:25px;
}
aside #facebookPlugin{
    width:468px;
    float:left;
}
aside #facebookPlugin .fb-like-box {
    background-color: #fff;
}
aside #facebookPlugin img{
    width:100%;
}
aside #tripadvisor{
    width:468px;
    float:left;
    margin-left:24px;
}
aside #newsletter{

}
aside #newsletter strong{
    display:block;
    font-weight:normal;
    font-size:2.1em;
    margin:12px 0 17px 0;
}
aside #newsletter input{
    width:50%;
    float:left;

    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}
aside #newsletter input[type=email]{
    border-right:2px solid #000;
    background-color:#fff;
    height:54px;
    line-height:54px;
    font-family:"Open Sans", Arial, Helvetica, sans-serif;
    color:#8d8d8d;
    padding:0 16px;
}
aside #newsletter input[type=submit]{
    border-left:2px solid #000;
    padding:0;
    text-align:center;
    font-size:2.1em;
    height:54px;
    line-height:57px;
}


/* FOOTER */

footer{
    margin-top:40px;
}
footer nav{
    border-top:1px solid #3b3b3b;
    border-bottom:1px solid #3b3b3b;
}
footer nav #menuFooter{
    padding:19px 0 17px 0;
}
footer nav #menuFooter li{
    float:left;
    margin-left:30px;
}
footer nav #menuFooter li:first-child{
    margin-left:0;
}
footer nav #menuFooter li a{
    font-size:1.8em;
    line-height:1;
    color:#606060;
}
footer nav #menuFooter li.selected a,
footer nav #menuFooter li a:hover{
    color:#fff;
}

footer #vinculos{
    padding:25px 0 28px 0;
    background-color:#1f1f1f;
}
footer #vinculos #links{
    width:47.4%;
    float:left;
}
footer #vinculos #links ul{
}
footer #vinculos #links ul li{
    width:50%;
    float:left;
    padding-left:35px;
    background-image:url(../../images/footer_links_bullet.svg);
    background-repeat:no-repeat;
    background-position:left 5px;
    margin-top:26px;

    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}
footer #vinculos #links ul li:nth-child(1),
footer #vinculos #links ul li:nth-child(2){
    margin-top:7px;
}
footer #vinculos #links ul li a{
    font-family:"Open Sans", Arial, Helvetica, sans-serif;
    color:#acacac;
    font-size:1.3em;
}
footer #vinculos #links ul li a:hover{
    color:#759e3d;
}

footer #vinculos #redesFooter{
    width:41.7%;
    float:left;
    margin-top:3px;
}
footer #vinculos #redesFooter li{
    margin-bottom:18px;
    height:26px;
}
footer #vinculos #redesFooter li a{
    line-height:26px;
    font-family:"Open Sans", Arial, Helvetica, sans-serif;
    font-size:1.3em;
    color:#acacac;
}
footer #vinculos #redesFooter li a .icon{
    background-position:top center;
    background-repeat:no-repeat;
    width:27px;
    height:26px;
    display:block;
    text-indent:-1000000px;
    border-radius:30px;
    float:left;
    margin-right:12px;

    transition:opacity 0.2s ease-out;
    -webkit-transition:opacity 0.2s ease-out;
    -moz-transition:opacity 0.2s ease-out;
}
footer #vinculos #redesFooter li a:hover .icon{
    background-position:bottom center;
}
footer #scrollBack{
    width:94px;
    height:43px;
    padding-top:51px;
    display:block;
    border-radius:100px;
    background-color:#52751f;
    background-image:url(../../images/footer_scrollTop_flecha.svg);
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    float:right;
    margin:10px 9px 0 0;
    text-align:center;
    font-size:2em;
}
footer #scrollBack:hover{
    background-color:#10c0ff;
}

footer #creditcards{
    border-top:1px solid #3b3b3b;
    border-bottom:1px solid #3b3b3b;
    padding:14px 0 15px 0;
}
footer #creditcards .cards{
    float:left;
}
footer #creditcards .cards .card{
    float:left;
    width:46px;
    height:27px;
    background-repeat:no-repeat;
    background-position:center;
    margin-left:7px;
    text-indent:-1000000px;
}
footer #creditcards .cards .card:first-child{
    margin-left:0;
}
footer #creditcards strong{
    margin-left:13px;
    color:#7ba540;
    line-height:31px;
    font-size:1.8em;
    font-weight:normal;
}
footer #creditcards strong span{
    margin-right:13px;
}

footer #datos{
    padding:20px 0 38px 0;
}
footer #datos ul{
    position:relative;
    float:left;
    left:50%;
}
footer #datos ul li{
    position:relative;
    float:left;
    right:50%;
    font-family:"Open Sans", Arial, Helvetica, sans-serif;
    font-size:1.3em;
    line-height:15px;
    padding:0 10px;
    border-left:1px solid #fff;
}
footer #datos ul li:first-child{
    border-left:none;
}
footer #datos ul li a{
    color:#7ba540;
}
footer #datos ul li a:hover{
    color:#00c2e4;
}


#solcre{
    background-image:url(../../images/solcre.png);
    background-repeat:no-repeat;
    background-position:center;
    width:44px;
    height:12px;
    display:block;
    float:right;
    margin:10px 34px 0 0;
    text-indent:-1000000px;
    opacity:0.7;
}
#solcre:hover{
    opacity:1;
}


/* PARTIDOS */

#content #next_matches #partidos .partido{
    padding:3px;
}
#content #next_matches #partidos .partido .contenido{
    background-image:url(../../images/partido_bg.jpg);
    background-repeat:no-repeat;
    background-position:center bottom;
    padding-bottom:22px;
}
#content #next_matches #partidos .highlighted .top{
    background-image:url(../../images/partido_highlighted.svg);
    background-repeat:no-repeat;
    background-position:left top;
}
#content #next_matches #partidos .partido .top{
    height:73px;
}
#content #next_matches #partidos .partido .top .buy,
#partidoPopup .top .buy,
#servicios #listado .buy,
#partidoDisponiblePopup .buy{
    width:130px;
    height:48px;
    display:block;
    float:right;
    padding-left:46px;
    background-image:url(../../images/header_cart_icon.svg);
    background-repeat:no-repeat;
    background-position:1px 0px;
    background-size:48px;
    background-color:#51751f;
    font-size:2.1em;
    line-height:52px;
    margin:4px -3px 0 0;
}
#content #next_matches #partidos .partido .top .buy:hover,
#partidoPopup .top .buy:hover,
#servicios #listado .buy:hover,
#partidoDisponiblePopup .buy:hover{
    background-color:#10c0ff;
}
#content #next_matches #partidos .partido h3,
#partidoPopup .top h3,
#partidoPopup h4{
    font-size:2.6em;
    text-align:center;
}
#content #next_matches #partidos .partido h3 span,
#partidoPopup .top h3 span{
    margin:0 4px;
}
#content #next_matches #partidos .partido img{
    width:100%;
    margin-top:5px;
}
#content #next_matches #partidos .partido p{
    margin:3px auto 7px auto;
    width:85%;
}
#content #next_matches #partidos .partido .boton{
    padding:0;
    width:186px;
    margin:0 auto 18px auto;
    display:block;
    text-align:center;
}
#content #next_matches #partidos .partido .share{
    position:relative;
    float:left;
    left:50%;
}
#content #next_matches #partidos .partido .share a,
#partidoPopup .share a{
    background-position:top center;
    background-repeat:no-repeat;
    width:27px;
    height:26px;
    display:block;
    text-indent:-1000000px;
    border-radius:30px;

    position:relative;
    float:left;
    right:50%;
}
#content #next_matches #partidos .partido .share a:hover,
#partidoPopup .share a:hover{
    background-position:bottom center;
}
#content #next_matches #partidos .partido .share a:first-child{
    margin-right:3px;
}
.cart-item-thumb {
    width:307px;
    height:140px;
}


/* POPUPS */

#overlay{
    background-color:rgba(0,0,0,0.9);
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2000;
}
.popup{
    position:absolute;
    top:35px;
    z-index:2500;
    left:50%;
    transition:all 0.4s ease-out;
    -webkit-transition:all 0.4s ease-out;
    -moz-transition:all 0.4s ease-out;
}
.popupOutside{
    background-color:#fff;
    padding:10px;
}
.popupInside{
}


/* POPUP PARTIDO */

#partidoPopup{
    width:552px;
    margin-left:-376px;
}
#partidoPopup .popupInside{
    width:552px;
    background-image:url(../../images/popupPartido_bg.jpg);
    padding-bottom:36px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#partidoPopup .top{
    position:relative;
    width:100%;
}
#partidoPopup .top h3{
    width:455px;
    padding-top:70px;
    margin:0 auto;
}
#partidoPopup .top h3 strong{
    font-weight:normal;
    margin-right:16px;
}

#partidoPopup .top .buy{
    position:absolute;
    top:0px;
    right:0px;
    margin:0;
    float:none;
}
#partidoPopup .top .highlight{
    position: absolute;
    top: 5px;
    left: 7px;
    width: 70px;
    height: 70px;
    background-image: url(/images/partido_highlighted.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 70px;
}
#partidoPopup .top .highlight span{
    position: absolute;
    top: 35px;
    left: -44px;
    display: block;
    width: 175px;
    text-align: center;
    font-size: 1.7em;
    color: #13c1fa;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
}

#partidoPopup img {
    display:block;
    margin:40px auto;
}
#partidoPopup p{
    width:422px;
    margin:10px auto 10px auto;
    text-align:center;
}
#partidoPopup .boton{
    width:34%;
    margin-left:33%;
    display:block;
    text-align:center;
    padding:0;
    float:left;
}
#partidoPopup .share{
    width:33%;
    float:right;
    margin-top:13px;
}
#partidoPopup .share2{
    float:right;
    margin-right:22px;
}
#partidoPopup .share2 strong{
    float:left;
    font-weight:normal;
    font-size:2.1em;
    margin-right:12px;
    display:block;
    line-height:28px;
}
#partidoPopup .share a{
    position:static;
    margin-left:2px;
}


/* POPUP AVAILABLE MATCHES */

#partidoDisponiblePopup{
    width:936px !important;
}
#partidoDisponiblePopup .title{
    height: 54px;
    background-color: #7ba540;
    line-height: 58px;
    width:936px;
    position:static;
}
#partidoDisponiblePopup .title .pager{
    float:right;
    height:54px;
}
#partidoDisponiblePopup .title .pager a{
    width:54px;
    height:54px;
    display:block;
    float:left;
    line-height:57px;
    font-size:3.2em;
    text-align:center;
    color:#fff;
    background-color:#52751f;
    border-left:4px solid #000;
}
#partidoDisponiblePopup .title .pager a.current,
#partidoDisponiblePopup .title .pager a:hover{
    color:#000;
    background-color:#7ba540;
}
#partidoDisponiblePopup .title h2{
    float:left;
    color:#000;
    font-size:3.2em;
    padding-left:20px;
    height:54px;
}
#partidoDisponiblePopup,
#partidoDisponiblePopup .popup{
    width:916px;
    margin-left:-468px;
}
#partidoDisponiblePopup .popupInside{
    background-color:#090909;
    padding-bottom:12px;
}
#partidoDisponiblePopup .popupOutside{
    position:static;
    margin:10px 0;
}

#partidoDisponiblePopup #partidos_disponibles{
    padding:15px;
}
#partidoDisponiblePopup #partidos_disponibles .partido{
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    border:1px solid #292929;
    border-radius:10px;
    margin-top:8px;
}
#partidoDisponiblePopup #partidos_disponibles .partido:first-child{
    margin-top:0;
}
#partidoDisponiblePopup #partidos_disponibles .partido img{
    float:right;
    width:59.4%;
}
#partidoDisponiblePopup #partidos_disponibles .partido .info{
    float:left;
    width:40.6%;
}
#partidoDisponiblePopup #partidos_disponibles .partido .info .datos{
    float:right;
    width:77.3%;
    margin-top:20px;
}
#partidoDisponiblePopup #partidos_disponibles .partido .info .datos strong{
    font-size:3.2em;
    color:#7ba540;
}
#partidoDisponiblePopup #partidos_disponibles .partido .info .datos h3{
    font-size:2.6em;
    color:#fff;
}
#partidoDisponiblePopup .partido .info label.checkbox{
    width:40px !important;
    margin:33px 0 0 20px;
    cursor:pointer;
}
#partidoDisponiblePopup .partido .info label.checkbox span.holder{
    width:40px !important;
    height:40px !important;
    background-image:url(../../images/carrito_radio_bg.svg);
    background-repeat:no-repeat;
    background-position:-100px -100px;

    transition:background-color 200ms ease-out;
    -webkit-transition:background-color 200ms ease-out;
    -moz-transition:background-color 200ms ease-out;
}
#partidoDisponiblePopup .partido .info label.checkbox.checked span.holder{
    background-position:-6px -7px !important;
}
#partidoDisponiblePopup .partido .info label.checkbox span.holderWrap{
    width:40px !important;
    height:40px !important;
    margin:0 0 0 10px !important;
    background-color:#fff;
}

#partidoDisponiblePopup .partido .info label.checkbox:hover span.holder{
    background-color:#10c0ff;
}
#partidoDisponiblePopup .partido .info label.checkbox.checked:hover span.holder{
    background-position:-6px -61px !important;
    background-color:#10c0ff;
}

#partidoDisponiblePopup .botones{
    height:52px;
    padding:0 20px 0 20px;

    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}
#partidoDisponiblePopup .botones .buy.back{
    width:auto;
    padding:0 16px;
    background-image:none;
    margin:0;
}
#partidoDisponiblePopup .botones .buy{
    margin:0 0 0 4px;
}

#partidoDisponiblePopup .title.bottom{
    background-color:transparent;
}

/* CARRITO */

#carrito_box .cart-btn-remove:hover {
    text-decoration:line-through;
    cursor:pointer;
}
#carrito .cart-item-count {
    position: absolute;
    top: 19px;
    left: 15px;
    color: #000;
    width: 26px;
    font-size: 1em;
    text-align: center;
}
#carrito.opened .cart-item-count {
    display:none;
}
#widgets {
    margin-top: 50px;
    clear:both;
}
/* MEDIA QUERIES */
@media only screen and (max-width: 959px) {
    header{
        position: static;
    }
    #banner{
        padding-top:0;
        margin-top:-1px;
    }
}


.fb-like-box {
    background-color: #fff;
}

#banner #visor_ppal #frases {
    height:180px;
    position:relative;
    overflow: hidden;
}
#banner #visor_ppal #frases li {
    position:absolute;
    left:50%;
    margin-left: -480px;
    bottom:-400px;
}
#banner #visor_ppal #frases li p {
    display:none;
}
#cartLoader img {
    margin-left: -37px;
    width: 82px;
    top: 84px;
    position: fixed;
    z-index: 99999;
    left: 50%;
}
#cartLoader {
    width: 100%;
    left:0px;
    position: fixed;
    top: 282px;
    background: none;
}

#cartLoader .popupInside{
    /*
    background-image: url(/images/popupPartido_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    */
}
#cartLoader p {    
    padding: 100px 40px;
    font-family: 'BebasNeue','Bebas Neue',Arial,Helvetica,sans-serif;
    text-align: center;
}
#cartLoader p span {
    font-size: 5.2em;
    font-weight: 400;
    color: #fff;
}
#cartLoader p strong {
    display: block;
    color:#ace857;
    font-size: 1.8em;
}

