/*
|--------------------------------------------------------------------------
| FONTS
|--------------------------------------------------------------------------
|
| Import of all fonts: Ubuntu and Inter
|
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/*
|--------------------------------------------------------------------------
| GENERAL
|--------------------------------------------------------------------------
|
| Here will go all the general css layout and styling
|
*/

:root {
    --white: hsl(0, 0%, 100%);
    --slate-50: hsl(210, 40%, 98%);
    --slate-200: hsl(214, 32%, 91%);

    --gray-300: hsl(216, 12%, 84%);
    --gray-500: hsl(220, 9%, 46%);
    --gray-800: hsl(215, 28%, 17%);

    --blue-50: hsl(204, 100%, 97%);
    --blue-300: hsl(199, 95%, 74%);
    --blue-500: hsl(199, 89%, 48%);
    --blue-800: hsl(201, 90%, 27%);

    --orange-300: hsl(31, 97%, 72%);
    --orange-500: hsl(25, 95%, 53%);
    --orange-800: hsl(15, 79%, 34%);

    --red-300: hsl(0, 94%, 82%);
    --red-500: hsl(0, 84%, 60%);
    --red-800: hsl(0, 70%, 35%);

    --green-300: hsl(142, 77%, 73%);
    --green-500: hsl(142, 71%, 45%);
    --green-800: hsl(143, 64%, 24%);
}

h1,h2,h3,h4,h5 {
    -webkit-font-smoothing: antialiased;
    font-family: Ubuntu, 'sans-serif';
}

p {
    line-height: 1.6rem;
}

p,
span {
    -webkit-font-smoothing: antialiased;
    font-family: Inter, 'sans-serif';
    /* color: var(--gray-500); */
}

.wrapper {
    width: 1170px;
    margin: auto;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none;
}

main {
    min-height: calc(100vh - 64px - 64px - 28px);
}

input {
    border: 1px solid var(--blue-800);
    width: 380px;
    height: 48px;
    border-radius: 4px;
    margin-bottom: 18px;
    padding: 14px;
    color: var(--blue-800);
}

input:focus {
    border: 2px solid var(--blue-500);
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-family: Ubuntu, 'sans-serif';
    font-size: 14px;
    font-weight: bold;
    opacity: 1;
    /* Firefox */
    color: var(--blue-800);
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--blue-800);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--blue-800);
}

/* Buttons */
/* Button sizes ********************/
.btn-sm {
    width: 80px;
    height: 48px;
    border-radius: 4px;
}

.btn-md {
    width: 120px;
    height: 38px;
    border-radius: 4px;
}

.btn {
    width: 240px;
    height: 48px;
    border-radius: 4px;
}

.btn-xl {
    width: 320px;
    height: 48px;
    border-radius: 4px;
}

/* Button types ********************/
.btn-transparent {
    background: transparent !important;
    color: var(--blue-500) !important;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid var(--blue-500) !important;
    border-radius: 4px;
}

.btn-transparent:hover {
    background: var(--blue-500);
    color: var(--slate-50);
}

.btn-alert {
    background: var(--red-500);
    color: var(--slate-50);
    font-weight: bold;
    font-size: 16px;
}

.btn-alert:hover {
    background: var(--red-800);
    color: var(--slate-50);
}

.btn-green {
    background: var(--green-500);
    color: var(--slate-50);
    font-weight: bold;
    font-size: 16px;
}

.btn-green:hover {
    background: var(--green-800);
    color: var(--slate-50);
}

.btn-orange {
    background: var(--orange-500);
    color: var(--slate-50);
    font-weight: bold;
    font-size: 16px;
}

.btn-orange:hover {
    background: var(--orange-800);
    color: var(--slate-50);
}

.btn-primary {
    border: none !important;
    background: var(--blue-500) !important;
    color: var(--slate-50)!important;
    font-weight: bold;
    font-size: 16px;
}

.btn-primary:hover {
    border: none !important;
    background: var(--blue-800) !important;
    color: var(--slate-50)!important;
}

.btn-link {
    color: var(--blue-800);
    font-weight: bold;
}

.btn-accordion {
    border: none !important;
    background: var(--blue-500) !important;
    color: var(--slate-50)!important;
    font-weight: bold;
    font-size: 16px;
}

