﻿/****** Shepherd general stylings **********/

/* Hotspot animation */
.hotspot::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #F26727;
    border-radius: 50%;
    box-shadow: 0 0 10px #F26727;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #F26727;
    }

    70% {
        box-shadow: 0 0 0 10px rgba(66, 159, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(66, 159, 255, 0);
    }
}

/* Shepherd content stylings*/
.shepherd-content {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.shepherd-has-title .shepherd-content .shepherd-header {
    background-color: transparent !important;
    border-bottom: 1px solid #dbdbdb;
    font-weight: bolder !important;
    padding: 11px 15px;
}

.shepherd-element {
    margin: 20px -15px !important;
}

.shepherd-title {
    font-size: 17px;
    margin: 0;
    font-weight: 500;
}

.shepherd-cancel-icon {
    background-color: #ccc !important;
    padding: 0px 8px !important;
    border-radius: 21px !important;
    color: #ffffff !important;
    font-weight: bold !important;
    font-size: large !important;
}

.shepherd-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Shepherd buttons - next and back */

.shepherd-button {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 25px;
    margin-right: 10px;
    border: none;
    transition: background-color 0.3s, transform 0.3s;
}

.shepherd-button-primary {
    border: 1px solid #F26727;
    font-weight: 550;
    background-color: transparent;
    color: #F26727;
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    overflow: hidden;
    transition: padding-right 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

    .shepherd-button-primary::after {
        content: '➜';
        position: absolute;
        right: 10px; /* Move the arrow closer to the text initially */
        color: #F26727; /* Match the arrow color with the text color initially */
        opacity: 0;
        transform: translateX(-10px); /* Slightly hide the arrow */
        transition: opacity 0.3s ease, transform 0.3s ease, right 0.3s ease; /* Transition arrow */
    }

    .shepherd-button-primary:hover,
    .shepherd-button-primary:focus {
        background-color: #F26727 !important;
        color: white !important;
        padding-right: 40px;
    }

        .shepherd-button-primary:hover::after,
        .shepherd-button-primary:focus::after {
            right: 20px; /* Move the arrow to its final position */
            color: white; /* Change arrow color to white to match the text */
            opacity: 1;
            transform: translateX(0); /* Slide arrow into view */
        }

.shepherd-button-secondary {
    background-color: #f0f0f0;
    color: #333;
    font-weight: 550;
    padding: 7px 20px;
}

    .shepherd-button-secondary:hover {
        background-color: #e0e0e0;
    }

.shepherd-button-complete {
    background-color: #F26727 !important;
    color: white !important;
    font-weight: 550;
    padding: 7px 20px;
}

/* Shepherd footer */

.shepherd-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid #dbdbdb;
    padding-top: 15px;
}

    .shepherd-footer .shepherd-button {
        margin-right: 10px;
    }

    .shepherd-footer .button-group {
        display: flex;
        align-items: center;
    }

        .shepherd-footer .button-group .shepherd-button {
            float: left;
        }

.progress-indicator {
    margin-right: 20px;
    font-weight: 550;
    margin-left: auto;
}