@font-face {
    font-family: "DINPro";
    font-weight: 400;
    font-style: normal;
    src: url("../fonts/DINPro-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "DINPro";
    font-weight: 500;
    font-style: normal;
    src: url("../fonts/DINPro-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "DINPro";
    font-weight: 700;
    font-style: normal;
    src: url("../fonts/DINPro-Bold.woff2") format("woff2");
}

:root {
    --primary-color: #2c8e9a;
    --secondary-color: #9b702c;
    --text-color: #565f5e;
    --background-color: #f0f0f0;
    --background-muted: #f3f3f3;
    --muted-color: #b3b3b3;
}

body {
    padding: 0 !important;
    font-family: "DINPro", sans-serif;
    font-weight: 400;
    font-size: 1rem; /* 18px base */
    line-height: 1.5;
    /* font-family: "DINPro", sans-serif !important; */
}

.wrapper {
    min-height: 100vh;
    padding-bottom: 2rem;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-color) !important;
}

.bg-muted {
    background-color: var(--background-muted) !important;
}

/*btn*/

.btn,
.btn-primary,
.btn-outline-secondary {
    border-radius: 0;
    height: 45px;
    font-size: 0.9rem;
    background-color: #2c8e9a !important;
    border: 1px solid #2c8e9a !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.2rem;
    gap: 0.5rem;
    text-transform: uppercase;
}

.btn-outline-secondary {
    border: 1px solid #2c8e9a !important;
    background: transparent !important;
    color: #2c8e9a !important;
}
.btn-plain {
    border: 1px solid !important;
    background: transparent !important;
    color: #2c8e9a !important;
    border-color: transparent !important;
}

.btn-plain:hover {
    border: 1px solid !important;
}

.btn-outline-secondary:hover {
    background-color: #2c8e9a20 !important;
}

.btn-danger {
    background-color: #da1e28 !important;
    border-color: #da1e28 !important;
    color: #fff;
}

.btn-secondary {
    background: rgba(138, 141, 143, 0.3) !important;
    border-color: rgba(138, 141, 143, 0.3) !important;
    color: #565f5e !important;
}

.btn-secondary:hover {
    background-color: rgba(138, 141, 143, 0.5) !important;
}

.btn-secondary svg path {
    fill: #565f5e;
}

.btn-danger:hover {
    background-color: #ba1b23 !important;
}

.btn-border {
    background-color: transparent !important;
    color: #16808e !important;
    border: 1px solid #2c8e9a !important;
}

.btn-white {
    background-color: #fff !important;
    color: #2c8e9a !important;
    border: 1px solid #2c8e9a !important;
}

.btn-border:hover {
    background-color: #16808e20 !important;
}

.btn:hover {
    background-color: #16808e;
    border: 1px solid #16808e;
}

.dropdown-menu {
    border-radius: 0px;
}

.dropdown-item:hover {
    background-color: #ebe2d5 !important;
}

/*alert*/
.alert {
    border-radius: 0;
    /* border: 0; */
    border-left: 4px solid currentColor;
    /* display: flex; */
    align-items: start;
    gap: 1rem;
}

.alert:has(.icon) {
    display: flex;
}

.alert svg {
    height: 24px;
    width: 24px;
    flex: 0 0 24px;
}

.alert svg path {
    stroke: currentColor;
}

.alert-success svg path {
    stroke: #6bac44;
}

.alert-info {
    border-color: #2c8e9a !important;
    background-color: rgba(44, 142, 154, 0.1) !important ;
    border-top: 0px;
    border-bottom: 0px;
    border-right: 0px;
}

.alert-info h5 {
    color: #2c8e9a !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
}

.alert-secondary {
    border-color: var(--secondary-color) !important;
    background-color: #faf6ef !important ;
    border-top: 0px;
    border-bottom: 0px;
    border-right: 0px;
}

.alert-secondary h5 {
    font-size: 1.1rem;
    display: flex;
    gap: 1rem;
    font-weight: 400;
}

.alert-secondary p {
    font-size: 0.9rem;
}

.alert-secondary h5,
.alert-secondary p {
    color: #000 !important;
}

/* modal */

.modal-backdrop {
    display: none !important;
}

.modal {
    background: rgba(0, 0, 0, 0.5);
}

.modal .modal-dialog {
    border-radius: 0px;
}

.modal .modal-content {
    border-radius: 0px;
}

.modal .modal-header {
    border: 0;
    border-radius: 0px;
}

.modal .modal-body {
    text-align: center;
}

.modal .modal-footer {
    border: 0;
    border-radius: 0px;
    justify-content: center;
}

/*file*/

.file-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e1d4c0;
    background: #faf6ef;
    position: relative;
}

