/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
@media (min-width: 992px) {
    #index #header {
        position: absolute;
        left: 0;
        z-index: 51;
        width: 100%;
        background: rgba(0,0,0,0.7)!important;
    }
    #index #header #amegamenu:not(.fixed-menu) {
        background: transparent;
    }
}
div.block-category {
    flex-direction: column;
}
#subcategories ul.subcategories-list{
    align-content: center;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}
#subcategories ul.subcategories-list li{
    background: #f6f6f6;
}
#badge-pro{
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 999;
    animation: slideInRight 0.6s ease-out forwards;
}
#badge-pro a{
    display: block;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    border: 3px solid #ff3300;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.3s ease;
}
#badge-pro a:hover{
    background-color: #ff3300;
}
@keyframes slideInRight {
    0% {
        transform: translatex(75%) rotate(-90deg) ;
        opacity: 0;
    }
    100% {
        transform: translatex(31%) rotate(-90deg);
        opacity: 1;
    }
}