* {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
}

.page_wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.header {
    position: relative;
    padding-top: 55px;
}

.header_image {
    height: 120px;
    width: 100%;
    background-color: #e5e5e5;
    overflow: hidden;
}

.header_logo {
    position: absolute;
    left: 55px;
    top: 10px;
    padding: 5px;
    background-color: #fff;
}

.logo {
    cursor: pointer;
    max-height: 85px;
}

.body_info {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main_content {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
}

.content {
    padding: 18px 40px 18px 40px;
}

.content_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 10px;
    border-top: 1px solid #ffdec2;
}

.content_body {

}

.left_side {
    width: 80%;
    flex: 1 0 auto;
    padding-right: 10px;
}

.right_side {
    width: 20%;
    flex: 1 0 auto;
    padding-left: 10px;
}

.job_info_wrapper {

}

h1.job_title {
    font-size: 18px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    color: #4a4a4a;
}

.share_links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.links_text {
    font-family: 'Roboto', Arial, sans-serif;
    color: #4a4a4a;
}

.btn a.apply {
    color: black;
    text-decoration: none;
}

.share_links .link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #9da9af;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    transition: background-color .2s ease-in-out;
    cursor: pointer;
}

.share_links .link:hover {
    background-color: #3f4e59;
}

.share_links .link svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.btn {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    padding: 10px 32px 10px;
    min-width: 112px;
    max-width: 100%;
    height: 40px;
    background-color: #ffa126;
    color: white;
    border-radius: 100px;
    line-height: 13px;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: none;
    cursor: pointer;
    border: none;
    transition: background .2s ease-in-out;
    outline: none;
}

.btn:hover {
    background-color: #f28900;
}

.address {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 0 20px;
}

.address_icon {
    width: 16px;
    height: 16px;
    padding-right: 4px;
}

.address_icon svg {
    width: 100%;
    height: 100%;
    fill: #c1c1c1;
}

.address_text {
    font-family: 'Roboto', Arial, sans-serif;
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

.description {

}

.description_title {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    color: #4a4a4a;
    font-size: 12px;
}

.description_text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    color: #4a4a4a;
    font-size: 12px;
    line-height: 18px;
}

.description_list {

}

.description_list_title {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    color: #4a4a4a;
    font-size: 12px;
    line-height: 18px;
}

ul.description_items {
    margin: 0;
    padding: 0;
}

ul.description_items li {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    color: #4a4a4a;
    font-size: 12px;
    line-height: 18px;
    list-style: none;
}

ul.description_items li span:first-child {
    padding-right: 15px;
}

.important_text {
    font-style: italic;
}

ul.iconed_list {
    padding: 0;
    margin: 0;
}

ul.iconed_list li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 13px;
}

.list_icon {
    padding-right: 5px;
}

.list_text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    color: #4a4a4a;
    font-size: 12px;
    line-height: 18px;
}

.map {
    width: 150px;
    height: 150px;
    border: 1px solid #ffa171;
}

.row {
    margin-bottom: 40px;
    width: 100%;
}


@media all and (max-width: 900px) {

}