/* ========================= */
/* :: 1.0 FONTS  */
/* ========================= */
@font-face {
    font-family: 'Axiforma';
    src: url('../fonts/Axiforma-Regular.eot');
    src: local('../fonts/Axiforma Regular'), local('Axiforma-Regular'),
        url('../fonts/Axiforma-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Axiforma-Regular.woff2') format('woff2'),
        url('../fonts/Axiforma-Regular.woff') format('woff'),
        url('../fonts/Axiforma-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Axiforma';
    src: url('../fonts/Axiforma-Medium.eot');
    src: local('Axiforma Medium'), local('Axiforma-Medium'),
        url('../fonts/Axiforma-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Axiforma-Medium.woff2') format('woff2'),
        url('../fonts/Axiforma-Medium.woff') format('woff'),
        url('../fonts/Axiforma-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Axiforma';
    src: url('../fonts/Axiforma-SemiBold.eot');
    src: local('Axiforma SemiBold'), local('Axiforma-SemiBold'),
        url('../fonts/Axiforma-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Axiforma-SemiBold.woff2') format('woff2'),
        url('../fonts/Axiforma-SemiBold.woff') format('woff'),
        url('../fonts/Axiforma-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Axiforma';
    src: url('../fonts/Axiforma-Bold.eot');
    src: local('Axiforma Bold'), local('Axiforma-Bold'),
        url('../fonts/Axiforma-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Axiforma-Bold.woff2') format('woff2'),
        url('../fonts/Axiforma-Bold.woff') format('woff'),
        url('../fonts/Axiforma-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Font */
    --axiforma-font: 'Axiforma', sans-serif;
    --poppins-font: 'Poppins', sans-serif;

    /* Color Palette */
    --white-color: #fff;
    --light-color: #f9fbff;
    --light-color-2: #f2f8f9;
    --black-color: #000;
    --primary-color: #004d55;
    --secondary-color: #e2a111;
    --dark-color: #333;
    --gray-color: #959595;
    --gray-color-2: #ababab;

    --dashboard-width: 68px;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    color: var(--black-color);
    font-size: 16px;
    font-family: var(--axiforma-font);
    font-weight: 400;
    line-height: normal;
    background-color: var(--white-color);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

section,
.section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

button {
    padding: 0;
    border: none;
    background: unset;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}

*+address,
*+dl,
*+fieldset,
*+figure,
*+ol,
*+p,
*+pre,
*+ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--black-color);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--black-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--black-color);
    color: var(--white-color);
    text-shadow: none;
}

/*===== Reusable & Bootstrap Customized CSS Start===== */
/* Button CSS Start */
.btn {
    height: 45px;
    padding: 8px 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--white-color);
    border-radius: 5px;
    border: 1px solid transparent;
    background-color: var(--primary-color);
}

.btn--sm {
    font-size: 11px;
    font-weight: 600;
    height: 28px;
    padding: 6px 10px 4px;
}

.btn:hover {
    color: var(--white-color);
    background-color: var(--secondary-color);
}

.btn--secondary {
    color: var(--white-color);
    background-color: var(--secondary-color);
}

.btn--secondary:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

/* Button CSS End */

/* Typography CSS Start */
.ff-poppins {
    font-family: var(--poppins-font);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-light {
    color: var(--light-color) !important;
}

.text-dark {
    color: var(--dark-color) !important;
}

.text-gray {
    color: var(--gray-color) !important;
}

/* Typography CSS End */

/* Random */
.bg-primary {
    background-color: var(--primary-color);
}

.bg-light-2 {
    background-color: var(--light-color-2);
}

.border-radius-10 {
    border-radius: 10px;
}

/* Random */

/* Animation CSS Start */
.transition-1 {
    transition: all 0.3s ease-in-out;
}

.transition-2 {
    transition: all 0.4s ease-in-out;
}

.transition-3 {
    transition: all 0.5s ease-in-out;
}

.transition-4 {
    transition: all 0.75s ease-in-out;
}

/* Animation CSS End */
/*===== Reusable & Bootstrap Customized CSS End===== */

/*===== Component CSS Start===== */
.text-badge {
    max-width: 86px;
    height: 26px;
    width: 100%;
    color: var(--dark-color);
    font-size: 13px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 3px 4px 2px;
    border-radius: 5px;
    background-color: var(--light-color-2);
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.08);
}

.text-badge-w {
    max-width: 200px;
}

.text-badge--sm {
    height: 22px;
    font-size: 11px;
}

.text-badge--low {
    color: #d17c35;
    background-color: #fff4e7;
}

.text-badge--high {
    color: #d02620;
    background-color: #fff1f0;
}

.text-badge--active {
    color: #328e00;
    background-color: #ebf6e5;
}

.text-badge--hold {
    color: #8205ff;
    background-color: #f7eeff;
}

.text-badge--completed {
    color: #5390eb;
    background-color: #e8f1ff;
}

/*===== Component CSS End===== */

/* ==================================== */
/* :: 4.0 Authentication Page CSS Start */
/* ==================================== */

/* === SignIn Page Start === */
.authentication__wrapper {
    height: 100vh;
}

.authentication__content {
    width: 100%;
    height: 50%;
    padding: 20px;
}

.authentication__content {
    height: 368px;
}

.authentication__content--one::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            #ffe69e 0%,
            #7dc9ad 38%,
            #416eb2 100%);
}

