:root {
    
    --d-green: #23563b;
    --d-black: #404040;
    --d-gray: #808080;
    --d-white: #ffffff;
  
    /* --this-primary: #0E0F17;
    --this-footer: #0E0F17;
  
    --this-sub-menu-shadow: 0px 0px 20px 3px rgba(0,0,0,0.02);
    
    --dark-blue: #2429B0;
    --blue: #333BFC;
    --light-blue: #7076FD;
    --bg-blue: #DDDEFF;
    
    --dark-red: #C53021;
    --red: #F63C29;
    --light-red: #F97769;
    --bg-red: #FCCDC8;
    
    --dark-green: #089446;
    --green: #0BD364;
    --light-green: #54E093;
    --bg-green: #82FAB8;
    
    --dark-orange: #DBAE2F;
    --orange: #F3C134;
    --light-orange: #F7D471;
    --bg-orange: #FEEAB1;
    
    --border-dark: #CBCBCB;
    --border: #E3E3E3;
    --border-light: #EEEEEE; */

}

/* Grid post widget */

.digi-post-grid-container {
    /* grid-template-columns: repeat(4, 1fr); */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
}

@media (max-width: 768px) {
    .digi-post-grid-container {
      grid-template-columns: 1fr !important;
      grid-gap: 10px;
    }
    .digi-grid-post-category{
        z-index: 1 !important;
    }
    .digi-grid-post-content{
        padding: 5px;
    }
  }
  
  @media (max-width: 480px) {
    .digi-post-grid-container {
      grid-template-columns: 1fr !important;
      grid-gap: 5px;
    }
  
  }



.digi-grid-post {
	/* display: flex;
	flex-direction: column;
    width: 100%;
	height: 300px; */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.digi-grid-post-thumbnail {
    /* margin-bottom: 10px; */
    /* cursor: pointer; */
    /* overflow: hidden; */
    display: inline-block;
    width: 100%;
	height: auto;
}

.digi-grid-post-thumbnail img{
    width: 100%;
    height: 179px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: inherit; /* Wariskan border radius dari elemen induk */
    margin-bottom: -20px;
}

.digi-grid-post-content {
    /* flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; */
    /* display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.digi-grid-post-title {
    font-size: 22px;
    margin-bottom: 5px;
    margin-top: 22px;
    min-height: 24px;
}

.digi-grid-post-title a {
    color: var(--d-black);
}
.digi-grid-post-title a:hover {
    color: var(--d-green);
}  

.digi-grid-post-excerpt{
    color: var(--d-gray);
    font-size: 16px;
    margin-bottom: 5px;
}

.digi-grid-post-meta {
    display: flex;
    align-items: center;
  }

  .digi-grid-post-meta .digi-grid-post-author {
    margin-right: 5px;
  }

  .digi-grid-post-meta .digi-grid-post-author {
    margin-right: 5px;
  }

.digi-grid-post-author {
    font-size: 13px;
    color: var(--d-gray);
    height: 100%;
    margin-top: 22px;
}

.digi-grid-post-date {
  display: inline-block;
  margin-left: 5px;
  color: var(--d-gray);
  font-size: 13px;
}

.digi-grid-post-date-no-author{
    display: inline-block;
    color: var(--d-gray);
    font-size: 13px;
    margin-top: 5px;
}

.digi-grid-post-thumbnail-wrapper {
    position: relative;
    display: inline-block;
}

.digi-grid-post-category {
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 1000; */
    z-index: 1 !important;
    padding: 5px;
    background-color: var(--d-green);
    color: var(--d-white);
    text-align: center;
    width: 50%;
    height: 2rem;
    /* border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem; */
    z-index: 1000;
}
.digi-grid-post-category a{
    font-size: 12px;
    width: 100%;
}



/* Featured post widget */

.digi-featured-post-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 5px;
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px; */
}

