* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Uncut Sans';
    color: #142147;
    background-color: #f6f6f8;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    color: #142147;
    text-decoration: none;
    transition: 0.3s;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-Bold.woff2') format('woff2'),
        url('fonts/Uncut-Sans-Bold.woff') format('woff'),
        url('fonts/Uncut-Sans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-Medium.woff2') format('woff2'),
        url('fonts/Uncut-Sans-Medium.woff') format('woff'),
        url('fonts/Uncut-Sans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-BoldOblique.woff2') format('woff2'),
        url('fonts/Uncut-Sans-BoldOblique.woff') format('woff'),
        url('fonts/Uncut-Sans-BoldOblique.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-RegularOblique.woff2') format('woff2'),
        url('fonts/Uncut-Sans-RegularOblique.woff') format('woff'),
        url('fonts/Uncut-Sans-RegularOblique.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-MediumOblique.woff2') format('woff2'),
        url('fonts/Uncut-Sans-MediumOblique.woff') format('woff'),
        url('fonts/Uncut-Sans-MediumOblique.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-Regular.woff2') format('woff2'),
        url('fonts/Uncut-Sans-Regular.woff') format('woff'),
        url('fonts/Uncut-Sans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-Semibold.woff2') format('woff2'),
        url('fonts/Uncut-Sans-Semibold.woff') format('woff'),
        url('fonts/Uncut-Sans-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-SemiboldOblique.woff2') format('woff2'),
        url('fonts/Uncut-Sans-SemiboldOblique.woff') format('woff'),
        url('fonts/Uncut-Sans-SemiboldOblique.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans VF';
    src: url('fonts/Uncut-Sans-VF-Regular.woff2') format('woff2'),
        url('fonts/Uncut-Sans-VF-Regular.woff') format('woff'),
        url('fonts/Uncut-Sans-VF-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

input:focus,
button:focus {
    box-shadow: none !important;
    outline: none;
}

input:focus {
    border-color: #14214733;
}

img {
    max-width: 100%;
    display: block;
}

button.primary-bg {
    background: linear-gradient(101.26deg, #EE73A4 0%, #AA66BF 100%);
}

button.primary-bg:hover {
    background: linear-gradient(101.26deg, #d53c79 0%, #a136c2 100%);
}

.border-color {
    border-color: #D6D6E3;
}

.px-40 {
    padding-inline: 2.5rem;
}

.py-40 {
    padding-block: 2.5rem;
}

.px-32 {
    padding-inline: 2rem;
}

.link-btn {
    height: 3.125rem;
    border: 2px solid #CE7399;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.6125rem;
}

.link-btn:hover {
    background-color: #CE7399;
    color: #fff;
}

.input-group label {
    font-size: 1.125rem;
    font-weight: 500;
}

.input-group .ig-row {
    display: block;
    width: 100%;
}

.input-group .ig-row input {
    width: 100%;
    height: 4rem;
    padding-inline: 1.25rem;
    font-weight: 500;
    font-size: 1.125rem;
    border: 2px solid #14214733;
    border-radius: 0.6125rem;
}

.input-group .ig-row input.search {
    background-image: url(../img/search.svg);
    background-position: right 1.5rem center;
    background-repeat: no-repeat;
}

input::placeholder {
    color: #142147;
    opacity: 0.5;
}

/* Scroll */
::-webkit-scrollbar-track {
    background-color: rgba(96, 116, 172, 0.2);
}

::-webkit-scrollbar {
    width: 2px;
    background-color: rgba(96, 116, 172, 0.2);
}

::-webkit-scrollbar-thumb {
    background-color: #5A6891;
    border: 0px solid #555555;
}

@supports (scrollbar-color: #5A6891 rgba(96, 116, 172, 0.2)) {
    * {
        scrollbar-width: thin;
        scrollbar-color: #5A6891 rgba(96, 116, 172, 0.2);
    }
}

header {
    /*position: sticky;*/
    top: 0;
    z-index: 5;
    background-color: #f6f6f8;
    background-image: url(../img/header-shape.svg);
    background-position: top center;
    background-repeat: no-repeat;
}

.dropdown-toggle::after {
    display: none;
}

header .dropdown-item {
    gap: 0.5rem;
}

header .dropdown-item span img {
    min-width: 1.5rem;
}

.dropdown-menu {
    padding: 0;
    border: 1px solid #D6D6E3;
    border-radius: 0.6125rem;
    overflow: hidden;
    min-width: 12.375rem;
    margin-top: 0.5rem !important;
}

.dropdown-item {
    padding: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.5;
}

.dropdown-item:hover {
    opacity: 1;
    background-color: #4F58751F;
}

.container-xxl {
    max-width: 1440px;
}

.banner {
    padding-block: 5.875rem;
}

.banner h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

.banner h1 span {
    color: #CE7399;
}

.banner p {
    font-size: 1.625rem;
    font-weight: 400;
    margin-block: 2.1875rem;
}

.banner a.link-btn {
    height: 3.75rem;
}

.filter-btn {
    width: 13.25rem;
}

.main-title {
    font-size: 2.25rem;
    font-weight: 600;
    gap: 0.6875rem;
}

.badge {
    background-color: #DDDDE5;
    border-radius: 0.5rem;
    padding: 0.25rem 0.6125rem;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
}

.jobs-search {
    gap: 1rem;
}

.jobs-search .search input {
    width: 100%;
    height: 4rem;
    border-radius: 0.6125rem;
    background-color: transparent;
    border: 2px solid #14214733;
    padding-inline: 2rem;
    background-image: url(../img/search.svg);
    background-position: right 1.5rem center;
    background-repeat: no-repeat;
    font-size: 1.125rem;
    font-weight: 500;
    color: #142147;
}

.jobs-search a {
    height: 4rem;
    border-radius: 0.6125rem;
    background-color: transparent;
    border: 2px solid #14214733;
    font-size: 1.125rem;
    font-weight: 500;
}

.jobs-search a:hover {
    background-color: #14214710;
}

.job-list {
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.job-list .card {
    position: relative;
    background-color: transparent;
    transition: 0.3s;
}

.job-list .card-body {
    padding: 2rem;
}

.job-list .card a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.job-list .card h5 {
    font-size: 1.5rem;
}

.job-list .card:hover {
    background-color: white;
}

.job-list .card ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.job-list .card ul li {
    font-size: 1rem;
    font-weight: 500;
    color: #142147;
    position: relative;
}

.job-list .card ul li::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 0.7rem;
    width: 0.1875rem;
    height: 0.1875rem;
    border-radius: 50%;
    background-color: #142147;
}

.job-list .card ul li:last-child::after {
    opacity: 0;
}

.job-list .card ul li:first-child {
    color: #B53769;
}

.price-col {
    display: inline-flex;
    border: 1px solid #B7B2D0;
    color: #434D6C;
    background-color: #6B5EA41A;
    padding: 0.6125rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 16.8px;
    border-radius: 0.5rem;
}

.price-days p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 19.2px;
    opacity: 0.5;
}

.listed-day {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
}

.exclusive-jobs {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(246, 246, 248, 0.8) 0%, rgba(246, 246, 248, 0.97) 29.42%, #F6F6F8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.exclusive-jobs-content {
    max-width: 41.75rem;
    margin: auto;
    text-align: center;
}

.exclusive-jobs-content h3 {
    font-size: 2rem;
    font-weight: 600;
}

.exclusive-jobs-content p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-block: 0.5rem 2rem;
}

.exclusive-jobs-email {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid #14214733;
    padding: 0.25rem;
    border-radius: 0.6125rem;
}

.exclusive-jobs-email input {
    width: 100%;
    flex-grow: 1;
    height: 3.5rem;
    border: 0;
    background-color: transparent;
    padding-inline: 1.75rem;
}

.exclusive-jobs-email button {
    border: 0;
    text-wrap: nowrap;
    padding-inline: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.6125rem;
    height: 3.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.exclusive-jobs-email button:hover {
    background: linear-gradient(101.26deg, #d53c79 0%, #a136c2 100%);
}

.footer-row {
    gap: 1rem;
}

.footer-nav {
    column-gap: 1.5rem;
    row-gap: 0.5rem;
}

.sep {
    width: 0.0625rem;
    height: 0.75rem;
    background-color: #C9CBD5;
}

.footer-nav a {
    font-size: 1rem;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.modal .modal-dialog {
    max-width: 41.75rem;
}

.btn-close {
    opacity: 1;
    --bs-btn-close-bg: none;
}

.btn-close img {
    min-width: 1.5rem;
}

.submit {
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 3.5rem;
    border-radius: 0.6125rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    border: 0;
}

.access-block .exclusive-jobs-content {
    text-align: left;
}

.access-block .exclusive-jobs-content h3 {
    font-size: 1.625rem;
}

.access-block .exclusive-jobs-content p {
    font-size: 1.125rem;
    margin-block: 0.25rem 1rem;
}

.access-block .exclusive-jobs-content button {
    border: 2px solid #CE7399;
    background-color: transparent;
    color: #142147;
}

.access-block .exclusive-jobs-content button:hover {
    color: #fff;
}

.succes-modal {
    right: 2.5rem;
    top: 2.5rem;
}

.banner-signin {
    padding-block: 3.5rem;
}

.banner-signin h1 {
    font-size: 2.25rem;
    margin-bottom: 0.6875rem;
}

.banner-signin p {
    margin: 0;
}

.show-interest {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #1421471A;
    border-radius: 0 0 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.35rem 0.8125rem;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.pagination {
    gap: 2.5rem;
}

.card-page {
    gap: 0.75rem;
}

.card-page input {
    width: 5rem;
    height: 4rem;
    text-align: center;
    border: 2px solid #14214733;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.6125rem;
    text-align: center;
    background-color: transparent;
}

.pagination ul {
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination ul li a {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.5;
}

.pagination ul li a:hover {
    background-color: #1421471A;
}

.filter-list {
    max-height: 10rem;
    overflow-y: auto;
}

.filter-list .form-check {
    margin-bottom: 1rem;
    padding-left: 2em;
}

.form-check .form-check-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.5;
    cursor: pointer;
    vertical-align: middle;
}

.form-check .form-check-input {
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: -2em;
}

.form-check-input:focus {
    border-color: #CF7297;
}

.form-check-input:checked {
    background-color: #CF7297;
    border-color: #CF7297;
}

.form-check-input:checked+.form-check-label {
    opacity: 1;
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(20, 33, 71, 0.2);
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    font-size: 1.3125rem;
    font-weight: 600;
    color: #142147;
}

.locations-list {
    gap: 0.5rem;
}

.locations-col {
    background: rgba(20, 33, 71, 0.1);
    border: 1px solid #1421471A;
    padding: 0.6125rem 1rem;
    border-radius: 1.875rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.125rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.locations-col a {
    width: 1rem;
}

.offcanvas-footer {
    font-size: 1.6125rem;
    font-weight: 600;
    padding: 1.5rem;
}

.offcanvas-footer button {
    width: 100%;
    height: 3.75rem;
    border: 2px solid #CE7399;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.6125rem;
    background-color: transparent;
}

.offcanvas-footer button:hover {
    background-color: #CE7399;
    color: #fff;
}

.offcanvas-header .btn-close {
    width: 2rem;
    height: 2rem;
}

.offcanvas-header a {
    color: rgba(20, 33, 71, 0.5);
    font-size: 1.125rem;
    font-weight: 500;
    position: absolute;
    right: 3rem;
}

.close-filter {
    position: absolute;
    right: 3rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 21.6px;
    color: rgba(20, 33, 71, 0.5);
}

.offcanvas {
    box-shadow: 0px 4px 60px 0px rgba(20, 33, 71, 0.07);
}

.offcanvas-title {
    font-size: 1.6125rem;
    font-weight: 600;
    text-align: left;
}

.jobs-filters-list {
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jobs-clear-all-filters {
    background-color: transparent;
}

.page-container {
    min-height: calc(100vh - 10.7rem);
}

.detail-header {
    gap: 1rem;
    padding-block: 1.3125rem;
}

.back {
    width: 3rem;
    height: 3rem;
    border: 2px solid #14214733;
    border-radius: 0.6125rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back:hover {
    background: #6B5EA41A;
}

.detail-header h5 {
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: #B53769;
    margin: 0 0 0.15rem;
}

.detail-header h2 {
    font-size: 1.625rem;
    font-weight: 600;
    text-align: left;
}

.link-default {
    border: 0;
    text-wrap: nowrap;
    padding-inline: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.6125rem;
    height: 3.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(101.26deg, #EE73A4 0%, #AA66BF 100%);
}

.link-default:hover {
    background: linear-gradient(101.26deg, #d53c79 0%, #a136c2 100%);
}

.container-md {
    max-width: 56rem;
}

.job-detail-tbl {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.job-detail-tbl span {
    opacity: 0.5;
}

.job-detail-section {
    margin-bottom: 3rem;
}

.job-detail-section h3 {
    font-size: 1.3125rem;
    font-weight: 600;
    line-height: 26.4px;
    text-align: left;
    margin-bottom: 1rem;
}

.job-detail-section p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    opacity: 0.7;
}

.job-detail-section h4 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    margin-bottom: 1rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.job-detail-section ul {
    margin: 0 0 1.5rem;
    padding-left: 1.2rem;
}

.job-detail-section ul li {
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    opacity: 0.7;
}

.showninterest {
    gap: 0.5rem;
    position: relative;
}

.showninterest:hover {
    background: linear-gradient(101.26deg, #EE73A4 0%, #AA66BF 100%);
}

.showninterest::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.5;
    z-index: 4;
    cursor: default;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Uncut Sans';
    color: #142147;
    background-color: #f6f6f8;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    color: #142147;
    text-decoration: none;
    transition: 0.3s;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-Bold.woff2') format('woff2'),
        url('fonts/Uncut-Sans-Bold.woff') format('woff'),
        url('fonts/Uncut-Sans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-Medium.woff2') format('woff2'),
        url('fonts/Uncut-Sans-Medium.woff') format('woff'),
        url('fonts/Uncut-Sans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-BoldOblique.woff2') format('woff2'),
        url('fonts/Uncut-Sans-BoldOblique.woff') format('woff'),
        url('fonts/Uncut-Sans-BoldOblique.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-RegularOblique.woff2') format('woff2'),
        url('fonts/Uncut-Sans-RegularOblique.woff') format('woff'),
        url('fonts/Uncut-Sans-RegularOblique.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-MediumOblique.woff2') format('woff2'),
        url('fonts/Uncut-Sans-MediumOblique.woff') format('woff'),
        url('fonts/Uncut-Sans-MediumOblique.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-Regular.woff2') format('woff2'),
        url('fonts/Uncut-Sans-Regular.woff') format('woff'),
        url('fonts/Uncut-Sans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-Semibold.woff2') format('woff2'),
        url('fonts/Uncut-Sans-Semibold.woff') format('woff'),
        url('fonts/Uncut-Sans-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('fonts/Uncut-Sans-SemiboldOblique.woff2') format('woff2'),
        url('fonts/Uncut-Sans-SemiboldOblique.woff') format('woff'),
        url('fonts/Uncut-Sans-SemiboldOblique.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans VF';
    src: url('fonts/Uncut-Sans-VF-Regular.woff2') format('woff2'),
        url('fonts/Uncut-Sans-VF-Regular.woff') format('woff'),
        url('fonts/Uncut-Sans-VF-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

input:focus,
button:focus {
    box-shadow: none !important;
    outline: none;
}

input:focus {
    border-color: #14214733;
}

img {
    max-width: 100%;
    display: block;
}

button.primary-bg {
    background: linear-gradient(101.26deg, #EE73A4 0%, #AA66BF 100%);
}

button.primary-bg:hover {
    background: linear-gradient(101.26deg, #d53c79 0%, #a136c2 100%);
}

.border-color {
    border-color: #D6D6E3;
}

.px-40 {
    padding-inline: 2.5rem;
}

.py-40 {
    padding-block: 2.5rem;
}

.px-32 {
    padding-inline: 2rem;
}

.link-btn {
    height: 3.125rem;
    border: 2px solid #CE7399;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.6125rem;
}

.link-btn:hover {
    background-color: #CE7399;
    color: #fff;
}

.input-group label {
    font-size: 1.125rem;
    font-weight: 500;
}

.input-group .ig-row {
    display: block;
    width: 100%;
}

.input-group .ig-row input {
    width: 100%;
    height: 4rem;
    padding-inline: 1.25rem;
    font-weight: 500;
    font-size: 1.125rem;
    border: 2px solid #14214733;
    border-radius: 0.6125rem;
}

.input-group .ig-row input.search {
    background-image: url(../img/search.svg);
    background-position: right 1.5rem center;
    background-repeat: no-repeat;
}

input::placeholder {
    color: #142147;
    opacity: 0.5;
}

/* Scroll */
::-webkit-scrollbar-track {
    background-color: rgba(96, 116, 172, 0.2);
}

::-webkit-scrollbar {
    width: 2px;
    background-color: rgba(96, 116, 172, 0.2);
}

::-webkit-scrollbar-thumb {
    background-color: #5A6891;
    border: 0px solid #555555;
}

@supports (scrollbar-color: #5A6891 rgba(96, 116, 172, 0.2)) {
    * {
        scrollbar-width: thin;
        scrollbar-color: #5A6891 rgba(96, 116, 172, 0.2);
    }
}

header {
    /*position: sticky;*/
    top: 0;
    z-index: 5;
    background-color: #f6f6f8;
    background-image: url(../img/header-shape.svg);
    background-position: top center;
    background-repeat: no-repeat;
}

.dropdown-toggle::after {
    display: none;
}

header .dropdown-item {
    gap: 0.5rem;
}

header .dropdown-item span img {
    min-width: 1.5rem;
}

.dropdown-menu {
    padding: 0;
    border: 1px solid #D6D6E3;
    border-radius: 0.6125rem;
    overflow: hidden;
    min-width: 12.375rem;
    margin-top: 0.5rem !important;
}

.dropdown-item {
    padding: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.5;
}

.dropdown-item:hover {
    opacity: 1;
    background-color: #4F58751F;
}

.container-xxl {
    max-width: 1440px;
}

.banner {
    padding-block: 5.875rem;
}

.banner h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

.banner h1 span {
    color: #CE7399;
}

.banner p {
    font-size: 1.625rem;
    font-weight: 400;
    margin-block: 2.1875rem;
}

.banner a.link-btn {
    height: 3.75rem;
}

.filter-btn {
    width: 13.25rem;
}

.main-title {
    font-size: 2.25rem;
    font-weight: 600;
    gap: 0.6875rem;
}

.badge {
    background-color: #DDDDE5;
    border-radius: 0.5rem;
    padding: 0.25rem 0.6125rem;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
}

.jobs-search {
    gap: 1rem;
}

.jobs-search .search input {
    width: 100%;
    height: 4rem;
    border-radius: 0.6125rem;
    background-color: transparent;
    border: 2px solid #14214733;
    padding-inline: 2rem;
    background-image: url(../img/search.svg);
    background-position: right 1.5rem center;
    background-repeat: no-repeat;
    font-size: 1.125rem;
    font-weight: 500;
    color: #142147;
}

.jobs-search a {
    height: 4rem;
    border-radius: 0.6125rem;
    background-color: transparent;
    border: 2px solid #14214733;
    font-size: 1.125rem;
    font-weight: 500;
}

.jobs-search a:hover {
    background-color: #14214710;
}

.job-list {
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.job-list .card {
    position: relative;
    background-color: transparent;
    transition: 0.3s;
}

.job-list .card-body {
    padding: 2rem;
}

.job-list .card a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.job-list .card h5 {
    font-size: 1.5rem;
}

.job-list .card:hover {
    background-color: white;
}

.job-list .card ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.job-list .card ul li {
    font-size: 1rem;
    font-weight: 500;
    color: #142147;
    position: relative;
}

.job-list .card ul li::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 0.7rem;
    width: 0.1875rem;
    height: 0.1875rem;
    border-radius: 50%;
    background-color: #142147;
}

.job-list .card ul li:last-child::after {
    opacity: 0;
}

.job-list .card ul li:first-child {
    color: #B53769;
}

.price-col {
    display: inline-flex;
    border: 1px solid #B7B2D0;
    color: #434D6C;
    background-color: #6B5EA41A;
    padding: 0.6125rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 16.8px;
    border-radius: 0.5rem;
}

.price-days p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 19.2px;
    opacity: 0.5;
}

.listed-day {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
}

.exclusive-jobs {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(246, 246, 248, 0.8) 0%, rgba(246, 246, 248, 0.97) 29.42%, #F6F6F8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.exclusive-jobs-content {
    max-width: 41.75rem;
    margin: auto;
    text-align: center;
}

.exclusive-jobs-content h3 {
    font-size: 2rem;
    font-weight: 600;
}

.exclusive-jobs-content p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-block: 0.5rem 2rem;
}

.exclusive-jobs-email {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid #14214733;
    padding: 0.25rem;
    border-radius: 0.6125rem;
}

.exclusive-jobs-email input {
    width: 100%;
    flex-grow: 1;
    height: 3.5rem;
    border: 0;
    background-color: transparent;
    padding-inline: 1.75rem;
}

.exclusive-jobs-email button {
    border: 0;
    text-wrap: nowrap;
    padding-inline: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.6125rem;
    height: 3.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.exclusive-jobs-email button:hover {
    background: linear-gradient(101.26deg, #d53c79 0%, #a136c2 100%);
}

.footer-row {
    gap: 1rem;
}

.footer-nav {
    column-gap: 1.5rem;
    row-gap: 0.5rem;
}

.sep {
    width: 0.0625rem;
    height: 0.75rem;
    background-color: #C9CBD5;
}

.footer-nav a {
    font-size: 1rem;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.modal .modal-dialog {
    max-width: 41.75rem;
}

.btn-close {
    opacity: 1;
    --bs-btn-close-bg: none;
}

.btn-close img {
    min-width: 1.5rem;
}

.submit {
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 3.5rem;
    border-radius: 0.6125rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    border: 0;
}

.access-block .exclusive-jobs-content {
    text-align: left;
}

.access-block .exclusive-jobs-content h3 {
    font-size: 1.625rem;
}

.access-block .exclusive-jobs-content p {
    font-size: 1.125rem;
    margin-block: 0.25rem 1rem;
}

.access-block .exclusive-jobs-content button {
    border: 2px solid #CE7399;
    background-color: transparent;
    color: #142147;
}

.access-block .exclusive-jobs-content button:hover {
    color: #fff;
}

.succes-modal {
    right: 2.5rem;
    top: 2.5rem;
}

.banner-signin {
    padding-block: 3.5rem;
}

.banner-signin h1 {
    font-size: 2.25rem;
    margin-bottom: 0.6875rem;
}

.banner-signin p {
    margin: 0;
}

.show-interest {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #1421471A;
    border-radius: 0 0 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.35rem 0.8125rem;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.pagination {
    gap: 2.5rem;
}

.card-page {
    gap: 0.75rem;
}

.card-page input {
    width: 5rem;
    height: 4rem;
    text-align: center;
    border: 2px solid #14214733;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.6125rem;
    text-align: center;
    background-color: transparent;
}

.pagination ul {
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination ul li a {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.5;
}

.pagination ul li a:hover {
    background-color: #1421471A;
}

.filter-list {
    max-height: 10rem;
    overflow-y: auto;
}

.filter-list .form-check {
    margin-bottom: 1rem;
    padding-left: 2em;
}

.form-check .form-check-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.5;
    cursor: pointer;
    vertical-align: middle;
}

.form-check .form-check-input {
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: -2em;
}

.form-check-input:focus {
    border-color: #CF7297;
}

.form-check-input:checked {
    background-color: #CF7297;
    border-color: #CF7297;
}

.form-check-input:checked+.form-check-label {
    opacity: 1;
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(20, 33, 71, 0.2);
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    font-size: 1.3125rem;
    font-weight: 600;
    color: #142147;
}

.locations-list {
    gap: 0.5rem;
}

.locations-col {
    background: rgba(20, 33, 71, 0.1);
    border: 1px solid #1421471A;
    padding: 0.6125rem 1rem;
    border-radius: 1.875rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.125rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.locations-col a {
    width: 1rem;
}

.offcanvas-footer {
    font-size: 1.6125rem;
    font-weight: 600;
    padding: 1.5rem;
}

.offcanvas-footer button {
    width: 100%;
    height: 3.75rem;
    border: 2px solid #CE7399;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.6125rem;
    background-color: transparent;
}

.offcanvas-footer button:hover {
    background-color: #CE7399;
    color: #fff;
}

.offcanvas-header .btn-close {
    width: 2rem;
    height: 2rem;
}

.offcanvas-header a {
    color: rgba(20, 33, 71, 0.5);
    font-size: 1.125rem;
    font-weight: 500;
    position: absolute;
    right: 3rem;
}

.close-filter {
    position: absolute;
    right: 3rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 21.6px;
    color: rgba(20, 33, 71, 0.5);
}

.offcanvas {
    box-shadow: 0px 4px 60px 0px rgba(20, 33, 71, 0.07);
}

.offcanvas-title {
    font-size: 1.6125rem;
    font-weight: 600;
    text-align: left;
}

.jobs-filters-list {
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jobs-clear-all-filters {
    background-color: transparent;
}

.page-container {
    min-height: calc(100vh - 10.7rem);
}

.detail-header {
    gap: 1rem;
    padding-block: 1.3125rem;
}

.back {
    width: 3rem;
    height: 3rem;
    border: 2px solid #14214733;
    border-radius: 0.6125rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back:hover {
    background: #6B5EA41A;
}

.detail-header h5 {
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: #B53769;
    margin: 0 0 0.15rem;
}

.detail-header h2 {
    font-size: 1.625rem;
    font-weight: 600;
    text-align: left;
}

.link-default {
    border: 0;
    text-wrap: nowrap;
    padding-inline: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.6125rem;
    height: 3.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(101.26deg, #EE73A4 0%, #AA66BF 100%);
}

.link-default:hover {
    background: linear-gradient(101.26deg, #d53c79 0%, #a136c2 100%);
}

.container-md {
    max-width: 56rem;
}

.job-detail-tbl {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.job-detail-tbl span {
    opacity: 0.5;
}

.job-detail-section {
    margin-bottom: 3rem;
}

.job-detail-section h3 {
    font-size: 1.3125rem;
    font-weight: 600;
    line-height: 26.4px;
    text-align: left;
    margin-bottom: 1rem;
}

.job-detail-section p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    opacity: 0.7;
}

.job-detail-section h4 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    margin-bottom: 1rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.job-detail-section ul {
    margin: 0 0 1.5rem;
    padding-left: 1.2rem;
}

.job-detail-section ul li {
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    opacity: 0.7;
}

.showninterest {
    gap: 0.5rem;
    position: relative;
}

.showninterest:hover {
    background: linear-gradient(101.26deg, #EE73A4 0%, #AA66BF 100%);
}

.showninterest::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.5;
    z-index: 4;
    cursor: default;
}

.myprofile .input-group .ig-row input {
    background-color: #1421470A;
}

.myprofile h4 {
    font-size: 1.3125rem;
    font-weight: 600;
    text-align: left;
    color: rgba(20, 33, 71, 0.4);
    text-transform: uppercase;
}

.h-4 {
    height: 4rem;
}

.cancel-btn {
    border: 2px solid #14214733;
    border-radius: 0.6125rem;
    color: rgba(20, 33, 71, 0.8);
    font-weight: 700;
}

.cancel-btn:hover {
    background-color: #555555;
    color: #fff;
}

.contact-container {
    max-width: 588px;
    width: calc(100% - 2rem);
    margin: 5rem auto 0;
}

.contact-container h3 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #142147;
    margin-bottom: 3rem;
}

.contact-container .input-group .ig-row input,
.contact-container .input-group .ig-row textarea {
    background-color: transparent;
}

.contact-container button {
    width: 100%;
    height: 3.5rem;
    border-radius: 0.6125rem;
    border: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

/*** arun ***/
.search.flex-grow-1 {
    position: relative;
}

.search-button {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 80px;
    border: 0px !important;
    outline: 0px !important
}

.search-button:focus {
    border: 0px !important;
}

.jobs-search .search button.search-button {
    width: 80px;
    height: 64px;
    background: transparent;
    border-radius: 0px 10px 10px 0px;
}

.jobs-search .search button.search-button:focus {
    background: rgba(0, 0, 0, 0.1);
}

select.search {
    width: 100%;
    height: 4rem;
    padding-inline: 1.25rem;
    font-weight: 500;
    font-size: 1.125rem;
    border: 2px solid #14214733;
    border-radius: 0.6125rem;
}

select.search {
    background-image: url(../img/search.svg);
    background-position: right 1.5rem center;
    background-repeat: no-repeat;
}

/*** arun ***/
.search.flex-grow-1 {
    position: relative;
}

.search-button {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 80px;
    border: 0px !important;
    outline: 0px !important
}

.search-button:focus {
    border: 0px !important;
}

.jobs-search .search button.search-button {
    width: 80px;
    height: 64px;
    background: transparent;
    border-radius: 0px 10px 10px 0px;
}

.jobs-search .search button.search-button:focus {
    background: rgba(0, 0, 0, 0.1);
}

select.search {
    width: 100%;
    height: 4rem;
    padding-inline: 1.25rem;
    font-weight: 500;
    font-size: 1.125rem;
    border: 2px solid #14214733;
    border-radius: 0.6125rem;
}

select.search {
    background-image: url(../img/search.svg);
    background-position: right 1.5rem center;
    background-repeat: no-repeat;
}

.login-alert,
.registration-alert,
.reghome-alert,
.linkedin-alert {
    font-size: 1.125rem;
    font-weight: 500;
}

.login-alert.error,
.registration-alert.error,
.reghome-alert.error,
.linkedin-alert.error {
    color: red;
    background: #f1f1f1;
    padding: 10px;
    margin-bottom: 10px;
}

.login-alert.success,
.registration-alert.success,
.reghome-alert.success,
.linkedin-alert.success {
    color: green;
    background: #f1f1f1;
    padding: 10px;
    margin-bottom: 10px;
}

.joblist-applied {
    position: absolute;
    background-color: #e8e9ed;
    display: flex;
    padding: 5px 10px 5px 10px;
    right: 0px;
    top: 0px;
    border-radius: 0px 0px 0px 15px;
    color: #142147;
    font-weight: 500;
}

.joblist-applied img {
    width: 16px;
    height: 16px;
    margin-top: 5px;
    margin-right: 5px;
}

.check-click label {
    width: 100%;
}

.filter-active {
    border-color: #cf7297 !important;
}

.filter-count {
    background-color: #cf7297;
    color: #fff;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
}

.accordion-header {
    position: relative;
}

.close-filter {
    top: 20px;
    z-index: 500;
}

.accordion-button.new-jobs::after {
    background-image: url(../img/search.svg);
    transform: rotate(0deg);
}

.ajax-search {
    position: relative;
}

.ajax-search ul {
    list-style-type: none;
    position: absolute;
    z-index: 10;
    padding: 0;
}

.ajax-search ul.active {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 5px 0;
}

.ajax-search ul li {
    background-color: #F5F5F5;
    margin: 5px 10px;
    padding: 5px 10px;
}

.selectedLocations {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-grow: 1;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.selectedLocations div {
    background: rgba(20, 33, 71, 0.1);
    border: 1px solid #1421471A;
    padding: 0.6125rem 1rem;
    border-radius: 1.875rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.125rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.selectedLocations div a {
    width: 1rem;
}