.authentication__thumb {
    width: 100%;
    height: 100%;
}

.authentication__thumb img {
    mix-blend-mode: luminosity;
    opacity: 0.3;
}

.authentication__thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--secondary-color) 0%,
            var(--primary-color) 84%);
    opacity: 0.7;
}

.authentication__text {
    max-width: 516px;
}

.authentication-logo {
    max-width: 140px;
    width: 100%;
    margin-bottom: 24px;
}

.authentication__heading {
    font-size: 26px;
    margin-bottom: 20px;
}

.authentication__box {
    max-width: 550px;
    width: 100%;
}

.authentication__title {
    font-size: 20px;
    margin-bottom: 16px;
}

.form {
    gap: 16px;
}

.form__label {
    font-size: 14px;
    color: var(--dark-color);
}

.form__input {
    width: 100%;
    height: 44px;
    padding: 10px;
    color: var(--dark-color);
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ebecf0;
    transition: all 0.3s ease-in-out;
}

.form__input:focus,
.form__input:not(:placeholder-shown) {
    border-color: var(--gray-color);
}

.form__input::placeholder {
    color: #97a0af;
    font-size: 14px;
    opacity: 1;
}

.authentication__link {
    font-size: 13px;
    color: var(--secondary-color);
}

.authentication__link:hover {
    color: var(--primary-color);
}

/* === SignIn Page End === */

/* ================================== */
/* :: 4.0 Authentication Page CSS End */
/* ================================== */

/* ====================================== */
/* :: 5.0 Dashboard Area CSS Start */
/* ====================================== */
/* Dashboard Header Start */

.headere--dashboard {
    position: fixed;
    top: 0;
    z-index: 9999;
    right: 0;
    background-color: var(--white-color);
    left: 0;
    z-index: 111;
    border-bottom: 1px solid #f2f2f2;
}

.header__wrapper {
    padding: 8px 10px;
    position: relative;
}

.notification-bell {
    width: 33px;
    height: 36px;
}

.bell-icon {
    width: 24px;
    height: 24px;
    color: #888a98;
}

.bell-icon svg {
    width: 100%;
    height: 100%;
}

.notification-info {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e06d52;
    color: var(--white-color);
    font-size: 12px;
}

.notification-number {
    margin-top: 3px;
}

/* Profile Dropdown */
.profile__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.profile__dropdown,
.profile__details {
    gap: 8px;
}

.profile__dropdown__icon {
    width: 10px;
    height: 6px;
}

.profile__dropdown__icon svg {
    width: 100%;
    height: 100%;
}

.dropdown-item.active .profile__dropdown__icon {
    transform: rotate(-180deg);
}

.profile__name {
    font-size: 12px;
}

.profile__designation {
    color: var(--gray-color-2);
    font-size: 12px;
}

.dropdown-item {
    position: relative;
}

.dropdown-item__content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 208px;
    border-radius: 4px;
    border: 1px solid rgba(171, 171, 171, 0.5);
    background-color: var(--white-color);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
    margin-top: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.dropdown-item__content--right {
    left: auto;
    right: 0;
}

.dropdown-item.active .dropdown-item__content {
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
}

.profile__dropdown__content {
    padding: 8px 16px;
}

.profile__dropdown__content .profile__info {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(171, 171, 171, 0.5);
    padding: 10px 0;
}

