
    * {
        font-family: 'Chakra Petch', sans-serif;
        box-sizing: border-box;
    }

    p {
        margin: 0;
    }

    body {
        background: #000437;
        background-position: center top;
        background-attachment: fixed;
        background-repeat: no-repeat;
        top: -12px;
    }

    a:hover {
        text-decoration: none;
        color: white;
    }

    .container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    img {
        vertical-align: middle;
        border-style: none;
    }

    .slot {
        display: block;
    }

    .slot .slot-sidebar {
        padding-right: 10px;
        padding-left: 0;
        margin-top: -15px;
        background-color: black;
        float: none !important;
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
        padding-right: 0 !important;
    }

    .slot-sidebar-nav {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: nowrap;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }

    .slot-sidebar-nav>li {
        border-bottom: 1px solid #0092b1;
        width: 100%;
        position: relative;
        display: block;
        border-bottom: none;
        padding: 6px;
        background: linear-gradient(to bottom, #00ffff 0%, #00ffff 46%, #00ffff 100%);
    }

    .slot-sidebar-nav>li>a {
        color: #fff;
        font-size: 13px;
        padding: 7px 10px;
        display: block;
        background-color: black;
    }

    .active {
        background-color: transparent;
    }

    .slot .content {
        float: none;
        width: 100%;
        padding: 0;
        flex: 0 0 100%;
        max-width: 100%;
        background-color: #000000a8;
        border: 5px solid #00ffff
    }

    .wrapper {
        width: 100%;
        padding: 0;
        overflow: hidden;
        position: relative;
        z-index: 0;
    }

    .card {
        float: left;
        width: 20%;
        background: transparent;
        border: none;
        text-align: center;
        position: relative;
    }

    .card-content {
        margin: 7px;
        color: #fff;
        font-size: 12px;
        border: none;
        overflow: hidden;
        position: relative;
        background: linear-gradient(0deg, #250b9e 5%, #250b9e 50%);
        border-radius: 5px;
    }

    .percent {
        height: 20px;
        display: flex;
        overflow: hidden;
        line-height: 1;
        font-size: 0.75rem;
        background-color: #e2e2e2;
        border-radius: 0.25rem;
        position: relative;
        z-index: 1;
        margin: 10px;
    }

    .percent p {
        z-index: 15;
        position: absolute;
        text-align: center;
        /*margin-left: 2em;*/
        width: 100%;
        font-size: 12px;
        font-weight: bold;
        transform: translateY(5px);
        color: black;
    }

    .percent-bar {
        /* background-color: #ffc107; */
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-size: 1rem 1rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        overflow: hidden;
        color: #fff;
        text-align: center;
        white-space: nowrap;
        /* background-color: #250b9e; */
        transition: width 0.6s ease;
        -webkit-animation: progress-bar-stripes 1s linear infinite;
        animation: progress-bar-stripes 1s linear infinite;
        /* animation: ; */
        z-index: 10;
    }

    @-webkit-keyframes progress-bar-stripes {
        0% {
            background-position-x: 1rem
        }
    }

    @keyframes progress-bar-stripes {
        0% {
            background-position-x: 1rem
        }
    }

    .yellow {
        background-color: #ffc107;
    }

    .green {
        background-color: #28a745;
    }

    .red {
        background-color: #dc3545;
    }

    .hover-btn {
        position: absolute;
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.65);
        transition: all 0.45s ease-in-out;
        z-index: 10;
        width: 100%;
        height: 180px;
    }

    .play-btn {
        font-size: 15px;
        text-decoration: none;
        color: white;
        text-align: center;
        align-items: center;
        width: 100px;
        margin: 25% auto;
        padding: 8px;
        margin-top: 65px;
        background-image: linear-gradient(0deg, #250b9e 5%, #250b9e 50%);
        border-radius: 5px;
    }

    .img-zoom {
        transition: all 0.45s ease-in-out;
        height: 180px;
        border-radius: 5px;
        margin-bottom: 5px;
    }

    .hover-btn:hover {
        opacity: 100%;
    }

    .hover-btn:hover~.img-zoom {
        transform: scale(1.2);
        position: relative;
    }

    @media (min-width: 576px) {
        .container {
            max-width: 540px;
        }
    }

    @media (min-width: 768px) {
        .container {
            max-width: 720px;
        }
    }

    @media (min-width: 992px) {
        .container {
            max-width: 960px;
        }
    }

    @media (min-width: 1200px) {
        .container {
            max-width: 1024px;
        }
    }

    @media (max-width: 992px) {
        .slot-sidebar-nav {
            flex-wrap: nowrap;
        }

        .slot-sidebar {
            float: none !important;
            width: 100% !important;
            flex: none !important;
            max-width: 100% !important;
            padding-right: 0 !important;
        }

        .content {
            float: none !important;
            width: 100% !important;
            flex: none !important;
            max-width: 100% !important;
        }

        .card {
            width: 50% !important;
        }

        .hover-btn:hover {
            opacity: 0;
        }

        .hover-btn:hover~.img-zoom {
            transform: scale(1);
            position: relative;
        }

        .slot-sidebar-nav>li>a {
            height: 70px;
        }

        .slot-sidebar-nav li {
            border-left: 0.2px solid #656565;
            border-right: 0.2px solid #656565;
            border-bottom: none;
        }
    }

    @media only screen and (max-width: 768px) {
        .logo {
            margin-top: 5px !important;
        }

        hr {
            width: 40px !important;
            height: 3px !important;
            margin-top: 10px !important;
            margin-left: 5px !important;
            border-radius: 10px !important;
        }

        .img-zoom {
            height: 190px;
        }

        .cari {
            padding: 0 7px;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        .promotions::before {
            content: "";
            background-size: 60px !important;
            width: 60px !important;
            height: 19px !important;
            left: 0px !important;
            top: 5px !important;
        }

        .prov-promotions::before {
            content: "";
            background-size: 40px !important;
            width: 40px !important;
            height: 12px !important;
            margin-left: -7% !important;
            top: 10px !important;
        }

        .provider-colum:hover {
            border-bottom: 3px solid #250b9e !important;
            transition: all 0.45s ease-in-out;
        }

        .provider-colum.active {
            border-bottom: 3px solid #250b9e !important;
        }

        .provider-canvas p {
            font-size: .4em !important;
        }

        .m-hide {
            font-size: 1em !important;
        }
    }

    /* popup style*/
    .popup-container {
        display: none;
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: 9999;
        background: #080808b0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .popup-body {
        width: 347px;
        height: 600px;
        margin: 1% auto;
        background: #080056;
        border-radius: 0px;
        color: white;
    }

    @media (max-width: 512px) {
        .popup-body {
            width: 310px;
            margin: 10% auto;
        }
    }

    .popup-img {
        width: 450px;
        height: 555px;
        margin: 8% auto;
    }

    .popup-img-close {
        cursor: pointer;
        width: 36px;
        height: 36px;
        background: white;
        color: black;
        float: right;
        padding: 5px;
        border-radius: 100px;
        position: absolute;
        margin-left: -7px;
        margin-top: -20px
    }

    @media (min-width: 993px) {
        .popup-img-close {
            margin-left: 42px;
            margin-top: -12px;
        }
    }

    .popup-header {
        height: 48px;
        width: 100%;
        background: #2d00ff;
        float: left;
        color: white;
    }

    .popup-header h6 {
        margin: 13px;
    }

    .popup-content {
        width: 100%;
        height: auto;
        padding: 15px 39px;
        float: left;
        font-size: 12px;
    }

    .col2 {
        width: 50%;
    }

    .left {
        text-align: left;
    }

    .right {
        text-align: right;
    }

    .mrtop10 {
        margin-top: 10px;
    }

    .hr {
        width: 100%;
        height: 2px;
        background: #5e5e5e;
        float: left;
    }

    .popup-label {
        width: 100%;
        float: left;
        background: #ffffff;
        padding: 10px 15px;
        font-size: 12px;
        color: #250b9e;
    }

    .popup-close {
        cursor: pointer;
        width: 36px;
        height: 36px;
        background: red;
        color: white;
        float: right;
        padding: 5px;
        border-radius: 100px;
        position: absolute;
        margin-top: -10px;
        margin-left: -9px;
    }

    .bg-blue-button {
        background: #06002a;
    }

    .bg-black-button {
        background: #2d00ff;
    }

    .popip-button:hover {
        filter: brightness(1.3);
    }

    .popip-button {
        cursor: pointer;
        width: 50%;
        float: left;
        height: 40px;
    }

    @media (max-width: 425px) {
        .popup-img {
            max-width: 93%;
            margin: 25% auto;
        }
    }

    .tophead {
        text-align: -webkit-center;
    }

    .tophead:after {
        content: "";
        display: table;
        clear: both;
    }

    .logo {
        display: block;
        max-height: 60px;
    }

    .news {
        color: #0049cc;
        background-color: #fff;
        flex-wrap: nowrap !important;
    }

    .news img {
        width: 50px;
    }

    .navbar .container {
        background: #030051;
    }

    .slot-provider {
        width: 100%;
        display: flex;
        margin: 5px auto 20px auto;
        text-align: center;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .slot-provider>*:first-child {
        margin-left: 0px;
    }

    .slot-provider>*:last-child {
        margin-right: 0px;
    }

    .provider-layout {
        display: inline-block;
        padding: 5px;
        text-align: center;
        background: #282828;
        margin: 0 5px;
        border-radius: 5px;
    }

    .provider-layout:hover {
        background: #30466d;
    }

    .provider-layout img {
        display: block;
        width: 100%;
    }

    .provider-layout p {
        display: block;
        width: 100%;
        font-size: 1em;
        margin-bottom: 10px;
    }

    hr {
        position: absolute;
        width: 70px;
        height: 3px;
        margin-top: 13px;
        margin-left: 33px;
        background: #30466d;
        border: 1px solid #30466d;
        border-radius: 10px;
    }

    .promotions::before {
        content: "";
        background: url(../promo.png)no-repeat;
        background-size: 80px;
        width: 80px;
        height: 25px;
        position: absolute;
        left: 0;
        top: 10px;
    }

    .prov-promotions::before {
        content: "";
        background: url(../promo.png)no-repeat;
        background-size: 80px;
        width: 80px;
        height: 25px;
        position: absolute;
        margin-left: -7.5%;
        top: 20px;
    }

    .provider-colum {
        float: left;
        /*width: 15%;*/
        padding: 0 0 10px 0;
        /*margin: 1%;*/
        text-align: center;
        border-bottom: 4px solid #ffffff;
    }

    .provider-colum-bawah {
        float: center;
        /*width: 15%;*/
        padding: 0 0 10px 0;
        /*margin: 1%;*/
        text-align: center;
        border-bottom: 4px solid #ffffff;
    }

    .provider-colum:hover {
        border-bottom: 4px solid #0000ff;
        transition: all 0.45s ease-in-out;
    }

    .provider-colum.active {
        border-bottom: 4px solid #0000ff;
        background: transparent;
    }

    .provider-pilihan {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: 10px;
        padding: 6px 5px 0;
    }

    .provider-pilihan:after {
        content: "";
        display: table;
        clear: both;
    }

    .provider-canvas {
        background: #020040;
        margin-top: 0.5rem;
        border-radius: 5px;
        border-top: 2px solid #1d00ff;
        border-bottom: 2px solid #1d00ff;
        border-left: 2px solid #1d00ff;
        border-right: 2px solid #1d00ff;
    }

    .provider-canvas img {
        display: block;
        width: 100%;
    }

    .provider-canvas p {
        margin-bottom: 0;
        font-size: 1em;
        font-weight: 500;
    }

    footer {
        text-align: center;
        color: #fff;
        width: 100%;
        margin-bottom: 4.75rem;
    }

    .cari {
        margin-bottom: 5px;
    }

    .m-hide {
        font-size: 1em;
    }

    .footertext {
        background: #000;
        margin-top: 0.5rem;
        padding: 2em;
        width: 100%;
        border-radius: 5px;
        border-top: 5px solid #250b9e;
        color: white;
        font-family: 'Chakra Petch', sans-serif;
    }

    .footertext h1 {
        font-size: 2em;
        margin-top: 0;
        margin-bottom: .5em;
        color: #f3ce04;
    }

    .footertext h2 {
        font-size: 1.7em;
        margin: .5em 0;
        color: #f3ce04;
    }

    .footertext h3 {
        font-size: 1.5em;
        margin: .5em 0;
        color: #250b9e;
    }

    .footertext h4 {
        font-size: 1.4em;
        margin: .5em 0;
        color: #250b9e;
    }

    .footertext p {
        font-size: 1em;
        text-align: justify;
    }

    .footertext ul {
        margin-inline-start: 1.5em;
        margin-block-end: 1em;
    }

    .footertext ol {
        margin-inline-start: 1.5em;
        margin-block-end: 1em;
    }

    .carousel {
        position: relative;
    }

    .slide {
        width: 100%;
        border-radius: 4px;
    }

    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .w-100 {
        width: 100% !important;
    }

    .d-block {
        display: block !important;
        border: 2px solid #250b9e;
    }

    .carousel-item {
        position: relative;
        display: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        transition: -webkit-transform .6s ease;
        transition: transform .6s ease;
        -webkit-transform: .6s ease;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

    .carousel-item-next,
    .carousel-item-prev,
    .carousel-item.active {
        display: block;
    }

    .carousel-item-next,
    .carousel-item-prev {
        position: absolute;
        top: 0;
    }

    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    @supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {

        .carousel-item-next.carousel-item-left,
        .carousel-item-prev.carousel-item-right {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0)
        }
    }

    .active.carousel-item-right,
    .carousel-item-next {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    @supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {

        .active.carousel-item-right,
        .carousel-item-next {
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
    }

    .active.carousel-item-left,
    .carousel-item-prev {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    @supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {

        .active.carousel-item-left,
        .carousel-item-prev {
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }
    }

    .carousel-control-next,
    .carousel-control-prev {
        position: absolute;
        top: 0;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 15%;
        color: #fff;
        text-align: center;
        opacity: .5;
    }

    .carousel-control-next:focus,
    .carousel-control-next:hover,
    .carousel-control-prev:focus,
    .carousel-control-prev:hover {
        color: #fff;
        text-decoration: none;
        outline: 0;
        opacity: .9;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: transparent no-repeat center center;
        background-size: 100% 100%;
    }

    .carousel-control-prev-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
    }

    .carousel-control-next-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
    }

    .carousel-indicators {
        position: absolute;
        right: 0;
        bottom: 10px;
        left: 0;
        z-index: 15;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-left: 0;
        margin-right: 15%;
        margin-left: 15%;
        list-style: none;
    }

    .carousel-indicators li {
        position: relative;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        background-color: rgba(255, 255, 255, .5);
    }

    .carousel-indicators li::before {
        position: absolute;
        top: -10px;
        left: 0;
        display: inline-block;
        width: 100%;
        height: 10px;
        content: ""
    }

    .carousel-indicators li::after {
        position: absolute;
        bottom: -10px;
        left: 0;
        display: inline-block;
        width: 100%;
        height: 10px;
        content: ""
    }

    .carousel-indicators .active {
        background-color: #fff;
    }

    .carousel-caption {
        position: absolute;
        right: 15%;
        bottom: 20px;
        left: 15%;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: center;
    }

    input[type='text'],
    input[type='number'],
    textarea {
        font-size: 16px;
    }

    .label-logo {
        background: linear-gradient(0deg, #0001ff 5%, #11007f 50%);
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        padding: 2px 0;
    }

    .long {
        display: block;
    }

    .short {
        display: none;
    }

    @media only screen and (max-width:425px) {
        .long {
            display: none;
        }

        .short {
            display: block;
        }

        .head-title {
            font-size: .8rem !important;
        }
    }

    .head-title {
        color: #250b9e;
        text-align: center;
        margin-top: 8px;
        font-size: 1.5rem;
        font-weight: 900;
        border-radius: 5px;
        background-color: #fff;
        border-top: 2px solid #250b9e;
        border-left: 2px solid #250b9e;
        border-right: 2px solid #250b9e;
        border-bottom: 2px solid #250b9e;
    }

    .fixed-footer {
        background: linear-gradient(0deg, #00007a 30%, #2100ff 100%);
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 999;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        box-shadow: 0px 0px 10px 5px #000000db;
    }

    .footer-icon {
        color: #ffffff;
    }

    .fixed-footer .footer-item {
        text-align: center;
        padding: 12px 5px 10px;
        color: #fff;
        text-decoration: none;
    }

    .fixed-footer .footer-item .footer-icon i {
        font-size: 20px;
    }

    .fixed-footer .footer-item .footer-title {
        font-size: 12px;
        font-weight: 600;
    }

    html {
        font-family: 'Chakra Petch', sans-serif;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

    a,
    body,
    center,
    div,
    em,
    kolongramen,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    header,
    html,
    iframe,
    img,
    li,
    menu,
    nav,
    ol,
    p,
    span,
    table,
    tbody,
    td,
    tfoot,
    th,
    thead,
    tr,
    ul {
        font-family: 'Chakra Petch', sans-serif;
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        vertical-align: baseline;
    }

    a,
    a:active,
    a:focus {
        outline: 0;
        text-decoration: none;
    }

    a {
        color: #fff
    }

    * {
        padding: 0;
        margin: 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-top: 0;
        margin-bottom: .5rem;
    }

    p {
        margin: 0 0 10px;
    }

    p {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .clear {
        clear: both;
    }

    .align-middle {
        vertical-align: middle;
    }

    .container {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .marquee-text {
        height: auto;
        display: block;
        line-height: 30px;
        overflow: hidden;
        position: relative;
        padding: 4px 0 5px 0;
        width: 100%;
    }

    .marquee-text p {
        color: #250b9e;
        margin-bottom: 0;
        margin-top: 0;
    }

    .marquee-text div {
        height: auto;
        line-height: 22px;
        font-size: 13px;
        white-space: nowrap;
        color: #fff;
        z-index: 1;
        font-weight: 600;
        font-family: 'Chakra Petch', sans-serif;
        animation: marquee 20s linear infinite;
        margin-top: 3px;
    }

    .marquee-text:hover div {
        animation-play-state: paused;
    }

    @keyframes marquee {
        0% {
            transform: translateX(100%)
        }

        100% {
            transform: translateX(-100%)
        }
    }

    @media (min-width:768px) {
        .container {
            max-width: 720px;
        }
    }

    @media (min-width:992px) {
        .container {
            max-width: 960px;
        }
    }

    @media (min-width:1200px) {
        .container {
            width: 1000px;
        }
    }

    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .p-0 {
        padding: 0
    }

    .col-md-12,
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-xs-6 {
        position: relative;
        width: 100%;
        padding-right: 0px;
        padding-left: 0px;
    }

    .col-xs-6 {
        float: left;
        width: 50%;
    }

    @media (min-width:768px) {
        .col-md-4 {
            -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }

        .col-md-6 {
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            max-width: 50%;
        }

        .col-md-8 {
            -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
            max-width: 66.666667%;
        }

        .col-md-12 {
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            width: 100%;
        }
    }

    @media (max-width:768px) {
        .navbar {
            position: fixed;
        }
    }

    .pt-1,
    .py-1 {
        padding-top: .25rem;
    }

    .pb-1,
    .py-1 {
        padding-bottom: .25rem;
    }

    .pt-2,
    .py-2 {
        padding-top: .5rem;
    }

    .pb-2,
    .py-2 {
        padding-bottom: .5rem;
    }

    .mt-2,
    .my-2 {
        margin-top: .5rem;
    }

    .mb-2,
    .my-2 {
        margin-bottom: .5rem;
    }

    .mb-3,
    .my-3 {
        margin-bottom: .75rem;
    }

    .mt-4 {
        margin-top: 1.1rem;
    }

    .mt-5,
    .my-5 {
        margin-top: 2rem;
    }

    .mb-5,
    .my-5 {
        margin-bottom: 2rem;
    }

    .pb-5 {
        padding-bottom: 0.25rem;
    }

    .mx-5 {
        margin-left: .75rem;
        margin-right: .75rem;
    }

    .pt-3 {
        padding-top: 1rem;
    }

    .pt-5 {
        padding-top: 2rem;
    }

    .navbar {
        background-color: #030051;
        right: 0;
        left: 0;
        z-index: 1030;
        width: 100%;
        float: left;
        position: sticky;
        top: 0;
        box-shadow: #000 0 2px 5px 0;
    }

    ul {
        color: #fff;
        text-align: left;
    }

    a {
        background-color: transparent;
    }

    a:active,
    a:hover {
        outline: 0;
    }

    h1 {
        margin: .67em 0;
        font-size: 2em;
    }

    img {
        border: 0;
    }

    @media print {

        *,
        :after,
        :before {
            color: #000;
            text-shadow: none;
            background: 0 0;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        a,
        a:visited {
            text-decoration: underline;
        }

        a[href]:after {
            content: " (" attr(href) ")"
        }

        img,
        tr {
            page-break-inside: avoid;
        }

        img {
            max-width: 100%;
        }

        h2,
        h3,
        p {
            orphans: 3;
            widows: 3;
        }

        h2,
        h3 {
            page-break-after: avoid;
        }
    }

    .text-center {
        text-align: center;
    }

    .search-icon {
        position: absolute;
    }

    .search {
        border-top: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
        border-left: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
        border-radius: 5px;
        height: 35px;
        width: 100%;
        padding: 0 35px;
        outline: 0;
        background-color: #150f71;
        color: #fff;
    }

    .search::placeholder {
        color: #fff;
    }

    input:focus::placeholder {
        color: transparent;
    }

.slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.provider-pilihan.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.provider-colum {
    flex-shrink: 0;
    width: 120px; /* Ukuran kotak keseluruhan diperkecil */
    height: 150px; /* Tinggi kotak agar proporsional */
    margin-right: 15px;
    text-align: center;
    padding: 0; /* Penting: Hapus semua padding dari provider-colum */
    border: 1px solid #42181800;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #f9f9f900;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column; /* Konten disusun secara vertikal */
    justify-content: space-between; /* Mendorong .provider-canvas ke atas dan .label-logo ke bawah */
    align-items: center; /* Memusatkan secara horizontal */
    overflow: hidden; /* Penting untuk memastikan border-radius di bagian bawah tidak terpotong */
}

.provider-colum:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.provider-canvas {
    width: 100px; /* Lebar kanvas internal tempat gambar berada */
    height: 100px; /* Tinggi kanvas internal */
    background-color: #0d1a3c; /* Warna latar belakang biru */
    border-radius: 8px; /* Sudut membulat pada kanvas */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px; /* Memberi jarak dari tepi atas provider-colum */
    /* margin-bottom akan diatur oleh justify-content: space-between */
    flex-shrink: 0; /* Pastikan tidak menyusut */
}

.provider-canvas img {
    max-width: 80%; /* Gambar akan mengisi hingga 80% dari lebar kanvas */
    max-height: 80%; /* Gambar akan mengisi hingga 80% dari tinggi kanvas */
    height: auto;
    display: block;
    object-fit: contain; /* Memastikan gambar cocok di dalam kanvas tanpa terpotong dan menjaga rasio aspek */
    margin: 0; /* Hapus margin default */
}

/* GAYA FINAL UNTUK LABEL DI BAGIAN BAWAH KOTAK */
.label-logo {
    font-weight: bold;
    color: #ffffff; /* Warna teks putih agar terlihat di latar belakang gelap */
    width: 100%; /* Membuat label mengisi lebar penuh provider-colum */
    text-align: center; /* Memusatkan teks di dalam label */
    box-sizing: border-box; /* Pastikan padding juga masuk dalam perhitungan lebar */
    
    /* Gaya gradient dan border-radius dari permintaan Anda */
    background: linear-gradient(0deg, #0606a300 5%, #11007f00 50%);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0; /* Pastikan bagian atas tidak membulat */
    border-top-right-radius: 0; /* Pastikan bagian atas tidak membulat */
    padding: 5px 0; /* Padding vertikal 5px, horizontal 0 */

    font-size: 0.7em; /* Ukuran font lebih kecil untuk label */
    text-transform: uppercase;
    /* Margin diatur oleh flexbox pada provider-colum */
}

/* Pengaturan Tampilan Label Panjang vs Pendek (Responsif) */
.label-logo.long {
    display: block; /* Default untuk desktop */
}
.label-logo.short {
    display: none; /* Default tersembunyi untuk desktop */
}


/* Tombol Navigasi */
.slider-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 1.8em;
    font-weight: bold;
    z-index: 10;
    border-radius: 50%;
    outline: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slider-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.slider-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* Media Queries untuk Responsif */
@media (max-width: 768px) {
    .slider-wrapper {
        width: 95%;
        padding: 10px;
    }
    .provider-colum {
        width: 100px;
        height: 130px;
        margin-right: 10px;
    }
    .provider-canvas {
        width: 80px;
        height: 80px;
        margin-top: 8px;
    }
    .slider-button {
        padding: 8px 12px;
        font-size: 1.5em;
    }
    .label-logo {
        font-size: 0.6em;
        padding: 4px 0;
    }
    /* Tampilkan label pendek, sembunyikan yang panjang di layar kecil */
    .label-logo.long {
        display: none;
    }
    .label-logo.short {
        display: block;
    }
}

@media (max-width: 480px) {
    .provider-colum {
        width: 85px;
        height: 110px;
        margin-right: 8px;
    }
    .provider-canvas {
        width: 70px;
        height: 70px;
        margin-top: 6px;
    }
    .label-logo {
        font-size: 0.5em;
        padding: 3px 0;
    }
}