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

}
@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;

}
body{
    font-family: din-lightregular;
}
.text-xl, .text-2xl, .text-3xl, .text-4xl, .text-5xl, .text-6xl{
    font-family: din-boldregular;
}
.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(27, 151, 233);
    -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
   */
/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #999 #f8f9fa;
  }
  
  /* Works on Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 6px;
  }
  
  *::-webkit-scrollbar-track {
    background: #f8f9fa;
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: #999;
  }

/* 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 */
}