/* RESET */
* {
    margin: 0px;
    padding: 0px;
    outline: 0px none transparent;
    border: 0px none transparent;
    background: transparent none repeat scroll 0% 0%;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    list-style-type: none;
    position: relative;
    font-family: 'Montserrat Light', sans-serif;
}
*, *::after, *::before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
*:hover{ 
    -webkit-transition: ease-in-out .2s;
    -o-transition: ease-in-out .2s;
    transition: ease-in-out .2s
}
.center{text-align: center;}
.txt-left{text-align: left;}
.txt-right{text-align: right;}
.pull-right{float: right!important}
.pull-left{float: left!important}

.m10{margin: 10px !important}
.m20{margin: 20px !important}
.m30{margin: 30px !important}
.m40{margin: 40px !important}
.m50{margin: 50px !important}
.mtop5{margin-top: 5px !important}
.mtop10{margin-top: 10px !important}
.mtop20{margin-top: 20px !important}
.mtop30{margin-top: 30px !important}
.mtop40{margin-top: 40px !important}
.mtop50{margin-top: 50px !important}
.mbot5{margin-bottom: 5px !important}
.mbot10{margin-bottom: 10px !important}
.mbot20{margin-bottom: 20px !important}
.mbot30{margin-bottom: 30px !important}
.mbot40{margin-bottom: 40px !important}
.mbot50{margin-bottom: 50px !important}
.p10{padding: 0 10px 10px 10px !important}
.p20{padding: 0 20px 20px 20px !important}
.p30{padding: 0 30px 30px 30px !important}
.ptop10{padding-top: 10px !important}
.ptop20{padding-top: 20px !important}
.ptop30{padding-top: 30px !important}
.ptop40{padding-top: 40px !important}
.ptop50{padding-top: 50px !important}
.clear{clear: both}
.hide {display:none;}
.hide{
    display: none;
}
.block{
  display: block!important
}
.navOpened {
    display: block;
}
div.navClosed {
    display: none;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local('Montserrat'), local('Montserrat'), url(fonts/montserrat.woff2) format('woff2');
}
@font-face {
    font-family: 'Montserrat Bold';
    font-style: normal;
    font-weight: 600;
    src: local('Montserrat Bold'), local('Montserrat Bold'), url(fonts/montserrat-semi-bold.woff2) format('woff2');
}
@font-face {
    font-family: 'Montserrat Light';
    font-style: normal;
    font-weight: 300;
    src: local('Montserrat Light'), local('Montserrat Light'), url(fonts/montserrat-light.woff2) format('woff2');
}

