/*
    File: css/custom.css
    Author: Crece Consultores
*/

/* app */
.authentication-bg {
    background-color: #022269;
    background-image: linear-gradient(to top, #49392d, #ebe7e6);
}

.page-title-box {
    background-image: linear-gradient(to right, #49392d, #ebe7e6);
}

.user-sidebar {
    background-color: #49392d;
    background-image: none;
}

/* navbar-brand-box */
.navbar-brand-box {
    padding: 0 1.5rem;
    text-align: center;
    width: 120px;
}

/* main-content */
.main-content {
    margin: 0;
}

body[data-topbar="dark"] #page-topbar {
    background-color: #413e34;
}

body[data-topbar="dark"] .title-tooltip li i {
    color: white;
}

body[data-topbar="dark"] .header-item {
    color: white;
}

/* img-service */
.img-service-thumbnail {
    width: 100%;
    height: 90px;
    object-fit: cover;
    object-position: center center;
}

.img-service-profile {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center center;
}

/* flex-gap */
.flex-gap {
    gap: 1em;
}

.course-tree .tree,
.course-tree .tree ul {
    list-style: none;
    margin: 0;
    padding-left: 1rem;
    position: relative;
}

.course-tree .tree li {
    margin: 0;
    padding: 0 0 0.25rem 1rem;
    position: relative;
}

/* líneas verticales */
.course-tree .tree li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0.3rem;
    bottom: 0;
    width: 1px;
    background: #ccc;
}

/* líneas horizontales */
.course-tree .tree li::after {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0.3rem;
    width: 0.7rem;
    height: 1px;
    background: #ccc;
}

/* cortar línea vertical en el último hijo */
.course-tree .tree li:last-child::before {
    height: 0.7rem;
}

.course-tree .tree-label {
    position: relative;
}

/* img-course-list */
.img-course-list {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center center;
}

/* card-disabled */
.card-disabled {
    filter: grayscale(1);
}