::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background-color: #1E218A;
}

::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 12px;
    background-color: #1E218A;
}

::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    border: 1.5px solid #fff;
    background-color: #831284;
}

body {
    overflow-x: hidden !important;
    padding: 0;
    margin: 0;
}

.animates {
    animation: bounce 0.6s infinite alternate;
    -webkit-animation: bounce 0.6s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.orderpaket:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.tombolwakanan {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
}

@media (min-width: 260px) and (max-width: 690px) {
    .tombolwakanan {
        position: fixed;
        bottom: 10px;
        right: 10px;
        width: 60px;
    }
}