.tiptool {
    visibility: hidden;
    color: black;
    font-size: 0.7em;
    cursor: default;
}

#item-list li::before {
    content: '\2713   ';
    color: green;
    /* Mengubah warna centang */
    font-size: 1rem;
}

.bgblue {
    background-color: #000bff;
}

#index-product div:hover {
    background-color: #000bff;
    animation: ease 1.5s;
    cursor: pointer;
}

#content-product div {
    animation-name: fade;
    animation-duration: 0.7s;
}

@keyframes fade {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

#arrows {
    animation: toright ease-in infinite 2s;
}

@keyframes toright {
    from {
        margin-right: 100%;
    }
    to {
        margin-right: 0;
    }
}

#customer {
    position: relative;
    overflow: hidden;
}

#container-project {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-text-stroke: 0.7px rgb(98, 96, 96);
}

#infinite-scroll {
    box-sizing: border-box;
    overflow: hidden;
}

#infinite-scroll .is {
    width: 17rem;
}

.is {
    background-color: transparent;
    position: absolute;
    left: 100%;
    top: 15%;
    animation-name: scrollleft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.is1 {
    animation-delay: calc(30s / 5 * (5 - 1) * -1);
}

.is2 {
    animation-delay: calc(30s / 5 * (5 - 2) * -1);
}

.is3 {
    animation-delay: calc(30s / 5 * (5 - 3) * -1);
}

.is4 {
    animation-delay: calc(30s / 5 * (5 - 4) * -1);
}

.is5 {
    animation-delay: calc(30s / 5 * (5 - 5) * -1);
}

@keyframes scrollleft {
    from {
        left: 100%;
    }
    to {
        left: -14rem;
    }
}

@media (max-width:750px) {
    #detail-container>#subcon-detailcontainer {
        font-size: 0.7rem;
        ;
    }
    #nav-header>div {
        display: none !important;
    }
    #nav-header>button {
        display: flex !important;
    }
    #infinite-scroll .is {
        width: 10rem;
        height: 20rem;
        font-size: x-small;
    }
}