@media (min-width: 1400px) {
    .container {
        max-width: calc(1400px - 145px);
    }
}

body {
    -webkit-font-smoothing: antialiased;
}

.filter-wrapper {
    margin-top: 32px;
}

.filter-wrapper .filters.directory-filters {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .filter-wrapper .filters.directory-filters {
        display: block;
    }
}

@media (max-width: 991px) {
    .filter-wrapper .filters.directory-filters ul {
        display: block;
    }
}

.filter-wrapper .filters.directory-filters ul li.select-wrap {
    width: 200px;
}

@media (max-width: 991px) {
    .filter-wrapper .filters.directory-filters ul li.select-wrap {
        width: 100%;
    }
}

.filter-wrapper .filters ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.filter-wrapper .filters ul li {
    margin-right: 16px;
}

@media (max-width: 576px) {
    .filter-wrapper .filters ul li {
        margin-right: 8px;
    }
}

.filter-wrapper .filters ul li:last-child {
    margin-right: 0;
}

.filter-wrapper .filters ul li .category-filter {
    border: 1px solid var(--grey70);
    background-color: var(--dayLight);
    padding: 8px 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--night);
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.filter-wrapper .filters ul li .category-filter span {
    width: 24px;
    height: 24px;
    border-radius: 100px;
    background: var(--dayDark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
}

.filter-wrapper .filters ul li.select-wrap {
    width: 200px;
}

@media (max-width: 576px) {
    .filter-wrapper .filters ul li.select-wrap {
        width: 100%;
    }
}

.notify-btn {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .notify-btn {
        justify-content: center;
    }
}

.notify-btn span {
    background: url(/static/images/bell-fill.svg) no-repeat center center;
    background-size: 20px;
    height: 20px;
    width: 20px;
    display: inline-block;
    margin-right: 8px;
}

.notify-btn.disabled {
    background-color: var(--grey94);
    border-color: var(--grey80);
    color: var(--grey55);
}

.notify-btn.disabled span {
    background: url(/static/images/bell-fill-disabled.svg) no-repeat center center;
}

.company-card {
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 32px;
    background-color: var(--white);
    width: 100%;
}

.company-card:hover {
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.2);
}

.company-card:focus {
    outline: inherit;
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .company-card {
        margin-bottom: 16px;
    }
}

.company-card .company-card-header {
    height: 140px;
    background-color: var(--dayDark);
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

@media (max-width: 991px) {
    .company-card .company-card-header {
        height: 64px;
    }
}

.company-card .company-card-header img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.company-card .company-card-body {
    position: relative;
    padding: 52px 24px 24px;
}

@media (max-width: 991px) {
    .company-card .company-card-body {
        padding: 52px 16px 16px;
    }
}

.company-card .company-card-body .company-logo {
    width: 106px;
    height: 80px;
    border: 1px solid var(--grey90);
    position: absolute;
    top: -40px;
    left: 24px;
    background-color: var(--white);
}

.company-card .company-card-body .company-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 4px;
}

.company-card .company-card-body .job-badge {
    color: var(--night);
    font-weight: 700;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
}

.company-card .company-card-body .name {
    color: var(--night);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .company-card .company-card-body .name {
        display: block;
    }
}

@media (max-width: 576px) {
    .company-card .company-card-body .name {
        font-size: 14px;
    }
}

.company-card .company-card-body .verify {
    margin-left: 8px;
    vertical-align: top;
    margin-top: -2px;
}

.company-card .company-card-body .verify:hover .verify-outline {
    display: none;
}

.company-card .company-card-body .verify:hover .verified {
    display: inline-block;
}

