:root {
    /* --primary-color: #0084bf; */
    --primary-color: #BF0D3E;
    --primary-light-color: #ffccda;
    --green-color: #007680;
}
body {
    /* background-image: url('/images/bg/woofio-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    background-color: #e9ecef;
}
a {
    text-decoration: none !important;
}
.text-small {
    font-size: small;
}
input::placeholder {
    font-size: small;
}
.text-primary {
    color: var(--primary-color) !important;
}
.text-green {
    color: var(--green-color) !important;
}
.btn-primary {
    background-color: var(--primary-color) !important;
    border: none;
    color: white;
    font-weight:600;
}
.btn-primary:hover {
    background-color: white !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight:600;
}

.btn-light {
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight:600;
}
.btn-light:hover {
    background-color: var(--primary-color);
    color: white;
    font-weight:600;
}

.card .card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 14px;
}

.card .card-header i {
    font-size: 14px;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
}

::-webkit-scrollbar-thumb {
    background: #6d6d6d;
}
/* Scrollbar Styling */


.navbar-collapse a {
    padding: 10px 20px 10px 20px;
    margin: 2px;
}
input, select, textarea {
    box-shadow: none !important;
}
table > tbody > tr > th {
    color: var(--primary-color) !important;
}

/* FOUND BLADE FILE CSS -------------------------- */
.profile .form-label {
    margin-bottom: 4px;
    font-size: small;
    margin-left:1px;
}
.profile .vstack .btn { 
    padding: 15px;
}
.chipForm .card-footer .btn {
    padding: 15px;
    width: 30%;
}
/* FOUND BLADE FILE CSS -------------------------- */

/* CHIP VALIDATE BLADE FILE CSS -------------------------- */
.create-form .form-label {
    margin-bottom: 4px;
    font-size: small;
    font-weight: 600;
    margin-left:1px;
}
/* CHIP VALIDATE BLADE FILE CSS -------------------------- */

/* HOME BLADE FILE CSS -------------------------- */
.button-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* HOME BLADE FILE CSS -------------------------- */

/* --------------------- MEDIA QUERIES ---------------------- */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .navbar-collapse {
        display: grid;
        justify-content: center;
    }
    .vstack .btn {
        width: 100% !important;
        padding: 7px !important;
    }
    .button-section .btn {
        width: 90%;
    }
    .nav-pills .nav-item .nav-link {
        font-size: 16px;
        font-weight: 600;
    }
    /* registerForm ---- */
    .registerForm .nav-pills .nav-item {
        width: 100%;
        margin-bottom: 10px;
    }
    .registerForm .nav-pills .nav-item .nav-link .la-check {
        font-size: 18px;
        padding: 4px;
    }
    .registerForm .nav-pills .nav-item .nav-link .number {
        font-size: 14px;
        padding: 4px;
        width: 30px;
    }
    /* registerForm ---- */

    /* FOUND BLADE FILE CSS ---------- */
    .chipForm .card-footer .btn {
        padding: 8px;
        width: 100%;
    }
    /* FOUND BLADE FILE CSS ---------- */
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .navbar-collapse {
        display: grid;
        justify-content: center;
    }
    .vstack .btn {
        width: 100% !important;
    }
    .button-section .btn {
        width: 90%;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .navbar-collapse {
        display: grid;
        justify-content: center;
    }
    .section {
        padding: 25px 0;
    }
    .vstack {
        flex-direction: row;
        justify-content: center;
    }
    .vstack .btn {
        width: 50% !important;
        padding: 8px !important;
    }
    .button-section .btn {
        width: 80%;
    }

    /* FOUND BLADE FILE CSS ---------- */
    .chipForm .card-footer .btn {
        padding: 15px;
        width: 50%;
    }
    /* FOUND BLADE FILE CSS ---------- */
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .navbar-collapse {
        justify-content:flex-end;
    }
    .section {
        padding: 35px 0;
    }
    .vstack {
        flex-direction: row;
        justify-content: center;
    }
    .vstack .btn {
        width: 30% !important;
    }
    .button-section .btn {
        width: 70%;
    }

    /* FOUND BLADE FILE CSS ---------- */
    .chipForm .card-footer .btn {
        padding: 15px;
        width: 30%;
    }
    /* FOUND BLADE FILE CSS ---------- */
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .section {
        padding: 40px 0;
    }
    .vstack {
        flex-direction: row;
        justify-content: center;
    }
    .vstack .btn {
        width: 30% !important;
    }
    .button-section .btn {
        width: 50%;
    }
}
/* --------------------- MEDIA QUERIES ---------------------- */