.btn-primary {
    border: 1px solid #e0e5ec;
    border-radius: 50px 0px 50px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    text-align: center;
    /* truncate text */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .3s ease-in-out;
    width: 300px;
}

.btn-primary::after {
    content: "";
    position: absolute;
    margin-left: 9px;
    margin-top: 9px;
    background-color: #0f275c;
    width: 300px;
    height: 50px;
    border-radius: 50px 0px 50px 0px;
    z-index: -1;
}

.btn-primary.bg-white a {
    color: var(--blue);
}

.btn-primary.bg-gray a {
    color: #fff;
}

.btn-primary a {
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #191b36;
    color: #fff;
}

.btn-primary:hover a {
    color: #fff;
}

/* Card */
.denuncia {
    color: #bcbcbc;
    font-size: 1rem;
    margin-top: 4rem;
    padding: 0.5rem;
    min-height: 8rem;
}

.denunicia summary {
    font-size: 1rem;
    color: #b5b5b5;
    margin: 0.5rem 0;
    padding: 0.5rem;
}

/* .denuncia[open] {
    padding: 0.5em;
} */

.denuncia[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: 0.5rem;
}

.link-denuncia {
    text-decoration: none;
    color: #e7e7e7;
}

.link-denuncia:hover {
    color: #72abf6;
    text-decoration: underline;
}
  
/* Card */

.hero-menu {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 3rem;
    width: 100%;
    z-index: 5;
}

.hero-menu .close-session {
    background-color: transparent;
    border: none;
    border-radius: 1rem;
    color: #ebd5d9;
    font-size: 1.2rem;
    text-decoration: none;
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .25rem 1rem;
}

.hero-menu .close-session svg {
    color: #dc143c;
    margin-right: 1rem;
    width: 2rem;
}

.hero-menu .close-session:hover {
    background: #824755;
    cursor: pointer;
}

.hero-menu .username {
    border-radius: 2rem;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
}

.hero-menu .username:hover {
    background: #9193a1;
}

.hero-menu svg {
    color: #fff;
    cursor: pointer;
    margin-right: 1rem;
    width: 2rem;
}

.mobile-nav {
    display: none;
}

#toggle {
    display: none;
}