.company-card .company-card-body .verify .verify-outline {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.company-card .company-card-body .verify .verified {
    background-color: #E8F5E9;
    padding: 2px 4px;
    color: #4CAF50;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    display: none;
    vertical-align: middle;
    width: 75px;
    text-align: center;
}

.company-card .company-card-body .verify .verified img {
    width: 16px;
    height: 16px;
    display: inline;
}

.company-card .company-card-body .verify .verified span {
    vertical-align: middle;
}

.company-card .company-card-body .location {
    color: var(--grey55);
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .company-card .company-card-body .location {
        font-size: 14px;
        line-height: 20px;
    }
}

.company-card .company-card-body .content {
    line-height: 24px;
    margin: 0;
    color: var(--grey20);
}

@media (max-width: 991px) {
    .company-card .company-card-body .content {
        font-size: 14px;
        line-height: 20px;
    }
}

.company-card:hover .company-card-body .name {
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
}

.recruiting-now-wrapper {
    background-color: var(--dayLight);
    height: 260px;
    margin-bottom: 380px;
}

@media (max-width: 991px) {
    .recruiting-now-wrapper {
        height: 500px;
        margin-bottom: 0;
        padding-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .recruiting-now-wrapper {
        height: 516px;
    }
}

.recruiting-now-wrapper .recruiting-now-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 32px;
}

@media (max-width: 991px) {
    .recruiting-now-wrapper .recruiting-now-header {
        display: block;
    }
}

.recruiting-now-wrapper .recruiting-now-header .title {
    font-family: "Montserrat", sans-serif;
    color: var(--night);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}

@media (max-width: 991px) {
    .recruiting-now-wrapper .recruiting-now-header .title {
        font-size: 22px;
        line-height: 32px;
        padding: 40px 0 12px 0;
    }
}

.recruiting-now-wrapper .recruiting-now-header a {
    font-weight: 700;
}

.recruiting-now-wrapper .recruiting-now-header a span {
    vertical-align: middle;
    width: 28px;
    height: 28px;
    display: inline-block;
    background: url(/static/images/arrow-right.svg) no-repeat left;
    background-size: 28px;
    margin-left: 4px;
}

.recruiting-now-wrapper .recruiting-company-cards {
    position: absolute;
    top: 48px;
    width: 100%;
}

@media (max-width: 991px) {
    .recruiting-now-wrapper .recruiting-company-cards {
        position: static;
    }
}

.recruiting-now-wrapper .recruiting-company-cards .company-card-wrapper {
    display: flex;
    gap: 20px;
}

.recruiting-now-wrapper .recruiting-company-cards .company-card-wrapper .company-card {
    display: block;
    width: 33.333%;
}

@media (max-width: 767px) {
    .recruiting-now-wrapper .recruiting-company-cards .company-card-wrapper .company-card {
        width: 100%;
    }
}

.recruiting-now-wrapper .recruiting-company-cards .company-card-wrapper .company-card .company-card-body .location {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recruiting-now-wrapper .recruiting-company-cards .company-card-wrapper .company-card .company-card-body .name {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recruiting-now-wrapper .recruiting-company-cards .company-card-wrapper .company-card .company-card-body .content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recruiting-now-wrapper .recruiting-company-cards .owl-carousel .owl-stage {
    display: flex;
}

.recruiting-now-wrapper .recruiting-company-cards .owl-carousel .owl-item {
    display: flex;
}

.recruiting-now-wrapper .recruiting-company-cards .owl-carousel .owl-item .company-card {
    width: 100%;
}

.return-to-top {
    width: 48px;
    height: 48px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 20px;
    background: var(--white);
    right: 20px;
    cursor: pointer;
    z-index: 99;
}

.company-directory .company-search .bootstrap-autocomplete {
    padding: 0;
    max-height: 280px;
    overflow: auto;
    border-radius: 0 0 5px 5px;
    margin-top: 0;
    border-top: none;
    overflow-y: auto;
    scrollbar-color: var(--primary) transparent;
    scrollbar-width: thin;
}

.company-directory .company-search .bootstrap-autocomplete::-webkit-scrollbar {
    width: 2px;
}

.company-directory .company-search .bootstrap-autocomplete::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--dayLight);
    border-radius: 2px;
}

.company-directory .company-search .bootstrap-autocomplete::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.company-directory .company-search .bootstrap-autocomplete .dropdown-item {
    padding: 10px 18px;
}

@media (max-width: 576px) {
    .company-directory .company-search .bootstrap-autocomplete .dropdown-item {
        padding: 10px 12px;
    }
}

.company-directory .company-search .bootstrap-autocomplete .dropdown-item:hover, .company-directory .company-search .bootstrap-autocomplete .dropdown-item:active, .company-directory .company-search .bootstrap-autocomplete .dropdown-item.active {
    background-color: var(--dayLight);
    color: var(--grey20);
}

.company-directory .company-search .bootstrap-autocomplete .company-search-result {
    display: flex;
}

.company-directory .company-search .bootstrap-autocomplete .company-search-result .company-text div {
    font-size: 16px;
    line-height: 24px;
    color: var(--grey20);
}

.company-directory .banner {
    background: linear-gradient(180deg, var(--nightLight) 0%, var(--nightDark) 100%);
    padding: 52px 0 108px;
    text-align: center;
}

@media (max-width: 991px) {
    .company-directory .banner {
        padding: 40px 0 40px;
    }
}

.company-directory .banner .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    color: var(--white);
    margin: 0 0 52px 0;
}

