﻿.v-tour {
    direction: ltr;
}

.v-step {
    background-color: rgba(27, 125, 177, 0.75) !important;
    border-radius: 10px !important;
    text-align: left !important;
    font-size: 0.9rem;
    animation-duration: 1.4s;
    animation-name: fadeIn;
}


.v-step .v-step__arrow[data-v-7c9c03f0] {
    border-color: rgba(27, 125, 177, 0.41);
}

.v-tour__target--highlighted {
    box-shadow: 0 0 0 2px #1b7db166 !important;
    animation: blinker 1.4s linear infinite;
    /*background-color: white;*/
    color: black;
    /*border-radius: 50%;*/
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.v-step__header[data-v-7c9c03f0] {
    margin: -1rem -1rem .5rem;
    padding: .5rem;
    background-color: transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.v-step__button[data-v-7c9c03f0] {
    background: transparent;
    border: .05rem none white;
    border-radius: .1rem;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: .6rem;
    height: 1.8rem;
    line-height: 1rem;
    outline: none;
    margin: 0 0.2rem;
    padding: .35rem .4rem;
    text-align: center;
    text-decoration: none;
    transition: all .2s ease;
    vertical-align: middle;
    white-space: nowrap;
}

.v-step__button[data-v-7c9c03f0]:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: #50596c;
}