@media (max-width: 767px) {
    .w-75-md {
        width: 100% !important;
    }

    .mt-xs-1 {
        margin-top: 10px;
    }

    .mb-xs-1 {
        margin-bottom: 10px;
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
}

.w-75-md {
    width: 75%;
}

.footer-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-top: 50px;
}


.drop-shadow {
    border-radius: 6px;
    padding: 3px;
    -webkit-filter: drop-shadow(1px 3px 4px #333);
    filter: drop-shadow(1px 3px 4px #333);
}

.border-radius-10 {
    border-radius: 10px;
}

.rounded-15 {
    border-radius: 15px;
}

.bg-sentient {
    background-color: #333;
    color: #fff;
}

.hover-link {
    color: #3295ff !important;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.hover-link::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    /* Grosor del subrayado, ajusta según sea necesario */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3295ff;
    /* Color del subrayado, igual al color del texto */
    transition: width 0.3s ease;
    /* Transición de la anchura durante 0.3 segundos con efecto ease */
}

.hover-link:hover::before {
    width: 70%;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    transition: transform 0.3s ease;
}

.circle:hover {
    transform: scale(1.1);
}

.canal-selected {
    display: none;
    border-bottom: 3px solid #888;
}


/**
 * Table
 */

.card-body {
    /* height: 200px; */
    overflow-y: auto;
}

.table-wrapper {
    display: block;
    max-height: 100%;
    overflow-y: auto;
}

.table {
    width: 100%;
    margin-bottom: 0;
}


.rotate-90 {
    transform: rotate(90deg);
    font-size: 2rem;
    margin: 0 !important;
}

/* Margin Custom */

.mr-15 {
    margin-right: 15px;
}

/* Select Custom SECCION DE GRAFICAS */

.custom-select {
    appearance: none;
    border: 1px solid #ecf0f1;
    padding: 8px;
    border-radius: 5px;
    font-size: 12px;
    position: relative;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px 10px;
}

.google-visualization-table-table tbody tr td {
    text-align: left !important;
}

.title-chart {
    color: #595959;
    font-weight: bold;
    font-size: 25px;
}

.subtitle-chart {
    font-style: italic;
    font-weight: 600 !important;
    color: #595959 !important;
    font-size: 14px;
}

.texto-white {
    color: #fff !important;
}

.bg-light-success {
	background-color: rgb(41 204 57 / 15%) !important;
}

.bg-light-danger {
	background-color: rgb(230 46 46 / 15%) !important;
}

.border-dashed {
    border: 1px dashed #ccc;
}