:root {
    --bg-dark: #444;
    --bg-light: #5f5f5f;
    --bg-lighter: #a2a2a2;
    --accent-light: #4c7f94;
    --accent-dark: #194b5f;
    --font-light: #777777;
    --font-dark: #2c2c2c;
    --success-green: #198754;
    --info-orange: #b5740b;
    --error-red: #e25f5f;

    --nav-height: 80px;
    --sidebar-width: 250px;

    @font-face {
        font-family: ciFont;
        src: url(../fonts/Neuropol_X_Bold.ttf);
    }
    background-color: var(--bg-dark);
}

body {
    font-family: 'Ubuntu', sans-serif;
    margin: 0px;
    color: var(--font-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a {
    cursor: pointer;
}
.main {
    margin: calc(var(--nav-height) + 20px) calc(var(--sidebar-width) + 30px);
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.tac {
    text-align: center;
}
.ir {
    float: right;
    padding: 0px 5px;
}
.ir:hover {
    cursor: pointer;
}
@media (max-width: 768px) {
    .hide-sm {
        display: none;
    }
    .main {
        margin: 10px;
    }
}
.hidden {
    display: none;
}
/* ---------------------------------------- HEADINGS AND FONTS ---------------------------------------- */
.fwb {
    font-weight: bold;
}
.fcl {
    color: var(--font-light);
}
.fcd {
    color: var(--font-dark);
}
h1 {
    margin: 10px 0px;
    font-size: 3em;
}
/* ---------------------------------------- BUTTONS ---------------------------------------- */
.center-button {
    display: flex;
    justify-content: center;
    align-items: center;
}
button {
    cursor: pointer;
}
.btn {
    padding: 20px;
    border-radius: 15px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    outline: none;
}
.btn:hover {
    filter: saturate(0.7);
    transition: ease-in-out 0.2s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.btn-light {
    background-color: var(--accent-light);
    color: var(--font-dark);
}
.btn-dark {
    background-color: var(--accent-dark);
    color: var(--font-light);
}
.btn-confirm {
    background-color: var(--success-green);
    color: var(--font-dark);
}
.btn-delete {
    background-color: var(--error-red);
    color: var(--font-dark);
}
.btn-warning {
    background-color: var(--info-orange);
    color: var(--font-dark);
}
/* ---------------------------------------- ROWS AND COLS ---------------------------------------- */
.row {
    display: flex;
    flex-wrap: wrap;
}
.col img {
    max-width: 100%;
}
[class*='col-'] {
    flex: 0 0 auto;
    padding: 10px;
    box-sizing: border-box;
}
.col-2 {
    width: 16.66%;
}
.col-3 {
    width: 25%;
}
.col-4 {
    width: 33.33%;
}
.col-6 {
    width: 50%;
}
.col-8 {
    width: 66.66%;
}
.col-9 {
    width: 75%;
}
.col-10 {
    width: 83.33%;
}
.col-12 {
    width: 100%;
}
/* Small devices (up to 768px) */
@media (max-width: 768px) {
    .col-sm-2 {
        width: 16.66%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.33%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-8 {
        width: 66.66%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-10 {
        width: 83.33%;
    }
    .col-sm-12 {
        width: 100%;
    }
}
/* ---------------------------------------- NAV ---------------------------------------- */
header {
    background-color: var(--accent-dark);
}
.navbar {
    z-index: 100;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    background-color: var(--accent-dark);
    width: 100%;
    min-height: var(--nav-height);
    padding: 0px 10px;
    top: 0;
}
.nav-menu-right {
    display: flex;
    justify-content: flex-end;
}
.logo img {
    height: 50px;
    margin: 0px 20px;
    transition: transform 0.2s ease-in-out;
}
.logo img:hover {
    transform: rotate(360deg);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    padding: 0px;
}
.nav-menu ul li {
    padding: 10px 20px;
}
.nav-menu ul li a {
    font-size: 1.25em;
    font-weight: bold;
    text-decoration: none;
    color: var(--font-light);
}
.nav-menu ul li a:hover {
    color: var(--font-dark);
    transition: ease-in-out 0.2s;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 10px;
}

@media (max-width: 768px) {
    .header {
        padding: 0px;
    }
    .logo img {
        height: 30px;
    }

    .nav-menu {
        border-top: 1px solid var(--bg-dark);
        box-shadow: 3px 40px 85px -7px rgba(0, 0, 0, 0.59);
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--accent-light);
    }
    .nav-menu-right {
        border-top: 1px solid var(--font-light);
    }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
    }
    .nav-menu ul {
        margin: 0px;
        flex-direction: column;
    }
    .nav-menu ul li a {
        text-decoration: none;
        color: var(--font-light);
    }
    .hamburger {
        display: flex;
        align-items: center;
    }
}
/* ---------------------------------------- SEARCHBAR ---------------------------------------- */
.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input {
    width: 40px;
    border-radius: 20px;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    color: var(--font-light);
}

.input::placeholder {
    color: transparent;
}

.input:focus,
.input:not(:placeholder-shown) {
    background-color: var(--accent-dark);
    border: 2px solid var(--font-light);
    width: 290px;
    padding: 10px 40px;
}

.search-icon {
    position: absolute;
    left: 0;
    padding: 5px;
    height: 30px;
    width: 30px;
    border-radius: 99px;
    z-index: -1;
    fill: var(--accent-dark);
}

.search-icon rect {
    fill: var(--font-light);
}

.input:focus + .search-icon,
.input:not(:placeholder-shown) + .icon {
    z-index: 0;
    background-color: transparent;
    border: none;
}

#searchResults {
    padding: 0;
    margin: 20px;
    top: 50%;
    display: block;
    position: absolute;
    background-color: var(--accent-light);
    max-height: 50vh;
    width: 350px;
    border: 2px solid var(--accent-dark);
    box-shadow: 3px 40px 85px -7px rgba(0, 0, 0, 0.59);
}

#searchResults a {
    display: block;
    padding: 10px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #333;
}
#searchResults a:hover {
    color: var(--accent-dark);
    font-size: 1.05em;
    transition: 0.3s ease-in-out;
}
/* ---------------------------------------- SIDEBAR ---------------------------------------- */
.sidebar {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--nav-height));
    background-color: var(--accent-light);
    align-items: start;
}
.sidebar ul {
    list-style: none;
    margin: 0px;
    padding: 10px;
}
.sidebar li {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.sidebar li a {
    text-decoration: none;
    color: var(--font-dark);
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.sidebar li a:hover {
    text-decoration: none;
    color: var(--accent-dark);
    transform: scale(1.1);
    font-weight: bold;
}
.sidebar li a i {
    padding: 5px;
}
.sidebar-sub {
    margin: 0px;
    padding: 0px 0px 0px 20px !important;
}
.sidebar .sidebar-sub li#current-subitem {
    font-weight: bold;
    transform: scale(1.1);
}
.sidebar-subitem {
    margin: 0px !important;
}
.sidebar-subitem a {
    font-size: 0.5em;
}
.collapsed {
    display: none;
}
.dropdown-icon {
    transition: transform 0.2s ease-in-out;
}
.rotate-90 {
    transform: rotate(90deg);
}

/* ---------------------------------------- MODAL ---------------------------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--accent-light);
    color: var(--font-dark);
    border-radius: 25px;
    margin: 10% auto;
    padding: 20px;
    width: 60vw;
}

.modal-content form .row {
    margin-bottom: 15px;
}

.modal-content form .row [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.modal-content form label {
    margin-bottom: 10px;
    font-weight: bold;
}

.modal-content form input,
.modal-content form select {
    background-color: var(--bg-dark);
    color: var(--font-light);
    border-radius: 15px;
    outline: none;
    border: none;
    padding: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* ---------------------------------------- ACCORDION ---------------------------------------- */
.accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 20px 0px;
}

