/* Add here all your css styles (customizations) */
footer a {
    color:#72c02c;
}

.nav-item {
    display: flex;
    align-items: center;
}

.hs-menu-initialized .animated {
    -webkit-animation-duration: 30ms;
    animation-duration: 30ms;
}

@media only screen and (max-width: 991px) {
    .nav-item {
        display:initial
    }
}

.u-btn-blue {
    background-color: #167bbf;
}

.price-strike {
    position: relative;
    display: inline-block;
}

    .price-strike::after {
        content: "";
        position: absolute;
        left: -4px;
        top: 50%;
        width: calc(100% + 8px);
        border-top: 2px solid red;
        transform: rotate(-25deg);
    }