::-webkit-scrollbar {
    display: none;
}

html, body {
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none;  /* Para Internet Explorer y Edge */
}

body {
    color: rgba(229, 224, 216, 0.85);
    background-color: rgb(36, 37, 37);
    margin: 0;
}

.collapsible_content {
    background-color: black;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mp_collapsible_open {
    max-height: 400px;  
    transition: max-height 0.3s ease-out;
}

.mp_collapsible_text{
    max-width: 610px;
    margin: 0 auto;
    text-align: center;
    color: #e3d2e2;
    padding: 30px;
}

.outline{
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000;
}

.web_card {
    width: 300px;
    height: 400px;
    background-color: #535353;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}


.web_card_image {
    max-width: 90%;
    max-height: 100%;
}

.web_card_text{
    padding-top: 15px;
    font-size: 25px;
    color: #ff65b8;
}

.orange_link
{
    color: orange;
}

.card_overlay{
    position: absolute;
    background-color: rgb(0 0 0 / 71%);
    width: 250px;
    height: 264px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    left: 45px;
    margin-top: -1px;
}

.p_footer_general {
    font-size: 22px;
    color: #fb4baa;
    text-align: center;
}

.main_page_body{
    transform-origin: top;
    transform: scale(1.28);
    transition: transform 0.3s ease;
}

.target_cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
}

.card_container {
    text-decoration: none;
    cursor: pointer;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: bold;
    padding-top: 20px;
    transition: transform 0.3s ease;
}

.card_container:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.card_container:hover .card_overlay {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.rinin_wrapper{
    width: 100%;
    height: 98vh;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    overflow-y: auto;    
}

.rinin_header{
    width: 100%;
}

.rinin_header_img{
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
}

.main_wrapper{
    height: auto;
    background-color: #2e2f2f;
    padding: 20px;
    position: relative;
    margin-top: -5px;
}

.login_link{
    font-weight: bolder;
    font-size: 21px;
}

.logged_header_bar{
    display: flex;
    justify-content: space-between;
}


.pointer{
    cursor: pointer;
    font-weight: bold;
}

.p_footer{
    font-size: 16px;
}

.news{
    color: #ff93ff;
}

.download_grid {
    display: grid;
    grid-template-columns: 0fr 1fr;
    gap: 10px;
    width: 100%;
    column-gap: 20px;
    margin-bottom: 20px;
}

.version_title {
    grid-column: span 2; /* Hace que el título de la versión ocupe ambas columnas */
}

.d_icon{
    max-width: 75px;
}


a {
    text-decoration: underline;
    color: rgb(189, 35, 150); 
}

a:hover {
    color: rgb(255, 166, 224); 
}

a:focus {
    outline: none;
}

a:active {
}

.premium{
    color: rgb(219 22 22);
    font-weight: bolder;
    text-transform: uppercase;
    margin-left: 10px;
    font-size: 17px;
}

/* Fonts */
@font-face {
    font-family: poppins_bolder;
    src: url(../fonts/Poppins-SemiBold.ttf);
  }

@font-face {
    font-family: poppins_bold;
    src: url(../fonts/Poppins-Medium.ttf);
  }
  
@font-face {
    font-family: poppins_regular;
    src: url(../fonts/Poppins-Light.ttf);
}

.poppins_regular{
    font-family: poppins_regular;
}

.poppins_bold{
    font-family: poppins_bold;
}

.poppins_bolder{
    font-family: poppins_bolder;
}

.icon_flex{
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.row_container {
    width: 100%;
    margin-bottom: 20px;
}

.d_iconv2 {
    padding-top: 5px;
    width: 100%;
}

.icon_col{
    width: 100%;
    max-width: 90px;
    padding-right: 30px;
}

/* @media only screen and (max-device-width: 2330px) {

    .main_page_body{
        transform: scale(1.4);
    }

}

@media only screen and (max-device-width: 1800px) {

    .main_page_body{
        transform: scale(1.3);
    }

} */

@media only screen and (max-device-width: 1650px) {

    .main_page_body{
        transform: scale(1.1);
    }

}

@media only screen and (max-device-width: 1200px) {

    .main_page_body{
        transform: scale(1);
    }

}

@media only screen and (max-device-width: 767px) {

    .main_page_body{
        transform: scale(1.2);
    }

    .icon_col{
        width: 80%;
        max-width: 30%;
        padding-right: 50px;
    }

    .login_link{
        font-size: 32px !important;
    }

    .p_footer{
        font-size: 20px !important;
    }


    .rinin_wrapper{
        font-size: 25px !important;
    }


    .logged_header_bar {
        font-size: 43px;
    }

    .premium {
        margin-left: 0;
        font-size: 25px;
    }

    .user_data_mail{
        width: 80%;
    }

}
