#vacancy {
    overflow-x: hidden;
    top: 110px
}

#vacancy .container > h1 {
    border-bottom: 1px solid var(--grey-light);
    margin-top: 77px;
    padding-bottom: 55px;
    font-family: "Roboto Regular";
    color: var(--green-primary);
    font-size: 1.875em;
    text-transform: uppercase;
}

#vacancy h2 {
    font-size: 1.3em;
}

#vacancy #description {
    margin-top: 30px;
}
#vacancy #description > div{
    margin-top: 15px;
    font-family: "Roboto Regular";
    line-height: 1.5;
}

#vacancy #description > div ul {
    list-style-type: disc;
}

#vacancy #description > div li {
    list-style-position: inside;
}

#vacancy #requirements {
    margin-top: 30px;
    max-width: 350px;
}

#vacancy #requirements h2 {
    margin-bottom: 15px;
}

#vacancy #requirements > .flex-container {
    min-height: 26px;
    align-items: center;

    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#vacancy .requirement-title {
    font-family: "Roboto regular";
}

#vacancy .requirement-level-container {
    width: 100%;
    margin-left: auto;
    max-width: 120px;
}
#vacancy .requirement-level {
    flex-direction: row;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    min-width: 100px;
}
#vacancy .requirement-level-text {
    font-family: "Roboto Medium";
    font-style: normal;
    letter-spacing: -0.1px;
    font-size: 10px;
    color: rgb(51, 51, 51);
    line-height: 12px;
    text-transform: uppercase;
}
#vacancy .requirement-level-bar-container {
    background: transparent;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    height: 8px;
}

#vacancy .requirement-level-bar {
    height: 100%;
    border-radius: 100px;
    background: rgb(51, 51, 51);
    box-shadow: rgba(0, 0, 0, 0.25) 0px -5px 10px inset;
}

#vacancy #call-to-action {
    margin-top: 30px;
}

#vacancy .container-call-to-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

#vacancy .call-to-action-left {
    position: absolute;
    left: 0;
}

#vacancy .call-to-action-left > a {
    font-family: "Roboto Regular";
    color: var(--green-primary);
    text-decoration: underline;
    font-size: .9rem;
}

#vacancy .btn:disabled {
    background: lightgray;
    cursor: auto;
}

#vacancy .btn:disabled:hover {
    color: var(--green-primary)
}

@media screen and (max-width: 1199px) {
    #vacancy .container > h1 {
        font-size: 1.3rem;
    }
}