/*
**
** ROOT
**
*/
:root {
    --border-color    : var(--gray-200);

    --text-1          : var(--gray-900);
    --text-2          : var(--gray-550);

    --border-radius-1 : 0.25rem;
    --border-radius-2 : 0.375rem;
    --border-radius-3 : 0.5rem;
    --border-radius-4 : 0.625rem;
    --border-radius-5 : 0.75rem;
    --border-radius-6 : 0.875rem;
    --border-radius-7 : 1rem;

    --font-size-sm    : 0.875rem;
    --font-size       : 1rem;
    --font-size-lg    : 1.25rem;

    --shadow-sm       : 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/*
**
** RESET
**
*/
*,
*::before,
*::after {
    box-sizing: border-box;
    outline: none;
}

a {
    color: var(--cyan-blue-600);
    text-decoration: none;
}

address {
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;

    background-color: rgb(255, 255, 255);
    color: var(--text-1);
    font-size: 1rem;
    font-family: Inter, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    text-align: left;
}

label {
    display: inline-block;
}

p {
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

p:last-child {
    margin: 0;
}

/*
**
** ATRIBUTOS
**
*/
[role=button] {
    cursor: pointer;
}

[type=checkbox],
[type=radio] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;
}

/*
**
** FIELDSET
**
*/
fieldset {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-2);
    padding: 1rem;
}

fieldset legend {
    background-color: var(--gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-2);
    padding: 0.5rem 1rem;
}

/*
**
** TITLES
**
*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 500;
    margin: 0 0 0.5rem 0;
}

h1, .h1 {
    font-size: 2.25rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

/*
**
** IMAGE
**
*/
.img-fluid {
    height: auto;
    max-width: 100%;
}

.img-thumbnail {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-2);
    height: auto;
    max-width: 100%;
    padding: 0.25rem;
}

/*
**
** BUTTON
**
*/
button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    border: 1px solid transparent;
    font-size: 1rem;
}

/*
**
** LISTS
**
*/
:is(ol, ul) {
    margin: 0;
    padding: 0;

    list-style: none;
}
/* :is(ol, ul) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;

    list-style: none;
    margin: 0;
    padding: 0;
}

:is(ol, ul) li {
    line-height: 1.5;
} */

/*
**
** TABLE
**
*/
.table {
    border-collapse: separate;
    border-spacing: 0;

    border: 1px solid var(--border-color);
    /* border-radius: 1rem; */
    margin: 0 0 1rem 0;
    /* padding: 1rem 1.5rem; */
    width: 100%;
    table-layout: auto;
}

.table caption {
    caption-side: top;
    margin: 0 0 1rem 0;
    text-align: left;
}

.table tbody tr {
    transition: background-color 250ms ease-in-out;
}

.table tbody tr:hover {
    background-color: var(--gray-50);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table :is(th, td) {
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem;
    text-align: left;
    white-space: nowrap;
}

/*
**
** CLASSES
**
*/
.bg-gray {
    background-color: rgb(245, 246, 248);
}

.bg-white {
    background-color: rgb(255, 255, 255);
}

.bi-white {
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
}

.border-white {
    border: 1px solid rgb(255, 255, 255);
}

.text-white {
    color: rgb(255, 255, 255);
}

.text-1 {
    color: var(--text-1);
}

.text-2 {
    color: var(--text-2);
}

.vh-100 {
    height: 100dvh;
}