.pulses {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loading-pulse {
    height: 10px;
    border-radius: 14px;
    background: linear-gradient(90deg,
            rgba(134, 106, 190, 0.08) 25%,
            rgba(180, 160, 220, 0.25) 37%,
            rgba(134, 106, 190, 0.08) 63%);
    background-size: 200% 100%;
    animation: pulse 1.4s linear infinite;
}

.loading-pulse:nth-child(2) {
    animation-delay: .1s;
}

.loading-pulse:nth-child(3) {
    animation-delay: .2s;
}

.loading-pulse:nth-child(4) {
    animation-delay: .3s;
}

.loading-pulse:nth-child(5) {
    animation-delay: .5s;
}

@keyframes pulse {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: 0% 0;
    }
}

.resumidor-tooltip {
    display: flex;
    justify-content: center;
    width: 100% !important;
}

@media screen and (max-width: 1024px) {
    .resumdior-modes {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .resumir-btn-flex {
        border-bottom: 1px solid var(--lightgray);
        width: 100%
    }

    .langtitude {
        margin: unset;
        width: 100%;
        background-color: #fff;
        padding: 14px 10px;
        align-items: center;
    }

    .resumidor-tooltip {
        widows: 100% !important;
    }


    .modes .btn {
        width: 100% !important;
        justify-content: center;
    }

    .captcha-for-version {
        bottom: -140px !important;
        left: 0px !important;
    }
}

.custom-range-wrapper {
    position: relative;
    width: 210px;
}

.range-resumidor {
    width: 100% !important;
    appearance: none;
    height: 6px;
    border-radius: 10px;
    background: #e5e5e5;
    outline: none;
}

/* Thumb */
.range-resumidor::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #a286f9;
    box-shadow: 0 0 0 6px rgba(162, 134, 249, 0.35);
    cursor: pointer;
    position: relative;
    z-index: 3;
}

/* Dots */
.range-dots {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 1px;
    width: 99%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.range-dots span {
    width: 4px;
    height: 4px;
    border-radius: 99px;
    background: #6A6097;
}

/* Tooltip */
.tooltiptext {
    position: absolute;
    top: -32px;
    background: #a286f9;
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 6px;
    display: none;
    white-space: nowrap;
}

.p-0 {
    padding: 0 !important;
}