[type=submit] {
    background: var(--blue-800);
    color: var(--slate-50);
    font-weight: bold;
    font-size: 16px;
    background-image:none;
}

.selected {
    background: var(--blue-800);
    color: var(--slate-50);
}

/*
|--------------------------------------------------------------------------
| COMPONENT - HEADER
|--------------------------------------------------------------------------
|
| Here will go all the header css layout and styling
|
*/

#header {
    overflow: hidden;
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
}

#header a {
    float: left;
}

/* NAV - AUTH */

#header-auth {
    overflow: hidden;
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px;
    background-image: url('../images/header-bg.png');
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
}

/*
|--------------------------------------------------------------------------
| COMPONENT - Footer
|--------------------------------------------------------------------------
|
| Here will go all the footer css layout and styling
|
*/

.footer-wrapper {
    padding: 0 28px;
}

#footer {
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    color: var(--blue-800);
}

#footer ul {
    list-style-type: none;
    display: flex;
    padding-left: 0;
}

#footer ul li {
    margin-right: 8px;
}

#footer div {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 69.95px;
    height: 105.04px;
}

#footer div::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -200%;
    width: 49%;
    height: 199%;
    opacity: 0;
    transform: rotate(30deg);
    background: var(--gray-800);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
    animation: shine 2s 1s infinite;
}

@keyframes shine {
    to {
        opacity: 1;
        right: 210%;
    }
}

/*
|--------------------------------------------------------------------------
| COMPONENT - DMA LOGO
|--------------------------------------------------------------------------
|
| Here will go all the home css layout and styling
|
*/

#dmalogo {
    position: relative;
    width: 112px;
    height: 112px;
    margin-right: 12px;
}

#letters {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    animation: rotation 30s infinite linear;
}

#icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

/*
|--------------------------------------------------------------------------
| RESET PASSWORD
|--------------------------------------------------------------------------
|
| Here will go all the RESET PASSWORD css layout and styling
|
*/

#reset-password .wrapper {
    height: calc(100vh - 64px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#reset-password .x-card {
    padding: 2rem;
    background: var(--slate-50);
    border-radius: 4px;
    width: 400px;
    box-shadow: var(--gray-500) 0px 8px 24px;
}
/*
|--------------------------------------------------------------------------
| WELCOME
|--------------------------------------------------------------------------
|
| Here will go all the welcome css layout and styling
|
*/

#welcome {
    background-image: url("../images/home-bg.png");
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
}

#welcome .container {
    position: relative;
    display: flex;
    grid-template-columns: repeat(2, 1fr);
}

#welcome #left {
    margin-top: 10%;
    width: 670px;
}

#welcome #left #icon-section {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: -10px;
}

#welcome #left #icon-section #dma_count {
    font-size: 24px;
    color: var(--blue-800);
    font-weight: bold;
}

#welcome #left #icon-section span {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: bold;

}

#welcome #left #mid-section h1 {
    font-size: 80px;
    margin: 0;
    background: -webkit-linear-gradient(45deg, var(--blue-500) 0%, var(--blue-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

#welcome #left #mid-section h2 {
    font-size: 48px;
    margin: 0;
    font-weight: 600;
    color: var(--blue-800);
}

#welcome #left #mid-section h3 {
    font-weight: 500;
    color: var(--gray-500);
    font-size:28px;
    margin: 0 0 28px;
}

#welcome #left #trust-section {
    width: 630px;
}

#welcome #left #trust-section #trust {
    display: flex;
    align-items: center;
}

#welcome #left #trust-section #trust svg {
    color: var(--blue-800);
}

#welcome #left #trust-section #trust h5 {
    margin-left: 8px;
    color: var(--blue-800);
}

#welcome #left #trust-section .card {
    min-width: 100%;
    min-height: 200px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: 4px;
    /* align-items: center; */
    transform: translate3d(0, 0, 0);
}

#welcome #left #trust-section .card::-webkit-scrollbar {
    display: none;
}

