/* .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333333;
    transition: opacity 0.75s, visibility 0.75s;
  }

  .loader--hidden {
    opacity: 0;
    visibility: hidden;
  }

  .loader::after {
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: #009578;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
  }

  @keyframes loading {
    from {
      transform: rotate(0turn);
    }
    to {
      transform: rotate(1turn);
    }
  }
 */

.skeleton-image {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 8px;
    animation: skeleton-loading 1.5s infinite alternate;
}

@keyframes skeleton-loading {
    from {
        opacity: 0.1;
    }
    to {
        opacity: 0.9;
    }
}


.contact-location .d-flex {
    flex-wrap: nowrap;
}

.contact-location .d-flex > div {
    display: flex;
    align-items: center;
}

.contact-location .d-flex > div:first-child {
    min-width: 80px; /* Sesuaikan lebar ikon WhatsApp */
}
