/*******      HEADERS y MENU      ******/

.header-div{
    margin-left: 20px;
    margin-right: 20px;
    z-index:10000;
    /*position:fixed;*/
}


.dropdown-menu {
    border: 2px solid rgba(72, 127, 255, 1);
    border-radius: 16px;
    
}


.btn-solid-primary {
    background-color: #8737D0;
    color: white;
    padding: .5rem 1.3rem;
}

.btn-line-primary{
color:#8737D0;
border: solid 1px #8737D0;
padding: .5rem 1.3rem;
}

.btn-solid-primary:hover{
    background-color: #8737D0;
color: white;
padding: .5rem 1.3rem;
    filter: contrast(1.5);
    }
    
    .btn-line-primary:hover{
        color:#8737D0;
        border: solid 1px #030203;
        padding: .5rem 1.3rem;
        filter: contrast(1.5);
    }

.btn-no-wrap{
    white-space: nowrap;
}


.footer-seccion{
    margin-bottom:40px;
    font-size:16px;
}

.custom-navbar {
    background-color: white;
}

.web {
    display: block !important;
}

.mobile {
    display: none !important;
}


/* Terminos y condiciones */
.index-footer {
    background: rgba(253, 251, 251, 1);
}

.tyc-color-texto {
    color: rgba(98, 98, 98, 1);
}

.tyc-letra {
    font-size: 12px;
}

.tyc-link {
    font-size: 12px;
    text-decoration: none;
    color: rgba(98, 98, 98, 1);
}

.tyc-frame{
    width:100%;
    height:calc(100vh - 100px);
}

/******************************************************/
/*                 MENSAJES BLAZOR                    */
/******************************************************/
#components-reconnect-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 120px;
    background-color: rgba(72, 127, 255, 0.8);
    z-index: 10000;
    font-size: 15px;
}

    #components-reconnect-modal.components-reconnect-show,
    #components-reconnect-modal.components-reconnect-failed,
    #components-reconnect-modal.components-reconnect-rejected {
        display: flex;
    }

    #components-reconnect-modal .components-messages {
        color: white;
        margin: auto;
        width: 100vw;
        text-align: center;
        vertical-align:middle;
        
    }

        #components-reconnect-modal .components-messages h2 {
            color: white;
        }

        #components-reconnect-modal .components-messages a {
            color: blue;
            text-decoration: none;
            border-bottom: 1px dotted white;
        }


    #components-reconnect-modal .components-reconnecting,
    #components-reconnect-modal .components-failed,
    #components-reconnect-modal .components-rejected {
        display: none;
    }

    #components-reconnect-modal.components-reconnect-show .components-reconnecting,
    #components-reconnect-modal.components-reconnect-failed .components-failed,
    #components-reconnect-modal.components-reconnect-rejected .components-rejected {
        display: block;
    }

#blazor-error-ui {
    background-color: orange;
    color: white;
}

/******************************************************/
/*                 MOBILE                    */
/******************************************************/
@media only screen and (max-width: 760px) {
    .web {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }



    .nav-link{
        font-size:24px !important;
    }

    .dropdown-item {
        font-size: 22px !important;
    }

    .margin-mobile {
        margin-top: 20px;
    }

    .btn-inicia-mobile {
        font-size: 24px !important;
        width:100%;
    }

    .tyc-letra {
        font-size: 16px;
    }

    .tyc-link {
        font-size: 16px;     
    }

    .footer-seccion {
        font-size: 20px;
    }
}