@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;500;600;700&display=swap");

body.ls-hide #ls-container,
body.ls-hide #ls-openButton,
body.ls-hide #ls-fab,
body.ls-hide #ls-trigger,
body.ls-hide #ls-trigger-dialog {
    display: none !important;
}


#ls-container.videocall {
    width: 60vh !important;
    height: 70vh !important;
}

#ls-container.supsis-large-mode {
    width: 50vw !important;
    height: 70vh !important;
}

#supsis-iframe{
    aspect-ratio: unset !important;
    max-width: unset !important;
    object-fit: unset !important;
}


#ls-container {
    position: fixed;
    z-index: 99999999999;
    bottom: 0;
    height: 550px;
    background-color: transparent;
    transform: translateY(550px);
    opacity: 0;
}

body.v2 #ls-container {
    margin-bottom: 30px;
}

@media screen and (max-width: 950px) {
    #ls-container {
        margin-right: 0;
    }
}

body.ls-opened #ls-container {
    /*pointer-events:all;*/
    display: block;
    transition: all 0.3s ease-in-out;
}

body.ls-opened #ls-container.v2 {
    animation-name: fadein;
    animation-duration: 0.5s;
}

body.ls-closed #ls-container.v2 {
    animation-name: fadeout;
    animation-duration: 0.5s;
}

body.ls-opened #ls-container.v2.bottomLeft {
    animation: slideIn 0.5s forwards !important;
    transform-origin: left bottom;
}

body.ls-closed #ls-container.v2.bottomLeft {
    animation: slideOut 0.3s forwards !important;
    transform-origin: left bottom;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%) translateY(100%);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-100%) translateY(100%);
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        transform: translateX(0) translateY(0);
    }
    to {
        transform: translateX(100%) translateY(100%);
    }
}

#ls-iframe-loading {
    /*  position: absolute;
      top: 50%;
      left: 50%;*/
    position: relative;
    width: 100%;
    height: 100%;
}

#ls-container iframe {
    width: 100%;
    height: 100%;
}

#ls-openButton {
    position: fixed;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    bottom: 10px;
    filter: drop-shadow(0px 0px 5px #00000044);
    animation: ls-butonStart 0.3s forwards;
    z-index: 99999999999999999999;
    display: flex;
}

#ls-openButton:hover {
    filter: drop-shadow(0px 0px 9px #00000044);
}

#ls-openButton:active {
    filter: drop-shadow(0px 0px 12px #00000044);
}

@keyframes ls-butonStart {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes ls-bounce {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes ls-swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes ls-shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

@keyframes ls-tada {
    0% {
        transform: scale(1);
    }
    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

@keyframes ls-wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes ls-jello {
    0%,
    11.1%,
    to {
        transform: none;
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
    to {
        transform: none;
    }
}

@keyframes ls-bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes ls-flash {
    from {
        opacity: 0;
    }
    10%,
    90%,
    to {
        opacity: 0.2;
    }
    20%,
    80%,
    to {
        opacity: 0.4;
    }
    30%,
    70%,
    to {
        opacity: 0.6;
    }
    40%,
    60%,
    to {
        opacity: 0.8;
    }
    50%,
    to {
        opacity: 1;
    }
    0%,
    to {
        opacity: 0;
    }
}

@keyframes ls-pulse {
    from {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes ls-rubberBand {
    from {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes ls-flip {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -190deg);
    }
    50% {
        transform: perspective(400px) rotate3d(0, 1, 0, -170deg);
    }
    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, -170deg) scale3d(1, 1, 1);
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, 170deg) scale3d(0.95, 0.95, 0.95);
    }
    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 0deg) scale3d(1, 1, 1);
    }
}

#ls-openButton img,
#ls-openButton svg {
    width: auto !important;
    height: 100% !important;
    background: transparent !important;
}

#ls-footer {
    bottom: 0px;
    position: absolute;
    z-index: -1;
    right: 0px;
    width: 100%;
}
#ls-footer-full {
    bottom: 0px;
    position: absolute;
    /*z-index: -1;*/
    right: 0px;
    width: 100%;
}

svg.triangle-svg {
    scale: 1 !important;
    fill: none !important;
    background: transparent !important;
    cursor: pointer;
    width: auto !important;
    height: auto !important;
    stroke: none !important;
}

