* {
    font-family: 'Nunito';
}

#nav {
    height: 70px;
    width: 100vw;
    position: fixed;
    background-color: #D1281C;
    z-index: 9999;
}

a {
    cursor: pointer !important;
}

.wrapper {
    max-width: 1440px;
    width: 90vw;
    margin: 0 auto;
}

#nav #logo {
    float: left;
}

#logo {
    height: 35px;
    width: 40vw;
    max-width: 150px;
    margin-top: 15px;
    background-image: url(../../assets/img/mybackaldrin.svg);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
}

.loginBackground {
    background-image: linear-gradient(135deg, #D1281C 25%, #CFB48B 100%);
    height: 100vh;
    width: 100vw;
    position: fixed;
}

.h3,
h3 {
    font-size: 30px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
}

#login #logo {
    height: 150px;
    width: 350px;
    margin: 10px auto;
    background-position: center;
    margin-bottom: 5vh;
}

#login .wrapper {
    margin-top: 10vh;
}

.btn-primary {
    border: #FFFFFF 1px solid;
    background: #FFFFFF;
    border-radius: 10px;
    color: #D1281C;
    border: none;
}

#login .btn {
    width: 300px;
    margin-top: 0vh;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
}

.btn-secondary {
    border: #FFFFFF 1px solid;
    border-radius: 10px;
    background-color: transparent;
}

.btn-secondary:hover {
    border: #FFFFFF 1px solid;
    background: #FFFFFF;
    border-radius: 10px;
    color: #D1281C;
}

.btn-link {
    color: white;
    border: none;
}

.btn-link:hover {
    color: white;
    border: none;
    opacity: 0.5;
    text-decoration: none;
}

.btn {
    transition: all 0.3s ease-in-out;
}

main {
    padding-top: 70px;
}

#sidebar {
    width: 250px;
    height: calc(100vh - 70px);
    border-right: 2px solid #D1281C;
    padding-top: 30px;
    position: fixed;
}

@media (max-width: 992px) {
    #sidebar {
        width: 200px;
        height: calc(100vh - 70px);
        border-right: 2px solid #D1281C;
        padding-top: 30px;
        position: fixed;
    }
}



#sidebar a .icon {
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#sidebar a {
    color: #979797;
    transition: ease-in-out 0.3s opacity, ease-in-out 0.3s padding, ease-in-out 0.3s background;
    padding: 20px 0;
    display: block;
    position: relative;
}

#sidebar a:hover {
    text-decoration: none;
    opacity: 0.5;
    padding-left: 5px;
}

#sidebar a:active {
    color: #D1281C;
    text-decoration: none;
    opacity: 0.5;
}

#feedLink .icon {
    background-image: url(../../assets/img/dashboardIcon.svg);
}

#newsLink .icon {
    background-image: url(../../assets/img/newsIcon.svg);
}

#eventsLink .icon {
    background-image: url(../../assets/img/eventsIcon.svg);
}

#videoLink .icon {
    background-image: url(../../assets/img/videoIcon.svg);
}

#locationLink .icon {
    background-image: url(../../assets/img/locationIcon.svg);
}

#magazineLink .icon {
    background-image: url(../../assets/img/magazineIcon.svg);
}

#aboutLink .icon {
    background-image: url(../../assets/img/aboutIcon.svg);
}

#careersLink .icon {
    background-image: url(../../assets/img/careerIcon.svg);
}

#appLink .icon {
    background-image: url(../../assets/img/appLinkIcon.svg);
}

#settingsLink .icon {
    background-image: url(../../assets/img/settingsIcon.svg);
}

.contentWindow {
    width: calc(90vw - 250px);
    max-width: calc(1440px - 250px);
    float: right;
    padding-top: 30px;
    padding-left: 100px;
}

@media (max-width: 992px) {
    .contentWindow {
        width: calc(90vw - 200px);
        max-width: calc(1440px - 250px);
        float: right;
        padding-top: 30px;
        padding-left: 50px;
    }
}

#videos .videoContainer {
    width: 100%;
    height: calc(((90vw - 250px - 100px) / 3) * 0.56);
    max-height: calc(((1440px - 250px - 100px) / 3) * 0.56);
    position: relative;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    overflow: hidden;
    transform: scale(1);
    float: left;
}

.videoContainer {
    width: 100%;
    height: calc(((90vw - 250px - 100px) / 2) * 0.56);
    max-height: calc(((1440px - 250px - 100px) / 2) * 0.56);
    position: relative;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    overflow: hidden;
    transform: scale(1);
}

