@import url("bootstrap-icons-1.7.1/font/bootstrap-icons.css");
/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400&display=swap'); */

@font-face {
    font-family: "Ubuntu";
    src: URL("fonts/Ubuntu/Ubuntu-Regular.ttf") format("truetype");
}

body {
    background-color: #f8f9fa;
    font-family: "Ubuntu", sans-serif;
}

#watermark {
    color: #efefef;
    font-size: 50px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    position: absolute;
    margin: 0;
    z-index: -1;
    left: 0;
    top: 200px;
}

.nav-item > .nav.collapse {
    /* border: 1px solid #1693e3; */
}

/* .dashboard .card {
  background-color: transparent;
} */

.bg-dark {
    background-image: linear-gradient(-45deg, #1054a9, #179ceb);
}

.nav-link {
    color: #212529;
}

.nav-link.active {
    color: #fff !important; /*#212529;*/
    border-top: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    /*background-color: #ffffff;#f8f9fa;#0d6efd;*/
    background-image: linear-gradient(-45deg, #1054a9, #179ceb);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.navbar-pad {
    padding-top: 0;
    padding-bottom: 0;
}

.pos-fix-bt0-z10 {
    position: fixed;
    bottom: 0;
    z-index: 10;
}

.border-top-e6 {
    /* border-top: 1px solid #e6e6e6; */
    border-top: 1px solid #d9d9d9;
}

.border-btm-e6 {
    /* border-bottom: 1px solid #e6e6e6; */
    border-bottom: 1px solid #d9d9d9;
}

.border-rt-e6 {
    /* border-right: 1px solid #e6e6e6; */
    border-right: 1px solid #d9d9d9;
}

.loading-bg-color {
    background-color: #f8f9fa;
}

.dropdown-toggle.caret-off::after {
    display: none;
}
/*https://mdbootstrap.com/docs/standard/extended/timeline/*/
.timeline-1 {
    border-left: 3px solid #b565a7;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    background: rgba(177, 99, 163, 0.09);
    margin: 0 auto;
    position: relative;
    padding: 50px;
    list-style: none;
    text-align: left;
    max-width: 40%;
}

@media (max-width: 767px) {
    .timeline-1 {
        max-width: 98%;
        padding: 25px;
    }
}

.timeline-1 .event {
    border-bottom: 1px dashed #000;
    padding-bottom: 25px;
    margin-bottom: 25px;
    position: relative;
}

@media (max-width: 767px) {
    .timeline-1 .event {
        padding-top: 30px;
    }
}

.timeline-1 .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline-1 .event:before,
.timeline-1 .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline-1 .event:before {
    left: -207px;
    content: attr(data-date);
    text-align: right;
    font-weight: 100;
    font-size: 0.9em;
    min-width: 120px;
}

@media (max-width: 767px) {
    .timeline-1 .event:before {
        left: 0px;
        text-align: left;
    }
}

.timeline-1 .event:after {
    -webkit-box-shadow: 0 0 0 3px #b565a7;
    box-shadow: 0 0 0 3px #b565a7;
    left: -55.8px;
    background: #fff;
    border-radius: 50%;
    height: 9px;
    width: 9px;
    content: "";
    top: 5px;
}

@media (max-width: 767px) {
    .timeline-1 .event:after {
        left: -31.8px;
    }
}

/* https://laracasts.com/discuss/channels/laravel/loading-spinner-in-blade?page=1&replyId=611191*/
.loading {
    z-index: 20;
    position: absolute;
    top: 0;
    left: -5px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.loading-content {
    position: absolute;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 40%;
    left: 35%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* .table:not(.syllabus-table) th:first-child,
.table:not(.syllabus-table) td:first-child {
  position: sticky;
  left: 0;
  background-color: #fff;
  color: #212529;
} */

.table th,
.table td {
    white-space: nowrap;
}

figure.table th,
figure.table td {
    width: 100%;
}

.checkbox-group {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

/* Cada "cartão" do checkbox */
.custom-checkbox {
    display: inline-block;
    width: 220px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
    position: relative;
    /* Para afastar o conteúdo do input invisível */
    padding: 1.5rem;
}

/* Efeito de hover */
.custom-checkbox:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

/* Esconde o checkbox real */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Quando o checkbox está marcado, podemos estilizar o cartão */
.custom-checkbox input[type="checkbox"]:checked + .content {
/* borda para destacar a seleção */
    outline-offset: -8px;
    /* Você pode mudar para background-color, por exemplo:
     background-color: #f0f8ff;
  */
}

/* Conteúdo do "cartão" */
.content {
    /* Espaçamento interno */
    padding: 0;
}

.content i {
    /* Se usar Font Awesome, ajuste o ícone aqui */
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #a11e1e;
}

.content h3 {
    margin: 0.5rem 0 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.content .icon {
    width: 50px; /* Ajuste conforme desejar */
    height: 50px; /* Ajuste conforme desejar */
    margin-bottom: 0.5rem;
}



.custom-checkbox {
    border: 2px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
}

.custom-checkbox.selected {
    border-color: #466dc8;
    background-color: #c2cbed;
}