#welcome #left #trust-section .card--content {
    border: 2px solid var(--blue-500);
    min-width: 200px;
    height: 98px;
    margin: 5px;
    text-align: center;
    padding-top: 34px;
    color: var(--blue-800);
    font-weight: bold;
    border-radius: 4px;
    transition: all 1.5s;

    animation: scroll 30s linear infinite;
    -webkit-animation: scroll 30s linear infinite;
    -moz-animation: scroll 30s linear infinite;
    -o-animation: scroll 30s linear infinite;
    -ms-animation: scroll 30s linear infinite;
}

@keyframes scroll {
    100% {
        transform: translateX(-500%);
    }
}

#welcome #right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#welcome #right .btn-primary {
    margin-right: 8px;
}

#welcome #right .input-alert {
    display: flex;
    flex-direction: column;
}

#welcome #right .input-alert span {
    font-size: .875rem;
    color: var(--red-500);
    margin-bottom: 10PX;
}

/*
|--------------------------------------------------------------------------
| COMPONENT - SIDEBAR
|--------------------------------------------------------------------------
|
| Here will go all the home css layout and styling
|
*/

#sidebar {
    /* width: 300px; */
    background: var(--white);
    min-height: calc(100vh - 64px);
    font-family: Ubuntu, 'sans-serif';
    box-shadow: 0 3px 10px var(--gray-300);

    display: flex;
    flex-direction: column;
    flex-grow:1;
    justify-content: space-between;
}

#sidebar #top h5 {
    padding: 16px 16px 0;
    color: var(--blue-800);
}

#sidebar #settingsAccordion {
    margin: -10px 16px 0 16px;
}

#sidebar #settingsAccordion .accordion-button {
    border: none;
    box-shadow: none;
    font-size: inherit;
    width: 100%;
}

#sidebar #settingsAccordion .accordion-button:focus {
    border: none;
    box-shadow: none;
}

#sidebar #settingsAccordion .accordion-button::after {
    display: none;
}

#sidebar #settingsAccordion h2 {
    margin: 0;
    font-size: inherit;
}

#sidebar #settingsAccordion #collapseOne a {
    margin: 0;
}

#sidebar #settingsAccordion button,
#sidebar #settingsAccordion #collapseOne a {
    margin-bottom: none;
    border-radius: 4px;
}

#sidebar #top ul {
    list-style-type: none;
    margin-top: 28px;
    padding: 8px 16px 16px;

    margin-block-start: 0; /* Reseting style */
    margin-block-end: 0; /* Reseting style */
}

#sidebar #settingsAccordion button,
#sidebar #settingsAccordion #collapseOne a,
#sidebar #top ul li {
    background: rgb(198, 213, 218,0.2);
    padding: 16px 16px;
    margin-bottom: 8px;
}

#sidebar #settingsAccordion button:hover,
#sidebar #settingsAccordion #collapseOne a:hover,
#sidebar #top ul li:hover {
    border: 2px solid var(--blue-500);
    border-radius: 4px;
}

#sidebar #settingsAccordion button,
#sidebar #settingsAccordion #collapseOne a,
#sidebar #top ul li a {
    color: var(--blue-800);
    font-weight:600;
    text-decoration: none;
    display:flex;
    align-items: center;
}

#sidebar #settingsAccordion button:hover,
#sidebar #settingsAccordion #collapseOne a:hover,
#sidebar #top ul li a:hover {
    color:var(--blue-500);
}

#sidebar #settingsAccordion svg,
#sidebar #settingsAccordion button svg,
#sidebar #top ul li a svg {
    width: 24px;
    margin-right: 16px;
}

#sidebar #sidebar-footer {
    display:flex;
    align-items: center;
    justify-content:center;
    margin-bottom: 28px;
}

#sidebar #sidebar-footer #helix_inside {
    width:50px;
    margin-right: 8px;
}

#sidebar #sidebar-footer p {
    font-size: 12px;
    color: var(--blue-800);
}

/*
|--------------------------------------------------------------------------
| REGISTER
|--------------------------------------------------------------------------
|
| Here will go all the REGISTER css layout and styling
|
*/

#register {
    background-image: url("../images/register-bg.png");
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
    overflow: hidden;
}

#register .card {
    border: 2px solid var(--blue-800);
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    margin: 50px 0;
    padding: 30px;
}

#register .card .card-body h2 {
    /* color:var(--blue-800);
    font-weight: 600; */
    margin-bottom: 20px;
}

