.wrapper--vacancy .header__previous {
    display: block;
}

.vacancy-anketa {
    cursor: none;
}

.vacancy-list__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 21px;
    margin-bottom: 28px;
    border-bottom: 1px solid #8C8383;
    text-decoration: none;
    padding-right: 88px;
    position: relative;
}

.vacancy-list__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}


.vacancy-list__arr {
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    transform: translateY(-50%);
    height: 30px;
    width: 65px;
    cursor: pointer;
    z-index: 1;
}

.vacancy-list__arr:before {
      content: '';
    position: absolute;
    right: 0;
    width: calc(100% - 18px);
    height: 1px;
    background-color: #000000;
    top: 50%;
    transition: width 1s;
}

.vacancy-list__arr:after {
      content: '';
    left: calc(100% - 18px);
    width: 8px;
    height: 8px;
    position: absolute;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    transform: rotate(-45deg);
    top: calc(50% - 3px);
    transition: 1s;

}

.vacancy-list__arr:after {
    right: auto;
    left: calc(100% - 25px);
    transform: rotate(135deg);
}

.vacancy-list__arr:before {
    right: auto;
    left: 0;
}


.vacancy-list-item__num,
.vacancy-list-item__descr,
.vacancy-list-item__info,
.vacancy-list-item__tags {
    font-weight: 400;
}

.vacancy-list-item__num {
  width: 50px;
}

.vacancy-list-item__name {
  -webkit-box-flex: 1;
       -ms-flex: 1;
           flex: 1;
}


.vacancy-list-item__cont {
  width: 50%;
  padding-right: 88px;
}

.vacancy-list-item__title {
    display: -ms-flex;
  display: flex;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
/*  padding-right: 88px;*/
  transform: translateX(0px);
  transition: transform 1s, color 0.3s ease;
}

.vacancy-list-item__info {
    width: 50%; 
}

.vacancy-list-item__tags p {
    color: #848484;
    float: left;
    margin-bottom: 0.5em;
    margin-right: 0.5em;
}

.vacancy-list__item:hover {
    text-decoration: none !important;
}

.vacancy-list__item:hover .vacancy-list-item__title {
  transform: translateX(60px);
  color: #EC265B;
}


.vacancy-list__item:hover .vacancy-list__arr:before {
    width: 120%;
}

.vacancy-list__item:hover .vacancy-list__arr:after {
    left: calc(120% - 8px);
}

@media (max-width: 1500px) {
  .vacancy-list__item {
      padding-bottom: 10px;
      margin-bottom: 15px;
  }
}

@media (max-width: 991px) {

    .vacancy-list__item {
        padding-right: 70px;
    }

    .vacancy-list-item__cont,
    .vacancy-list-item__info {
      width: 100%;
      padding-right: 0;
    }

    .vacancy-list-item__num {
      width: auto;
      padding-right: 10px;
    }

    .vacancy-list-item__title.h4 {
      margin-bottom: 10px;
    }

    .vacancy-list__item:hover .vacancy-list-item__title {
      transform: translateX(0px);
    }

    .vacancy-list__arr {
      width: 50px;
    }

    .vacancy-list__item:hover .vacancy-list__arr:before {
        width: calc(100% - 18px);
    }

    .vacancy-list__item:hover .vacancy-list__arr:after {
        left: calc(100% - 25px);
    }
}

@media (max-width: 500px) {
  .vacancy-list__item {
    padding-right: 0;
    padding-bottom: 30px;
  }

  .vacancy-list__arr {
    right: auto;
    top: auto;
    left: 0;
    bottom: 0;
    height: 20px;
    width: 25%;
  }

}






a.vacancy-more__title {
    display: block;
    font-weight: normal;
    /*max-width: 880px;*/
    width: 63%;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.9em;
    line-height: 1.21;
    color: #000000;
    position: relative;
    padding-right: 200px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vacancy-more__title:hover {
	color: #EC265B;
    text-decoration: none !important;
}

.vacancy-more__arrow {
    position: absolute;
    top: calc(50% - 50px);
    right: 0;
    height: 100px;
    width: 82px;
    cursor: pointer;
    z-index: 1;
}

.vacancy-more__arrow:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000000;
    top: 50%;
    transition: width .3s;

    right: auto;
    left: 0;
}

.vacancy-more__arrow:after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    top: calc(50% - 3px);
    transition: .3s;

    right: auto;
    left: calc(100% - 8px);
    transform: rotate(135deg);
}

.vacancy-more__title:hover .vacancy-more__arrow:before {
    width: 120%;
    background-color: #EC265B;
}

.vacancy-more__title:hover .vacancy-more__arrow:after {
    left: calc(120% - 8px);
    border-color: #EC265B;
}

@media (max-width: 1229px) {
    a.vacancy-more__title {
        width: 100%;
        padding-right: 130px;
    }
}

@media (max-width: 767px) {
    a.vacancy-more__title {
        padding-right: 0px;
        padding-bottom: 40px;
    }

    .vacancy-more__arrow {
        height: 20px;
        top: auto;
        right: auto;
        left: 0;
        bottom: 0;
    }
}