.accordion-item {
    border: 2px solid var(--accent-light);
    color: var(--font-light);
    border-radius: 8px;
    margin-bottom: 5px;
}

.accordion-item-header {
    background-color: var(--bg-light);
    font-weight: bold;
    font-size: 2em;
    color: var(--font-light);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}

.accordion-item-content {
    display: none;
    padding: 10px;
}
/* ---------------------------------------- LOGIN-PAGE ---------------------------------------- */
.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50vw;
    height: 50vh;
    background: rgb(37, 14, 14);
    background: linear-gradient(
        20deg,
        var(--accent-dark) 0%,
        var(--accent-light) 100%
    );
    border-radius: 25px;
    margin: auto;
}
.login-logo {
    max-width: 5vw;
}
.btn-login {
    background-color: var(--bg-dark);
    font-size: 1.5em;
    font-weight: bold;
    color: var(--accent-light);
    border-radius: 10px;
    margin-top: 20px;
    border: none;
    outline: none;
    padding: 0.75em 1.25em;
}
.btn-login:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--bg-dark);
    color: var(--accent-dark);
    transition: all 200ms;
}
.form-login .form-label {
    margin-bottom: 0.5em;
    font-size: 1.25em;
}
.form-login .form-input {
    background-color: var(--bg-dark);
    border-radius: 15px;
    color: var(--font-light);
    border: 1px solid black;
    outline: none;
    padding: 5px;
    height: 1em;
    font-size: 1.25em;
}
.form-login .form-group {
    display: flex;
    flex-direction: column;
    width: 30vw;
    margin-bottom: 1em;
}