/*
|--------------------------------------------------------------------------
| DASHBOARD
|--------------------------------------------------------------------------
|
| Here will go all the DASHBOARD css layout and styling
|
*/

#dashboard {
    display: grid;
    grid-template-columns: 300px auto;
}

#dashboard #dashboard-content {
    padding: 20px;
}

#dashboard #dashboard-content h2 {
    color: var(--blue-800);
}

#dashboard #dashboard-content h4 {
    color: var(--blue-800);
}

#dashboard #dashboard-content h5 {
    color: var(--blue-800);
}

#dashboard #dashboard-content .cards .card {
    padding: 20px;
    border: 1px solid var(--slate-50); 
    box-shadow: 0 3px 10px var(--gray-300);
    background: transparent;
    margin-bottom: 16px;
}

#dashboard #dashboard-content .cards .card .wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

#dashboard #dashboard-content .cards .card .wrapper span {
    border-radius: 8px;
    height: 35px;
    padding: 4px 8px;
}

#dashboard #dashboard-content .cards .card .wrapper .waiting {
    background: var(--blue-500);
    color: var(--white);
}

#dashboard #dashboard-content .cards .card .wrapper .completed {
    background: var(--green-500);
    color: var(--white);
}

#dashboard #dashboard-content .cards .card .wrapper .notcompleted {
    background: var(--red-500);
    color: var(--white);
}

#dashboard #dashboard-content .cards .card p {
    color:var(--gray-500);
    font-weight:600;
    margin-bottom: 8px;
}

#dashboard #dashboard-content .cards .card h4 {
    color:var(--blue-800) !important;
}


#dashboard #dashboard-content .cards .card a {
    color:var(--blue-500);
    font-weight: bold;
    font-size: 16px;
}

#dashboard #dashboard-content .cards .card a:hover {
    text-decoration: none;
}


/*
|--------------------------------------------------------------------------
| HISTORY
|--------------------------------------------------------------------------
|
| Here will go all the HISTORY css layout and styling
|
*/

#history {
    display: grid;
    grid-template-columns: 300px auto;
}

#history #history-content {
    padding: 20px;
}

#history #history-content h2 {
    color: var(--blue-800);
}

#history #history-content h4 {
    color: var(--blue-800);
}

#history #history-content h5 {
    color: var(--blue-800);
}

#history #history-content .cards .card {
    padding: 20px;
    border: 1px solid var(--slate-50); 
    box-shadow: 0 3px 10px var(--gray-300);
    background: transparent;
    margin-bottom: 16px;
}

#history #history-content .cards .card .wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

#history #history-content .cards .card .wrapper span {
    border-radius: 8px;
    height: 35px;
    padding: 4px 8px;
}

#history #history-content .cards .card .wrapper .waiting {
    background: var(--blue-500);
    color: var(--white);
}

#history #history-content .cards .card .wrapper .completed {
    background: var(--green-500);
    color: var(--white);
}

#history #history-content .cards .card .wrapper .notcompleted {
    background: var(--red-500);
    color: var(--white);
}

#history #history-content .cards .card p {
    color:var(--gray-500);
    font-weight:600;
    margin-bottom: 8px;
}

#history #history-content .cards .card h4 {
    color:var(--blue-800) !important;
}


#history #history-content .cards .card a {
    color:var(--blue-500);
    font-weight: bold;
    font-size: 16px;
}

#history #history-content .cards .card a:hover {
    text-decoration: none;
}

/*
|--------------------------------------------------------------------------
| ASSESSMENT
|--------------------------------------------------------------------------
|
| Here will go all the ASSESSMENT css layout and styling
|
*/

#assessment {
    display: flex;
    justify-content: center;
    align-items: center;
}

#assessment h3 {
    color: var(--blue-800);
}

#assessment p {
    color: var(--gray-500);
}

#assessment #assessment-content {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:28px;
    margin: 20px; 
}

#assessment #assessment-content .left {
    margin-top: 80px;
}

#assessment #assessment-content .left ul {
    border: 2px solid var(--blue-500);
    border-radius: 4px;
    padding: 20px;
}

#assessment #assessment-content .left ul li {
    list-style-type: none;
    color: var(--blue-800);
}

#assessment #assessment-content .left .admin-area {
    display: flex;
    align-items: center;
    justify-content: left;

}

