.btn-lightbox {
    position: fixed;
    text-decoration: none !important;
    width: 220px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.75);
    font-size: 22px;
    margin-top: -80px;
    border-radius: 8px;
}

.btn-lightbox-green {
    color: white !important;
    background-color: #48bc3e;
    transform: translateX(-105%);
}

.btn-lightbox-green:hover {
    color: white;
    background-color: #369c2c;
}

.btn-lightbox-blue {
    color: white !important;
    background-color: #4c8bf7;
    transform: translateX(5%);
}

.btn-lightbox-blue:hover {
    color: white;
    background-color: #3571d9;
}

@media (max-width: 576px) {
    .btn-lightbox {
        font-size: 18px;
        width: auto;
    }
}

.cart-tabs {
    font-size: 22px;
}

.cart-tabs .nav-item .nav-link {
    padding: 16px 32px;
    font-weight: bold;
    font-size: 24px;
    color: #0078ab;;
}

.cart-tabs .nav-item.show .nav-link, .cart-tabs .nav-link.active {
    background: linear-gradient(to right,#09538d,#0086b7,#004c89,#0086b7);
    color: white;
}

.add-to-basket {
    width: 100%;
    display: flex;
    position: relative;
    color: white;
    justify-content: stretch;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    padding: 4px 10px;
    border-radius: 32px;
    border: 1px solid transparent;
    transition: all 0.25s;
}

.add-to-basket::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #069bc8, #065981);
    border-radius: 32px;
    z-index: -1;
}

.add-to-basket:hover {
    background: white;
    text-decoration: none;
    border: 1px solid #10777c;
}

.add-to-basket:hover svg {
    
}

.add-to-basket svg {
    width: 32px;
    height: 48px;
    transition: all 0.25s;
}

.add-cart-container {
    width: 100%;
    border: 1px solid #10777c;
}

.add-cart-header {
    background: linear-gradient(to bottom, #069bc8, #065981);
}

.add-cart-header a {
    display: flex;
    color: white;
    justify-content: stretch;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    padding: 4px 10px;
    transition: all 0.25s;
}

.add-cart-header a:hover {
    text-shadow: 0 0 8px #fff;
}

.add-cart-header a:hover svg {
    filter: drop-shadow(0 0 4px white);
}

.add-cart-header svg {
    width: 32px;
    height: 48px;
    transition: all 0.25s;
}

.add-cart-header-text {
    width: 100%;;
}

.add-cart-header-text span {
    display: block;
    font-weight: normal;
    text-transform: capitalize;
    font-size: 12px;
}

.add-cart-content {
    display: flex;
    justify-content: center;
    padding: 8px 10px;
}

.product-end-final .product-end-quantity button {
    width: 2.5rem;
    height: 2.5rem;
}

.product-end-final .product-end-quantity input {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 38px;
    padding: 0;
    color: #016e9d;
}