﻿@media (max-width: 992px) {   
    .hiddenbottommenu {
        display: none;
    }
}

    .sticky-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        /*padding: 0 4rem;*/
        background: #fff;
    }

        .sticky-footer > * {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
        }

        .sticky-footer .cart-dropdown {
            position: relative;
        }

            .sticky-footer .cart-dropdown .dropdown-box {
                top: auto;
                bottom: 100%;
                left: 0;
                min-width: 34rem;
                padding: 2rem 3rem 3rem;
                margin-bottom: 2.1rem;
                -webkit-transform: translateY(20px);
                transform: translateY(20px);
                -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
                transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
                transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
                transition: transform 0.3s, opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
            }

            .sticky-footer .cart-dropdown:hover .dropdown-box {
                -webkit-transform: translateY(0);
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

        .sticky-footer .products {
            border: none;
        }

        .sticky-footer .product-name a {
            padding: 0;
        }

        .sticky-footer .cart-total {
            padding-top: 1rem;
        }

.sticky-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #666;
    margin: 1.4rem 0 1.3rem;
    padding-left: 0.5rem;
}

        .sticky-link i, .cart-dropdown .sticky-link i {
            font-size: 1.5rem;
            color: #666;            
        }

        .sticky-link p {
            margin-top: 0.9rem;
            margin-bottom: 0;
            font-size: 0.65rem;
            line-height: 1;
            letter-spacing: 0.025em;
            text-transform: uppercase;
        }

        .sticky-link.search-toggle p {
            margin-top: 1rem;
        }

        .sticky-link:hover {
            color: #336699;
        }

            .sticky-link:hover i {
                color: inherit;
            }


.sticky-content.fix-top {
    top: 0;
}

.sticky-content.fix-bottom {
    bottom: 0;
}

.sticky-content.fixed {
    position: fixed;
    right: 0;
    left: 0;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    z-index: 1051;
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

    .sticky-content.fixed.fix-top {
        -webkit-animation: fixedTopContent 0.4s;
        animation: fixedTopContent 0.4s;
    }

    .sticky-content.fixed.fix-bottom {
        -webkit-animation: fixedBottomContent 0.4s;
        animation: fixedBottomContent 0.4s;
    }

