:root {
    --global-color-dark: rgba(0,0,0,1);
    --global-color-grey: rgb(112, 112, 112);
    --global-color-light: rgb(255, 255, 255);
    --global-color-red: rgb(190, 62, 61);
    --global-color-sand: rgb(250,246,235);
    --global-color-darksand: rgb(190,159,104);
    --global-color-blue: rgb(202, 231, 236);
    --global-color-yellow: rgba(247,204,93,1);
    --global-color-green: rgba(134,192,104,1);
    --global-color-darkblue: rgb(73, 168, 220);
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 320px;
    min-height: 100vh;
    font-size: 18px;
    line-height: 130%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #222;
    word-wrap: break-word;
    height: 100%;
    background-color: #FAF6EB;
}

h1, h2, h3, h4, h5 {
    color: var(--global-color-red);
    font-family: 'Grandstander', sans-serif;
    display: block;
    line-height: 120%;
    margin: 0 0 15px 0;
    font-size: 16px;
}

h1 {
    font-size: 30px;
    width: 100%;
    text-align: center;
}

.productview h1 {
    text-align: left;
}

h2 {
    font-size: 26px;
}

.item.result h2 {
    text-align: left;
    margin-top: 20px;
}
.item.result p {
    text-align: left;
    margin-top: 20px;
}

a {
    color: var(--global-color-red);
}

strong, b {
    font-weight: 600;
}

p {
    margin-bottom: 0.8em;
}

.body ul {
    list-style-type: none !important;
    padding: 0;
    margin: 0 0 0.8em 0;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}

.body ul li {
    padding-left: 1.3em;
    margin-bottom: 4px;
    position: relative;
}

.body ul li::before {
    padding-right: 4px;
    content: "▪";
    font-family: 'Source Sans Pro', sans-serif;
    position: absolute;
    left: 0;
    font-size: 16px;
    color: #D64644;
}

.body ol {
    list-style-type: none !important;
    margin-bottom: 0.8em;
    margin-left: 1.5em;
}

.body ol li {
    counter-increment: count-me;
}

.body ol li::before {
    content: counter(count-me) ". ";
    display: block;
    position: relative;
    max-width: 0;
    max-height: 0;
    left: -1.3em;
    top: .05em;
    color: rgba(181,197,83,1);
    font-weight: bold;
}

.body ol li ol li {
    counter-increment: none;
}

.body ol li ol li:before {
    display: none;
}


.quote:before {
    color: #222222;
    content: open-quote;
    font-size: 1.8em;
    line-height: 0.1em;
    margin-right: 0.1em;
    vertical-align: -0.3em;
}

.quote:after {
    color: #222222;
    content: close-quote;
    font-size: 1.8em;
    line-height: 0.1em;
    margin-right: 0.15em;
    vertical-align: -0.35em;
}
.quote {
    color: #222222;
    font-size: 1.3em;
    font-style: italic;
    line-height: 135%;
    margin: 0;
    padding: 0.2em 0 0.2em;
    quotes: "“" "”" "‘" "’";
    width: 100%;
    position: relative;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    display: inline;
    margin-bottom: 10px;
    float:left;
}


main {
    overflow: hidden;
    margin-top: 100px;
}

.content {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
}
.swiper-slide p {
    width: 100%;
    text-align: right;
    color: var(--global-color-darksand);
}
#slider {
    padding-top: 30px;
    background-color: #ffffff;
    border-bottom: 3px dotted var(--global-color-darksand);
}
section {
    padding: 20px 0;
    border-bottom: 3px dotted var(--global-color-darksand);
    background-color: #ffffff;
}
div.section:first-of-type:not(.alternate),
section:first-of-type:not(.alternate) {
    border-top: 3px dotted var(--global-color-darksand);
}


div.alternate,
section.alternate {
    background-color: var(--global-color-sand);
}

div.feature,
section.feature {
    text-align: center;
}

/*******************************************/
/* Header-Bereich
/*******************************************/

header {
    position: fixed;
    z-index: 999;
    width: 100%;
}

header nav.top-menu {
    width: 100%;
    height: 0;
    display: none;
}

header nav.top-menu i {
    color: var(--global-color-light);
    margin: auto 0 auto auto;
}

nav.mobile-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 75px;
    background-color: var(--global-color-red);
    display: flex;
    flex-direction: row;
    z-index: 999;
}