@media (max-width: 768px) {
    .digi-featured-post-container {
      grid-template-columns: none !important;
      grid-gap: 5px;
    }
  }
  
  @media (max-width: 480px) {
    .digi-featured-post-container {
      grid-template-columns: none !important;
      grid-gap: 5px;
    }
    .digi-featured-post-title {
      font-size: 18px !important;
      }
      .digi-featured-post:nth-child(n+2) .digi-featured-post-title {
          font-size: 12px !important;
      }
      .digi-featured-post:nth-child(n+2) .digi-featured-post-category{
          display: none !important;
      }
  }
  
  
.digi-featured-post {
    position: relative;

    /* width: 100%;
	height: 300px;
	display: flex;
	flex-direction: column; */
}

.digi-featured-post-link {
	display: inline-block;
	flex-basis: 100%;
	overflow: hidden;
}
 
.digi-featured-post:nth-child(1) {
    grid-column: 1 / 3;
    grid-row-start: 1;
    grid-row-end: 3;
	height: 100%;
}
  
.digi-featured-post-thumbnail {
    overflow: hidden;
    position: relative;
    width: 100%;
	height: 100%;
    padding-bottom: 56.25%; /* Untuk menjaga aspek rasio 16:9 */
}
.digi-featured-post-thumbnail a {
    display: block;
}
.digi-featured-post-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)); */
    background: linear-gradient(rgba(0, 0, 0, 0), #111111);
    z-index: 1;
    border-radius: inherit;
}

.digi-featured-post-thumbnail img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
  
.digi-featured-post-thumbnail:hover img {
    transform: scale(1.1);
}
  
.digi-featured-post-category{
    background-color: #252222;
    padding: 5px;
    width: 100px;
    height: auto;
}

.digi-featured-post:nth-child(n+2) .digi-featured-post-metadata {
    bottom: 110px;
    left: 0;
}

.digi-featured-post-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
    /* background: linear-gradient(rgba(0, 0, 0, 0), #111111); */
    z-index: 1;
    width: 100%;
    font-size: 23px;
}
.digi-featured-post:nth-child(n+2) .digi-featured-post-title {
    font-size: 14px;
}

.digi-featured-post-title a{
    color: var(--d-white);
}

.digi-featured-post-metadata {
    position: absolute;
    bottom: 90px;
    left: 0;
    padding: 15px;
    width: 100%;
    color: #fff;
    z-index: 1;
    font-size: 12px;
}

.digi-featured-post-metadata a{
    color: var(--d-white);
}
.digi-featured-post-metadata span {
    margin-right: 5px;
  }


/* Category custom post widget*/
.custom-post-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.custom-post-category-item {
    width: calc(17% - 10px);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden; /* Menyembunyikan potongan efek gradien */
}

.custom-post-category-item img {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-post-category-item:hover img {
    transform: scale(1.1);
}


.custom-post-category-item h2 {
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.5s ease;
}

.custom-post-category-item:hover h2 {
    transform: translate(-50%, -40%);
    /* top: 88.9%; */
    background: linear-gradient(to bottom, rgba(227, 17, 17, 0) 0%, rgba(0, 0, 0, 0.908) 100%);
}

@media screen and (max-width: 992px) {
    .custom-post-category-item {
        width: calc(33.33% - 20px);
    }

    .custom-post-category-item h2{
        top: 90%;
    }
}

@media screen and (max-width: 768px) {

    .custom-post-category{
        padding: 3px;
    }
        
    .custom-post-category-item {
        width: calc(50% - 5px);
        margin-bottom: 7px;
    }

    .custom-post-category-item h2{
        top: 87%;
    }
}

/* Ticker post widget */
.digi-ticker-post-container {
    overflow: hidden;
    position: relative;
    display: flex;
}

.digi-ticker-post {
    animation: tickerAnimation 20s linear infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.digi-ticker-post .ticker-item{
    display: flex;
    flex: 0 0 auto;
    margin-right: 10px;
    white-space: nowrap;
    width: 449px;
    height: auto;
}
.digi-ticker-post:last-child {
    margin-right: 0;
}

/* .digi-ticker-post-content {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    margin-right: 10px;
    white-space: nowrap;
} */

.digi-ticker-post-thumbnail {
    width: 100%;
    height: auto;
    margin-right: 5px;
    flex: 0 0 60px;
    object-fit: cover;
}
.digi-ticker-post-thumbnail img {
    height: 50px !important;
    object-fit: cover;
}

.digi-ticker-post-title {
    flex: 1;
    margin-top: 5px;
    overflow: visible;
    max-width: 329px;
}

.digi-ticker-post-title h2 {
    font-size: 16px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.digi-ticker-post-metadata {
  margin-top: 0;
}

.digi-ticker-post-category {
  background-color: #e74c3c;
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 3px;
}

@keyframes tickerAnimation {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-100%, 0, 0);
    }
}

/* Card post widget */
.digi-post-card-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
    grid-gap: 10px;
}

