body {
    height: 100vh;
    font-family: 'Spectral', serif;
    background: #c2ac97 url("../img/bg.jpg") fixed center;
    background-size: cover;
    color: #000000;
    font-size: 18px;
}

* {
    box-sizing: border-box;
}

.outerwrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    overflow: hidden;
}

a {
    color: #511720;
    text-decoration: none;
}

h2 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

header {
    position: relative;
    display: flex;
    height: 141px;
    background: url("../img/header.png");
    background-position: center;
    background-repeat: no-repeat;
}

header .logo {
    position: absolute;
    left: 50%;
    top: 12px;
    margin-left: -70px;
}

header .logo img {
    width: 132px
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header .burger-menu {
    display: flex;
    height: 80px;
    align-items: center;
    cursor: pointer;
    border-radius: 0 0 20px 0;
}

header .burger-menu .burger-menu-symbol {
    display: flex;
    height: 20px;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

header .burger-menu .burger-line {
    width: 30px;
    height: 2px;
    background-color: #b08c3c;
}

header .burger-menu:hover {
    background-color: #51171f;
    border-right: 2px solid #b08c3c;
    border-bottom: 2px solid #b08c3c;
}

@media only screen and (min-width: 1040px) {
    header .burger-menu {
        display: none;
    }
}

@media only screen and (max-width: 1039px) {
    header nav .main-menu-bg {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        z-index: 9;
        background-color: #1b1b1b;
        opacity: 0.5;
        cursor: pointer;
        transition: opacity 0.3s linear;
    }

    header nav .main-menu-container-wrapper {
        position: fixed;
        width: 250px;
        padding-right: 3px;
        padding-bottom: 3px;
        top: 0;
        left: 0;
        z-index: 10;
        background-color: #51171f;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        transition: top 0.3s;
        transition-timing-function: ease;
        border-bottom-right-radius: 30px;
    }

    header nav .main-menu-container {
        box-sizing: border-box;
        width: 250px;
        background: #000000 url("../img/black_bg.jpg");
        border: 2px solid #b08c3c;
        border-left: none;
        border-top: none;
        border-bottom-right-radius: 30px;
    }

    header nav .close-main-menu-btn {
        display: block;
        box-sizing: border-box;
        padding: 12px 20px;
        color: #b08c3c;
        background-color: #51171f;
        font-size: 14px;
        text-decoration: none;
        font-family: 'Spectral', serif;
        border-bottom: 1px solid #b08c3c;
    }

    #main-menu.closed .main-menu-bg {
        opacity: 0;
        visibility: hidden;
    }

    #main-menu.closed .main-menu-container-wrapper {
        top: -350px;
    }

    header nav ul {
        flex-direction: column;
    }

    header nav li {
        display: flex;
    }

    header nav a {
        width: 100%;
        padding: 10px 20px;
        text-decoration: none;
        color: #b7953c;
        font-size: 1.2rem;
        font-family: 'Cinzel', serif;
    }

    header nav li:last-child a {
        border-bottom-right-radius: 30px;
    }

    header nav a.active {
        background-color: #511720bb;
        border: solid #b7953d;
        border-width: 1px 0;
    }
}

@media only screen and (min-width: 1040px) {
    header nav .main-menu-bg,
    header nav .close-main-menu-btn {
        display: none;
    }

    header nav {
        display: flex;
        width: 100%;
        padding-top: 30px;
        justify-content: center;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: row;
    }

    header nav li {
        margin: 0 10px;
        height: auto;
    }

    header nav li.logo-split {
        margin-right: 250px;
    }

    header nav a {
        padding: .2rem .5rem;
        text-decoration: none;
        color: #b7953c;
        font-size: 1.2rem;
        font-family: 'Cinzel', serif;
    }

    header nav a.active {
        background-color: #511720bb;
        border-radius: 20px;
        border: 1px solid #b7953d;
    }
}

@media only screen and (min-width: 1085px) {
    header nav a {
        font-size: 1.3rem;
    }
}

footer {
    display: flex;
    height: 49px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    background: url("../img/footer.png");
    background-position: center;
    background-repeat: no-repeat;
}

