/********* estilos gerais, importações *********/

@import './constants.css';

/* COMPONENTS */
@import './components/buttons.css';
@import './components/input.css';

/* PAGES */
@import './pages/login.css';
@import './pages/dashboard.css';
@import './pages/courses-modal.css';
@import './pages/modules.css';
@import './pages/units.css';
@import './pages/contents.css';
@import './pages/materials.css';
@import './pages/units-modal.css';
@import './pages/element-details.css';
@import './pages/contents-modal.css';
@import './pages/cohorts.css';
@import './pages/publish.css';

/* LAYOUTS */
@import './layouts/cards.css';
@import './layouts/top-bar.css';
@import './layouts/side-bar.css';
@import './layouts/footer-bar.css';
@import './layouts/multi-buttons-top.css';
@import './layouts/forms.css';
@import './layouts/table.css';

/* COMPONENT */
@import './components/modals.css';
@import './components/grid-box.css';
@import './components/pages/template-create-cohort.css';

/* WIDGETS */
@import './widgets/toast-message.css';
@import './widgets/empty-list.css';
@import './widgets/pagination.css';


body {
    font-family: var(--primary-font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    width: 100%;
    cursor: default;
}

p {
    font-size: 16px;
    margin: 0px;
}

a {
    text-decoration: none;
    color: black;
}



.text {
    color: var(--text-color);
    display: flex;
    gap: 8px;
    align-items: center;
}

.text-title {
    color: var(--text-color);
    /* font-family: var(--secondary-font-family); */
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-subtitle {
    color: var(--text-color);
    font-family: var(--primary-font-family);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

span {
    font-size: 12px;
    margin-top: 2px;
    color: red;
}

.app {
    display: flex;
    height: 100vh;
}

.body-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    overflow: auto;
    padding: 22px;
}

label {
    margin-bottom: 2px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
}

hr {
    width: 100%;
    margin: 24px 0px;
}

.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: end;
}

.justify-evenly {
    justify-content: space-evenly;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.align-flex-start {
    align-items: flex-start;
}

.align-items-start {
    align-items: flex-start;
}

.align-flex-start {
    align-items: flex-start;
}

.g72 {
    gap: var(--g72) !important;
}

.g24 {
    gap: var(--g24) !important;
}

.g16 {
    gap: var(--g16) !important;
}

.fd-column {
    flex-direction: column;
}

.mt0 {
    margin-top: 0px !important;
}

.mt16 {
    margin-top: 16px !important;
}

.mb16 {
    margin-bottom: 16px !important;
}

.mr16 {
    margin-right: 16px !important;
}

.ml16 {
    margin-left: 16px !important;
}

.mb0 {
    margin-bottom: 0px !important;
}


.w300 {
    width: 700px;
}

.fw100 {
    display: flex;
    width: 100%;
    /* margin: 10px; */
}

.w100 {
    width: 100% !important;
    /* margin: 10px; */
}

.w90 {
    width: 90% !important;
    /* margin: 10px; */
}

.w80 {
    width: 80% !important;
    /* margin: 10px; */
}

.w70 {
    width: 70% !important;
    /* margin: 10px; */
}

.w66 {
    width: 66% !important;
    /* margin: 10px; */
}

.w60 {
    width: 60% !important;
    /* margin: 10px; */
}

.w50 {
    width: 50% !important;
    /* margin: 10px; */
}

.w45 {
    width: 45% !important;
    /* margin: 10px; */
}

.w40 {
    width: 40% !important;
    /* margin: 10px; */
}

.w33 {
    width: 33% !important;
    /* margin: 10px; */
}

.w30 {
    width: 30% !important;
    /* margin: 10px; */
}

.w25 {
    width: 25% !important;
    /* margin: 10px; */
}

.w20 {
    width: 20% !important;
    /* margin: 10px; */
}

.w15 {
    width: 15% !important;
    /* margin: 10px; */
}

.w10 {
    width: 10% !important;
    /* margin: 10px; */
}

.w5 {
    width: 5% !important;
    /* margin: 10px; */
}

.p20 {
    padding: 20px;
}

.p16 {
    padding: 16px;

}

.p10 {
    padding: 10px;
}

.p8 {
    padding: 8px;
}

.pl10 {
    padding-left: 10px;
}

.pointer {
    cursor: pointer;
}


@media (max-width: 1025px) {
    /* tablet */
}

@media (max-width: 769px) {
    /* mobile */
}

@media (max-width: 500px) {
    main {
        padding: 12px;
    }
}