@media (max-width: 768px) {
    /* Ubah menjadi 2 kolom pada perangkat tablet */
    .digi-post-card-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    /* Ubah menjadi 1 kolom pada perangkat mobile */
    .digi-post-card-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .digi-post-card-container {
        display: block;
        grid-template-columns: none !important;
    }
    .digi-post-card-container-scroll {
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch; /* Untuk memastikan scrolling yang lancar di perangkat iOS */
    }
    .digi-card-post {
      display: inline-block;
      vertical-align: top;
      white-space: normal; /* Kembalikan white-space ke normal untuk konten di dalam card post */
    }
    .digi-card-post-thumbnail img{
        padding: 5px;
    }
    .digi-card-post-title {
        opacity: 1 !important;
        margin-left: 10px;
        top: 100% !important;
    }
    .digi-card-post-meta{
        font-size: 12px !important;
        opacity: 1 !important;
        background-color: #23563b;
        width: 90%;
        margin-left: 10px;
        border-top-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }
    .digi-post-card-header a{
        font-size: 12px;
        padding: 6px 20px;
    }
  }
  

.digi-card-post {
    position: relative;
}

/* .digi-card-post-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
} */

.digi-card-post-thumbnail {
    height: 100%;
    width: 100%;
}

.digi-card-post-thumbnail img{
    width: 250px !important;
    height: 370px !important;
    object-fit: cover;
    object-position: center;
}

/* .digi-card-post-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    transition: opacity 0.3s ease;
} */

.digi-card-post:hover .digi-card-post-content {
    opacity: 1;
}

/* .digi-card-post-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    display: none;
} */

.digi-card-post-title {
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin-top: -150px !important;
    font-size: 16px;
    z-index: 1000;
    color: var(--d-white);
    padding: 5px;
    opacity: 0;
    transition: margin-top 0.3s ease, font-size 0.3s ease, opacity 0.3s ease;
}

.digi-card-post-title a{
    color: var(--d-white);
    background-color: #23563b;
}

.digi-card-post:hover .digi-card-post-title {
    display: block;
    margin-top: -165px;
    font-size: 19px;
    z-index: 1000;
    opacity: 1;
    padding: 5px;
}

.digi-card-post-meta {
    /* display: none;
    font-size: 14px;
    margin-top: 5px;
    color: var(--d-white); */
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -100px !important; /* Ubah angka ini sesuai dengan tinggi judul yang diinginkan */
    font-size: 16px; /* Ubah ukuran font judul */
    z-index: 1000;
    color: var(--d-white);
    padding: 5px;
    opacity: 0;
    
    transition: margin-top 0.3s ease, font-size 0.3s ease, opacity 0.3s ease; /* Tambahkan transisi pada properti yang ingin diubah */
}

.digi-card-post:hover .digi-card-post-meta {
    display: block;
    margin-top: 0;
    font-size: 12px;
    z-index: 1000;
    opacity: 1;
    background-color: #23563b;
    padding: 5px;
}

