:root {
    --gradient-dashboard: linear-gradient(180deg, #DC3535 0%, #FFE15D 100%);
    --light-primary-90: #FF0000;
    --light-elevation-background-12-px: linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.06) 100%), #FFF;
    --light-primary-5: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 100%), red;
    --light-elevation-background-24-px: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.00) 100%), #FFF
}

body {
    font-family: Open Sans,sans-serif !important;
}

.form-control:focus,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-search--inline .select2-search__field:focus,
.select2-container--default.select2-container--open .select2-selection--single{
    border-color: #898989 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #D9D9D9 !important;
    color: #2E2E2E !important;
}

.content-wrapper {
    background: var(--light-elevation-background-12-px);
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form-body {
    width: 416px;
    height: 428px;
    display: grid;
    padding: 44px 44px 80px 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(20px);
}

.auth-form-body .title {
    background: var(--gradient-dashboard);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.09px;
    word-wrap: break-word;
    text-align: center;
    padding-bottom: 32px;
}

.auth-form-body .form-group label {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.14px;
    word-wrap: break-word
}

.auth-form-body .form-group input {
    display: flex;
    padding: 20px;
    align-items: center;
    /*border-radius: 20px;*/
    background: linear-gradient(0deg, white 0%, white 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    /*border: 0.50px rgba(31, 147, 219, 1) solid;*/
    justify-content: flex-start;
}

.auth-form-body .form-group input::placeholder {
    /*color: rgba(255, 255, 255, 0.35);*/
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1px;
    word-wrap: break-word
}

.form-check {
    margin-bottom: 12px;
}

.form-check .remember {
    width: 15px;
    height: 15px;
    border: 0.75px #2E2E2E solid
}

.form-check label {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.14px;
    word-wrap: break-word
}

.form-footer .forgot a {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.14px;
    word-wrap: break-word
}

.top-header {
    display: flex;
    padding: 16px 15px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-bottom: 1px solid #B7B7B7;
    background: var(--light-elevation-background-12-px);
    height: 80px;
}

.main-header .title-header {
    background: var(--gradient-dashboard);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    word-wrap: break-word;
    display: flex;
    align-items: center;
}

.btn-dashboard {
    background-image: var(--gradient-dashboard);
    /*padding: 16px;*/
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1px;
    word-wrap: break-word;
    border: none;
}

.btn-dashboard:hover {
    color: white;
}

.line-border, .line-border:hover {
    color: #DC3535;
}

.h-40 {
    height: 40px;
}

.link-black:hover, .link-black:focus {
    color: #6c757d;
}

.sidebar-dashboard {
    background: var(--light-elevation-background-12-px);
    border-right: 1px solid #B7B7B7;
}

.sidebar-search, .btn-search {
    background: white;
    border: 1px solid #A1A1A1;
    border-radius: 4px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #0a0e14;
    background: var(--light-primary-5);
}

.content-wrapper {
    padding: 0 15px 40px 15px;
}

.card-table {
    box-shadow: none;
    background: var(--light-elevation-background-24-px);
}

.card-table table thead tr th {
    padding: 18px 4px;
    background: var(--gradient-dashboard);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.14px;
    word-wrap: break-word;
}

.card-table table tbody tr td {
    color: #2E2E2E;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.20px;
    word-wrap: break-word;
    padding: 14px 4px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.p-20 {
    padding: 20px;
}

.row-search {
    padding-top: 20px;
    padding-bottom: 4px;
}

.h-44 {
    height: 44px !important;
}

.w-176 {
    width: 176px;
    max-width: 100%;
}

.select2-container .select2-selection--single {
    height: 44px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered
{
    line-height: 34px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px !important;
    color: #000000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow
{
    height: 41px !important;
    right: 15px !important;
}

.boder-search {
    border: 1px solid #aaa;
}

.form-btn {
    display: flex;
    justify-content: space-around;
}

.p-32 {
    padding: 32px;
}

.modal-delete {
    display: grid;
    gap: 32px;
}

.modal-delete div span {
    color: #2E2E2E;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.03px;
    word-wrap: break-word;
    text-align: center;
}

.sidebar-custom .btn-logout {
    padding: 8px 18px;
    font-size: 16px;
}

.nav-item:hover {
    color: #0a0e14;
    /*background: var(--light-primary-5);*/
}

.nav-pills .nav-link:not(.active):hover {
    color: #0a0e14;
}

.pt-16 {
    padding-top: 16px;
}

.btn-toggle-switch input {
    display: none;
}

.btn-toggle-switch span {
    position: relative;
    cursor: pointer;
    display: block;
    width: 45px;
    height: 24px;
    background: #cccccc;
    border-radius: 50px;
    transition: 300ms linear;
}

.btn-toggle-switch span:before {
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: left 300ms linear;
}

.btn-toggle-switch input:checked + span {
    background: #28a745;
}

.btn-toggle-switch input:checked + span:before {
    left: 23px;
}

.select-search {
    border-style: solid;
    border-width: 2px;
    border-image: var(--gradient-dashboard) 1;
    /*background: white;*/
    background: var(--gradient-dashboard);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.background-unset {
    background: unset !important;
}

.text-dashboard {
    background: var(--gradient-dashboard);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: var(--gradient-dashboard);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-color: unset;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.08px;
}

.custom-nav-tabs .nav-item:has(.nav-link.active) {
    background-color: #ffffff;
}

.custom-nav-tabs .nav-item {
    flex-grow: 1;
    text-align: center;
}

.custom-nav-tabs {
    background: var(--light-elevation-background-12-px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-nav-tabs .nav-link {
    padding: 20px 10px 10px 10px;
    border: unset;
    position: relative;
    display: inline-block;
}

.custom-nav-tabs .nav-link.active::after {
    content: "";
    display: block;
    width: 60%;
    border-bottom: 2px solid rgb(255 111 27 / 50%);
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
}

.fs-20 {
    font-size: 20px !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: unset;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #FFF1F1;
}

.card-dashboard {
    background: #000000;
}

.input-img input {
    display: none;
}

.input-img label {
    display: block;
    width: 80px;
    height: auto;
    max-height: 80px;
    cursor: pointer;
}

.input-img img {
    width: 80px;
    height: 80px;
}

.imgRemove {
    position: relative;
    bottom: 91px;
    left: 69%;
    background-color: transparent;
    border: none;
    font-size: 25px;
    outline: none;
}

.imgRemove::after {
    content: ' \21BA';
    color: #dc3545;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
}

.label-title {
    color: #2E2E2E;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.14px;
    word-wrap: break-word;
}

.btn-table, .btn-table:hover {
    color: #2E2E2E;
}

.select-year {
    background: linear-gradient(#f0f0f0, #f0f0f0) padding-box,
    linear-gradient(180deg, #DC3535 0%, #FFE15D 100%) border-box !important;
    border: 2px solid transparent !important;
}

.select-year span {
    color: rgba(210, 98, 34, 0.94) !important;
}

.select-year b {
    border-color: rgba(210, 98, 34, 0.94) transparent !important;
}

.paginate_button.active .page-link {
    background: var(--gradient-dashboard) !important;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 16px;
    color: white;
}

.paginate_button.active .page-link:hover {
    color: white;
}

.paginate_button .page-link {
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    color: #727272;
}

.paginate_button .page-link:hover {
    background-color: unset;
    border-radius: 4px;
    color: #727272;
}

.paginate_button a:focus {
    outline: none;
    box-shadow: none;
}

#select2-yearSelect-results .select2-results__option--highlighted[aria-selected] {
    background-color: #ffffff;
    color: #000000;
}

#select2-yearSelect-results .select2-results__option--highlighted[aria-selected]:hover {
    background-color: #9c9c9c;
    color: white;
}

.addRow {
    border: 1px solid;
}

.inputRemove,
.inputRemoveTitle,
.inputRemoveContentBlock,
.inputRemovereq_input_bf_summary,
.inputRemovereq_input_bf_skill,
.inputRemovereq_input_bf_work_experience,
.inputRemovereq_input_bf_language,
.inputRemovereq_input_bf_certificates,
.inputRemovereq_input_bf_professional,
.inputRemoveBf,
.label-center
{
    text-align: center;
    cursor: pointer;
}

.inputRemove i,
.inputRemoveTitle i,
.inputRemoveContentBlock i,
.inputRemovereq_input_bf_summary i,
.inputRemovereq_input_bf_skill i,
.inputRemovereq_input_bf_work_experience i,
.inputRemovereq_input_bf_language i,
.inputRemovereq_input_bf_certificates i,
.inputRemovereq_input_bf_professional i,
.inputRemoveBf i,
.label-center i
{
    position: relative;
    top: calc(50% - 10px);
}

.btn-dashboard-border {
    border: double 2px transparent;
    border-radius: 4px;
    background-image: linear-gradient(#FFF, #FFF), var(--gradient-dashboard);
    background-origin: border-box;
    background-clip: content-box, border-box;
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1px;
    word-wrap: break-word;
    cursor: pointer;
}

.btn-dashboard-border i {
    padding: 16px;
}

.btn-import, .background-f0f0f0 {
    background-image: linear-gradient(#f0f0f0, #f0f0f0), var(--gradient-dashboard);
}

.lds-dual-ring.hidden {
    display: none;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 5% auto;
    border-radius: 50%;
    border: 6px solid #000;
    border-color: #000 transparent #000 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    background: rgb(166 166 166 / 62%);
    z-index: 999999999;
    opacity: 1;
    transition: all 0.5s;
}

.w-h-70 {
    width: 70px;
    height: 70px;
}

.fs-12 {
    font-size: 12px;
}
.list-group .search-title strong {
    color: #0a0e14 !important;
}
.content-child {
    display: inline-grid;
    width: 100%;
}
.h-50px {
    height: 50px;
}
.name-file {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    padding: 10px 0 0 10px;
}

.custom-file-upload {
    display: inline-block;
    cursor: pointer;
}

#uploadFile {
    text-align: center;
    border: none;
    background-color: white;
    color: black;
}
.trash-center {
    position: relative;
    top: calc(50% - 10px);
}
.sidebar-dashboard {
    font-size: 17px !important;
}
.nav-item .nav-link p, .btn-logout {
   color: #0a0e14
}

td {
    white-space: normal;
}

.dataTables_filter input {
    width: 400px !important;
}

@media screen and (max-width: 1280px) {
    .dataTables_filter input {
        width: 270px !important;
        box-sizing: border-box !important;
    }
}