/*HEADER*/
.header{
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    padding: 10px 10%;
    z-index: 9;
}
.logo, .topmenu{
    width:50%;
    display: inline-block;
    vertical-align: middle;
}
.logo + .topmenu{
    margin-left: -5px
}
.logo img{
    margin: 5px;
    height: 50px;
    text-align: left;
    width: auto;
}
.language, #block_logout{
    display: inline-block;
    float: right;
}
#block_logout{
    height: 38px;
    line-height: 38px;
    margin-right: 20px;
}
#block_logout a{
    text-decoration: none;
    font-family: 'Montserrat Bold', sans-serif;
    color: #ccc;
    margin-left: 6px;
}
#block_logout a:hover{
    color: #ff2020
}
#block_logout strong{
    margin-right: 6px;
}
a#language{
    border: 1px solid #eee;
    padding: 5px 5px 2px 5px;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
}
a#language img{
    width: 25px;
}
.language .box{
    position: absolute;
    right: 0;
    top: 46px;
    z-index: 10;
    background-color: #444;
    padding: 20px 0 0 15px;
    border-radius: 4px;
    width: 230px;
    text-align: center;
        z-index: 11;
}
.language .box:before{
    content: "";
    position: absolute;
    top: -12px;
    right: 6px;
    border-bottom: 12px solid #444;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}
.language .box span{
    display: inline-block;
    margin: 0 15px 15px 0
}
.language .box span img{
    width: 28px
}

@keyframes enterLeft{
    from {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes exitLeft{
    from {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes opacityOn{
  from {opacity: 0;}
  to {opacity: 1;}
}
a#toggle{
    display: inline-block;
    width: 37px;
    height: 37px;
    border: 1px solid #eee;
    border-radius: 4px;
}
a#toggle:after{
    background-image: url('miimg/dots.svg');
    background-size: 30px;
    width: 30px;
    height: 30px;
    top: 3px;
    right: 3px;
    position: absolute;
    content: "";
}
.nd_menu{
    border-top: 1px solid #f6f6f6
}
.nd_menu a{
    padding: 10px 15px 0;
    display: inline-block;
    font-family: 'Montserrat Bold', sans-serif;
    text-decoration: none;
    color: #333
}
.nd_menu a:before{
    content: '';
    width: 0;
    height: 6px;
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #da4d75;
    -webkit-transition: ease-in-out .2s;
    -o-transition: ease-in-out .2s;
    transition: ease-in-out .2s
}
.nd_menu a:hover{
    color: #931646
}
.nd_menu a:hover:before{
    width: 100%;
}
.st_menu {margin-bottom: 10px}
.st_menu a{
    padding: 5px 10px;
    display: inline-block;
    text-decoration: none;
}
.st_menu a[href="index.php"]{
    margin: 0 20px 0 6px;
}
.st_menu a[href="index.php"]:before{
    content: '';
    width: 100%;
    height: 12px;
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #da4d75;
}
.st_menu a[href="news.php"], .st_menu a[href="join.php"] {
    background-color: #f6f6f6;
    border-radius: 4px;
    color: #333;
    margin-right: 25px;
    -webkit-transition: ease-in-out .2s;
    -o-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
}
.st_menu a[href="news.php"]:hover, .st_menu a[href="join.php"]:hover {
    background-color: #eee;
    -webkit-transition: ease-in-out .2s;
    -o-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
}
.st_menu a[href="news.php"]:hover, .st_menu a[href="join.php"]:hover { background-color: #efefef;}
/*FOOTER*/
.footer{
    background: #222;
    padding: 30px 10%;
}
.footer p{
    font-size: 10px;
    color: #ccc;
    margin-top: 10px
}
.footer a, .footer a:visited{
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}
.footer a:hover{
    color: #da4d75;
}
/*INDEX*/
body{
    background: #f6f6f6;
}
.section{
    margin: 0 10% 30px;
    max-width: 1530px;
}
img{
    width: 100%;
}
a{
    cursor:pointer
}
a:active{
    color: #931646
}
 a:visited{
    color: #333
}
a.button{
    padding: 10px 15px;
    text-decoration: none;
}
.nomax{
    max-width: inherit!important;
    width: auto!important;
}
strong{
    font-family: 'Montserrat Bold', sans-serif;
}
/*welcome*/
label,#active,img{-moz-user-select:none;-webkit-user-select:none}
.catch{display:block;height:0;overflow:hidden}
#slider{margin:0 auto;overflow: hidden;}
.boxslider input{display:none}
#slide1:checked ~ #slides .inner{margin-left:0}
#slide2:checked ~ #slides .inner{margin-left:-100%}
#slide3:checked ~ #slides .inner{margin-left:-200%}
#slide4:checked ~ #slides .inner{margin-left:-300%}
#slide5:checked ~ #slides .inner{margin-left:-400%}
#container{width:100%;overflow:hidden}
.simg{}
.simg img{width:100%;}
.boxslider{padding-top: 33.25%;}
#slider{position: absolute;top: 0;left: 0;bottom: 0;right: 0;}
#slides .inner{width:500%;line-height:0}
#slides .simg{width:20%;float:left}
#commands{position: absolute;right: 0; left: 0;top: 50%;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);}
#commands label{display:none;width: 60px;height: 60px;opacity: 0.5;background: #fff;border-radius: 60px;}
#commands label:before{content: "";position: absolute;top: 18px;right: 16px;border-left: 20px solid #444;border-top: 12px solid transparent;border-bottom: 12px solid transparent;}
#commands label:hover{opacity:0.8}
#active{z-index:5;text-align:center;text-align: center;position: absolute;bottom: 10px;left: 50%;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);}
#active label{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;display:inline-block;width:10px;height:10px;background:#bbb}
#active label:hover{cursor: pointer;background:#333;border-color:#777!important}
#slide1:checked ~ #commands label:nth-child(2),#slide2:checked ~ #commands label:nth-child(3),#slide3:checked ~ #commands label:nth-child(4),#slide4:checked ~ #commands label:nth-child(5),#slide5:checked ~ #commands label:nth-child(1){float:right;margin:0 12px 0 0;display:block}
#slide1:checked ~ #commands label:nth-child(5),#slide2:checked ~ #commands label:nth-child(1),#slide3:checked ~ #commands label:nth-child(2),#slide4:checked ~ #commands label:nth-child(3),#slide5:checked ~ #commands label:nth-child(4){float:left;margin:0 0 0 12px;display:block;-webkit-transform: rotate(180deg);-ms-transform: rotate(180deg);transform: rotate(180deg)}
#slide1:checked ~ #active label:nth-child(1),#slide2:checked ~ #active label:nth-child(2),#slide3:checked ~ #active label:nth-child(3),#slide4:checked ~ #active label:nth-child(4),#slide5:checked ~ #active label:nth-child(5){background:#000;opacity:0.6;border-color:#fff!important;border:2px solid #fff}
#slides{position:relative;background:-webkit-linear-gradient(#FFF,#FFF 20%,#EEE 80%,#DDD);background:-moz-linear-gradient(#FFF,#FFF 20%,#EEE 80%,#DDD);background:-ms-linear-gradient(#FFF,#FFF 20%,#EEE 80%,#DDD);background:-o-linear-gradient(#FFF,#FFF 20%,#EEE 80%,#DDD);background:linear-gradient(#FFF,#FFF 20%,#EEE 80%,#DDD);-webkit-border-radius:2px 2px 2px 2px;-moz-border-radius:2px 2px 2px 2px;border-radius:2px 2px 2px 2px;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.2);-moz-box-shadow:0 0 3px rgba(0,0,0,0.2);box-shadow:0 0 3px rgba(0,0,0,0.2)}
#slides .inner{-webkit-transform:translateZ(0);-webkit-transition:all 800ms cubic-bezier(0.770,0.000,0.175,1.000);-moz-transition:all 800ms cubic-bezier(0.770,0.000,0.175,1.000);-ms-transition:all 800ms cubic-bezier(0.770,0.000,0.175,1.000);-o-transition:all 800ms cubic-bezier(0.770,0.000,0.175,1.000);transition:all 800ms cubic-bezier(0.770,0.000,0.175,1.000);-webkit-transition-timing-function:cubic-bezier(0.770,0.000,0.175,1.000);-moz-transition-timing-function:cubic-bezier(0.770,0.000,0.175,1.000);-ms-transition-timing-function:cubic-bezier(0.770,0.000,0.175,1.000);-o-transition-timing-function:cubic-bezier(0.770,0.000,0.175,1.000);transition-timing-function:cubic-bezier(0.770,0.000,0.175,1.000)}
#slider{-webkit-transform:translateZ(0);-webkit-transition:all 0.5s ease-out;-moz-transition:all 0.5s ease-out;-o-transition:all 0.5s ease-out;transition:all 0.5s ease-out}
#commands label{-webkit-transform:translateZ(0);-webkit-transition:opacity 0.2s ease-out;-moz-transition:opacity 0.2s ease-out;-o-transition:opacity 0.2s ease-out;transition:opacity 0.2s ease-out}
#slides{-webkit-transform:translateZ(0);-webkit-transition:all 0.5s ease-out;-moz-transition:all 0.5s ease-out;-o-transition:all 0.5s ease-out;transition:all 0.5s ease-out}

.contentmodules{
    height: 500px;
    background: #f43d7a;
}
.contentmodules div, .contentmodules img, .halfweb:hover + .halfweb .content{
    -webkit-transition: ease-in-out .4s;
    -o-transition: ease-in-out .4s;
    transition: ease-in-out .4s
}
.halfweb{
    width: 50%;
    display: inline-block;
    margin-right: -5px;
    overflow: hidden;
    height: 500px;
}
.halfweb:first-child{
    background: #700a0a;
    background: -moz-linear-gradient(-45deg, #700a0a 0%, #ff3939 100%);
    background: -webkit-linear-gradient(-45deg, #700a0a 0%,#ff3939 100%);
    background: linear-gradient(135deg, #700a0a 0%,#ff3939 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#700a0a', endColorstr='#ff3939',GradientType=1 );
    position: absolute;
    top: 0;
    left: 0;
}
.halfweb:last-child{
    background: #f43d7a;
    background: -moz-linear-gradient(45deg, #f43d7a 1%, #93278f 100%);
    background: -webkit-linear-gradient(45deg, #f43d7a 1%,#93278f 100%);
    background: linear-gradient(45deg, #f43d7a 1%,#93278f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f43d7a', endColorstr='#93278f',GradientType=1 );
    position: absolute;
    top: 0;
    right: 5px;z-index: 1
}
.halfweb:hover{
    width: 80%
}
.halfweb:hover + .halfweb{
    width: 20%
}
.halfweb:hover + .halfweb .content{
    opacity: 0
}
.halfweb + .halfweb:hover{
    width: 80%;
}
.halfweb .content{
    padding: 40px 30px;
    z-index: 1
}
.halfweb .content .logo{
    max-width: 280px;
}
.halfweb .content h1{
    color: #fff;
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 1.2em;
    margin: 30px 0 10px;
}
.halfweb .content p{
    max-width: 400px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 155%;
    font-size: 14px
}
.halfweb .silhouette{
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    right: -14%;
    z-index: 1;
}
.halfweb:hover .silhouette{
    right: 6%;
}
.halfweb .pc{
   height: 450px;
   width: auto;
   position: absolute;
   top: 50%;
   right: 0;
   -webkit-transform: translate(150%, 0);
   -ms-transform: translate(150%, 0);
   transform: translate(150%, 0);
   z-index: 0;
   opacity: 0;
}
.halfweb:hover .pc{
    right: 9%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
    -webkit-transition: ease-in-out .7s;
    -o-transition: ease-in-out .7s;
    transition: ease-in-out .7s
}
.halfweb .content h1, .halfweb p, .halfweb .btn-white{
    margin-left: 30px;
}

.btn-white{
    padding: .65em 1em;
    font-size: 1.6em;
    color: #fff;
    display: inline-block;
    overflow: hidden;
    background-color: rgba(255,255,255,.2);
    border-radius: 5px;
    margin-top: 10px
}
.btn-white span{
    display: block;
    background: #fff;
    width: 200%;
    height: 200%;
    position: absolute;
    left: -50%;
    top: 120%;
    z-index: -1;
    transform: rotate(0deg);
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s
}
.btn-white:hover span{
    top: -50%;
    transform: rotate(17deg);
    -webkit-transition: ease-in-out .4s;
    -o-transition: ease-in-out .4s;
    transition: ease-in-out .4s
}
.btn-white:hover{
    color: #333
}

.whitelabel{
    background: #931646;
background: -moz-linear-gradient(top, #931646 1%, #931646 69%, #222222 100%);
background: -webkit-linear-gradient(top, #931646 1%,#931646 69%,#222222 100%);
background: linear-gradient(to bottom, #931646 1%,#931646 69%,#222222 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#931646', endColorstr='#222222',GradientType=0 );
    margin-bottom: -30px;
    padding: 30px 40px;
    text-align: center
}

.whitelabel:before, .whitelabel:after{
    background-image: url('miimg/after.svg');
    background-size: 15px;
    width: 15px;
    height: 15px;
    bottom: 0;
    position: absolute;
    content: "";
    left: -15px;
}
.whitelabel:after{
    left: inherit;
    right: -15px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}
.whitelabel img{
    height: 300px;
    width: auto;
    margin: 0 auto
}
.whitelabel h1{
    font-size: 2em;
    color: #fff;
    font-family: 'Montserrat Bold', sans-serif;
    margin-bottom: 20px
}
.whitelabel p{
    color: #fff;
    margin-bottom: 20px
}
.whitelabel .btn-white:hover{
    background: #fff;
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s
}

/*terminos*/
.terms{
    padding: 40px 0
}
.terms p{
    margin-bottom: 15px;
}
.terms span span{
   color: #931646;
   font-size: 80%;
}
.terms strong{
    margin-top: 30px;
    display: block
}
/*faq*/
.whitebox{
    background-color: #fff;
     -webkit-box-shadow: 0 7px 14px -6px rgba(0,0,0,.2);
    -moz-box-shadow: 0 7px 14px -6px rgba(0,0,0,.2);
    box-shadow: 0 7px 14px -6px rgba(0,0,0,.2);
}
.question{
    padding: 15px 10px;
}
.question p:first-child{
   color: #931646;
   font-size: 1.2em;
   margin-bottom: 10px
}
.question p:first-child strong{
   color: #333;
   font-size: 70%;
   display: block;
}

/*registro*/
h2{
    font-size: 1.8em;
    font-family: 'Montserrat Bold', sans-serif;
}
h3{
    font-size: 1.4em;
    font-family: 'Montserrat Bold', sans-serif;
}
.register{
    padding: 0 30px 20px
}
.register [class^=col]{
    margin-top: 0!Important
}
.row.date {
    width: 100%;
}
.row.date select{
    width: 100%;
}

/*producto*/
.product{
    padding: 15px 10px;
}
.product h1,.product h2,.product p span{
    font-family: 'Montserrat Bold', sans-serif;
}
.product h1{
    font-size: 1.4em;
    margin-bottom: 10px
}
.product h2{
    font-size: 1.1em;
    margin-top: 10px
}
.product p span{
    display: inline-block;
    float: right
}
.product p.url {
    color: #ddd;
    word-break: break-all;
}
.product p.url span{
    display: block;
    float: inherit;
}
.product p span.note{
    color: #92ca00
}

/*afiliado principal*/
.news{
    margin-top: 30px;
    padding: 0 20px 40px;
    display: inline-block;
    width: 100%
}
.news h1:first-child{
    border-top: 1px solid #fff;
    margin-top: 10px
}
.news h1{
    font-size: 1.6em;
    font-family: 'Montserrat Bold', sans-serif;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-top: 40px;
    margin-bottom: 15px;
}
.news img{
    width: 100%;
    height: auto;
    margin: 20px 0
}
.news p{
    margin: 0 20px;
}
.news h4 {
    margin: 0 20px;
    padding: 40px;
    background-color: #eee;
    font-size: 12px;
    font-family: monospace;
    line-height: 100%;
    color: #000;
}

/*tickets*/
ul.tickets{
    background-color: #931646;
    padding: 10px;
    border-radius: 4px;
    margin: 20px 0 0;
    -webkit-box-shadow: 0 7px 14px -6px rgba(0,0,0,.2);
    -moz-box-shadow: 0 7px 14px -6px rgba(0,0,0,.2);
    box-shadow: 0 7px 14px -6px rgba(0,0,0,.2);
    
}
ul.tickets li{
    display: inline-block;
}
ul.tickets li a{
    color: #fff;
    font-family: 'Montserrat Bold', sans-serif;
    padding: 10px;
    text-decoration: none;
}
ul.tickets li a:hover{
    color: #da4d75;
}


table { 
    width: 100%; 
    border-collapse: collapse; 
    border: 1px solid rgba(0,0,0,.05); 
}

tr:nth-of-type(even) { 
    background: rgba(0,0,0,.02); 
}
th { 
    background: rgba(0,0,0,.05); 
}
td, th { 
    padding: 10px; 
    border-left: 1px solid rgba(0,0,0,.05); 
    text-align: left; 
    font-size: 18px;
}
td:first-child, th:first-child { 
    border-left: none; 
}

.tablepanel h3{
    margin: 20px 30px
}
.normalpanel{
    padding: 20px 30px;
}
.ticketsmsg p{
    font-family: 'Montserrat Bold', sans-serif;
    margin-bottom: 10px
}
.ticketsmsg h3{
    color: #ddd
}
.ticketsmsg .msg{
    font-family: 'Montserrat Light', sans-serif;
    padding: 10px;
    border: 1px solid #f6f6f6
}

/*banners/links*/
.product:first-child{
    margin-top: 0!important;
}
.misosa{
    display: inline-block;
    width: 50%;
    margin: 5px 0;
}
.misosa a{
    font-family: 'Montserrat Bold', sans-serif;
    text-decoration: none;
    color: #931646;
}
.misosa a:hover{
    color:  #da4d75
}
.adbox{
    border: 1px solid #eee
}

/*su actividad*/
.balance h1{
    font-size: 3em;
    color: #ddd;
    margin-bottom: 25px
}
.fondoimagenchart{
    max-width: 700px;
}
/*estadistica detallada*/
a.calendario:after{
    background-image: url('miimg/calendar.svg');
    background-size: 40px;
    width: 40px;
    height: 40px;
    position: absolute;
    content: "";
}
a.calendario{
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 15px;
    top: 38px;
    opacity: .4
}
a.calendario:hover{opacity: 1}
.report p{
    margin: 20px 0;
    border: 1px solid  #931646;
    padding: 20px
}
.clip{
    background: #FCFDFE
}
.clip .dTreeNode img:first-child{
    width: 20px
}
.clip .dTreeNode img:last-child{
    margin-right: 4px
}

.maximosizeyscroll img{
    max-width: 100%;
    width: auto;
    height: auto;
}
/*
morado:    #931646
rosa:      #da4d75
*/

.small{
    width: 20px
}