@import url("https://fonts.googleapis.com/css?family=Space Grotesk:400,500,700&display=swap");

body {
	font-family: 'Space Grotesk', sans-serif;
	background-color: var(--app-container);
    color: var(--primary-color);
	font-size: var(--body-font-size);
}

.header-home {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--header-home-background);
	height: 100vh;
}

.header-home h1 {
	font-size: var(--h1-size);
	font-weight: 700;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 50px;
	z-index: 9999;
}

nav .nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 10px 30px;
	border-radius: var(--border-radius);
	background: var(--nav-background);
	backdrop-filter: blur(10px);
}

nav .nav-container .nav-container__logo img {
	width: 50px;
}

.nav-container ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-container ul li {
	list-style: none;
}

.nav-container ul li a {
	display: block;
	padding: 10px 20px;
	border-radius: var(--border-radius);
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.nav-container .button a {
	color: var(--app-container);
}

.nav-container ul li a:hover {
	color: var(--secondary-color);
}

.header__img-container {
	position: absolute;
	top: 50%;
	left: calc(100% - (var(--header-img-width)/2));
	transform: translate(-50%, -50%);
}

.header__img-container img {
	width: var(--header-img-width);
}

.header__content {
	width: 100%;
	padding: 10px 80px;
}

.header__content__text {
	width: 60%;
}

.header__content-text-title {
	font-size: var(--h1-size);
}

.header__content-text-paragraphe {
	font-size: var(--h4-size);
}

.header__content__searchbar {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: var(--header-searchbar-height);
	background: var(--primary-color);
	border-radius: var(--border-radius);
}

.header__content__searchbar div {
	width: 80%;
	padding-inline: 3vw;
}

.header__content__searchbar input[type="text"],
.header__content__searchbar select {
	width: 100%;
	height: var(--header-searchbar-input-height);
	border: none;
	border-radius: var(--header-border-radius-input);
	background: var(--app-container);
	padding: 0 20px;
	font-size: var(--h4-size);
	background-color: var(--header-input-background);
	color: var(--app-container);
}

.header__content__searchbar input[type="submit"] {
	height: var(--header-searchbar-input-height);
    cursor: pointer;
    width: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__content__searchbar input::placeholder,
.header__content__searchbar select::placeholder {
	color: var(--app-container);
}

.header__content_searchbar-button-container {
	position: relative;
}

.header__content_searchbar-button {
	position: absolute;
	top: 0;
	right: 15vw;
	transform: translateY(-50%) translateX(50%);
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	width: fit-content !important;
}

.header__content__arrow-down-container {
	position: relative;
}

.header__content__arrow-down {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(100%) translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__content__arrow-down img {
	width: 60px;
	cursor: pointer;
}

.header-default {
	margin-bottom: 120px;
}

.jobs {
	display: flex;
	padding: 1rem;
}

.jobs__type {
	display: flex;
	flex-direction: column;
	float: left;
	border: 2px solid var(--primary-color);
	border-radius: 10px;
	padding: 1rem;
	flex: 1;
	min-width: 15vw;
}

.jobs__type h4 {
	font-size: var(--h4-size);
	margin-top: 0;
}

.jobs__list {
	display: flex;
	flex-direction: column;
	flex: 5;
	padding: 0 1rem;
	gap: 10px;
}
 
.jobs__list h4 {
	font-size: var(--h4-size);
	margin: 0;
}

.jobs__list h5 {
	font-size: var(--h5-size);
	margin: 0;
}

.jobs__list__item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: var(--primary-color);
	border-radius: 10px;
	color: var(--app-container);
	padding: 0.5rem 1rem;
	text-decoration: none;
	border: 2px solid var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.jobs__list__item:hover {
	color: var(--primary-color);
	background: var(--app-container);
}

.jobs__list__item:hover svg {
	fill: var(--primary-color);
}

.jobs__list__item__name {
	display: flex;
	align-items: center;
	flex: 3;
}

.jobs__list__item__name__photo img {
	width: 50px;
	border-radius: 10px;
}

.jobs__list__item__name__details {
	margin-left: 10px;
}

.jobs__list__item__work {
	display: flex;
	align-items: center;
	flex: 2;
}

.jobs__list__item__type {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	flex: 2;
}

.jobs__list__item__fav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
}

.jobs__list__item__fav svg {
	width: 30px;
	fill: var(--app-container);
}

.pagetitle__maintitle {
	font-size: var(--h2-size) !important;
	font-weight: 700;
}

.cookie-consent {
	position: fixed;
	top: 98%;
	right: 1%;
	transform: translate(0%, -100%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 25%;
	min-width: 200px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
	background-color: var(--app-container);
	color: var(--primary-color);
	border-radius: var(--border-radius);
	padding: 15px 30px;
}

.cookie-consent p {
	margin: 0;
}

.cookie-consent button {
	background-color: var(--primary-color);
	color: var(--app-container);
	border: 1px solid var(--primary-color);
	border-radius: var(--border-radius);
	padding: 7px 15px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.cookie-consent button:hover {
	background-color: var(--app-container);
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.sidebar-profile {
	position: fixed;
	top: 0;
	left: 0;
	min-height: 700px;
    height: 97%;
    padding: 16px;
    margin: 10px;
	border-radius: var(--border-radius);
	max-width: 18rem;
	display: flex;
	flex-direction: column;
	background-color: var(--app-container);
	color: var(--primary-color);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
	transition: all 0.3s ease-in-out;
}

.sidebar-profile .sidebar-profile__top-wrapper {
	display: flex;
}

.sidebar-profile .sidebar-profile__top {
	display: flex;
}

.sidebar-profile .sidebar-profile__top .sidebar-profile__logo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	text-decoration: none;
	color: var(--primary-color);
	font-weight: 700;
	font-size: var(--h3-size);
}

.sidebar-profile .sidebar-profile__top img {
	width: 40px;
	border-radius: 50%;
}

.sidebar-profile .sidebar-profile__expand-btn svg {
	transform: rotate(180deg);
}

.sidebar-profile .sidebar-profile__top span {
	margin-left: 16px;
}

.sidebar-profile .sidebar-profile__expand-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 30px;
	right: 0;
	transform: translate(50%, -50%);
	z-index: 10;
	background-color: var(--neo-background);
	padding: 5px;
	border-radius: 8px;
	border: 1px solid var(--neo-grey-blue);
	cursor: pointer;
}

.sidebar-profile .sidebar-profile__expand-btn svg {
	width: 15px;
	fill: var(--primary-color);
}

.sidebar-profile .sidebar-profile__search-wrapper {
	position: relative;
	display: flex;
	width: 100%;
	margin-top: 16px;
}

.sidebar-profile .sidebar-profile__search-wrapper svg {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translate(-50%, -50%);
	width: 16px;
	stroke: var(--primary-text-color);
}

.sidebar-profile .sidebar-profile__search-wrapper input {
	width: 100%;
	height: 40px;
	border: none;
	border-radius: 8px;
	padding: 0 30px;
	font-size: var(--h4-size);
	background-color: var(--neo-background);
	color: var(--primary-color);
}

.sidebar-profile .sidebar-profile__search-wrapper input::-webkit-input-placeholder {
	color: var(--primary-text-color);
}

.sidebar-profile .sidebar-profile__search-wrapper input:focus {
	outline: none;
}

.sidebar-profile .sidebar-profile__links {
	display: flex;
	flex-direction: column;
}

.sidebar-profile .sidebar-profile__links h3 {
	color: var(--primary-text-color);
	font-size: var(--h5-size);
}

.sidebar-profile .sidebar-profile__links ul {
	padding: 0;
	margin: 0;
}

.sidebar-profile .sidebar-profile__links ul li {
	list-style: none;
}

.sidebar-profile .sidebar-profile__links ul li a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
    align-items: center;
	text-decoration: none;
	color: var(--primary-color);
	font-size: var(--h4-size);
	height: 35px;
}

.sidebar-profile .sidebar-profile__links ul li a:hover {
	color: var(--secondary-color);
}

.sidebar-profile .sidebar-profile__links .sidebar-profile__links__tooltips__content {
	display: none !important;
}

.sidebar-profile.hide .sidebar-profile__links .sidebar-profile__links__tooltips__content {
	display: flex !important;
}

.sidebar-profile .sidebar-profile__links ul li a svg {
	width: 20px;
	margin-right: 16px;
	stroke: var(--primary-color);
}

.sidebar-profile .sidebar-profile__progress-wrapper {
	display: flex;
	flex-direction: column;
	margin-top: 16px;
	background-color: var(--neo-background);
	padding: 16px;
	border-radius: 8px;
}

.sidebar-profile .sidebar-profile__progress-wrapper h3 {
	margin-top: 0;
}

.sidebar-profile .sidebar-profile__progress-wrapper .sidebar-profile__progress-bar {
	display: flex;
	align-items: center;
	width: 80%;
}

.sidebar-profile .sidebar-profile__progress-wrapper .sidebar-profile__progress-bar progress {
	width: 100%;
}

.sidebar-profile .sidebar-profile__progress-wrapper .sidebar-profile__progress-bar progress::-moz-progress-bar {
	background-color: red;
}

.sidebar-profile .sidebar-profile__progress-wrapper .sidebar-profile__progress-bar progress::-webkit-progress-bar {
	background-color: green;
}

.sidebar-profile .sidebar-profile__progress-wrapper .sidebar-profile__progress-bar progress::-webkit-progress-value {
	background-color: red;
}

.sidebar-profile .sidebar-profile__progress-wrapper button {
	width: 100%;
	background-color: var(--primary-color);
	color: var(--app-container);
	border: 1px solid var(--primary-color);
	border-radius: 8px;
	padding: 7px 15px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.sidebar-profile .sidebar-profile__progress-wrapper button:hover {
	background-color: var(--app-container);
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.sidebar-profile .bottom-links {
	margin-top: auto;
}

.sidebar-profile .divider {
	width: 100%;
	height: 1px;
	background-color: var(--primary-text-color);
	margin: 16px 0;
}

.sidebar-profile .sidebar-profile-section {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.sidebar-profile .sidebar-profile-section svg {
	width: 20px;
	margin-right: 16px;
	fill: #ff3e3e;
}

.sidebar-profile .sidebar-profile__links .sidebar-profile__links__tooltips {
	position: relative;
	width: fit-content;
}

.sidebar-profile .sidebar-profile__links .sidebar-profile__links__tooltips__content {
	position: absolute;
    top: 0;
    left: 100%;
    transform: translate(15%, -25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    background-color: var(--primary-color);
    color: var(--app-container);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.sidebar-profile .sidebar-profile__links .sidebar-profile__links__tooltips:hover .sidebar-profile__links__tooltips__content {
	opacity: 1;
	visibility: visible;
}

.sidebar-profile.hide .sidebar-profile__top span {
	display: none;
}

.sidebar-profile.hide .sidebar-profile__expand-btn svg {
	transform: rotate(0deg);
}

.sidebar-profile.hide .sidebar-profile__top img {
	width: 30px;
}

.sidebar-profile.hide .sidebar-profile__links ul li {
	width: fit-content;
}

.sidebar-profile.hide .sidebar-profile__links ul li a {
	height: 25px;
}

.sidebar-profile.hide input {
	display: none;
}

.sidebar-profile.hide .sidebar-profile__links ul li a svg {
	margin-right: 0;
}

.sidebar-profile.hide .sidebar-profile__search-wrapper {
	height: 40px;
}

.sidebar-profile.hide .sidebar-profile__progress-wrapper {
	display: none;
}

.sidebar-profile.hide .sidebar-profile__links {
	justify-content: center;
    align-items: center;
}

.sidebar-profile.hide .sidebar-profile__links h3 {
	display: none;
}

.sidebar-profile.hide .sidebar-profile__links ul {
	margin-top: 15px;
	width: fit-content;
}

.sidebar-profile.hide .sidebar-profile-section__avatar {
	display: none;
}

.sidebar-profile.hide ul li .link {
	display: none;
}

.sidebar-profile.hide .logout {
	display: flex;
	justify-content: center;
	align-items: center;
}

.sidebar-profile.hide .sidebar-profile-section {
	display: flex;
	justify-content: center;
	align-items: center;
}

.sidebar-profile.hide .sidebar-profile-section svg {
	margin: 0;
}

.profile-section {
	width: 95%;
    margin-left: auto;
    padding: 16px;
}

.profile-section__container {
	display: flex;
	justify-content: space-evenly;
	margin-top: 1rem;
}

.profile-section .profile-section__container .profile-section__import-cv input[type="file"],
.profile-section .profile-section__container .profile-section__import-lm input[type="file"] {
	display: none;
}

.cv_input,
.lm_input {
    display: none;
}

.profile-section .profile-section__main-informations {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.profile-section .profile-section__main-informations div {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;
}

.profile-section .profile-section__secondary-informations .profile-section__secondary-informations__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 50%;
}

.profile-section .profile-section__secondary-informations .profile-section__secondary-informations__container div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
	gap: 1rem;
}

.profile-section .profile-section__secondary-informations .profile-section__secondary-informations__container div p {
	min-width: 150px;
}

.profile-section .profile-section__secondary-informations__location svg,
.profile-section .profile-section__secondary-informations__mail svg {
	width: 20px;
	fill: var(--primary-color);
}

.profile-section .profile-section__secondary-informations__phone svg,
.profile-section .profile-section__secondary-informations__last-job svg {
	width: 20px;
	stroke: var(--primary-color);
}

.profile-section__complete-profile,
.profile-section__cv,
.profile-section__lm {
	display: flex;
    flex-direction: column;
	justify-content: center;
    align-items: center;
	gap: 1rem;
	background-color: var(--neo-background);
	padding: 16px;
	border-radius: var(--border-radius);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.profile-section__complete-profile div,
.profile-section__cv div,
.profile-section__lm div {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.profile-section__complete-profile p,
.profile-section__cv p,
.profile-section__lm p {
	margin: 0;
}