@media (max-width: 768px) {
    body {
        color: rgb(255, 255, 255);
    }

    .container-pop55 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: 3px solid white;
        border-radius: 10px;
        text-align: center;
        justify-content: center;
        padding: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        /* animation: color-change 2s infinite linear; */
    }

    .container-rtp {
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .card {
        display: inline-block;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
        width: 180px;
        height: auto;
        text-align: center;
        margin: 0px;
        padding: 2px;
    }

    .card img {
        text-align: center;
        align-items: center;
        width: 150px;
        height: 140px;
        border-radius: 10px;
    }

    .loadingbar {
        display: flex;
        text-align: center;
        align-items: center;
        max-width: 180px;
        margin-left: 20px;
        margin-right: 20px;
    }

    #percent-txt- {
        color: rgb(0, 0, 0);
        font-weight: bold;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translateY(-50%);
        font-weight: bold;
        font-size: 20px;
        font-family: monospace;
    }

    .container-bar {
        position: relative;
        text-align: center;
        display: inline-flex;
        align-items: center;
        width: 100%;
        height: 30px;
        background-color: rgb(235, 235, 235);
        border-radius: 3px;
        z-index: 1;
    }

    #progress-bar- {
        /* background: repeating-linear-gradient(45deg, transparent, transparent 5px, #e0e0e0 10px); */
    
        z-index: -2;
        background-color: red;
        content: '';
        height: 100%;
        transition: width 2s ease-in-out;
        border-radius: 2px;
        animation: loading 2s infinite linear;
        text-shadow: 0px 0px 5px black;
    }

    #progress-bar-::after {
        content: "";
        display: block;
        height: 100%;
        background-color: #4caf50;
        position: absolute;
        overflow: hidden;
        animation: loading 2s infinite linear;
    }

    @keyframes loading {
        0% {
            left: -100%;
        }

        100% {
            left: 100%;
        }
    }

    @keyframes glitch {
        0% {
            border-color: #00f5fd;
            transform: translate(0, 0);
        }

        20% {
            border-color: #b800c9;
            transform: translate(-1px, 1px);
        }

        40% {
            border-color: #ff0000;
            transform: translate(1px, -1px);
        }

        60% {
            border-color: #ff0077;
            transform: translate(-1px, 1px);
        }

        80% {
            border-color: #ffff00;
            transform: translate(1px, -1px);
        }

        100% {
            border-color: #00f5fd;
            transform: translate(0, 0);
        }
    }

    @keyframes color-change {
        0% {
            border-color: red;
        }

        25% {
            border-color: blue;
        }

        50% {
            border-color: green;
        }

        75% {
            border-color: yellow;
        }

        100% {
            border-color: red;
        }
    }
    .btn button{
        border: none;
        padding: 5px;
        font-size: 15px;
        background-color: rgb(255, 174, 0);
        color: black;
        cursor: pointer;
        font-weight: bold;
    }
    .btn{
        display: flex;
        justify-content: right;
        align-items: center;
        margin-right: 15px;
        gap: 5px;
    }
    .btn img{
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    .btn button:hover{
        transform: scale(1.1);
    }
    .logo img{
        width: 60px;
        height: 50px;
        margin-left: 10px;
    }
    .spacer{
        margin-top: 70px;
        margin-bottom: 20px;
    }
    .provider{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    .provider1 {
        display: flex;
        justify-content: center;
        width: 100px;
        border: 1px solid rgb(255, 145, 0);
        background-color: rgba(255, 255, 255, 0.459);
        border-radius: 5px;
        cursor: pointer;
    }
    
    .provider1:hover {
        transform: scale(1.1);
    }
    .agente img {
        width: 50px;
        height: 50px;
    }
    .internal{
        display: flex;
        justify-content: center;
    }
    .internal1{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 5px;
        align-items: center;
        text-align: center;
        justify-content: center;
        cursor: pointer;
    }
    .internal1 p{
        background-color: orange;
        font-size: 10px;
        border: 1px solid hsl(39, 100%, 70%);
        border-radius: 5px;
        font-family: monospace;
    }
    .internal1 p:hover{
        transform: scale(1.1);
    }
    .kotak{
        position: fixed;
        bottom: 40%;
        right: 1%;
        z-index: 101;
        animation: rtp 2s infinite;
    }
    .kotak img{
        width: 60px;
    }
    @keyframes rtp{
        0%{
            transform: scale(1.1);
        }
        25%{
            transform: scale(1.0);
        }
        50%{
            transform: scale(1.1);
        }
        75%{
            transform: scale(1.0);
        }
        100%{
            transform: scale(1.1);
        }
    }


}