@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&family=Bebas+Neue&display=swap');
:root {
    --ds-orange: #3e93cc;
    --ds-orangeneon: #fca311;

    --ds-blue: #00a6fb; --ds-blue-rgb: 0,166,251;
    --ds-pink: #c9184a; --ds-pink-rgb: 201,24,74;
    --ds-pink-light: #ff006e; --ds-pink-light-rgb: 255,0,110;
    --ds-yellow: #ffff3f; --ds-yellow-rgb: 255,255,63;
    --ds-blues: #00a6fb; --ds-blue-rgb: 0,166,251;
    --ds-pinks: #c9184a; --ds-pink-rgb: 201,24,74;
    --ds-pink-lights: #ff006e; --ds-pink-light-rgb: 255,0,110;
    --ds-yellows: #ffff3f; --ds-yellow-rgb: 255,255,63;
    --ds-purple: #513688; --ds-purple-rgb: 81, 54, 136;
    --ds-lila: #AC44EE; --ds-lila-rgb: 172,68,238;
    --ds-green: #0E402D;  --ds-green-rgb: 14,64,45;
    --lfp-red: #F15156;
    --lfp-red-rgb: 241, 81, 86;

    --lfp-blue: #0496FF;
    --lfp-blue-rgb: 4, 150, 255;

    --lfp-white: #fff;
    --lfp-white-rgb: 255, 255, 255;

    --lfp-black: #0a0a0a;
    --lfp-black-rgb: 10, 10, 10;

    --lfp-white-bg: #fff;
    --lfp-white-bg-rgb: 255, 255, 255;

    --lfp-black-bg: #121420;
    --lfp-black-bg-rgb: 35, 32, 32;

    --lfp-star: var(--lfp-red);
    --lfp-star-rgb: var(--lfp-red-rgb);

    --lfp-alt: var(--lfp-blue);
    --lfp-alt-rgb: var(--lfp-blue-rgb);

    --lfp-logo-white: url('../IMAGENES/LifeAndPenLight.svg');
    --lfp-logo-black: url('../IMAGENES/LifeAndPenDark.svg');

    --lfp-font: 'Lato';
    --lfp-font-alt: 'Bebas Neue'
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.lfp-star {
    color: var(--ds-orange) !important;
}

.lfp-alt {
    color: var(--lfp-alt) !important;
}

.lfp-star-bg {
    background-color: var(--lfp-star) !important
}

.lfp-alt-bg {
    background-color: var(--lfp-alt) !important
}

.lfp-black {
    color: var(--lfp-black) !important;
}

.lfp-black-bg {
    background-color: var(--lfp-black) !important;
}

.lfp-flex-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.lfp-font {
    font-family: var(--lfp-font) !important;
}

.lfp-font-alt {
    font-family: var(--lfp-font-alt) !important;
}

.lfp-blog-card {
    width: 310px;
    height: 560px;
    position: relative;
    border-radius: 0;
    margin: 9px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 28px 1px rgb(0 0 0 / 10%);
    z-index: 0;
    cursor: pointer;
    background-color: #fff;
}

.lfp-blog-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.lfp-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease-in;
}

.lfp-blog-card:hover .lfp-blog-image img {
    transform: scale(1.5);
}

.lfp-icono {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 1.25rem;
}

.lfp-icono svg {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: hidden;
    vertical-align: baseline;
    transform: scale(.9);
}

.lfp-circle,
.lfp-icono.lfp-circle {
    border-radius: 50%;
    overflow: hidden
}

.lfp-icono.lfp-circle svg {
    transform: scale(.9);
}

.lfp-icono.lfp-xxs {
    width: 24px;
    height: 24px;
    font-size: .75rem
}

.lfp-icono.lfp-xs {
    width: 32px;
    height: 32px;
    font-size: 1rem
}

.lfp-icono.lfp-sm {
    width: 56px;
    height: 56px;
    font-size: 1.5rem
}

.lfp-icono.lfp-md {
    width: 64px;
    height: 64px;
    font-size: 2.5rem
}

.lfp-icono.lfp-lg {
    width: 96px;
    height: 96px;
    font-size: 3.5rem
}

.lfp-icono.lfp-xl {
    width: 128px;
    height: 128px;
    font-size: 5rem
}

.lfp-icono.lfp-xxl {
    width: 200px;
    height: 200px;
    font-size: 10rem
}

.lfp-icono img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.lfp-ring {
    box-shadow: 0 0 0 4px
}

.lfp-blog-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.5rem;
    margin: 0;
    font-family: var(--lfp-font);
    color: var(--lfp-red);
    font-weight: 900;
}

.lfp-blog-body {
    display: block;
    padding: 9px 24px;
    position: relative;
    z-index: 0;
}

