.blink {
    animation: blinker 1.5s linear infinite;
    color: black;
    font-family: sans-serif;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media (max-width: 1100px) {
    .hidden-menu-top {
        display: none;
    }
}

@media (min-width: 1100px) {
    .hidden-top-menu {
        display: none;
    }
}

.hiddenmenu ul {
    list-style-type: none;
    padding: 15px;
    padding: 0;
    text-align: center;
}

.hiddenmenu li {
    padding: 15px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 7px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.hiddenmenu .active li {
    background-color: #66ccff;
}

.hiddenmenu .other li {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.hiddenmenu .other a {
    color: #000000;
    text-decoration: none;
}

.hiddenmenu .other li:hover {
    background-color: #66ccff;
    color: #000000;
    font-weight: ;
    cursor: pointer;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}