/* Website styles */

* {
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'NimbusSans';
    font-size: 16px;
    font-weight: 100;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, strong {
    font-weight: 700;
    text-align: left;
}

h1{
    color: black;
    font-size: 1.8rem;
    text-transform: uppercase;
}

h2 {
    font-size: 1.5rem;
}

a, strong {
    color: #000;
}

em {
    color: black;
    font-style: normal;
}

p {
    text-align: justify;
    margin-top: 30px;
}

.text-black {
    color: black;
}

.justify {
    text-align: justify;
}

.button {
    align-items: center;
    border: solid 2px #f59600;
    border-radius: 27px;
    color: #f59600;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    justify-content: center;
    padding: .4rem 3.5rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.button_red {
    color: #cc2031;
    border-color: #cc2031;
}

.button_solid {
    background: #f59600;
    color: white;
}

.separator {
    border-top: 1px dotted black;
    height: 1px;
    line-height: 1px;
}
.separator__line {
    border-top: 1px solid #707070;
    height: 1px;
    line-height: 1px;
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}
.separator__circle {
    position: absolute;
    border: 1px solid #707070;
    background-color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%);
}


.wrapper {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 1rem;
    width: 100%;
}

.readable {
    max-width: 780px;
}

.header {
    background: black;
    bottom: auto;
    margin: auto;
    height: 80px;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

.header .wrapper {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    max-width: 100%;
}


.header__logo {
    line-height: 0;
    margin: 0;
    padding: 0;
}

.header__logo img {
    height: 80px;
}

.header__button-accordion {
    line-height: 0;
    transition: transform .3s ease-in-out;
}

.header__menu__accordion_active {
    transform: rotate(90deg);
    transition: transform .3s ease-in-out;
}

.header__button-accordion img {
    height: 30px;
    width: 30px;
}

.header__menu {
    display: flex;
    align-items: flex-start;
    background: rgba(0,0,0, .9);
    bottom: auto;
    color: white;
    flex-flow: column;
    height: 100vh;
    right: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2em;
    position: absolute;
    top: 60px;
    transform: translateX(100vw);
    transition: all .3s ease-in;
    width: 100vw;
    z-index: 999;
}

.header__menu_active {
    transform: translateX(0);
    transition: all .3s ease-in-out;
}

.header__menu__item {
    border-bottom: 1px dotted #ccc;
    color: white;
    display: flex;
    font-size: 1.5em;
    padding: .4em 0;
    text-decoration: none;
}

.header__menu__item2 {
    display: flex;
    color: white;
    text-decoration: none;
    font-size: .9em;
    padding: 0 1em;
    transition: all .2s ease-in-out;
}
.header__menu__item2:hover {
    color: #f59600;
    transition: all .2s ease-in-out;
}


.header__menu__item_active {
    color: #f59600;
    border-bottom-color: #f59600;
}

.header__menu__item_account img {
    display: none;
}

.header__menu__item_logedin {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.header__menu__item_logedin a{
    color: #FFC107;
    text-decoration: none;
}

.header__menu__item_logedin img {
    margin-left: 14px;
    width: 30px;
}

.header__menu__item__logout {
    line-height: .3em;
}

.main {
    display: block;
    margin-top: 60px;
    padding-top: 1rem;
    position: relative;
    width: 100%;
    z-index: 99;
}

.footer {
    background: black;
    color: #a6a6a6;
    font-size: .6em;
    padding: 15px 0;
    position: relative;
    z-index: 99;
}

.footer .wrapper {
    align-content: center;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.footer__logo {
    line-height: 0;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: auto;
}

.footer__logo img {
    height: 57px;
    width: 147px;
}

.footer__misc {
    margin-top: 1em;
}

.footer__copyright {
    margin-top: .5em;
    text-align: center;
}

.footer__menu {
    text-align: center;
    display: flex;
    font-size: 1.2em;
    justify-content: center;
    margin-top: 5px;
}

.footer__menu__separator {
    display: block;
    padding: 0 14px;
}

.footer__menu a {
    color: white;
}

.footer__social-nav {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.footer__social-nav__item {
    height: 20px;
    margin-right: 1.8rem;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    width: 20px;
    z-index: 1;
}

.footer__social-nav__item:nth-last-of-type(1) {
    margin-right: 0;
}

.message {
    background: #cc2031;
    bottom: auto;
    color: white;
    left: 0;
    margin: auto;
    padding: 1em 4em 1em 1em;
    position: fixed;
    right: 0;
    text-align: center;
    top: 18px;
    transform: translateY(-50px);
    transition: all .2s ease-in-out;
    width: 100%;
    z-index: 999;
}

.message__close-button {
    background-image: url(../../img/icon-close-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    cursor: pointer;
    height: 20px;
    left: auto;
    margin: auto;
    position: absolute;
    right: 2em;
    text-decoration: none;
    top: 0;
    width: 20px;
    z-index: 1;
}

.message_visible {
    transform: translateY(60px);
    transition: all .3s ease-in-out;
}

.notices {
    background-color: #f5dfc5;
    border-radius: 4px;
    display: flex;
    flex-flow: column;
    font-size: .8em;
    list-style: none;
    padding: 1em;
    width: 100%;
}

.notices__item {
    background-image: url(../../img/icon-warning-yellow.svg);
    background-position: left top 2px;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    padding-bottom: .2em;
    padding-left: 25px;
}

.title__section {
    font-size: 1.6em;
    margin-top: 60px;
    margin-bottom: 40px;
}

.pres__banner {
    line-height: 0;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.pres__banner img {
    width: 100%;
}

.txt__lumen {
    font-weight: bold;
    font-size: 1.6em;
    color: #000;
    margin-top: 40px;
}

.lnk {
    color: #f59600;
}

.btn {
    text-transform: none;
    background-color: #f59600;
    color: #000;
    font-weight: normal;
    padding: 12px 30px;
    font-size: 16px;
}

.btn__content.right {
    margin-left: auto;
    margin-top: 20px;
}
.black {
    color: #000;
}
.yellow {
    color: #f59600 !important;
}

.boxrules {
    background-color: #000;
    padding: 30px;
    color: #fff;
    margin-bottom: 30px;
    background-position: right;
    background-size: 600px;
    background-repeat: no-repeat;
}
.boxrules__title {
    text-transform: uppercase;
}
.boxrules a {
    text-decoration: none;
}
.boxrules p.pdf a {
    text-decoration: underline;
}
.boxrules p {
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    font-size: 16px;
}
.boxrules p.pdf {
    margin: 15px 0;
}

.boxreg__title {
    color: #f59600;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}
.boxreg .btn {
    width: 200px;
    margin: auto;
    font-size: 16px;
}

.boxreg__p {
    margin-top: 17px;
}

@media screen and (min-width: 500px) {
    .header__menu__item2 {
        font-size: 1em;
    }
    .header__button-accordion {
        cursor: pointer;
    }
    .boxrules {
        padding: 40px;
    }
}

@media screen and (min-width: 780px) {

    .header__menu {
        width: 50vw;
    }
    .title__section {
        font-size: 1.8em;
    }

}

@media screen and (min-width: 960px) {
    

    body {
        font-size: 18px;
    }

    h1 {
        font-size: 2rem;
    }

    .header {
        height: 80px;
        justify-content: space-between;
    }

    .header .wrapper {
        flex-flow: row;
        justify-content: space-between;
    }

    .header__button-accordion {
        display: none;
    }

    .header__menu {
        align-items: center;
        background: transparent;
        flex-flow: row;
        height: 100%;
        overflow: visible;
        padding: 0;
        position: static;
        transform: translate(0);
        transition: none;
        width: auto;
    }

    .header__menu__item {
        align-items: center;
        border-bottom: none;
        font-size: 1em;
        font-weight: 200;
        height: 100%;
        margin-bottom: 0;
        padding: 0 1em;
        position: relative;
        text-align: center;
        transition: all .2s ease-in-out;
    }

    .header__menu__item:hover {
        color: #f59600;
        transition: all .2s ease-in-out;
    }

    .header__menu__item.mi_cuenta {
        display: none;
    }
    .header__menu__item.user img {
        width: 45px;
    }

    .header__menu__item_logedin:hover {
        background-color: transparent;
        transform: none;
    }

    .header__menu__item_active {
        color: #f59600;
    }

    .header__menu__item_account {
        border: 2px solid #f59600;
        border-radius: 24px;
        color: #f59600;
        font-size: .7em;
        font-weight: 100;
        height: 3.5em;
        padding: 0 2em;
        text-transform: uppercase;
    }

    .header__menu__item_account img {
        display: inline-flex;
        height: 16px;
        width: 16px;
    }

    .header__menu__item_account:hover {
        border-color: #fff;
        color: #fff;
    }

    .header__menu__item_logedin img {
        transition: all .2s ease;
        width: 23px;
    }

    .header__menu__item_logedin img:hover {
        transform: translateX(3px);
        transition: all .2s ease;
    }

    .btn {
        font-size: 18px;
    }

    .button {
        transition: all .2s ease-out;
    }

    .button:hover {
        transition: all .2s ease-out;
        transform: scale(1.08);
    }

    .footer .wrapper {
        align-content: center;
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        max-width: 100%;
    }

    .footer__logo img {
        height: 65px;
        width: 168px;
    }

    .footer__misc {
        align-items: flex-end;
        display: flex;
        flex-flow: column;
        justify-content: center;
        margin-top: 0;
    }

    .footer__trademark {
        align-items: center;
        display: flex;
        justify-content: flex-start;
    }

    .footer__social-nav {
        margin: 0 0 0 1em;
    }

    .footer__menu__item {
        font-size: 1.2em;
    }

    .footer__copyright {
        font-size: 1.2em;
    }

    .message_visible {
        transform: translateY(80px);
    }
    .message {
        top: 0;
    }
    .boxreg .btn {
        width: 240px;
    }

}

@media screen and (min-width: 1440px) {

    

    .footer__social-nav__item:hover  .footer__social-nav__icon_dark,
    .footer__social-nav__item:hover  .footer__social-nav__icon_light {
        left: 0;
        position: absolute;
        top: -100%;
        z-index: 1;
    }

    .footer__social-nav__item:hover  .footer__social-nav__icon_light {
        top: 0;
    }

}

@media screen and (max-height: 780px) {

    .main {
        padding-bottom: 0;
    }

    .footer {
        position: relative;
    }

}