:root { 
	--primary-color: #1a8266;
}

*, *::before, *::after {
	box-sizing: border-box !important;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

header {
	height: 80px;
}

footer {
	height: 200px;
}

header, footer {
	color: #fff;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
}

section {
	padding: 60px 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 40px;
}

.btn > .spinner-border {
	width: 18px;
	height: 18px;
	border-width: 3px !important;
}

.btn > * {
	pointer-events: none;
}

.blank-link {
	text-decoration: none !important;
	color: inherit !important;
}

.blank-btn {
	background-color: transparent;
	border: none;
	color: inherit;
	padding: 0;
	line-height: 0;
	box-shadow: none;
}

.avatar-upload-cont {
	margin: 20px 0;
}

.avatar-upload-form-cont {
	display: flex;
	align-items: flex-end;
	gap: 15px;
	margin-top: 20px;
}

.avatar-upload-img-cont {
	width: max-content;
	height: max-content;
	position: relative;
}

.avatar-upload-img-cont img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.avatar-delete-file-btn {
	background-color: #D9D9D9;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	border-radius: 50%;
}

.avatar-delete-file-btn i {
	font-size: 16px;
	color: #000;
	pointer-events: none;
}

.avatar-btn-label {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.avatar-btn-label span {
	font-size: var(--default-font-size);
	font-weight: 300;
	line-height: var(--default-line-height);
}

.avatar-btn-label i {
	font-size: 20px;
}

/* Cropper ============================================ */

.crop-img {
    display: inline;
    width: 100%;
    height: 100%;
}

.crop-img-cont {
    width: 100%;
    max-height: 600px;
}

.crop-preview {
    overflow: hidden;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

#avatarModal .modal-dialog,
#coverModal .modal-dialog {
	max-width: 1000px !important;
	max-height: 600px !important;
} 

.header-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	object-fit: cover;
}

/* Test job advert filter */
.job-advert-filters-container {
	border-radius: 10px;
	border: 1px solid #ccc;
	background-color: #f8f9fa;
	padding: 20px;
}

.card-job-advert-item {
	position: relative;
	min-height: 110px;
}

.wishlist-btn-container {
	position: absolute;
	top: 15px;
	right: 20px;
}

.job-advert-item--status-container {
	position: absolute;
 	bottom: 15px;
	right: 20px;
}

.wishlist-btn-container i {
	font-size: 24px;
	color: #c22229;
}

.status-badge {
	text-align: center;
	font-size: 14px;
	border-radius: 15px;
	padding: 5px 10px;
	color: #fff;
	font-weight: 600;
	display: block;
	width: max-content;
}

.status-badge.waiting_for_approval {
	background-color: #f1c40f;
}

.status-badge.active {
	background-color: #1fb18a;
}

.status-badge.inactive {
	background-color: #c22229;
}

@media (max-width: 768px) {
	.crop-img-cont {
        max-height: 350px;
        margin-bottom: 20px;
    }
}