body {
    background-color: black;
    color: white;
}

.cursor {
    cursor: pointer;
}

a {
    color: black;
    text-decoration: none;
}

.gradient-buttons .btn {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2) 49%, rgba(0, 0, 0, 0.15) 51%, rgba(0, 0, 0, 0.05));
    background-repeat: repeat-x;
}

.gradient-buttons #textBerjalan {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2) 49%, rgba(0, 0, 0, 0.15) 51%, rgba(0, 0, 0, 0.05));
    background-repeat: repeat-x;
}

@media only screen and (min-width: 1400px) {
    #navbarDesktop {
        display: block;
    }

    #navbarMobile {
        display: none;
    }

    #navbarMobileBawah {
        display: none;
    }

    #buttonDaftar {
        display: none;
    }
}

@media only screen and (max-width: 1399px) {
    #navbarDesktop {
        display: none;
    }

    #navbarMobile {
        display: block;
    }
}

.app {
    text-align: center;
    padding: 50px;
}

.loading-content {
    text-align: center;
    margin-top: 50px;
}

.loading-content span {
    font-size: 14px;
    color: gray;
    display: block;
}

.loading-ico {
    width: 64px;
    height: 64px;
    border: 3px solid #efefef;
    border-radius: 50%;
    border-top-color: red;
    display: inline-block;
    animation: spin 650ms ease infinite;
}

.loading-ico.no-border {
    border: 3px solid transparent;
    border-top-color: red;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.load-bar {
    text-align: center;
    width: 300px;
    margin: auto;
}

.load-bar span {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.h-load-bar {
    margin-top: 8px;
    margin-bottom: 5px;
    width: 100%;
    height: 7px;
    background: #eee;
    overflow: hidden;
    border-radius: 10px;
}

.h-load-bar .load-step {
    width: 30px;
    height: 100%;
    border-radius: 10px;
    background: red;
    position: relative;
    animation: step-load 2s linear infinite;
}

@keyframes step-load {
    0% {
        left: -30px;
    }

    100% {
        left: 100%;
    }
}

#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
}

#loading-message {
    font-size: 20px;
}

.cardprovider {
    width: 150px;
    height: 200px;
    border-radius: 10px;
    margin: 4px auto;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
    cursor: pointer;
    transition: 0.23s ease;
    /* background-color: rgba(0, 0, 0, 0.5); */
}

.cardprovider:hover {
    box-shadow: 0 0 37.2px 2.8px rgba(0, 0, 0, 0.14);
    /* background-color: rgba(0, 0, 0, 0.5); */
}

.cardprovider:hover .layer {
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cardprovider:hover .layer h3 {
    top: auto;
    bottom: 25%;
    font-size: 16px;
}

.cardprovider:hover .layer .fa-solid {
    top: 50%;
    right: 50%;
    margin: -55px -25px 0 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
}

.cardprovider:hover .layer .video-lenght {
    top: 50%;
    right: 50%;
    margin: -55px -25px 0 0;
    opacity: 0;
}

.layer {
    position: absolute;
    top: 75%;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.3); */
    text-align: center;
    transition: 0.23s ease;
    color: white;
}

.layer .fa-solid {
    position: absolute;
    top: -50px;
    right: 10px;
    color: #FFF;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: linear-gradient(to left, #ff2e41 0, #fa2e76 79%, #f42dab 100%);
    border-radius: 100%;
    transition: 0.23s ease;
}

.layer .video-lenght {
    padding: 5px 7px;
    background: #abbaab;
    background: -webkit-linear-gradient(to right, #ffffff, #abbaab);
    background: linear-gradient(to right, #ffffff, #abbaab);
    color: red;
    border-radius: 15px;
    font-family: "Source Sans Pro", sans-serif;
    top: -44px;
    right: 55px;
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    transition: 0.23s ease;
}

.layer h3 {
    font-weight: 90;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 5px;
    text-align: center;
    font-size: 16px;
    width: 100%;
    transition: 0.23s ease;
    background-color: rgba(0, 0, 0, 0.1);
}

.input-with-icon input[type="text"] {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px;
    margin: 5px 0;
}

::placeholder {
    color: white;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input[type="text"] {
    padding-left: 30px;
    /* Sesuaikan jarak ikon dengan teks */
}

.input-with-icon i {
    position: absolute;
    left: 6px;
    /* Sesuaikan posisi ikon */
    top: 50%;
    transform: translateY(-50%);
}

.ok_sms {
    width: 100%;
    border-collapse: collapse;
}

.ok_sms td {
    padding: 12px 15px;
    /* border: 1px solid #ddd; */
    font-size: 16px;
}

.ok_sms th {
    /* background-color: darkblue; */
    color: #ffffff;
}

.ok_sms tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

/* responsive OK SMS */

@media (max-width: 500px) {
    .ok_sms thead {
        display: none;
    }

    .ok_sms,
    .ok_sms tbody,
    .ok_sms tr,
    .ok_sms td {
        display: block;
        width: 100%;
    }

    .ok_sms tr {
        margin-bottom: 15px;
    }

    .ok_sms td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .ok_sms td::before {
        content: attr(data-label);
        position: absolute;
        left: 0px;
        width: 50%;
        padding-left: 15px;
        font-size: 15px;
        font-weight: bold;
        text-align: left;
    }
}