@CHARSET "ISO-8859-1";

.fix_center a {
    display: block;
    background: #212121;
    color: #FFF;
    cursor: pointer;
    z-index: 20;
    position: fixed;
    right: -58px;
    bottom: 150px;
    width: 150px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

    .fix_center a:hover {
        color: #52c9cc;
    }

.fix_calender a {
    display: block;
    background: url(../images/xmas2017_peel.png) no-repeat;
    background-position-y: 0px;
    color: #fff;
    cursor: pointer;
    z-index: 20;
    position: fixed;
    left: -150px;
    bottom: 120px;
    width: 250px;
    text-align: left;
    padding-left: 19px;
    height: 250px;
    line-height: 476px;
    font-size: 16px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

    .fix_calender a:hover {
        animation-name: advent-peel;
        animation-duration: 0.6s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
    }

    .fix_calender a button {
        position: absolute;
        transform: rotate(90deg);
        background: linear-gradient(rgba(249,55,58,1),rgba(193,7,7,1));
        border: 1px solid #212121;
        box-shadow: 2px 2px 5px #212121;
        top: 53px;
        left: 154px;
        line-height: 25px;
        width: 130px;
        height: 40px;
    }

@keyframes advent-peel {
    from {
        left: -148px;
    }

    to {
        left: -1px;
    }
}

.fix_stream a {
    display: block;
    border: 2px solid #f00;
    background-color: #fff;
    color: rgba(255,0,0,1);
    cursor: pointer;
    z-index: 21;
    position: fixed;
    left: 10px;
    bottom: 10px;
    width: 120px;
    text-align: center;
    height: 30px;
    line-height: 26px;
    font-size: 16px;
    border-radius: 15px;
}

    .fix_stream a:hover {
        animation-name: stream-peel;
        animation-duration: 0.6s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
    }

.fix_peel2 a {
    display: block;
    background-position-y: 0px;
    color: #fff;
    cursor: pointer;
    z-index: 20;
    position: fixed;
    left: -150px;
    bottom: 120px;
    width: 250px;
    text-align: left;
    height: 250px;
    line-height: 476px;
    padding-left: 10px;
    font-size: 14px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

    .fix_peel2 a:hover {
        animation-name: advent-peel;
        animation-duration: 0.6s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
        z-index: 22;
    }

    .fix_peel2 a button {
        position: absolute;
        transform: rotate(90deg);
        background: linear-gradient(rgba(249,55,58,1),rgba(193,7,7,1));
        border: 1px solid #212121;
        box-shadow: 2px 2px 5px #212121;
        top: 53px;
        left: 154px;
        line-height: 25px;
        width: 130px;
        height: 40px;
    }

@keyframes stream-peel {
    from {
        color: rgba(255,0,0,1);
        background-color: #fff;
    }

    to {
        color: rgba(255,255,255,1);
        background-color: #f00;
    }
}

.banner {
    position: relative;
}

    .banner .swiper-container {
        width: 100%;
        max-height: 470px;
    }

    .banner .swiper-slide > a {
        display: block;
    }

        .banner .swiper-slide > a > img {
            width: 100%;
        }

    .banner .swiper-button-prev, .banner .swiper-button-next {
        background-image: none;
        color: #FFF;
        margin-top: -65px;
        width: auto;
        height: auto;
        padding: 25px;
        -webkit-transition: color .3s;
        -moz-transition: color .3s;
        -o-transition: color .3s;
        transition: color .3s;
    }

        .banner .swiper-button-prev:hover, .banner .swiper-button-next:hover {
            color: #52c9cc;
        }

    .banner .swiper-button-prev {
        left: 0;
    }

    .banner .swiper-button-next {
        right: 0;
    }

    .banner .swiper-pagination-bullet {
        display: inline-block;
        width: 18px;
        height: 18px;
        background: #fff;
        border: 1px solid #212121;
        box-shadow: 0px 1px 1px #000;
        margin: 0 12px !important;
        cursor: pointer;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        opacity: 1;
    }

    .banner .swiper-pagination {
        position: absolute;
        bottom: 275px;
        width: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -o-transition: none !important;
        transition: none !important;
    }

    .banner .swiper-pagination-bullet-active {
        background: #52c9cc;
    }

.bannerCont {
    width: 100%;
    position: absolute;
    top: 2%;
    z-index: 1;
    padding-left: 70px;
}

.banner .swiper-slide .backShim {
    position: absolute;
    top: 0;
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.backShim div {
    background-color: #000;
    opacity: 0;
    height: 100%;
    width: calc(80% + 40px);
    margin-left: -40px;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

    .backShim div.scrollIn {
        opacity: 0.3;
    }

.bannerCont .headline {
    width: 75%;
    height: 115px;
    overflow: hidden;
}

    .bannerCont .headline span {
        top: -30px;
        position: relative;
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        color: #FFF;
        font-size: 48px;
        line-height: 115px;
        text-overflow: ellipsis;
        opacity: 0;
        -webkit-transition: top .25s, opacity .25s;
        -moz-transition: top .25s, opacity .25s;
        -o-transition: top .25s, opacity .25s;
        transition: top .25s, opacity .25s;
    }

        .bannerCont .headline span.scrollIn {
            top: 0;
            opacity: 1;
        }

    .bannerCont .headline img {
        width: 100%;
    }

.bannerCont .goldEditionList {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: -60px;
    display: inline-block;
    opacity: 0;
    -webkit-transition: margin-left .5s, opacity .5s;
    -moz-transition: margin-left .5s, opacity .5s;
    -o-transition: margin-left .5s, opacity .5s;
    transition: margin-left .5s, opacity .5s;
}

    .bannerCont .goldEditionList.scrollIn {
        margin-left: 0;
        opacity: 1;
    }

    .bannerCont .goldEditionList li {
        color: #FFF;
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 14px;
        display: inline-block;
    }

        .bannerCont .goldEditionList li:last-child {
            margin-bottom: 0;
        }

        .bannerCont .goldEditionList li img {
            vertical-align: middle;
            padding-right: 10px;
            margin-top: -5px;
        }

.bannerCont .buy {
    display: inline;
}

.bannerCont .commKF, .bannerCont .commButton {
    max-width: 170px;
    top: -5px;
    margin-left: 100px;
    opacity: 0;
    -webkit-transition: margin-left .5s, opacity .5s;
    -moz-transition: margin-left .5s, opacity .5s;
    -o-transition: margin-left .5s, opacity .5s;
    transition: margin-left .5s, opacity .5s;
}

    .bannerCont .commKF.scrollIn, .bannerCont .commButton.scrollIn {
        opacity: 1;
        margin-left: 0;
    }

.bannerCont .itemPrice {
    display: inline-block;
    color: #52c9cc;
    font-size: 36px;
    line-height: 36px;
    margin-left: 20px;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}

    .bannerCont .itemPrice.scrollIn {
        opacity: 1;
    }

    .bannerCont .itemPrice del {
        display: block;
        color: #fff;
        font-size: 14px;
        line-height: 14px;
    }

.preorder {
    position: relative;
}

.preorderCont {
    background: #212121;
    background-blend-mode: multiply;
    margin-top: -250px;
    z-index: 1;
    position: relative;
    color: #FFF;
    padding: 0 15px;
}

    .preorderCont:after {
        content: "";
        background: url(../images/sw.jpg) no-repeat center center;
        opacity: 0.3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }

.preL {
    padding-bottom: 15px;
    position: relative;
}

    .preL > a {
        display: block;
        color: #FFF;
    }

    .preL h3 {
        color: #FFCC00;
        font-size: 48px;
        margin-top: 10px;
    }

.preLCont {
    position: relative;
}

    .preLCont .preLImg img {
        padding-top: 10px;
        width: 100%;
    }

    .preLCont .title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .preLCont .bester {
        font-size: 20px;
    }

        .preLCont .bester li {
            line-height: 28px;
        }

            .preLCont .bester li img {
                margin-right: 10px;
                margin-top: -5px;
            }

    .preLCont .preis > div {
        margin-top: 30px;
        width: 50%;
        float: left;
    }

    .preLCont .preis .preisR ul {
        background: #333;
        padding: 20px;
        display: inline-block;
    }

    .preLCont .preis .preisR li {
        width: 32px;
        height: 32px;
        border-radius: 4px;
        text-align: center;
        line-height: 32px;
        background: #FFF;
        display: inline-block;
        margin-right: 16px;
        position: relative;
        color: #212121;
    }

        .preLCont .preis .preisR li:last-child {
            margin-right: 0;
        }

        .preLCont .preis .preisR li:after {
            content: ":";
            width: 16px;
            height: 32px;
            text-align: center;
            font-size: 20px;
            color: #FFF;
            position: absolute;
            right: -16px;
            top: -3px;
        }

        .preLCont .preis .preisR li:last-child:after {
            content: "";
            width: 0;
            height: 0;
        }

    .preLCont .preis .oldPreis {
        display: block;
    }

    .preLCont .preis .newPreis {
        color: #52c9cc;
        font-size: 36px;
        display: block;
    }

    .preLCont .preis .preisR span {
        display: block;
        margin: 41px 0 10px;
    }

    .preLCont .preis .commKF, .preLCont .preis .commButton {
        max-width: 170px;
        margin-top: 20px;
    }

.preR {
    padding: 0;
}

    .preR li {
        border-bottom: 1px solid #9A9A9A;
        overflow: hidden;
        padding-top: 25px;
        position: relative;
    }

        .preR li > a {
            display: block;
            color: #FFF;
        }

            .preR li > a > div {
                float: left;
            }

    .preR .preRImg {
        width: 100px;
        height: 90px;
    }

        .preR .preRImg img {
            width: 100%;
        }

    .preR .preRCont {
        width: 45%;
        margin: 0 5%;
    }

        .preR .preRCont h4 {
            margin-top: 0;
            font-size: 20px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            margin-bottom: 15px;
        }

        .preR .preRCont .nowPrice {
            position: absolute;
            bottom: 5px;
        }

            .preR .preRCont .nowPrice del {
                font-size: 12px;
            }

            .preR .preRCont .nowPrice p {
                color: #52C9CC;
                font-size: 20px;
                margin-top: -5px;
            }

        .preR .preRCont .reduce {
            color: #FFCB00;
            font-size: 30px;
            position: absolute;
            bottom: 0px;
            left: 50%;
        }

    .preR .commKF, .preR .commButton {
        width: 100px;
        height: 24px;
        line-height: 24px;
        font-size: 14px;
        position: absolute;
        bottom: 10px;
    }

.twitchFront {
    position: relative;
    margin-top: 20px;
}

.twitchFrontCont {
    background: #6441a4;
    position: relative;
    padding: 0 15px;
    z-index: 0;
}

    .twitchFrontCont:after {
        content: "";
        background: url(../images/sw.jpg) no-repeat left top;
        opacity: 0.3;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }

.twitchFrontL {
    padding-bottom: 15px;
    position: relative;
}

.twitchFrontCont h3 {
    color: #FFF;
    font-size: 48px;
    margin: 0;
    padding: 10px 0;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .twitchFrontCont h3 a {
        color: inherit;
    }

.twitchFrontR {
    padding-left: 0;
}

.advertisements {
    width: 300px;
    position: absolute;
    top: 50px;
    z-index: 5;
}

    .advertisements img {
        width: 100%;
    }

.advertisementsLeft {
    margin-left: -300px;
}

.advertisementsRight {
    margin-left: 1170px;
}

.specail {
    background: #25b4b1;
    position: relative;
    z-index: 0;
}

    .specail::after {
        content: "";
        background: url(../images/sw.jpg) repeat-x center center;
        background-size: cover;
        opacity: 0.33;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }

    .specail .container {
        padding: 0;
    }

    .specail .row {
        margin: 0;
    }

    .specail .specailTitle {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

        .specail .specailTitle span {
            border: 1px solid #52c9cc;
            padding: 5px 40px;
            color: #FFF;
            float: right;
            font-size: 14px;
        }

            .specail .specailTitle span a {
                display: block;
                color: #FFF;
            }

    .specail .container > div > div {
        padding: 30px 0;
        overflow: hidden;
    }

        .specail .container > div > div.speSkin {
            /*padding-bottom: 60px;*/
            border-right: 1px solid #fff;
            box-shadow: 1px 0 0 #000;
        }

    .specail .speName {
        line-height: 20px;
        color: #212121;
        overflow: hidden;
    }

    .specail .speContR .speName {
        height: 20px;
    }

    .specail .speContL .speName {
        height: 40px;
    }

    .specail .speMoney {
        color: #212121;
    }

    .specail .speCont {
        text-align: center;
    }

    .specail .speContR > div {
        margin-bottom: 29px;
    }

    .specail .speContL > div {
        margin-bottom: 20px;
    }

    .specail .speCont a {
        color: #212121;
    }

    .specail .speCont span {
        display: block;
        width: 100%;
    }

    .specail .speContR span {
        height: 174px;
    }

    .specail .speContL span {
        /*height: 124px;*/
    }

    .specail .speCont span img {
        max-width: 100%;
        max-height: 100%;
        display: block;
        margin: 10px auto;
    }

    .specail .speCont .commKF, .specail .speCont .commButton {
        max-width: 120px;
        margin-top: 5px;
    }

    .specail .specailTitle span:hover {
        background: rgba(255,255,255,0.5);
    }

        .specail .specailTitle span:hover a {
            color: #212121;
        }

.commSwiper .itmeTime {
    background: #212121;
    font-size: 16px;
    color: #FFF;
    margin-bottom: 10px;
}

.anmeldenCont {
    margin: 10px 0;
}

.anmeldenTitle {
    font-size: 54px;
    color: #212121;
    padding-bottom: 33px;
    font-style: italic;
}

.anmeldenCont .row > div {
    display: inline-block;
}

.commAnmeldenCont {
    background: #FFF;
    border: 1px solid #d6d6d6;
    box-shadow: 0 0 3px #d6d6d6;
    margin-bottom: 20px;
}

    .commAnmeldenCont .allTitle {
        height: 60px;
        line-height: 60px;
        background: #212121;
        color: #FFF;
        padding: 0 15px;
        font-size: 20px;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

        .commAnmeldenCont .allTitle:after {
            content: "";
            background: url(../images/sw.jpg) no-repeat bottom center;
            opacity: 0.33;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            position: absolute;
            z-index: -1;
        }

        .commAnmeldenCont .allTitle i {
            font-size: 30px;
            float: right;
            line-height: 60px;
            display: none;
        }

.anmeldenBox {
    padding: 15px;
    line-height: 24px;
    color: #000;
    height: 360px;
}

    .anmeldenBox .input-group {
        margin: 20px 0 30px;
    }

    .anmeldenBox .input-group-addon, .anmeldenBox .form-control {
        border-radius: 0;
        border: 2px solid #ddd;
        box-shadow: none;
    }

    .anmeldenBox .form-control {
        height: 45px;
        border-left: none;
    }

    .anmeldenBox .input-group-addon {
        padding: 6px 20px;
        color: #9a9a9a;
    }

    .anmeldenBox .vergessen a {
        text-align: right;
        color: #9a9a9a;
        font-size: 14px;
        display: block;
        margin: -22px 0 30px;
    }

        .anmeldenBox .vergessen a:hover {
            color: #51C9CB;
        }

    .anmeldenBox .commKF:hover:before, .anmeldenBox .commKF:hover:after {
        border-width: 34px 900px;
    }

    .anmeldenBox .neukunde1 {
        margin: 10px 0;
    }

        .anmeldenBox .neukunde1 i {
            margin-right: 5px;
            color: #52c9cc;
        }

    .anmeldenBox .neukunde2 {
        margin: 20px 0 45px;
    }

        .anmeldenBox .neukunde2 p {
            margin-bottom: 5px;
        }

        .anmeldenBox .neukunde2 label {
            font-weight: 100;
            display: block;
            margin-bottom: 0;
        }

            .anmeldenBox .neukunde2 label input {
                margin-right: 5px;
            }

    .anmeldenBox .loginLogo {
        overflow: hidden;
        margin-top: 20px;
    }

        .anmeldenBox .loginLogo ul {
            margin: 0 auto;
        }

        .anmeldenBox .loginLogo li {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            text-align: center;
            line-height: 45px;
            margin-right: 10px;
            margin-bottom: 15px;
            /*background: url(../images/lgIcon.png) no-repeat;*/
            background-size: cover;
            float: left;
        }

            .anmeldenBox .loginLogo li a {
                display: block;
            }

            .anmeldenBox .loginLogo li:nth-child(1) {
                background-position: 0 0;
            }

            .anmeldenBox .loginLogo li:nth-child(2) {
                background-position: -45px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(3) {
                background-position: -90px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(4) {
                background-position: -135px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(5) {
                background-position: -180px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(6) {
                background-position: -225px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(7) {
                background-position: -270px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(8) {
                background-position: -315px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(9) {
                background-position: -360px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(10) {
                background-position: -405px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(11) {
                background-position: -450px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(12) {
                background-position: -495px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(13) {
                background-position: -540px 0;
            }

            .anmeldenBox .loginLogo li:nth-child(14) {
                background-position: -585px 0;
            }

            .anmeldenBox .loginLogo li a {
                display: block;
                color: #FFF;
                font-size: 12px;
            }

            .anmeldenBox .loginLogo li img {
                width: 100%;
                height: 100%;
            }

.rechteck {
    background: #FFF;
    border: 1px solid #d6d6d6;
    box-shadow: 0 0 3px #d6d6d6;
    overflow: hidden;
    margin-bottom:20px;
}

.rechteckHeader {
    height: 65px;
    line-height: 65px;
    text-align: center;
    color: rgb(154,154,154);
    font-size: 16px;
    border-bottom: 2px solid rgb(238,238,238);
}

    .rechteckHeader li {
        float: left;
        text-align: center;
    }

        .rechteckHeader li:first-child {
            text-align: left;
            padding-left: 15px;
        }

        .rechteckHeader li:nth-child(1), .artikelList li:nth-child(1) {
            width: 70%;
        }

        /*.rechteckHeader li:nth-child(2), .artikelList li:nth-child(2) {
            width: 10%;
        }*/

        .rechteckHeader li:nth-child(2), .artikelList li:nth-child(3) {
            width: 12%;
        }

        .rechteckHeader li:nth-child(3), .artikelList li:nth-child(4) {
            width: 18%;
        }

.artikelList ul {
    font-size: 0;
}

.artikelList li {
    font-size: 14px;
    display: inline-table;
    vertical-align: middle;
    position: relative;
}

.artikelList {
    border-bottom: 2px solid rgb(238,238,238);
    overflow: hidden;
}

.artike {
    width: 100%;
    padding: 5px 15px 5px 100px;
    overflow: hidden;
    vertical-align: middle;
}

    .artike > div {
        display: inline-block;
        vertical-align: middle;
    }

    .artike .artikeImg {
        width: 40px;
        margin-left: -85px;
    }

        .artike .artikeImg img {
            width: 100%;
        }

    .artike .artikeDatail {
        width: 100%;
        padding-left: 10px;
    }

    .artike .artikeTitle {
        font-weight: 700;
        color: #212121;
        padding-bottom: 5px;
        line-height: 18px;
        font-size: 16px;
    }

    .artike .commartikeCont {
        margin-bottom: 2px;
    }

        .artike .commartikeCont > div {
            display: inline;
        }

        .artike .commartikeCont .commartikeName {
            color: #000;
        }

        .artike .commartikeCont .commartikeCent {
            color: #9A9A9A;
        }

    .artike .commAfuBtn {
        margin: 30px 0 0;
    }

    .artike .commAfuBtnPlchldr {
        margin: 30px 0;
    }

.artikelList .lieferzeit {
    color: #52C9CC;
    text-align: center;
}

    .artikelList .lieferzeit p {
        width: 100%;
        line-height: 30px;
        position: absolute;
        top: 50%;
        margin-top: -15px;
    }

        .artikelList .lieferzeit p i {
            margin-right: 5px;
            display: none;
        }

    .artikelList .lieferzeit .anzahlNum {
        display: none;
    }

.anzahl .anzahlBtn {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -45px;

}

    .anzahl .anzahlBtn button {
        float: left;
        width: 30px;
        height: 30px;
        background: rgb(238,238,238);
        display: inline-block;
    }

        .anzahl .anzahlBtn button:hover {
            background: rgb(206,206,206);
        }

    .anzahl .anzahlBtn .num {
        border: 1px solid #ddd;
        float: left;
        width: 30px;
        height: 30px;
        line-height: 30px;
        display: inline-block;
        text-align: center;
    }

.summe {
    width: 100%;
    line-height: 24px;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    text-align: center;
}

    .summe .summeVal {
        color: #212121;
        font-weight: 700;
        font-size: 16px;
    }

    .summe i {
        color: #FFF;
        cursor: pointer;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #ddd;
        position: absolute;
        right: 30px;
        top: 3px;
        text-align: center;
        line-height: 18px;
        font-size: 12px;
        z-index: 5;
    }

        .summe i:hover {
            background: #f00;
        }

.artikelList.cur .lieferzeit {
    color: #e8647c;
}

.artikelList.cur .anzahl .anzahlBtn .num {
    border: 1px solid #e8647c;
}

.gesamtsumme {
    width: 25%;
    padding: 10px 0;
    float: right;
}

.gesamtsummeToal {
    font-size: 20px;
    color: #212121;
    font-weight: 700;
    line-height: 40px;
    border-top: 1px solid rgb(238,238,238);
}

    .gesamtsummeToal span {
        float: right;
        margin-right: 20%;
    }
.gesamtsummelist {
    font-size: 16px;
    color: #212121;
    font-weight: 700;
    line-height: 30px;
    
}

    .gesamtsummelist span {
        float: right;
        margin-right: 20%;
    }
    
.gesamtsumme .btnBox {
    margin-right: 20%;
    overflow: hidden;
}

    .gesamtsumme .btnBox button {
        margin: 5% 5% 0 0;
        float: left;
        height: 40px;
        color: #FFF;
    }

        .gesamtsumme .btnBox button i {
            margin: 0 5px;
            font-size: 18px;
        }

    .gesamtsumme .btnBox .btn1 {
        background: #212121;
        width: 50%;
    }

        .gesamtsumme .btnBox .btn1:hover {
            background: #676767;
        }

    .gesamtsumme .btnBox .btn2:hover {
        background: #3d989a;
    }

    .gesamtsumme .btnBox .btn2 {
        background: #52C9CC;
        margin-right: 0;
        width: 45%;
    }

.gesamtsumme .oder {
    width: 45%;
    float: right;
    margin: 10px 0;
}

    .gesamtsumme .oder .oderTit {
        height: 30px;
        line-height: 30px;
        border-bottom: 2px solid #EEE;
        text-align: center;
    }

        .gesamtsumme .oder .oderTit span {
            display: inline-block;
            margin-top: 14px;
            background: #FFF;
            padding: 0 10px;
            font-size: 16px;
        }

    .gesamtsumme .oder .paypalCheckOutButton {
        margin-top: 30px;
    }

.merkliste {
    font-size: 24px;
    color: #25B3B1;
    margin: 30px 0 20px;
}

.merklisteList .rechteckHeader li:nth-child(1), .merklisteList .artikelList li:nth-child(1) {
    width: 43%;
}

.merklisteList .rechteckHeader li:nth-child(2), .merklisteList .artikelList li:nth-child(2) {
    width: 35%;
}

.merklisteList .rechteckHeader li:nth-child(3), .merklisteList .artikelList li:nth-child(3) {
    width: 22%;
}

.merklisteList div.artikelList:last-child {
    margin-bottom: 40px;
}

.shopKong {
    display: block;
    width: 40%;
    max-width: 200px;
    margin: 60px auto 30px;
}

.verify.artike {
    width: 100%;
    padding: 0;
    overflow: hidden;
    vertical-align: middle;
}

    .verify.artike > div {
        display: block;
        vertical-align: middle;
    }

.showKey .commButton {
    max-width: 260px;
    margin-top: 10px;
}

.social_media_button_wrapper {
    margin: 0 auto;
}

.social_media_button_bar {
    text-align: center;
    margin-top: 1em;
}

    .social_media_button_bar a {
        margin: 10px;
        line-height: 4.5em;
    }

.payCoupon,.payuser {
    overflow:hidden;
   width:100%;
   margin-bottom:20px;
}
 
.payCoupon,.delivery {
    overflow:hidden;
   width:100%;
   margin-bottom:20px;
}
.payCoupon  .coupondiv,.payuser .coupondiv,.delivery .coupondiv
{
    float:left;
    width:50%;
    position: relative;
}

.payCoupon  .pointdiv,.payuser .pointdiv,.delivery .pointdiv
{
    float:left;
    width:50%;
    position: relative;
}
/*.delivery .pointdiv {
    padding-top:32px;
}*/
.delivery .Trading {
   width:68%;
   display:inline-block;
   font-size:16px;
   margin:0 1%;
}
.delivery .productOptions {
    margin-left:10px;
}

.payuser .pointdiv {
    padding-top:32px;
}
.payCoupon  .green
{
    color:#52c9cc;
}

 
@media (max-width:1750px) {
    .advertisements {
        display: none;
    }
}

@media (max-width:1440px) {
    .banner .swiper-slide .backShim {
        left: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .backShim div {
        margin-left: 0;
        width: 80%;
    }
}

@media (max-width:1200px) {
    .banner .swiper-pagination {
        bottom: 125px;
    }

    .preorderCont {
        margin-top: -100px;
    }

    .preL h3 {
        font-size: 42px;
    }

    .bannerCont {
        top: 9%;
    }

    .preR .preRCont {
        width: 44%;
        margin: 0 2%;
    }

        .preR .preRCont .reduce {
            margin-right: 10%;
        }

    .twitchFrontCont h3 {
        font-size: 42px;
    }

    .anmeldenBox .neukunde1 {
        font-size: 14px;
    }

    .anmeldenBox .neukunde2 {
        margin: 10px 0 20px;
    }

    .gesamtsumme .btnBox button {
        font-size: 14px;
    }
}

@media (max-width:992px) {
    .banner .swiper-pagination {
        bottom: 60px;
    }

    .preorderCont {
        margin-top: -50px;
    }

    .preL h3 {
        font-size: 30px;
    }

    .preR .preRCont {
        width: 50%;
        margin: 0 4%;
    }

    .preLCont .title {
        font-size: 24px;
    }

    .preR li {
        padding: 20px 10px 0;
    }

    .preR {
        border-top: 1px solid #9A9A9A;
    }

    .twitchFrontCont h3 {
        font-size: 30px;
    }

    .bannerCont .goldEditionList {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .specail .container > div > div.speSkin {
        padding-bottom: 90px;
    }

    .specail .specailTitle {
        font-size: 20px;
    }

        .specail .specailTitle span {
            padding: 5px 20px;
        }

    .anmeldenBox {
        height: auto;
    }

        .anmeldenBox .neukunde1 {
            font-size: 16px;
        }

    .commAnmeldenCont .allTitle {
        cursor: pointer;
    }

        .commAnmeldenCont .allTitle i {
            display: block;
        }

    .anmeldenBox {
        display: none;
    }

    .m_slideShow .anmeldenBox {
        display: block;
    }

    .rechteck {
        padding: 0 15px;
    }

    .rechteckHeader {
        display: none;
    }

    .artikelList {
        position: relative;
    }

    .summe i {
        top: 15px;
        right: 0px;
    }

    .artikelList li {
        display: inline-block;
        width: 100% !important;
        position: initial;
    }

    .artike {
        position: relative;
        padding: 20px 0 10px;
        overflow: inherit;
    }

        .artike > div {
            display: block;
        }

        .artike .artikeImg {
            position: absolute;
            top: 20px;
            left: 0;
            margin-left: 0;
        }

        .artike .artikeTitle {
            padding-bottom: 0px;
            padding-right: 20px; 
          
              
            
        }
      
        .artike .artikeDatail {
            padding-left: 50px;
         
        }

        .artike .commAfuBtn {
            margin: 70px 0 0px;
        }

        .artike .commAfuBtnPlchldr {
            margin: 70px 0 0px;
        }

    .artikelList .lieferzeit {
        text-align: left;
        position: initial;
        bottom: 83px;
    
    }

        .artikelList .lieferzeit.noWl {
            bottom: 53px;
        }

        .artikelList .lieferzeit p {
            position: initial;
            text-align: left;
            padding-left: 85px;
            display: inline-block;
            width: auto;
            padding-right: 15px;
        }

            .artikelList .lieferzeit p i.fa-envelope-o {
                display: inline-block;
            }

    .artikelList.cur .lieferzeit p i.fa-envelope-o {
        display: none;
    }

    .artikelList.cur .lieferzeit p i.fa-ban {
        display: inline-block;
    }

    .artikelList.cur .lieferzeit .anzahlNum span {
        color: #e8647c;
    }

    .artikelList .lieferzeit .anzahlNum {
        display: inline-block;
        color: #212121;
        border-left: 0px solid #212121;
        position: initial;
    }

        .artikelList .lieferzeit .anzahlNum select {
            padding: 0 10px;
        }


        .artikelList .lieferzeit .anzahlNum input {
            padding: 0 2px;
            border: 1px solid #ddd;
            width: 35px;
            height: 25px;
            line-height: 25px;
            display: inline-block;
            text-align: center;
        }

    .anzahl {
        display: none;
    }

    .summe {
        position: initial;
        text-align: left;
        padding-left: 50px;
        line-height: 30px;
        margin-top:5px;
      
    }

        .summe.noWl {
            margin-top: -55px;
        }

    .gesamtsumme {
        width: 100%;
    }

    .gesamtsummeToal {
        text-align: right;
        border-bottom: none;

    }

        .gesamtsummeToal span {
            float: none;
            padding: 0;
        }
        
    .gesamtsummelist {
        text-align:right;
        border-bottom: none;
          font-size: 16px;

    }

        .gesamtsummelist span {
            float: none;
            padding: 0;
        }

    .gesamtsumme .btnBox {
        margin-right: 0;
    }

        .gesamtsumme .btnBox button {
            margin-top: 0;
            font-size: 16px;
        }

    .gesamtsumme .oder .paypalCheckOutButtonContainer img {
        max-width: 25% !important;
    }

    .merkliste {
        padding-left: 0px;
        margin: 40px 0 20px;
    }

    .gesamtsummeToal {
        font-size: 22px;
    }

        .gesamtsummeToal span {
            margin-right: 0;
        }
  .gesamtsummelist span {
        float: right;
        margin-right: 8%;
    }
}

@media (max-width:840px) {
    .banner .swiper-pagination {
        display: none;
    }

    .payCoupon .coupondiv, .payuser .coupondiv, .delivery .coupondiv {
        float: left;
        width: 100%;
        position: relative;
    }

    .payCoupon .pointdiv, .payuser .pointdiv, .delivery .pointdiv {
        float: left;
        width: 100%;
        position: relative;
    }

    .payuser .pointdiv {
        padding-top: 0px;
    }
    .delivery .pointdiv {
        padding-top: 32px;
    }
}

@media (max-width:768px) {
    .fix_center a, .fix_calender a, .fix_stream a, .fix_peel2 a {
        display: none;
    }

    .preorderCont {
        margin-top: 0;
        background-size: auto 100%;
    }

    .preR li {
        padding: 10px 10px 5px;
    }

    .preL h3 {
        font-size: 24px;
    }

    .preLCont .title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .preLCont .bester {
        font-size: 16px;
    }

        .preLCont .bester li {
            line-height: 30px;
        }

    .preLCont .preis > div {
        margin-top: 10px;
    }

    .preLCont .preis .oldPreis {
        font-size: 12px;
    }

    .preLCont .preis .newPreis {
        font-size: 18px;
    }

    .preR .preRCont h4 {
        margin-bottom: 10%;
    }

    .preR .preRCont .reduce {
        font-size: 24px;
        bottom: 5px;
    }

    .preR .preRImg {
        width: 15%;
        height: auto;
    }

    .preLCont .preis .preisR span {
        font-size: 12px;
        margin: 20px 0 10px;
         
    }

    .preLCont .preis .preisR ul {
        padding: 10px;
    }

    .preLCont .preis .preisR li {
        width: 24px;
        height: 24px;
        line-height: 24px;
        margin-right: 8px;
    }

    .preLCont .m_preL {
        padding: 0;
    }

    .preLCont .preis .preisR li:after {
        width: 10px;
        right: -10px;
    }

    .preR .commKF, .preR .commButton {
        width: 26%;
    }

    .preLCont .preis .commKF, .preLCont .preis .commButton {
        max-width: 100px;
        margin-top: 10px;
    }

    .twitchFrontCont h3 {
        font-size: 24px;
    }

    .bannerCont {
        padding-left: 10px;
        top: 10%;
    }

    .banner .swiper-slide .backShim {
        width: 100%;
    }

    .banner .swiper-container {
        max-height: 38.697vw;
    }

    .banner .swiper-button-prev, .banner .swiper-button-next {
        display: none;
    }

    .bannerCont .headline {
        height: 40px;
    }

        .bannerCont .headline span {
            font-size: 24px;
            line-height: 40px;
        }

    .bannerCont .goldEditionList {
        margin-top: 0;
        margin-bottom: 10px;
    }

        .bannerCont .goldEditionList li {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 0;
        }

    .bannerCont .commKF, .bannerCont .commButton {
        max-width: 100px;
        height: 24px;
        line-height: 24px;
        top: -2px;
    }

    .bannerCont .itemPrice {
        font-size: 22px;
        line-height: 22px;
        margin-left: 10px;
    }

        .bannerCont .itemPrice del {
            font-size: 12px;
            line-height: 12px;
        }

    .banner .swiper-pagination {
        bottom: 10px;
        display: block;
    }

    .specail .container > div > div {
        padding: 10px;
    }

    .specail .specailTitle {
        font-size: 18px;
        margin-bottom: 10px;
        padding: 0;
    }

        .specail .specailTitle span {
            padding: 3px 3%;
        }

    .specail .container > div > div.speSkin {
        padding-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid #fff;
        box-shadow: 0 1px 0 #000;
    }

    .specail {
        background-size: auto 100%;
    }

    .speCont > div:nth-child(5), .speCont > div:nth-child(6) {
        display: none;
    }

    .anmeldenCont .row {
        margin: 0;
    }

    .anmeldenTitle {
        font-size: 30px;
        padding-left: 10px;
        padding-bottom: 10px;
    }

    .anmeldenCont {
        margin: 0;
    }

        .anmeldenCont .commPageTitle {
            margin: 0 0 10px 10px;
        }

    .gesamtsumme {
        padding:0px;
    }

    .artikelList .lieferzeit p {
        padding-right: 5px;
    }

    .artikelList .lieferzeit .anzahlNum {
        padding-left: 50px;
    }
 
}

@media (max-width:480px) {
    .banner .swiper-pagination {
        width: 100%;
    }

    .gesamtsumme .oder .paypalCheckOutButtonContainer img {
        max-width: 39% !important;
    }
    .delivery .Trading {
        width: 100%;
        display: inline-block;
        font-size: 16px;
        margin: 0 1%;
    }
}

@media (max-width:380px) {
    .artikelList .lieferzeit p {
        padding-right: 0;
        display: block;
    }

    .artikelList .lieferzeit .anzahlNum {
        display: block;
        /*padding-left: 85px;*/
        border-left: none;
    }

        .artikelList .lieferzeit .anzahlNum select {
            padding: 0 5px;
            font-size: 14px;
        }

    .artike .commAfuBtn {
        margin: 100px 0 0px;
    }

    .artike .commAfuBtnPlchldr {
        margin: 100px 0 0px;
    }

    .merklisteList .artike .commAfuBtn {
        margin: 70px 0 0px;
    }

    .summe {
        /*margin-top: -80px;*/
    }

        .summe.noWl {
            margin-top: -50px;
        }

    .gesamtsumme .btnBox button {
        font-size: 14px;
    }

    .banner .swiper-pagination {
        display: none;
    }
  
}

.countdown_knb ul {
        background: #52c9cc;
        padding: 5px;
        display: inline-block;
          border-radius: 4px;
    }

    .countdown_knb li {
        width: 32px;
        height: 25px;
        border-radius: 4px;
        text-align: center;
        line-height: 25px;
        background: #FFF;
        display: inline-block;
        margin-right: 15px;
 
        position: relative;
        color: #212121;
        padding:0px;
    }

        .countdown_knb li:last-child {
            margin-right: 0;
        }

        .countdown_knb li:after {
            content: ":";
            width: 16px;
            height: 32px;
            text-align: center;
            font-size: 20px;
            color: #FFF;
            position: absolute;
            right: -16px;
            top: -3px;
        }

        .countdown_knb li:last-child:after {
            content: "";
            width: 0;
            height: 0;
        }