#assessment #assessment-content .left .admin-area .select {
    padding: 10px 20px;
    border: 2px solid var(--blue-500);
    border-radius: 4px 0 0 4px;
    background: white;
    color: var(--blue-800);
    height: 48px;
    width: 100%;
}

#assessment #assessment-content .left .admin-area button {
    border-radius: 0 4px 4px 0;
    width: 220px;
    margin-top: 0px;
}

#assessment #assessment-content .left .admin-area button svg {
    font-size: 1.5rem;
}

#assessment #assessment-content .left .btn-nav {
    display:flex; 
    justify-content:space-between;
}


#assessment #assessment-content .left button {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#assessment #assessment-content .left button a {
    color:var(--slate-50);
    text-decoration: none;
}

#assessment #assessment-content .left button span {
    font-weight: 400;
    margin-right: 10px;
}

#assessment #assessment-content .left button svg {
    width: 28px;
}

#assessment #assessment-content .right img {
    width: 400px;
    margin-top: 20%;
    margin-left: 10%;
}

#assessment #assessment-content .modal-header h5 {
    color: var(--blue-800);
}

#assessment #assessment-content .modal-body .custom-select {
    border: 1px solid var(--gray-300);
    width: 380px;
    height: 48px;
    border-radius: 4px;
    margin-bottom: 18px;
    padding: 14px;
    color: var(--gray-500);
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    font-family: Ubuntu, 'sans-serif';
}


/*
|--------------------------------------------------------------------------
| ASSESSMENT - QUESTIONS
|--------------------------------------------------------------------------
|
| Here will go all the ASSESSMENT - QUESTIONS css layout and styling
|
*/

#questions {
    display: flex;
    justify-content: center;
    align-items: center;
}

#questions h3 {
    color: var(--blue-800);
}

#questions p {
    color: var(--gray-500);
}

#questions-content {
    width: 60%;
    padding: 28px;
}

#questions header  {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#questions .count-left {
    border: 2px solid var(--orange-500);
    border-radius: 4px 0 0 4px;
    padding: 8px 18px;
    margin-right: -6px;
    font-family: Ubuntu, 'sans-serif';
    color:var(--orange-500);
    font-weight: 700;
}

#questions .count-right {
    border: 2px solid var(--orange-500);
    border-radius: 0 4px 4px 0;
    padding: 8px 18px;
    font-family: Ubuntu, 'sans-serif';
    color:var(--slate-50);
    font-weight: 700;
    background-color: var(--orange-500);
}

#questions .question-card .question-body {
    padding: 28px 0;

}

#questions .question-header {
    display: flex;
    align-items: center;
}

#questions .question-header h1  {
    color: var(--blue-500);
    margin-right: 18px;
    font-size: 28px !important;
    font-family: Ubuntu, 'sans-serif' !important;
}

#questions .form-check {
    display: grid;
    grid-template-columns: auto auto;
}

#questions li {
    list-style-type: none;
}

#questions .links {
    margin-top: 20px;
}

/* #questions .links nav {
    display: flex;
    align-items: center;
}

#questions .links nav > div {
    display: flex;
    flex:1;
    justify-content: space-between;
}

#questions .links nav div span {
    position: relative;
    position: inline-flex;
    align-items: center;
    padding: 4px 2px;
    margin-left: 3px;

} */

#questions footer button {
    float:right;
    display: flex;
    align-items: center;
    justify-content: center;
}

#questions footer button span {
    margin-right: 18px;
    font-weight: 600;
}

#questions footer button svg {
    width: 24px;
}


/*
|--------------------------------------------------------------------------
| RESULTS
|--------------------------------------------------------------------------
|
| Here will go all the RESULTS css layout and styling
|
*/

#assessment-final .wrapper {
    background: var(--white);
    box-shadow: 0 2px 5px var(--gray-300);
    border-radius: 4px;
    margin-top: 55px;
    margin-bottom: 55px;
    padding: 30px;
}

#assessment-final .wrapper .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

#assessment-final .wrapper .header .controls {
    display:flex;
    align-items: center;
    gap: 8px;
}

#assessment-final .wrapper .header .left {
    display: flex;
    align-items: center;

}

