@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    font-size: 16px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
:root{
    --smart-color-green:#45EC9C;
    --smart-color-violet:#8062E0;
    --smart-color-cyan:#65D7F9;
    --smart-color-smart:#0093C5;
    --smart-color-lightgreen:#86ebbb;
    --smart-color-base:#f8f8f8;
    font-size: 14px;
}
@media (min-width: 1200px){
    :root{
        font-size: 16px;
    }
}
@media (min-width: 1600px){
    :root{
        font-size: 19px;
    }
}
.bg-content{
    font-size: 1em;
    background-color:#f8f8f8 ;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    overflow: hidden;
    min-height: 100vh;
}
.header{
    padding: 0.5em 1em;

}
.nav-in{display: none;}
.header>div>.row{
    justify-content: center;
}
.header>div>div{
    background-color: white;
    border-radius: 10px;
    padding: 1em 0.75em;
}
.header .logo-smart{
    font-size: 0;
    max-width:256px;
    height: 74px;
    background: url(/img/smart-logo.svg) no-repeat center;
    background-size: contain;
    margin-bottom: 0;
}
li{
    list-style: none;
}
a{
    color: #707070;
}
a:hover{
    text-decoration: none;
}
input[type="search"]:focus-visible{
    outline:none;
}
/*Clases Generales*/
.border-box{
    border-bottom: #8062E0 8px solid;
}
.border-xy{
    border: 1px solid;
}
.border-b{
    border-bottom: 1px solid;
}
.border-r{
    border-right: 1px solid;
}
.border-green{
    border-color: var(--smart-color-green);
}
.border-violet{
    border-color: var(--smart-color-violet);
}
.border-cyan{
    border-color: var(--smart-color-cyan);
}

.btn-submenu{
    position: relative;
}
.btn-submenu ul{
    display: none;
    white-space: nowrap;
}
.btn-submenu:hover ul{
    display: block;
    position: absolute;
    top: 100%;
    right: 1%;
}
.search-rounded{
    border-radius: 50px;
    padding: 0.375em 0.75em;
}
.search-rounded input[type="search"]{
    width: 90%;
    border: none;
    outline-offset: none;
    padding-left: 1em;
    background-color: transparent;
}
.search-rounded input[type="search"]:focus-visible{
    outline: none;
}
.box-white{
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)
}
.bg-violet{
    background-color: var(--smart-color-violet) !important;
}
.bg-green{
    background-color: var(--smart-color-green) !important;
}
.bg-cyan{
    background-color:var(--smart-color-cyan) !important;
}
.bg-gray-dark{
    background-color: #7D7D7D !important;
}
.bg-gray{
    background-color: #B9B9B9 !important;
}
.bg-lightgreen{
    background-color: var(--smart-color-lightgreen) !important;
}
.bg-base{
    background-color: var(--smart-color-base);
}
.rounded-box{
    border-radius: 10px;
}
.text-nowrap{
    white-space: nowrap !important;
}
.img-1x1{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center top;
}
.img-1x1-5{
    width: 100%;
    aspect-ratio: 1/1.5;
    object-fit: cover;
    object-position: center top;
}
.btn-outline{
    background-color: inherit;
    border-radius: 50px;
    padding: 0.375em 0.75em;
    font-weight: 500;
    margin: 0 0.5em;
    border-width: 1px;
    border-style: solid;
}
.btn-outline.border-green:hover{
    color: white;
    background-color: var(--smart-color-green);
}
.btn-outline.border-violet:hover{
    color: white;
    background-color: var(--smart-color-violet);
}
#section_actividades a.border-violet:hover{
    color: var(--smart-color-violet);
}
#section_actividades a.border-cyan:hover{
    color: var(--smart-color-cyan);
}
#section_actividades a.border-green:hover{
    color: var(--smart-color-green);
}
/*HEADER*/
.header .btn-menu{
    position: relative;
}
.header .btn-menu:hover+.nav-in, .nav-in:hover {
    display: block;
    position: absolute;
    top: 0.75em;
    right: 0.5em;
    background-color: white;
    box-shadow: 10px 10px 8px -9px #0093c866;
    border-radius: 0.5em;
    padding: 0.5em;
    color: #707070;
    font-weight: 500;
    width: max-content;
}
.header .nav-in i{
    color:#0093C5;
}
.header .nav-in li:first-of-type{
    border-bottom: #0094c531 1px solid;
}
.header .nav-in a:hover{
    text-decoration: none;
    color: #0093C5;
}
.main-search>div{
    border-radius: 10px;
    background-color: #F5F5F5;
    padding: 0.375em 0.75em;
}
.main-search>div i{
    color:#0093C5;
}
.main-search input{
    background-color: transparent;
    border: none;
    padding-left: 0.5em;
    width: 90%;
}
.main-search input:focus-visible{
    outline:none;
    border-bottom: #dedcdc 1px solid;
}

/*MENU NAV*/
.main-menu{
    display: inline-block;
    background-color: white;
    border-radius: 10px;
    padding: 0.375em 0.75em;
    margin-left: 15px;

}

.main-menu ul{
    display: none;
}
.main-menu .btn-menu:hover+ul, .main-menu ul:hover{
    display: block;
    width: 85vw;
}
.main-menu li{
    padding: 1em 0.5em;
    font-weight: 600;
}

.main-menu li img{
    filter: invert(51%) sepia(93%) saturate(5130%) hue-rotate(171deg) brightness(98%) contrast(106%);
    padding-right: 0.5em;
}
.main-menu li:hover img{
    filter: none;
}

.main-menu li:hover{
    background-color: #0093C5;
    border-radius: 10px;
}
.main-menu li:hover a{
    color: white;
    text-decoration: none;
}

/*MAIN SECTION PERFIL*/
.main-title{
    color: #0093C5;
    font-weight: 600;
    font-size: 2em;
}
.main-title::before{
    content: '';
    padding-left: 1em;
}
.perfil .main-title::before{
    background: url(/img/menu-icon-2-white.svg) no-repeat center;
    filter: invert(51%) sepia(93%) saturate(5130%) hue-rotate(171deg) brightness(98%) contrast(106%);
}
.perfil h3{
    font-size: 1.1em;
    font-weight: 700;
}
.card-bg{
    background-color: white;
    border-radius: 10px;
    padding: 0.375em;
}
.main-section td,.main-section th{
    padding: 10px 5px;
    margin-left: auto;
}
.proyectos .menu-proyecto{
    padding-top: 1.5em;
}

