/* Nav Infobae */
.navbar {
    overflow: hidden;
    background-color: #fff;
    padding: 12px;
    z-index: 99;
}

button {
    background: #222222;
    color: white;
    padding: 5px 30px;
    font-weight: bold;
    border-radius: 5px;
}

button.feature-btn.active{color: #F98300}

.feature-section {min-height: 27vw;}

.navbar.sticky {
    position: fixed;
    top: 50px;
    width: 156px;
    border: 1px solid #F98300;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: var(--static-shadow);
    transition: all 0.1s cubic-bezier(.25, .8, .25, 1);
}

.navbar-link {
    display: flex;
}

.navbar .navbar-logo {
    width: 100%;
    height: auto;
    max-height: 24px;
}

@media screen and (max-width: 768px) {
  nav#navbar{display:none!important}
}