#hamburger {
    position: fixed;
    top: 20px;
    right: 20px; /* Position the hamburger button to the right */
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    border: none;
}

#hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #FFF; /* Change the hamburger icon color to white */
    margin-bottom: 10px;
}

#menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 30vw;
    height: 100vh;
    background: #000000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 998;
    overflow-y: auto; /* Permite desplazarse si el contenido es más largo que la pantalla */
    padding-top: 20px; /* Espacio para el logo */
    box-sizing: border-box; /* Incluye el padding en el tamaño total */
}

#closeMenu {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

#logoContainer {
    text-align: center;
    margin: 10vh 0 20px 0;
}

#logoContainer img {
    max-width: 80%; /* Ajusta el ancho de la imagen según sea necesario */
}

#menu.active {
    display: block;
}

#menu ul {
    padding: 10px 0;
}

#menu li {
    list-style: none;
    padding: 10px;
}

#menu li:hover {
    background-color: #161616;
    color: #24fff7
}

#menu a {
    color: #fff;
    text-decoration: none;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 320px ) {
    #menu {
        width: 100vw;
    }

    #menu ul {
        text-align: center;
    }

    #logoContainer {
        margin: 7vh 0 20px 0;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #menu {
        width: 80%;
    }
    #menu ul {
        text-align: start;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    #menu {
        width: 30%;
    }
}

.navbar-elon{
    font-weight: normal;
    background: #161616;
}

.navbar-elon .navbar-menu-wrapper img{
    width: calc(50% - 20px);
}

.content-wrapper{
    background: #181D38;
}

@media only screen and (min-width: 320px) and (max-width: 960px){
    .main-panel{
        padding-top: 44px;
    }

    .navbar-elon .navbar-menu-wrapper img{
        width: 98vw;
    }

    div.col-12.p-5{
        padding: 0 !important;
    }
    .card-title{
        font-size: 1.5em !important;
    }
    .card-description{
        font-size: 0.8em !important;
    }
    .form-group label {
        font-size: 0.87em !important;
        line-height: 1.3 !important;
    }

    .form-check .form-check-label{
        font-size: .85em !important;
    }
}

/* @media only screen and (min-width: 961px) and (max-width: 1200px){
    .navbar-elon .navbar-menu-wrapper img{
        max-width: 98vw;
    }
} */

.p-80{
    padding: 3rem;
}

.card img{
    object-fit: cover;
    height: 40vh;
}

/* Formularios */
.card-title{
    font-size: 3.49em;
    text-align: center;
}

.card-description{
    font-size: 1.85em;
}

.twitter-typeahead{
    display: flex !important;
}

.typeahead.tt-input{
    font-size: 1.2em !important
}

.form-group label {
    font-size: 1.3em;
    line-height: 1;
    vertical-align: top;
}

.form-check .form-check-label{
    font-size: 1.05em;
}

.radio-group{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.radio-group .form-check{
    margin-right: 20px;
}