.proyectos .menu-proyecto>li>a{
    color:#8062E0 ;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    padding: 0.375em 0.75em;
}
.proyectos .menu-proyecto>li ul{
    display:none ;

}
.proyectos .menu-proyecto>li:hover>a{
    background-color: #8062E0;
    color: white;
    border-radius: 50px;
    text-decoration: none;
}
.proyectos .menu-proyecto>li:hover ul{
    display: block;
    padding-left:0.75em;

}
.menu-proyecto .submenu li a{
    color: #ACACAC;
}
.proyectos .menu-proyecto .submenu li:hover a{
    color: #707070;
    text-decoration: none;
}
.header-box{
    color: white;
    border-radius: 10px;
    width: 100%;
    padding: 0.375em 1em;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)
}
.color-green{
    color: #45EC9C;
}
.color-cyan{
    color: #65D7F9;
}
.color-smart{
    color: #0093C5;
}
.color-violet{
    color: #8062E0;
}
.color-brick{
    color: #E06284;
}
.color-crimson{
    color: #FA1251;
}
.color-fuchsia{
    color: #FF68F5;
}
.color-blue{
    color: #3024E1;
}
.color-yellow{
    color: #ECD21D;
}
.color-orange{
    color:#F9A22C;
}
.color-gray{
    color: #7D7D7D;
}
.shadow-icon{
    border-radius: 14px;
    box-shadow: #0000003b 2px 2px 5px -2px;
}
.medios .header-card .color-green{
    font-weight: 500;
}
.medios .search-rounded .fa-search{
    color: #45EC9C;
}
.card-bg .search-rounded{
    background-color: #F5F5F5;
}
/*Tabla-mapa-de-medio*/
.medios .table ul{
    padding-left: 0;
}
.medios .table th{
    color: #45EC9C;
}
.medios .table th,.medios .table td{
    border-bottom:#45EC9C 1px solid ;
    border-top: none;
}
.medios .table td:nth-of-type(even),.medios .table th:nth-of-type(even){
    background-color: #F9F9F9;
}
.medios .table .tier span{
    background-color: #45EC9C;
    width:2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: white;
    font-weight: 600;
}
.btn-green{
    background-color: #45EC9C;
    color: white;
    padding: 0.375em 0.75em;
    display: inline-block;
}
.btn-green:hover{
    text-decoration: none;
    color: white;
    transform: scale(1.1);
}
.mapa-voceros .table th{
    color: #65D7F9;
}
.perfil .mapa-voceros .table td:nth-of-type(odd),.perfil .mapa-voceros .table th:nth-of-type(odd){
    background-color: #F9F9F9;
}
.mapa-voceros .table th,.mapa-voceros .table td{
    border-bottom:#65D7F9 1px solid ;
    border-top: none;
}
@media (min-width: 1200px){
    .bg-content{
        min-height: 100vh;
    }
    .header .main-search{
        order: 2;
    }
    .header .main-search>div{
        width: 100%;
    }
    .header>div>div>.col-5{
        order: 1;
    }
    .header>div>div>.col-7{
        order: 3;
    }
    .main-menu{
        position: fixed;
        z-index: 2;
        left: 15px;
        margin-left: 0;
    }
    .main-menu ul{
        display: block;
    }
    .main-menu .btn-menu:hover+ul,.main-menu ul:hover{
        width: fit-content;
    }
    .main-menu li{
        width: 40px;
        overflow: hidden;
        display: flex;
        white-space: nowrap;
    }
    .main-menu ul:hover li, .main-menu .btn-menu:hover+ul li{
        width: auto;
        font-size: 1em;
    }
    .header-body p{
        width: 50%;
        margin-left: 2em;
    }


}
@media (min-width: 1600px){
    .bg-content{
        font-size: 1.2em;
    }
}
    /*MAIN-SECTION MAPA DE MEDIOS*/
.medios .header-body {
    justify-content: end;
    flex-wrap: wrap;
}
.medios .main-title {
    font-size: 1.5em;
}
.medios .main-title::before{
    padding-left: 1.5em;
    background: url(/img/perfil-header-2.png) no-repeat center top;
    background-size: contain;
}
.medios .header-body .search-rounded{
    background-color: white;
}
.medios .content-body .table-responsive{
    background-color: white;
    border-radius: 10px;
    padding: 0 2em;
}
.medios .content-body .table-responsive .table{
    margin-bottom: 0;
}
.ordenar-table{
    background-color: white;
    border-radius: 10px;
    padding: 0.375em 0.75em;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 1em;
    top: 0.75em;
    box-shadow: 10px 10px 8px -9px #0093c866;
    display: none;
}
.open-order:hover+.ordenar-table, .ordenar-table:hover{
    display: flex;
}
.medios .ordenar-table a:hover{
    text-decoration: none;
    color: #45EC9C;
}
.pagination>a i{
    vertical-align: middle;
}
.pagination .rounded-pill{
    color: white;
    padding: 0.3em 1em;
    margin-bottom: 0;
}
.medios .pagination .rounded-pill{
    background-color: #45EC9C;
}
.medios .pagination a:hover{
    color: #45EC9C;
    padding-bottom: 0.2em;
}
.medios .header-body p{
    width: 100%;
}
.legend{
    opacity: 0.5;
    font-size: 0.7em;
}
@media (min-width: 1200px){
    .medios .header-body>div:nth-of-type(3){
        order: 2;
    }
    .medios .header-body>div:nth-of-type(2){
        order: 3;
    }
    .medios .header-body>div:nth-of-type(1){
        order: 1;
    }
    .medios .header-body {
        justify-content: space-between;
        flex-wrap: unset;
    }
    .pagination{
        width: 50%;
    }
}
/* MAIN-SECTION: MAPA VOCEROS*/
.mapa-voceros .main-title::before, .perfil-voceros .main-title::before{
    padding-left: 1.5em;
    background: url(/img/perfil-header-3.png) no-repeat center top;
    background-size: contain;
}
.mapa-voceros .main-title, .perfil-voceros .main-title  {
    font-size: 1.5em;
}
.mapa-voceros .header-body p, .perfil-voceros .header-body p{
    width: 100%;
}
.mapa-voceros .header-body .search-rounded, .perfil-voceros .header-body .search-rounded{
    background-color: white;
}
.mapa-voceros .content-body .table-responsive{
    background-color: white;
    border-radius: 10px;
    padding: 0 2em;
}
.mapa-voceros .content-body .table-responsive .table{
    margin-bottom: 0;
}
.mapa-voceros .content-body td:nth-of-type(even), .mapa-voceros .content-body th:nth-of-type(even){
    background-color: #F9F9F9;
}
.mapa-voceros .pagination .rounded-pill{
    background-color: #65D7F9;
}
.mapa-voceros .pagination a:hover{
    color: #65D7F9;
    padding-bottom: 0.2em;
}
.mapa-voceros .ordenar-table a:hover{
    text-decoration: none;
    color: #65D7F9;
}
.mapa-voceros .header-body {
    justify-content: end;
    flex-wrap: wrap;
}

/*PERFIL VOCEROS*/
.bubble-img{
    width: 50%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: white;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 255px;
}
.bubble-img img{
    width: 100%;
}
.box-card{
    background-color: white;
    border-radius: 10px;
    height: 100%;
}
.perfil-voceros .box-card.card-1 span{
    color: #65D7F9;
    font-weight: 600;
}

.perfil-voceros .box-card.card-1>div:nth-child(1){
    border-radius: 10px 10px 0 0;
    background-color: #65d6f919;
}
.perfil-voceros .box-card.card-1>div:nth-child(2){
    border-radius: 0 0 10px 10px ;
    background-color: #65d6f919;
}