.videoHeadline {
    width: 100%;
    height: 70px;
    display: block;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding-left: 20px;
    padding-top: 20px;
    font-size: 20px;
    color: #FFFFFF;
    position: relative;
    bottom: 0;
    position: absolute;
}

.h6,
h6 {
    font-size: 12px;
    color: #D1281C;
}

#videos .videoContainerOuter {
    width: calc(33% - 20px);
    box-shadow: none !important;
}

.videoContainerOuter {
    width: calc(50% - 20px);
    box-shadow: none !important;
    overflow: initial !important;
}

.favoriteIcon {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 40px;
    width: 40px;
    background-image: url(../../assets/img/favoriteIcon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

#events .favoriteIcon {
    right: 70px;
    top: 22px;
}

.favoriteIcon.active {
    background-image: url(../../assets/img/favoriteIconActive.svg) !important;
}

.Content {
    float: left;
    margin-left: 20px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.20);
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

#events .calenderContainer {
    width: 100%;
    height: initial;
    max-height: 100%;
    position: initial;
    box-shadow: none;
    border-radius: 2px;
    padding: 20px 0;
    overflow-y: initial;
}

.calenderContainer {
    width: 100%;
    height: calc(((90vw - 250px - 100px) / 2) * 0.56);
    max-height: calc(((1440px - 250px - 100px) / 2) * 0.56);
    position: relative;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 25px;
    overflow-y: scroll;
}

#events .calenderContainerOuter {
    width: 100%;
    box-shadow: none;
}

.calenderContainerOuter {
    width: calc(50% - 20px);
    box-shadow: none;
    overflow: initial !important;
}

#events .month {
    font-weight: 300;
    display: block;
    width: 100%;
    border-bottom: 1px solid #333;
    font-size: 20px;
    color: #4A4A4A;
    margin-bottom: 20px;
    margin-top: 40px;
}

#events .month:first-child {
    margin-top: 0px;
}

.month {
    font-weight: 300;
    display: block;
    width: 100%;
    border-bottom: 1px solid #333;
    font-size: 20px;
    color: #4A4A4A;
    margin-bottom: 20px;
}

.settingsWindow .oneThirdContent {
    width: calc(33.333% - 20px);
    max-height: 200px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.oneThirdContent {
    width: calc(33.333% - 20px);
    max-height: 300px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding-bottom: 20px;
}

/*.oneThirdContent::after {
  content: "";
  min-width: 100%;
  max-height: 50px;
  min-height: 50px;
  position: absolute;
  bottom: 0;
  z-index: 8000;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFFFFF 100%);
}
*/
.oneThirdContent:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.teaserImageContainer {
    width: 100%;
    height: calc(((90vw - 250px - 100px) / 3.333) * 0.56);
    max-height: calc(((1440px - 250px - 100px) / 3.333) * 0.56);
    overflow: hidden;
}

.category {
    font-size: 16px;
    color: #4A4A4A;
    width: 100%;
    display: block;
    line-height: 1;
    padding: 20px 20px 0;
}

.containerHeadline {
    font-size: 20px;
    color: #4A4A4A;
    padding: 7px 20px;
    font-weight: 600;
    width: 100%;
    line-height: 20px;
    height: 48px;
    overflow: hidden;
    ;
    display: block;
    max-height: 55px;
}

.teaserText {
    display: none;
}

.date {
    display: block;
    padding: 0 20px;
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1;
}

.teaserText {
    font-size: 16px;
    color: #4A4A4A;
    line-height: 20px;
    padding: 10px 20px 20px;
    max-height: 80px;
    width: 100%;
}

.teaserImageContainer img {
    max-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.dateNumber {
    height: 40px;
    width: 40px;
    display: block;
    font-weight: 600;
    font-size: 27px;
    text-align: center;
    color: white;
    background-color: #D0021B;
    border-radius: 5px;
    float: left;
    margin-right: 10px;
}

#events .eventTeaser.open {
    margin: 10px 0;
    height: initial;
    clear: both;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px 20px 20px !important;
    position: relative;
}

#events .eventTeaser {
    margin: 10px 0;
    height: initial;
    clear: both;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px 20px 20px !important;
    position: relative;
    overflow: hidden;
}

.eventTeaser {
    margin: 10px 0;
    height: 40px;
    clear: both;
    transition: background 0.3s ease-in-out;
}

.calenderContainerOuter .eventTeaser {
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

.calenderContainerOuter .eventTeaser:hover {
    background-color: #efefef;
    border-radius: 0 10px 10px 0;
}

.eventTitle {
    font-size: 14px;
    color: #4A4A4A;
    font-weight: 700;
    width: 100%;
    display: block;
}

#events .eventTitle {
    font-size: 27px;
    color: #4A4A4A;
    font-weight: 700;
    width: 80%;
    display: block;
    line-height: 1;
}