.digi-post-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .digi-post-card-header a {
    text-align: right;
    display: inline-block;
    padding: 6px 10px;
    background-color: var(--d-green);
    color: var(--d-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 13px;
    transition: background-color 0.3s ease;
  }
  
  .digi-post-card-header a:hover {
    background-color: #e0e0e0;
  }

  .digi-post-card-header p {
    margin-top: 0;
  }


  .digi-category-title-button{
    height: 0;
    width: 100%;
  }
  
  .digi-category-title {
    text-align: left;
    margin: 0;
    padding-left: 10px;
    border-left: 3px solid var(--d-green);
}

/* List post widget */
.digi-list-post {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.digi-list-post-thumbnail {
    flex: 0 0 auto;
    margin-right: 15px;
    width: 200px;
}

.digi-list-post-thumbnail img{
    /* height: 12px; */
    object-fit: cover;
}

.digi-list-post-content {
    flex: 1 1 auto;
}

.digi-list-post-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.digi-list-post-meta {
  margin-bottom: 10px;
  
}

.digi-list-post-category,
.digi-list-post-author,
.digi-list-post-date {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  padding: 4px;
}

.digi-list-post-excerpt {
  font-size: 16px;
}

.digi-list-post-separator-author {
    margin: 5px 2px;
}

.digi-list-post-separator-category {
    margin: 5px 2px;
}

.digi-elementor-pagination {
    display: flex;
    justify-content: center;
}
.load-more-button {
    text-align: center;
    border: none;
    padding: 6px 10px;
}
  
/* .elementor-column.elementor-col-50 .digi-list-post {
  
} */

@media (max-width: 768px) {

    /* .digi-post-list-container {
      display: block;
    } */
    
    /* .digi-list-post {
      display: flex;
      flex-direction: column;
    } */
    
    .digi-list-post-thumbnail {
      width: 150px;
      height: auto;
    }
    
    /* .digi-list-post-thumbnail img{
        width: 100%;
        height: auto;
    } */
    
    .digi-list-post-content {
      margin-right: 10px;
    }
    
    .digi-list-post-meta {
        margin-top: 10px;
        width: 100%;
    }
    .digi-list-post-meta span {
        flex: 1;
        /* margin-right: 10px; */
      }
      
      .digi-list-post-author, .digi-list-post-separator-author, .digi-list-post-date, .digi-list-post-separator-category {
        display: none;
      }
  }
  
  @media (max-width: 480px) {
    .digi-list-post-title {
      font-size: 18px;
    }
    
    .digi-list-post-excerpt {
      font-size: 13px;
    }
  }

/* Social media  */

.social-media-icons {
    list-style: none;
    padding: 10px;
    margin: 0;
  }
  
  .social-media-icons li {
    display: inline-block;
    margin-right: 10px;
    width: 350px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .social-media-icons li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .social-media-icons li a i {
    font-size: 25px;
  }
  
  .social-media-icons li a:hover {
    background-color: #303F9F;
    color: #ffffff;
  }
  
/* Hero Image Widget */

.image-hero-widget{
    margin-bottom: 10px;
}

/* Style Default */
.image-hero-widget.default .image-hero-slider {
    position: relative;
    overflow: hidden;
}

.image-hero-widget.default .image-hero-slider {
    width: 100%;
    height: 100%;
}

.image-hero-widget.default .image-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
} 

.image-hero-widget.default .image-hero-slider img {
    width: 100%;
    height: auto;
}


/* Style Carousel */
.image-hero-widget.carousel {
    position: relative;
    overflow: hidden;
}
.image-hero-widget.carousel .swiper-slide {
    transition: transform 0.3s ease; /* Efek transisi saat bergeser */
}
.image-hero-widget.carousel .swiper-slide-active {
    transform: translateX(0);
}
.image-hero-widget.carousel .swiper-slide-next,
.image-hero-widget.carousel .swiper-slide-prev {
    transform: translateX(100%);
}
.image-hero-widget.carousel .image-hero-slider img {
    width: 100%;
    height: auto;
}
  
/* Style Wide */
.image-hero-slider.wide .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-left: 15px;
    margin-right: 15px;
}
.image-hero-slider.wide img {
    height: 400px;
    width: 100%;
    object-fit: contain;
}
.image-hero-slider.wide .swiper-slide-active img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.image-hero-widget .swiper-button-next,
.image-hero-widget .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: #404040;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px !important;
    color: var(--d-green);
}

