/**
   Fix brand logos
 */
.teaser-container .teaser .card .teaser-mediacontainer img {
    object-fit: contain!important;
}

a:after {
    display: none;
}
a:hover {
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
}

.qrcodeHandler__languageOption--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1em auto;
}

.qrcodeHandler__languageOption {
    /*width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 1.5rem;
    display: flex;
}

.qrcodeHandler__languageOption a {
    /* color: #000;
    font-weight: 700;
    padding: 0px !important;
    white-space: nowrap; */
    color: #000;
    font-weight: normal;
    width: 100%;
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    text-align: left;
    position: relative;
}
.qrcodeHandler__languageOption a:after {
    content: '';
    border: solid #a0a5a8;
    border-width: 0px 2px 2px 0;
    display: block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 15px;
    left: auto;
    z-index: 1;
    margin-top: -3px;
}
.qrcodeHandler__languageOption a:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.content-container .row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    margin:2em auto;
    max-width: 320px;
    /* max-width: 150px; */
}
.content-container .row .box {
    width: 100%;
    padding: 1.5rem;
    cursor: pointer;
}
.content-container .row .box .link {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 5px;
    border-radius: 5px;
    display: flex;
    height: 100px;
    width: 100%;
    justify-content: center;
    cursor: pointer;
}
.content-container .row .box .link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.content-container .row .box .link img {
    max-width: 60%;
}

@media(min-width:768px){
    .content-container .row {
        max-width: 800px;
        flex-direction: row;
    }
    .content-container .row .box {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}