.btn-outline-cyan{
    color: #65D7F9;
    border-radius: 50px;
    border:#65D7F9 1px solid;
    padding: 0.375em 0.75em;
    font-weight: 500;
    margin: 0 0.5em;
}
.btn-outline-cyan:hover{
    color:#0093C5;
    border-color: #0093C5;
    text-decoration: none;
}
.hover-smart:hover{
    color:#0093C5;
    text-decoration: none;
}
.btn-cyan{
    background-color:#65D7F9;
    color: white;
    border-radius: 50px;
    padding: 0.375em 1em;
}
.btn-cyan.descarga:after{
    content: '';
    padding-right: 2em;
    background: url(/img/download-icon.svg)no-repeat center;
    background-size: contain;
}
.btn-cyan:hover{
    color: white;
    text-decoration: none;
    box-shadow: 10px 10px 8px -9px #0093c866;
}
.perfil-voceros .box-card.card-1 h3{
    color: #65D7F9;
    margin-bottom: 0;
}
.perfil-voceros .box-card.card-1 p{
    color: #65D7F9;
    font-size: 0.75em;
    font-weight: 600;
}
@media (min-width: 1200px){
    .perfil-voceros .box-card.card-1>div:nth-child(1){
        border-radius: 10px 0 0 10px;
        background-color: #65d6f919;
    }
    .perfil-voceros .box-card.card-1>div:nth-child(2){
        border-radius: 0 10px 10px 0;
        background-color: #65d6f919;
    }
    .bubble-img{
        width: 100%;
    }
}
/*MAIN SECTION PROYECTOS*/