.triangle-wrapper,
.powered-by,
#ls-minimize-button {
    display: none !important;
}

.ls-v2 #ls-footer .triangle-wrapper,
.ls-v2 #ls-footer .powered-by {
    display: unset !important;
}

.ls-v2 #ls-footer #ls-minimize-button {
    display: none !important;
}

#ls-footer .triangle-wrapper {
    position: absolute;
    bottom: -125px;
}

#ls-footer .powered-by {
    position: absolute;
    top: 25px;
    left: 20px;
    width: 215px;
}

#ls-footer .powered-by .powered-image {
    width: 67% !important;
    margin-left: 23% !important;
    margin-top: -8% !important;
    background: white !important;
    padding: 5px 15px 5px 15px !important;
    border-radius: 20px !important;
    box-shadow: 0px 0px 10px #00000044 !important;

}

#ls-footer .powered-by-right .powered-image {
    width: 45%;
    margin-left: 27%;
    margin-top: -2%;
    padding: 5px 15px 5px 15px;
    border-radius: 20px;
    position: absolute;
    top: -25px;
    z-index: 99999999999;
}


#ls-minimize-button {
    font-size: 20px;
    top: 42px;
    right: 10px;
    position: absolute;
    cursor: pointer;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

#ls-minimize-button img {
    padding-top: 14px;
    width: 19px;
    display: none;
}

@media screen and (max-width: 750px) {
    #ls-container {
        margin: 0 !important;
        border-left: 0px;
        border-right: 0px;
        border-top-width: 7px;
        right: 0px;
        height: 90%;
        width: 100%;
        max-height: 90%;
        z-index: 99999999999;
    }

    #ls-minimize-button {
        top: -40px;
        left: 10px;
        border-bottom-left-radius: 0px;
        border-top-right-radius: 10px;
    }

    #ls-openButton {
        width: fit-content;
        right: 0px;
        padding-left: 0px;
        padding-right: 0px;
        text-align: center;
    }

    .ls-opened {
        overflow: hidden;
    }

    #ls-footer {
        display: none;
    }

    #ls-triangle-footer {
        display: none;
    }
}

#ls-container.mobile-version {
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 0px);
    max-height: inherit;
}

#ls-container.mobile-version #ls-minimize-button {
    position: initial;
    float: left;
    margin-left: 1.5rem;
}

h1.ls-loading {
    position: absolute;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    left: 35%;
    top: 58%;
    margin-left: -20px;
    z-index: 999999;
    color: black;
}

.custom-loading {
    position: absolute;
    top: 50%;
    margin-left: -50px;
    left: 50%;
    animation: speeder 0.4s linear infinite;
}

.custom-loading > span {
    height: 5px;
    width: 35px;
    background: #000;
    position: absolute;
    top: -19px;
    left: 60px;
    border-radius: 2px 10px 1px 0;
}

.ls-base span {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 100px solid #000;
    border-bottom: 6px solid transparent;
}

.ls-base span:before {
    content: "";
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    right: -110px;
    top: -16px;
}

.ls-base span:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 55px solid #000;
    border-bottom: 16px solid transparent;
    top: -16px;
    right: -98px;
}

.ls-face {
    position: absolute;
    height: 12px;
    width: 20px;
    background: #000;
    border-radius: 20px 20px 0 0;
    transform: rotate(-40deg);
    right: -125px;
    top: -15px;
}

.ls-face:after {
    content: "";
    height: 12px;
    width: 12px;
    background: #000;
    right: 4px;
    top: 7px;
    position: absolute;
    transform: rotate(40deg);
    transform-origin: 50% 50%;
    border-radius: 0 0 0 2px;
}

.custom-loading > span > span:nth-child(1),
.custom-loading > span > span:nth-child(2),
.custom-loading > span > span:nth-child(3),
.custom-loading > span > span:nth-child(4) {
    width: 30px;
    height: 1px;
    background: #000;
    position: absolute;
    animation: fazer1 0.2s linear infinite;
}

.custom-loading > span > span:nth-child(2) {
    top: 3px;
    animation: fazer2 0.4s linear infinite;
}

.custom-loading > span > span:nth-child(3) {
    top: 1px;
    animation: fazer3 0.4s linear infinite;
    animation-delay: -1s;
}

