/*--------------------------------------------------------------
TUTORIAL
--------------------------------------------------------------*/

.btn-transparent {
    background-color: transparent;
    border: none;
    color: inherit;
    box-shadow: none;
}

.btn-transparent:hover {
    color: #007bff;
    /* atau warna lain */
    text-decoration: underline;
}


.animated-border {
    position: relative;
    border: 2px dashed #0d6efd;
    padding: 12px 20px;
    display: inline-block;
    background-color: white;
    border-radius: 50%;
    animation: dash 2s linear infinite;
}

@keyframes dash {
    to {
        border-image-source: linear-gradient(90deg, #0d6efd 50%, transparent 0%);
        border-image-slice: 1;
        border-image-width: 2px;
        border-image-outset: 0;
        border-image-repeat: repeat;
        border-image-source: linear-gradient(to right, #0d6efd 0%, transparent 50%, #0d6efd 100%);
        border-image-slice: 1;
        border-image-repeat: round;
        border-image-width: 2px;
        border-image-outset: 0;
    }
}