html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;

    line-height: 1.7;
    color: #333;
    font-weight: 300;
    font-size: 16px;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* HTML: <div class="loader"></div> */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(4px);
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    --c: no-repeat radial-gradient(farthest-side,#514b82 92%,#0000);
    background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%, var(--c) 0 50%;
    background-size: 10px 10px;
    animation: l18 1s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
}

    .loader::before {
        content: "";
        position: absolute;
        inset: 0;
        margin: 3px;
        background: repeating-conic-gradient(#0000 0 35deg,#514b82 0 90deg);
        -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 3px),#000 0);
        border-radius: 50%;
    }

@keyframes l18 {
    100% {
        transform: rotate(.5turn);
    }
}

.nav-tabs-container {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-tabs-scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    scrollbar-width: none; /* Firefox */
}

    /* Hide scrollbar for WebKit browsers */
    .nav-tabs-scroll::-webkit-scrollbar {
        display: none;
    }

/* Arrow button styles */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ccc;
    cursor: pointer;
    z-index: 10;
    padding: 5px 10px;
    border-radius: 5px;
}

    .scroll-btn.left {
        left: 0;
    }

    .scroll-btn.right {
        right: 0;
    }

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {

    background-color: var(--bs-light);
}