.popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    background: rgba(79,79,79,.4);
    z-index: 9999;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transition: opacity .3s ease;

    font-optical-sizing: auto;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 300;
}

@media (max-width: 600px) {
    .popup {
        font-size: 8px;
    }
}

.popup.is-ok .popup .popup-ok {
    display: block
}

.popup.is-open {
    opacity: 1;
    pointer-events: auto
}

.popup__wrap {
    display: block;
    background: #fefefe;
    width: 23em;
    padding: 2.5em 3em;
    position: relative;
    border-radius: 2em;
    box-shadow: 0 8px 16px 0 rgba(142,141,208,.12)
}

.popup__close {
    cursor: pointer;
    top: -0.15em;
    right: -2.9em;
    position: absolute;
    display: flex;
    align-items: center;
    transition: opacity .3s ease;

    height: 1.72em;
    width: 1.72em;
}

.popup__close .svg-icon use {
    fill: #717880
}

.popup__close:hover {
    opacity: .8
}

.vacancy_popup > div:not(:first-child):not(:last-child) {
    padding-bottom: 0.58em;
}

.vacancy_popup div:first-child:last-child {
    padding-bottom: 0.9em;
}

.vacancy_title {
    font-size: 1.4em;
    line-height: 1em;
    font-weight: 400;
}

.resume-button {
    display: flex;
    height: 3em;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #336fee;
    color: white;
    text-decoration: none;
    border-radius: 0.6em;
}

.resume-button:active {
    background-color: #003791;
    transform: scale(0.99);
    transition: background-color 0.1s ease;
}

.popup__close::before,
.popup__close::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.72em;
    height: 0.22em;
    background-color: white;
    transform-origin: center;
    transition: background-color 0.3s ease;
}

.popup__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.popup__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popup__close:hover::before,
.popup__close:hover::after {
    background-color: red;
}

.popup__close:active {
    transform: scale(0.80);
}

.perks_list {
    margin-top: 0.3em;
}

ul {
    padding-left: 1.75em;
}