.custom-loading > span > span:nth-child(4) {
    top: 4px;
    animation: fazer4 1s linear infinite;
    animation-delay: -1s;
}

@keyframes fazer1 {
    0% {
        left: 0;
    }
    100% {
        left: -80px;
        opacity: 0;
    }
}

@keyframes fazer2 {
    0% {
        left: 0;
    }
    100% {
        left: -100px;
        opacity: 0;
    }
}

@keyframes fazer3 {
    0% {
        left: 0;
    }
    100% {
        left: -50px;
        opacity: 0;
    }
}

@keyframes fazer4 {
    0% {
        left: 0;
    }
    100% {
        left: -150px;
        opacity: 0;
    }
}

@keyframes speeder {
    0% {
        transform: translate(2px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -3px) rotate(-1deg);
    }
    20% {
        transform: translate(-2px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 3px) rotate(-1deg);
    }
    60% {
        transform: translate(-1px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-2px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(2px, 1px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.ls-longfazers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ls-longfazers span {
    position: absolute;
    height: 2px;
    width: 20%;
    background: #000;
}

.ls-longfazers span:nth-child(1) {
    top: 20%;
    animation: lf 0.6s linear infinite;
    animation-delay: -5s;
}

.ls-longfazers span:nth-child(2) {
    top: 40%;
    animation: lf2 0.8s linear infinite;
    animation-delay: -1s;
}

.ls-longfazers span:nth-child(3) {
    top: 60%;
    animation: lf3 0.6s linear infinite;
}

.ls-longfazers span:nth-child(4) {
    top: 80%;
    animation: lf4 0.5s linear infinite;
    animation-delay: -3s;
}

@keyframes lf {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

@keyframes lf2 {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

@keyframes lf3 {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

@keyframes lf4 {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

.iucre-loading {
    width: 100%;
    height: 100%;
    /*border:1px solid red;*/
    background-image: url("/static/img/bg_iucre.jpg");
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-size: 20px;
    background-size: contain;
    background-color: #1b212e;
}

.iucre-loading > div {
    text-align: center;
    padding-top: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

:root {
    /* animations constants */
    --steps: 10;
    --saturation: 80%;
    --lightness: 60%;
    --hue-offset: 320;
    --duration: 5000ms;

    /* generate some colors */
    --color-01: hsl(calc(360 / var(--steps) * 1 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-02: hsl(calc(360 / var(--steps) * 2 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-03: hsl(calc(360 / var(--steps) * 3 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-04: hsl(calc(360 / var(--steps) * 4 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-05: hsl(calc(360 / var(--steps) * 5 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-06: hsl(calc(360 / var(--steps) * 6 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-07: hsl(calc(360 / var(--steps) * 7 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-08: hsl(calc(360 / var(--steps) * 8 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-09: hsl(calc(360 / var(--steps) * 9 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-10: hsl(calc(360 / var(--steps) * 10 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-11: hsl(calc(360 / var(--steps) * 11 + var(--hue-offset)), var(--saturation), var(--lightness));
    --color-crayon: #f4f4f8;

    /* build some backgrounds */
    --bg-01-a: no-repeat left 0% top / 11% 0% linear-gradient(to right, var(--color-01), var(--color-02));
    --bg-01-b: no-repeat left 0% top / 11% 100% linear-gradient(to right, var(--color-01), var(--color-02));
    --bg-02-a: no-repeat left 11.11% bottom / 11% 0% linear-gradient(to right, var(--color-02), var(--color-03));
    --bg-02-b: no-repeat left 11.11% bottom / 11% 100% linear-gradient(to right, var(--color-02), var(--color-03));
    --bg-03-a: no-repeat left 22.22% top / 11% 0% linear-gradient(to right, var(--color-03), var(--color-04));
    --bg-03-b: no-repeat left 22.22% top / 11% 100% linear-gradient(to right, var(--color-03), var(--color-04));
    --bg-04-a: no-repeat left 33.33% bottom / 11% 0% linear-gradient(to right, var(--color-04), var(--color-05));
    --bg-04-b: no-repeat left 33.33% bottom / 11% 100% linear-gradient(to right, var(--color-04), var(--color-05));
    --bg-05-a: no-repeat left 44.44% top / 11% 0% linear-gradient(to right, var(--color-05), var(--color-06));
    --bg-05-b: no-repeat left 44.44% top / 11% 100% linear-gradient(to right, var(--color-05), var(--color-06));
    --bg-06-a: no-repeat left 55.55% bottom / 11% 0% linear-gradient(to right, var(--color-06), var(--color-07));
    --bg-06-b: no-repeat left 55.55% bottom / 11% 100% linear-gradient(to right, var(--color-06), var(--color-07));
    --bg-07-a: no-repeat left 66.66% top / 11% 0% linear-gradient(to right, var(--color-07), var(--color-08));
    --bg-07-b: no-repeat left 66.66% top / 11% 100% linear-gradient(to right, var(--color-07), var(--color-08));
    --bg-08-a: no-repeat left 77.77% bottom / 11% 0% linear-gradient(to right, var(--color-08), var(--color-09));
    --bg-08-b: no-repeat left 77.77% bottom / 11% 100% linear-gradient(to right, var(--color-08), var(--color-09));
    --bg-09-a: no-repeat left 88.88% top / 11% 0% linear-gradient(to right, var(--color-09), var(--color-10));
    --bg-09-b: no-repeat left 88.88% top / 11% 100% linear-gradient(to right, var(--color-09), var(--color-10));
    --bg-10-a: no-repeat left 99.99% bottom / 11% 0% linear-gradient(to right, var(--color-10), var(--color-11));
    --bg-10-b: no-repeat left 99.99% bottom / 12% 100% linear-gradient(to right, var(--color-10), var(--color-11));
}

.rainbow-marker-loader {
    height: 2rem;
    width: 10rem;
    max-width: 100%;
    border: 0.5rem solid var(--color-crayon);
    border-radius: 0.5rem;
    animation: infinite alternate rainbow-fill var(--duration) ease-in-out;
    box-sizing: border-box;
    position: relative;
    margin: 1rem;
    background: var(--bg-01-a), var(--bg-02-a), var(--bg-03-a), var(--bg-04-a), var(--bg-05-a), var(--bg-06-a),
        var(--bg-07-a), var(--bg-08-a), var(--bg-09-a), var(--bg-10-a);
}

.rainbow-marker-loader::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    border-radius: 0.5rem;
    box-sizing: border-box;
    margin-top: -7.5%;
    margin-left: -2.5%;
    animation: infinite alternate move-marker var(--duration) ease-in-out;
    background: no-repeat left 0% top / 3rem 50%
            linear-gradient(to bottom right, transparent, transparent 40%, var(--color-crayon) 40%),
        no-repeat left 0% bottom / 3rem 50%
            linear-gradient(to top right, transparent, transparent 40%, var(--color-crayon) 40%),
        no-repeat left 3rem bottom / 100% 100% linear-gradient(var(--color-crayon), var(--color-crayon));
}

@keyframes move-marker {
    10% {
        transform: translate(5%, 100%) rotate(2.5deg);
    }
    20% {
        transform: translate(20%, 0) rotate(-5deg);
    }
    30% {
        transform: translate(30%, 100%) rotate(2.5deg);
    }
    40% {
        transform: translate(40%, 0) rotate(-5deg);
    }
    50% {
        transform: translate(50%, 100%) rotate(2.5deg);
    }
    60% {
        transform: translate(60%, 0) rotate(-5deg);
    }
    70% {
        transform: translate(70%, 100%) rotate(2.5deg);
    }
    80% {
        transform: translate(80%, 0) rotate(-5deg);
    }
    90% {
        transform: translate(90%, 100%) rotate(2.5deg);
    }
    100% {
        transform: translate(100%, 0) rotate(-5deg);
    }
}

@keyframes rainbow-fill {
    0% {
        background: var(--bg-01-a), var(--bg-02-a), var(--bg-03-a), var(--bg-04-a), var(--bg-05-a), var(--bg-06-a),
            var(--bg-07-a), var(--bg-08-a), var(--bg-09-a), var(--bg-10-a);
    }
    10% {
        background: var(--bg-01-b), var(--bg-02-a), var(--bg-03-a), var(--bg-04-a), var(--bg-05-a), var(--bg-06-a),
            var(--bg-07-a), var(--bg-08-a), var(--bg-09-a), var(--bg-10-a);
    }
    20% {
        background: var(--bg-01-b), var(--bg-02-b), var(--bg-03-a), var(--bg-04-a), var(--bg-05-a), var(--bg-06-a),
            var(--bg-07-a), var(--bg-08-a), var(--bg-09-a), var(--bg-10-a);
    }
    30% {
        background: var(--bg-01-b), var(--bg-02-b), var(--bg-03-b), var(--bg-04-a), var(--bg-05-a), var(--bg-06-a),
            var(--bg-07-a), var(--bg-08-a), var(--bg-09-a), var(--bg-10-a);
    }
    40% {
        background: var(--bg-01-b), var(--bg-02-b), var(--bg-03-b), var(--bg-04-b), var(--bg-05-a), var(--bg-06-a),
            var(--bg-07-a), var(--bg-08-a), var(--bg-09-a), var(--bg-10-a);
    }
    50% {
        background: var(--bg-01-b), var(--bg-02-b), var(--bg-03-b), var(--bg-04-b), var(--bg-05-b), var(--bg-06-a),
            var(--bg-07-a), var(--bg-08-a), var(--bg-09-a), var(--bg-10-a);
    }
    60% {
        background: var(--bg-01-b), var(--bg-02-b), var(--bg-03-b), var(--bg-04-b), var(--bg-05-b), var(--bg-06-b),
            var(--bg-07-a), var(--bg-08-a), var(--bg-09-a), var(--bg-10-a);
    }
    70% {
        background: var(--bg-01-b), var(--bg-02-b), var(--bg-03-b), var(--bg-04-b), var(--bg-05-b), var(--bg-06-b),
            var(--bg-07-b), var(--bg-08-a), var(--bg-09-a), var(--bg-10-a);
    }
    80% {
        background: var(--bg-01-b), var(--bg-02-b), var(--bg-03-b), var(--bg-04-b), var(--bg-05-b), var(--bg-06-b),
            var(--bg-07-b), var(--bg-08-b), var(--bg-09-a), var(--bg-10-a);
    }
    90% {
        background: var(--bg-01-b), var(--bg-02-b), var(--bg-03-b), var(--bg-04-b), var(--bg-05-b), var(--bg-06-b),
            var(--bg-07-b), var(--bg-08-b), var(--bg-09-b), var(--bg-10-a);
    }
    100% {
        background: var(--bg-01-b), var(--bg-02-b), var(--bg-03-b), var(--bg-04-b), var(--bg-05-b), var(--bg-06-b),
            var(--bg-07-b), var(--bg-08-b), var(--bg-09-b), var(--bg-10-b);
    }
}

.ls-title {
    color: var(--color-crayon);
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    letter-spacing: 1px;
}

.ls-closeBubble {
    background-color: #ffffffbf;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    box-shadow: 0 0 5px #00000044;
    color: #000;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 1rem;
    transition: 0.3s all;
}

.ls-closeBubble:hover {
    background-color: #ad3030;
    color: #fff;
}

.ls-bubble {
    background: #ffffffbf;
    box-shadow: 0 0 5px #00000044;
    border-radius: 50px;
    color: black;
    margin-bottom: 0.6rem;
    opacity: 0;
    animation-duration: 1s;
    animation-name: bubble-anim;
    animation-fill-mode: forwards;
    height: 0;
    overflow: hidden;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}

.ls-bubble-inner {
    margin: 0.3rem 1rem;
}

@keyframes bubble-anim {
    0% {
        opacity: 0;
        height: 100%;
    }
    100% {
        opacity: 1;
        height: 100%;
    }
}

.ls-badge {
    position: absolute;
    top: -9px;
    right: 2px;
    color: white;
    background: red;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

#ls-trigger {
    position: fixed;
    background-color: rgb(255, 255, 255);
    z-index: 1;
    padding: 0 24px;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: rgb(0 18 46 / 16%) 0 8px 26px 0;
    display: flex;
    flex-direction: column;
    max-height: calc(100% - 76px);
    right: 48px;
    margin-left: 20px;
}

#ls-trigger .trigger-title {
    font-size: 25px;
    color: black;
    font-weight: 700;
    line-height: 39px;
    letter-spacing: 0em;
    margin-top: 10px;
}

#ls-trigger:hover #ls-trigger-close {
    opacity: 1;
}

#ls-trigger-close {
    opacity: 0;
    background-color: #ffffff;
    color: black;
    border-radius: 19px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 29px;
    cursor: pointer;
    border: none;
    user-select: none;
    transition: 0.3s all;
    position: absolute;
    z-index: 9999999999;
    top: -8px;
}

#ls-trigger-close:hover {
    color: #fff;
}

.ls-message {
    padding: 19px 38px 6px 10px;
    max-width: 290px;
    z-index: 9999999999;
    font-size: 17px;
    background: rgb(255, 255, 255);
    position: relative;
    overflow-wrap: break-word;
    overflow: hidden auto;
    white-space: pre-line;
}
.ls-message img{
    max-width: 400px;
    max-height: 400px;
}

.ls-message:last-child {
    padding: 19px 38px 19px 10px;
}

#ls-fab {
    position: fixed;
    z-index: 99999999999999;
    opacity: 0;
    transition: all 0.3s;
    padding: 20px 10px;
    border-radius: 4px;
    pointer-events: none;
    gap: 7px;
    flex-direction: column;
    cursor: pointer;
}

#ls-fab.active {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
    user-select: none;
}

#ls-fab img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

#ls-fab .fab-item {
    box-shadow: 2px 2px 7px 0 #00000047;
    border-radius: 8px;
    padding: 3px 5px;
}

#ls-fab a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: row-reverse;
    column-gap: 0.4rem;
    justify-content: flex-end;
    padding: 3px 6px;
    border-radius: 5px;
    align-items: center;
    transition: all 0.3s;
    white-space: nowrap;
    background-color: transparent;
}

#ls-fab a:hover {
    box-shadow: 4px 5px 11px 0 #00000047;
}

#ls-fab a p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0em;
    margin: 0;
}
#ls-fab .supsis-p-group-text{
    font-family: "Poppins", sans-serif !important;
    font-size: 7px !important;
    font-weight: 700 !important;
    line-height: 12px !important;
    letter-spacing: 0em !important;
    margin: 0 !important;
}

@media screen and (max-width: 425px) {
    #ls-fab {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 0;
        box-shadow: 0 0 5px #00000033;
        padding: 20px 30px;
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 20px 30px;
    }

    #ls-fab .fab-item {
        height: 50px;
        padding: 5px;
        box-shadow: 2px 2px 7px 0 #00000047;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
    }

    #ls-fab .fab-item a {
        box-shadow: none;
        border-bottom: 1px solid #acacac;
    }

    #ls-fab .fab-item a p {
        display: none;
    }

    #ls-fab a:last-child {
        border-bottom: none;
    }
}

#ls-fab-close {
    background-color: #ff1313;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    box-shadow: 1px 2px 4px #00000070;
    color: #fff;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s all;
    position: absolute;
    top: -8%;
    right: 0;
    font-size: 20px;
    font-weight: 300;
}

div#ls-trigger-dialog {
    position: fixed;
    background-color: rgb(255, 255, 255);
    padding: 25px 25px;
    border-radius: 12px;
    z-index: 1;
    box-shadow: rgb(0 18 46 / 16%) 0 8px 26px 0;
    display: flex;
    flex-direction: column;
    max-height: calc(100% - 76px);
    margin-left: 20px;
}

div#ls-trigger-dialog .ask-header {
    width: 100%;
}

div#ls-trigger-dialog .ask-header .header-container {
    width: 100%;
    display: flex;
    align-items: center;
}

div#ls-trigger-dialog .ask-header .header-container .image-wrapper {
    width: 63px;
    height: 63px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
}

div#ls-trigger-dialog .ask-header .header-container .image-wrapper img {
    width: 100%;
    height: 100%;
}

div#ls-trigger-dialog .ask-header .header-container .info-wrapper {
}

div#ls-trigger-dialog .ask-header .header-container .info-wrapper .company-name {
    font-family: "Inter", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    margin-bottom: 10px;
    color: black;
}

div#ls-trigger-dialog .ask-header .header-container .info-wrapper .company-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
    color: #657378;
    margin: 0;
    padding: 0;
}

div#ls-trigger-dialog .input-group {
    margin-top: 10px;
    width: 100%;
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 3;
    flex: 0 0 auto;
}

div#ls-trigger-dialog .input-group .button-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

div#ls-trigger-dialog .input-group .button-wrapper button {
    line-height: 21px;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    transition: border-color 0.2s ease 0s;
    margin-right: 16px;
}

div#ls-trigger-dialog .input-group .button-wrapper .yes-button {
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    padding: 9px 10px;
    border-radius: 5px;
    border-collapse: collapse;
    font-family: "Inter", sans-serif;
}

