
/*
@font-face {
    font-family: 'lsu';
    src: url('../../font/Lucida-Sans-Unicode.ttf.eot');
    src: url('../../font/dLucida-Sans-Unicode.ttf.eot?#iefix') format('embedded-opentype'),
         url('../../font/Lucida-Sans-Unicode.ttf.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
*/

/* FONTS */
@font-face {
    font-family: 'HelveticaLTStd-Light';
    src: url('../../font/jvst/36C20D_0_0.eot');
    src: url('../../font/jvst/36C20D_0_0.eot?#iefix') format('embedded-opentype'),
        url('../../font/jvst/36C20D_0_0.woff2') format('woff2'),
        url('../../font/jvst/36C20D_0_0.woff') format('woff'),
        url('../../font/jvst/36C20D_0_0.ttf') format('truetype');
    }
@font-face {
    font-family: 'HelveticaLTStd-Bold';
    src: url('../../font/jvst/36C20D_1_0.eot');
    src: url('../../font/jvst/36C20D_1_0.eot?#iefix') format('embedded-opentype'),
        url('../../font/jvst/36C20D_1_0.woff2') format('woff2'),
        url('../../font/jvst/36C20D_1_0.woff') format('woff'),
        url('../../font/jvst/36C20D_1_0.ttf') format('truetype');
    }
@font-face {
    font-family: 'HelveticaInseratLTStd';
    src: url('../../font/jvst/HelveticaInseratLTStd-Roman.eot');
    src: url('../../font/jvst/HelveticaInseratLTStd-Roman.eot?#iefix') format('embedded-opentype'),
        url('../../font/jvst/HelveticaInseratLTStd-Roman.woff2') format('woff2'),
        url('../../font/jvst/HelveticaInseratLTStd-Roman.woff') format('woff'),
        url('../../font/jvst/HelveticaInseratLTStd-Roman.ttf') format('truetype');
    }

/*
@font-face {
    font-family: 'din-lightregular';
    src: url('../../font/dinli_-webfont.eot');
    src: url('../../font/dinli_-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../font/dinli_-webfont.woff') format('woff'),
         url('../../font/dinli_-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'din-regularregular';
    src: url('../../font/dinrg_-webfont.eot');
    src: url('../../font/dinrg_-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../font/dinrg_-webfont.woff') format('woff'),
         url('../../font/dinrg_-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
.text-xl, .text-2xl, .text-3xl, .text-4xl, .text-5xl, .text-6xl{
    font-family: din-boldregular;
    }
    */
body{
    font-family: HelveticaInseratLTStd;
}
    .collapse{
        visibility: initial !important;
}
.loadingIndicator{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #ececec8f;
    text-align: center;
    z-index: 9;
}
.loadingIndicator.htmx-request{
    display:inline;
}
.loading{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ececec8f;
    text-align: center;
    z-index: 9;
}
.loading.htmx-request{
    display:inline;
}
.loader-line {
    width: 100%;
    height: 3px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 3px;
    width: 40%;
    background-color: rgb(236 72 153);
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}

/* Scrollbars */
* {
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb #ffffff00;
}
.pinkScrollbar {
    scrollbar-width: thin;
    scrollbar-color: #ec4899 #ffffff00;
}

/* SLIDE IN/OUT ANIMATION */
.animate-slide-in {
    opacity: 0;
    transform: translateY(50px); /* Move the image down initially */
    transition: opacity 0.5s, transform 0.5s;
}
.animate-slide-in.active {
    opacity: 1;
    transform: translateY(0); /* Move the image back to its original position */
}