@import "fonts.css";

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Geomanist", sans-serif;
    font-size: 16px;
    color: #2B1937;
}

* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    width: 100%;
}

header {
    background-color: #66308C;
    box-shadow: 2px 2px 18px #433D3845;
    border-bottom: 1px solid #8B4A70;
    position: sticky;
    top: 0;
    z-index: 8;
}
.orange-text{
    color: #F09124;
}
.pasos__title--bold{
    font-weight: 500 !important;
}
.header__left {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.header__content {
    padding: 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.left__link {
    text-decoration: none;
}
.header__title {
    justify-self: center;
}
.header__logo {
    width: 50px;
    align-self: center;
}
.header__logo--letras {
    width: 150px;
}
.header__title {
    font-size: 24px;
    margin-left: 10px;
    color: #66308C;
}
.header__icon img {
    width: 27px;
}
.header__menu {
    display: none;
}
.header__menu ul {
    display: flex;
    list-style: none;
    justify-content: flex-start;
    align-items: flex-start;
}
.header__menu a {
    text-decoration: none;
    color: #fff;
}
.header__menu .selected {
    text-decoration: underline;
    background-color: #EFEAF3;
}
.header__menu__button {
    display: flex;
    position: absolute;
    top: 10px;
    right: 20px;
    background: transparent;
    border: 0px;
    flex-direction: column;
    margin: 12px 0 12px auto;
    gap: 5px;
    width: 32px;
    z-index: 4;
    cursor: pointer;
}
.header__menu--desk {
    display: none;
}
.header__menu__button>div {
    background: #FFF;
    height: 4px;
    width: 100%;
    border-radius: 5px;
    transition: all .5s;
    transform-origin: right;
}

.drops__cont {
    display: none;
    position: relative;
    justify-content: space-between;
    align-items: center;
}
.lang-select {
    position: relative;
}
.lang-select-arrow {
    width: 15px;
    position: absolute;
    top:12px;
    right: 5px;    
}

.dropbtn {
    padding: 16px 5px;
    font-size: 18px;
    color: #fff;
    border: none;
    font-weight: 300;
    font-family: "Geomanist", sans-serif;
    background-color: #66308C;
    margin-left: 5px;
}


.dropdown {
    position: relative;        
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 240px;    
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #3E175A;
    min-width: 160px;
    z-index: 1;
    top: 50px;
    right: 0;
    font-size: 18px;
    padding: 10px;
    width: 250px;
}
.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 300;
}
.dropdown-content a:hover {
    background-color: #F09124;
}
.dropdown-content a.selected {
    background-color: #F09124;
}
.dropdown a {
    text-decoration: none;
    padding: 10px;        
}
.dropdown a:last-child {
    border-right: none;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.banderas__cont {
    display: flex;
    flex-direction: column;

}
.bandera__cont {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}
.right__title {
    color: #F09124;
    font-size: 20px;
    font-weight: normal;
}
.banderas__title {
    color: #F09124;
    font-size: 20px;
    font-weight: 200;
    margin-top: 15px;
}
.bandera__img {
    width: 35px;
    height: 20px;
    margin-right: 5px;
}
.bandera__title {
    font-size: 18px;
    font-weight: 200;
}
.list__separador {
    background-color: #FFF;
    width: 100%;
    border: 1px solid #fff;
}

.menu__open .header__menu__button {
    position: fixed;
    gap: 18px;
}
.menu__open .header__menu__button div:first-child {
    transform: rotate(-45deg);
    width: 95%;
}
.menu__open .bg__main{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    opacity: 0.4;
    z-index: 2;
}
.menu__open .header__menu__button div:nth-child(2) {
    opacity: 0;
    display: none;
}
.menu__open .header__menu__button div:last-child {
    transform: rotate(45deg);
    width: 95%;
}

.wrapper {
    max-width: 1200px;
    margin: auto;

}

.banderas__cont--mobile {
    display: none;
}

.header__menu .list__item--selected{
    color: #F09124 !important;
} 

.app {
    padding: 45px 15px;
    background-color: #EFEAF3;
}
.app__title {
    font-size: 20px;
    color: #66308C;
    margin-bottom: 10px;
    text-align: center;
}
.app__stores {
    display: flex;
    justify-content: center;
    grid-gap: 16px;
}
.app__txt {
    text-align: center;
    margin-bottom: 20px;
}
.app__stores__img {
    width: 40px;
}

footer {
    background-color: #66308C;
}
.footer__sub {
    padding: 40px 20px;
}
.footer__logo {
    text-align: center;
    margin-bottom: 30px;
}
.footer__logo:last-child {
    margin-bottom: 0;
}
.footer__logo img {
    width: 200px;
}
.sub__title {
    color: #F09124;
    font-weight: 400;
    font-size: 20px;
    align-self: flex-start;
    margin-bottom: 15px;
}
.sub_subtitle {
    color: #fff;
    font-weight: 200;
    font-size: 18px;
    line-height: 20px;
    align-self: flex-start;
}

#mi-menu {
    position: fixed;
    top: 63px;
    right: -232px;   
    width: 232px;
    height: 100%;
    color: #fff;
    text-align: left;
    transition: right 0.5s;
    z-index: 2;
    padding: 20px;
    background-color: #592A7A;
}

#mi-menu.mostrar {
    right: 0;
    background-color: #592A7A;   
}
#mi-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.drops__cont {
    display: none;
}
#mi-menu ul li a {
    text-decoration: none;
    display: block;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 200;
}