.eventDate {
    font-size: 12px;
    color: #4A4A4A;
    float: left;
    margin-right: 10px;
}

.eventDescription {
    font-size: 12px;
    float: left;
    color: #9B9B9B;
}

.videoPlayer {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
}

#sidebar a.active {
    color: #D1281C;
}

#sidebar a:before {
    content: '';
    background-color: transparent;
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    left: -20px;
    top: 28px;
    border-radius: 50%;
    right: initial;
    transition: background 0.3s ease-in-out;
}

#sidebar a.active:before {
    content: '';
    background-color: #D1281C;
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    left: -20px;
    top: 28px;
    border-radius: 50%;
    right: initial;
}

#newsLink.active .icon {
    background-image: url(../../assets/img/newsIconActive.svg);
}

#feedLink.active .icon {
    background-image: url(../../assets/img/dashboardIconActive.svg);
}

#eventsLink.active .icon {
    background-image: url(../../assets/img/eventsIconActive.svg);
}

#videoLink.active .icon {
    background-image: url(../../assets/img/videosIconActive.svg);
}

#locationLink.active .icon {
    background-image: url(../../assets/img/myLocationIconActive.svg);
}

#magazineLink.active .icon {
    background-image: url(../../assets/img/magazineIconActive.svg);
}

#aboutLink.active .icon {
    background-image: url(../../assets/img/aboutIconActive.svg);
}

#careersLink.active .icon {
    background-image: url(../../assets/img/careerIconActive.svg);
}

#appLink.active .icon {
    background-image: url(../../assets/img/appLinkIconActive.svg);
}

#settingsLink.active .icon {
    background-image: url(../../assets/img/settingsIconActive.svg);
}

.clear {
    clear: both;
}

.eventImageContainer {
    width: calc(40% - 20px);
    height: calc(((90vw - 250px - 100px) * 0.4 - 20px) * 0.56);
    max-height: calc(((1440px - 250px - 100px) * 0.4 - 20px) * 0.56);
    float: left;
    margin-right: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.eventText > * {
    font-size: 12px !important;
    color: #4A4A4A;
    line-height: 1.4;
}

.eventText {
    float: left;
    width: 60%;
}

.eventContent {
    max-height: 0px;
    overflow: hidden;
    transition: 0.3s max-height ease-in-out, margin 0.3s ease-in-out;
}

.open .eventContent {
    max-height: 400px;
    margin-top: 20px;
}

.address:before {
    content: url(../../assets/img/addressIcon.svg);
    height: 12px;
    margin-top: -4px;
    position: absolute;
    margin-left: -25px;
    opacity: 0;
}

.open .address:before {
    content: url(../../assets/img/addressIcon.svg);
    height: 12px;
    margin-top: -4px;
    position: absolute;
    margin-left: -25px;
    opacity: 1;
}

.address {
    padding-left: 25px;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
}

.btn-dark:before {
    content: url(../../assets/img/addtocalendarIcon.svg);
    margin-left: -38px;
    margin-top: -2px;
    position: absolute;
}

.btn-dark {
    border: #D1281C 2px solid;
    background-color: #D1281C;
    border-radius: 10px;
    color: white;
    padding-left: 50px;
}

.eventImageContainer img {
    height: 100%;
    min-width: 100%;
    object-fit: cover;
}

#article .contentWindow {
    padding: 0;
}

.carousel {
    height: 40vh;
}

.carousel-item {
    height: 40vh;
    overflow: hidden;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: none;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    margin: auto;
    position: absolute;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.articleContent {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.articleHeading {
    font-size: 40px;
    color: #4A4A4A;
    font-weight: 700;
    margin-top: 20px;
}

.articleDate {
    font-size: 16px;
    color: #4A4A4A;
}

.articleParagraph {
    margin-top: 40px;
    font-size: 16px;
    color: #4A4A4A;
}

.btn-Back {
    margin-top: 40px;
    color: #333;
    background-color: transparent;
}

.btn-Back:before {
    content: url(../../assets/img/backIcon.svg);
    position: relative;
    left: -9px;
    top: 1px;
    transition: left 0.3s ease-in-out;
}

.btn-Back:hover:before {
    content: url(../../assets/img/backIcon.svg);
    left: -19px;
}

.btn-Back:hover {
    color: #333;
    background-color: transparent;
    opacity: 0.8;
}

.expand {
    position: absolute;
    right: 30px;
    top: 22px;
    height: 40px;
    width: 20px;
    z-index: 9000;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.expand span {
    width: 100%;
    height: 2px;
    display: block;
    transform: translateY(20px);
    transform-origin: center;
    background-color: #333;
    border-radius: 1px;
    position: absolute;
}

.mover {
    transform: translateY(20px) rotate(-90deg) !important;
    transition: transform 0.3s ease-in-out;
}

.open .mover {
    transform: translateY(20px) rotate(0deg) !important;
}

.functionRow {
    float: right;
    margin-top: 15px;
    height: 35px;
}

#nav i {
    font-size: 25px;
    color: white;
}

.functionRow > * {
    float: right;
    margin-left: 30px;
}

.functionRow a {
    display: block;
    height: 35px;
    width: 35px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    text-decoration: none;
}

#profile {
    background-image: url(../../assets/img/profileIcon.svg);
}

#profile.active {
    background-image: url(../../assets/img/profileIconActive.svg);
}