div#ls-trigger-dialog .input-group .button-wrapper .no-button {
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    background-color: transparent;
    font-family: "Inter", sans-serif;
    color: #4c6168;
}

div#ls-trigger-dialog .input-group .button-wrapper button:hover {
}

div#ls-trigger-dialog .message-container {
    margin-top: 19px;
    overflow-wrap: break-word;
    overflow: hidden auto;
    white-space: pre-line;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    max-width: 332px;
    letter-spacing: 0em;
    font-family: "Inter", sans-serif;
}

div#ls-trigger-dialog .message-container::after {
    content: "";
    border-bottom: 1px solid rgb(222, 222, 222);
    display: block;
    position: absolute;
    bottom: 0;
    width: calc(100% - 38px);
}

.ls-close-container {
    display: none;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    width: 100%;
}

.ls-leftright {
    height: 4px;
    width: 20px;
    position: absolute;
    background-color: #ffffff;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all 0.3s ease-in;
}

.ls-rightleft {
    height: 4px;
    width: 20px;
    position: absolute;
    background-color: #ffffff;
    border-radius: 2px;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in;
}

.ls-close-container:hover .ls-leftright {
    transform: rotate(-45deg);
    background-color: #f25c66;
}

.ls-close-container:hover .ls-rightleft {
    transform: rotate(45deg);
    background-color: #f25c66;
}

