.preview-delete-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: black;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.quatity-stock ul li {
    margin-bottom: 5px;
}

.quatity-stock ul li:not(:last-child) {
    margin-right: 25px;
}

.quatity-stock .list {
    height: 150px;
    overflow-y: scroll;
}

.quatity-stock ul {
    list-style: none;
}

.user-cart-list {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.user-cart-list li {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -1px;
    background-color: black;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.fs-12 {
    font-size: 12px;
}

.size-form-check-label {
    border: 1px solid #ddd;
    margin-left: 0;
    min-width: 3rem;
    padding: 0.5rem;
    text-align: center;
    transition: all 0.1s ease-in-out;
}

.size-form-check-label.checked {
    border-bottom: 2px solid #1f1f1f;
    opacity: 1;
    color: #1f1f1f;
}

a h2 {
    color: #666666;
}

.package-parallax {
    background: url('../../front/img/model_18.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    padding: 8em 0;
}

.package-parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: -1;
}

.package-image {
    height: 400px;
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

#logoSlider {
    height: 250px;
}

body .slider {
    max-height: 200px !important;
    margin: auto;
    /* overflow: hidden; */
    position: relative;
    max-width: 100%
}

body .slider::before,
body .slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2
}

body .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg)
}

body .slider::before {
    left: 0;
    top: 0
}

body .slider .slide-track {
    animation: scroll 35s linear infinite;
    display: flex;
    width: calc(300px * 19) !important
}

body .slider .slide {
    display: flex;
    align-items: center;
    height: 250px;
    width: 400px
}

body .slider .slide img {
    width: 150px;
}

@media screen and (max-width: 767px) {
    .package-image {
        height: 200px;
    }

}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-350px * 12))
    }
}