.top-content-site-container.category-bg-header {
    background: url('/catalog/view/theme/default/image/site/builder_bg.jpg');
}

.top-content-site-container.job-bg-header {
    background: url('/catalog/view/theme/default/image/site/vacancy_banner.jpg');
    background-size: 100% 100%;
}

.top-content-site-container.job-bg-header h1 {
    margin-top: 12px;
    padding-bottom: 24px;
}

.information-data {
    max-width: 1280px;
    margin: 0 auto;
    direction: rtl;
    line-height: 25px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.job-wrapper {
    direction: rtl;
}

.vacancy-title {
    color: #181818;
    font-size: 30px;
    margin-bottom: 48px;
}

.vacancy-subtitle {
    color: #FF6D00;
    font-size: 24px;
    margin-bottom: 20px;
}

.vacancy-form__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vacancy-form__row-data {
    width: 32%;
}

.vacancy-form .vacancy-form__row:nth-of-type(2) {
    margin-top: 12px;
}

.vacancy-form__row-data label {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #545454;
}

.vacancy-form__row-data label span {
    color: #FF6D00;
}

.vacancy-form__row-data input {
    height: 45px;
    border: 1px solid #B1B1B1;
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.vacancy-form__row-data select {
    height: 45px;
    border: 1px solid #B1B1B1;
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
}

.vacancy-form__row-data .select {
    width: 99%;
}

.vacancy-form__row-data .styledSelect:after {
    right: auto;
    left: 10px;
}

.vacancy-list-item {
    border: 1px solid #B1B1B1;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.vacancy-list-item__title {
    color: #181818;
    font-size: 24px;
}

.vacancy-list-item__title-short-desc {
    display: flex;
    margin-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #B1B1B1;
    font-size: 16px;
    color: #5F5F5F;
}

.vacancy-list-item__title-short-desc .vacancy-list-item__title-short-desc-item:nth-of-type(1) {
    margin-right: 0;
}

.vacancy-list-item__title-short-desc-dots {
    display: inline-block;
    margin-right: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF6D00;
}

.vacancy-list-item__title-short-desc-item {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.vacancy-list-item__title-short-desc-item a {
    display: inline-block;
    margin-left: 12px;
}

.vacancy-name {
    font-size: 14px;
    color: #181818;
    margin-top: 12px;
    margin-bottom: 12px;
}

.vacancy-dot-elements {
    display: flex;
    justify-content: space-between;
}

.vacancy-dot-elements .vacancy-dot-sides {
    width: 48%;
}

.vacancy-dot-element-title {
    font-size: 16px;
    color: #181818;
    font-weight: 500;
    margin-bottom: 12px;
}

.vacancy-dot-element-data {
    display: flex;
    align-items: center;
}

.vacancy-dot-element-data span:nth-of-type(1) {
    border-radius: 50%;
    width: 6px;
    height: 6px;
    display: inline-block;
    background: #FF6D00;
    margin-left: 7px;
}

.vacancy-dot-element-data span:nth-of-type(2) {
    color: #5F5F5F;
}

.vacancy-form-button-row {
    margin-top: 24px;
    margin-bottom: 40px;
}

.vacancy-form-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #181818;
    color: #ffffff;
    width: 165px;
    height: 43px;
    border: 1px solid #181818;
    font-size: 18px;
    cursor: pointer;
    transition: ease all 0.3s;
}

.vacancy-form-button:hover {
    background: #FF6D00;
    border: 1px solid #FF6D00;
}

.vacancy-form-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #181818;
    border-color: #181818;
}

.vacancy-form-button.loading {
    gap: 8px;
    background: #181818;
    border-color: #181818;
    color: #ffffff;
}

.vacancy-form-button .loader {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.file-upload-wrapper {
    position: relative;
    width: 101%;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 45px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #B1B1B1;
    border-radius: 4px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    font-size: 14px;
    color: #A0A0A0;
    pointer-events: none;
}

.file-upload-display svg {
    flex-shrink: 0;
}

.file-upload-text {
    font-size: 14px;
    color: #A0A0A0;
}

@media (max-width: 767px) {
    .vacancy-form__row {
        flex-wrap: wrap;
    }

    .vacancy-form__row-data {
        width: 48%;
    }
}

@media (max-width: 670px) {
    .vacancy-list-item__title-short-desc {
        flex-wrap: wrap;
    }
}

@media (max-width: 555px) {
    .vacancy-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .vacancy-subtitle {
        font-size: 18px;
    }

    .vacancy-dot-elements {
        flex-wrap: wrap;
    }

    .vacancy-dot-elements .vacancy-dot-sides {
        width: 100%;
    }

    .vacancy-list-item__title-short-desc-item {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .vacancy-form__row-data {
        width: 100%;
    }
}