.ls-close-container:hover label {
    opacity: 1;
}

#ls-trigger-dialog-modal {
    position: fixed;
    background-color: rgb(255, 255, 255);
    padding: 25px;
    z-index: 1;
    box-shadow: 0 8px 26px 0 rgba(0, 18, 46, 0.16);
    display: flex;
    flex-direction: column;
    min-width: 500px;
    height: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-sizing: border-box;
}

#ls-trigger-dialog-modal-mask {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.ls-trigger-dialog-modal-close {
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: red;
    color: white;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s all;
    display: flow;
}

.ls-trigger-dialog-modal-close:hover {
    background: #ad3030;
}

.ls-modal-message-container {
    overflow-wrap: break-word;
    overflow: hidden auto;
    white-space: pre-line;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    max-width: 100%;
    max-height: 600px;
    letter-spacing: 0em;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}


.ls-modal-message-container img {
    max-height: 250px;
    width: auto;
}
.ls-modal-input-group {
    margin-top: 10px;
    width: 100%;
    position: relative;
    background: rgb(255, 255, 255);
    z-index: 3;
    flex: 0 0 auto;
}
.ls-modal-button-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}
.ls-modal-yes-btn{
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    padding: 9px 10px;
    border-radius: 5px;
    border-collapse: collapse;
    font-family: "Inter", sans-serif;
    background-color: #f25c66;
    border: none;
    outline: none;
    cursor: pointer;
}

.ls-modal-no-button {
    background: transparent;
    color: #4c6168;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    padding: 9px 10px;
    border-radius: 5px;
    border-collapse: collapse;
    font-family: "Inter", sans-serif;
    outline: none;
    cursor: pointer;
}
.ls-modal-ask-header {
    width: 100%;
}
.ls-modal-header-container {
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: 100px;
}
.ls-modal-info-wrapper {

}
.ls-modal-image-wrapper {
    width: 63px;
    height: 63px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
}
.ls-modal-company-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}
.ls-modal-company-name {
    font-family: "Inter", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    margin-bottom: 10px;
    color: black;
}
.ls-modal-company-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
    color: #657378;
    margin: 0;
    padding: 0;
}
@keyframes ls-slideOutUp {
    0% {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
    50% {
        transform: translateY(-50vh) translateX(-50%);
        opacity: 0;
    }
    100% {
        transform: translateY(-100vh) translateX(-100%);
        opacity: 0;
    }
}

.ls-hide-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: ls-slideOutUp 2s forwards;
}