.proyectos .main-title {
    font-size: 1.5em;
}
.proyectos .main-title::before{
    padding-left: 1.5em;
    background: url(/img/perfil-header-1.png) no-repeat center top;
    background-size: contain;
}
.proyectos .header-body .search-rounded{
    background-color: white;
}
.proyectos .header-body p{
    width: 100%;
}
.proyectos .rounded-pill{
    background-color:#8062E0;
}
.proyectos .content-body>div:nth-child(1){
    background-color: white;
    border-radius: 10px;
}
.proyectos .content-body>div>ul>li>a{
    border: #8062E0 1px solid;
    border-radius: 50px;
}
.proyectos .content-body .menu-proyecto>li{
    margin-bottom: 1em;
}
.proyectos .content-body .menu-proyecto>li .submenu li:hover {
    background-color: #EFEFEF;
    border-radius: 50px;
    padding: 0.375em 0.75em;
    margin-left: 0;
}
.proyectos .pagination a:hover{
    color: #8062E0;
    text-decoration: none;
}
.proyectos .pagination a:nth-child(3):hover i{
    transform: translate(1em);
}
.proyectos .pagination a:nth-child(1):hover i{
    transform: translate(-1em);
}
.proyectos .pagination a.disabled:hover i{
    transform: none;
}
.link-disabled {
    color: black;
    opacity: 0.5;
    pointer-events: none;
}
/*initial*/
.bg-begin{
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    background: url(/img/background-inicio.png) no-repeat center;
    background-size: cover;
}
.bg-begin .logo-initial div{
    max-width: 400px;
    width: fit-content;
}
.bg-begin .logo-initial img{
    width: 50%;
}
.logo-initial{
    display: flex;
    justify-content: center;
    --animate-duration: 5s;
}
.loaded-initial{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
.loaded-initial>img{
    max-width: 219px;
    width: 30%;
}
.loaded-initial .language{
    width: 100%;
}
.loaded-initial .language div{
    border-radius: 10px;
    background-color:#63B3D2;
    margin-left: 0;
    box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 44%);
    width: fit-content;
    margin-left: auto;
}
.language button{
    font-weight: 600;
    color: white;
    border: none;
    background-color: transparent;
    padding: 0.375em 0.75em;
}
.loaded-initial button img{
    padding-right:0.3em ;
}
.language  button:hover{
    box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 70%);
    border-radius: 10px;
}
.bg-form{
    width: 100%;
    margin-top: 3em;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2em 1em;
}
.bg-form form{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.bg-form .form-group {
    margin-bottom: 2.5em;
}
.bg-form .form-control{
    background-color: transparent;
    border: none;
    border-bottom: white 1px solid;
    color: white;
}
.bg-form form label{
    color: white;
    font-weight: 500;
}

.bg-form button{
    text-transform: uppercase;
    color: #0093C5;
    background-color: white;
    padding: 0.375em 1.5em;
    border-radius: 50px;
    border: none;
    margin: 2em 0 1em 0;
}
.bg-form .form-control:focus{
    box-shadow: none;
    background-color: rgba(255,255,255,0.1);
}
.check{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.check>a:nth-of-type(1), .check>a:nth-of-type(2){
    margin-top: 5em;
}
.check>div:nth-of-type(1) img{
    width: 50%;
    max-width: 219px;
}
.check .box{
    border-radius: 10px;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
    position: relative;
    height: 150px;
}

.check .box div{
    width: 100%;
    display: block;
    position: absolute;
    top: -50%;
}
.check>a:nth-of-type(1) .box i{
    position: absolute;
    left: -0.5em;
    top: 40%;
    color: white;
    font-size: 2em;
}
.check>a:nth-of-type(2) .box i{
    position: absolute;
    right: -0.5em;
    top: 40%;
    color: white;
    font-size: 2em;
}
.check a:hover{
    animation: headShake;
    animation-duration: 2s;
}
.check .box h3{
    color: white;
    position: absolute;
    bottom: 10%;
    width: 100%;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.2em;
}
.check .small{
    letter-spacing: 0.25em;
    width:100%;
}
@media (min-width: 1200px){
    .check>a:nth-of-type(1), .check>a:nth-of-type(2){
        margin-top: 0;
    }
}
/*INDICADORES*/
.indicadores .main-title::before{
    background: url(/img/menu-icon-3-white.svg) no-repeat center;
    filter: invert(51%) sepia(93%) saturate(5130%) hue-rotate(171deg) brightness(98%) contrast(106%);
}
.filtro-body{
    border-radius: 1.2em;
    background-color: #65D7F9;
    padding: 0;
    color: white;
    flex-wrap: wrap;
    font-size: 0.75em;
}
.filtro-body .content-date{
    display: flex;
    background-color: white;
    border-radius: 50px;
    color:#65D7F9;
    padding: 0.375em 0.75em;
    align-items: center;
  }
  .filtro-body .content-date div:nth-of-type(2){
    width: 1%;
  }
  .filtro-body .content-date div{
    width: 50%;
  }
  .filtro-body .content-date::before{
    content: '';
    background-image: url(/img/calendar.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 1.2em;
    height: 1.2em;
  }
.indicadores .content-date input[type="date"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    width: 0;
  }
  .indicadores .content-date input[type="text"].text-date{
    width: 6em;
    background-color: transparent;
    border: none;
  }
  .indicadores .content-date input[type="date"]{
    background-color: transparent;
    border: none;
    outline: none;
    width: 10em;
    font-size: 0.75em;
    color: #65D7F9;
  }
  .indicadores .content-date i{
    cursor: pointer;
  }
  .indicadores .content-date input[type="text"].text-date::placeholder{
    font-weight: 500;
    color: #65D7F9;
    text-align: right;
  }
  .indicadores .content-date input[type="text"].text-date::placeholder{
    padding-right: 1em;
    content:'\f078'
  }

  .filtro-body .filtro{
    margin: auto;
    text-align: center;
    border-bottom: 1px solid white ;
  }
  .filtro-body .filtro-indicadores{
    border: none;
  }
  .filtro button{
    border: none;
    background: transparent;
    color: white;
    width: 100%;
  }
  .filtro-body .filtro-indicadores button, .filtro-body .filtro-tier button, .filtro-body .filtro-tipo button{
    white-space: nowrap;
  }
  .filtro-body .content-send{
    background-color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
  }
  .filtro-body .content-send button{
    width: 50%;
    background-color: transparent;
    border: none;
    outline: none;
    color: #65D7F9;
  }
  .filtro-body .content-send button:first-of-type{
    border-right: 1px solid #65D7F9;
  }
  .filtro span{
    cursor: pointer;
  }

  .filtro div.select{
    background-color:rgba(255, 255, 255, 0.9) ;
    border-radius: 10px;
    font-size: 0.75em;
    width: 110%;
    z-index: 2;
    max-height: 11em;
    overflow-y: scroll;
  }
  .filtro div.select ul li{
    padding: 0.375em 0.5em;
  }

  .filtro div.select label{
    color: black;
    width: 100%;
    position: relative;
    padding-right: 1em;
    padding-left: 0.5em;
    margin-bottom: 0;
  }

  .filtro div.select input[type=checkbox]{
    position: absolute;
    top:0.3em;
    right: 0.5em;
  }

  .filtro div.select .select-title span{
    color: #65D7F9;
    border-radius: 50px;
    border: #65D7F9 1px solid;
    display: inline-block;
    padding: 0.3em 0.75em;
    width: 90%;
  }
  .filtro div.select .select-all span{
    background-color: #65D7F9;
    color: white;
    border-radius: 50px;
    padding: 0.3em 0.75em;
    display: inline-block;
    width: 90%;
  }
  .btn-linear-white{
    border-radius: 50px;
    border: 1px solid white;
    color: white;
    padding: 0.3em 1em;
  }
  .content-publish>div{
    background-color:#65D7F9;
    color: white;
    border-radius: 10px;
  }
  .content-publish div div:nth-of-type(3){
    border-right: 1px solid white;
    border-radius: none;
    font-weight: 300;
  }
  .content-publish div div h3{
    font-size: 1.2em;
  }
  .content-publish div div:nth-of-type(3) h3::before{
    padding-left: 1.5em;
    content: '';
    background-image: url(/img/indicadores/audiencia.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .content-publish div div:nth-of-type(4) h3::before{
    padding-left: 1.5em;
    content: '';
    background-image: url(/img/indicadores/value.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .indicadores .content-publish div div:nth-of-type(2){
    position: relative;
  }
  .indicadores .content-publish div div:nth-of-type(2) canvas{
    width: 100%;
    aspect-ratio: 1/1;
  }
  .indicadores .info {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100%;
  }
  .indicadores .info h2{
    font-size: 1em;
  }
  .indicadores .info p{
    font-size: 2.5em;
  }
  .btn-white{
    border-radius: 50px;
    padding: 0.375em 1em;
    background-color: white;
    color:#65D7F9;
  }
  .indicadores .content-card{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
  }

  .indicadores .content-card canvas{
    width: 100%;
    aspect-ratio: 1/1;
  }
  .indicadores .content-view .graphic, .indicadores .content-view  .graphic>div, .marca .graphic, .marca .graphic>div {
    width: 100%;
    aspect-ratio: 1/1;
    }
  .indicadores .content-card>div{
    background-color: white;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 1em;
  }
  .indicadores .percent-card{
    background-color: #F9F9F9;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
  }
  .indicadores .percent-card p{
    text-align: center;
    font-size: 4em;
    font-weight: 600;
    margin: auto 0;
    color: #65D7F9;
  }
  .btn-linear-cyan{
    padding: 0.3em 1em;
    border-radius: 50px;
    border:#65D7F9 1px solid;
    color: #65D7F9;
  }
  .content-card .btn-linear-cyan{
    white-space: nowrap;
  }
  .card-active .btn-linear-cyan:hover{
    border:#45EC9C 1px solid;
    color: #45EC9C;
    text-decoration: none;
  }
.indicadores .info-card{
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
}
.indicadores .info-card h3{
    color: #65D7F9;
    font-size: 1.5em;
    font-weight: 600;
    line-height: 0.5em;
  }
.indicadores .info-card h3 span{
    font-size: 0.5em;
}
.indicadores .info-card a,.indicadores .info-card p{
    font-size: 0.75em;
  }
.card-active .info-card img[src$="stories.png"]{
    content: url(/img/indicadores/stories-hover.png);
  }
.card-active .info-card img[src$="medios.png"]{
    content: url(/img/indicadores/medios-hover.png);
}
.card-active .info-card img[src$="vocero.png"]{
    content: url(/img/indicadores/vocero-hover.png);
}
.card-active .info-card img[src$="pais.png"]{
    content: url(/img/indicadores/pais-hover.png);
}
.card-active .info-card img[src$="tonalidad.png"]{
    content: url(/img/indicadores/tonalidad-hover.png);
}
.card-active .info-card img[src$="marca.png"]{
    content: url(/img/indicadores/marca-hover.png);
}
.card-active .info-card img[src$="proyecto.png"]{
    content: url(/img/indicadores/proyecto-hover.png);
}
.card-active .info-card img[src$="gestion.png"]{
    content: url(/img/indicadores/gestion-hover.png);
}
  @media (min-width: 1024px){
    .filtro-body{
        border-radius: 50px;
        flex-wrap: nowrap;
    }
    .indicadores .content-card>div{
        height: 24%;
        margin-bottom: 0;
    }
    .filtro-body .filtro{
        border-right: 1px solid white ;
        border-bottom: none;
      }
    .filtro-body .filtro-indicadores{
        border: none;
    }
}
/*Mis indicadores*/
.content-graphic  .title-graphic{
    font-size: 1.5em;
    font-weight: 600;
}
.indicadores .content-graphic .row{
    background-color: white;
    border-radius: 10px;
    padding: 1em 1.5em;
}
.content-graphic .item-tier p{
    white-space: nowrap;
}
.content-graphic .item-tier p:last-of-type{
    white-space: nowrap;
    font-size: 0.5em;
}
.content-graphic .item-tier p:nth-of-type(2){
    font-size: 1.25em;
    font-weight: 600;
}
.content-graphic .item-tier{
    position: relative;
    height: 20%;
    width: 100%;
}
.content-graphic .item-tier a{
    align-items: flex-end;
    color: white;
    border-radius: 10px;
    padding: 0.5em;
    text-decoration: none;
}
.content-graphic .item-tier a span{
    position: absolute;
    top: 20%;
    right: 1px;
    font-size: 2em;
    border-radius: 50px;
}
.content-graphic ul{
    height: auto;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
}
.content-graphic ul::-webkit-scrollbar {
    background-color: gray;
    width: 3px;
}
.content-graphic ul::-webkit-scrollbar-track {
    background-color:white;
}
.content-graphic ul::-webkit-scrollbar-thumb{
    background-color: lightgray;
}
 .content-graphic .graphic {
    margin: auto;
   height: auto;
}
.indicadores .content-menu-graphic h3{
    font-size: 1em;
    font-weight: 700;
}
.indicadores .content-menu-graphic .btn-show{
    width: 100%;
    align-items: center;
    border: 0;
    border-radius: 10px;
    background-color: white;
    padding-top: 0.75em;
}
.indicadores .content-menu-graphic  li{
    position: relative;
    margin-bottom: 1em;
}
.indicadores .content-btn button:hover .progress .progress-bar{
    background-color: white !important;
}
.indicadores .content-btn button .progress{
    background-color: #D2D2D2;
}


.article{
    display: flex;
    flex-wrap: wrap;
    padding: 1.25em;
    margin: 0.25em;
}
.article h2{
    font-size: 1.6em;
    font-weight: 700;
}
.article h3{
    font-size: 1.2em;
    font-weight: 400;
}
.article a span{
    position: absolute;
    font-size: 1.5em;
    bottom: 0;
    right:0;
    color: #65D7F9;
}
.article>a{
    position: relative;
    padding: 1em 0 0 0;
}
.article a:hover{
    color: #45EC9C;
    text-decoration: none;
}
.article a:hover .fa{
    color: #45EC9C !important;
}
.article img{
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    opacity: 0.5;
    filter: blur(1px);
}
.main-subtitle{
   font-size: 0.75em;
   padding-left: 1.3em;
   font-weight: 600;
}
.top-stories .main-title::before{
    background: url(/img/indicadores/stories-title.png) no-repeat center;
    background-size: contain;
    padding-right: 1.2em;
}
.top-stories .content-descargar{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.top-stories .content-descargar a .fa{
    font-size: 2em;
    color: #65D7F9;
}
.content-article{
    min-height: 70vh;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.stories-detalle .content-article img{
    width: 80%;
    aspect-ratio: 1/1.5;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    margin: auto;
}
.stories-detalle .content-article a{
    color: black;
    font-weight: 500;
    margin: auto;
    margin-top: 1.5em;
    border-radius: 50px;
}
.stories-detalle .content-article a span{
    color: white;
}
.btn-violet{
    color: white;
    background-color: #8062E0;
}
.content-collapse.accordion>.card>.card-header{
    padding: 0;
    background-color: transparent;
}
.content-collapse.accordion>.card>.card-header button{
    border-radius: 15px;
    border: none;
    margin-bottom: 1em;
    background-color: white;
    padding: 0.75em 1.25em;
}
.content-collapse.accordion>.card>.card-header>h2{
    font-size: 1.2em;
}
.content-collapse.accordion>.card>.card-header .btn{
    font-weight: 600;
    font-size: 1em;
}
.content-collapse.accordion>.card{
    border: none;
    background-color: transparent;
}
.content-collapse.accordion>.card .card-body{
    background-color: white;
    margin-top: -1.25em;
    margin-bottom: 1em;
    border-radius: 0 0 20px 20px;
    padding-top: 1.25em;
    z-index: 0;
}
.accordion>.card button.btn:focus{
    box-shadow: none;
}
.content-collapse.accordion>.card>.card-header button.color-violet:focus {
    background-color: #8062E0;
}
.content-collapse.accordion>.card>.card-header button.color-green:focus {
    background-color:#45EC9C;
}
.content-collapse.accordion>.card>.card-header button.color-cyan:focus {
    background-color:#65D7F9;
}
.content-collapse.accordion>.card>.card-header button.color-gray:focus {
    background-color:#7D7D7D;
}
.content-collapse.accordion>.card>.card-header button:focus{
    color: white !important;
}
.stories-detalle table tr:first-of-type th, .top-stories table tr:first-of-type td{
    border-top: none;
}
.border-violet td,.border-violet th{
    border-color: #8062E0;
}
.border-cyan td,.border-cyan th{
    border-color:#65D7F9;
}
.border-green td,.border-green th{
    border-color:#45EC9C;
}
.stories-detalle .card-body .table td{
    color:#ACACAC;
}

#collapseManagement .table td.border-top-0{
    width: 100%;
    min-width: 200px;
}
.graphic div{
    margin-left: auto;
    margin-right: auto;
}

.voceros-individual  .content-view .content-graphic .graphic{
    width: 406px !important;
}
.voceros-individual  .content-view .graphic-bar{
    width: 300px !important;
    margin: auto;
}
.accordion .card:not(:first-of-type) .card-body .graphic div{
    margin-left: auto !important;
    margin-right: auto !important;
}
.table-medio td{
    font-size: 0.65em;
    border-top: 0;
    vertical-align: middle;
}
.table-medio tr:nth-last-of-type(odd) p{
    color: #45EC9C;
    font-size: 1.75em;
    font-weight: 600;
    margin-bottom: 0;
}
.table-medio tr:nth-last-of-type(even) p{
    color:#65D7F9;
    font-size: 1.75em;
    font-weight: 600;
    margin-bottom: 0;
}
.table-medio tr:nth-last-of-type(even){
    background-color: #F3F3F3;
}
.table-medio tr td:first-of-type{
    border-radius: 10px 0 0 10px;
    padding-left: 1em;
}
.table-medio tr td:last-of-type{
    border-radius: 0 10px 10px 0;
    padding-right: 1em;
}
.alcance.table-medio tr:nth-last-of-type(even){
    background: transparent;
}
.indicadores-medios .main-title::before{
    background: url(/img/indicadores/medios-title.png) no-repeat center;
    background-size: contain;
    padding-right: 1.2em;
}
@media (min-width: 1200px){
    .content-graphic ul{
        justify-content:unset;
    }
    .stories-detalles .content-article img{
        margin: auto auto auto 0;
    }
    .stories-detalles  .content-article a {
        margin: 1.5em auto auto 0;
    }
    #collapseManagement  .table td.border-top-0{
        width: 50%;
    }
}
/*VOCEROS*/
.voceros .main-title::before, .voceros-individual .main-title::before{
    padding-left: 1.7em;
    background: url(/img/indicadores/vocero-title.png) no-repeat center top;
    background-size: contain;
}
.voceros .main-title, .voceros-individual .main-title{
    font-size: 1.5em;
    font-weight: 600;
}
.card-vocero{
    max-width: 258px;
    position: relative;
    border-bottom: #8062E0 8px solid;
    margin: 0 auto;
}

.card-vocero  a:first-of-type{
    position: absolute;
    z-index: 2;
    top: 1em;
    right: 1em;
    font-size: 0.5em;
}
.card-vocero a:hover{
    text-decoration: none;
    color: black;
}
.card-vocero  a:first-of-type span{
    width: 100%;
    text-align: center;
    font-size: 3em;
}
.card-vocero a:first-of-type span:before{
    border-radius: 50px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.147);
}
.card-vocero a:last-of-type{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
    padding: 1em 0.75em;
}
.card-vocero a h3{
    width: 100%;
    padding-top: 1em;
    padding-left: 1em;
    font-size: 1.2em;
    color: black;
}
.card-vocero h3 span{
    font-weight: 500;
    font-style: italic;
}
.card-vocero .graphic-bar{
    max-width: 100% ;
    padding-left: 0;

}
.card-vocero .graphic-bar div{
    width: 100% !important;
}
.card-vocero .graphic-bar div canvas{
    width: 100% !important;
}
.bubble-img-border{
    max-width: 161px;
    width: 90%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: #8062E0 4px solid;
}
.voceros-individual .bubble-img-border{
    border-width: 8px;
    max-width: 258px;
}

.voceros-individual .content-descargar{
    text-align: center;
}
.voceros-individual .content-descargar .btn-green{
    border-radius: 50px;
    color: black;
    font-weight: 600;
    margin: 1em 0;
}
.voceros-individual div:nth-of-type(2) ul li span{
    font-weight: 600;
}
.content-btn button{
    background-color: white;
    border-radius: 10px;
    padding: 0.375em 1em;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.147);
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
    border: none;
}
.voceros-individual a:hover{
    text-decoration: none;
}
.content-btn button.color-green:hover{
    background-color: #45EC9C !important;
    color: white;
}
.content-btn button.color-violet:hover{
    background-color:#8062E0 !important;
    color: white;
}
.content-btn button.color-cyan:hover{
    background-color:#65D7F9 !important;
    color: white;
}
.content-btn button.color-gray:hover{
    background-color:#7D7D7D !important;
    color: white;
}
.voceros-individual .content-view .box-white>h3{
    border-radius: 10px;
    padding: 0.4em 1em;
    font-size: 1.2em;
}
.content-view{
    flex-wrap: wrap;
    align-content: space-between;
}
.content-view .content-graphic{
    display: flex;
    flex-wrap: wrap;
    width:100%
}
#voceroTonalidad.content-view .box-white{
    height: 49%;
}

.content-view .small{
    font-size: 0.75em;
}
.legend-graphic-x ul{
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}
.voceros-individual .content-view .small span{
    font-size: 1em;
    font-weight: 600;
}
.box-enlace{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1em;
}
.box-enlace>div{
    position: relative;
    width: 50%;
}
.box-enlace .title{
    font-size: 1em;
    font-weight: 600;
}
.box-enlace .data{
    font-size: 2em;
    font-weight: 700;
    text-align: center;
}
.box-enlace .fa-chevron-circle-right{
    position: absolute;
    right: 0;
    top: 20%;
}

#carouselPublicacion{
    width: 80%;
}
#carouselPublicacion .carousel-inner{
    aspect-ratio: 1/1.3;
    border-radius: 20px;
}
#carouselPublicacion img{
    object-fit: cover;
    object-position: center top;
}
#carouselPublicacion button{
    color: #8062E0;
}
#carouselPublicacion .carousel-control-prev{
    right: 100%;
    left: unset;
}
#carouselPublicacion .carousel-control-next{
    left: 100%;
    right: unset;
}
#voceroSubProyectos .box-white:first-of-type{
    min-height: 75%;
}
/*Region*/