@media (max-width: 768px) {
    .login-form {
        width: 90vw;
        margin: auto;
    }
    .form-login .form-input {
        font-size: 1em;
    }
    .form-login .form-group {
        width: 80vw;
    }
}
/* ---------------------------------------- ALERTS ---------------------------------------- */
#alertContainer {
    position: absolute;
    right: 30px;
    top: calc(var(--nav-height) + 15px);
}
.alert {
    position: absolute;
    right: 30px;
    min-height: 80px;
    max-height: 150px;
    min-width: 300px;
    max-width: 500px;
    border-radius: 20px;
    margin-bottom: 10px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 0s linear 1s;
}
.alert.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease;
}
.alert-icon {
    font-size: 2em;
    font-weight: bold;
    margin: 5px;
}
.alert-msg {
    font-size: 1em;
    font-weight: bold;
    padding: 10px;
    display: flex;
    align-items: center;
}
.alert-success {
    background-color: var(--success-green);
}
.alert-success .alert-msg {
    color: var(--font-dark);
}
.alert-icon-success {
    color: var(--success-green);
    filter: brightness(0.7);
}

.alert-warning {
    background-color: var(--info-orange);
}
.alert-warning .alert-msg {
    color: var(--font-dark);
}
.alert-icon-warning {
    color: var(--info-orange);
    filter: brightness(0.7);
}

.alert-info {
    background-color: var(--accent-light);
}
.alert-info .alert-msg {
    color: var(--font-dark);
}
.alert-icon-info {
    color: var(--accent-light);
    filter: brightness(0.7);
}

.alert-error {
    background-color: var(--error-red);
}
.alert-error .alert-msg {
    color: var(--font-dark);
}
.alert-icon-error {
    color: var(--error-red);
    filter: brightness(0.7);
}
/* ---------------------------------------- CONFIRMATION-DIALOGS ---------------------------------------- */
.swal2-popup {
    background-color: var(--bg-lighter) !important;
    color: var(--font-dark) !important;
}
.swal2-confirm {
    background-color: var(--error-red) !important;
    color: var(--font-dark) !important;
    font-weight: bold !important;
}
.swal2-cancel {
    background-color: var(--accent-light) !important;
    color: var(--font-dark) !important;
    font-weight: bold !important;
}
/* ---------------------------------------- ERROR-PAGE ---------------------------------------- */
@keyframes errorCodeAnmim {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}
.error {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.error-code {
    font-size: 5em;
    color: var(--accent-light);
    animation: errorCodeAnmim 2s ease 0s 1 normal forwards;
}
.error-title {
    font-size: 2.5em;
    color: var(--font-light);
}
.error-message {
    font-size: 1.5em;
    color: var(--font-light);
}
.error-link {
    color: var(--accent-light);
    font-weight: bold;
}
/* ---------------------------------------- EMPLOYEE ---------------------------------------- */
.employee-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.employee-title i {
    font-size: 3em;
}
.employee-title i:hover {
    color: var(--accent-light);
    transition: ease-in-out 0.33s;
    cursor: pointer;
}
.employee {
    background-color: var(--accent-light);
    margin: 20px;
    padding: 20px;
    border-radius: 15px;
}
.employee:hover {
    background-color: var(--accent-dark);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
        rgba(0, 0, 0, 0.22) 0px 10px 10px;
    transition: ease-in-out 0.33s;
}
.employee img {
    border-radius: 15px;
    height: 150px;
    width: auto;
}
.employee a,
.job-post a {
    text-decoration: none;
    color: var(--font-dark);
}
.employee p {
    font-size: 2em;
    margin: 0px;
    font-weight: bold;
}
.employee-header {
    display: flex;
    align-items: center;
    font-size: 1.25em;
    border-bottom: 4px solid var(--accent-light);
}
.employee-header-link {
    text-decoration: none;
    color: var(--font-light);
}
.profile-img-container {
    position: relative;
    text-align: center;
}
.employee-header img {
    height: 10vh;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--accent-light);
}
.profile-img-container {
    position: relative;
    text-align: center;
}

