body {
    touch-action: pan-x pan-y;
}
.content {
    max-width: 640px;
    width: calc(100vw - 24px);
    position: relative;
}
.title-container {
    border-bottom: 1px solid #eee;
    background: #f6f6f6;
    height: 256px;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 2;
    transition: height 500ms;
}
.title-container .company-image {
    position: absolute;
    width: 100px;
    height: 100px;
    padding: 16px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 70px;
    top: 60px;
    left: -160px;
    transition: left 500ms, top 500ms, width 500ms, height 500ms, margin-left 500ms, padding 500ms;
}
.title-container .title {
    position: absolute;
    top: 80px;
    left: 0;
    font-size: 50px;
    font-weight: 500;
    transition: left 500ms, top 500ms, font-size 500ms;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 160px);
}
.title-container .subtitle {
    position: absolute;
    top: 150px;
    left: 0;
    font-size: 18px;
    color: #555;
    font-weight: 400;
    transition: left 500ms, top 500ms;
}
.title-container.reduced {
    height: 128px;
}
.title-container.reduced .company-image {
    width: 64px;
    height: 64px;
    top: 16px;
    margin-left: 36px;
}
.title-container.reduced .title {
    top: 16px;
}
.title-container.reduced .subtitle {
    top: 80px;
}
.details-container {
    margin-top: 256px;
    padding-top: 24px;
    z-index: 1;
    transition: margin-top 500ms;
}
.details-container .content {
    margin-left: 24px;
}
.detail {
    display: inline-block;
    width: 300px;
    padding-right: 8px;
    padding-left: 16px;
}
.label {
    margin-top: 12px;
    padding-bottom: 8px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
}
.label-title {
    font-size: 20px;
    color: #171717;
    font-weight: 600;
}
.event {
    position: relative;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 24px 24px 24px 112px;
    margin: 16px 0 32px;
    cursor: pointer;
}
.event:hover {
    border: 1px solid #ccc;
}
.event .thumb {
    position: absolute;
    width: 64px;
    top: 24px;
    left: 24px;
}
.event .event-type {
    position: absolute;
    top: 24px;
    right: 24px;
}
.event .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}
.event .subtitle {
    color: #a0a0a0;
    padding-bottom: 20px;
}
.event .description {
    line-height: 24px;
    padding-bottom: 16px;
}
.event .expiry {
    color: #b1b1b1;
    font-size: 14px;
    font-weight: 500;
}
.edit-button {
    cursor: pointer;
    height: 16px;
}
.edit-input {
    background: transparent;
    cursor: pointer;
    padding: 1px;
    border: none;
}
.subtitle .edit-input {
    font-size: 16px;
}
.edit-input.small {
    width: 160px;
}
.edit-input:hover {
    background: transparent url("/static/img/ui/edit.svg") no-repeat calc(100% - 4px);
    background-size: 16px;
}
.address-label {
    display: inline-block;
    padding-right: 32px;
    cursor: pointer;
}
.address-label:hover {
    background: transparent url("/static/img/ui/edit.svg") no-repeat calc(100% - 4px);
    background-size: 16px;
}
textarea.edit-input {
    width: 100%;
    resize: none;
}
textarea.edit-input:focus {
    padding: 8px;
    margin: -8px;
}
.edit-input:focus {
    border: 1px solid #ccc;
    border-radius: 2px;
    cursor: text;
    margin: -8px;
    padding: 8px;
}
.job-offers {
    max-width: 640px;
    margin-top: 20px;
    padding-top: 2px;
}
.job-offer {
    width: 100%;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin: 8px 0;
    border: 1px solid #ccc;
    text-align: left;
    border-radius: 4px;
}
.job-offer .thumb {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 64px;
    height: 64px;
    border-radius: 64px;
}
.job-offer .heading {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 500;
    padding: 16px;
    margin-left: 80px;
    width: calc(100% - 128px);
    min-height: 64px;
    display: table;
    height: 50px;
}
.job-offer .heading .vertically-aligned {
    display: table-cell;
    vertical-align: middle;
}
.job-offer .heading .company-title-header {
    color: #00667b;
    font-weight: 900;
}
.job-offer .image {
    width: 100%;
    margin-bottom: -4px;
}
.job-offer .details {
    background: #f6f6f6;
    border-radius: 0 0 3px 3px;
}
.job-offer .title {
    font-size: 24px;
    font-weight: 500;
    padding: 16px 24px 0;
}
.job-offer .desc {
    padding: 8px 24px 8px;
    font-weight: 300;
}
.job-offer .application-deadline {
    padding: 4px 24px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
}
.job-offer.competition {
    background: #fff7f0;
}
.buttons {
    padding: 8px 24px 24px;
}
.btn {
    display: inline-block;
    margin-right: 8px;
}
.btn:hover {
    color: #00667b;
}
.title .scrolling {
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.title .scrolling::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.exit-button {
    position: absolute;
    left: -220px;
    top: 112px;
    transition: left 500ms, top 500ms;
}
.title-container.reduced .exit-button {
    top: 48px;
}
@media screen and (max-width: 1279px) {
    .title-container .company-image {
        left: 0;
    }
    .title-container.reduced .company-image {
        margin-left: 0;
    }
    .title-container .title, .title-container .subtitle {
        left: 160px;
    }
    .title-container.reduced .title, .title-container.reduced .subtitle {
        left: 124px;
    }
    .exit-button {
        left: -50px;
    }
}
@media screen and (max-width: 920px) {
    .details-container .content {
        margin-left: 20px;
    }
    .title-container, .title-container.reduced {
        height: 100px;
    }
    .details-container {
        margin-top: 96px;
    }
    .title-container .title, .title-container.reduced .title {
        top: 20px;
        left: 110px;
        font-size: 24px;
    }
    .title-container .subtitle, .title-container.reduced .subtitle {
        top: 52px;
        left: 110px;
    }
    .title-container .company-image, .title-container.reduced .company-image {
        top: 16px;
        width: 56px;
        height: 56px;
        padding: 4px;
        left: 30px;
    }
    .detail {
        display: block;
    }
    .title-container.expanded {
        height: 224px;
    }
    .details-container.expanded {
        margin-top: 272px;
    }
    .exit-button {
        top: 32px;
        left: 0;
    }
    .title-container.reduced .exit-button {
        top: 32px;
    }
}
@media screen and (max-width: 640px) {
    .job-offers {
        background: #f6f6f6;
    }
    .details-container-profile .job-offers-student.job-offers {
        padding-top: 0;
        margin-top: 10px;
    }
    .job-offers .job-offer, .complete-profile {
        border-radius: 0;
        border: none;
        overflow: hidden;
        margin-top: 0;
        margin-bottom: 1px;
    }
    .job-offer .details {
        border-radius: 0;
    }
    .details-container-profile {
        border-top: 4px solid #F6F6F4;
    }
}
.content .detail .value {
    word-break: break-all;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.company-main-content .detail .value {
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
}
body {
    background: white !important;
}
.company-cover-image {
    margin: 64px auto auto;
    text-align: center;
    background: #f6f6f6;
    max-height: 380px;
    max-width: 100vw;
}
.company-cover-image img {
    margin: auto;
    max-height: 100%;
    max-width: 100vw;
    object-fit: contain;
    height: 370px;
}
.company-main-content {
    margin: 32px auto auto;
    width: 1000px;
    display: flex;
    position: relative;
}
.company-logo {
    flex: 0 184px;
}
.company-logo img {
    border-radius: 200px;
    width: 150px;
    height: 150px;
    border: 1px solid #EFEFEF;
}
.company-content {
    margin-top: 36px;
    flex: 1;
    width: calc(100% - 150px);
}
.company-content .company-title-header {
    font-size: 50px;
    font-weight: 500;
    padding-left: 16px;
}
.company-content .company-address-header {
    line-height: 36px;
    font-weight: 400;
    color: #797979;
    font-size: 16px;
    padding-left: 16px;
}
body {
    margin-top: 64px
}
.company-content .company-description {
    padding-right: 100px;
    padding-left: 16px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #171717;
}
.details-container-profile .job-offers-student {
    margin-top: 0;
    padding-top: 2px;
    width: 100%;
    max-width: 100%;
}
.details-container-profile .title {
    font-weight: 700;
    font-size: 24px;
    text-align: left;
    line-height: 30px;
    color: #171717;
    padding-left: 4px;
}
.details-container-profile .desc {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    color: #797979;
    padding-left: 4px;
}
.company-main-content .detail .value.mail-to, .company-main-content .detail a[href^="tel"] {
    text-decoration: none;
    color: #171717;
}
@media screen and (max-width: 1279px) {
    .company-cover-image {
        height: auto;
        max-height: initial;
    }
    .company-cover-image img {
        height: auto;
        width: 100vw;
    }
    .company-main-content {
        width: calc(100% - 48px);
        margin-left: 24px;
        margin-right: 24px;
    }
}
@media screen and (max-width: 800px) {
    .company-cover-image {
        margin-top: 0;
    }
    .company-logo {
        margin: auto;
        position: absolute;
        left: 37.5vw;
        top: -75px;
    }
    .company-logo img {
        width: 25vw;
        height: 25vw;
    }
    .company-main-content {
        width: 100%;
        margin: 0;
        padding-top: 12vw;
    }
    .company-content .mobile-padding {
        padding-left: 28px;
        padding-right: 28px;
        width: calc(100% - 56px);
    }
    body {
        margin-top: calc(25vw + 60px);
    }
}
@media screen and (max-width: 600px) {
    .company-main-content {
        width: 100%;
        margin: 0;
        padding-top: 7vw;
    }
    .company-content .company-title-header {
        font-weight: 700;
        font-size: 24px;
    }
}

.slideshow-container {
    position: relative;
    margin: auto;
}

/* The dots/bullets/indicators */
.dot {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #DCDCDC;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.active {
    background-color: #171717;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 0.2s;
    animation-name: fade;
    animation-duration: 0.2s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {font-size: 11px}
}



html, body {
  position: relative;
  height: 100%;
}
body {
  font-size: 14px;
  color:#000;
  margin: 0;
  padding: 0;
}
.swiper-container {
    width: 100%;
    height: 100%;
    padding-bottom: 38px !important;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.slideshow-container.swiper-container {
    overflow: hidden;
}
@media screen and (min-width: 1280px) {
    .slideshow-container.swiper-container {
        max-width: 816px;
    }
}

.slideshow-container  {
    max-height: 580px;
    max-width: calc(100vw - 200px);
    height: calc(56vw - 115px);
}
.swiper-slide img {
    height: 100% !important;
    max-height: 580px;
    object-fit: contain;
}
@media screen and (max-width: 800px) {
    .slideshow-container {
        max-width: 100vw;
    }
    .swiper-slide img {
        height: 56.25vw !important;
    }
}
.header-bookmarks .share-container.show {
    left: 0;
    width: 100%;
    position: fixed;
    top: 64px;
    bottom: initial;
    z-index: 100;
    display: none;
}
.header-bookmarks .share-container.show:after {
    content: "";
    position: absolute;
    top: -10px;
    bottom: initial;
    transform: rotate(180deg);
    right: 26px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
.player-always-on-top {
    z-index: 1000;
    position: absolute;
    width: 100vw;
    height: 100vh;
}
#player-yt {
    height: 100% !important;
}
@media screen and (min-width: 1280px) {
    #player-yt {
       height: 459px !important;
    }
}
#player-vm, #player-vm iframe {
    height: 100% !important;
    width: 100% !important;
}
#player-vm iframe {
    height: 101% !important;
}
.header-bookmarks {
    display: none;
}
.company-exit-button {
    position: fixed;
    width: 24px;
    left: 14px;
    top: 20px;
    opacity: 0.7;
    z-index: 3;
}
@media screen and (max-width: 800px) {
    .header-bookmarks .share-container.show {
        display: block;
    }
    #player-yt {
        height: 55vw !important;
    }
    .swiper-container {
        height: 55vw !important;
    }
    .header-bookmarks {
        display: block;
    }
}