.list__item--italic {
    font-style: italic;
    font-weight: bold;

}

.mi-menu__list {
    display: flex;
    flex-direction: row;    
    justify-content: flex-start !important;
}

.item__icon {
    margin: 0;
    padding: 0;
    height: 25px;
    width: 25px;
    margin: 3px;
    margin-left: 25px;

}

.list__item {
    margin: 0px;
}

.item__icon--youtube {
    width: 34px;
    margin-left: 10px;
}

.main__btn--green {
    background-color: #7AB700 !important;
    color: #fff !important;
    margin-top: 15px;
}
.vodiapicker {
    display: none;
}
#a {
    padding: 2px;
    border: 1px solid #fff;
    border-radius: 5px;
    width: 115px;
    color: #FFF;
}

#a img,
.btn-select img {
    width: 12px;

}

#a li {
    list-style: none;
    padding-top: 2px;
    padding-bottom: 2px;
    display: flex;
    cursor: pointer;
    font-weight: 200;
}

#a li:hover {
    background-color: #66308C;
}

#a li img {
    width: 40px;
    height: 25px;
}

#a li span,
.btn-select li span {
    margin-left: 3px;
    line-height: 22px;

}

.b {
    position: absolute;
    display: none;
    max-width: 350px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 5px;
    background-color: #66308C;
}
.open {
    display: show !important;
}
.btn-select {
    width: 118px;
    font-family: "Geomanist", sans-serif;
    font-size: 16px;
    font-weight: 200;
    max-width: 350px;
    height: 34px;
    border-radius: 5px;
    background-color: #66308C;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 4px;
}
.btn-select img {
    width: 40px;
    height: 25px;
}

.btn-select li {
    list-style: none;
    float: left;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
   
}
.btn-select{
    cursor: pointer;
}
 
.btn-select:hover li {
    margin-left: 0px;
}

.btn-select:focus {
    outline: none;
}

.lang-select {
    margin-left: 50px;
}

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

    .app__content {
        width: 300px;
        margin: auto;
    }

}

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

    .header__logo--letras {
        width: 180px;
    }
    .app__content {
        width: auto;
    }
    .app__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 14px;
    }
    .app__txt {
        font-size: 18px;
    }
    .footer__sub {
        width: 320px;
        margin: auto;
    }

}

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

    .header__menu a {
        font-size: 18px;
    }
    .header__menu__button {
        display: none;
    }
    .header__menu--desk {
        display: block;
    }
    .menu__desk--img {
        width: 15px;
        color: #000;
        margin-top: 5px;

    }
    .drops__cont {
        display: flex;
    }
    .app {
        padding: 60px 0;
    }
    .app__stores__img {
        width: 46px;
    }
    .footer__sub {
        width: auto;
    }
    .footer__logo {
        margin-bottom: 0;
    }
    .sub__cont {
        width: 600px;
        display: flex;
        justify-content: space-between;
    }
    .footer__logo.mon img {
        width: 260px;
    }

}

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

    .header__content {
        padding: 20px 0;
    }
    .header__logo--letras {
        width: 200px;
    }
    .wrapper{
        width: 900px;
    }
    .dropbtn {
        font-size: 20px;
    }
    .sub__titles {
        width: auto;
    }
    .app__title { 
        font-size: 28px;
    }
    .app__txt {
        font-size: 20px;
    }
    .app__stores__img {
        width: 60px;
    }
    .footer__sub {
        padding: 60px 0;
    }

}

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

    .header__logo--letras {
        width: 220px;
    }
    .btn-select {
        font-size: 18px;
    }
    .wrapper {  
        width: 1200px;
    }
    .sub__cont {
        width: 1000px;
    }
}