#assessment-final .wrapper .header .left .header-info {
    display: block;
}

#assessment-final .wrapper .header .left .header-info h2 {
    font-size: 32px;
    color: var(--blue-800);
    font-weight: 600;
    margin-bottom: 0px;
}

#assessment-final .wrapper .header .left .header-info h3 {
    color:var(--blue-500);
    font-size: 28px;
    font-weight: 600;
}

#assessment-final .wrapper .results-content .card-results {
    display: flex;
    gap: 28px;
    margin-bottom: 30px;
    align-items: center;
}

/* #assessment-final .wrapper .results-content .card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
} */

#assessment-final .wrapper .results-content .card-results .left .circle {
    font-size: 88px;
    font-family: Ubuntu, 'sans-serif';
    /* background: linear-gradient(89.72deg, var(--blue-500)-3.96%, var(--blue-800) 109.72%); */
    background: var(--blue-500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 2px 5px var(--gray-300);
    border-radius: 50%;
    padding:55px 75px;
    /* text-fill-color: transparent; */
    animation: pulse 0.5s ease-in ;
}

@keyframes pulse{
    25%  {transform: scale(0.9);}
    75%  {transform: scale(1.1);}
}

#assessment-final .wrapper .results-content .card-results .right {
    box-shadow: 0 2px 5px var(--gray-300);
    border-radius: 4px;
    padding: 1rem 2rem;
    width: 450px;
    color:var(--gray-500);
    font-weight: 600;
}

#assessment-final .wrapper .results-content .line {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--gray-300);
    padding: 28px;
    margin-bottom: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px var(--gray-300);
}

#assessment-final .wrapper .results-content h5 {
    color:var(--gray-500);
    font-weight: 600;
}

#assessment-final .wrapper .results-content ul {
    list-style-type: none;
}

#assessment-final .wrapper .results-content .score {
    font-size: 1.6rem;
    color:var(--blue-800);
    font-weight: 500;
}

#assessment-final .wrapper .results-content h4 {
    margin-top: 28px;
    color:var(--blue-800);
}

#assessment-final .wrapper .results-content .scorecard {
    border: 1px solid var(--gray-300);
    padding: 28px;
    margin-bottom: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px var(--gray-300);
}

#assessment-final .wrapper .results-content .feedback textarea {
    border: 1px solid var(--gray-300);
    width: 100%;
    margin-bottom: 18px;
    resize: none;
}

#assessment-final .wrapper .results-content .feedback textarea:hover {
    border: 2px solid var(--blue-500);
}

#assessment-final .wrapper .results-content .feedback div {
    display:flex; 
    justify-content:flex-end;
}


/*
|--------------------------------------------------------------------------
| COMPLETED
|--------------------------------------------------------------------------
|
| Here will go all the COMPLETED css layout and styling
|
*/

#assessment-completed .wrapper {
    display: inline;
    margin: auto;
}

#assessment-completed .wrapper .content {
    margin-top: 50px;
    text-align: center;
}

#assessment-completed .wrapper .content h1 {
    margin-bottom: 32px;
}

#assessment-completed .wrapper .content h5 {
    margin-bottom: 45px;
}

#assessment-completed .wrapper img {
    display: block;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 584px;
}

/*
|--------------------------------------------------------------------------
| COMPONENT - USERS
|--------------------------------------------------------------------------
|
| Here will go all the USERS css layout and styling
|
*/

#dashboard #dashboard-content .card {
    margin: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border: none;
}

#dashboard #dashboard-content .card-header .card-header-wrapper {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 15px;
}

#dashboard #dashboard-content .card-header #card_title {
    -webkit-font-smoothing: antialiased;
    font-family: Ubuntu, 'sans-serif';
    font-weight: 600;
    color: var(--blue-800);
    font-size: 1.125rem;
}

#dashboard #dashboard-content .input-group .custom-select {
    border: 1px solid var(--gray-300);
    width: 380px;
    height: 48px;
    border-radius: 4px;
    margin-bottom: 18px;
    padding: 14px;
    color: var(--gray-500);
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    font-family: Ubuntu, 'sans-serif';
}

#dashboard #dashboard-content button {
    display: block;
    float:right;
}