.region .main-title::before{
    background: url(/img/indicadores/region-title.png) no-repeat center;
    filter: invert(51%) sepia(93%) saturate(5130%) hue-rotate(171deg) brightness(98%) contrast(106%);
    background-size: contain;
    margin-right: 0.5em;
}
.region .header-box{
    font-size: 1.2em;
}
.region.cono-norte a.header-box h3, .region.cono-sur a.header-box h3{
    font-size: 1em;
}
.region .box-beige {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 0.5em;
}


.flag{
    font-weight: 600;
    font-size: 0.75em;
    margin-top: auto;
    margin-bottom: auto;
}
.flag.circle:before{
    border-radius: 50%;
}
.flag-colombia::before, .flag-colombia.flag-after::after{
    background: url('img/indicadores/COL-flag-x.png') no-repeat center;
}
.flag-ecuador::before, .flag-ecuador.flag-after::after{
    background: url('img/indicadores/ECU-flag-x.png') no-repeat center;
}
.flag-mexico::before, .flag-mexico.flag-after::after{
    background: url('img/indicadores/MEX-flag-x.png') no-repeat center;
}
.flag-venezuela::before, .flag-venezuela.flag-after::after{
    background: url('img/indicadores/VEN-flag-x.png') no-repeat center;
}
.flag-argentina::before, .flag-argentina.flag-after::after{
    background: url('img/indicadores/ARG-flag-x.png') no-repeat center;
}
.flag-peru::before, .flag-peru.flag-after::after{
    background: url('img/indicadores/PER-flag-x.png') no-repeat center;
}
.flag-paraguay::before, .flag-paraguay.flag-after::after{
    background: url('img/indicadores/PRY-flag-x.png') no-repeat center;
}
.flag-brasil::before, .flag-brasil.flag-after::after{
    background: url('img/indicadores/BR-flag-x.png') no-repeat center;
}
.flag::before{
    content: '';
    background-size: contain;
    padding: 1em;
    margin-right: 0.5em;
}
.flag.flag-after::after{
    content: '';
    background-size: contain;
    padding: 1em;
    margin-left: 0.5em;
}
.flag.flag-after::before{
    content: none;
}
.region a:hover{
    text-decoration: none;
}
.region a.bg-gray:hover{
    background-color: #45EC9C !important;
    color: white;
}
.region-pais>h3{
    font-size: 1.5em;
}
/*tonalidad*/
.tonalidad div .box-white:first-of-type, .proyecto div .box-white:first-of-type, .marca div .box-white:first-of-type{
    height: 50vh;
}
.tonalidad .main-title::before{
    background: url(/img/indicadores/tonalidad-title.png) no-repeat center;
    filter: invert(51%) sepia(93%) saturate(5130%) hue-rotate(171deg) brightness(98%) contrast(106%);
    background-size: contain;
    margin-right: 0.5em;
}
/*gestion*/
.gestion .main-title::before{
    background: url(/img/indicadores/gestion-title.png) no-repeat center;
    filter: invert(51%) sepia(93%) saturate(5130%) hue-rotate(171deg) brightness(98%) contrast(106%);
    background-size: contain;
    margin-right: 0.5em;
}
/*marca*/
.marca .main-title::before{
    background: url(/img/indicadores/marca-title.png) no-repeat center;
    filter: invert(51%) sepia(93%) saturate(5130%) hue-rotate(171deg) brightness(98%) contrast(106%);
    background-size: contain;
    margin-right: 0.5em;
}
/*proyecto*/
.proyecto .main-title::before{
    background: url(/img/indicadores/proyecto-title.png) no-repeat center;
    filter: invert(51%) sepia(93%) saturate(5130%) hue-rotate(171deg) brightness(98%) contrast(106%);
    background-size: contain;
    margin-right: 0.5em;
}
.proyecto .progress, .indicadores .progress{
    width: 90%;
    height: 25px;
}
.proyecto .accordion h3{
    font-size: 1em;
}


