.btn-circle {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
}

.btn-circle i {
    position: relative;
    top: -1px;
}

.btn-circle-sm {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 0.9rem;
}

.btn-circle-lg {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 1.1rem;
}

.btn-circle-xl {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 1.3rem;
}

.rounded-button-01 {
    border-radius: 5px;
}

.rounded-button-02 {
    border-radius: 15px;
}

.rounded-button-03 {
    border-radius: 25px;
}

.rounded-button-04 {
    border-radius: 50%;
}

.layer-bg-color {
    background-color: rgb(255 255 255 / 50%);
}

.form-login {
    display: flex;
    background-color: rgb(0 0 0 / 70%);
}

.blink-success {
    border-radius: 10px;
    animation: blink-success 2s infinite;
}

@keyframes blink-success {
    0% {
        background: #ffffff;
    }

    50% {
        background: #cbffd0;
    }
}

.blink-warning {
    border-radius: 10px;
    animation: blink-warning 2s infinite;
}

@keyframes blink-warning {
    0% {
        background: #ffffff;
    }

    50% {
        background: #ffecb5;
    }
}

.blink-danger {
    border-radius: 10px;
    animation: blink-danger 2s infinite;
}

@keyframes blink-danger {
    0% {
        background: #ffffff;
    }

    50% {
        background: rgb(252, 213, 213)
    }
}

.blink-secondary {
    border-radius: 10px;
    animation: blink-secondary 2s infinite;
}

@keyframes blink-secondary {
    0% {
        background: #ffffff;
    }

    50% {
        background: rgb(202, 202, 202)
    }
}

.text-blink {
    animation: text-blink 3s linear infinite;
}

@keyframes text-blink {
    50% {
        opacity: 0;
    }
}

.no-horizontal-scroll {
    overflow-x: hidden !important; /* Mengatur overflow-x ke hidden */
}

[x-cloak] { display: none !important; }

.jdih-cover {
    background-image: linear-gradient(to bottom right, rgb(26 30 33 / 15%), rgb(0 0 0 / 15%)), url(../images/include/bgjdih.jpg);
    background-size: cover;
    height: 30rem;
    background-position: center;
    margin: -4.0rem -1.5rem -5.5rem -1.5rem;
    padding: 5rem 1.5rem 6.5rem 1.5rem;
}
.jdih-show-cover {
    background-image: linear-gradient(to bottom right, rgb(26 30 33 / 15%), rgb(0 0 0 / 15%)), url(../images/include/bgjdih.jpg);
    background-size: cover;
    height: 20rem;
    background-position: center;
    margin: -4.0rem -1.5rem 1.5rem -1.5rem;
    padding: 6rem 1.5rem 5rem 1.5rem;
}