.vacancies__of-the-day {
    background: #F54500;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;

    border-radius: 5px;

    margin-top: 100px;
    .with__max-width {
        margin: 0;
    }
}

.vacancy-of-the-day__container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.purchases__search-result_vacancy {
    .purchases__input-field {
        margin-bottom: 40px;
    }
}

.main__images-carousel .carousel__rulers {
    justify-content: flex-end;
    gap: 20px;
    .button__transparent {
        width: 26.667px;
        height: 26.667px;
        padding: 0;
    }
}

#vacancies-images {
    .swiper-slide {
        border-radius: 5px;
        overflow: hidden;
    }

}

.vacancies__of-the-day h1 {
    color: var(--White, #FFF);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 60%; /* 64px */

    margin-bottom: 50px;
}

.vacancies__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.vacancies__list .purchases__pagination {
    margin-top: 20px;

    padding-bottom: 30px;
    border-bottom: 1px solid black;
}

.vacancy__header {
    padding: 17px 0 27px 0;
    border-bottom: 1px solid #F7F7F7;
    cursor: pointer;
}

.vacancy-header__title {
    color: var(--Black, #101010);
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    font-size: 24px;
overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; 
}

.vacancy__row .content-list__title {
    color: var(--Grey, #B2B2B2);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.vacancy__row .content-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vacancy__row .content-list ul {
    color: var(--Black, #101010);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

.vacancy__row {
    gap: 14px;
}

.vacancies__vacancy-item {
    overflow: hidden;
    border-radius: 5px;
    background: var(--White, #FFF);
    padding: 10px 20px;
}

.vacancies__vacancy-item:not(:has(.enabled)) {
    padding-bottom: 0;
}

.vacancies__vacancy-item:not(:has(.enabled)) .vacancy__header {
    border-bottom: none;
}

.vacancies__vacancy-item h1,
.vacancies__vacancy-item h2,
.vacancies__vacancy-item h3,
.vacancies__vacancy-item p {
    margin: 0;
}

.vacancy__row {
    gap: 30px;
}

.vacancy__content {
    transition: all .2s ease-in-out;
    padding: 10px 0;
}

.vacancy__content:not(.enabled) {
    display: none;
}

.vacancy__content .vacancy__row:first-of-type {
    width: 50%;
}

.vacancy__content .vacancy__row:last-of-type {
    width: 500px;
}

.vacancy-of-the-day__container .vacancy__content .vacancy__row:last-of-type {
    width: 457px;
}

.content-list__title {
    color: var(--Grey, #B2B2B2);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
}

.content-list ul {
    color: var(--Black, #101010);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.vacancy__contacts-container {
    padding: 10px 20px;
    border-radius: 5px;
    background: #F7F7F7;
}

.vacancy__contact-info {
    position: relative;
    height: 100%;
    justify-content: start;
    gap: 18px;
}

.vacancy__contact-info h1 {
    color: var(--Black, #101010);
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    font-size: 24px;
}

.title__transparent {
    color: var(--Grey, #B2B2B2);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
}

.vacancy__contact-info h2 {
    color: var(--Black, #101010);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.vacancy__sites {
    gap: 10px;
}

.vacancy__actions {
    gap: 20px;
}

.vacancy__buttons {
    gap: 10px;

    position: absolute;
    width: 100%;
    bottom: 0;
}

.vacancy-of-the-day__container {
    .vacancy__buttons {
        position: static;
        margin-top: auto;
    }
}
.notificationBlock{
    position: fixed;
    display: block;
    bottom: 5%;
    right: 2%;
    font-size: 16px;
    background-color: #f54500;
    color: aliceblue;
    padding: 15px;
    border-radius: 5px;
    opacity: 0;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.close-button_notification
{
    background: none;
    border: none;
    position: absolute;
    top: 2px;
    right: 0px;
    font-size: 12px;
}
.notificationBlock.show {
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width: 700px) {
    .vacancy__buttons {
        position: unset;
    } 
}

.vacancy__buttons a {
    cursor: pointer;
    margin: 0;
}

.vacancy-header__other {
    align-items: center;
}

.vacancy-header__other > * {
    color: var(--Grey, #B2B2B2);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.vacancy-header__other > *:not(:last-of-type) {
    border-right: 1px solid #B2B2B2;

}

.vacancy-header__other > *:not(:last-child) {
    padding: 0 30px;
}

.vacancy-item__button .button__toggle.enabled .button__condition {
    fill: #1C86FF;
}

.vacancy-item__button .button__toggle {
    transition: transform .2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vacancy-item__button .button__toggle.enabled {
    transform: rotate(180deg);
}

.vacancies__benefits .benefits__title {
    color: var(--Black, #101010);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 48px */
}

.benefits__list {
    margin-top: 40px;
    display: grid;
    gap: 35px 10px;
    grid-template-columns: repeat(3, 1fr);
}

.benefits__list .benefits__item {
    display: flex;
    flex-direction: column;
    gap: 35px;

    padding-bottom: 65px;
    border-bottom: 1px solid #101010;
}

.benefits__item h1 {
    color: var(--Black, #101010);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 48px */
}

.benefits__item p {
    color: var(--Black, #101010);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    margin: 0;
}

.main-video__button img {
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .vacancy__header {
        position: relative;
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }

    .vacancy-header__other span:first-of-type {
        padding-left: 0;
    }

    .vacancies__of-the-day h1 {
        font-size: 24px;
    }

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

    .vacancy__content {
        flex-direction: column;
        gap: 30px;
    }

    .vacancy__content .vacancy__row:last-of-type,
    .vacancy__content .vacancy__row:first-of-type,
    .vacancy-of-the-day__container .vacancy__content .vacancy__row:last-of-type {
        width: 100%;
    }

    .vacancy-item__button {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .vacancy__buttons {
        flex-direction: row;
    }

    .contact-us__left p {
        display: none;
    }

    .vacancies__benefits .benefits__title {
        font-size: 24px;
    }

    .benefits__item h1 {
        font-size: 32px;
    }

    .benefits__item p {
        font-size: 14px;
    }

    .benefits__list .benefits__item {
        padding-bottom: 84px;
        gap: 16px;
    }

    .main-video__button {
        width: 64px;
        height: 64px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        bottom: 16px;
        right: 16px;
    }

    .main-video__button img {
        width: 24px;
        height: 24px;
    }

    .vacancies__vacancy-item {
        padding: 10px 16px;
    }

    .vacancy__header {
        padding: 6px 0 16px 0;
    }

    .purchases__search {
        margin-top: 64px;
    }

}

@media screen and (max-width: 700px) {
    .vacancies__of-the-day {
        margin-top: 64px;
        max-width: unset;
        width: 100vw;

        padding: 16px;
    }

    .vacancy__buttons {
        flex-direction: column;
    }

    .vacancy-header__other {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }

    .vacancy-header__other span {
        border-right: none !important;
    }

    .vacancy-header__other * {
        padding: 0 !important;
    }

    .purchases-pagination__pages-list {
        gap: 16px;
    }

    .main__images-carousel .benefits__carousel-title-container {
        display: none;
    }

    .main__images-carousel .swiper-slide {
        height: 144px;
        border-radius: 5px;
        overflow: hidden;
    }

    .benefits__list .benefits__item {
        padding-bottom: 32px;
    }

    .benefits__item h1 {
        font-size: 24px;
    }

    .forms__cv .contact-us__left {
        width: 100%;
    }

    .benefits__carousel-title-container > h1 {
        font-size: 24px;
    }
}