@media (max-width: 991px) {
    .company-directory .banner .title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 26px;
    }
}

.company-directory .banner .search-company-wrapper {
    display: flex;
    align-items: center;
    background: var(--white);
    box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.1), 2px 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.company-directory .banner .search-company-wrapper .theme-btn {
    margin-right: 4px;
}

.company-directory .banner .expert-mode-wrapper label {
    font-size: 12px;
    color: var(--white);
}

.company-directory .banner .expert-mode-wrapper label.custom-checkbox {
    padding-left: 25px;
}

.company-directory .banner .expert-mode-wrapper label .checkmark {
    top: 0;
}

.company-directory .card-wrapper {
    padding: 8px 0 0;
}

@media (max-width: 991px) {
    .company-directory .card-wrapper {
        padding: 16px 0 0;
    }
}

.company-directory .card-wrapper .score-wrapper .score {
    text-align: right;
    font-size: 12px;
    color: var(--grey70);
}

.company-directory .card-wrapper .score-wrapper .explanation {
    height: 150px;
    overflow: scroll;
}

.company-directory .card-wrapper .company-card {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.company-directory .card-wrapper .setup-company-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
    flex-direction: column;
    text-align: center;
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 32px;
    width: 100%;
}

.company-directory .card-wrapper .setup-company-profile .title {
    color: var(--night);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
}

.company-directory .no-results-wrapper {
    margin-top: 56px;
    margin-bottom: 56px;
}

@media (max-width: 991px) {
    .company-directory .no-results-wrapper {
        margin-top: 32px;
        margin-bottom: 32px;
    }
}

.company-directory .no-results-wrapper img {
    margin-right: 32px;
}

@media (max-width: 991px) {
    .company-directory .no-results-wrapper img {
        margin: 0 auto 16px;
        display: block;
    }
}

.company-directory .no-results-wrapper .title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--night);
    word-break: break-word;
}

.company-directory .no-results-wrapper ul {
    padding-left: 24px;
    margin-top: 8px;
}

.company-directory .no-results-wrapper .custom-card {
    border-radius: 2px;
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.2);
    padding: 72px 32px;
    text-align: center;
}

@media (max-width: 991px) {
    .company-directory .no-results-wrapper .custom-card {
        margin-top: 48px;
    }
}

.company-directory .no-results-wrapper .custom-card h3 {
    color: var(--night);
    font-size: 24px;
    line-height: 32px;
    font-family: "Montserrat", sans-serif;
    margin: 0 0 16px;
    font-weight: 700;
}

.company-profile .banner {
    background-size: cover;
    height: 244px;
    background-color: var(--dayDark);
}

@media (max-width: 576px) {
    .company-profile .banner {
        height: 80px;
    }
}

.company-profile .banner img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.company-profile .button-block {
    position: absolute;
    right: 15px;
    margin-top: 28px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .company-profile .button-block {
        position: static;
        margin-bottom: 24px;
        justify-content: flex-end;
    }
}