@media (min-width: 1200px){
    .content-btn a{
        margin-bottom: 0;
    }
    .box-enlace .title{
        font-size: 1.5em;
    }
    .voceros-individual  .content-view .content-graphic .graphic-bar {
        width: 406px !important;
    }
    .tonalidad .graphic, .proyecto .graphic{
        height: 100% !important;
    }
    .indicadores .content-view .graphic, .indicadores .content-view  .graphic>div, .marca .graphic, .marca .graphic>div {
        width: 100%;
        height: 100% ;
    }
    .gestion .graphic {
        height: 80% !important;
    }
    .gestion div .box-white:first-of-type{
        height: 50vh;
    }
}
/*Inbassadors*/
.buscador-x-fecha .filtro-body{
    background-color: var(--smart-color-green);
}
.buscador-x-fecha .filtro-body .content-date{
    color:var(--smart-color-green)
}
.buscador-x-fecha .content-date input[type="text"].text-date {
    width: 6em;
    background-color: transparent;
    border: none;
}
.buscador-x-fecha .content-date input[type="text"].text-date::placeholder{
    font-weight: 500;
    color: var(--smart-color-green);
    text-align: right;
    padding-right: 1em;
    content:'\f078'
}

.buscador-x-fecha .content-date input[type="date"] {
    background-color: transparent;
    border: none;
    outline: none;
    width: 10em;
    font-size: 0.75em;
    color:var(--smart-color-green);
}
.buscador-x-fecha .content-date input[type="date"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    width: 0;
}
.buscador-x-fecha .filtro-body .content-date::before{
    filter: brightness(0) saturate(100%) invert(77%) sepia(60%) saturate(486%) hue-rotate(87deg) brightness(97%) contrast(90%);
}
.buscador-x-fecha  .filtro-body .content-send button{
    color:white
}
.buscador-x-fecha .filtro-body .content-send {
    background-color: transparent;
}
.buscador-x-fecha .filtro-body .content-send button:first-of-type {
    border-color: white;
}
#section_inbassadors h2.header-box{
    font-size: 1.2em;
}
.header-outline-bg{
    border: 1px solid;
    border-radius: 10px;
    font-size: 1.2em;
    padding: 0.375em 0.75em;
}
.h-o-green{
    border-color: var(--smart-color-green);
    color:var(--smart-color-green);
    background-color:rgba(69, 236, 156,0.1)
}
.h-o-cyan{
    border-color: var(--smart-color-cyan);
    color:var(--smart-color-cyan);
    background-color: rgba(101,215,249,0.1);
}
.h-o-violet{
    border-color: var(--smart-color-violet);
    color:var(--smart-color-violet);
    background-color: rgba(128,98,224,0.1);
}
.small-75{
    font-size: 0.75em;
}