footer a {
    text-decoration: none;
    color: #b7953c;
    font-family: 'Cinzel', serif;
    font-size: .8rem;
}

footer a:first-child {
    margin-right: 2rem;
}

.body {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

main {
    flex: 1;
}

aside {
    flex: 1;
    order: 1;
    padding-top: 20px;
}

.side {
    box-shadow: 0 2px 10px 3px rgba(0, 0, 0, .16);
    background: #ffffff50;
    margin-bottom: 2rem;
}

.side .content {
    padding: .5rem;
}

.side .follow {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
    height: 30px;
}

.side .follow:last-child {
    margin-bottom: 0;
}

.side .follow img {
    flex: 0;
    padding-right: .5rem;
}

.side .follow a {
    flex: 1;
}

@media only screen and (max-width: 1039px) {
    .side .sideDates {
        display: flex;
        justify-content: space-around;
    }

    .side .sideDate {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .side .sideDates {
        flex-direction: column;
    }
}

@media only screen and (min-width: 1040px) {
    .side .sideDate {
        text-align: center;
        margin-bottom: 20px;
        margin-top: 15px;
    }
}

.side .sideDate .date {
    font-weight: bold;
}

.side h2 {
    background: #000000 url("../img/black_bg.jpg");
    font-family: 'Cinzel', serif;
    padding: .5rem;
    color: #b7953c;
    margin: 0;
    text-align: center;
    line-height: 1.4rem;
    font-size: 1.3rem;
}

@media only screen and (min-width: 790px) {
    .body {
        width: 750px;
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (min-width: 1040px) {
    .body {
        flex-direction: row;
        width: 960px;
    }

    aside {
        flex: 0 0 250px;
        order: 1;
        padding-left: 40px;
    }
}

.body p {
    padding: .5rem;
}

.separator {
    display: flex;
    align-items: center;
    width: 100%;
}

.separator hr {
    flex: 1;
    border: 0 solid #511720;
    border-top-width: 1px;
}

.separator span {
    flex: 0;
    padding: 0 0 0 10px;
}

.separator span img {
    width: 30px;
}

.separator {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

button {
    background-color: #511720;
    border: 1px solid #b7953d;
    color: #b7953d;
    padding: .5em .8rem;
    cursor: pointer;
}

input, textarea {
    background-color: #51172044;
    border: 1px solid black;
    padding: .2em .5em;
}

textarea {
    padding: .5em;
}

/* ---- start ----- */

.start .image,
.merchandise .image{
    border: 1px solid black;
    box-shadow: 0 0 6px 3px #000000dd;
    max-width: 100%;
}

.start .responsive-video-wrapper {
    border: 1px solid black;
    box-shadow: 0 0 6px 3px #000000dd;
}

.start .intro {
    padding-top: 10px;
}

.start p {
    padding-left: 0;
    padding-right: 0;
}

/* ---- news ----- */

.news .date {
    padding-top: .5rem;
    text-align: right;
    font-size: .8rem;
}

.news .assets {
    padding-top: 1rem;
}

.news .assets img {
    border: 1px solid black;
    box-shadow: 0 0 6px 3px #000000dd;
    max-width: 100%;
}

.error-page h1 {
    font-family: 'Cinzel', serif;
}

/* ---- appointments ----- */

.page-appointments .banner img {
    border: 1px solid black;
    max-width: 100%;
}

.page-appointments .appointments {
    display: flex;
    flex-wrap: wrap;
}

.page-appointments .appointment-block {
    flex: 1;
    flex-basis: 100%;
}

@media only screen and (min-width: 700px) {
    .page-appointments .appointment-block {
        flex-basis: 50%;
    }
}

.page-appointments .appointments .appointment {
    display: flex;
}

.page-appointments .appointments .appointment .date {
    flex: 0 124px;
    white-space: nowrap;
    padding-right: .5rem;
    font-weight: bold;
}

.page-appointments .appointments .appointment .name {
    flex: 1;
}

.page-appointments .tour-hint {
    padding-top: 1em;
    font-weight: bold;
}

.page-appointments .tour-hint-red {
    color: #b51b1b;
}

.canceled {
    text-decoration: line-through;
    opacity: 0.5;
}

.page-appointments .separator {
    margin-bottom: 0;
}

/* ---- gallery ----- */

.album .album-content {
    display: flex;
    flex-wrap: wrap;
}

.album .album-content a {
    flex-basis: 50%;
    padding: 5px;
}

@media only screen and (min-width: 700px) {
    .album .album-content a {
        flex-basis: 25%;
    }
}

.album .album-content .img-container {
    height: 160px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    background-color: black;
}

.album .album-content .img-container img {
    object-fit: contain;
}

.album .gallery-thumb {
    width: 100%;
}

.responsive-video-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: black;
    margin-bottom: 2rem;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---- band ----- */

.band {
    padding-bottom: 1rem;
}

.member-content {
    display: flex;
}

.member-content .member-img {
    flex: 0 200px;
    max-width: 30%;
}

.member-content .member-img img {
    width: 100%;
    border: 1px solid black;
    box-shadow: 0 0 6px 3px #000000dd;
}

.member-content .member-text {
    flex: 1;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
}

.member-content .member-text > div {
    flex: 1;
}

.member-content .member-text h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.member-content .member-text h3 {
    font-size: 1.2em;
    margin: 0 0 .5em;
    font-family: 'Cinzel', serif;
}

.member-content ul {
    list-style: none;
    padding: 0 0 0 40px;
}

.member-content ul li {
    margin: 0;
    padding: 0;
}

.member-content ul li:before {
    content: '';
    position: absolute;
    display: inline-block;
    height: 16px;
    width: 16px;
    margin-left: -22px;
    background-image: url('../img/note.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* ---- contact ----- */

.contact-form .sender-info {
    display: flex;
    padding-bottom: 1rem;
    margin-left: -.5rem;
    margin-right: -.5rem;
    flex-wrap: wrap;
}

.contact-form .field {
    flex: 1;
    display: flex;
    margin: 0 .5rem;
}

.contact-form .field label {
    flex: 1;
    align-self: center;
}

.contact-form .field input {
    flex: 2;
}

.contact-form label {
    font-size: 1.2em;
}

.contact-form textarea {
    width: 100%;
    height: 200px;
    margin: .5rem 0;
}

.contact p {
    margin: 0;
    padding: 0 0 2rem 0;
}

.contact .g-recaptcha {
    margin-bottom: .5rem;
}

.contact-form .sender-info .field:last-child {
    display: none;
}

p.success {
    color: #066106;
    border: 1px solid #066106;
    margin-bottom: 2rem;
    padding: .5rem !important;
    background-color: #ffffff50;
}

.error {
    color: #c00d29;
    border: 1px solid #c00d29;
    margin-bottom: 2rem !important;
    padding: .5rem !important;
    background-color: #ffffff50;
}

.error-box {
    padding-bottom: 2rem;
}

.error-msg {
    color: #c00d29;
}

.error-field {
    border: 1px solid #c00d29;
}

@media only screen and (max-width: 700px) {
    .contact-form .sender-info {
        flex-basis: 100%;
        padding-bottom: 0;
    }

    .contact-form .field {
        flex-basis: 100%;
        margin-bottom: 1rem;
    }
}


/* ---- merchandise ----- */

.product {
    display: flex;
    flex-wrap: wrap;
}

.merch-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.product .product-img {
    flex: 0 298px;
    max-width: 298px;
}

.product .img-slider-nav {
    height: 50px;
}

/*
.product .img-slider .slick-slide, .product .img-slider .slick-slide img {
    height: 200px;
}
*/

.product .img-slider-nav .slick-slide, .product .img-slider-nav .slick-slide img ,
.product .img-slider-nav .slick-slide, .product .img-slider-nav .slick-slide video {
    height: 50px;
}

.product .img-slider-nav img,
.product .img-slider-nav video {
    cursor: pointer;
}

.product .slick-next {
    right: -25px;
}
.product .slick-prev, .product .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.product .product-img .img-slider img,
.product .product-img .img-slider video {
    width: 298px;
}

.product .product-img img,
.product .product-img video {
    border: 1px solid black;
    outline: none;
}

.product .product-text {
    flex: 1;
    padding-left: 1rem;
}

.product .product-text h2 {
    margin-top: 0;
}

.product .price {
    text-align: right;
    padding-top: .5em;
    font-weight: bold;
    font-size: 1.4rem;
}

.product .price span {
    font-weight: normal;
    font-size: 1rem;
}

.product .price.offer {
    color: #af1111;
}

.product .price span.original {
    text-decoration: line-through;
    color: #3c3c3c;
    font-weight: bold;
    font-size: .8em;
}

.product .price button {
    font-size: 1rem;
}

.product .versand {
    text-align: right;
    font-size: .8em;
    padding-top: .5rem;
}

.product .ad {
    font-size: .8em;
    padding-top: .5rem;
    display: flex;
}

.product .ad .left {
    flex: 1;
    padding-right: .5rem;
}

.product .ad .right {
    flex: 0 0 4rem;
}

.product .ad img {
    float: right;
    width: 100%;
}

.product .new {
    color: #af1111;
    font-size: 1.2em;
    position: absolute;
    transform: rotate(45deg);
}

.red {
    color: #af1111 !important;
}

.merch-form .fields {
    display: flex;
    padding-bottom: 1rem;
    margin-left: -.5rem;
    margin-right: -.5rem;
    flex-wrap: wrap;
}

.merch-form .fields .field:last-child {
    display: none;
}

.merch-form .field {
    flex: 1;
    display: flex;
    margin: 0 .5rem;
}

.merch-form .field.row {
    padding-bottom: 1rem;
    margin: 0;
}

.merch-form .field label {
    flex: 1;
    align-self: center;
}

.merch-form .field input {
    flex: 2;
}

.merch-form label {
    font-size: 1.2em;
}

.merch-form textarea {
    width: 100%;
    height: 200px;
    margin: .5rem 0;
}

textarea::placeholder {
    color: #614646;
}

.merch-form p {
    margin: 0;
    padding: .5em 0;
}

.merch-form .payinfo img {
    height: 18px;
}

.merch-form-message-hint {
    font-size: .8em;
    padding-top: .5em;
}

.merchandise .datainfo {
    margin-top: 1em;
    font-size: .8em;
}

.merchandise .success {
    margin-bottom: 1em;
}

.merchandise .forminfo {
    font-size: .8em;
    margin-bottom: 1em;
}

@media only screen and (max-width: 660px) {
    .product .product-img {
        flex-basis: 100%;
        max-width: 100%;
    }

    .product.image-last .product-img {
        order: 2;
        margin-top: 2em;
    }

    .product .product-img .img-slider img,
    .product .product-img .img-slider video {
        width: 100%;
    }

    .product .product-text {
        padding: 1rem 0 0 0;
    }
}

@media only screen and (max-width: 700px) {
    .merch-form .sender-info {
        flex-basis: 100%;
        padding-bottom: 0;
    }

    .merch-form .field {
        flex-basis: 100%;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 500px) {
    .merch-form .row {
        flex-direction: column;
        text-align: left;
    }

    .merch-form label {
        width: 100%;
    }
}

.songs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.songs ul li {
    padding-bottom: .5em;
}

.songs .responsive-video-wrapper {
    max-width: 300px;
    margin-bottom: 1rem;
}

.songs .album {
    display: flex;
    flex-flow: wrap;
}

.songs .song {
    flex: 1 0 50%;
}

@media only screen and (max-width: 700px) {
    .songs .responsive-video-wrapper {
        max-width: 100%;
    }

    .songs .song {
        flex-basis: 100%;
    }
}

.songtext h4 {
    padding: 0;
    margin: 0 0 .5em 0;
}

.songtext h2 .author {
    font-size: .6em;
}

.songtext p {
    padding: 0;
    margin: 0;
}

.songtext .pdf {
    margin-bottom: 1em;
}

.pdf img {
    height: 1em;
}