.company-profile .button-block .rounded-btn {
    background: var(--dayLight);
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: var(--night);
    padding: 12px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 576px) {
    .company-profile .button-block .rounded-btn {
        padding: 6px 8px;
    }
}

.company-profile .button-block .rounded-btn .count {
    background: var(--dayDark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    margin-left: 16px;
    padding: 6px 8px;
}

.company-profile .wrapper {
    display: flex;
}

@media (max-width: 991px) {
    .company-profile .wrapper {
        display: block;
    }
}

.company-profile .wrapper .company-logo {
    width: 178px;
    height: 138px;
    border: 1px solid var(--grey90);
    position: relative;
    top: -28px;
    background: var(--white);
}

@media (max-width: 991px) {
    .company-profile .wrapper .company-logo {
        top: 16px;
        margin: 0 auto;
    }
}

.company-profile .wrapper .company-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 4px;
}

.company-profile .wrapper .content-block {
    margin-left: 34px;
    width: 70%;
}

@media (max-width: 991px) {
    .company-profile .wrapper .content-block {
        width: 100%;
        margin-left: 0;
    }
}

.company-profile .wrapper .content-block .company-title {
    color: var(--night);
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    font-family: "Montserrat", sans-serif;
    margin: 24px 0 16px;
}

@media (min-width: 991px) {
    .company-profile .wrapper .content-block .company-title {
        max-width: 80%;
    }
}

@media (max-width: 991px) {
    .company-profile .wrapper .content-block .company-title {
        font-size: 32px;
        line-height: 40px;
        margin-top: 34px;
    }
}

.company-profile .wrapper .content-block .verify {
    font-family: "Roboto", sans-serif;
    vertical-align: top;
    width: 70px;
}

@media (max-width: 991px) {
    .company-profile .wrapper .content-block .verify {
        margin-top: 16px;
    }
}

.company-profile .wrapper .content-block .verify:hover .verify-outline {
    display: none;
}

.company-profile .wrapper .content-block .verify:hover .verified {
    display: inline-block;
}