.donut-chart{
    width: 2.5em;
    height: 2.5em;

}
.chart-mobile{
    min-height: 30vh;
}
.chart-mobile button{
    font-size: 1.4em;
}
.chart-mobile button span{
    font-size: 0;
}
.btn.focus, .btn:focus{
    box-shadow: none;
}
#section_inbassadors .lista-voceros{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#section_inbassadors .lista-voceros h3{
    font-weight: bold;
    font-size: 1.2em;
    padding-left: 0.5em;
}
#section_inbassadors .lista-voceros h3 span{
    font-weight: 500;
    font-style: italic;
}
#section_inbassadors .lista-voceros div{
    text-align: center;
}
#section_inbassadors .lista-voceros div a{
    color: black;
    text-transform: uppercase;
}
#section_inbassadors .lista-voceros div a:hover{
    text-decoration: none;
    color: var(--smart-color-green);
}
#section_inbassadors .p-btn{
    padding: 0.3em 0 0.3em 0.75em;
}
#section_inbassadors .p-btn:hover{
    background-color: white;
    color: var(--smart-color-violet);
    text-decoration: none;
}
#section_inbassadors .icon{
    font-size: 1.75em;
    vertical-align: middle;
    padding-left: 0.25em;
}
.button-box{
    height: 10em;
    border-radius: 10px;
    position: relative;
}
.button-box a{
    height: 100%;
    color: white;
}
.button-box a:hover{
    text-decoration: none;
    color: darkgray;
}
.button-box div i{
    position: absolute;
    font-size: 2.5em;
    top: 40%;
    right: -10%;
    box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 44%);
    border-radius: 50%;
    aspect-ratio: 1/1;
}
@media (min-width: 1200px){
    .list-button li{
        width: 70%;
    }
}
/*Individual performance lista*/
.performance .top-post .post-box, #section_inbassadors_top_post .top-post .post-box{
    aspect-ratio: 1/1;
    width: 100%;
}
.post-box{
    border-radius: 1em;
    border:var(--smart-color-green) 2px solid;
    object-fit: cover;
    object-position: center top;
}
.top-post .post-title{
    font-size: 1.25em;
    font-weight: 600;
}
.top-post .bar-invertido{
    aspect-ratio: 3/1;
}
@media (min-width: 1200px){
    .vh-lg-100{
        height: 100vh;
    }
}
/*individualperormance post*/
.performance .img-1x2-border{

    aspect-ratio: 1/2;
    object-fit: cover;
    object-position: center top;
    width: 100%;
    border: var(--smart-color-green) 4px solid;
    border-radius: 1em;
    padding: 0;
}
.performance .img-1x2-border:hover{
    transform: scale3d(1.5, 1.5, 1.5);
    border: none;
    object-fit: contain;
    aspect-ratio: 1/4;
    z-index: 100;
    position: relative;
}
.top-post .info-list>li>ul>li{
    display: flex;
    border-bottom: 0.75px solid var(--smart-color-violet);
    padding-bottom: 0.375em;
}
.vh-50{
    height: 50vh;
}
@media (min-width: 1200px){
    .vh-lg-auto{
        height: auto;
    }
}
/*inbassadors reactions*/
#section_inbassadors_top_reactions .bubble-img-border{
    width: 5rem;
}
#section_inbassadors_top_reactions .top-reactions>ul:first-of-type>li h3{
    font-weight: 600;
    font-size: 0.8rem;
}
.li-center{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#mis_eventos a:hover{
    color: var(--smart-color-cyan);
}
.box-flex{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 1rem;
}
/*mis actividades eventos*/
.list-item li{
    list-style:disc ;
}
.mark-cyan::marker{
    color: var(--smart-color-cyan);
}
.mark-green::marker{
    color: var(--smart-color-green);
}
.mark-violet::marker{
    color: var(--smart-color-violet);
}
/*Modal*/
.modal-box{
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
}
.modal-box .carousel.slide, .slide-outer{
    display: flex;
    align-items: center;
}
.slide-outer{
    width: 70%;
}
.slide-outer .carousel-control-next, .slide-outer .carousel-control-prev{
    width: 10%;
}
.modal-box .carousel-control-next,.slide-outer .carousel-control-next {
    right: -15%;
}
.modal-box .carousel-control-prev, .slide-outer .carousel-control-prev{
    left: -15%;
}
.modal-box .carousel .carousel-inner{
    width: 70vw;
    border-radius: 1.5rem;
}
.modal-box .carousel img{
    width: 100%;
    aspect-ratio: 1/2.3;
    object-fit:cover;
    object-position: center top;
    border-radius: 1rem;
}
.modal-box .close{
    position: absolute;
    top: 3%;
    right: 3%;
    z-index: 500;
    font-size: 2.5rem;
    font-weight: 400;
    opacity: 1;
}
.modal-box .carousel-control-next i, .modal-box .carousel-control-prev i{
    font-size: 4em;
    opacity: 1;
}
.slide-outer .carousel-control-next i,.slide-outer .carousel-control-prev i{
    font-size: 2em;;
}
.modal-box .carousel-indicators li, .slide-outer .carousel-indicators li{
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/*modal publicaciones*/
.modal-box.post .carousel .carousel-inner{
    width: 80vw;
}
.modal-box.post .carousel img{
    aspect-ratio:  1.5/3;
}
@media (min-width: 1024px){
    .modal-box.post .carousel .carousel-inner{
        width: 35vw;
    }
    .modal-box.post .carousel img{
        aspect-ratio:  1.5/2.2;
    }

    .modal-box .carousel img{
        width: 60%;
        aspect-ratio: 1/1;
        object-fit:cover;
        object-position: center top;
        border-radius: 10px;
        margin: auto;
    }
}
/*mis actividades |Influenciadores*/
.scroll{
    height: 90%;
    overflow-x: hidden;
}
.scroll::-webkit-scrollbar {
    background-color: gray;
    width: 9px;
}
.scroll::-webkit-scrollbar-track {
    background-color:white;
}
.scroll.scroll-violet::-webkit-scrollbar-thumb{
    background-color: var(--smart-color-violet);
}
.vh-75{
    height: 75vh;
}
#campaña .pagination{
    position: absolute;
    top: 105%;
    left: 25%;
}
#section_actividades .graphic-bar-x {
    width: 250px;
}
@media (min-width: 1024px){
    #section_actividades .graphic-bar-x {
        width: 500px;
    }
}
/**TODO: HACER  icon-entrevista y demas*/
.title-icon:before{
    content: '';
    padding-left: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/** Datatable activitites  **/
.dataTables_length{
    display: initial;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    padding: 0.5rem!important;
    width: auto;
}
.dataTables_length label{
    font-size: 12px;
    line-height: 1.1;
    margin: 0;
}
.dataTables_length label .custom-select{
    color: #8062E0;
    border-color: #8062E0;
    padding: 0.25rem!important;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    height: auto;
}
.dataTables_info{
    font-size: 0.75em;
    color: rgba(0,0,0,.5)!important;
}
#filterr_paginate{
    display: flex;
    justify-content: end;
}
#filterr_paginate .pagination{
    display: flex;
    justify-content: end;
}
#filterr_paginate .pagination #filterr_previous{
    margin-right: 20vh;
}
#filterr_paginate .pagination #filterr_previous a{
    color: #8062E0;
    border: none;
    background-color: transparent;
}
#filterr_paginate .pagination #filterr_next{
    margin-left: 20vh;
}
#filterr_paginate .pagination #filterr_next a{
    color: #8062E0;
    border: none;
    background-color: transparent;
}
#filterr_paginate .pagination .page-item a{
    background-color: #8062E0;
    color: white;
    padding: 0em 0.5em;
}
#filterr_paginate .pagination .page-item.active a{
    border-color: gray;
}
#filterr_paginate .pagination .page-item:nth-child(2) a{
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}
#filterr_paginate .pagination .page-item:nth-last-child(2) a{
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.scroll .swiper-container,.swiper-container.two,.swiper-container.tree {
    height: auto;
}
#speaking_registro_fotografico .swiper-container,#speaking_publicaciones .swiper-container{
    height: 100%;
}
.two .box-white,.tree .box-white{
    margin-bottom: 50px;
}
.swiper-wrapper{
    align-items: center;
}
#speaking_opportunities .swiper-wrapper{
    /* width: 50%; */
    margin: auto;
}
.two .swiper-slide,.tree .swiper-slide{
    width: 50%!important;
}
#speaking_registro_fotografico .swiper-slide,#speaking_publicaciones .swiper-slide{
    width: 100%!important;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-align: center;
    width: 100%!important;
}
.scroll .swiper-slide {
    padding-bottom: 8vh;
}
.swiper-slide .action-modal{
    padding-bottom: 10%;
}
.swiper-button-next,.swiper-button-prev{
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: #65D7F9;
    background-image: none;
    width: auto;
    height: auto;
    margin-top: auto;
}
.swiper-button-next::before{
    content: "\f054";
}
.swiper-button-prev::before{
    content: "\f053";
}
.content_pagination{
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 2%;
    z-index: 10;
    height: auto;
}
.content_pagination .swiper-pagination{
    color: white;
    text-decoration: none;
    box-shadow: 10px 10px 8px -9px #0093c866;
    background-color: #65D7F9;
    padding: 0.375em 1em;
    border-radius: 50px;
    width: auto;
    position: relative;
    bottom: 0;
}
.sw-green .content_pagination .swiper-pagination{
    background-color: #45EC9C;
}
.scroll-violet .content_pagination .swiper-pagination{
    background-color: #8062E0;
    box-shadow: 10px 10px 8px -9px #8062e070;
}
.sw-green .swiper-button-next,.sw-green .swiper-button-prev{
    color: #45EC9C;
}
.scroll-violet .swiper-button-next,.scroll-violet .swiper-button-prev{
    color: #8062E0;
}
.img-slide{
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center top;
    width: 60%;
    padding-bottom: 0Vh;
    border-radius: 10px;
}
#view_campaña_1 .post-box{
    width: 100%;
}