/*
|--------------------------------------------------------------------------
| LOGS
|--------------------------------------------------------------------------
|
| Here will go all the LOGS css layout and styling
|
*/

#logs {
    display: grid;
    grid-template-columns: 300px auto;
}

#logs #logs-content {
    padding: 20px;
}

#logs #logs-content h2 {
    color: var(--blue-800);
    margin-left: 20px;
}

#logs #logs-content .table-wrapper {
    margin: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border: none;
    padding: 20px;
}

#logs #logs-content .table-wrapper table {
    width: 100%;
}

#logs #logs-content .table-wrapper table tr th {
    background: #EFF3F6;
    padding: 8px;
}

/* #logs #logs-content .table-wrapper table tr td {
    padding: 8px;
} */


/*
|--------------------------------------------------------------------------
| USERS
|--------------------------------------------------------------------------
|
| Here will go all the USERS css layout and styling
|
*/

#users {
    display: grid;
    grid-template-columns: 300px auto;
}

#users #users-content {
    padding: 20px 30px;
    background: var(--slate-50);
    min-height: calc(100vh - 64px);
}

#users #users-content .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

#users #users-content .header-row .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue-500);
    font-family: Inter, 'sans-serif';
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

#users #users-content .header-row .back-link:hover {
    color: var(--blue-800);
}

#users #users-content .header-row .back-link svg {
    width: 16px;
    height: 16px;
}

#users #users-content h2 {
    color: var(--blue-800);
    font-family: Ubuntu, 'sans-serif';
    font-weight: 600;
    font-size: 28px;
    margin: 0;
}

#users #users-content .header-row .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    width: auto;
    height: auto;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#users #users-content .header-row .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#users #users-content .header-row .btn-primary svg {
    width: 18px;
    height: 18px;
}

#users #users-content .alert {
    margin-bottom: 20px;
    border-radius: 6px;
    padding: 14px 18px;
    font-family: Inter, 'sans-serif';
    font-size: 14px;
}

#users #users-content .alert-success {
    background: var(--green-300);
    color: var(--green-800);
    border: 1px solid var(--green-500);
}

#users #users-content .alert-danger {
    background: var(--red-300);
    color: var(--red-800);
    border: 1px solid var(--red-500);
}

#users #users-content .table-wrapper {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

#users #users-content .table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-family: Inter, 'sans-serif';
}

#users #users-content .table-wrapper table thead tr {
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--slate-50) 100%);
    border-bottom: 2px solid var(--blue-300);
}

#users #users-content .table-wrapper table tr th {
    padding: 16px 20px;
    text-align: left;
    font-family: Ubuntu, 'sans-serif';
    font-weight: 600;
    font-size: 13px;
    color: var(--blue-800);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#users #users-content .table-wrapper table tbody tr {
    transition: all 0.15s ease;
}

#users #users-content .table-wrapper table tbody tr:hover {
    background: var(--blue-50);
}

#users #users-content .table-wrapper table tr td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--slate-200);
    color: var(--gray-800);
    font-size: 14px;
}

#users #users-content .table-wrapper table tr td:first-child {
    font-weight: 500;
    color: var(--blue-800);
}

#users #users-content .table-wrapper table tr:last-child td {
    border-bottom: none;
}

#users #users-content .table-wrapper table .role-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

#users #users-content .table-wrapper table .role-badge.admin {
    background: var(--blue-300);
    color: var(--blue-800);
}

#users #users-content .table-wrapper table .role-badge.user {
    background: var(--slate-200);
    color: var(--gray-500);
}

#users #users-content .table-wrapper table .actions {
    white-space: nowrap;
    display: flex;
    gap: 8px;
    align-items: center;
}

#users #users-content .table-wrapper table .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

#users #users-content .table-wrapper table .btn-action.edit {
    background: var(--blue-50);
    color: var(--blue-800);
    border: 1px solid var(--blue-300);
}

#users #users-content .table-wrapper table .btn-action.edit:hover {
    background: var(--blue-500);
    color: var(--white);
    border-color: var(--blue-500);
}

#users #users-content .table-wrapper table .btn-action.delete {
    background: var(--white);
    color: var(--red-500);
    border: 1px solid var(--red-300);
}