.company-profile .wrapper .content-block .verify .verify-outline {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.company-profile .wrapper .content-block .verify .verified {
    background-color: #E8F5E9;
    padding: 2px 4px;
    color: #4CAF50;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    display: none;
    vertical-align: middle;
    width: 75px;
    text-align: center;
}

.company-profile .wrapper .content-block .verify .verified img {
    width: 16px;
    height: 16px;
    display: inline;
}

.company-profile .wrapper .content-block .verify .verified span {
    vertical-align: middle;
}

.company-profile .wrapper .content-block .not-verified {
    font-weight: 700;
    margin: 0 0 42px;
    display: inline-block;
    color: var(--primary);
    cursor: pointer;
}

.company-profile .wrapper .content-block .light-text {
    color: var(--grey55);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    word-wrap: break-word;
    letter-spacing: 1.5px;
}

.company-profile .wrapper .content-block .description {
    color: var(--grey20);
    line-height: 24px;
    margin-top: 8px;
    word-wrap: break-word;
}

.company-profile .wrapper .content-block .description.location {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.company-profile .wrapper .content-block .items {
    margin-bottom: 28px;
}

@media (max-width: 991px) {
    .company-profile .wrapper .content-block .items {
        margin-bottom: 8px;
    }
}

.company-profile .wrapper .content-block .sectors,
.company-profile .wrapper .content-block .locations {
    margin: 16px 0 32px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.company-profile .wrapper .content-block .sectors div,
.company-profile .wrapper .content-block .locations div {
    color: var(--nightDark);
    background-color: var(--dayLight);
    font-size: 12px;
    font-weight: 600;
    padding: 0 12px;
    margin-right: 8px;
    line-height: 24px;
    border-radius: 12px;
    margin-bottom: 12px;
    word-break: break-word;
}

.company-profile .wrapper .content-block .links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .company-profile .wrapper .content-block .links {
        margin-bottom: 36px;
    }
}

.company-profile .wrapper .content-block .links a {
    color: var(--primary);
    font-weight: 700;
    line-height: 20px;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.company-profile .wrapper .content-block .links a:last-child {
    margin-right: 0;
}

.company-profile .wrapper .content-block .links a .icon {
    margin-right: 8px;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.company-profile .wrapper .content-block .links a .website {
    background: url(/static/images/globe.svg) no-repeat left;
    background-size: 24px;
}

.company-profile .wrapper .content-block .links a .linkedin {
    background: url(/static/images/linkedin-colour.svg) no-repeat left;
    background-size: 24px;
}

.company-profile .wrapper .content-block .links a .twitter {
    background: url(/static/images/twitter-share.svg) no-repeat left;
    background-size: 24px;
}

.company-profile .wrapper .content-block .links a .facebook {
    background: url(/static/images/facebook-share.svg) no-repeat left;
    background-size: 24px;
}

.company-profile .wrapper .content-block .links a .youtube {
    background: url(/static/images/youtube-share.svg) no-repeat left;
    background-size: 24px;
}

.company-profile .wrapper .content-block .about-company-block {
    display: block;
    margin-bottom: 72px;
}

@media (max-width: 991px) {
    .company-profile .wrapper .content-block .about-company-block {
        margin-bottom: 46px;
    }
}

.company-profile .wrapper .content-block .about-company-block .title {
    margin: 16px 0 8px;
    color: var(--night);
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    font-family: "Montserrat", sans-serif;
}

@media (max-width: 991px) {
    .company-profile .wrapper .content-block .about-company-block .title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

.company-profile .wrapper .content-block .about-company-block .content {
    line-height: 24px;
    margin-bottom: 4px;
    word-wrap: break-word;
}

.company-profile .wrapper .content-block .about-company-block .content.hide-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.company-profile .wrapper .content-block .about-company-block .read-more-show {
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
}

.company-profile .wrapper .content-block .about-company-block a {
    font-weight: 700;
    display: inline-block;
}

@media (max-width: 767px) {
    .company-profile .wrapper .content-block .about-company-block iframe {
        height: 230px;
    }
}

@media (max-width: 767px) {
    .company-profile .wrapper .content-block .about-company-block iframe {
        height: 215px;
    }
}

.company-profile .wrapper .content-block .small-block {
    margin-top: 40px;
    margin-bottom: 120px;
}

@media (max-width: 991px) {
    .company-profile .wrapper .content-block .small-block {
        margin-top: 32px;
        margin-bottom: 80px;
    }
}

.company-profile .wrapper .content-block .small-block .title {
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    font-family: "Montserrat", sans-serif;
    color: var(--night);
    margin: 0 0 16px;
}

.company-profile .wrapper .content-block .small-block .text {
    margin: 0 0 24px;
}

.company-profile .wrapper .content-block .small-block .alert-success {
    background: var(--successBg) url(/static/images/check-circle-fill.svg) no-repeat 21px 12px;
    line-height: 40px;
    padding: 11px 18px 11px 55px;
}

.company-profile .wrapper .content-block .small-block .notify-btn {
    display: inline-flex;
}

.company-profile .open-jobs-wrapper {
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .company-profile .open-jobs-wrapper .filter-wrapper {
        margin-top: 16px;
    }
}

@media (max-width: 576px) {
    .company-profile .open-jobs-wrapper .filter-wrapper .filters {
        display: block;
    }

    .company-profile .open-jobs-wrapper .filter-wrapper .filters ul {
        display: block;
    }

    .company-profile .open-jobs-wrapper .filter-wrapper .filters ul li {
        margin-right: 0;
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) and (max-width: 576px) {
    .company-profile .open-jobs-wrapper .filter-wrapper .filters ul li.select-wrap {
        width: auto;
    }
}

@media (max-width: 576px) and (max-width: 576px) {
    .company-profile .open-jobs-wrapper .filter-wrapper .filters ul li .notify-btn span {
        vertical-align: sub;
    }
}

.company-profile .open-jobs-wrapper .filter-wrapper .filters .alert-success {
    background: var(--successBg) url(/static/images/check-circle-fill.svg) no-repeat 21px 12px;
    line-height: 40px;
    padding: 11px 18px 11px 55px;
}

@media (max-width: 576px) {
    .company-profile .open-jobs-wrapper .filter-wrapper .filters .alert-success {
        padding: 0px 9px 0px 50px;
        display: block;
    }
}

.company-profile .open-jobs-wrapper .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    color: var(--night);
}

.company-profile .open-jobs-wrapper .job-cards {
    margin-top: 24px;
}

.company-profile .open-jobs-wrapper .job-cards .job-card {
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    background-color: var(--white);
    position: relative;
    padding: 16px;
    margin-bottom: 30px;
    width: 100%;
}

.company-profile .open-jobs-wrapper .job-cards .job-card:hover {
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.2);
}

.company-profile .open-jobs-wrapper .job-cards .job-card .save-icon-block {
    position: absolute;
    right: 16px;
    cursor: pointer;
}

.company-profile .open-jobs-wrapper .job-cards .job-card .save-icon-block .icon {
    vertical-align: middle;
    width: 24px;
    height: 27px;
    display: inline-block;
}

.company-profile .open-jobs-wrapper .job-cards .job-card .save-icon-block .icon.save-icon {
    background: url(/static/images/heart.svg) no-repeat left;
}

@media (min-width: 991px) {
    .company-profile .open-jobs-wrapper .job-cards .job-card .save-icon-block .icon:hover {
        background: url(/static/images/heart-fill.svg) no-repeat left;
    }
}

.company-profile .open-jobs-wrapper .job-cards .job-card .save-icon-block .icon.saved {
    background: url(/static/images/heart-fill.svg) no-repeat left;
}

.company-profile .open-jobs-wrapper .job-cards .job-card .post-info {
    color: var(--grey55);
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 16px;
}

.company-profile .open-jobs-wrapper .job-cards .job-card .job-title {
    color: var(--night);
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 8px 0;
    display: inline-block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.company-profile .open-jobs-wrapper .job-cards .job-card .job-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
    color: var(--grey20);
}

.company-profile .open-jobs-wrapper .job-cards .job-card .job-item.location {
    background: url(/static/images/location-grey.svg) no-repeat left -1px;
    background-size: 18px;
    padding-left: 30px;
}

.company-profile .open-jobs-wrapper .job-cards .job-card .job-item.briefcase {
    background: url(/static/images/briefcase-grey.svg) no-repeat left 0px;
    background-size: 18px;
    padding-left: 30px;
}

.company-profile .open-jobs-wrapper .job-cards .job-card .job-item .item {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.company-profile .open-jobs-wrapper .job-cards .job-card .job-item:last-child {
    margin-bottom: 0;
}

.company-profile .open-jobs-wrapper .job-cards .job-card .job-item .icon {
    vertical-align: middle;
    width: 20px;
    height: 22px;
    display: inline-block;
    margin-right: 8px;
}

.company-profile .custom-card {
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 0;
    margin-top: 24px;
}

@media (max-width: 991px) {
    .company-profile .custom-card {
        display: block;
        text-align: center;
        padding: 16px;
        margin-bottom: 16px;
    }
}

.company-profile .custom-card .notification-icon {
    vertical-align: middle;
    width: 62px;
    height: 62px;
    display: inline-block;
    background: url(/static/images/alert-bell.svg) no-repeat left;
    background-size: 62px;
    margin-right: 32px;
}

@media (max-width: 991px) {
    .company-profile .custom-card .notification-icon {
        margin-right: 0;
        margin-bottom: 18px;
    }
}

.company-profile .custom-card .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

@media (max-width: 991px) {
    .company-profile .custom-card .title {
        margin-bottom: 16px;
        font-size: 18px;
    }
}

.company-profile .custom-card .text {
    margin: 0;
}

.company-profile .custom-card .text a {
    text-decoration: underline;
}
