

/* Start:/local/templates/main/css/vacancies/vacancies-list.css?176398257118368*/
:root {
    --blue: #0478CF;
    --dark-blue: #1560B2;
    --deep-blue: #005798;
    --light-grey: #EEF3F6;
    --dark-grey: #53545A;
    --border: #E0E0E0;
    --white: #fff;
}

.fs-16 {
    font-size: 16px;
    line-height: 24px;
}

.fs-22 {
    font-size: 22px;
    line-height: 30px;
}

.fs-26 {
    font-size: 26px;
    line-height: 28px;
}

.fw-300 {
    font-family: 'GeometriaLight';
}

.fw-500 {
    font-family: 'Geometria Medium';
}

.fw-700 {
    font-family: 'Geometria Bold';
}

.mt-64 {
    margin-top: 64px;
}

.color-blue {
    color: var(--blue, #0478cf);
}

.zag-h1 {
    margin: 64px 0 24px;
    color: var(--blue, #0478cf);
    font-size: 2.8em;
    line-height: 1.2em;
    font-family: 'Geometria';
}

@media (max-width:800px) {
    .zag-h1 {
        font-size: 2em !important;
        margin-top: 65px !important;
        left: 0px !important;
    }
}

@media (max-width:490px) {
    .zag-h1 {
        font-size: 1.5em !important;
        margin-top: 80px !important;
        left: 0px !important;
    }
}

/* Раздел вакансий */
.vacancies-container {
    margin-top: -180px;
}

.vacancies-container .vacancies-search {
    margin-top: 0;
}

.vacancies-map {
    position: relative;
    overflow: hidden;
}

.vacancies-map #vacancies-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vacancies-filials {
    position: relative;
    transform: translateX(-110%);
    z-index: 2;
    width: 325px;
    min-height: 524px;
    padding: 30px;
    background: var(--light-grey, #eef3f6);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
}

.vacancies-filials.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.vacancies-filials-title {
    color: var(--blue, #0478cf);
    font-size: 26px;
    font-weight: 500;
    line-height: 28px;
}

.vacancies-filials-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.vacancies-filials-item {
    padding: 10px;
    background: var(--white, #fff);
    color: var(--deep-blue, #005798);
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
}

@media (min-width: 1024px) {
    .vacancies-filials-item:hover {
        color: var(--white, #fff);
        background: var(--deep-blue, #005798);
    }
}

.vacancies-filials-card {
    position: absolute;
    top: 20px;
    left: 20px;
    transform: translateX(-110%);
    width: 380px;
    z-index: 2;
    background: var(--white, #fff);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
}

.vacancies-filials-card.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.vfc-header,
.vfc-link,
.vfc-info,
.vfc-recruiter {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.vfc-header {
    justify-content: space-between;
}

.vfc-header-title {
    color: var(--blue, #0478cf);
    font-size: 26px;
    font-weight: 500;
    line-height: 28px;
}

.vfc-header-close {
    width: 26px;
    height: 26px;
    cursor: pointer;
    transition: transform 0.4s;
}

@media (min-width: 1024px) {
    .vfc-header-close:hover {
        transform: rotate(-180deg);
    }
}

.vfc-header-close svg {
    width: 100%;
    height: 100%;
}

.vfc-link {
    padding-top: 0;
}

.vfc-info {
    flex-direction: column;
    gap: 10px;
}

.vfc-recruiter {
    border-top: 1px solid var(--border);
}

.vfc-recruiter-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}

.vfc-recruiter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vacancies-search {
    position: relative;
    z-index: 3;
    margin: -64px 0 64px;
    background-color: white;
    padding: 11px 10px;
    border-radius: 6px;
    box-shadow: 0 10px 35px rgba(0, 86, 151, 0.15);
}

.vacancies-search-top {
    display: flex;
    align-items: center;
}

.vacancies-search-field {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border: 1px solid var(--dark-blue);
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.vacancies-search-field input {
    color: black;
    line-height: 26px;
    height: auto;
    width: 100%;
    padding: 0;
    border: none;
    box-shadow: none !important;
    min-width: auto;
}

.vacancies-search-button {
    height: 25px;
    width: 25px;
    flex: none;
    margin-left: 12px;
    background-image: url('/local/templates/main/css/vacancies/../../images/vacancies/btn-search.png');
    background-position: -25px 0;
    cursor: pointer;
}

.vacancies-filter {
    display: none;
}

.vacancies-filter-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 10px;
}

.vacancies-filter-button {
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding: 11px 10px;
    cursor: pointer;
}

.vacancies-filter-icon {
    height: 26px;
    width: 26px;
    flex: none;
    margin-left: 10px;
    background: url('/local/templates/main/css/vacancies/../../images/vacancies/filters.svg') center / contain no-repeat;
    transition: all 0.5s;
}

.vacancies-filter-button.active .vacancies-filter-icon {
    background: url('/local/templates/main/css/vacancies/../../images/vacancies/more.svg') center / contain no-repeat;
    transform: rotate(45deg);
}

.vacancies-spoiler {
    margin-bottom: 10px;
    border-radius: 6px;
    background-color: var(--light-grey);
    border: 1px solid var(--border);
}

.vacancies-spoiler-title {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
    transition: all 0.5s;
    margin: -1px;
    cursor: pointer;
}

.vacancies-spoiler-content {
    display: none;
    color: var(--dark-grey);
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.vs-info {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.vs-info-item {
    width: calc(25% - 20px);
    margin: 10px;
}

.vs-text-block {
    padding: 20px;
}

.vs-text-block ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.vs-text-block ul li {
    margin: 0;
    padding: 0;
    list-style: disc;
    line-height: 150%;
}

.vs-text-block ul li::before {
    display: none;
}

.vs-text-block-bottom {
    border-top: 1px solid var(--dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    color: black;
}

.vs-text-block-bottom .btn,
.vacancies-filter .btn,
.vfc-link .btn {
    background: var(--dark-blue);
    color: white;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    padding: 10px;
    border: none;
    text-transform: none;
}

.vs-contacts {
    display: flex;
    width: calc((100% - 20px) / 2);
}
@media (max-width: 767px) {
    .vs-contacts {
        width: 100%;
    }   
}

.vs-contacts-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    height: 72px;
    width: 72px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.vs-contacts-image img {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    flex-shrink: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.vs-contacts-image svg {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
}

.vs-contacts-info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.vs-text-block-bottom .btn {
    margin: auto 0 0 auto;
}

.vs-title-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.vs-name {
    display: flex;
    flex-direction: column;
}

.vs-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    white-space: nowrap;
}

.vs-title-bottom {
    display: flex;
    justify-content: space-between;
}

.vs-address {
    display: flex;
    gap: 10px;
}

.vs-address-map {
    display: flex;
    align-items: center;
}

.vs-address-map::before {
    content: '';
    display: block;
    height: 24px;
    width: 24px;
    flex: none;
    margin-right: 10px;
    background: url('/local/templates/main/css/vacancies/../../images/vacancies/point.svg') center / contain no-repeat;
}

.vacancies-spoiler-icon {
    height: 24px;
    width: 24px;
    flex: none;
    margin-left: 20px;
    background: url('/local/templates/main/css/vacancies/../../images/vacancies/more.svg') center / contain no-repeat;
    transition: all 0.5s;
}

.vacancies-spoiler.active .vacancies-spoiler-icon {
    transform: rotate(45deg);
}

.vacancies-spoiler.active .vacancies-spoiler-title {
    border-color: var(--blue);
}

.vacancies-filter-list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
    gap: 10px;
}

.vacancies-filter-item {
    width: calc(100% / 3 - 7px);
}

.vacancies-filter .btn {
    display: block;
    /* margin: 10px 0 0 auto; */
}

.vacancies-filter .jq-selectbox {
    width: 100%;
}

.vacancies-filter .jq-selectbox__select {
    padding: 11px 50px 11px 12px;
    line-height: 26px;
    height: 48px;
    font-size: 16px;
    color: black;
    border-radius: 5px !important;
    border: 1px solid var(--dark-blue) !important;
    box-sizing: border-box;
}

.vacancies-filter .jq-selectbox__dropdown ul li {
    line-height: 26px;
    padding: 11px 12px;
    color: black;
    font-size: 16px;
}

.vacancies-filter .jq-selectbox li.disabled {
    color: var(--dark-grey) !important;
    cursor: default;
}

.vacancies-filter .jq-selectbox__dropdown ul li:hover,
.vacancies-filter .jq-selectbox__dropdown ul li.selected,
.vacancies-filter .jq-selectbox__dropdown ul li.sel {
    color: var(--dark-blue);
}

.vacancies-filter .jq-selectbox__trigger {
    width: 50px;
}

.vacancies-filter .jq-selectbox__trigger-arrow {
    left: 50%;
    margin-top: 0;
    transform: translate(-50%, -50%);
}

.vacancies-filter .jq-selectbox__select-text {
    min-width: 100%;
}

.vacancies-filter-results {
    display: flex;
    justify-content: space-between;
}

.vf-tag-list {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.vf-tag-item {
    margin: 5px;
    display: inline-flex;
    padding: 11px 12px;
    background-color: var(--light-grey);
    color: var(--dark-blue);
}

.vf-tag-button {
    flex: none;
    margin-left: 10px;
    height: 24px;
    width: 24px;
    background: url('/local/templates/main/css/vacancies/../../images/vacancies/more.svg') center / contain no-repeat;
    transform: rotate(45deg);
    cursor: pointer;
}

.vf-tag-reset {
    display: inline-flex;
    padding: 11px 12px;
    white-space: nowrap;
}

a.color-blue:hover {
    text-decoration: none;
    color: var(--blue);
}

.form-vacancy .btn-yellow {
    border: 1px solid #0478cf;
    background: #0478cf;
    color: #fff;
}
.form-vacancy .btn-yellow:hover {
    border: 1px solid #0478cf;
    background: #fff;
    color: #0478cf;
}

.form__success {
    display: none;
}

.form__errors p {
    color: #e81313;
}

/* Gallery */
.gallery {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 20vh;
    height: auto;
    margin: 0 auto;
    max-width: 1246px;
}

@media all and (min-width: 640px) {
    .gallery {
        grid-template-columns: repeat(5, 1fr);
    }
}

.gallery div {
    flex: 1 0 20%;
    height: 20vh;
}

.gallery .content {
    display: flex;
    /* added for centered text */
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    height: 100%;
    max-height: 250px;
    width: 100%;
    justify-content: center;
    /* added for centered text */
    align-items: center;
    /* added for centered text */
    text-align: center;
}

@media (max-width:800px) {
    .content {
        font-size: 0.7em;
    }
}

@media (max-width:490px) {
    .content {
        font-size: 1em;
    }
}

.image-container {
    position: relative;
}

.image-container img {
    max-width: 100%;
}

.text-overlay {
    position: absolute;
    top: 40%;
    bottom: 50%;
    left: 40px;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 3.1em;
    margin-left: 6%;
    margin-right: 20%;
}

/* изменить положение текста для моб.устройств */
@media (max-width:800px) {
    .text-overlay {
        font-size: 1.8em;
        line-height: 1.4em;
        top: 25%;
        bottom: 25%;
        left: -15px;
    }
}

/* изменить положение текста для моб.устройств */
@media (max-width:490px) {
    .text-overlay {
        font-size: 1.2em;
        line-height: 1.1em;
        top: 13%;
        bottom: 13%;
        left: -5px;
    }
}

.coler-1 {
    background: url("/vacancies-new/images/ris-01nn.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.coler-2 {
    background: url("/vacancies-new/images/ris-02n.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.coler-3 {
    background: url("/vacancies-new/images/ris-03n.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.coler-4 {
    background: url("/vacancies-new/images/ris-04n.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.coler-5 {
    background: url("/vacancies-new/images/ris-05n.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.coler-6 {
    background: url("/vacancies-new/images/ris-06n.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.coler-7 {
    background: url("/vacancies-new/images/ris-07nn.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.coler-8 {
    background: url("/vacancies-new/images/ris-08n.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.coler-9 {
    background: url("/vacancies-new/images/ris-09n.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.coler-10 {
    background: url("/vacancies-new/images/ris-10nn.svg");
    background-repeat: no-repeat;
    border: 1px solid;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    /* margin-bottom: 15px; */
}

.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 12px 15px; */
	padding: 11px 50px 11px 12px;
    background: #fff;
    /* border: 1px solid #ddd; */
    border: 1px solid var(--dark-blue) !important;
    /* border-radius: 4px; */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
	box-sizing: border-box;
}

.dropdown-header:hover {
    border-color: var(--blue, #0478CF);
}

.dropdown-title {
    font-size: 16px;
    color: #333;
    flex: 1;
}

.dropdown-count {
    font-size: 14px;
    color: var(--blue, #0478CF);
    font-weight: 600;
    /* margin-right: 10px; */
}

.dropdown-arrow {
	position: absolute;
	top: 0;
	right: 0;
    width: 50px;
    height: 100%;
    transition: transform 0.3s ease;
}

.dropdown-arrow span {
	position: absolute;
	border: none;
    right: auto;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    background-image: url('/local/templates/main/css/vacancies/../../images/select.png');
    background-position: -12px 0;
    width: 12px;
    height: 8px;
}

.custom-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-dropdown.active .dropdown-content {
    display: block;
}

.dropdown-option {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background-color: #f8f9fa;
}

.dropdown-option input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: var(--blue, #0478CF);
}

.checkbox-text {
    font-size: 14px;
    color: #333;
    flex: 1;
}

.vfc-info {
    font-weight: 600;    
}

.vfc-recruiter {
    align-items: center;
}

@media only screen and (max-width: 1023px) {
    .vs-info-item {
        width: calc(50% - 20px);
    }

    .vacancies-filter-item {
        width: calc(50% - 5px);
    }
}

@media only screen and (max-width: 500px) {

    .vs-info-item {
        width: calc(100% - 20px);
    }

    .vacancies-filter-item {
        width: 100%;
    }

    .vacancies-search-top,
    .vacancies-filter-results,
    .vs-title-top,
    .vs-contacts,
    .vs-text-block-bottom {
        flex-direction: column;
    }

    .vs-contacts-image {
        margin: 0 0 20px;
    }

    .vacancies-filter-button {
        margin: 0;
    }

    .vf-tag-list {
        margin-bottom: 20px;
    }

    .vs-text-block-bottom .btn {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .vacancies-search-top,
    .vacancies-filter-results,
    .vs-price,
    .vs-text-block-bottom {
        align-items: flex-start;
    }

    .vs-title-bottom {
        align-items: flex-end;
    }

    .vs-address {
        flex-direction: column;
        width: 100%;
    }
}
/* End */
/* /local/templates/main/css/vacancies/vacancies-list.css?176398257118368 */