#notifications {
    background-image: url(../../assets/img/notificationIcon.svg);
}

#notifications.active {
    background-image: url(../../assets/img/notificationIconActive.svg);
}

#search {
    background-position: center left;
    background-image: url(../../assets/img/searchIcon.svg);
    width: 35px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

#search input {
    max-width: 0px;
    margin-left: 34px;
    border: 0;
    width: 200px;
    height: 34px;
    margin-top: 0.5px;
    transition: 0.3s ease-in-out all;
    border-radius: 0 17.5px 17.5px 0;
    padding: 0;
    outline: none !important;
}

input[type="search"]::-webkit-search-cancel-button {
    margin-right: 5px;
}

#search.active {
    background-image: url(../../assets/img/searchIconActive.svg);
    width: 235px;
}

#search.active input {
    max-width: 200px;
}

#favorites {
    background-image: url(../../assets/img/favoriteNavIcon.svg);
}

#favorites.active {
    background-image: url(../../assets/img/favoriteNavIconActive.svg);
}

.functionRow .locationChange {
    height: 35px;
    width: initial;
    font-weight: 400;
    padding: 10px 20px;
    background-color: white;
    border-radius: 17px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: #D1281C;
}

#sidebarDown {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 5vh;
}

.magazineCover {
    position: relative;
    display: inline-table;
    float: left;
    height: 250px;
    width: calc(200px * 0.7);
    margin-right: 20px;
    border-radius: 2px;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

.cover {
    position: absolute;
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(Picture@2x.jpg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.20);
    border-radius: 2px;
    transition: border 0.3s ease-in-out;
}

.magazineInformation {
    position: absolute;
    height: 50px;
    bottom: 0;
    width: 100%;
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
}

.magazineInformation h6 {
    color: #333;
    font-weight: 700;
}

.About span {
    font-size: 10px;
}

.oneThirdContent::last-child {
    clear: both;
}

.clearContainer {
    clear: both;
}

#helpAndSettings span {
    margin-left: 0;
    transition: 0.3s ease-in-out all;
    padding-bottom: 10px;
    display: block;
    cursor: pointer;
}

#helpAndSettings span.active {
    margin-left: 10px;
    opacity: 0.5;
}

#helpAndSettings span:hover {
    margin-left: 10px;
    opacity: 0.5;
}

.fithtyfithty {
    width: 45%;
    float: left;
    margin-right: 5%;
}

p span {
    font-weight: 700;
}

#problem textarea {
    width: 100%;
    min-height: 100px;
    border-radius: 5px;
    border: 1px solid #333;
    padding: 5px 10px;
    margin-bottom: 20px;
}

#problem input {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #333;
    padding: 5px 10px;
}

#problem .btn {
    float: right;
}

#helpAndSettings {
    padding-top: 2vh;
    border-top: 1px solid;
}

.btn.btn-primary.color {
    background-color: #D1281C;
    color: white;
}

.btn.btn-primary.color:hover {
    background-color: #70A0BE;
    color: white;
}

.btn.btn-primary.colorless:hover {
    background-color: transparent;
    color: #333;
}

#notificationSettings h5 {
    margin-top: 20px;
}

#help.active {
    display: block;
}

#help {
    display: none;
}

#problem.active {
    display: block;
}

#problem {
    display: none;
}

#notificationSettings.active {
    display: block;
}

#notificationSettings {
    display: none;
}

#userSettings.active {
    display: block;
}

#userSettings {
    display: none;
}

#dataSettings.active {
    display: block;
}

#dataSettings {
    display: none;
}

.About {
    display: block;
    width: 100%;
    margin-top: 5vh;
}

.btn.btn-primary:hover {
    background-color: #D1281C;
    color: white;
}

.btn.btn-primary {
    color: #D1281C;
}

.magazineSlider {
    width: 100%;
    max-height: 250px;
    overflow: scroll;
    display: flex;
    position: relative;
    margin-bottom: 5vh;
}