nav.mobile-menu .item {
    display: flex;
    flex-direction: column;
    width: calc(100% / 5);
    text-align: center;
    margin-top: 15px;
    color: var(--global-color-light);
    font-size: 13px;
    position: relative;
}
nav.mobile-menu .item i{
    margin: 0 auto;
    font-size: 30px;
}
nav.mobile-menu .item span.badge {
    background-color: #ffffff;
    color: var(--global-color-red);
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    border-radius: 100%;
}

div.cart-box {
    display: none;
}
header nav.main-menu {
    width: 100%;
}


header nav ul {
    display: none;
}

header nav.main-menu ul {
    height: 0;
}

header .content {
    width: 95%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0;
    z-index: 0;
    overflow: hidden;
}

header .content.logo {
    width: 98%;
}

figure#logo {
    background-image: url("/styles/images/logo-mobile-sommer.png");
    background-image: url("/styles/images/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 25vw;
    display: block;
    margin-top: -15px;
}

header nav .content {
    flex-direction: row;
}

header nav.top-menu .content {
    height: 25px;
}

header img {
    margin: -22px 0 30px 0;
    display: inline-block;
    width: 100%;
}

/*******************************************/
/* Responsive-Navigation
/*******************************************/
a#offcanvas-menu {
    color: #ffffff;
    padding: 5px 0;
    font-weight: 600;
}


a#offcanvas-menu span.bar {
    background-color: #ffffff;
    display: block;
    float: left;
    height: 2px;
    margin: 6px auto 0 auto;
    width: 30px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

#offcanvas-menu.toggled span:first-child {
    transform: translateY(8px) rotate(45deg);
}

#offcanvas-menu.toggled span {
    transform-origin: center center 0;
}

#offcanvas-menu.toggled span:nth-child(2) {
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#offcanvas-menu.toggled span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/*******************************************/
/* Sidr
/*******************************************/

.sidr-open #sidr-body-overlay {
    display: block;
}

#sidr-body-overlay {
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999998;
}

.sidr {
    background: var(--global-color-red) none repeat scroll 0 0;
    box-shadow: none;
    color: #FFF;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 230px;
    z-index: 999999;
    padding-top: 15px;
}

.sidr ul {
    border: 0 none;
}

.sidr ul li {
    border: 0 none;
    line-height: 40px;
}

.sidr ul li a, .sidr ul li span {
    display: inline-block;
}
.sidr ul li:hover span {
    color: var(--global-color-red);
    display: inline-block;
}
.sidr ul li.indent {
    padding-left: 30px;
}

.sidr ul li a span {
    padding: 0;
}

.sidr ul li:hover > a, .sidr ul li:hover > span, .sidr ul li.active > a, .sidr ul li.active > span, .sidr ul li.sidr-class-active > a, .sidr ul li.sidr-class-active > span {
    box-shadow: none;
    color: var(--global-color-red);
}

.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active {
    border-top: 0 none;
    line-height: 40px;
    background-color: #FFFFFF;
}

/*******************************************/
/* Grid
/*******************************************/

.grid {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-left: -20px;
    padding-top: 20px;
}

.grid .item .grid {
    padding-top: 0;
}

.grid.center {
    text-align: center;
    justify-content: center;
}

.grid .item {
    width: calc(100% - 20px);
    margin-left: 20px;
    margin-bottom: 20px;
}

.left {
    margin: 0 auto 0 0;
}

.right {
    margin: 0 0 0 auto;
}

.grid .item img {
    display: block;
    width: 100%;
}
.grid .item span {
    display: block;
}

hr {
    border: none;
    border-bottom: 3px dotted #be9f68;
    display: block;
    width: 100%;
    height: 5px;
}

/*******************************************/
/* Searchform
/*******************************************/

.searchform {
    display: inline-block;
    position: relative;
    width: 100%;
}

form.searchform  {
    width: 100%;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    flex-wrap: nowrap;
}
form.searchform div.input {
    width: 90%;
    margin: 0 auto 20px auto;
    display: flex;
    flex-basis: auto;
    flex-direction: row;
    flex-wrap: nowrap;
}

form.searchform input[type='text'] {
    width: calc(100% - 50px);
    color: black;
    background-color: #EADEC4;
    border: 1px solid #be9f68;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    font-weight: 600;
    padding: 22px 0 23px 10px;
}

form.searchform input[type='text']::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #be9f68;
    opacity: 1; /* Firefox */
}

form.searchform input[type='text']:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #be9f68;
}