.profile-img-container i.fa-pen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    font-size: 24px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.33);
    padding: 10px;
    border-radius: 50%;
    transition: opacity 0.3s;
}

.profile-img-container:hover i.fa-pen,
.profile-img-container img:hover {
    opacity: 1;
    cursor: pointer;
}
.profile-img {
    filter: blur(0);
    transition: filter 0.3s;
}
.profile-img-container:hover .profile-img {
    filter: blur(3px);
}
.detail-box {
    background-color: var(--accent-dark);
    border-radius: 10px;
    padding: 20px;
}
.detail-box .top-row .col-6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.detail-box h2 {
    margin: 0px;
}
.detail-box i:hover {
    cursor: pointer;
    color: var(--info-orange);
    transition: ease-in-out 0.33s;
}
.icon-container {
    margin-left: auto;
}
.detail-info {
    color: var(--font-light);
    filter: saturate(0.7);
}
.preview-map {
    width: 100%;
    height: calc(100% - 20px);
    margin: 10px;
    max-height: 700px;
    border-radius: 10px;
}
.mapboxgl-popup-content {
    background-color: var(--accent-light) !important;
}
.mapboxgl-popup-tip {
    border-top-color: var(--accent-light) !important;
}
.mapboxgl-popup-content p {
    color: var(--font-dark);
}
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right {
    display: none;
}
.marker {
    background-image: url('../icons/mapbox-marker-icon-gray.svg');
    background-size: cover;
    width: 20px;
    height: 50px;
    cursor: pointer;
}
.employee-docs {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
.doc-container {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--accent-dark);
    border-radius: 10px;
    text-decoration: none;
    color: var(--accent-light);
    margin-bottom: 10px;
}
.doc-container a {
    text-decoration: none;
    color: var(--accent-light);
    flex: 1;
}
.doc-container .doc-description {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.doc-icon i {
    font-size: 3em;
    margin-right: 10px;
}
.delete-doc {
    font-size: 1.5em;
    margin: 10px;
}
.delete-doc:hover {
    font-size: 1.5em;
    margin: 10px;
    cursor: pointer;
    color: var(--error-red);
    transition: ease-in-out 0.33s;
}
.doc-icon {
    display: flex;
    align-items: center;
}
.doc-icon span {
    font-size: 1.5em;
}
.employee-creation .section-row {
    border-bottom: 2px solid var(--accent-light);
}
.employee-creation .row [class*='col-'] {
    display: flex;
    flex-direction: column;
}
.employee-creation label {
    padding: 10px 0px;
}
.employee-creation input,
.employee-creation select {
    background-color: var(--font-light);
    border-radius: 10px;
    padding: 10px;
    border: 2px solid var(--accent-light);
}
.employee-creation input:active {
    outline: none;
}
.animate-btn {
    margin: 20px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: var(--error-red);
}
.sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-dark);
}
.sign i {
    font-size: 2em;
}
.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: var(--font-dark);
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: 0.5s;
}
.animate-btn:hover {
    width: 200px;
    border-radius: 40px;
    transition-duration: 0.5s;
}
.animate-btn:hover .sign {
    width: 30%;
    transition-duration: 0.5s;
    padding-left: 10px;
}
.animate-btn:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: 0.3s;
    padding-right: 10px;
}
.animate-btn:active {
    transform: translate(2px, 2px);
}
/* ---------------------------------------- EMPLOYEE-CV ---------------------------------------- */
.education-title,
.training-title,
.experience-title,
.document-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.education-title i,
.training-title i,
.experience-title i,
.document-title i {
    font-size: 3em;
}
.education-title i:hover,
.training-title i:hover,
.experience-title i:hover,
.document-title i:hover {
    color: var(--accent-light);
    transition: ease-in-out 0.33s;
    cursor: pointer;
}
.employee-education,
.employee-training,
.employee-experience {
    border-radius: 10px;
    border: 3px solid var(--accent-light);
    margin: 10px 0px;
    display: flex;
    align-items: center;
    font-size: 1.25em;
}
.employee-education:hover,
.employee-training:hover,
.employee-experience:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
        rgba(0, 0, 0, 0.22) 0px 10px 10px;
    transition: ease-in-out 0.33s;
}
.education-content,
.training-content,
.experience-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.education-content i,
.training-content i,
.experience-content i {
    margin: 10px;
}
.education-file,
.training-file,
.experience-file {
    color: var(--font-light) !important;
}
.education-file:hover,
.training-file:hover,
.experience-file:hover {
    color: var(--accent-light) !important;
    transition: ease-in-out 0.33s;
}
.education-content .edit-education:hover,
.training-content .edit-training:hover,
.experience-content .edit-experience:hover {
    cursor: pointer;
    color: var(--info-orange);
    transition: ease-in-out 0.33s;
}
.education-content .delete-education:hover,
.training-content .delete-training:hover,
.experience-content .delete-training:hover {
    cursor: pointer;
    color: var(--error-red);
    transition: ease-in-out 0.33s;
}
/* ---------------------------------------- EMPLOYEE-MAP ---------------------------------------- */
.workplace-map {
    width: 100%;
    min-height: 800px;
    margin: 10px;
    max-height: 1200px;
    border-radius: 10px;
}
.slidecontainer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider {
    width: 50vw;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
    border-radius: 8px;
}
.slider:hover {
    opacity: 1;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--accent-light);
    cursor: pointer;
    border-radius: 50%;
}
.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--accent-light);
    cursor: pointer;
    border-radius: 50%;
}
.mapboxgl-marker.home-marker > svg > path {
    fill: var(--success-green);
}
.mapboxgl-marker.home-marker {
    z-index: 100;
}
/* ---------------------------------------- JOB-POSTINGS ---------------------------------------- */
#createJobPostBtn:hover {
    cursor: pointer;
    color: var(--accent-light);
    transition: ease-in-out 0.5s;
}
.status-offen {
    border-left: 20px solid var(--info-orange);
}
.status-erledigt {
    border-left: 20px solid var(--success-green);
}
.status-storniert {
    border-left: 20px solid var(--error-red);
}
.job-post {
    background-color: var(--accent-light);
    color: var(--font-dark);
    margin: 20px;
    padding: 20px;
    border-radius: 15px;
}
.job-post-title {
    font-size: 0.75em;
    margin: 0px;
}
.job-post-customer {
    font-size: 0.33em;
    margin: 0px;
}
.job-infos h6 {
    font-size: 0.5em;
    font-weight: bold;
    margin: 0px;
}
.job-infos p {
    font-size: 0.33em;
    margin: 0px;
}
.job-creator {
    font-size: 0.25em;
}
/* ---------------------------------------- CUSTOMER ---------------------------------------- */
.customer-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.customer-title i {
    font-size: 3em;
}
.customer-title i:hover {
    color: var(--accent-light);
    transition: ease-in-out 0.33s;
    cursor: pointer;
}
.customer {
    background-color: var(--accent-light);
    margin: 20px;
    padding: 20px;
    border-radius: 15px;
}
.customer:hover {
    background-color: var(--accent-dark);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
        rgba(0, 0, 0, 0.22) 0px 10px 10px;
    transition: ease-in-out 0.33s;
}
.customer img {
    border-radius: 15px;
    height: 150px;
    width: auto;
}
.customer a {
    text-decoration: none;
    color: var(--font-dark);
}
.customer p {
    font-size: 2em;
    margin: 0px;
    font-weight: bold;
}
/* ---------------------------------------- HELP ---------------------------------------- */
.help-colors,
.help-grid,
.help-buttons,
.help-alerts,
.help-modal {
    border-bottom: 4px solid var(--accent-light);
    padding-bottom: 20px;
}

.help-colors .col-2,
.help-colors .col-4 {
    border: 1px solid black;
    color: black;
}
.help-colors .bg-dark {
    background-color: var(--bg-dark);
}
.help-colors .bg-light {
    background-color: var(--bg-light);
}
.help-colors .accent-dark {
    background-color: var(--accent-dark);
}
.help-colors .accent-light {
    background-color: var(--accent-light);
}
.help-colors .font-dark {
    background-color: var(--font-dark);
}
.help-colors .font-light {
    background-color: var(--font-light);
}
.help-colors .success-green {
    background-color: var(--success-green);
}
.help-colors .info-orange {
    background-color: var(--info-orange);
}
.help-colors .error-red {
    background-color: var(--error-red);
}

.help-grid .row {
    height: 2.5em;
}
.help-grid [class*='col-'] {
    border: 1px solid red;
}
.help-buttons button,
.help-alerts button {
    margin: 0px 20px;
}
.help-buttons .btn-dark {
    border: 1px solid black;
}
