:root {
   --default-font: "Poppins", "Roboto", system-ui, -apple-system, "Segoe UI",
                  "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
                  sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
                  "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Inter", sans-serif
}

:root {
  
    --background-color: #ffffff;
    --bg-saldo: rgba(111, 66, 193, 0.8);
    --default-color: #3d4348;
    --heading-color: #3e5055;
    --accent-color: #388da8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff
}

:root {
    --nav-color: #313336;
    --nav-hover-color: #77b6ca;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #313336;
    --nav-dropdown-hover-color: #77b6ca
}


:root {
    scroll-behavior: smooth
}

:root {
    --button-primary-bg: #007bff;
    --button-primary-color: #ffffff;
    --button-secondary-bg: #6c757d;
    --button-secondary-color: #ffffff;
    --input-bg: #ffffff;
    --input-border: #ced4da;
    --input-focus-border: #007bff;
    --card-bg: #ffffff;
    --card-border: #dee2e6;
    --modal-bg: #ffffff;
    --modal-header-color: #007bff;
    --modal-footer-bg: #f8f9fa;
    --modal-footer-color: #333333;
    --footer-bg-color: #f8f9fa;
    --footer-text-color: #6c757d
}

body {
    color: var(--default-color);
    font-family: var(--default-font);

}

a {
    color: var(--accent-color);
    text-decoration: none !important;
    transition: .3s
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font)
}



@keyframes subscription-loading {

    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important
    }
}



* {
    scrollbar-color: #dc3545 #f1f1f1;
    scrollbar-width: thin
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 5px
}

::-webkit-scrollbar-thumb:hover {
    background: #dc3545
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    border-radius: 5px;
    transition: transform .5s ease;
    margin: 0;
    padding: 0
}

#carouselExample {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    border-radius: 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15)
}

#carouselExample .carousel-inner {
    position: relative;
    z-index: 1
}

#carouselExample::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 0
}

@media (max-width:768px) {
    .carousel-item img {
        max-height: 300px;
        margin: 0
    }
}

@media (max-width:576px) {
    .carousel-item img {
        max-height: 200px;
        margin: 0
    }
}

.carousel-item {
    transition: transform .5s ease
}




#searchInput::placeholder {
    color: red;
    opacity: 1;
}
#searchInput {
   background-color: transparent;
}

.operator-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px
}

#operator-info {
    background-color: #f8f9fa;
    color: green;
    font-size: .7em;
    padding: 10px;
    border: 1px dotted #007bff !important;
    margin-top: 10px;
    display: none
}
.transaksi-info {
    background-color: #f8f9fa;
    color: green;
    font-size: .90em;
    padding: 10px;
    border: 1px dotted #007bff !important;
    margin-top: 10px;
  
}
.error-message {
    color: red;
    display: none
}

#brandButtons img {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  }