.favoriteSlider {
    width: 100%;
    max-height: 250px;
    overflow: scroll;
    display: flex;
    position: relative;
    margin-bottom: 5vh;
}

.magazineCover:hover {
    opacity: 0.7;
}

.cardIMG {
    width: 100%;
    height: 200px;
    background-image: url(Picture@2x.jpg);
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-body {
    padding: 0 !important;
}

.card-title {
    margin-left: 20px;
}

.card a {
    margin-left: 20px;
    padding: 10px;
    width: calc(100% - 40px);
    display: block !important;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.20) !important;
    margin-bottom: 20px;
    border-radius: 5px;
    color: #333;
    position: relative;
    padding-right: 50px;
    transition: 0.3s ease-in-out background;
}

.card a::after {
    content: '';
    background-image: url(../../assets/img/arrow.svg);
    background-position: center;
    background-size: 25%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0;
    width: 50px;
    background-repeat: no-repeat;
}

.card {
    border-radius: 5px !important;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.20) !important;
    border: 0 !important;
    overflow: hidden;
    margin-bottom: 20px;
}

.card a:hover {
    background-color: #f2f2f2;
}

.outlined {
    border: 2px solid !important;
    width: 100%;
}

.btn.btn-primary:active,
.btn.btn-primary:focus {
    background-color: #D1281C;
    color: white;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: #D1281C;
}

.dropdown-menu.show {
    width: 100%;
}

.btn.btn-primary.dropdown-toggle.oulined {}

.dropdown {
    margin-bottom: 20px;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.joblink a::after {
    content: '';
    background-image: url(../../assets/img/arrow.svg);
    background-position: center;
    background-size: 25%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0;
    width: 50px;
    background-repeat: no-repeat;
}

.joblink a {
    padding: 10px 20px;
    width: calc(100% - 40px);
    display: block !important;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.20) !important;
    margin-bottom: 20px;
    border-radius: 5px;
    color: #333;
    position: relative;
    padding-right: 50px;
    transition: 0.3s ease-in-out background;
    text-decoration: none;
}

.joblink a:hover {
    background-color: #f2f2f2;
}

.col-12.headings {
    margin-bottom: 2vh;
}

.locationChange:hover {
    opacity: 0.7;
}

.locationChange {
    transition: 0.3s ease-in-out opacity;
    cursor: pointer;
}

.applinks span {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 20px 10px 50px;
    min-width: 100%;
    max-width: 100%;
    background-color: white;
    background-image: url(../img/appLinkIcon.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 10px center;
}

.applinks {
    position: relative;
    overflow: hidden;
    height: 44px;
    min-height: 44px;
    margin-top: 20px;
}


.applinks::after {
    min-width: 0% !important;
    max-width: 0%;
}

.notificationWindow {
    max-width: 320px;
    min-width: 320px;
    position: absolute;
    background-color: white;
    border-radius: 20px;
    top: 58px;
    right: 65px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-height: 0vh;
    overflow: scroll;
    transition: all 0.5s ease-in-out;
    transition-delay: 0s;
}

.userWindow {
    max-width: 320px;
    min-width: 320px;
    position: absolute;
    background-color: white;
    border-radius: 20px;
    top: 58px;
    right: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: scroll;
    transition: all 0.5s ease-in-out;
    transition-delay: 0s;
}

.searchResultWindow {
    max-width: 320px;
    min-width: 320px;
    position: absolute;
    background-color: white;
    border-radius: 20px;
    top: 58px;
    right: 130px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: scroll;
    transition: all 0.5s ease-in-out;
    transition-delay: 0s;
}

.locationChangeWindow {
    max-height: 0;
    overflow: hidden;
    max-width: 420px;
    min-width: 320px;
    position: absolute;
    background-color: white;
    border-radius: 20px;
    top: 58px;
    right: 195px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
    transition-delay: 0s;
}

.dropdown-toggle::after {
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 16px;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.line {
    width: 100%;
    height: 2px;
    background-color: #D1281C;
    margin-bottom: 20px;
}

.marBo5vh {
    margin-bottom: 5vh;
}

.outlined:hover {
    border: solid 2px #D1281C !important;
}

.btn.btn-primary.red {
    background-color: #d1281c;
    color: white;
}

.btn.btn-primary.red:hover {
    background-color: #CFB48B;
}

.wrapper.relative {
    position: relative;
}

.resultIMG {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    background-image: url(Picture@2x.jpg);
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    float: left;
    margin-right: 20px;
}

.result:last-child {
    margin-bottom: 0;
}

.result {
    align-items: center;
    display: flex;
    overflow: hidden;
    max-width: 320px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: 0.3s ease-in-out background;
    cursor: pointer;
}

span {
    max-width: 200px;
}

.result:hover {
    background-color: #f2f2f2;
}

.notification {
    padding: 10px 20px;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.notification:hover {
    background-color: #f2f2f2;
}

.notification::before {
    content: '•';
    margin-left: -10px;
    margin-right: 10px;
    color: #D1281C;
}

#Out input, #changePasswordForm input {
    width: 100%;
    margin-bottom: 20px;
    border: 2px solid #D1281C;
    border-radius: 10px;
    padding: 10px 20px;
}

.marginbtn20 {
    margin-bottom: 20px;
}

.locationChangeWindow.active {
    max-height: 100vh;
    transition-delay: 0.5s;
    overflow: auto;
}

.padding {
    padding: 20px;
}

.searchResultWindow.active {
    max-height: 80vh;
    transition-delay: 0.5s;
}

.notificationWindow.active {
    max-height: 80vh;
    transition-delay: 0.5s;
}

.logedOut #Out {
    display: block;
}

.logedIn #In {
    display: block;
}

