body {
    touch-action: pan-x pan-y;
}
.centered {
    position: absolute;
    width: 50%;
    top: calc(50% - 24px);
    left: 50%;
    transform: translate(-50%, -50%);
}
.centered.master-form {
    width: 320px;
    margin-top: 20px;
    left: calc(50% - 160px);
    transform: translate(0, -50%);
    max-height: 100vw;
    overflow-y: hidden;
}
.centered.wide {
    width: calc(100% - 32px);
}
.button {
    display: inline-block;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    padding: 12px;
    margin: 8px 0;
    border-radius: 4px;
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    font-weight: 500;
    cursor: pointer;
}
.button:hover {
    border: 1px solid #aaa;
}
.button .brand-icon {
    height: 16px;
    margin-bottom: -4px;
}
.button.accent {
    background: var(--accent);
    border: none;
}
.button.accent.disabled, .button.accent.disabled:hover {
    cursor: default;
    background: #FDD83561;
    color: #ABABAB;
}
.button.accent:hover {
    background: var(--accent-hover);
}
.button.accent.danger {
    background: #f40;
    color: #fff;
    border: none;
}
.button.accent.danger:hover {
    background: #f62;
}
.button.gray {
    background: #eee;
    border: none;
}
.button.gray:hover {
    background: #ddd;
    border: none;
}
.button.right {
    float: right;
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 8px;
}
.button.topright {
    margin: 8px 20px;
    float: right;
    display: inline-block;
    width: 160px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 28px;
    margin-right: 32px;
}
.comment {
    color: var(--text-light);
    font-size: 14px;
}
.comment.strong {
    color: var(--stub);
    font-size: 12px;
}
.comment.strong img {
    height: 14px;
    margin-bottom: -2px;
}
.inline-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}
.inline-link.button-text {
    font-size: 12px;
    display: block;
    padding: 12px;
    width: 100%;
}
.inline-link.button-text:hover {
    color: #444;
}
.inline-link.accent {
    font-weight: 300;
    color: #00667b;
}
.title h1 {
    font-size: 48px;
}
.title h2 {
    line-height: 32px;
}
.input-label {
    font-weight: 700;
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 1px;
}
.content-fit {
    display: inline-block;
    padding: 16px 32px 16px 0;
}
.content-fit.wide {
    width: 320px;
}
.content-fit.very-wide {
    /*width: calc(100% - 480px)*/
    width: 100%;
}
.content-fit p , .content-fit span {
    word-break: break-word;
    margin-top: 0;
    font-weight: 400;
}
.content-separator {
    height: 1px;
    width: 100%;
    border: none;
    background: #e7e7e7;
}
.hidden {
    display: none;
}
.sidebar {
    background: #000;
    width: 360px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
}
.sidebar .scrolling {
    margin-top: 8px; /* why tho */
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 68px);
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sidebar .scrolling::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.sidebar .category {
    color: #fff;
    position: relative;
    padding: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}
