
/*
@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');
    }

.bold, .font-bold, .text-lg, .text-xl, .text-2xl, .text-3xl, .text-4xl, .text-5xl, .text-6xl{
    font-family: HelveticaInseratLTStd;
}
body{
    font-family: HelveticaLTStd-Light;
    
}
.jvst-text-light{
    font-family: HelveticaLTStd-Light;
}
.jvst-text-std{
    font-family: HelveticaInseratLTStd;
}
.jvst-text-bold{
    font-family: HelveticaLTStd-Bold;
}

.jvst-logo-show{
    display: block;
}
.jvst-logo-hidden{
    display: none;
}
.collapsing.width {
    -webkit-transition-property: width, visibility;
    transition-property: width, visibility;
    width: 0;
    height: auto;
}

/* Test margins */
.testbody{
    background: rgb(192, 237, 240);
}
.testcomp{
    background: rgb(243, 156, 221);
}

@media (hover: none) and (pointer: coarse) {
    .hover-touch-show {
        opacity: 100% !important;
    }
}

.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: #ec4899 #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 */
}