.profile__menu__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.profile__menu__item:last-child {
    border: none;
}

.profile__menu__link {
    font-size: 12px;
    color: var(--primary-color);
    padding: 8px 0;
}

.profile__menu__link:hover {
    color: var(--secondary-color);
}

/* Sticky Header */
.sticky-header {
    position: relative;
    width: 100%;
    z-index: 99999;
    transition: top 0.3s ease-in-out;
}

.sticky-header.sticky-active {
    position: fixed;
    top: -100px;
    left: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.sticky-header.sticky-active.show {
    top: 0;
}

/* Dashboard Header End */

/* Dashboard Content Area Start */
.dashboard__wrapper {}

/* Dashboard Aside Start */
.dashboard__content {
    transition: margin 0.4s;
    -webkit-transition: margin 0.4s;
    -moz-transition: margin 0.4s;
    -ms-transition: margin 0.4s;
    -o-transition: margin 0.4s;
}

.dashboard__aside {
    width: 240px;
    height: 100vh;
    transform: translateX(0%);
    position: fixed;
    z-index: 99;
    background-color: var(--primary-color);
    position: fixed;
    padding-inline: 10px;
    padding-block: 50px 10px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}

.dashboard__aside.closed {
    transform: translateX(-100%);
}

.aside__close-btn {
    position: absolute;
    z-index: 1111;
    top: 10px;
    z-index: 111;
    right: 20px;
    transform-origin: 50%;
    rotate: 180deg;
    margin-bottom: 50px !important;
}

.aside__close-btn img {
    pointer-events: none;
}

.dashboard__aside.closed .aside__close-btn {
    position: absolute;
    top: 10px;
    padding-block: 4px;
    padding-inline: 4px 4px;
    z-index: 111;
    display: flex;
    align-items: center;
    justify-content: end;
    right: -26px;
    background-color: var(--primary-color);
    transform-origin: 50%;
    rotate: 180deg;
    margin-bottom: 50px !important;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.aside__close-btn {
    rotate: 0deg;
}

.aside-menu-btn {
    width: 100%;
    padding-inline: 13px 10px;
    padding-block: 10px;

    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    flex-wrap: nowrap;
    border-radius: 10px;
    color: var(--white-color);
    white-space: nowrap;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.aside-menu-btn.active,
.aside-menu-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.aside-menu-btn span {
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    line-height: 1;
}

.aside-menu-btn.active span {
    font-size: 14px;
    font-weight: 700;
}

/* Dashboard Aside End */

.dashboard__content {
    padding: 25px 16px;
    padding-bottom: 100px !important;
}

.dashboard__top__content {
    margin-bottom: 34px;
}

.dashboard__top__para {
    color: var(--gray-color-2);
}

.dashboard__top__right {
    max-width: 336px;
    width: 100%;
}

.form__search__btn {
    width: 13px;
    height: 13px;
    margin-left: 11px;
    margin-right: 8px;
}

.form__search__btn svg {
    width: 100%;
    height: 100%;
    color: #b7b9c9;
}

.form--searchbar .form__input {
    padding-left: 32px;
}

.form--searchbar .form__input::placeholder {
    color: #b7b9c9;
}

.dashboard__main__content {
    gap: 20px;
}

.dashboard__content__item {
    margin-bottom: 25px;
    padding: 25px 16px;
}

.dashboard__inner__card {
    gap: 20px;
}

.dashboard__card__top {
    padding: 15px 16px;
    gap: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.dashboard-project-id {
    font-size: 14px;
}

.dashboard-card-title {
    font-size: 18px;
}

.dashboard-card-para {
    font-size: 12px;
}

.dashboard__card__bottom {
    padding: 6px 20px;
}

.dashboard__content__item--candidates .dashboard__card__bottom {
    padding: 10px 20px;
}

.avatar-item {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    font-size: 14px;
    color: var(--white-color);
    font-weight: 500;
    border: 2px solid var(--white-color);
}

.avatar-item {
    margin-left: -12px;
}

.avatar-item:first-child {
    margin-left: 0;
}

.avatar-item img {
    border-radius: 50%;
}

.avatar-text {
    line-height: 1;
    margin-top: 2px;
}

.candidates__avatar {
    padding-top: 15px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid var(--white-color);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 4px 8px 0 rgba(0, 0, 0, 0.15);
    background: #f8e8ce;
}

.dashboard__content__item--info {
    border: 1px solid #e9ebec;
}

.dashboard__info__item {
    padding: 24px 0;
    border-bottom: 1px solid #e9ebec;
}

.dashboard__info__item:first-child {
    padding-top: 0;
}

.dashboard__info__item:last-child {
    border: none;
    padding-bottom: 0;
}

.dashboard__contact__item {
    gap: 10px;
}

.dashboard__contact__thumb {
    width: 80px;
    height: 80px;
    border: 1px solid var(--white-color);
}

.dashboard__contact__info {
    height: 100%;
}

.dashboard__contact__icon {
    width: 20px;
    height: 20px;
}

.dashboard__contact__link a {
    color: var(--dark-color);
    font-size: 14px;
}

.dashboard__contact__link a:hover {
    color: var(--secondary-color);
}

.dashboard__articles__inner {
    gap: 10px;
}

.dashboard__article__item {
    padding: 12px 10px;
    padding-right: 5px;
    border-radius: 5px;
    gap: 10px;
}

.dashboard__article__thumb {
    width: 64px;
    height: 64px;
    border-radius: 7px;
    border: 1px solid var(--white-color);
}

.dashboard__article__title {
    font-size: 15px;
}

.dashboard__article__para {
    font-size: 11px;
}

.dashboard__article__para a {
    color: var(--secondary-color);
}

.dashboard__article__para a:hover {
    color: var(--primary-color);
}

.dashboard__interest__btn {
    height: 30px;
    width: 100%;
    padding: 6px;
    color: var(--dark-color);
    font-size: 12px;
    border-radius: 10px;
    background-color: #f8e8ce;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.08);
}

.dashboard__interest__btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.dashboard__interest__row.g-2 {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

/* Dashboard Content Area End */

/* Dashboard Footer Start */
.dashboard__article__inner {
    gap: 10px;
}

.dashboard {
    height: 100vh;
    position: relative;
}

.dashboard-footer {
    padding: 15px 22px;
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    bottom: 0;
    border-top: 1px solid #e9ebec;
    transition: all .3s ease-in-out;
}

.footer-info a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #333333;
}

.footer-info a:hover {
    color: var(--secondary-color);
}

.footer-link a {
    font-size: 12px;
    line-height: 1;
    padding-block: 2px;
    font-weight: 400;
    color: #333333;
}

.footer-link a:hover {
    color: var(--secondary-color);
}

.footer-link li a {
    border-right: 1px solid #333333;
}

.footer-link li:last-child a {
    border-right: 0;
}

/* Dashboard Footer End */

/* ==================================== */
/* :: 5.0 Dashboard Area CSS End */
/* ==================================== */



/* tooltip-css */
/* Tooltip style customization */
[data-bs-toggle="tooltip"] {
    --bs-tooltip-bg: #E2A111;
    /* Background color */
    --bs-tooltip-color: #fff;
    /* Text color */
    --bs-tooltip-border-radius: 10px;
    /* Border radius */
    --bs-tooltip-font-size: 14px;
    /* Font size */
}

/* Tooltip arrow override for RIGHT side */
.tooltip.bs-tooltip-end .tooltip-arrow::before {
    background-color: #E2A111 !important;
}

.card__info p { font-size: 14px; }

.steps { margin-bottom: 20px; }
.step { padding-top: 21px; width: 100%; height: 100%; font-size: 2.0rem; color: #fff; border-radius: 50%; background: #333333; text-align: center; }
.step-active { background: #e2a111; }

.form { font-size: 16px; }
.form .row { margin-bottom: 20px; }
.form input[type="text"], .form input[type="date"], .form input[type="file"], .form textarea { padding: 5px; width: 100%; max-width: 100%; border: 1px solid var(--gray-color-2); border-radius: 5px; }
.form-services button { float: right; padding: 10px 30px; font-weight: bold; color: #fff; border-radius: 5px; background: var(--primary-color); }
.form a { text-decoration: underline; color: #e2a111; }
.form a:hover { color: #00444a; }

span.right { margin-left: 15px; }

.btn-back {
    text-decoration: none !important;
    height: 45px;
    padding: 8px 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #1e4c54 !important;
    border-radius: 5px;
    border: 1px solid transparent;
    background-color: #f3f8f9;
}
