﻿.cursor-pointer {
    cursor: pointer !important;
}

:root {
    --prm-color: #0381ff;
    --prm-gray: #b1b1b1;
}

/* CSS */
.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

    .steps > .progress {
        -webkit-appearance: none;
        position: absolute;
        width: 95%;
        z-index: 5;
        height: 10px;
        margin-left: 18px;
        margin-bottom: 18px;
    }

        /* to customize progress bar */
        .steps > .progress::-webkit-progress-value {
            background-color: var(--prm-color);
            transition: .5s ease;
        }

        .steps > .progress::-webkit-progress-bar {
            background-color: var(--prm-gray);
        }

.step-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--prm-gray);
    transition: .4s;
}

    .step-button.current {
        width: 60px;
        height: 60px;
        background-color: var(--prm-color);
        color: #fff;
    }

.done {
    background-color: var(--prm-color);
    color: #fff;
}

.step-item {
    z-index: 10;
    text-align: center;
}

.border-left-primary {
    border-left: 0.25rem solid #4e73df !important;
}

.border-left-secondary {
    border-left: 0.25rem solid #858796 !important;
}

.border-left-success {
    border-left: 0.25rem solid #1cc88a !important;
}

.border-left-info {
    border-left: 0.25rem solid #36b9cc !important;
}

.border-left-warning {
    border-left: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
    border-left: 0.25rem solid #e74a3b !important;
}

.border-left-light {
    border-left: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
    border-left: 0.25rem solid #5a5c69 !important;
}

.card a.card-header {
    text-decoration: none;
    position: relative;
    padding: 0.75rem 3.25rem 0.75rem 1.25rem;
}

    .card a.card-header.collapsed {
        border-radius: 0.35rem;
    }

        .card a.card-header.collapsed::after, .card .card-header a.btn-collapse.collapsed::after {
            content: '\f105';
        }

    .card a.card-header::after, .card .card-header a.btn-collapse::after {
        position: absolute;
        right: 0;
        top: 0;
        padding-right: 1.725rem;
        line-height: 51px;
        font-weight: 900;
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        color: #d1d3e2;
    }

.modal-open .modal-backdrop.show {
    height: 100% !important;
    width: 100% !important;
}

.modal.show {
    padding-right: 0px !important;
}

.modal-10 {
    max-width: 10vw;
}

.modal-20 {
    max-width: 20vw;
}

.modal-30 {
    max-width: 30vw;
}

.modal-40 {
    max-width: 40vw;
}

.modal-50 {
    max-width: 50vw;
}

.modal-60 {
    max-width: 60vw;
}

.modal-70 {
    max-width: 70vw;
}

.modal-80 {
    max-width: 80vw;
}

.modal-90 {
    max-width: 90vw;
}

.modal-100 {
    max-width: 100vw;
}


.table-responsive {
    transition: transform 0.3s ease;
    width: 100%;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    .tooltip-container .tooltip-text {
        visibility: hidden;
        text-align: center;
        border-radius: 5px;
        padding: 10px;
        position: fixed;
        z-index: 100;
        opacity: 0;
        transition: opacity 0.3s;
    }

        /* Estilos para la flecha */
        .tooltip-container .tooltip-text::after {
            content: '';
            position: absolute;
            border-width: 5px;
            border-style: solid;
            transform: translateX(-50%);
        }

        .tooltip-container .tooltip-text.top::after {
            top: 100%;
            left: 50%;
            border-color: black transparent transparent transparent;
        }

        .tooltip-container .tooltip-text.bottom::after {
            bottom: 100%;
            left: 50%;
            border-color: transparent transparent black transparent;
        }

        .tooltip-container .tooltip-text.left::after {
            top: 50%;
            left: 100%;
            transform: translateY(-50%);
            border-color: transparent transparent transparent black;
        }

        .tooltip-container .tooltip-text.right::after {
            top: 50%;
            right: 100%;
            transform: translateY(-50%);
            border-color: transparent black transparent transparent;
        }

    .tooltip-container:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }
