:root {
    --color-primary: #5593c0;

    --color-grey-extra-light: #cbd4dc;
    --color-grey-light: #a9b5bf;
    --color-grey: #6c757d;
    --color-red: #dc3545;
    --color-yellow: #ffc107;
    --color-green: #6aa94e;

    --color-red-bg: rgba(220, 53, 70, 0.1);
    --color-yellow-bg: rgba(255, 193, 7, 0.1);
    --color-green-bg: rgba(40, 167, 70, 0.1);

}

html {
    scroll-behavior: smooth;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-success {
    color: var(--color-green) !important;
}

.text-danger {
    color: var(--color-red) !important;
}

.text-secondary {
    color: var(--color-grey) !important;
}

a {
    cursor: pointer !important;
    transition: all 300ms;
}

a:hover {
    color: #3a6584;
}

.ws-tooltip {
    display: block;
}

.ws-tooltip .tooltip-inner {
    background-color: var(--color-primary);
    box-shadow: 0px 15px 15px -8px #2d56a54d;
}

.ws-tooltip .tooltip-arrow::before {
    border-right-color: var(--color-primary) !important;
}

#ws-loader {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100vw;
    height: 100vh;
    /* backdrop-filter: blur(2px); */
    transition: all 300ms;
    z-index: 10000;
}

#ws-loader>span {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    color: white;
}

.alert {
    position: fixed !important;
    bottom: 40px !important;
    right: 50%;
    transform: translateX(50%);
    z-index: 100000000;
    width: 90vw;
    text-align: center;
    font-size: 18px;
    border-radius: 18px;
    border: none;
}

.alert .alert-close {
    border: none;
    background-color: unset;
    color: inherit;
    position: absolute;
    right: 30px;
}

.alert-success {
    box-shadow: 0px 20px 30px -10px #114e0c94;
}

.alert-danger {
    box-shadow: 0px 20px 30px -10px #7e1c1c94
}

.alert-warning {
    box-shadow: 0px 20px 30px -10px #b0951894
}


.radio-formato input {
    visibility: hidden;
}

.radio-formato label {
    cursor: pointer;
    border: 1px solid var(--color-grey-light);
    color: var(--color-grey);
    border-radius: 20px;
    padding: 10px;
    opacity: 0.5;
    text-align: center;
    transition: all 300ms;
    background-color: white;
}

.radio-formato label i {
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
}

.radio-formato input:checked+label {
    background-color: white;
    color: var(--color-green);
    border-color: transparent;
    opacity: 1;
    box-shadow: 0px 20px 30px -10px #2d56a54d;
}