body {
    font-family: 'Open Sans', sans-serif;
}

/* Skeleton/Placeholder para lazy loading */
.img-skeleton {
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

body.light .img-skeleton {
    background: linear-gradient(90deg,
            #f0f0f0 25%,
            #e0e0e0 50%,
            #f0f0f0 75%);
}

body.dark .img-skeleton {
    background: linear-gradient(90deg,
            #2a2a2a 25%,
            #3a3a3a 50%,
            #2a2a2a 75%);
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.img-container img {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.img-container img.loaded {
    opacity: 1;
}

/* END : Skeleton/Placeholder para lazy loading */

hr {
    border-top: 1px solid rgba(0, 0, 0, .5);
}

/* HEADER */

.background_logo {
    background-color: #DF5A5F;
}

#logo {
    max-height: 150px;
}

.etiquetas {
    font-size: 0.8rem;
    white-space: nowrap;
    flex-grow: 1;
    flex-basis: 0;
}

#button_top {
    text-decoration: none;
    display: inline-block;
    background-color: #B64D54;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    top: 90%;
    right: 4%;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button_top::after {
    content: "\f286";
    font-family: 'bootstrap-icons';
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button_top:hover {
    cursor: pointer;
    background-color: #333;
}

#button_top:active {
    background-color: #555;
}

#button_top.show {
    opacity: 1;
    visibility: visible;
}

.progress2 {
    position: fixed;
    top: 45px;
    z-index: 1;
    width: 100%;
    transition: all 0.5s;
}

.progress2-container {
    width: 100%;
    height: 2px;
    background: #ccc2;
}

.progress2-bar {
    height: 2px;
    background: #B64D54;
    width: 0%;
}

.progress3 {
    position: fixed;
    top: 45px;
    z-index: 1;
    width: 100%;
    transition: all 0.5s;
}

.progress3-container {
    width: 100%;
    height: 2px;
    background: #1F1F1F;
}

.progress3-bar {
    height: 2px;
    background: #B64D54;
    width: 0%;
}

.animateMe {
    animation: progreso;
}

@keyframes progreso {
    0% {
        top: -100;
        opacity: 0;
    }

    100% {
        top: 100;
        opacity: 1;
    }
}

/* HEADER */

footer p {
    color: #000;
    font-size: 0.8rem;
}

/* SINGLE */

 .single_nota a {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
}

 .single_nota a:hover {
  color: inherit;
  font-weight: bold;
  text-decoration: underline;
}
 

 .single_nota img {
  width: 100%;
  height: auto;
}

.single_nota .redes i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    background-color: #B64D54;
    color: #fff;
    border-radius: 50%;
    min-width: 40px !important;
    min-height: 40px !important;
}

/* SINGLE */

/* AJUSTES CELULAR */
@media (max-width: 800px) {
    #button_top {
        top: 88%;
        right: 5%;
    }
}

/* AJUSTES CELULAR */