html, body{
    height: 100%;
}

[ng\:cloak], [ng-cloak], .ng-cloak {
    display: none !important;
}

._Sidebar{
    width: 100%;
}

.sidebarCSS .row{
    margin: 0px;
}

@media (min-width: 601px){
    .sidebarCSS .row{
        height: 100%;
    }
}

/* ------------ Col 1 de sidebarCSS -------------*/

.sidebarCSS .row .colum1{
    padding: 0px;
}

/* ------------ Col 2 de sidebarCSS -------------*/
.sidebarCSS .row .colum2{
    padding: 0px;
    background-color: #CCCCCC;
}

.sidebarCSS .row .colum2 hr{
    margin: 0px;
}

.sidebarCSS .row .colum2:nth-child(2){
    /*height: 100%;*/
}

/* ------------ Col 2 > newsletter_suscripcion -------------*/
.newsletter_suscripcion{
    width: 100%;
    padding: 6px !important;
    color: #6D6C68;
}

.newsletter_suscripcion div{
    width: 100%;
    background-color: #FFFFFF;
}

.newsletter_suscripcion div img{
    width: 100%;
}

.newsletter_suscripcion div h5{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.newsletter_suscripcion div p{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    color: #767771;
}

.newsletter_suscripcion div form{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.newsletter_suscripcion div input[type=email]:focus:not(readonly){
    border-bottom: 1px solid #095322;
    box-shadow: 0 1px 0 0 #095322;;
}

.newsletter_suscripcion div input[type=email]:focus:not(readonly)+label{
    color: #095322;
}

.newsletter_suscripcion div form label{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.newsletter_suscripcion div a{
    width: 100%;
    display: block;
    background-color: #095322;
    color: #FFFFFF;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.newsletter_suscripcion div a:hover{
    opacity: 0.9;
}

/* ------------ Col 2 > links_secciones -------------*/
.links_secciones div{
    padding: 4px !important;
}

.links_secciones div div{
    padding: 2px !important;
    height: 120px;
}

.links_secciones div div a{
    display: block;
    height: 100%;
    background-color: #0C973A;
    color: white;
    width: 100%;
    padding: 2px;
    text-align: center;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.links_secciones div div a:hover{
    opacity: 0.9;
    background-color: #095322;
}

.links_secciones div div a img{
    width: 40%;
    text-align: center;
    margin-top: 10px;
}

.links_secciones div div a p{
    width: 100%;
    font-size: 11px;
    line-height: 11px;
}

/* Badge NUEVO con efecto pulsante zoom in/out */
.links_secciones .badge-nuevo-container {
    position: relative;
}

.links_secciones .badge-nuevo {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #E53935;
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 8px;
    line-height: 1.1;
    padding: 2px;
    pointer-events: none;
    animation: pulse-badge-sidebar 1.5s ease-in-out infinite;
}

@keyframes pulse-badge-sidebar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 600px){
    .links_secciones .badge-nuevo {
        width: 28px;
        height: 28px;
        font-size: 6px;
        bottom: 3px;
        right: 3px;
    }
}