.file-card a {
    border-radius: 0px;
    display: flex !important;
    align-items: center;
    gap: 1.2rem;
    flex: 0 0 calc(100% - 70px);
    text-align: left;
    padding-right: 1rem;
}

.file-card a small {
    word-break: break-word;
}

/* .file-card a svg, */
.file-card a i,
.file__icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
    font-size: 1.75rem !important;
    color: #b99b6b !important;
}

.file__icon svg {
    width: 1.7rem;
    aspect-ratio: 1 / 1;
}

.file-card .btn {
    background-color: transparent !important;
    border: 0 !important;
    color: #8a8d8f !important;
    height: 70px;
    width: 70px;
    flex: 0 0 70px;
}

.file-card .btn i {
    color: #8a8d8f !important;
    font-size: 1.5rem;
}

.file-card .btn svg {
    color: #8a8d8f !important;
    width: 1.5rem;
}

.file-card .btn:hover {
    background-color: rgba(155, 112, 44, 0.2) !important;
}

.doc_counter {
    position: absolute;
    top: 0;
    left: 0;
    background: #e1d4c0;
    color: #9b702c;
    width: 1rem;
    aspect-ratio: 1 / 1;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*table*/

.table > thead {
    /* background-color: #ebe2d590 !important; */
    background-color: #f5eee0 !important;
}

.table thead * {
    background-color: transparent !important;
    vertical-align: middle;
    font-weight: 500;
}

.table-bordered > :not(caption) > * {
    border: 1px solid #e1d4c0 !important;
}

table .table__bg__brown__light {
    background-color: #faf6ef !important;
}
table .table__bg__brown {
    background-color: #f5eee0 !important;
}

/*form*/

.form-control {
    border-radius: 0;
    height: 56px;
}

input[type="file"].form-control {
    line-height: 56px;
    padding-top: 0;
    padding-bottom: 0px;
}
.form-control::placeholder {
    opacity: 0.5;
}
.form-select {
    height: 60px;
    border-radius: 0;
}

.form-check-input {
    height: 24px;
    float: none;
    margin-top: 0;
    width: 24px;
    border-radius: 0;
    background-size: 16px 16px;
}

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

.form-check {
    display: flex !important;
    align-items: center;
    gap: 0.7rem;
    margin: 0.5rem 0;
}

textarea.form-control {
    height: 100px;
    resize: vertical;
}

a {
    color: #9b702c;
}

/*pages*/

.guest-page .card {
    border: 0;
    border-radius: 0px;
}

.guest-page .card-header {
    border: 0;
    text-align: center;
    padding-top: 2rem;
    background-color: #fff;
}
.guest-page .card-header h1 {
    font-size: 1.8rem;
}

.guest-page .card-body {
    padding: 2rem;
}

.guest-page .navbar .navbar-brand img {
    height: 50px;
}

.guest-page .navbar .navbar__title {
    font-size: 2.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
}

@media only screen and (max-width: 600px) {
    .guest-page .card-body {
        padding: 1rem;
    }
}

.app-page {
}

.app-page .navbar .navbar-nav {
    display: flex;
    gap: 2rem;
}

.app-page .navbar .navbar-brand img {
    height: 45px;
}

.app-page .navbar .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

.app-page .navbar .nav-link:hover {
    color: var(--text-color) !important;
}

.app-page .navbar .nav-link.dropdown-toggle::after {
    /* background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M1 1L5 5L9 1" stroke="%23565F5E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>'); */
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M1%201L6%206L11%201%22%20stroke%3D%22%232C8E9A%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    border: 0 !important;
    height: 20px;
    width: 20px;
    background-position: center;
    background-repeat: no-repeat;
    /* background-color: #f0f0f0; */
    /* border-radius: 20px; */
    display: none;
}

.app-page .navbar .nav-link.dropdown-toggle i {
    font-size: 12px;
}

.dashboard-page .dashboard-card {
    padding: 1.5rem;
}

.dashboard-page .dashboard-card .card-header {
    background-color: transparent !important;
    border: 0;
    border-bottom: 1px solid #ebebeb;
    color: var(--text-color);
}

.dashboard-page .dashboard-card .card-header h4 {
    color: var(--text-color);
    font-weight: normal;
}

.dashboard-page .dashboard-card .card-header .icon {
    height: 48px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    background-color: rgba(44, 142, 154, 0.1);
    flex: 0 0 48px;
}

.dashboard-page .dashboard-card .card-header .icon i {
    font-size: 24px;
}

.dashboard-page .card-header-logo {
    border-radius: 100%;
    overflow: hidden;
    background-color: #f2f8f9;
    padding: 0.5rem;
    aspect-ratio: 1 / 1;
}

.card-header-logo-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.card-header-logo-change-text {
    font-size: 0.8rem;
    margin-top: 3px;
}

.user-list i {
    height: 32px;
    width: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8a8d8f10;
    color: #8a8d8f;
}

.user-list svg {
    height: 16px;
    width: 16px;
    flex: 0 0 16px;
    aspect-ratio: 1/1;
    /* color: #8a8d8f; */
}

.user-list label {
    margin-bottom: 0px;
    line-height: 1;
    font-size: 1rem;
    color: #8a8d8f;
}

.user-list__value {
    line-height: 1.3;
    color: #414042;
    font-weight: 400;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.announcement-card {
    padding: 1.5rem;
    background-color: var(--primary-color);
}

.announcement-card .title {
    color: #fff;
}

.announcement-card .description {
    color: #fff;
    text-align: center;
}

.app-page-section-heading-container {
    padding-block: 1.5rem;
    padding-inline: 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 0.5rem;
}

.app-page-heading-container {
    padding-block: 2rem;
}

.app-page-heading {
    display: flex;
    justify-content: space-between;
}

.app-page-heading h2 {
    font-size: 1.7rem;
    gap: 1.5rem;
    display: flex;
    margin: 0;
    align-items: center;
}

.app-page-heading .icon {
    color: var(--primary-color);
    background-color: rgba(44, 142, 154, 0.1);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip;
}

.app-page-heading .icon i {
    color: var(--primary-color) !important;
    font-size: 24px;
    margin: 0 !important;
}

.card-body form > div {
    /* margin-bottom: 1.5rem; */
}

.footer {
    color: var(--muted-color);
    text-align: center;
}

.interest__card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.3rem;
    background: #fff;
    margin-bottom: 2rem;
}

.interest__card .interest__card__btn {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    text-transform: uppercase;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}
.interest__card .interest__card__btn svg {
    fill: var(--primary-color);
}

.profile-avatar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-avatar-image {
    border-radius: 100%;
    width: 2.2rem;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon__label__wrapper {
    display: flex;
    line-height: 1;
    gap: 0.7rem;
}

.icon__label__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.icon__label__content__label.d-block {
    font-size: 0.9rem;
    color: #8a8d8f;
}

.icon__label__content__value {
    font-size: 1.1rem;
}

.icon__bg__white {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon__bg__white .icon__bg__white__svg {
    padding: 4px;
    background-color: transparent !important;
    width: 32px;
    height: 32px;
    aspect-ratio: 1 / 1;
}

.contract__type__gender__label {
    padding: 0.4rem 0;
    text-transform: capitalize;
}

.contract__type__gender {
    padding: 2px;
    margin: 0.4rem 0;
}

.contract-input {
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question__label {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    /* font-size: 1.3rem; */
}

.question__description {
    font-size: 1rem;
}

.question__radio__wrapper {
    display: flex;
    gap: 2rem;
}

.question__wrapper {
    border-bottom: 1px solid #ebebeb;
    padding: 1.2rem 0;
}

th.table__year {
    width: 6rem;
}

.table__year__label {
    font-weight: 500;
}

tbody .input-group-text {
    border-radius: 0;
    background-color: #f9f9f9 !important;
    border-color: #ededed !important;
}

input.form-control {
    border-color: #ededed !important;
}

.alert.alert-danger {
    padding: 0.5rem !important;
}

.alert.alert-danger h5 {
    font-size: 1rem;
    font-weight: 400;
}

table tbody td {
    vertical-align: middle !important;
}

.alert-danger {
    border-color: #d90000 !important;
    background-color: #ffebeb !important ;
    color: #d90000 !important;
}

.text-danger {
    color: #d90000 !important;
}

.question__wrapper .table thead * {
    padding-block: 0.9rem;
}

.question__wrapper .table > :not(caption) > * > * {
    padding-block: 0.9rem;
}

form .question__wrapper .table > :not(caption) > * > * {
    padding-block: 0.5rem;
}

form .question__wrapper .table thead * {
    padding-block: 0.9rem;
}

.remove-file-btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    background-color: #9b712b !important;
    border: 0 !important;
    width: 30px;
    height: 30px;
    padding: 0;
    transform: translate(50%, -50%);
    padding: 3px;
}

.file-card:has(input[type="file"]) {
    /* border: 1px solid red; */
    border-color: #dee2e6 !important;
}
.file-card input[type="file"] {
    border: none;
}

.logo__bg {
    top: 80px;
}

.password-toggle-container {
    position: relative;
}

.password-toggle-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 10;
    font-size: 18px;
    display: none;
}

.password-toggle-icon.show {
    display: block;
}

.password-toggle-icon:hover {
    color: #495057;
}
