body {

    --default-blue-stroke: #152745;
    --default-grey-black-fill: rgba(23, 63, 129, 0.4);
    --state-len: 9;
    --default-strok:  oklch(0.765 0.177 163.223);; 

}
#mapa {
    fill: var(--default-strok);
    font-family: monospace;
    font-weight: bolder;
    opacity: 0.4;
}
.mapa-svg-estados {
    cursor: pointer;
}

.mapa-svg-estados path {
    fill: var(--default-grey-black-fill);
    stroke-width: 2px;
    stroke: var(--default-strok);
    stroke-dasharray: var(--state-len, 180%);
    stroke-dashoffset: var(--state-len, 180%);
    -webkit-transition: stroke-dashoffset 10s ease, fill 10s ease, stroke 10s ease;
    -moz-transition: stroke-dashoffset 10s ease, fill 10s ease, stroke 10s ease;
    -ms-transition: stroke-dashoffset 10s ease, fill 10s ease, stroke 10s ease;
    -o-transition: stroke-dashoffset 10s ease, fill 10s ease, stroke 10s ease;
    transition: stroke-dashoffset 10s ease, fill 10s ease, stroke 10s ease;
}
.mapa-svg-estados text {
    stroke:none
}

.mapa-svg-estados:hover {
    cursor: pointer;
}

.mapa-svg-estados:hover path {
    fill: var(--default-grey-black-fill);

}

.mapa-svg-estados-active {
    cursor: pointer;
}

.mapa-svg-estados-active path {
    stroke: var(--default-blue-stroke);
    fill: var(--default-grey-black-fill);
    stroke-dashoffset: 0;
}
.mapa-svg-estados-active text{
    stroke: none;
}

.pointer-svg-map {
    fill: var(--default-blue-stroke);
    animation-direction: normal;
    animation-delay: .3s;
}

.inactive-map-svg {
    opacity: .5;
    stroke: none !important;
}

.inactive-map-svg:hover {
    stroke-dashoffset: -120%;
    cursor: inherit;
    fill: var(--default-grey-black-fill);
}

@keyframes pointer {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

#sotreq-select {
    display: flex;
    flex-direction: column;
}

.class-select {
    outline: none;
    height: 40px;
    width: 250px;
    padding: 10px 18px;
    border-radius: 32px;
    color: #3c3c3c;
    margin-bottom: 2rem;
}

.brasil-map {
    max-width: 100%;
    height: auto;
    display: block;
}
.mapa-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(25%, -50%);
    z-index: 100;
    opacity: 0.3;
}
