/* Welcome Blade Custome CSS */
.carousel-item {
    height: 16rem;
}

.bg-dark-ori-web {
    background-color: #033E3E; 
}

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.floating {
    position: fixed;
    z-index: 30;
    bottom: 5rem;
    right: 2rem;
}

.overflow-ellipsis-1{
    max-width: 500px;
    max-height: 7rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.password-container {
    width: 100%;
    position: relative;
}

.fa-eye-pass {
    position: absolute;
    top: 20%;
    right: 5%;
    cursor: pointer;
    color: lightgray;
}

.prices {
    border-radius: 0px 10px 0px;
    padding: 0.5rem;
    background-color: red;
    color: white;
}
.image-frame {
    width: 150px;
    height: 150px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.image-frame-detail {
    width: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.image-frame-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.image-frame img {
    width: 100%;
    height: 100%;
    max-width: 100px;
    padding: 5px;
    border: 1px solid #ddd;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 5px;
    object-position: center;
    display: block;
}

.dataTable th,
.dataTable td {
    vertical-align: middle;
}


.overflow-ellipsis {
    max-width: 500px;
    max-height: 7rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.notification {
    position: fixed;
    bottom: 20px;
    left: -100%;
    /* Mulai dari luar layar kiri */
    transition: left 0.5s ease-in-out;
    /* Animasi sliding ke kanan */
    background-color: white;
    /* Warna latar hijau */
    color: #000;
    /* Warna teks putih */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999
}

.notification-success {
    background-color: white;
    /* Warna latar hijau untuk notifikasi berhasil */
}

.notification-danger {
    background-color: white;
    /* Warna latar hijau untuk notifikasi berhasil */
}

.notification-text {
    font-size: 16px;
}

.fade-out {
    opacity: 0;
    /* Mengatur opasitas menjadi 0 */
    transition: opacity 1s ease-in-out;
    /* Animasi fade-out */
}