.sidebar .category .title {
    padding: 4px;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
}
.sidebar .category .subtitle {
    font-size: 12px;
    padding: 8px 4px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1px;
}
.sidebar .category .event {
    background: #141414;
    margin: 8px 0;
    border-radius: 4px;
    padding: 12px;
    position: relative;
    color: #aaa;
    cursor: pointer;
}
.sidebar .category .event.selected, .sidebar .category .event:hover {
    background: #262626;
    color: #fff;
}
.sidebar .category .event .title {
    font-size: 16px;
    padding-bottom: 12px;
}
.sidebar .category .event.post-card .title {
    margin-bottom: 24px;
    width: calc(100% - 113px);
    height: 42px;
    overflow: hidden;
}
.sidebar .category .event .date {
    position: absolute;
    bottom: 17px;
    right: 12px;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
}
.sidebar .category .event.post-card img {
    position: absolute;
    width: 82px;
    height: 82px;
    object-fit: cover;
    right: 12px;
    border-radius: 6px;
}
.sidebar .category .event.post-card .date {
    left: 17px;
    right: unset;
}
.sidebar .category .event .status {
    color: #fff;
    font-weight: 400;
    font-size: 13px;
}
.sidebar .category .event .status span {
    height: 24px;
    width: 24px;
    border-radius: 16px;
    font-size: 10px;
    line-height: 18px;
    text-align: center;
    color: #000;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}
.sidebar .category .event .status img {
    margin-top: 4px;
    height: 16px;
}
.sidebar .category .event .status img.small {
    margin-top: 5px;
    height: 14px;
}
.expiry-status {
    background: #DE9F08;
}
.ended-status {
    background: #7AB700;
}
.archive-status {
    background: #000;
}
.active-status {
    background: #787878;
}
.pending-status {
    background: #FDD835;
}
.rejected-status {
    background: #B00020;
}
.sidebar .category .event .pending-interactions {
    font-size: 10px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    background: #FDD835;
    color: #000;
    right: 16px;
    text-align: center;
    line-height: 20px;
    border-radius: 10px;
    font-weight: 700;
}
.sidebar .category .event.selected .pending-interactions {
    background: #FDD835;
    color: #000;
}
.sidebar .category .event .expires-days {
    font-size: 10px;
    width: 40px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    background: #222;
    color: #888;
    right: 40px;
    text-align: center;
    line-height: 20px;
    border-radius: 10px;
}
.sidebar .category .event.selected .expires-days {
    background: #111;
    color: var(--accent);
}
input, select, textarea {
    background: #f6f6f6;
    border: 1px solid #e7e7e7;
    border-radius: 2px;
    padding: 8px;
    margin: 8px 0;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    -webkit-appearance: none;
}
input[type=range] {
    background: unset;
    border: unset !important;
    border-radius: unset;
    padding: unset;
    margin: unset;
    display: unset;
    width: unset;
    font-size: unset;
    background: linear-gradient(to bottom, #fff 45%, #ccc 50%, #fff 55%) !important;
    height: 16px;
}
input, textarea {
    cursor: text;
}
select {
    cursor: pointer;
}
input:not(:placeholder-shown), textarea:not(:placeholder-shown) {
    background: #fff;
}
input.dropdown, select.dropdown {
    background: url("/static/img/ui/dropdown.svg") #f7f7f7 no-repeat calc(100% - 10px);
    background-size: 12px;
    padding-right: 24px;
    cursor: pointer;
}
input.calendar {
    background: url("/static/img/ui/calendar.svg") #f7f7f7 no-repeat calc(100% - 10px);
    background-size: 12px;
    cursor: pointer;
}
input:focus, textarea:focus {
    border: 1px solid var(--accent);
    background: #fff;
}
input.dropdown:focus, input.dropdown:not(:placeholder-shown) {
    background: url("/static/img/ui/dropdown.svg") #fff no-repeat calc(100% - 10px);
    background-size: 12px;
}
input.calendar:focus, input.calendar:not(:placeholder-shown) {
    background: url("/static/img/ui/calendar.svg") #f7f7f7 no-repeat calc(100% - 10px);
    background-size: 12px;
}
input.link, select.link {
    background: url("/static/img/ui/hyperlink.svg") #fff no-repeat 10px;
    padding-left: 36px;
}
input.dropdown.filter, select.dropdown.filter {
    background: url("/static/img/ui/dropdown.svg") #fff no-repeat calc(100% - 10px);
    background-size: 12px;
}
.event-column {
    width: 320px;
    position: fixed;
    top: 64px;
    left: 360px;
    bottom: 0;
    border-right: 1px solid #e7e7e7;
    background: #f6f6f6;
    z-index: 1;
    display: none;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: left 200ms ease-in-out;
}
.event-column::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.event-title {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding: 24px 24px 0 16px;
    word-break: break-all;
}
.event-column .content {
    padding: 8px 16px;
}
.event-options {
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 8px;
}
.event-options.inline {
    position: inherit;
    display: inline-block;
    line-height: 28px;
}
.event-options img {
    width: 24px;
    height: 24px;
}
.no-events-body {
    display: none;
    position: fixed;
    top: 64px;
    left: 360px;
    right: 0;
    bottom: 0;
    transition: top 500ms ease-in-out;
}
.no-events-body.lenta-header {
    top: 128px;
}
.no-events-body .title-container {
    position: fixed;
    top: 64px;
    background: #f6f6f6;
    height: 180px;
    width: 100vw;
    border-bottom: 1px solid #eee;
    z-index: 2;
    transition: top 500ms ease-in-out;
}
.no-events-body .title-container .title {
    margin: 32px 60px 0;
    font-size: 30px;
    font-weight: 500;
}
.no-events-body .title-container .subtitle {
    margin-left: 60px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    max-height: 56px;
    overflow: hidden;
}
.no-events-body .title-container img {
    width: 24px;
    height: 24px;
    margin: 2px;
    vertical-align: top;
    border-radius: 12px;
}
.no-events-body .details-container {
    margin-top: 180px;
    text-align: left;
    padding: 20px;
    background: white;
    width: calc(100% - 64px);
}
.no-events-body .details-container img.position-image {
    right: 20px;
    width: 100%;
    max-width: none;
}
.full-message {
    text-align: center;
}
.full-message img.position-image {
    width: 80%;
    max-width: 240px;
}
.full-message .title {
    font-size: 28px;
    font-weight: 500;
    padding: 16px 0;
}
.detail-column {
    background: #fff;
    position: fixed;
    display: none;
    top: 64px;
    left: 680px;
    right: 0;
    bottom: 0;
}
.detail-column, .event-column {
    transition: margin-top 500ms ease-in-out;
}
.detail-column.lenta-header, .event-column.lenta-header {
    margin-top: 64px;
}
.no-events-body.lenta-header .title-container {
    top: 128px;
}
.candidate-search-container {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 12px;
    position: relative;
}
.candidate-search-container:focus-within {
    border: 1px solid var(--accent)
}
.filter-button {
    background: #e7e7e7;
    display: inline-block;
    padding: 14px 13px;
    font-weight: 700;
    width: 64px;
    letter-spacing: 1px;
    border-radius: 3px 0 0 3px;
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.filter-input {
    display: inline-block;
    width: calc(100% - 94px);
    background: url("/static/img/ui/search.svg") #fff no-repeat calc(100% - 8px);
    border: none;
    margin: 0;
    padding: 9px 10px;
}
.filter-input::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #797979;
}
.filter-input:focus, .filter-input:not(:placeholder-shown) {
    border: none;
    background: url("/static/img/ui/search.svg") #fff no-repeat calc(100% - 8px);
}
.candidates-container .category {
    position: relative;
    background: #e7e7e7;
    padding: 8px 8px 8px 16px;
    display: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}
.candidates-container .category .collapser {
    position: absolute;
    right: 8px;
    top: 4px;
    cursor: pointer;
}
.candidates-container .candidate {
    border-bottom: 1px solid #e7e7e7;
    width: calc(100% - 16px);
    padding: 16px 8px;
    position: relative;
    height: 40px;
    cursor: pointer;
    background: #fff;
}
.candidates-container .candidate.selected {
    border-left: 4px solid var(--accent);
    padding-left: 4px;
    background: #F6F6F6;
}
.candidates-container #rejected_candidates .candidate {
    opacity: 0.5;
}
.candidates-container .candidate.unread .title {
    font-weight: 700;
}
.candidates-container .candidate:hover {
    background: #ebebeb;
}
.candidates-container .candidate img {
    height: 40px;
    border-radius: 20px;
    float: left;
}
.candidates-container .candidate .title {
    padding: 4px 0 0 52px;
    text-align: left;
    white-space: nowrap;
    font-weight: 400;
    font-size: 16px;
}
.candidates-container .candidate .subtitle {
    color: #797979;
    padding: 0 48px 0 12px;
    text-align: left;
    overflow-x: hidden;
    overflow-y: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.candidates-container .candidate .time {
    position: absolute;
    right: 16px;
    top: 24px;
    color: #888;
    font-size: 12px;
}
.candidates-container .candidate .fav {
    position: absolute;
    display: none;
    right: 16px;
    top: 24px;
    width: 20px;
    text-align: center;
    color: #888;
    font-size: 16px;
}
.candidates-container .candidate .fav:hover {
    color: #00667b;
}
.candidates-container .candidate:hover .time, .candidates-container .candidate .fav.selected + .time {
    display: none;
}
.candidates-container .candidate:hover .fav, .candidates-container .candidate .fav.selected {
    display: block;
}
.candidates-container .candidate .fav .fav-selected {
    display: none;
}
.candidates-container .candidate .fav.selected .fav-selected {
    display: inline;
}
.candidates-container .candidate .fav.selected .fav-unselected {
    display: none;
}
.candidates-container .candidate .fav img {
    height: 24px;
}
.candidate-summary {
    position: absolute;
    top: 0;
    width: calc(100% - 48px);
    height: 145px;
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
.candidate-summary > img {
    float: left;
    margin: 4px 16px 4px 12px;
    border-radius: 50px;
    width: 100px;
    height: 100px;
}
.candidate-summary .title {
    padding: 0 8px;
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.candidate-summary .subtitle {
    color: #888;
    font-size: 14px;
    padding: 4px 8px 8px;
}
.candidate-summary .subtitle i {
    color: #ccc;
}
.candidate-summary .ding-tabs {
    display: flex;
    position: absolute;
    bottom: 0;
}
.candidate-summary .ding-tabs .ding-tab {
    font-size: 14px;
    line-height: 28px;
    color: #171717;
    font-weight: 500;
    cursor: pointer;
    width: 140px;
    text-align: center;
    padding: 4px;
    transition: border-bottom 200ms ease-in-out;
    border-bottom: 4px solid transparent;
 }
.candidate-summary .ding-tabs .ding-tab.active {
    font-size: 14px;
    line-height: 28px;
    color: #171717;
    font-weight: 500;
    border-bottom: 4px solid #FDD835;
}
.candidate-data {
    overflow: hidden;
    padding-top: 8px;
}
.candidate-data .candidate-data-line {
    padding: 4px 0;
}
.candidate-data .candidate-data-line.link {
    font-weight: 400;
    font-style: italic;
    color: #979797;
}
.candidate-data .candidate-data-line.link span {
    line-height: 22px;
    display: inline;
    position: absolute;
    margin-left: 6px;
    cursor: pointer;
}
.candidate-data .candidate-data-line #candidate_data_email,
.candidate-data .candidate-data-line #candidate_data_phone {
    cursor: pointer;
}
.candidate-data .candidate-data-line.hidden {
    display: none;
}
.candidate-data .candidate-data-line.link .fas {
    color: #196080;
}
.candidate-summary .options {
    float: right;
    width: 270px;
    text-align: center;
    margin-right: 0;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
    padding: 28px 32px 0 0;
}
.candidate-summary .options .desktop-action-button {
    display: flex;
    float: right;
}
.candidate-summary .options .desktop-action-button .desktop-reduced-size {
    display: none !important;
}
.candidate-data.candidate-header {
    max-width: calc(100% - 410px)
}
@media screen and (max-width: 1050px) {
    .candidate-summary .options .desktop-action-button .desktop-reduced-size {
        display: block !important;
    }
    .candidate-summary .options .desktop-action-button .desktop-full-size {
        display: none !important;
    }
    .candidate-data.candidate-header {
        max-width: 100%;
    }
}
.candidate-summary .options .desktop-action-button .button {
    padding: 2px;
    width: 96px;
    line-height: 26px;
    margin: 0;
    font-weight: 700;
}
.candidate-summary .options .desktop-action-button .button.grey {
    background: #F0F0EE;
    transition: background 200ms ease-out;
}
.candidate-summary .options .desktop-action-button .button.grey:hover {
    background: #e3e3e2;
}
.candidate-summary .options .desktop-action-button .button:last-of-type {
    margin-left: 12px;
}
.candidate-summary .options .desktop-action-button .button.img-btn {
    line-height: 13px;
    width: 42px;
    margin-left: 12px;
}
.candidate-summary .options .desktop-action-button .button img {
    height: 24px;
    width: 24px;
}
.candidate-biography {
    text-align: left;
    padding: 8px;
    position: absolute;
    top: 194px;
    height: calc(100% - 194px);
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}
.candidate-biography::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.candidate-biography .segment {
    padding: 24px;
}
.candidate-biography .segment .label {
    display: inline-block;
    width: 120px;
    vertical-align: top;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
}
.candidate-biography .segment .content {
    display: inline-block;
    width: calc(100% - 144px);
    vertical-align: top;
    font-size: 16px;
    line-height: 24px;
    word-break: break-word;
}
.candidate-biography .segment .content .highlight {
    font-weight: 500;
}
.candidate-biography .segment .content .downplay {
    color: #888;
}
.candidate-biography .segment .content .interest-tag {
    display: inline-block;
    background: #f0f0f0;
    margin: 0 4px 8px;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
}
.candidate-biography .segment .content .verified {
    background: var(--accent);
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 12px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    vertical-align: middle;
    margin-left: 10px;
}
.candidate-biography .segment .content .verified .tooltip {
    visibility: hidden;
    width: 160px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    font-size: 12px;
    line-height: 16px;
    top: -10px;
    left: 24px;
}
.candidate-biography .segment .content .verified .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}
.candidate-biography .segment .content .verified:hover .tooltip {
    visibility: visible;
}
.candidate-biography .segment .content .job-description {
    padding-top: 10px;
}
.candidate-biography .segment .content .history-row:not(:last-child) {
    padding-bottom: 32px;
}
.history-row {
    word-break: break-word;
}
.permalink-container {
    padding-right: 32px;
    position: relative;
}
.event-preview-button {
    position: absolute;
    right: -2px;
    top: 6px;
    cursor: pointer;
}
.ui-datepicker {
    width: 230px;
    padding: 4px;
    border: 1px solid var(--accent) !important;
    border-radius: 0 0 2px 2px;
    margin-top: -1px;
}
.candidate-response-dialog .ui-datepicker {
    width: calc(100% - 12px);
    border: none !important;
}
.ui-datepicker-header {
    background: transparent;
    border: none;
}
.ui-datepicker-prev, .ui-datepicker-next {
    background: transparent;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    top: 2px !important;
}
.ui-datepicker-prev {
    left: 2px !important;
}
.ui-datepicker-next {
    right: 2px !important;
}
.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background: transparent;
    border: none;
}
.ui-datepicker-title {
    font-size: 14px;
    font-weight: 300;
    color: var(--stub );
}
.ui-state-default {
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    padding: 0 !important;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 20px;
    color: var(--stub) !important;
}
.ui-state-disabled {
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    padding: 0 !important;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
}
.ui-state-disabled span {
    display: inline-block !important;
}
.ui-state-default.ui-state-highlight {
    font-weight: 500;
    border: 1px solid var(--accent) !important;
}
.ui-state-default.ui-state-active{
    background: var(--accent) !important;
}
.ui-datepicker-calendar {
    font-size: 12px !important;
    table-layout: fixed;
}
.ui-datepicker-calendar a {
    margin: auto;
}
.ui-datepicker .ui-state-active {
    padding: 0 !important;
    background: transparent !important;
    color: inherit !important;
    border: none !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}
.content-container {
    position: absolute;
    left: 0;
    top: 194px;
    width: 100%;
    height: calc(100% - 242px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.message-container {
    position: relative;
    padding: 16px;
}
.message-container.self {
    text-align: right;
}
.message-container.other {
    text-align: left;
    padding-left: 48px;
}
.message-container img {
    position: absolute;
    bottom: 20px;
    left: 8px;
    border: 1px solid #eee;
    border-radius: 20px;
    width: 32px;
    height: 32px;
}
.message-container .author {
    position: absolute;
    top: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}
.message-container.self .author {
    right: 24px;
}
.message-container.other .author {
    left: 56px;
}
.message-container .subtitle {
    margin-left: 48px;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}
.message-container .timestamp {
    position: absolute;
    color: #777;
    font-size: 12px;
}
.message-container.self .timestamp {
    right: 40px;
    top: 0;
}
.message-container.other .timestamp {
    right: calc(100% - 460px);
    top: 42px;
}
.message-container .message {
    position: relative;
    display: inline-block;
    padding: 10px 50px 10px 10px;
    margin: 1px;
    border-radius: 10px;
    text-align: left;
    max-width: calc(100vw - 92px);
    word-break: break-word;
}
.message-container.self .message {
    margin-left: calc(100% - 500px);
    background: var(--accent);
}
.message-container.other .message {
    background: #f0f0f0;
    margin-right: calc(100% - 500px);
}
.message-container .message .message-timestamp {
    position: absolute;
    bottom: 4px;
    right: 4px;
    font-size: 12px;
    color: var(--stub);
}
.message-container.other .message .message-timestamp {
    color: var(--text-light);
}
.response-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    border-top: 1px solid #eee;
}
.chat-ui-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin: 8px;
}
.conversation-archived-message {
    height: 32px;
    line-height: 32px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}
.expiry-error {
    border-left: 4px solid #d00;
}
.send-button {
    position: absolute;
    text-align: center;
    right: 8px;
    top: 8px;
    height: 32px;
    width: 80px;
    line-height: 32px;
    border-radius: 4px;
    background: var(--accent);
    background-size: 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}
.send-button img {
    width: unset;
    height: unset;
}
.message-input {
    border: none;
    background: #fff;
    width: calc(100% - 96px);
    font-size: 16px;
    padding: 6px 0 6px 16px;
    resize: none;
}
.message-input:focus {
    border: none;
}
@media screen and (max-width: 800px) {
    .message-container.other .message {
        margin-right: 0;
    }
    .messages-root {
        width: calc(50vw - 20px);
    }
    .conversation-container {
        left: calc(50vw - 20px);
        width: calc(50vw + 20px);
    }
    .desktop-only {
        display: none;
    }
    .message-container.other .timestamp {
        display: none;
    }
}
@media screen and (max-width: 640px) {
    .messages-root {
        width: 100vw;
    }
    .conversation-container {
        left: 0;
        width: 100vw;
    }
    .conversation-header {
        height: 80px;
    }
    .conversation-header .back-button {
        display: block;
    }
    .messages-root.detail-focused {
        left: -100vw;
    }
    .conversation-header img {
        width: 32px;
        height: 32px;
        padding: 4px;
        border-radius: 20px;
        top: 20px;
        left: 50px;
    }
    .conversation-header .title {
        left: 100px;
        top: 24px;
        font-size: 16px;
        width: calc(100% - 110px);
    }
    .conversation-header .subtitle {
        left: 100px;
        top: 42px;
        font-size: 16px;
        width: calc(100% - 148px);
    }
    .conversation-header .label, .conversation-header .application-deadline {
        display: none;
    }
}
.event-preview .content-container {
    top: 0;
    height: calc(100% - 32px) !important;
    padding: 32px 32px 32px 0;
}
.event-preview .content {
    width: calc(100% - 64px);
    text-align: left;
    position: relative;
}
.event-preview .info-points {
    max-width: calc(100% - 20px);
}
.event-preview .info-point {
    vertical-align: top;
    display: inline-block;
    padding: 16px;
    width: 160px;
}
.event-preview .info-point .label {
    font-weight: 500;
    font-size: 12px;
}
.event-preview .info-point .value {
    padding-top: 8px;
}
.event-preview .welcome-message-container {
    width: 320px;
}
.event-preview .welcome-message {
    width: 320px;
    text-align: left;
}
.event-preview .creator-avatar {
    position: relative;
}
.event-preview .creator-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.event-preview .creator-avatar .name {
    font-weight: 500;
    padding: 2px 48px 0;
}
.event-preview .creator-avatar .employer {
    font-size: 14px;
    color: #555;
    padding: 0 48px;
}
.event-preview .welcome-message .message-container {
    margin-top: 16px;
    background: #f6f6f6;
    border-radius: 18px 18px 6px 6px;
    padding: 0;
}
.event-preview .message-container .message {
    padding: 16px;
}
.event-preview .welcome-message .button {
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    margin: 0;
    width: calc(100% - 24px);
    border-radius: 0 0 6px 6px;
}
.event-preview .button img {
    height: 22px;
    vertical-align: middle;
    position: unset;
    bottom: unset;
    left: unset;
    border: none;
    border-radius: unset;
    width: unset;
}
.event-preview .position-image {
    width: 100%;
    max-width: unset;
}
.event-preview .button.inline {
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    margin: 24px 0;
    width: 320px;
    border-radius: 6px;
}
.event-preview .video-container {
    padding-bottom: 56.25%;
    position: relative;
    margin-bottom: 32px;
}
.event-preview .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.event-preview .content table td {
    vertical-align: top;
}
.event-preview .info-point.large {
    width: unset;
}
.mobile-header-2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #fff;
    box-shadow: 0 0 4px #0003;
    z-index: 5;
}
.mobile-header-2 .logo {
    position: absolute;
    left: calc(50vw - 45px);
    padding: 8px 0;
    margin: 0;
    width: 100px;
    height: unset;
}
.mobile-header-2 .filter-button {
    position: absolute;
    right: 8px;
    top: 16px;
    width: 100px;
    text-align: center;
    height: 32px;
    line-height: 32px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
}
.responsive {
    display: none;
}
.sidebar .button.accent.right .desktop {
    display: inline;
    padding: 6px;
    font-weight: 700;
}
.mobile-options {
    display: none;
    background: #fff;
}
.mobile-options .large-mobile-only {
    display: inline;
}
.back-button {
    display: inline-block;
    position: relative;
    font-size: 32px;
    height: 32px;
    color: #171717;
    padding: 0;
    margin: 8px 12px;
    text-align: center;
    cursor: pointer;
}
.back-button img {
    height: 24px;
}
.underlink {
    display: inline;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    color: #196080;
}
.underlink:hover {
    text-decoration: underline;
}
a.reference {
    color: #196080;
    text-decoration: none;
    font-weight: 300;
    cursor: pointer;
}
a.reference .favicon {
    display: inline-block;
    height: 16px;
    margin-bottom: -2px;
    margin-right: 4px;
}
.gallery {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery-image, .image-spacer {
    flex: 1 0 80px;
    max-width: 160px;
    border: 2px solid #fff;
    position: relative;
}
.gallery-image {
    cursor: pointer;
}
.gallery-image:before, .image-spacer:before {
    content:'';
    float:left;
}
.gallery-image:before {
    padding-top:100%;
}
.gallery-image img {
    width: 100%;
}
.gallery-image .preview {
    width: 100%;
    height: calc(100% - 8px);
    /* workaround for invalid flex height */
    overflow: hidden;
}
.gallery-image .preview img {
    transition: transform 500ms ease-out;
}
.gallery-image:hover .preview img {
    transform: scale(1.05);
}
.gallery-overlay {
    z-index: 20;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #0007;
    text-align: center;
    display: none;
}
.gallery-overlay .viewer {
    width: 100vw;
    position: absolute;
    top: 50vh;
    transform: translateY(-50%);
}
.gallery-overlay .viewer img {
    max-width: calc(100vw - 200px);
    max-height: calc(100vh - 80px);
}
.gallery-overlay .overlay-button, .gallery-overlay .image-container {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    padding: 8px;
    position: relative;
}
.gallery-overlay .image-container .times-delete {
    position: absolute;
    right: -10px;
    padding: 4px;
    line-height: 16px;
    z-index: 10;
    cursor: pointer;
    left: -12px;
    top: -12px;
    height: 32px;
    width: 32px;
    border-radius: 100px;
    background: #ccc;
    display: block;
    transition: background 200ms;
}
.gallery-overlay .image-container .times-delete img{
    width: 100%;
}
.gallery-overlay .image-container .times-delete:hover {
    background: #aeaeae;
}
.fullsize-image-loading {
    color: #fff;
}
.file {
    width: calc(100% - 128px);
    max-width: 480px;
    min-height: 70px;
    background: #f0f0f0;
    margin-bottom: 8px;
    padding: 8px 8px 8px 120px;
    position: relative;
    vertical-align: top;
    cursor: pointer;
    border-radius: 4px;
}
.file:hover {
    background: #e0e0e0;
}
.file .preview {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100px;
    height: calc(100% - 16px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: #ccc;
    color: #f7f7f7;
    font-weight: 700;
    border-radius: 6px;
}
.file .filename {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 4px;
}
.file .subtitle {
    font-size: 14px;
    line-height: 18px;
}
.mobile-bottom-spacing {
    display: none;
}
.error-label {
    font-size: 12px;
    color: #f40;
    display: block;
    margin: -4px 8px 4px;
}
@media screen and (min-width: 801px) {
    .responsive {
        display: none !important;
    }
}
@media screen and (max-width: 1279px) {
    .lenta-package {
        left: 0;
        width: 100%;
    }
    .no-events-body {
        left: 0;
    }

    .content-fit.wide, .content-fit.wide, .content-fit.very-wide {
        width: 100% !important;
    }

    .gallery {
        display: inline-flex !important;
    }
}
@media screen and (max-width: 800px) {
    .no-events-body {
        left: 0;
    }
    .content-fit.wide, .content-fit.wide, .content-fit.very-wide {
        width: 100% !important;
    }
}
.sidebar .sidebar-tablet {
    display: none;
}
.sidebar.away-hide .sidebar-tablet .sidebar-arrow {
    transform: rotate(180deg);
}
.sidebar .sidebar-tablet .sidebar-arrow {
    position: absolute;
    top: 44px;
    height: 22px;
    width: 22px;
    left: 11px;
    transition: transform 200ms ease-in-out;
}
.header-logo-tablet {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 2px;
    display: none;
    transition: opacity 300ms ease-in-out;
}
.header-logo-tablet.away-hide {
    opacity: 1;
}
.mobile-only-dialog {
    display: none;
}
@media screen and (max-width: 1279px) {
    .header-logo-tablet {
        display: block;
    }
    .sidebar {
        transition: left 200ms ease-in-out;
    }
    .sidebar .scrolling {
        margin-top: 4px; /* why tho */
        height: calc(100vh - 64px);
    }
    .sidebar .button.accent.right {
        background: transparent;
        color: var(--accent);
        font-size: 32px;
    }
    .sidebar .button.accent.right:hover {
        background: transparent;
        color: var(--accent-hover);
    }
    .sidebar .button.accent.right .desktop {
        display: none;
    }
    .event-column {
        left: 0;
    }
    .sidebar.away-hide {
        left: -360px;
    }
    .event-column.away-hide {
        left: 0;
    }
    .sidebar .sidebar-tablet {
        display: block;
        position: absolute;
        left: 344px;
        width: 32px;
        height: 100px;
        top: calc(50vh - 50px);
    }
    .detail-column {
        left: 320px;
        width: calc(100vw - 320px);
    }
}
@media screen and (max-width: 800px) {
    .header-logo-tablet {
        display: none;
    }
    .sidebar.away-hide {
        left: 0;
    }
    .sidebar .sidebar-tablet {
        display: none;
    }
    .detail-column {
        left: 0;
        width: 100vw;
    }
    .responsive {
        left: 0;
        transition: left 500ms;
        z-index: 2;
    }
    .responsive.left {
        left: -50px;
    }
    .responsive.right {
        left: 50px;
    }
    .responsive.depth-0 {
        display: inline-block;
        position: absolute;
    }
    .responsive.depth-0 .logo {
        padding-top: 2px;
    }
    .responsive.depth-1 {
        position: absolute;
        text-align: left;
        display: none;
    }
    .responsive.depth-1 .title {
        display: inline-block;
        white-space: nowrap;
        overflow-x: hidden;
        text-overflow: ellipsis;
        font-size: 20px;
        font-weight: 500;
        padding: 0 0 8px;
        height: 32px;
        vertical-align: middle;
        margin: 0;
        width: calc(100vw - 98px);
    }
    .responsive.depth-2 {
        text-align: left;
        display: none;
        position: absolute !important;
        width: 100%;
        border-bottom: 1px solid #E2E2E2;
        padding-bottom: 4px;
    }
    .responsive.depth-2 > img {
        width: 32px;
        height: 32px;
        border-radius: 20px;
        display: inline-block;
        margin: -4px 8px -4px 0;
    }
    .responsive.depth-2 .title {
        display: inline-block;
        white-space: nowrap;
        overflow-x: hidden;
        text-overflow: ellipsis;
        font-size: 20px;
        font-weight: 500;
        padding: 0 0 8px;
        height: 32px;
        vertical-align: middle;
        margin: 0;
        width: calc(100vw - 100px);
        cursor: pointer;
        text-align: center;
    }
    .mobile-only-dialog {
        display: flex;
        border-bottom: 1px solid #ECECEC;
        padding-bottom: 24px;
        margin-left: -8px;
        width: calc(100% + 16px);
    }
    .mobile-only-dialog .subtitle {
        flex: 1;
        padding-top: 28px;
        padding-left: 4px;
    }
    .mobile-only-dialog .subtitle span {
        line-height: 22px;
        display: inline;
        position: absolute;
        margin-left: 6px;
        cursor: pointer;
        font-weight: 400;
        font-style: italic;
        color: #979797;
    }
    .mobile-only-dialog .student-img {
        width: 70px;
        height: 70px;
        border-radius: 100px;
        margin: 16px 16px 0;
    }
    .mobile-cv-view {
        position: absolute;
        top: -2px;
        right: 24px;
    }
    .mobile-cv-view img {
        padding: 12px;
        cursor: pointer;
        height: 32px;
        width: 32px;
    }
    .mobile-header-2 {
        display: block;
    }
    /*.event-column.away {*/
    /*    left: calc(-100vw - 1px);*/
    /*}*/
    .candidate-search-container .filter-button {
        position: absolute;
        right: 0;
        border-radius: 0 3px 3px 0;
        /*height: 12px;*/ /* what */
    }
    .event-column .event-title {
        display: none;
    }
    .mobile-event-options {
        display: inline-block;
        cursor: pointer;
    }
    .mobile-event-options.inline {
        position: inherit;
        display: inline-block;
        line-height: 28px;
    }
    .mobile-event-options img {
        width: 24px;
        height: 24px;
    }
    .event-column.fixed {
        padding-top: 64px;
    }
    .event-column.fixed .mobile-keep-in-view {
        position: fixed;
        top: 64px;
        left: 0;
        width: calc(100vw - 32px);
        background: #f6f6f6;
        z-index: 4;
        border-bottom: 1px solid #e2e2e2;
        transition: left 400ms;
    }
    .event-column.fixed.away .mobile-keep-in-view {
        left: calc(-100vw - 1px);
    }
    .candidate-summary {
        display: none !important;
    }
    .candidate-biography {
        top: 0;
        height: calc(100% - 16px);
        width: calc(100% - 16px);
    }
    .conversation-archived-message {
        width: 100vw;
        line-height: 16px;
        display: table-cell;
        vertical-align: middle;
    }
    .content-container {
        top: 0;
        height: calc(100% - 49px);
    }
    .mobile-options {
        position: absolute;
        right: 8px;
        top: 4px;
        display: block;
        padding: 0;
        height: 48px;
        border-bottom: 1px solid #e2e2e2;
    }
    .mobile-options > div {
        margin: 0 8px;
        display: inline-block !important;
        width: unset !important;
    }
    .message-input, .message-input:focus, .message-input:not(:placeholder-shown) {
        margin-left: 12px;
        background: #f0f0f0;
        border-radius: 20px;
        width: calc(100% - 60px);
    }
    /*.message-input.extra-options:placeholder-shown {*/
    /*    width: calc(100% - 372px);*/
    /*}*/
    .message-input.extra-options.shown_buttons {
        width: calc(100% - 372px);
    }
    .send-message-label {
        display: none;
    }
    .send-button {
        width: 32px;
        border-radius: 20px;
    }
    .send-button img {
        position: absolute;
        width: 16px;
        height: 16px;
        top: 8px;
        left: 10px;
    }
    .filter-mobile-popup {
        height: calc(100vh - 64px);
    }
    .candidates-container {
        min-height: calc(100vh - 130px);
    }
    @supports (-webkit-overflow-scrolling: touch) {
        .candidates-container {
            min-height: calc(100vh - 206px);
        }
    }
}


@media screen and (max-width: 800px) {
    .sidebar.away {
         left: -100vw;
    }
    .sidebar {
        width: 100vw;
        transition: left 400ms;
    }
    .event-column {
        width: 100vw;
        left: 0;
        transition: left 400ms;
    }
    .event-column.away {
        left: calc(-100vw - 1px);
    }
}


@media screen and (max-width: 640px) {
    .candidate-biography .segment .label, .candidate-biography .segment .content {
        display: inline-block;
        width: calc(100% - 12px);
    }
}
@media screen and (max-width: 520px) {
    .mobile-options .large-mobile-only {
        display: none;
    }
    /*.message-input.extra-options:placeholder-shown {*/
    /*    width: calc(100% - 200px);*/
    /*}*/
    .message-input.extra-options.shown_buttons {
        width: calc(100% - 200px);
    }
}
#competition_body {
    overflow-y: scroll;
}
#competition_body .title-container {
    width: calc(100vw - 360px);
}
#competition_body .content {
    margin: auto;
    max-width: 800px;
    text-align: left;
}
#competition_body .title, #competition_body .subtitle {
    margin-left: 0;
}
@media screen and (max-width: 1279px) {
    #competition_body .title-container {
        width: 100vw;
    }
    #competition_body .content {
        margin: auto;
        max-width: 800px;
        text-align: left;
    }
    #competition_body .title, #competition_body .subtitle {
        margin-left: 0;
    }
}
@media screen and (max-width: 870px) {
    #competition_body .title, #competition_body .subtitle {
        margin-left: 8px;
    }
}
.school-chect-text-info {
    padding-left: 22px;
}
.school-chect-text-info span {
    color: #FDD835;
    font-weight: 700;
    cursor: pointer;
    transition: color 200ms;
}
.school-chect-text-info span:hover {
    color: #e5c430;
}
.details-container .content-fit {
    width: 100% !important;
    max-width: 800px !important;
    margin: auto;
}
.favicon {
    display: inline-block;
    height: 16px;
    margin-bottom: -2px;
    margin-right: 4px;
}
a.reference .favicon {
    display: inline-block;
    height: 16px;
    margin-bottom: -2px;
    margin-right: 4px;
}
.info-point a {
    color: #196080;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    line-height: 32px;
}
.video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.video-container {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

#competition_body {
    overflow-y: scroll;
}
.post-image-link-info {
    width: 100%;
}
.post-link-title {
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 24px);
    white-space: pre;
    padding: 6px 12px;
    font-weight: 400;
    font-size: 14px;
}
.post-link-desc {
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 24px);
    white-space: pre;
    font-weight: 400;
    font-size: 12px;
    padding: 0 12px 12px;
    color: rgba(114, 114, 114, 0.69);
}
.post-link-domain {
    font-weight: 400;
    padding: 6px 12px 0;
    font-size: 12px;
}
.cursor-pointer {
    cursor: pointer;
}
#template_event_body .content {
    max-width: 100vw;
    width: 840px;
    text-align: left;
    position: relative;
    top: 0;
}
#template_event_body .content-position-body {
    margin-top: 120px;
    max-width: 100vw;
    width: 840px;
    text-align: left;
    position: relative;
    top: 0px;
}
#template_event_body .mobile-bottom-spacing {
    display: none;
}
#template_event_body .content table td {
    vertical-align: top;
}
#template_event_body .welcome-message {
    width: 320px;
    text-align: left;
}
#template_event_body .creator-avatar {
    position: relative;
}
#template_event_body .creator-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
#template_event_body .creator-avatar .name {
    font-weight: 500;
    padding: 2px 48px 0;
}
#template_event_body .creator-avatar .employer {
    font-size: 14px;
    color: #555;
    padding: 0 48px;
}
#template_event_body .welcome-message .message-container {
    margin-top: 16px;
    background: #f6f6f6;
    border-radius: 18px 18px 6px 6px;
}
#template_event_body .message-container .message {
    word-spacing: 4px;
    line-height: 20px;
    font-weight: 300;
    word-break: break-word;
    padding: 16px;
}
#template_event_body .welcome-message .button {
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    margin: 0;
    font-weight: 900;
    width: calc(100% - 24px);
    border-radius: 0 0 6px 6px;
}
#template_event_body .button {
    display: inline-block;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    padding: 12px;
    margin: 8px 0;
    border-radius: 4px;
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    font-weight: 500;
    cursor: pointer;
}
#template_event_body .button.accent {
    background: var(--accent);
    border: none;
}
#template_event_body .info-points {
    max-width: 100%;
}
#template_event_body .info-point {
    vertical-align: top;
    display: inline-block;
    padding: 16px;
    width: 170px;
}
#template_event_body .info-point.ultra-wide {
    width: calc(100% - 32px);
}
#template_event_body .info-point .label {
    font-weight: 900;
    font-size: 12px;
}
#template_event_body .info-point .value {
    padding-top: 8px;
    font-weight: 400;
    color: rgb(53, 53, 53);
    word-break: break-word;
    line-height: 24px;
    text-align: left;
}
#template_event_body .position-image {
    width: 100%;
    max-width: 100%;
}
#template_event_body .info-points {
    max-width: 100%;
}
#template_event_body .button {
    display: inline-block;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 1px solid rgb(204, 204, 204);
    padding: 12px;
    margin: 8px 0px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    font-weight: 500;
    cursor: pointer;
}
#template_event_body .button.accent {
    background: var(--accent);
    border: none;
}
#template_event_body .button.inline {
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    margin: 24px 0px;
    font-weight: 900;
    border-radius: 6px;

    padding: 6px;
    width: 220px;
    margin-left: 54px;
    margin-top: 42px;

}
#template_event_body .info-point.large {
    text-align: left;
    width: calc(100% - 200px);
    margin-top: 40px;
}
#template_event_body .info-point {
    vertical-align: top;
    display: inline-block;
    padding: 16px;
    width: 170px;
}
#template_event_body .title-container-template {
    height: 256px;
}
#template_event_body .content-header {
    left: calc(50vw - 840px + 200px);
}
#template_event_body .content-header .button.accent.inline{
    padding: 6px;
    width: 220px;
    margin-top: 40px;
    margin-left: 56px;
}
#template_event_body .content-container-single-job {
    height: calc(100% - 160px) !important;
}
#template_event_body .content-container-single-competition {
    top: 260px;
    height: calc(100% - 260px) !important;
}
@media screen and (max-width: 1279px) {
    #template_event_body .content-header {
        left: calc(50vw - 840px + 376px);
    }
}
@media screen and (max-width: 850px) {
    #template_event_body .content-header {
        left: 0;
    }
}
#template_event_body .message-container {
    padding: 0;
}
#template_event_body .button.accent img {
    border: none;
    position: relative;
    border-radius: 0;
    top: 0;
    bottom: 0;
    height: 22px;
    vertical-align: middle;
}
@media screen and (max-width: 800px) {
    #competition_body .title-container .content {
        padding-left: 16px;
    }
    #template_event_body .title-container-template .title, #template_event_body .title-container-template .subtitle {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #template_event_body .content-position-body {
        top: 150px;
    }
    #template_event_body .content-container-single-job {
        height: 100% !important;
    }
    #template_event_body .content-container-single-job .content td{
        /*display: block;*/
    }
    #template_event_body .content td {
        display: block;
    }
    #template_event_body .content-position-body {
        padding-left: 16px;
        padding-right: 16px;
        width: calc(100% - 32px);
    }
    #template_event_body .welcome-message {
        width: 100%;
    }
}
@media screen and (max-width: 550px) {
    #template_event_body .title-container-template .title {
        font-size: 24px;
    }
    #template_event_body .button.inline {
        width: calc(100% - 56px);
        margin: 32px 16px 16px;
    }
    #template_event_body .title-container-template {
        height: 232px;
    }
    #template_event_body .info-points.mobile-margin-bottom .info-point.center-text {
        width: calc(100% - 24px);
    }
}
.long-description-style {
    font-weight: 400;
    line-height: 24px;
}
.long-description-style ul {
    margin: 0 4px 4px;
    padding-left: 50px;
    line-height: 24px;
}
.long-description-style p {
    margin-bottom: 0;
    margin-top: 0;
    line-height: 24px;
}
.long-description-style ol {
    margin: 0;
    line-height: 24px;
}