.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 40
}

#tutorialModal .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,
.bs-popover-end>.popover-arrow::after {
    border-right-color: #194f90
}

#tutorialModal .popover-header p {
    padding-top: 0.15rem;
}

#tutorialModal .modal-content {
    background: transparent;
}

#tutorialModal .popover {
    max-width: 450px;
    position: relative;
    margin: 0 30px !important;
}


.popover img {
    position: absolute;
    top: -70px;
    right: -60px;
    width: 100px;
    height: 100px;
}

#tutorialModal .popover-body {
    background-color: #194f90;
    color: white;
    font-size: 14px;
}

#tutorialModal {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#modal-boas-vindas .modal-content {
    background-color: transparent;
}

#modal-boas-vindas .modal-body {
    position: relative;
    display: flex;
    justify-content: center;
    background-color: var(--blue-bold-600);
    color: white;
    border-radius: 8px;
}

#modal-boas-vindas #div-btn-modal-boas-vindas {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#modal-boas-vindas #conteudo-boas-vindas {
    margin-top: 60px;
    text-align: center;
}

#modal-boas-vindas img {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -120px;
}

#modal-boas-vindas img {
    animation: balancarCabeca 4s ease infinite;
}

#modal-boas-vindas i {
    font-size: 1.5rem;
}

@keyframes balancarCabeca {

    0%,
    50% {
        transform: rotateZ(-10deg);
    }

    25%,
    75% {
        transform: rotateZ(10deg);
    }

    50%,
    100% {
        transform: rotateZ(-10deg);
    }
}

#div-click {
    height: 100%;
    width: 80%;
}

#div-btn-skip-tutorial {
    margin-top: 20px;
    position: absolute;
    top: 0;
    width: 100%;
    justify-content: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#btn-skip-tutorial, #btn-cancel-tutorial {
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem
}

#div-btn-skip-tutorial i {
    font-size: 20px;
    padding-top: 2px;
    margin-bottom: 3px;
}

#modal-boas-vindas #btn-tutotial {
    background: var(--blue-bold-800);
    border: 1px solid var(--blue-bold-800)
}

#modal-boas-vindas #btn-tutotial:hover {
    background: var(--blue-bold-900);
}

#btn-tutotial:focus:not(:focus-visible) {
    outline: 0;
}