.sidenav {
    display: none;
    pointer-events: none;
}

.hamburger {
    display: none;
}


@media (max-width: 768px) {
    
    .new-navbar {
        position: fixed;
        top: 0;
    }

    .main-menu {
        display: none;
    }

    .hvr-shine {
        display: none;
    }

    .text-right {
        display: flex;
        align-items: center;
        justify-content: end;
        padding-right: 5%;
    }

    .hamburger {
        display: initial;
        width: 2rem;
        height: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        cursor: pointer;
        align-self: end;
        transition: .2s ease;
        z-index: 2000;
    }

    .hamburger span {
        background-color: #FFF;
        height: 3px;
        width: 100%;
    }

    .hamburger.active {
        transform: rotate(-180deg);
    }

    .hamburger.active span:nth-child(1) {
        position: absolute;
        background-color: #FFF;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        position: absolute;
        background-color: #FFF;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .sidenav {
        display: initial;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        position: fixed;
        z-index: 1999;
        background-color: #311441;
        transform: translateX(-100%);
        transition: all .3s ease;
        font-size: 20px;
        text-align: center;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    
    .sidenav.active {
        transform: initial;
        pointer-events: initial;
    }

    .sidenav li {
        margin-bottom: 6px;
    }

    .logo {
        margin-bottom: 32px;
    }

    .divline {
        margin: 16px 0;
        width: 50%;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.555);
    }

    .languages {
        margin-top: 16px;
        display: flex;
    }

    .languages .hamburger-icon {
        margin: 0 16px;
    }

    .mobile-social-icons {
        margin-top: 32px;
        width: 50%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0 32px;
    }

    #rugbydat-fan {
        z-index: 0;
    }
    
    .tipos {
        z-index: 0 !important;
        
    }

}