form.searchform input[type='text']::-ms-input-placeholder { /* Microsoft Edge */
    color: #be9f68;
}

form.searchform input[type='text']:focus {
    outline: 0;
    border: 1px solid #987f53 !important;
}
form.searchform input[type='text']:focus::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    opacity: 1; /* Firefox */
}

form.searchform input[type='text']:focus:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #987f53;
    font-weight: 400;
}

form.searchform input[type='text']:focus::-ms-input-placeholder { /* Microsoft Edge */
    color: #987f53;
    font-weight: 400;
}
form.searchform .button {
    width: 47px;
    height: 47px;
    margin: 0 0 0 -1px;
    background-color: #be9f68;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid #BE9F68;
}

form.searchform input:focus + .button {
    background-color: #987f53;
    border: 1px solid #987f53;
}
form.filterform #advanced-search {
    width: 100%;
    display: flex;
    flex-basis: auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 20px;
}

form.filterform #advanced-search div.checkboxgroup_wrap {
    width: 100%;
}

form.filterform .label {
    width: auto;
    color: var(--global-color-red);
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 5px;
}

form div.checkboxgroup_wrap.buttons div.checkbox {
    margin-right: 5px;
    margin-bottom: 5px;
    width: auto;
}
form div.checkboxgroup_wrap.buttons div.checkbox label {
   width: auto;
    cursor: pointer;
}
form div.checkboxgroup_wrap.buttons .validatormessage {
    float: left;
}
form div.checkboxgroup_wrap.buttons label.checkbox i {
    width: auto;
    padding: 2px 8px;
    font-style: normal;
    background-color: #ffffff;
    color: var(--global-color-red);
    border-radius: 6px;
    border: 1px solid var(--global-color-red);
}

form div.checkboxgroup_wrap.buttons [type=checkbox]:checked + i {
    background-color: var(--global-color-red);
    color: #FFFFFF;
}

div.no-result {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}

/*******************************************/
/* Inhalts-Bilder
/*******************************************/

.fr-dib {
    width: auto;
    max-width: 100%;
    display: block;
    float: none;
    margin: 20px 0 20px 0;
}

.fr-dii {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

/*******************************************/
/* Divider
/*******************************************/

.divider {
    background: url("/styles/images/divider.png") center no-repeat;
    background-size: 200%;
    height: 20px;
    max-width: 1024px;
    margin: 10px auto;
    padding: 0;
    z-index: 0;
    overflow: hidden;
}

.divider-2 {
    margin-top: 10px;
    background: url("/styles/images/divider-2.png") center no-repeat;
    background-size: 200%;
    height: 30px;
}

/*******************************************/
/* Documents
/*******************************************/

a.document {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-basis: auto;
    padding: 10px 0;
}
a.document span {
    margin: auto 0 auto auto;
    color: var(--global-color-red);
    width: calc(100% - 20px);
    line-height: 23px;
    hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
}

a.document i {
    height: 23px;
    width: 20px;
    margin: 0;
    display: block;
}

.landingpage_player .cover {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-basis: auto;
}
.landingpage_player .cover figure {
    display: block;
    width: 120px;
    margin: 0 20px 0 0;
    float: left;
}
.landingpage_player .cover audio {
   margin: auto 0;
}
.landingpage_player .cover figure img{
    display: block;
    width: 100%;
}

.landingpage_player .download {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-basis: auto;
}
.landingpage_player .download .documents {
    margin: auto 0;
}

/*******************************************/
/* Arist
/*******************************************/

section.artist h2 {
    text-align: center;
}
.grid.artist .item span {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-top: 10px;
}

.grid.keyword-az .item {
    margin-bottom: 0;
}

.artist-activity {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 20px;
}
.grid .item .artist-activity img {
    width: 10%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: inline-block;
}

.artist-activity div.body {
    width: 90%;
    padding-left: 20px;
}

.grid.artist a.item figure {
    position: relative;
}

.grid.artist a.item figure .artist-activity-icons {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 100px;
}

.grid.artist a.item figure .artist-activity-icons img {
    width: 35px;
    height: 35px;
    float: left;
    margin-right: 5px;
}


/*******************************************/
/* Themen
/*******************************************/

.grid.themen .item {
    height: 100px;
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
    border-radius: 10px;
    background-color: #B1C800;
    font-weight: normal;
    background-image: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    /*background-image: url(/styles/images/wolke-2.png);*/
    background-size: cover;
}

.grid.themen .item.more {
    background-image: none;
    background-color: var(--global-color-red);
}

.grid.themen .item span.title {
    margin: auto 10px 5px 10px;
    color: var(--global-color-light);
    font-size: 20px;
    text-align: left;
}

.grid.themen .item.more span.title {
    font-size: 18px;
}

.grid.themen .item span.icon {
    margin: auto 10px 5px auto;
    font-size: 40px;
    color: rgba(2552,255,255,1);
}

.grid.themen .item.more span.icon {

}

.grid.themen .item:hover {
    /*background-image: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);*/
}

ul.wj-share-buttons {
    float: left;
}

ul.wj-share-buttons li {
    float: left;
}

/*******************************************/
/* Tracks & Buy-Buttons
/*******************************************/

.grid.tracks .item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-size: 16px;
    text-align: left;
}