.lfp-blog-subtitle {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.25rem;
    margin: 0;
    margin-bottom: 12px;
    font-family: var(--lfp-font);
    color: rgba(var(--lfp-black-rgb), .6);
    font-weight: 400;
}

.lfp-blog-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    margin: 0;
    padding: 0;
    padding-top: 0.5rem;
    border-top: 1px rgba(var(--lfp-star-rgb), 1) solid;
    font-family: var(--lfp-font);
    color: rgba(var(--lfp-black-rgb), .8);
    font-weight: 400;
}

.lfp-blog-options {
    display: flex;
    justify-content: flex-end;
    font-family: var(--lfp-font);
    color: rgba(var(--lfp-black-rgb), .8);
    font-weight: 400;
    width: 100%;
}

.lfp-blog-options .lfp-icono {
    background-image: linear-gradient(45deg, var(--ds-orangeneon), var(--ds-orangeneon), var(--ds-orangeneon));
    cursor: pointer;
    margin: 9px;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    overflow: visible;
}

.lfp-counter {
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -9px;
    right: -10px;
    background-color: var(--lfp-black);
    color: #fff;
    border-radius: 50%;
    font-size: .6rem;
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.lfp-blog-footer {
    display: flex;
    padding: 9px 24px;
    margin-top: auto;
}

.lfp-link-button {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    cursor: pointer;
    max-height: 48px;
    font-family: var(--lfp-font);
    color: rgba(var(--lfp-black-rgb), .8);
    font-weight: 400;
    margin: 0;
    user-select: none;
    -moz-user-select: none;
    -ms-user-selec: none;
    -webkit-user-select: none;
}

.lfp-link-button:hover,
.lfp-link-button:focus {
    color: var(--ds-purple)
}

.lfp-button-option {
    width: auto;
    height: auto;
    position: relative;
    margin: 6px;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    overflow: hidden;
}

.lfp-button-option .lfp-icono {
    animation: flip-in-hor-top .5s cubic-bezier(.25, .46, .45, .94) both;
}

.lfp-button-option:not(.lfp-active) .lfp-fill {
    display: none !important;
}

.lfp-button-option.lfp-active .lfp-stroke {
    display: none !important;
}

.lfp-button-option.lfp-active .lfp-icono {
    background-color: var(--lfp-star);
    color: #fff;
    box-shadow: none;
}

.lfp-categorias-list {
    display: flex;
    align-items: center;
    list-style: none !important;
    transition: all .3s ease-in;
    padding: 0 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.lfp-date-text {
    font-size: 1.05rem;
    color: rgba(var(--lfp-black-rgb), .5);
    font-family: var(--lfp-font-alt);
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.lfp-blogs-dots {
    display: flex;
    list-style: none !important;
    justify-content: center;
}

.lfp-blogs-dots li {
    display: block;
    width: 19px;
    height: 19px;
    background-color: rgba(var(--lfp-black-rgb), .2);
    border-radius: 50%;
    margin: 6px;
    cursor: pointer;
}

.lfp-blogs-dots li.lfp-active {
    background-color: var(--lfp-star);
    animation: fade-in-top .3s cubic-bezier(.39, .575, .565, 1.000) both;
}

.lfp-login-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 4020;
    width: 100%;
    align-content: center;
    padding: 21px;
    background-image: linear-gradient(transparent, rgb(255 255 255 / 60%), rgb(255 255 255 / 60%));
    backdrop-filter: blur(24px);
}


.lfp-social-network .nav-link {
    text-decoration: none;
    color: var(--lfp-star);
    padding: 0;
    margin: 4px;
}

.lfp-picture-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    max-height: 600px;
}

.lfp-illustration {
    width: 200px;
    height: 200px;
    position: relative;
    background-image: var(--lfp-illustration);
    background-size: cover;
    background-position: center;
}

.lfp-social-network {
    display: flex;
    list-style: none;
    flex-direction: row;
    justify-content: center;
    margin: 0 8px;
    padding: 0;
    flex-wrap: wrap;
}

.lfp-information {
    width: calc(100% - 16px);
    margin: 0 8px;
    margin-top: 24px;
}

.lfp-login-form {
    width: 400px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 599.98px) {
    .lfp-information {
        width: calc(100% - 96px);
        margin: 0 48px;
    }

    .lfp-social-network {
        width: calc(100% - 96px);
        margin: 0 48px;
    }
}

.lfp-form-login {
    position: relative;
    padding: 2.5rem;
    width: 100%;
}

.lfp-label {
    color: var(--lfp-black);
    font-family: var(--lfp-font);
    font-size: 1rem;
    font-weight: bolder;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
}

.lfp-form-group {
    position: relative;
    margin-bottom: 1rem;
}

.lfp-input {
    width: 100%;
    position: relative;
    height: 40px;
    border-radius: 40px;
    border: 1px var(--lfp-star) solid;
    padding: 6px 16px;
    font-family: var(--lfp-font);
    font-size: 1rem;
    transition: all .2s ease-in;
    background-color: #fff;
}

.lfp-input:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(var(--lfp-star-rgb), .2);
}