.image-hero-widget .swiper-button-next {
    right: 10px;
}

.image-hero-widget .swiper-button-prev {
    left: 10px;
}

/* Price box widget */
.price-box-widget {
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
}

.price-box-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.price-box-prices {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    margin-bottom: 20px;
}

.strike-price {
    padding: 10px 20px;
    text-decoration: line-through;
    color: #888888;
    order: 1;
}

.original-price {
    font-size: 30px;
    font-weight: bold;
    order: 2;
}

.price-box-features {
    margin-bottom: 20px;
    padding: 10px 20px;
    text-align: justify;

}

.price-box-features li {
    list-style: none;
    margin-bottom: 5px;
    margin-left: 22%;
}

.price-box-cta {
    display: inline-block;
    /* width: 100%; */
    padding: 10px 20px;
    background-color: #ff0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.price-box-cta:hover {
    background-color: #cc0000;
}

/* Top Bar */
.top-bar-notification {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 99999999;
    background-color: var(--d-green);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center; /* Mengatur posisi tengah secara horizontal */
    /* justify-content: space-between; */
    color: #fff;
    font-size: 16px;
}

.top-bar-notification[data-notification_position="top"] {
    top: 0;
}

.top-bar-notification[data-notification_position="bottom"] {
    bottom: 0;
}

.top-bar-notification .close-button {
    background-color: #B0ABA6;
    position: absolute;
    top: 100%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 5px; /* Atur padding sesuai keinginan */
    border-radius: 50%; /* Membuat tombol close menjadi lingkaran */
    font-size: 14px; /* Ukuran teks tombol close */
    line-height: 1; /* Menghilangkan space tambahan di sekitar teks tombol */
}

.top-bar-notification .close-button-bottom {
    background-color: #B0ABA6;
    position: absolute;
    top: 0;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 5px; /* Atur padding sesuai keinginan */
    border-radius: 50%; /* Membuat tombol close menjadi lingkaran */
    font-size: 14px; /* Ukuran teks tombol close */
    line-height: 1; /* Menghilangkan space tambahan di sekitar teks tombol */
}

.top-bar-text {
    flex: 1;
    margin-left: 200px;
}

/* Styling Tombol CTA */
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center; /* Mengatur posisi tengah secara horizontal */
    /* margin-left: 20px; */
    margin-right: 150px;

}

.cta-button {
    background-color: #fff; 
    color: var(--d-green);
    padding: 10px 20px; 
    margin-left: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #87CEEB;
    color: #fff;
}

/* CSS untuk tampilan mobile dan tablet */
@media (max-width: 987px) {
    .top-bar-notification {
        flex-direction: column;
    }

    .cta-buttons {
        margin-top: 10px;
    }

    .top-bar-text{
        margin-left: 0;
    }
}

@media (max-width: 487px) {
    .cta-buttons {
        width: 100%;
        margin-left: 45%;
    }
}

/* Faq widget */

/* Styling untuk container FAQ */
.faq-widget {
    background-color: #f9f9f9; /* Warna latar belakang */
    padding: 20px; /* Atur padding sesuai keinginan */
    border-radius: 5px; /* Atur border radius sesuai keinginan */
}

.faq-item {
    margin-bottom: 20px;
    background-color: #fff; 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    padding: 20px;
}

.faq-header{
    text-align: center;
}