#users #users-content .table-wrapper table .btn-action.delete:hover {
    background: var(--red-500);
    color: var(--white);
    border-color: var(--red-500);
}

/* Edit Form Styling */
#users #users-content .form-wrapper {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 32px;
    max-width: 640px;
}

#users #users-content .form-wrapper .form-group {
    margin-bottom: 20px;
}

#users #users-content .form-wrapper .form-label {
    display: block;
    margin-bottom: 8px;
    font-family: Ubuntu, 'sans-serif';
    font-weight: 600;
    font-size: 14px;
    color: var(--blue-800);
}

#users #users-content .form-wrapper .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--slate-200);
    border-radius: 6px;
    font-family: Inter, 'sans-serif';
    font-size: 14px;
    color: var(--gray-800);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
}

#users #users-content .form-wrapper .form-control:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
    outline: none;
}

#users #users-content .form-wrapper .form-control::placeholder {
    color: var(--gray-300);
}

#users #users-content .form-wrapper select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23075783' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

#users #users-content .form-wrapper hr {
    margin: 28px 0;
    border: none;
    border-top: 2px solid var(--slate-200);
}

#users #users-content .form-wrapper .password-note {
    font-family: Inter, 'sans-serif';
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--slate-50);
    border-radius: 6px;
    border-left: 3px solid var(--blue-500);
}

#users #users-content .form-wrapper .form-actions {
    margin-top: 32px;
    display: flex;
    gap: 12px;
}

#users #users-content .form-wrapper .form-actions .btn {
    padding: 12px 24px;
    width: auto;
    height: auto;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

#users #users-content .form-wrapper .form-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#users #users-content .form-wrapper .help-block {
    color: var(--red-500);
    font-family: Inter, 'sans-serif';
    font-size: 13px;
    margin-top: 6px;
}

#users #users-content .form-wrapper .has-error .form-control {
    border-color: var(--red-500);
}

#users #users-content .form-wrapper .has-error .form-control:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}


/*
|--------------------------------------------------------------------------
| PRIVACY POLICY
|--------------------------------------------------------------------------
|
| Here will go all the privacy policy css layout and styling
|
*/

#privacy-policy {
    background:var(--slate-50);
}

#privacy-policy .card {
    padding: 38px;
    border:2px solid rgb(86, 114, 126,0.2);
    border-radius:4px;
    margin-top: 28px;
    color:var(--gray-500);
    margin: 58px 50px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

#privacy-policy [data-custom-class='body'],
#privacy-policy [data-custom-class='body'] * {
    background: transparent !important;
}

#privacy-policy [data-custom-class='title'],
#privacy-policy [data-custom-class='title'] * {
    font-family: Ubuntu, 'sans-serif' !important;
    font-size: 26px !important;
    color:var(--blue-800) !important;
}

#privacy-policy [data-custom-class='subtitle'],
#privacy-policy [data-custom-class='subtitle'] * {
    font-family: Inter, 'sans-serif' !important;
    color: var(--gray-500) !important;
    font-size: 14px !important;
}

#privacy-policy [data-custom-class='heading_1'],
#privacy-policy [data-custom-class='heading_1'] * {
    font-family: Ubuntu, 'sans-serif' !important;
    font-size: 19px !important;
    color:var(--blue-800) !important;
}

#privacy-policy [data-custom-class='heading_2'],
#privacy-policy [data-custom-class='heading_2'] * {
    font-family: Ubuntu, 'sans-serif' !important;
    font-size: 17px !important;
    color:var(--blue-500)!important;
}

#privacy-policy [data-custom-class='body_text'],
#privacy-policy [data-custom-class='body_text'] * {
    color: var(--gray-500) !important;
    font-size: 14px !important;
    font-family: Inter, 'sans-serif' !important;
}

#privacy-policy [data-custom-class='link'],
#privacy-policy [data-custom-class='link'] * {
    color: var(--blue-500)!important;
    font-size: 14px !important;
    font-family: Inter, 'sans-serif' !important;
    word-break: break-word !important;
}

/* #privacy-policy ul {
    list-style-type: square;
}

#privacy-policy ul > li > ul {
    list-style-type: circle;
}

#privacy-policy ul > li > ul > li > ul {
    list-style-type: square;
}

#privacy-policy ol li {
    font-family: Arial ;
} */

