/* FONTS */
/* @import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"); */

/* @import url("https://fonts.cdnfonts.com/css/bentonsans-regular"); */
/* @import url("https://db.onlinewebfonts.com/c/c0cd6ec8ce6d2bbd315a13b62ed13550?family=AdihausDIN");
@import url("https://db.onlinewebfonts.com/c/c2001d0359daadcd014fba0e808555d0?family=AdihausDIN+Bold"); */
/* CSS Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI';
}

body {
    min-height: 100vh;
    background: var(--body-color);
}

:root {
    /* COLORS */
    --body-color: #F8FAFC;
    /*--sidebar-color: #0064b3;
    --primary-color: #fff;
    --primary-color-light: #f6f5ff;
    --toggle-color: #ddd;
    --text-color: #fff;
    --button-color: #0064b3; */

    --uap-primary: #212529;
    /* FONT WEIGHT */
    --regular: 400;
    --semi-bold: 600;
    --bold: 700;
    --extra-bold: 800;

    /* TRANSITIONS */
    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
}

/* @font-face {
    font-family: "BentonSansCompBlack";
    src: url("fonts/FontsFree-Net-BentonSans-Comp-Black-Regular.ttf") format("truetype");
} */

/* @font-face {
    font-family: "AdihausDIN";
    src: url("fonts/AdihausDIN-regular.ttf") format("truetype");
} */

/* @font-face {
    font-family: "AdihausDIN-bold";
    src: url("fonts/AdihausDIN-Bold.ttf");
} */

html {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: var(--ff-primary);

    --ck-z-default: 100;
    --ck-z-modal: calc(var(--ck-z-default) + 999);
}


.form-control:focus {
    border-color: #0064b3;
    -webkit-box-shadow: 0px 0px 0px 1px #0064b3;
    box-shadow: 0px 0px 0px 1px #0064b3;
}

.list-style-none {
    list-style-type: none;
}

.cursor-pointer {
    cursor: pointer;
}

/* The container */
.check-box {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.check-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.check-box .checkmark {
    position: absolute;
    top: 2;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: transparent;
    border: 2px #0064b3 solid;
    border-radius: 2px;
    transform: translateY(2px);
}


/* When the checkbox is checked, add a blue background */
.check-box input:checked~.checkmark {
    background-color: #0064b3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.check-box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-box input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-box .checkmark:after {
    left: 5px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cutom-file-input {
    display: none;
}

.custom-file-upload {
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: .375rem;
}

a {
    text-decoration: none;
}


.form-check-input:checked {
    background-color: #212529;
    border-color: #212529;
}


/* Custom styling for the range slider */
.custom-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

/* Style for the slider thumb (WebKit browsers) */
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #212529;
    /* Dark color */
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

/* Style for the slider thumb (Firefox) */
.custom-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #212529;
    /* Dark color */
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

/* Add hover and active states */
.custom-range::-webkit-slider-thumb:hover,
.custom-range::-moz-range-thumb:hover {
    background: #212529;
}

.custom-range::-webkit-slider-thumb:active,
.custom-range::-moz-range-thumb:active {
    background: #212529;
}

.custom-dropdown {
    bottom: 50% !important;
    top: auto !important;
}