.grid.tracks .item figure {
    position: relative;
}
.grid.tracks .item a.cover {
    cursor: pointer;
}
.grid.tracks .item a.cover figure img {
    width: 80px;
    height: 80px;
    display: block;
}
.grid.tracks a.cover.playable figure:before {
    z-index: 50;
}

.grid.tracks .item a.cover.playable figure:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Pro";
    color: var(--global-color-light);
    opacity: 1;
    position: absolute;
    font-size: 24px;
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.grid.tracks .item a.cover.playable.playing figure:before {
    content: "\f04c";
    opacity: 0.9;
}

.grid.tracks .item a.cover.playing figure:before {
    content: "\f04c";
    font-family: "Font Awesome 5 Pro";
    color: var(--global-color-light);
    opacity: 1;
    position: absolute;
    font-size: 24px;
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.grid.tracks a.cover.playing figure img {
    filter: brightness(62%);
}

.grid.tracks .item div.text {
    padding-left: 10px;
    padding-bottom: 0;
    margin: 0;
    line-height: 120%;
}

.grid.tracks .item .title {
    display: block;
    color: var(--global-color-red);
    font-weight: 600;
    margin-bottom: 5px;
}

.grid .item .album {
    display: block;
    color: var(--global-color-dark);
}

.grid .item .icon {
    font-size: 14px;
    margin-right: 6px;
    color: #808080;
}

.grid .item a.artist{
    display: block;
    font-weight: normal;
    color: var(--global-color-dark);
    font-size: 16px;
}

a.artist-big {
    display: block;
    font-weight: bold;
    color: var(--global-color-dark);
    font-size: 18px;
    margin-bottom: 15px;
}
.alphabeth-filter {
    margin: 15px 0;
}
.alphabeth-filter li {
    display: inline-block;
    margin: 0 5px;
    font-weight: bold;
    font-size: 22px;
}
/*******************************************/
/* Buy-Button
/*******************************************/

div.buy {
    min-width: 33px;
    position: relative;
    margin-left: auto;
    text-align: right;
    z-index: 10;
}

a.buy_button,
div.buy a {
    cursor: pointer;
}
div.buy a.open_button i {
    color: var(--global-color-red);
    display: inline-block;
}
div.buy a.open_button {
   z-index: 0;
}

div.buy a.buy_button {
    position: absolute;
}
div.buy a.buy_button i {
    background: var(--global-color-red);
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    width: 35px;
    margin: 0 auto;
    line-height: 25px;
    border-radius: 100%;
    position: relative;
    box-shadow: none;
}

div.buy a.buy_button {
    position: absolute;
    display: flex;
    flex-direction: column;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.6s cubic-bezier(.87,-.41,.19,1.44);
    transition: all 0.6s cubic-bezier(.87,-.41,.19,1.44);
    width: 0;
    height: 55px;
    text-align: center;
    background: var(--global-color-red);
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    padding: 5px 0 7px 0;
    color: var(--global-color-light);
    z-index: -1;
    pointer-events: none;
    line-height: 10px;
}

div.buy a.buy_button i {
    background-color: transparent;
}

div.buy a.buy_button span.price {
    font-weight: 700;
    font-size: 14px;
}

div.buy.active a.buy_button {
    overflow-y: visible;
    overflow-x: visible;
    pointer-events: auto;
    width: 70px;
    z-index: 299;
}

.grid .item div.buy a.buy_button span.title {
    color: white;
    font-weight: 400;
    font-size: 12px;
}

div.buy.active a.buy_button span.title {
    color: white;
    font-weight: 400;
    font-size: 12px;
}

div.buy a.buy_button:nth-of-type(4) {
    top:0;
    left: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background-color: #607FA0;
}
div.buy a.buy_button:nth-of-type(2) {
    top:0;
    left:0;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
div.buy a.buy_button:nth-of-type(3) {
    top: 0;
    left:0;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    background-color: #7FA060;
}
div.buy a.buy_button:nth-of-type(5) {
    top: 0;
    left:0;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    background-color: #8B256B;
}

div.buy.active a.buy_button:nth-of-type(4) {
    top:-70px;
    left: -25px;
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

div.buy.active a.buy_button:nth-of-type(2) {
    top:-60px;
    left:-100px;
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
div.buy.active a.buy_button:nth-of-type(3) {
    top:15px;
    left:-100px;
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

div.buy.active a.buy_button:nth-of-type(5) {
    top:30px;
    left:-25px;
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*******************************************/
/* Flavors
/*******************************************/

h3.product_divider {
    font-size: 20px;
}

ul.flavors {
    float: left;
    width: 100%;
    display: block;
    margin-top: 2em;
    margin-left: 0;
}

ul.flavors li {
    float: left;
    width: 100%;
    display: block;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #808080;
}

ul.flavors li span {
    float: left;
    display: block;
    padding-top: 5px;
}

ul.flavors li form {
    float: right;
    display: block;
}

ul.flavors li span.title {
    width: calc(70% - 30px);
}

ul.flavors li span.title a {
    color: black;
}

ul.flavors li span.title a i {
    font-size: 110%;
    margin-left: 12px;
   /* color: #008ab3;*/
}
ul.flavors li span.title a i.glyphicons:before {
    padding: 2px 2px;
}

ul.flavors li span.description {
    width: 100%;
    font-size: 16px;
}

ul.flavors li span.price {
    width: 20%;
    text-align: right;
    padding-right: 20px;
}

ul.flavors li span.price em {
    font-weight: 700;
}

ul.flavors li a.buy_button {
    float: right;
    margin-top: 5px;
}

ul.flavors li span.flavour_gallery {
    display: inline-block;
    margin-bottom: 7px;
    width: 21px;
    float: none;
    position: relative;
}

.grid.two .flavour_gallery .item {
    margin-left: auto;
}

.flavour_gallery .item .glyphicons {
    color: var(--global-color-red);
    position: absolute;
    top: -6px;
    font-size: 22px;
}

.grid.gallery .item {
    width: calc(25% - 20px);
}

/*******************************************/
/* Tags
/*******************************************/

.grid .item ul.tags {
    display: block;
    margin: 0;
}
.grid .item ul.tags li {
    display: inline-block;
    margin-right: 5px;
}
.grid .item ul.tags li a {
    display: block;
    color: var(--global-color-grey);
    font-size: 16px;
    font-style: italic;
    border-bottom: 1px dotted var(--global-color-grey);
}
/*******************************************/
/* CD's
/*******************************************/

.grid.cds .item {
    font-size: 16px;
}

.grid.cds .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: calc(50% - 20px);
}

.grid.cds .item .title {
    display: block;
    color: var(--global-color-red);
    font-weight: 600;
    margin-bottom: 0px;
}

.grid.cds .item img {
    width: 100%;
    margin-bottom: 10px;
}

/*******************************************/
/* CD Tip
/*******************************************/

.grid.tip {
    padding: 20px 0;
    align-items: flex-start;
}
.grid.tip .item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.grid.tip .grid.tracks .item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.grid.tip h2 {
    margin-top: 20px;
}

/*******************************************/
/* Mediathek                               */
/*******************************************/
.grid.mediathek {
    margin-left: 0;
    width: 100%;
    flex-direction: column-reverse;
    padding-top: 0;
}

.grid.mediathek .mediathek-products{
    width: calc(100% + 20px);
    margin-left: -20px;
}

.grid.mediathek .mediathek-filter{
    width: 100%;
    margin-left: auto;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 0;
}

.grid.mediathek-products .item {
    margin-bottom: 40px;
}

.grid.mediathek-products .item .product {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.grid.mediathek-products .item .product figure {
    margin-bottom: 20px;
    width: 40%;
    margin-right: 20px;
}

.grid.mediathek-products .item .product .text {

}

.grid.mediathek-products .item.track a.player {
    margin-right: 8px;
    cursor: pointer;
}

.grid.mediathek-products .item.track a.player i.fa-pause {
    display: none;
}

.grid.mediathek-products .item.track a.player.loading i.fa-play,
.grid.mediathek-products .item.track a.player.playing i.fa-play {
    display: none;
}

.grid.mediathek-products .item.track a.player.playing i.fa-pause {
    display: inline-block;
}

.grid.mediathek-products .item.track div.button_groups {
    flex-direction: row;
    display: flex;
    justify-content: flex-end;
}

.grid.mediathek-products .item.track div.button_group {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    margin-right: 10px;
}

.grid.mediathek-products a.download_all_button {
    border: 1px solid var(--global-color-red);
    padding: 4px 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
    margin-right: auto;
    font-weight: 200;
    font-size: 14px;
}

.grid.mediathek-products a.download_all_button i {
    font-size: 16px;
    margin-right: 5px;
}

.grid.mediathek-products .item.track a.download_button {
    text-align: center;
    font-weight: 200;
    font-size: 12px;
    margin-left: 0;
    padding: 5px 10px;
    border: 1px solid var(--global-color-red);
    border-right: none;
    line-height: 100%;
}

.grid.mediathek-products .item.track a.download_button i {
    font-size: 14px;
}

.grid.mediathek-products .item.track a.download_button:hover i.fa-microphone-alt:before {
    content: '\f019';
}
.grid.mediathek-products .item.track a.download_button:hover i.fa-headphones:before {
    content: '\f019';
}
.grid.mediathek-products .item.track a.download_button:hover i.fa-piano-keyboard:before {
    content: '\f06e';
}
.grid.mediathek-products .item.track a.download_button:hover i.fa-music:before {
    content: '\f06e';
}
.grid.mediathek-products .item.track a.download_button:first-child {
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 10px;
}

.grid.mediathek-products .item.track a.download_button:last-child {
    border-right: 1px solid var(--global-color-red);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.grid.mediathek-products .grid.tracks {
    align-content: flex-start;
}
.grid.mediathek-products .grid.tracks .item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 3px dotted var(--global-color-darksand);
}

.grid.mediathek-products .item.track {
    flex-wrap: nowrap;
}
.grid.mediathek-products .item.track .track-info{
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
}

.grid.mediathek-products .item.track ul.tags{
    width: 100%;
    margin-left: 23px;
}

.mediathek-filter {
    text-align: center;
}

.mediathek-filter .filter {
    border: 1px solid var(--global-color-red);
    border-radius: 6px;
    width: auto;
    padding: 2px 8px;
    margin-bottom: 5px;
    font-size: 14px;
    margin-right: 10px;
}

.mediathek-filter .filter.selected {
    background-color: var(--global-color-red);
    color: #FFFFFF;
}

.mediathek-filter .label {
    width: 100%;
    color: var(--global-color-red);
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
}

.mediathek_link i {
    font-size: 20px;
    margin-left: 6px;
    margin-top: 10px;
}

.button_wrapper {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
    margin-left: auto;
}

/*******************************************/
/* Cart                                    */
/*******************************************/

.grid.cart .item {
    width: calc(100% - 20px);
    padding-bottom: 10px;
    border-bottom: 1px dotted var(--global-color-red);
    margin-bottom: 20px;
    display: flex;
    text-align: left;
}
.grid.cart .item .image {
    display: none;
}
.grid.cart .item .mobile-price {
    display: inline-block;
}
.grid.cart .item .image img {
   width: 100%;
}
.grid.cart .item .quantity {
    width: 52px;
    margin-right: 10px;
    text-align: center;
}
.grid.cart .item .title {
    width: calc(100% - 52px);
    margin-right: 10px;
}
.grid.cart .item.cart-total .title {
    width: 210px;
    margin-left: auto;
    margin-right: 10px;
    text-align: right;
}
.grid.cart .item.cart-total .total {
    width: 110px;
    margin-right: 43px;
    text-align: right;
    font-weight: bold;
}

.grid.cart .item.cart-total .total.end-total {
    font-weight: bold;
}

.grid.cart .item .price {
    display: none;
}
.grid.cart .item .sum {
    width: 110px;
    margin-right: 10px;
    text-align: right;
    font-weight: bold;
}

.grid.cart .item.header .sum {
    font-weight: 300;
}

.grid.cart .item .delete {
    width: 33px;
}
.grid.cart .item p {
    margin-bottom: 0;
}
.grid.cart .item h3 {
    margin-bottom: 0;
}
ul.cart-progress {
    padding: 0;
    list-style-type: none;
    clear: both;
    line-height: 1em;
    margin: 0 -1px;
    margin-bottom: 35px;
    text-align: center;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-basis: auto;
}

ul.cart-progress li {
    float: left;
    padding: 10px 0 10px 9px;
    background: var(--global-color-darksand);
    color: #fff;
    position: relative;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: calc( (100% / 4) - 14px);
    margin: 0 1px;
    height: 16px;
}

ul.cart-progress li a {
    color: white;
    font-weight: bold;
}

ul.cart-progress li i {
    padding: 0 10px 0 0;
}
ul.cart-progress li i:before {
    padding: 0;
}
ul.cart-progress li span {
    display: none;
}

ul.cart-progress li:before {
    content: '';
    border-left: 18px solid #fff;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
}

ul.cart-progress li:first-child::before {
    border-left: none;
}

ul.cart-progress li:after {
    content: '';
    border-left: 18px solid var(--global-color-darksand);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 20;
}

ul.cart-progress li.active {
    background: var(--global-color-red);
}

ul.cart-progress li.active:after {
    border-left-color: var(--global-color-red);
}

.address_box {
    width: 100%;
    float: left;
}

.square {
    border: 1px solid var(--global-color-darksand);
    border-radius: 10px;
    text-align: center;
    display: block;
    padding: 12px;
}

a.square i {
    font-size: 24px;
}

.payment_types .item.payment_type {
    text-align: center;
    border: 1px solid var(--global-color-darksand);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    position: relative;
}

.payment_types .item.payment_type i.fa-check {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: var(--global-color-red);
    display: none;
}

.payment_types .item.payment_type .icons {
    color: var(--global-color-red);
    font-size: 36px;
}

.payment_types .item.payment_type .icons i {
    margin: 5px;
}

.payment_types .item.payment_type.selected {
    text-align: center;
    border: 3px solid var(--global-color-red);
    background-color: var(--global-color-sand);
    padding: 10px;
}

.payment_types .item.payment_type.selected i.fa-check {
    display: block;
}

/*******************************************/
/* Form                                    */
/*******************************************/

form h3 {
    margin-bottom: 0.5em;
}

form.grid  {
    margin-top: 15px;
}

form.grid .item {
    flex-direction: column;
}

label {
    width: 100%;
    margin-left: 0;
    font-size: 14px;
    margin-bottom: 3px;
}

label.required {
    font-weight: 600;
}

input:not([type=radio]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    border-radius: 0;
    font-size: 14px;
    width: 100%;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'],
textarea,
select {
    font-family: 'Source Sans Pro', sans-serif;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(255,255,255,1);
    width: 100%;
    height: 35px;
    margin-left: 0;
    padding: 5px 6px;
    margin-bottom: 10px;
    border-radius: 0;
    color: var(--global-color-dark);
    border: 1px solid rgba(0,0,0,0.1);
}

label.checkbox.big {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
}
div.checkbox {
    display: inline-block;
}
div.checkbox p {
    display: block;
    width: calc(100% - 32px);
    float: right;
    margin-bottom: 0;
}


select:focus,
input:focus,
textarea:focus {
    outline: 0;
    border: 1px solid var(--global-color-red) !important;
}

/* remove standard-styles */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    /* appearance: none; */
    border-radius: 0;
}

/* hide browser-styling (arrow) in IE10 */
select::-ms-expand {
    display:none;
}

.lt-ie10 select {
    background-image: none;
}

select {
    background: #ffffff url("/styles/images/select-arrow.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}

select:focus {
    background: #ffffff url("/styles/images/select-arrow-active.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}


form div.checkbox {
    margin-bottom: 15px;
    width: 100%;
}

form div.checkbox label {
    margin-bottom: 15px;
    width: 100%;
}

form div.small {
    width: 100%;
    padding-top: 5px;
}

form input.error, form textarea.error {
    border: 1px solid rgba(219,8,18,1);
}

form input.checkbox-type {
    width: 60%;
}

form input[type="checkbox"] {
    margin-left: 0;
}

label.checkbox input {
    display: none;
}

label.checkbox span {
    border: 1px solid rgba(0,0,0,0.3);
    display: inline-block;
    font-size: 22px;
    height: 18px;
    margin-right: 10px;
    margin-top: -4px;
    position: relative;
    width: 18px;
    vertical-align: middle;
}
select.error,
label.checkbox.error span {
    border: 1px solid rgba(219,8,18,1);
}
label.error {
    color: rgba(219,8,18,1);
}


label.checkbox i {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-style: normal;
    display: inline-block;
    width: calc(100% - 30px);
    text-align: left;
}

[type=checkbox]:checked + span:before {
    content: '\2714';
    position: absolute;
    color: var(--global-color-red);
    top: -5px;
    left: 1px;
}

[type=checkbox]:checked + span {
    border: 1px solid var(--global-color-red);
}

textarea {
    height: 175px !important;
}
input.more-options,
span.button,
a.button,
button {
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    color: var(--global-color-red);
    background-color: var(--global-color-light);
    font-size: 100%;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 30px;
    border: 2px solid var(--global-color-red);
    border-radius: 6px;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    padding: 5px 10px;
    line-height: 100%;
    width: auto;
}
input.more-options.center,
a.button.center {
    margin: 15px auto 30px auto;
}

a.button.left {
    margin: 15px auto 30px 20px;
}

a.button.selected {
    color: var(--global-color-light);
    background-color: var(--global-color-red);
}


button:disabled{
    cursor: not-allowed;
}
button:disabled:hover {
    -webkit-transform: none;
    transform: none;
}

a.button:hover,
button:hover {
    color: var(--global-color-light);
    background-color: var(--global-color-red);
}

button.prev-next{
    margin-top: auto;
}

button.prev {
    margin-left: 0;
}

button.next {
    margin-left: 20px;
}

span.validatormessage {
    color: rgba(219,8,18,1);
    display: block;
}

.checkbox span.missing {
    color: rgba(219,8,18,1);
    display: block;
    margin-left: 29px;
}
/*******************************************/
/* Footer
/*******************************************/

footer {
    margin-top: auto;
    background: var(--global-color-red);
    color: var(--global-color-light);
}
footer .content {
    padding: 0;
}
footer .footer.logo {
    width: 100%;
}
footer ul li a {
    color: #ffffff;
}
footer .grid.two .item {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}
.footer-top-menu {
    text-align: right;
    margin: auto 0;
}

.footer-top-menu li {
    display: inline-block;
    margin-left: 15px;
}
.footer-top-menu li a i{
    font-size: 25px;
    vertical-align: bottom;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8em 0;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}

.footer-menu  li {
    padding-left: 1.3em;
    text-indent: -.9em;
    margin-bottom: 4px;
}

.footer-menu li.space_below {
   margin-bottom: 35px;
}

.footer-menu li::before {
    padding-right: 4px;
    content: "> ";
    color: #ffffff;
}
footer .contact {
    width: 80%;
    transform: rotate(-5deg);
    border-radius: 8px;
    background-color: #FFFFFF;
    padding: 20px;
    color: #707070;
    margin-bottom: 20px;
}
footer .contact a {
    color: #707070;
    font-size: 22px;
    display: block;
}
footer .contact a i {
   margin-right: 5px;
}
footer .contact a:first-of-type {
    margin-bottom: 15px;
}
.footer_nav {
    width: 100%;
    padding: 4px 0;
    background-color: #D64644;
    text-align: center;
    margin-bottom: 100px;
}
.footer_nav li{
    display: inline-block;
    margin: 0;
}

.footer_nav li:after {
    content: " ・ ";
    color: #ffffff;
}
.footer_nav li:last-of-type:after {
    content: "";
}


.toTop {
    border-radius: 100%;
    bottom: 85px;
    display: none;
    height: 31px;
    position: fixed;
    right: 20px;
    width: 31px;
    font-size: 31px;
    overflow: visible;
    z-index: 999;
}

.toTop div.background{
    position: relative;
    background-color: #FFFFFF;
    width: 30px;
    height: 30px;
    margin-top: -36px;
    border-radius: 100%;
    z-index: -1;
    margin-left: 8px;
}


.toTop span {
    margin-top: -2px;
    margin-left: -2px;
}

@media (min-width: 400px) {
    main {
        margin-top: 112px;
    }
}
@media (max-width: 320px) {
    nav.mobile-menu .item {
        font-size: 12px;
    }
}


.app_popup {
    position: absolute;
    box-sizing: border-box;
    width: 90%;
    max-width:  90%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    color: black;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    top: 60px;
    left: calc(10% / 2);
    z-index: 999;
}

.app_popup .app_popup_close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}