/* Lottie Animation & Text – Frontend */
:root{
    --lottie-gap: clamp(16px,4vw,28px);
    --lottie-max-h: 456px;
    --lottie-min-h: 280px;
}
  
.lottie-animation-and-text {
    position: relative;
    overflow: hidden;
}

/* vertical bar from the top of the block to the center */
.lottie-animation-and-text-line {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 999999px;
    z-index: 2;
}

.lottie-animation-and-text-line-bg {
    position: relative;
    background-color: #0d0d0d;
    width: 20px;
    height: 100%;
}

.lottie-animation-and-text-line-bg::before,
.lottie-animation-and-text-line-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* left bottom */
.lottie-animation-and-text-line-bg::before {
    right: 19px;
    background-image: url("data:image/svg+xml;utf8,<svg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'><path d='M0 40H40V0C40 22.0914 22.0914 40 0 40Z' fill='%230D0D0D'/></svg>");
}

/* right bottom */
.lottie-animation-and-text-line-bg::after {
    left: 19px;
    background-image: url("data:image/svg+xml;utf8,<svg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'><path d='M40 40H0V0C0 22.0914 17.9086 40 40 40Z' fill='%230D0D0D'/></svg>");
}


  
.lottie-animation-and-text-bg {
    position: relative;
    z-index: 1;
}

.lottie-animation-and-text .lottie-animation-container {
    /* custom sizing if needed */
}

.lottie-animation-and-text-desc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/* wrapper */
.lottie-animation-and-text-desc-wpapper {
    position: relative;
    background-color: #0d0d0d;
    padding: 2.6px 4px;
    max-width: 180px;
    text-align: center;
}

/* left side */
.lottie-animation-and-text-desc-wpapper::before { 
    content: '';
    position: absolute;
    top: 0;
    left: -36px;
    transform: translateX(-50%);
    width: 79.75px;
    height: 50px;
    background: url("data:image/svg+xml;utf8,<svg width='79.75' height='50' viewBox='0 0 79.75 50' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 0H79.75V25H0Z M79.75 25V50H34.1062C33.662 50 33.302 49.5524 33.302 49V37.5C33.302 30.5965 28.8017 25 23.25 25H79.75Z' fill='%230D0D0D'/></svg>") 
                no-repeat center / contain;
}

/* right side (mirrored) */
.lottie-animation-and-text-desc-wpapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: -36px;
    transform: translateX(50%) scaleX(-1);
    width: 79.75px;
    height: 50px;
    background: url("data:image/svg+xml;utf8,<svg width='79.75' height='50' viewBox='0 0 79.75 50' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 0H79.75V25H0Z M79.75 25V50H34.1062C33.662 50 33.302 49.5524 33.302 49V37.5C33.302 30.5965 28.8017 25 23.25 25H79.75Z' fill='%230D0D0D'/></svg>") 
                no-repeat center / contain;
}



.lottie-animation-and-text-desc span {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #F2EEE6;
}