.lfp-boton-ss {
    min-width: 160px;
    position: relative;
    height: 40px;
    border-radius: 10px;
    padding: 6px 12px;
    font-family: var(--lfp-font);
    font-size: 1rem;
    transition: all .2s ease-in;
    background-image: linear-gradient(45deg, var(--ds-orangeneon), var(--ds-orange), var(--ds-orange));
    border: 0;
    outline: 0;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.lfp-boton-ss:not(.lfp-boton-inverted):focus,
.lfp-boton-ss:not(.lfp-boton-inverted):hover {
    outline: 0;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(var(--lfp-star-rgb), .2);
}

.lfp-boton-inverted {
    background-color: transparent !important;
    color: var(--lfp-star) !important;
    box-shadow: 0 0 0 2px rgba(var(--lfp-star-rgb), 1);
}

.lfp-section-blogdata {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.lfp-section-blogdata .lfp-blog-options {
    justify-content: flex-start;
}

.lfp-section-blogdata *,
.lfp-section-blogdata *::before,
.lfp-section-blogdata *::after {
    box-sizing: border-box;
}


.lfp-gallery-box {
    width: calc(100% - 24px);
    height: 400px;
    position: relative;
    z-index: 1;
    overflow-y: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: auto;
    flex-direction: column;
    align-items: center;
    align-content: flex-start;
    margin: 12px;
    background-color: #000;
}

.lfp-gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
    cursor: pointer;
}

.lfp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.lfp-gallery-dots {
    width: 100%;
    height: 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-block-start: 0;
}

.lfp-gallery-dots li {
    width: 24px;
    height: 24px;
    display: block;
    margin: 6px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .3);
    cursor: pointer;
    transform: scale(.6);
}

.lfp-datablog-body {
    padding: 12px
}

.lfp-datablog-body .lfp-blog-content {
    width: 65%;
    margin: 96px auto
}

.lfp-comment-options .lfp-text-usuario {
    width: 100%;
    margin-bottom: 6px
}

.lfp-datablog-header {
    padding: 12px
}

.lfp-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(var(--lfp-black-rgb), .2);
    position: relative;
    margin: 8px 0;
}

.lfp-text-abstract {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--lfp-font);
    padding: 1rem;
    padding-bottom: 0;
}

.lfp-blog-content {
    width: 100%;
    min-height: 240px;
    font-family: var(--lfp-font);
    padding: 1rem;
    margin: auto;
}

@media(max-width: 600px) {
    .lfp-blog-content {
        width: 100%;
    }
}

.lfp-comment-user {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    margin: 16px 0;
}

.lfp-comment-user .lfp-icono {
    margin: 0 12px;
}

.lfp-comment-options {
    width: calc(100% - 72px);
    display: flex;
    flex-direction: column;
}

.lfp-comment-options button {
    width: 160px;
}

.lfp-text {
    font-family: var(--lfp-font);
    font-size: 1rem;
    color: rgba(var(--lfp-black-rgb), .8);
    text-align: start;
}

.lfp-textarea {
    width: 100%;
    position: relative;
    border-radius: 0;
    border: 1px rgba(var(--lfp-black-rgb), .2) solid;
    padding: 6px 16px;
    font-family: var(--lfp-font);
    font-size: 1rem;
    transition: all .2s ease-in;
    background-color: #fff;
    resize: none;
}

.lfp-textarea:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(var(--lfp-star-rgb), .2);
    border-color: var(--lfp-star);
}

.lfp-comments-toggle {
    width: 100%;
    position: relative;
    height: 40px;
    border-radius: 0;
    padding: 9px;
    font-family: var(--lfp-font);
    font-size: 1rem;
    transition: all .2s ease-in;
    background-color: #fff;
    border: 0;
    outline: 0;
    color: rgba(var(--lfp-black-rgb), .8);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lfp-comments-toggle:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgba(var(--lfp-star-rgb), .2);
}

.lfp-comment-list {
    display: flex;
    flex-direction: column-reverse;
}

.lfp-comments-toggle>.lfp-icono {
    transition: all .3s ease;
}

.lfp-comments-toggle.lfp-collapsed~* {
    display: none !important;
}

.lfp-comments-toggle:not(.lfp-collapsed) .lfp-expand-text {
    display: none !important;
}