/** Mis Reportes*/

.reporte-form{
    margin-bottom: 5%;
}
.reportes .btn-form{
    font-size: 1.5rem;
    border-radius: 10px;
    padding: 0.35rem 2rem;
    outline: none;
    border: none;
}
.reportes .table-reporte td {
    border: var(--smart-color-green) 1px solid;
    vertical-align: middle;
}
.reportes .table-reporte .active-tr {
    background-color: var(--smart-color-green);
    color: white;
}
.reportes .table-reporte .active-tr td{
    border: white 1px solid;
}
.reportes .table-reporte .active-tr td:last-of-type{
    background-color: white;
    border: var(--smart-color-green) 1px solid;

}
.reportes .reporte-buttons button{
    font-size: 1.25rem;
}
.reportes .reporte-buttons button:hover{
    background-color: white;
    color: var(--smart-color-green);
    transform: none;
}
.reportes .custom-input{
    width: 2rem;
    height: 2rem;
    outline: var(--smart-color-green) 1px solid;
    margin-left: 1rem;
}
.reportes .form-pdf label{
    display: flex;
    align-items: center;
}
.custom-control-input:checked~.custom-control-label::before{
    background-color: var(--smart-color-green);
    border-color: var(--smart-color-green);
}
.reportes .box-alert{
    font-weight: 600;
    background-color: var(--smart-color-green);
    border-radius: 0 0 10px 10px;
    padding: 1.75rem 0 0.75rem 0;
    margin-top: -1rem;
}
.reportes .custom-switch.switch-xl{
    transform: scale(2);
    height: 100%;
}
.reportes .btn.bg-white.color-green.active{
    background-color: var(--smart-color-green)!important;
    color: white;
}
.filtro-body .content-date,.reportes .content-date {
    display: flex;
    background-color: white;
    border-radius: 50px;
    color:#65D7F9;
    padding: 0.375em 0.75em;
    align-items: center;
}
.filtro-body .content-date div:nth-of-type(2), .reportes .content-date div:nth-of-type(2){
    width: 1%;
}
.filtro-body .content-date div, .reportes .content-date div{
    width: 50%;
}
.filtro-body .content-date::before, .reportes .content-date::before{
    content: '';
    background-image: url(img/calendar.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 1.2em;
    height: 1.2em;
}
.indicadores .content-date input[type="date"]::-webkit-calendar-picker-indicator, .reportes .content-date input[type="date"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    width: 0;
}
.indicadores .content-date input[type="text"].text-date, .reportes .content-date input[type="text"].text-date{
    width: 6em;
    background-color: transparent;
    border: none;
}
.indicadores .content-date input[type="date"], .reportes .content-date input[type="date"]{
    background-color: transparent;
    border: none;
    outline: none;
    width: 10em;
    font-size: 0.75em;
    color: #65D7F9;
}
.indicadores .content-date i, .reportes .content-date i{
    cursor: pointer;
}
.indicadores .content-date input[type="text"].text-date::placeholder, .reportes .content-date input[type="text"].text-date::placeholder{
    font-weight: 500;
    color: #65D7F9;
    text-align: right;
}
.indicadores .content-date input[type="text"].text-date::placeholder, .reportes .content-date input[type="text"].text-date::placeholder{
    padding-right: 1em;
    content:'\f078'
}

.reportes .scroll{
    overflow-x: inherit;
}
