/*============================================================================================
   Start Bottom Navigation CSS
==============================================================================================*/
.sticky-footer.style-2 {
    position: fixed;
    bottom: 8px;
    left: 10px;
    border-radius: 30px;
    width: calc(100% - 20px);
    z-index: 1010101;
}
.sticky-footer.style-2 .sticky-footer-inner {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.4rem 4rem;
    background: #fff;
    mask-image: var(--mask-url);
    -webkit-mask-image: var(--mask-url);
    /* Control how the mask scales and aligns */
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    border-radius: 30px;
    background: var(--title-color);
}
.sticky-footer.style-2 .sticky-footer-inner > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.sticky-footer.style-2 .cart-dropdown .dropdown-box {
    top: auto;
    bottom: 100%;
    right: 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.style-2 .cart-dropdown:hover .dropdown-box {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.sticky-footer.style-2 .products {
    border: none;
}
.sticky-footer.style-2 .product-name a {
    padding: 0;
}
.sticky-footer.style-2 .cart-total {
    padding-top: 1rem;
}

.sticky-footer.style-2 .cart-dropdown {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.322);
}

.sticky-footer.style-2 .cart-icon-widget {
    width: 40px;
    height: 40px;
    font-size: 14px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 100%;
    position: relative;
    text-align: center;
    position: relative;
    top: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sticky-footer.style-2 .cart-icon-bg {
    margin-bottom: 0;
}

.sticky-footer.style-2 .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: var(--title-color);
}

body:not(.fonts-loaded) i[class^="fi-ss-"],
body:not(.fonts-loaded) span[class^="fi-ss-"] {
    visibility: hidden;
}


.sticky-footer.style-2 .cart-icon-bg{
 margin-bottom: 5px;
}
.sticky-footer.style-2 .sticky-link i,
.sticky-footer.style-2 .cart-dropdown .sticky-link i {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
}
.sticky-footer.style-2 .cart-dropdown .sticky-link i {
    margin-bottom: 0;
    font-size: 16px;
}
.sticky-footer.style-2 .sticky-link p {
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: var(--white-color);
    margin-top: 7px;
    font-size: 9px;
    font-weight: 500;
}
.sticky-footer.style-2 .cart-dropdown .cart-count {
    right: 0px;
    top: -5px;
    font-size: 9px;
}
.sticky-footer.style-2 .sticky-link:hover {
    color: var(--white-color);
}
.sticky-footer.style-2 .sticky-link:hover i {
    color: inherit;
}

.sticky-footer.style-2 .cart-count {
    background-color: var(--title-color);
    color: var(--white-color);
    font-weight: 500;
    line-height: 16px;
    width: 16px;
    height: 16px;
}

.sticky-footer.style-2 .mask-space-fill {
    width: 55px;
    height: 1px;
}

@media (min-width: 768px) {
    .sticky-footer.style-2 {
        display: none;
    }
}

@media (max-width: 479px) {
    .sticky-footer.style-2 .sticky-footer-inner {
        padding: 0.7rem 0;
    }
    .sticky-footer.style-2 .hs-toggle .input-wrapper {
        right: 1rem;
    }
    .sticky-footer.style-2 .cart-dropdown .dropdown-box {
        min-width: 30rem;
        right: -5.4rem;
    }
}

/*============================================================================================
   End Bottom Navigation CSS
==============================================================================================*/