.lfp-comments-toggle.lfp-collapsed .lfp-collapsed-text {
    display: none !important;
}

.lfp-comments-toggle:not(.lfp-collapsed) .lfp-icono {
    transform: rotate(180deg);
}

.lfp-w100 {
    width: 100% !important
}

.lfp-comment-options .lfp-blog-text {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 1rem;
    background-color: rgba(var(--lfp-star-rgb), .05);
    border-radius: 6px;
    display: block;
}

.lfp-image-controls {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-block: 0;
    margin-inline: 0;
    padding-block: 0;
    padding-inline: 0;
    position: fixed;
    z-index: 3020;
    bottom: 0;
    left: 0;
    background-color: rgb(0 0 0 / 60%);
}

.lfp-image-controls li {
    display: block;
    width: 48px;
    height: 48px;
    margin: 6px;
    transition: all .15s ease-in;
}

.lfp-image-controls li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lfp-image-controls li.lfp-active {
    box-shadow: 0 0 0 3px var(--lfp-star);
}

.lfp-image-preview {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1020;
}

.lfp-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lfp-user-blog {
    width: 100%;
    display: flex;
    align-items: center;
}

.lfp-text-usuario {
    width: calc(100% - 32px);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 9px;
    font-family: var(--lfp-font);
}

.lfp-user-box {
    padding: 9px
}

.lfp-social-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.lfp-social-group .lfp-h4 {
    font-weight: 300;
}