.logedIn #Out {
    display: none;
}

.logedOut #In {
    display: none;
}

#In h5 {
    line-height: 1.5;
}

#In span {
    font-weight: 600;
}

.userWindow.active {
    max-height: 50vh;
}

.articleContainerOuter {
    margin-top: -30px;
}

.btn-Back:hover,
.btn-Back:active,
.btn-Back:focus {
    background-color: transparent !important;
    color: #D1281C !important;
}

.eventTitle,
.month,
.containerHeadline {
    max-width: initial !important;
}

.magazineCover:active .cover {
    border: 2px solid #D1281C;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: white;
    color: #333;
    transition: 0.3s ease-in-out background;
}

.dropdown-item.active:hover,
.dropdown-item:hover {
    background-color: #efefef;
    color: #333;
}

@media (max-width:1440px) {

    #sidebar {
        width: 50px;
        max-height: calc(100vh - 70px)
    }

    #sidebar a {
        width: 40px;
        height: 20px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .contentWindow {
        width: calc(90vw - 50px);
        max-width: calc(1440px - 50px);
        float: right;
        padding-top: 30px;
        padding-left: 50px;
    }

    .calenderContainer,
    .videoContainer {
        height: calc(((90vw - 50px - 100px) / 2) * 0.56);
        max-height: calc(((1440px - 50px - 100px) / 2) * 0.56);

    }

    #sidebarDown {
        position: fixed;
    }

}



@media (max-width:1000px) {


    #sidebar a {
        width: 40px;
        height: 20px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .oneThirdContent {
        width: calc((90vw - 50px - 100px) / 2);
    }

    .teaserImageContainer {
        height: calc(((90vw - 50px - 100px) / 2) * 0.56);
    }

    .calenderContainer,
    .videoContainer {
        height: calc(((90vw - 50px - 100px) / 2) * 0.56);
        max-height: calc(((1440px - 50px - 100px) / 2) * 0.56);

    }

    #sidebarDown {
        position: fixed;
    }

}

#events .funktionRowShare {
    position: absolute;
    right: 120px;
    top: 35px;
}

#menuLink {
    display: none !important;
}