.faq-title {
    font-size: 20px;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-title i {
    margin-right: 10px;
  }
  
.faq-title:hover{
    color: orange;
}


/* Styling untuk deskripsi FAQ (sembunyikan awalnya) */
.faq-description {
    display: none;
    font-size: 16px; /* Ukuran teks deskripsi */
    line-height: 1.6; /* Atur line-height sesuai keinginan */
    transition: max-height 0.3s ease-in-out; /* Efek transisi */
    overflow: hidden;
}


/* Styling untuk efek open/close */
/* .faq-item.open .faq-description {
    display: block;
} */

/* Testimonial */

/* CSS untuk tampilan desktop */
.testimonial-widget{
    overflow: hidden;
    position: relative;
}

.testimonial-widget .swiper-slide {
    width: 33.33%;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 15px 30px 80px 0px rgba(8,32,42,0.08);
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);  */

}

.testimonial-widget{
    background-size: cover;
    background-position: center;
    padding: 50px;
}

.testimonial-header {
    display: inline-block;
    border-bottom: 2px solid #f00; /* Ganti #f00 dengan kode warna yang Anda inginkan */
}


.testimonial-item{
    padding: 15px;
    background-color: #ffffff;
    /* -webkit-box-shadow: 0px 30px 80px 0px rgba(8,0,42,0.08);
    -moz-box-shadow: 0px 30px 80px 0px rgba(8,0,42,0.08); */
    border-radius: 10px;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
}

.testimonial-avatar img {
    width: 50px !important;
    height: 50px !important; 
    border-radius: 50% !important;
    object-fit: cover;
    margin-right: 15px; /* Tambahkan jarak antara avatar dan nama */
}

.testimonial-content {
    margin-top: 15px;
    text-align: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-name {
    font-size: 18px;
    font-weight: bold;
}

.testimonial-job {
    font-size: 14px;
    color: #888;
}

.testimonial-rating {
    margin-top: 10px;
}

.testimonial-rating i {
    color: #ffac00;
}

/* CSS untuk tampilan mobile dan tablet */
@media (max-width: 768px) {
    .testimonial-widget .swiper-slide {
        width: 100% !important;
    }

    .testimonial-avatar img {
        width: 80px;
        height: 80px;
    }

    .testimonial-author {
        flex-direction: row;
        align-items: center;
        margin-top: 10px;
    }

    .testimonial-content {
        margin-top: 10px;
        text-align: left;
    }

    .testimonial-name {
        font-size: 16px;
        margin-right: 10px;
    }

    .testimonial-job {
        font-size: 12px;
        display: block;
        margin-top: 5px;
    }
}

/* Popup Widget */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.popup-widget {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    max-width: 80%;
}

.popup-widget img{
    width: 550px;
    height: auto;
}

@media (max-width: 768px) {
    .popup-widget{
        width: 100% !important;
        height: auto;
    }
    .popup-buttons{
        font-size: 12px;
    }
}

.popup-buttons {
    text-align: center;
    font-size: 17px;
    margin-top: 20px;
}

.popup-button, .popup-button.dont-show-again {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s;
}

.popup-button {
    background-color: #007bff;
    color: #fff;
    margin-right: 10px;
}

/* Product Box Widget */
.product-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-image {
    max-width: 550px;
    flex: 2; 
    margin-right: 20px;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-content {
    flex: 1;
}

.product-content h2 {
    font-size: 24px;
    margin-top: 0;
}

.product-content p {
    font-size: 16px;
    margin-top: 10px;
}

.product-features {
    font-size: 16px;
    margin-top: 10px;
    list-style-type: disc;
    padding-left: 20px;
}

.product-buttons {
    margin-top: 20px; 
}

.cta-button {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}


/* Column section layout*/

.elementor-column.elementor-col-50, .elementor-column[data-col="50"]{
    width: 100% !important;
}
.elementor-column.elementor-col-33, .elementor-column[data-col="33"]{
    width: 100% !important;
}

@media (max-width: 768px) {
    .elementor-column.elementor-col-50 .digi-list-post{
        /*  */
    }
    .elementor-column.elementor-col-50, .elementor-column[data-col="50"]{
        display: block;
    }
    .elementor-column.elementor-col-33, .elementor-column[data-col="33"]{
        display: block;
    }
}