.lfp-network-share {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.lfp-network-share .lfp-link {
    text-decoration: none;
    color: var(--ds-orange);
    margin: 6px;
}

/* ANIMATIONS */
.slide-in-fwd-center {
    -webkit-animation: slide-in-fwd-center .4s cubic-bezier(.25, .46, .45, .94) both;
    animation: slide-in-fwd-center .4s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: translateZ(-1400px);
        transform: translateZ(-1400px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: translateZ(-1400px);
        transform: translateZ(-1400px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.slide-in-bck-center {
    -webkit-animation: slide-in-bck-center .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: slide-in-bck-center .7s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes slide-in-bck-center {
    0% {
        -webkit-transform: translateZ(600px);
        transform: translateZ(600px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes slide-in-bck-center {
    0% {
        -webkit-transform: translateZ(600px);
        transform: translateZ(600px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.bounce-in-top {
    -webkit-animation: bounce-in-top 1.1s both;
    animation: bounce-in-top 1.1s both
}

@-webkit-keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.bounce-in-fwd {
    -webkit-animation: bounce-in-fwd 1.1s both;
    animation: bounce-in-fwd 1.1s both
}

@-webkit-keyframes bounce-in-fwd {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: scale(.7);
        transform: scale(.7);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: scale(.84);
        transform: scale(.84);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    89% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes bounce-in-fwd {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    38% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1
    }

    55% {
        -webkit-transform: scale(.7);
        transform: scale(.7);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    72% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    81% {
        -webkit-transform: scale(.84);
        transform: scale(.84);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    89% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    95% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.flip-in-hor-top {
    -webkit-animation: flip-in-hor-top .5s cubic-bezier(.25, .46, .45, .94) both;
    animation: flip-in-hor-top .5s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes flip-in-hor-top {
    0% {
        -webkit-transform: rotateX(-80deg);
        transform: rotateX(-80deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }
}

@keyframes flip-in-hor-top {
    0% {
        -webkit-transform: rotateX(-80deg);
        transform: rotateX(-80deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }
}

.swing-in-top-bck {
    -webkit-animation: swing-in-top-bck .6s cubic-bezier(.175, .885, .32, 1.275) both;
    animation: swing-in-top-bck .6s cubic-bezier(.175, .885, .32, 1.275) both
}

@-webkit-keyframes swing-in-top-bck {
    0% {
        -webkit-transform: rotateX(70deg);
        transform: rotateX(70deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1
    }
}

@keyframes swing-in-top-bck {
    0% {
        -webkit-transform: rotateX(70deg);
        transform: rotateX(70deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1
    }
}

.rotate-in-center {
    -webkit-animation: rotate-in-center .6s cubic-bezier(.25, .46, .45, .94) both;
    animation: rotate-in-center .6s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes rotate-in-center {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotate-in-center {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}


.fade-in-top {
    -webkit-animation: fade-in-top .6s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: fade-in-top .6s cubic-bezier(.39, .575, .565, 1.000) both
}

@-webkit-keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-top {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

.fade-in-bottom {
    -webkit-animation: fade-in-bottom .6s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: fade-in-bottom .6s cubic-bezier(.39, .575, .565, 1.000) both
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

.fade-in-left {
    -webkit-animation: fade-in-left .6s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: fade-in-left .6s cubic-bezier(.39, .575, .565, 1.000) both
}

@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

.fade-in-right {
    -webkit-animation: fade-in-right .6s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: fade-in-right .6s cubic-bezier(.39, .575, .565, 1.000) both
}

@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }
}

.fade-out-bottom {
    -webkit-animation: fade-out-bottom .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-bottom .7s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes fade-out-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }
}

@keyframes fade-out-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0
    }
}

.fade-out-top {
    -webkit-animation: fade-out-top .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-top .7s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes fade-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }
}

@keyframes fade-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }
}

.fade-out-left {
    -webkit-animation: fade-out-left .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-left .7s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes fade-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }
}

@keyframes fade-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }
}

.fade-out-right {
    -webkit-animation: fade-out-right .7s cubic-bezier(.25, .46, .45, .94) both;
    animation: fade-out-right .7s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes fade-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0
    }
}

@keyframes fade-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0
    }
}

.lfp-time {
    animation-duration: 1s !important;
}

.lfp-time-xxs {
    animation-duration: 150ms !important;
}

.lfp-time-xs {
    animation-duration: 300ms !important;
}

.lfp-time-sm {
    animation-duration: 600ms !important;
}

.lfp-time-md {
    animation-duration: 900ms !important;
}

.lfp-time-lg {
    animation-duration: 1200ms !important;
}

.lfp-time-xl {
    animation-duration: 3000ms !important;
}

.lfp-time-xxl {
    animation-duration: 5000ms !important;
}

.ls-blogs-headerbox {
    position: relative;
    z-index: 0;
}

.ls-blogs-headerbox::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    inset: 0;
    background-image: linear-gradient(#fff, rgb(255 255 255 / 80%), #fff);
    z-index: -1;
}

.ls-blogs-headerbox::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.ls-blogs-header {
    width: 100%;
    min-height: 96px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px;
    overflow: hidden;
    justify-content: center;
    margin-top: 5%;
}

.ls-negocio-name {
    display: inline-block;
    width: 100%;
    font-size: 2rem;
    font-family: var(--lfp-font-alt);
    color: var(--ds-orange);
    overflow: hidden;
    white-space: nowrap;
    text-align: start;
    text-overflow: ellipsis;
}

.ls-negocio-name::after {
    content: ' Blogs';
    font-size: 2rem;
    font-family: var(--lfp-font-alt);
    color: rgba(var(--lfp-black-rgb), .8);
    -webkit-animation: fade-in-left .4s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: fade-in-left .4s cubic-bezier(.39, .575, .565, 1.000) both;
    display: inline-block;
    animation-delay: 300ms;
    margin-left: 6px;
}

.ls-data-negocio {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: center;
    width: 0;
    flex: 1;
    animation: fade-in-bottom .3s cubic-bezier(.39, .575, .565, 1.000) both;
}

.ls-informacion-negocio {
    display: flex;
    flex-direction: column;
    width: 0;
    flex: 1;
}

.ls-adicional-perfil {
    width: 100%;
    min-height: 240px;
}

.lfp-text-perfil,
.lfp-biografia-perfil {
    display: block;
    font-family: var(--lfp-font);
    font-size: 1.15rem;
    color: rgba(var(--lfp-black-rgb), .8);
    text-align: justify;
    transition: all .3s ease-in;
}

/* .lfp-text-perfil.lfp-blur-ground,
.lfp-biografia-perfil.lfp-blur-ground {
    background-color: rgba(255, 255, 255, .2);
    backdrop-filter: blur(12px);
}

.lfp-text-perfil {
    border-right: 1px rgba(var(--lfp-black-rgb), .3) solid;
} */

.lfp-link-toggle .lfp-icono {
    transition: all .2s ease-in;
}

.ls-data-negocio[aria-expanded="true"] .lfp-link-toggle .lfp-icono {
    transform: rotate(180deg);
}

.ls-data-negocio[aria-expanded="true"] {
    width: 100%;
    flex: unset;
    justify-content: center;
    /* animation: fade-in-top .3s cubic-bezier(.39, .575, .565, 1.000) both; */
}

.ls-adicional-perfil .lfp-flex-title {
    font-family: var(--lfp-font-alt);
    font-size: 2rem;
}

@media (max-width: 1199.98px) {
    .ls-data-negocio {
        width: 100%;
        flex: unset;
        justify-content: center;
    }

    .lfp-text-perfil {
        border-right: unset;
        border-bottom: 1px rgba(var(--lfp-black-rgb), .3) solid;
    }
}

.lfp-list-categorias {
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px rgba(var(--lfp-black-rgb), .2) solid;
    padding-bottom: 4px;
    justify-content: center;
    margin-top: 16px;
}

.lfp-list-categorias .nav-link {
    font-size: 1.2rem;
    font-family: var(--lfp-font-alt);
    color: rgba(var(--lfp-black-rgb), .8);
}

.ls-data-item {
    display: flex;
    flex-direction: column;
    width: 640px;
    height: 480px;
    padding: 1.25rem;
    justify-content: center;
    align-items: flex-start;
}

.ls-data-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--ds-orange);
    font-size: 2rem;
    font-family: var(--lfp-font-alt);
}

.ls-data-perfil {
    width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(var(--lfp-black-rgb), .8);
    font-size: 1.25rem;
    font-family: var(--lfp-font-alt);
    margin: 0;
}
.ls-data-preview {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(var(--lfp-black-rgb), .8);
    font-size: 1.15rem;
    font-family: var(--lfp-font);
}

.ls-data-previews {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(var(--lfp-black-rgb), .8);
    font-size: 1.15rem;
    font-family: var(--lfp-font);
}

.ls-carousel-box {
    margin-top: 24px;
    padding-bottom: 40px;
    position: relative;
    z-index: 0;
}

.ls-carousel-home {
    display: flex;
    flex-wrap: nowrap;
}

.ls-carousel-box .carousel-indicators {
    width: 100%;
    bottom: -40px;
    margin: 0;
}

.ls-carousel-box .carousel-indicators [data-bs-target] {
    background-color: var(--ds-orange);
}

.ls-carousel-box .carousel-indicators [data-bs-target]:not(.active) {
    opacity: .2;
}

.ls-blog-item {
    width: 100%;
    height: 480px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    text-decoration: none;
}

.ls-image-item {
    width: 400px;
    height: 480px;
}

.ls-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgb(0 0 0 / 5%);
}

.carousel-control-next,
.carousel-control-prev {
    background-color: #fff;
    color: var(--lfp-star);
    position: relative;
    width: 64px;
    height: 480px;
    font-size: 1.75rem;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: var(--lfp-star);
    opacity: 1;
}

@media (max-width: 575.98px) {

    .ls-blog-item {
        flex-wrap: wrap;
        height: auto;
    }

    .ls-image-item,
    .ls-data-item {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {


    .ls-image-item {
        width: 280px;
    }

    .ls-data-item {
        width: 300px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .ls-image-item {
        width: 400px;
    }

    .ls-data-item {
        width: 480px;
    }
}

@media (min-width: 1200px) {
    .ls-image-item {
        width: 600px
    }

    .ls-data-item {
        width: 600px
    }
}

@media (min-width: 1440px) {
    .ls-image-item {
        width: 800px
    }

    .ls-data-item {
        width: 600px
    }
}

@media (min-width: 1920px) {
    .ls-image-item {
        width: 900px
    }

    .ls-data-item {
        width: 900px
    }
}

@media (min-width: 2560px) {
    .ls-image-item {
        width: 1024px
    }

    .ls-data-item {
        width: 1440px
    }
}

@media (min-width: 3840px) {
    .ls-image-item {
        width: 1200px
    }

    .ls-data-item {
        width: 2560px
    }
}

.ls-blogs-bottom {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.ls-blogs-bottom .lfp-flex-title {
    width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(var(--lfp-black-rgb), .8);
    font-size: 1.25rem;
    font-family: var(--lfp-font-alt);
}

.ls-blogs-populares {
    width: 800px
}

.ls-blogs-populares .ls-blog-item {
    width: 100%;
    height: auto;
    margin-bottom: 21px;
}

.ls-blogs-populares .ls-blog-item .ls-image-item {
    width: 240px;
    height: 240px;
}

.ls-blogs-populares .ls-blog-item .ls-data-item {
    width: 560px;
    height: 240px;
}

.ls-blogs-populares .ls-blog-item .ls-data-title {
    -webkit-line-clamp: 1;
    font-size: 1.5rem;
}

.ls-blogs-populares .ls-blog-item .ls-data-preview {
    -webkit-line-clamp: 2;
    font-size: 1rem;
    margin: 0;
}

.ls-blogs-populares .ls-blog-item .ls-data-item .lfp-date-text {
    margin-top: 12px !important;
}

.ls-blogs-populares .ls-blog-item .ls-data-item .lfp-boton-ss {
    margin-top: 12px !important;
}

.ls-blogs-recientes {
    width: 400px
}

.ls-blogs-recientes .ls-blog-item {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    align-items: center;
}

.ls-blogs-recientes .ls-blog-item>.lfp-icono {
    width: 48px;
    height: 48px;
    font-family: var(--lfp-font-alt);
    color: var(--ds-orange);
    margin-right: 9px;
    background-color: rgba(var(--lfp-black-rgb), .05);
}

.ls-blogs-recientes .ls-blog-item .ls-data-item {
    width: 0;
    flex: 1;
    height: 88px;
    padding: 0;
    justify-content: center;
    cursor: pointer;
}

.ls-blogs-recientes .ls-blog-item .ls-data-title,
.ls-blogs-recientes .ls-blog-item .ls-data-perfil {
    -webkit-line-clamp: 2;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 575.98px) {

    .ls-blogs-bottom {
        flex-wrap: wrap;
    }

    .ls-blogs-populares {
        width: calc(100% - 64px);
        margin: 32px;
    }

    .ls-blogs-populares .ls-blog-item .ls-image-item {
        width: 100%;
        height: 160px;
    }

    .ls-blogs-recientes {
        width: calc(100% - 64px);
        margin: 32px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .ls-blogs-populares {
        width: 320px
    }

    .ls-blogs-populares .ls-blog-item .ls-image-item {
        width: 300px;
        height: 120px;
    }

    .ls-blogs-recientes {
        width: 192px
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .ls-blogs-populares {
        width: 500px
    }

    .ls-blogs-populares .ls-blog-item .ls-image-item {
        width: 320px;
    }

    .ls-blogs-recientes {
        width: 248px
    }
}

@media (min-width: 1440px) {
    .ls-blogs-populares {
        width: 900px
    }

    .ls-blogs-populares .ls-blog-item .ls-image-item {
        width: 300px
    }

    .ls-blogs-populares .ls-blog-item .ls-data-item {
        width: 600px
    }

    .ls-blogs-recientes {
        width: 520px
    }

    .ls-blogs-recientes .ls-blog-item>.lfp-icono {
        width: 56px;
        height: 64px;
        font-size: 1.5rem
    }
}

@media (min-width: 1920px) {
    .ls-blogs-populares {
        width: 1200px
    }

    .ls-blogs-populares .ls-blog-item .ls-image-item {
        width: 480px
    }

    .ls-blogs-populares .ls-blog-item .ls-data-item {
        width: 720px
    }

    .ls-blogs-recientes {
        width: 640px
    }

    .ls-blogs-recientes .ls-blog-item>.lfp-icono {
        width: 64px;
        height: 64px;
        font-size: 1.75rem
    }
}

@media (min-width: 2560px) {
    .ls-blogs-populares {
        width: 1600px
    }

    .ls-blogs-populares .ls-blog-item .ls-image-item {
        width: 640px
    }

    .ls-blogs-populares .ls-blog-item .ls-data-item {
        width: 900px
    }

    .ls-blogs-recientes {
        width: 900px
    }

    .ls-blogs-recientes .ls-blog-item>.lfp-icono {
        width: 80px;
        height: 80px;
        font-size: 2rem
    }
}

@media (min-width: 3840px) {
    .ls-blogs-populares {
        width: 2400px
    }

    .ls-blogs-populares .ls-blog-item .ls-image-item {
        width: 800px
    }

    .ls-blogs-populares .ls-blog-item .ls-data-item {
        width: 1600px
    }


    .ls-blogs-recientes .ls-blog-item {
        margin-bottom: 24px
    }

    .ls-blogs-recientes {
        width: 1400px
    }

    .ls-blogs-recientes .ls-blog-item>.lfp-icono {
        width: 96px;
        height: 96px;
        font-size: 2.5rem
    }
}

.ls-categoria-item {
    border-bottom: 1px rgba(var(--lfp-black-rgb), .3) solid;
}

.ls-categoria-item .ls-data-item {
    height: 56px !important;
}

.ls-categoria-item>.lfp-icono {
    background-color: transparent !important;
}

.ls-categoria-item .ls-data-title {
    font-size: 1.1rem !important;
    color: rgba(var(--lfp-black-rgb), .8);
}

.ls-footer-blogs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* logo lustkar */

.ls-lustkar-logo {
    display: inline-flex;
    align-items: center;
    margin: 0 6px;
}

.ls-lustkar-logo img {
    height: 40px;
}

.ls-navbar-lustkar {
    height: 64px;
}

.ls-navbar-lustkar.lfp-active {
    box-shadow: 0 0 4px rgb(0 0 0 / 30%)
}

.ls-navbar-lustkar {
    background-color: #fff;
}

.ls-navbar-lustkar .nav-link {
    font-family: var(--lfp-font-alt);
}

.ls-link-session {
    background-color: var(--lfp-star) !important;
    color: #fff !important;
    border-radius: 24px;
    padding: 8px 16px !important;
    box-shadow: 0 0 14px var(--lfp-star);
    min-width: 128px;
    text-align: center;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: bounce-in-fwd 1.2s cubic-bezier(.39, .575, .565, 1.000) both !important;
}

.ls-navbar-lustkar .navbar-toggler {
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    animation: fade-in-bottom .3s cubic-bezier(.39, .575, .565, 1.000) both;
}

.ls-navbar-lustkar .navbar-toggler:focus {
    border: 0;
    box-shadow: 0 0 0 2px rgba(var(--lfp-star-rgb), .2);
}

@media (max-width: 991.98px) {
    .ls-navbar-lustkar .navbar-collapse {
        position: fixed;
        width: 100%;
    }

    .ls-navbar-lustkar .navbar-collapse .navbar-nav {
        position: fixed;
        width: 100%;
        height: calc(100% - 64px);
        background-color: #fff;
        top: 64px;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ls-navbar-lustkar .navbar-collapse .navbar-nav .nav-link {
        animation: fade-in-top .3s cubic-bezier(.39, .575, .565, 1.000) both;
    }
}

.ls-footer-lustkar {
    display: flex;
    flex-wrap: wrap;
    background-color: #d72538;
    background-image: linear-gradient(45deg, black, rgb(215 37 56 / 60%)), url(https://lustkar.com/IMAGENES/car_1280.jpg);
    background-size: cover;
    background-position: center;
    justify-content: space-around;
    align-items: center;
    margin-top: 48px;
}



.ls-footer-links {
    justify-content: center;
}

.ls-footer-links .nav-link {
    color: #fff;
    text-decoration: none;
    font-family: var(--lfp-font-alt);
    margin: 6px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.ls-footer-kimerkia {
    display: flex;
    width: 100%;
    background-color: #000;
    align-items: center;
    padding: 12px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.lfp-kimerkia img {
    filter: invert(1);
    opacity: .3;
}

.ls-data-kimerkia {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}

.ls-data-kimerkia p {
    margin-bottom: 0;
}

.ls-kimerkia-box {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
}

.ls-footer-social .nav-link {
    padding: 0;
    margin: 6px;
}

.ls-footer-social .nav-link .lfp-icono {
    background-color: #fff;
    color: var(--lfp-star);
    border-radius: 50%;
}

@media (max-width: 575.98px) {
    .ls-footer-item {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ls-data-kimerkia {
        align-items: center;
    }
}

.lfp-modal {
    display: none;
    position: fixed;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgb(0 0 0 / 60%);
    padding: 24px;
}

.lfp-modal.lfp-show {
    display: block;
}

.lfp-modal.lfp-component-blur.lfp-show~* {
    filter: blur(9px);
    opacity: .3;
}

.lfp-modal.lfp-modal-transition {
    overflow: hidden !important;
    animation: fadeOut .3s;
}

.lfp-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border: 0;
    width: 95%;
    position: relative;
    animation-duration: .3s;
    animation-fill-mode: forwards !important;
    border-radius: 6px;
}

.lfp-modal.lfp-show {
    display: flex;
    z-index: 3020;
    animation: fadeIn .3s;
}

.lfp-modal.lfp-show.lfp-modal-center {
    justify-content: center;
    align-items: center;
}

.lfp-modal-header {
    position: relative;
    padding: 16px;
}

.lfp-modal-header .lfp-h5 {
    font-size: 2rem;
    font-weight: bolder;
    text-align: center;
}

.lfp-modal-body {
    position: relative;
    padding: 16px;
}

.lfp-modal-footer {
    position: relative;
    padding: 1rem;
}

.lfp-modal-close {
    float: right;
    font-weight: bold;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 21px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color .3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 1;
}

.lfp-modal-gallery {
    padding: 0;
}

.lfp-modal-gallery .lfp-modal-content {
    background-color: transparent;
    border-radius: 0;
    color: #fff;
    width: 100%;
}

.lfp-modal-gallery .lfp-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    z-index: 3020;
    background-color: #000;
}

.ls-footer-social {
    justify-content: center;
}

.ls-blogs-populares:empty {
    display: none;
}

.ls-blogs-populares:empty~.ls-blogs-recientes {
    width: 100%;
}

.ls-blogs-populares:empty~.ls-blogs-recientes {
    display: flex;
    flex-wrap: wrap;
}

.ls-blogs-populares:empty~.ls-blogs-recientes .ls-blog-item {
    width: 280px;
    margin: 9px;
}

.lfp-text-perfil:empty, .lfp-text-perfil:empty ~ .lfp-flex-title { display: none!important}
.lfp-biografia-perfil:empty, .lfp-biografia-perfil:empty ~ .lfp-flex-title { display: none!important}

.ds-footer-web{width:100%;min-height:560px;position:relative;z-index:1;display:flex;flex-wrap:nowrap;align-items:center;justify-content:center;background-image: linear-gradient(22.5deg, rgb(0 0 0 / 70%), transparent);background-color: var(--ds-star);}