@media (max-width:736px) {

    .oneThirdContent,
    .calenderContainerOuter,
    .videoContainerOuter {
        width: 100%;
        margin-left: 0;
    }

    .fithtyfithty {
        width: 90vw;
        float: left;
        margin-right: 5vw;
    }

    h4 {
        margin-left: 0 !important;
    }

    .eventTitle,
    .month,
    .containerHeadline {
        max-width: 280px !important;
        padding-left: 0;
    }

    .favoriteSlider {
        width: 95vw;
    }

    .favoriteSlider .Content {
        min-width: 70vw;
    }

    .favoriteSlider .Content::after {
        display: none;
    }

    #sidebar {
        width: 100vw !important;
        height: 70px;
        background-color: white;
        border-right: 0px solid #D1281C;
        border-top: 2px solid #D1281C;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 9999;

    }

    #sidebar a .icon {
        width: 100% !important;
    }

    #sidebar a:hover {
        padding-left: 0 !important;
    }

    .contentWindow {
        width: 100% !important;
        padding: 0 !important;
    }

    .calenderContainer,
    .videoContainer {
        height: calc((90vw - 50px) * 0.56);
        max-height: calc((1440px - 50px) * 0.56);

    }

    #search.active {
        top: 80px;
        position: fixed;
        width: 80vw;
        left: 5vw;
        border-radius: 20px;
    }

    .functionRow {
        position: fixed;
        float: none;
        right: 25px;
        margin-top: 15px;
        height: 35px;
    }

    #nav {
        transition: all 0.3s ease-in-out
    }

    #nav.active {
        height: 100vh;
    }



    #search.active input {
        max-width: 1000px;
        width: 100%;
        margin-left: 29px;
    }


    .searchResultWindow.active {
        width: 90vw;
        left: 5vw;
        position: fixed;
        top: 1300px;
        right: initial;
        max-width: initial;
        max-height: initial;
        min-width: initial;
    }


    .notificationWindow.active {
        width: 90vw;
        left: 5vw;
        position: fixed;
        top: 60px;
        right: initial;
        max-width: initial;
        max-height: initial;
        min-width: initial;
    }

    .userWindow.active {
        width: 90vw;
        left: 5vw;
        position: fixed;
        top: 60px;
        right: initial;
        max-width: initial;
        max-height: initial;
        min-width: initial;
    }


    .applinks:first-child {
        margin-top: 20px !important;
    }

    .teaserImageContainer {
        height: 70px;
        width: 70px;
        float: left;
        margin-right: 10px;
        border-radius: 20px;
    }

    .category {
        padding: 0;
        font-size: 10px;
    }

    .containerHeadline {
        font-size: 14px;
    }

    .oneThirdContent:hover {
        box-shadow: none;
        transform: scale(1);
    }

    .Content {
        box-shadow: none;
        background-color: transparent;
        max-height: initial;
        min-height: initial;
        margin-bottom: 20px;
    }

    .teaserText {
        display: none;
    }

    .contentWindow {
        padding-left: 20px;
        margin-top: 30px;
    }

    #sidebar {
        padding-top: 0;
        padding-left: 5vw;
        padding-right: 5vw;
        transition: height 0.3s ease-in-out;
    }

    #sidebar a {
        float: left;
        width: 20%;
        transition: all 0.3s ease-in-out;
    }

    #sidebar.open a {
        float: left;
        width: 70%;
        margin-bottom: 10px;
    }

    #sidebar.open #sidebarDown {
        width: 70%;
    }

    #sidebar.open a .icon {
        float: left;
        width: 20px !important;
    }

    .date {
        font-size: 10px;
    }

    .articleContainerOuter {
        margin-top: -30px;
    }

    .carousel {
        height: 40vh;
        width: 100vw;
        margin-left: -5vw;
    }

    .articleContent {
        width: 100vw;
        margin-left: -5vw !important;
        margin: 0 auto;
        padding: 0 5vw;
        margin-top: -10vh;
        background-color: white !important;
        z-index: 100;
        border-radius: 40px 40px 0 0;
        padding-bottom: 130px;
        position: relative;
    }

    .articleHeading {
        font-size: 25px;
    }

    .articleParagraph {
        font-size: 12px
    }

    #sidebarDown {
        position: relative !important;
        float: left;
        width: 20%;
    }

    #settingsLink {
        width: 100% !important;
    }

    .functionRow a {
        height: 30px;
        width: 30px;
        margin-left: 20px;
    }

    #menuLink {
        display: block !important;
    }

    #menuLink .icon {
        background-image: url(../img/menuicon.svg);
    }

    #sidebar.open #menuLink {
        position: fixed;
        bottom: 40px;
        width: 10%;
        right: 20px;
    }

    #sidebar.open #menuLink .icon {
        background-image: url(../img/menuclose.svg);
    }

    #sidebar.open {
        height: 80vh;
        overflow: scroll;
    }

    #magazineLink,
    #appLink,
    #careersLink,
    #settingsLink {
        opacity: 0;
        pointer-events: none;
        transition: 0.5s all ease-in-out;
    }

    #sidebar.open #magazineLink,
    #sidebar.open #appLink,
    #sidebar.open #careersLink,
    #sidebar.open #settingsLink {
        opacity: 1;
        pointer-events: auto;
    }

    .teaserImageContainer img {
        min-width: 100%;
        min-height: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .calenderContainer {
        border-radius: 10px;
        max-height: initial;
        height: initial;

    }

    .magazineSlider {
        width: 100vw;
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #events .favoriteIcon {
        right: 5px;
        left: initial;
        top: 5px;
    }

    .favoriteIcon {
        left: 5px;
        top: 5px;
        height: 30px;
        width: 30px;
    }

    #nav .locationChange {
        display: none;
    }

    .oneThirdContent::after {
        content: '';
        position: absolute;
        right: 5px;
        top: 0;
        height: 100%;
        width: 20px;
        background-image: url(../img/arrow.svg);
        background-size: 10px;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.5;
    }

    #events .eventTitle {
        font-size: 18px;
        width: 90%;
    }


    #events .funktionRowShare {
        position: absolute;
        right: 0px;
        top: initial;
        bottom: 20px;
    }

    #events .eventTeaser {
        padding-bottom: 50px !important;
    }


}

