 /*Quest Plugin*/
.quests-tabs {

}
.quests-tabs ul {
    list-style: none;
    display: flex;
    column-gap: 30px;
}
.quests-tabs ul li {
    padding: 40px 0
}
.quest-loader-css-wrapper {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);
}
.quest-loader-css-wrapper span {
    position: absolute;
    top: 50%;
    margin-top: -24px; 
    left: 50%;
    margin-left: -24px;
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
#quest-image-preview {
    width: 100%;
    max-width: 150px;
}
#quest-image-preview img {
    width: 100%;
    height: auto;
}
.quest-item-header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 







.quest-list {
    display: grid;
    gap: 1.5rem;

    .quest-item {
        background: #F4F8FF;
        border-radius: 5px;
        padding: 0.5rem;
        display: grid;
        border: 1px solid #F4F8FF;
        transition: all ease-in-out 0.3s;

        &:hover {
            border-color: #598C87;
        }

        &.finished-quest {
            opacity: 0.2;
        }

        .quest-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
            margin-block-end: 1rem;
            
            * {
                margin: 0;
            }

            .quest-mode-wrapper {
                display: flex;
                align-items: center;
                gap: 1rem;

                .quest-mode {
                    span {
                        color: transparent;
                        display: block;
                        aspect-ratio: 1;
                        background-size: 100%;
                        background-repeat: no-repeat;
                        background-image: url('../images/n_repeat.png');

                        &.single {
                            background-image: url('../images/n_star.png');
                        }
                    }
                }
            }
        }
    }
}