/* TEAMSLIDER */
.ticker {
    position: relative;
    padding-bottom: 30px;
}
.ticker:after {
    content: "";
    width: 100%;
    height: 50%;
    background: var(--main);
    position: absolute;
    left: 0;
    bottom: -3px;
}
.news_gsap {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    transform-origin: 0 0;
    z-index: 1;
    position: relative;
    display: flex;
    font-size: .8em;
    user-select: none;
}
.news_gsap li {
    list-style: none;
    margin: 0px 50px;
    margin-left: 0;
    padding: 0 0px;
    display: inline-block;
    vertical-align: center;
    position: relative;
    border: 0px solid red;
    width: 340px;
    cursor: pointer;
}
.news_gsap li.noclick {
    pointer-events: none;
}
/*.news_gsap li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: red;
    opacity: 1;
    z-index: 2;
    opacity: .05;
    background: url(/images/noise_small.gif);
}*/
.news_gsap li .image {
    background: var(--accents);
}
.news_gsap li .image:nth-of-type(1) img {
    opacity: 1;
    transition: opacity ease 0.1s;
}
.news_gsap li:hover .image:nth-of-type(1) img {
    opacity: 0.7;
}
.news_gsap li .image:nth-of-type(2) {
    position: absolute;
    left: 0;
    top:0;
    transition: all 600ms;
}
.news_gsap li.showartwork .image:nth-of-type(2) {
    opacity: 0;
}
.news_gsap li img {
    display: block;
    width: 100%;
    pointer-events: none;
}
.news_gsap li .text {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 25px 30px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    color: var(--background);
    opacity: 1;
    transition: opacity ease 0.1s;
}
.news_gsap li.showartwork:hover .text {
    opacity: 0.7;
}
.news_gsap li.showartwork .text {
    color: var(--main);
}
.news_gsap li .text .name {
    /*font-size: 1.3em;
    font-weight: 700;*/
    line-break: 1;
    font-size: 1.6em!important;
}
.news_gsap li .text .tag {
    text-transform: lowercase;
    font-size: .9em;
    font-weight: 300;
}
.news_gsap li .place {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 10px 20px;
    color: var(--background);
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    display: none;
}
.news_gsap li.showartwork .place {
    opacity: 0;
}
.news_gsap li .toggle {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.news_gsap li.showartwork .toggle {
    background: #fff;
}
.news_gsap li .toggle .icon {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%; 
    top: 50%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(6deg) brightness(103%) contrast(103%);
    transform: translate(-50%,-50%);
}
.news_gsap li.showartwork .toggle .icon {
    filter: brightness(0) saturate(100%) invert(89%) sepia(1%) saturate(91%) hue-rotate(314deg) brightness(91%) contrast(95%);
}
.news_gsap li .toggle .icon.picture {
    opacity: 0;
}
.news_gsap li.showartwork .icon.draw {
    opacity: 0;
}
.news_gsap li.showartwork .icon.picture {
    opacity: 1;
}


@media screen and (max-width: 1100px) {
    .news_gsap li {
        margin: 0px 10px;
        width: 200px;
    }
    .news_gsap li .text {
        padding: 20px;
    }
    .news_gsap li .text .tag {
        display: none;
    }
    .news_gsap li .place {
        right: 10px;
        top: 10px;
        font-size: .7em;
        padding: 5px 10px;
    }
    .news_gsap li:after {
        background: none;
    }    

    .news_gsap li .toggle {
        left: 10px;
        top: 10px;
        width: 40px;
        height: 40px;
    }
}