.funktionRowShare {
    position: absolute;
    right: 0px;
    top: 20px;
}

.likeBtn {
    height: 15px;
    width: 15px;
    background-image: url(../img/like.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 0;
    margin-left: 10px;
    margin-right: 20px;
    background-color: transparent;

}

.likeBtn:hover,
.likeBtn:active,
.likeBtn:focus,
.shareBtn:hover,
.shareBtn:active,
.shareBtn:focus {
    background-color: transparent !important;
    opacity: 0.5;
    color: transparent;

}

.shareBtn {
    height: 15px;
    width: 15px;
    background-image: url(../img/share.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 0;
    margin-right: 20px;
    background-color: transparent;

}

.shareBtn:hover {
    background-color: transparent !important;
    opacity: 0.5;
    color: transparent;

}


.likeBtn.active {
    background-image: url(../img/like_active.svg);
}


#aboutText:hover {
    margin-left: 0 !important;
    opacity: 1 !important;
    cursor: auto;
}

.searchCategory {
    margin: 20px 0 5px;
    font-size: 20px;
    display: block;
}

.searchCategory:first-child {
    margin-top: 0;
}

.dropdown-item.active {
    opacity: 0.3 !important;
    pointer-events: none !important;
}

.fithtyfithty .dropdown,
.fithtyfithty #locationChangeWindowButton {
    width: 280px !important;
}

.favoriteDlider::-webkit-scrollbar,
.magazineSlider::-webkit-scrollbar {
    display: none;
}

.favoriteSlider .Content {
    background-color: transparent;
    max-height: initial;
    min-height: initial;
    margin-bottom: 20px;
    box-shadow: none;
}

.favoriteSlider .favoriteIcon {
    left: 5px;
    top: 5px;
    height: 30px;
    width: 30px;
}

.favoriteSlider .teaserImageContainer {
    height: 70px;
    width: 70px;
    float: left;
    margin-right: 10px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.favoriteSlider .category {
    padding: 0;
    font-size: 10px;
}

.favoriteSlider .containerHeadline {
    font-size: 14px;
    line-height: 1;
    overflow: initial;
    height: initial;
    max-height: initial;
}

.favoriteSlider .date {
    font-size: 10px;
}

.cookieBanner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    height: auto;
    padding: 15px;
    width: 100vw;
    background-color: #202020;
    display: block;
}

.cookieInner {
    width: 90vw;
    max-width: 1440px;
    margin: 10px auto;
    display: flex;
    flex: auto;
    align-items: center;
}

.cookieInner p {
    width: 60%;
    color: white;
    margin-right: 10%;
    font-size: 14px;
}

.cookieButton {
    display: block;
    color: #ffffff;
    background-color: #D1281C;
    border-color: #D1281C;
    padding: 20px;
    width: 30%;
    border: none;
    border-radius: 10px;

}

@media (max-width:576px) {
    .cookieInner {
        display: block;
    }

    .cookieInner p {
        width: 100%;
        margin-bottom: 20px;
    }

    .cookieButton {
        margin: 0 auto;
        width: 100%;
    }
}

#aboutText {
    max-width: initial !important;
}

h4 {
    margin-left: 20px;
}

#helpAndSettings h4 {
    margin-top: 30px;
}

.likeBtn:not(:disabled):not(.disabled).active {
    background-color: transparent !important;
}

.overlay {
    height: 100vh;
    widows: 100vw;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;


}

.shareWindow {
    max-width: 250px;
}

.shareWindow > a {
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shareWindow > a:first-child {
    border-radius: 20px 0 0 20px;
}

.shareWindow > a:last-child {
    border-radius: 0 20px 20px 0;
}

.shareWindow > a:hover {
    transform: scale(1.1)
}

.shareFacebook {
    height: 50px;
    width: 50px;
    float: left;
    background-color: #4267B2;
    display: block;
}

.shareTwitter {
    height: 50px;
    width: 50px;
    float: left;
    background-color: #1DA1F2;
}

.shareLinkedin {
    height: 50px;
    width: 50px;
    float: left;
    background-color: #0072b1;
}

.shareMail {
    height: 50px;
    width: 50px;
    float: left;
    background-color: #00CAb1;
}

.shareClose {
    height: 50px;
    width: 50px;
    float: left;
    background-color: #FFF;
}

@media (max-width: 320px){
.eventTitle, .month, .containerHeadline {
max-width: 190px !important;
padding-left: 0;
}
}