.menu {
    background-image: url("../../images/konstit-logo.png");
    background-repeat: no-repeat;
    background-position: center 20px;
    background-size: 120px 120px;
    padding-top: 150px;
    padding-bottom: 40px;
    font-size: 16px;
    height: auto;
    text-transform: uppercase;
    text-align: right;
    background-color: inherit;
}

.menu a {
    padding-bottom: 8px;
    padding-right: 20px;
    padding-top: 8px;
    border-bottom: thin solid #151515;
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: transparent;
    width: 160px;
}

.menu a.title {
    color: #357ce6;
}

.menu a:hover {
    border-bottom: thin solid #151515;
}

.menu .bullet {
    color: #303030;
    background-color: inherit;
    font-size: 16px;
}

.menu .bullet.active {
    animation-name: pulse-menu-item;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}

.menu .subtitle {
    text-transform: lowercase;
    padding-right: 20px;
    font-size: 14px;
}

.menu .menu-section {
    margin-bottom: 10px;
}

@keyframes pulse-menu-item {
    from {
        color: #303030;
    }
    
    to {
        color: #357ce6;
    }
}

.menu .mobile-logo,
.menu .mobile-toggler {
    display: none;
}

.menu .helper-links {
    margin-top: 40px;
    font-size: 16px;
    text-transform: lowercase;
}

#trash-count {
    float: right;
    color: white !important;
    background-color: red;
    display: none;
}

.item-count {
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 23px;
    margin-left: 5px;
}

/* Mobile */
@media only screen and (max-width: 1024px) {
    .menu {
        padding-top: 0 !important;
        background: none !important;
        width: 100% !important;
        padding-bottom: 0 !important;
    }

    .menu a {
        padding-bottom: 12px;
        padding-right: 20px;
        padding-top: 12px;
        display: table-row !important;
        width: 100% !important;
        float: right;
    }

    .main-menu {
        display: none;
    }

    .menu.active .helper-links a:last-of-type {
        margin-bottom: 10px;
    }

    .menu .mobile-logo {
        outline: 0;
        background-image: url("../../images/konstit-logo-white.png");
        background-position: top left;
        background-size: auto 40px;
        background-repeat: no-repeat;
        display: block;
        float: left;
        margin-top: 25px;
        margin-left: 20px;
        width: 120px;
        height: 40px;
    }
    
    .menu .mobile-toggler {
        cursor: pointer;
        display: initial !important;
        color: #fff;
        font-size: 40px;
        margin: 20px;
        display: block;
        float: right;
        background-color: #303030;
        padding: 5px;
        /*border-radius: 30px;*/
    }

    .menu .mobile-toggler.active {
        margin-bottom: 10px !important;
        background-color: #357ce6;
    }
}

/* Nonmobile */
@media only screen and (min-width: 1025px) {
    .main-menu {
        display: initial !important;
    }
}