/* Minification failed. Returning unminified contents.
(124,22): run-time error CSS1030: Expected identifier, found '.'
(124,36): run-time error CSS1031: Expected selector, found ')'
(124,36): run-time error CSS1025: Expected comma or open brace, found ')'
(128,21): run-time error CSS1030: Expected identifier, found '.'
(128,33): run-time error CSS1031: Expected selector, found ')'
(128,33): run-time error CSS1025: Expected comma or open brace, found ')'
(132,21): run-time error CSS1030: Expected identifier, found '.'
(132,30): run-time error CSS1031: Expected selector, found ')'
(132,30): run-time error CSS1025: Expected comma or open brace, found ')'
(136,18): run-time error CSS1030: Expected identifier, found '.'
(136,30): run-time error CSS1031: Expected selector, found ')'
(136,30): run-time error CSS1025: Expected comma or open brace, found ')'
 */
html {
    background: url('../Images/SiteImages/phoneBg.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

body {
    border-top: solid 10px black;
    background-color: transparent;
    color: white;
    font-size: 14px;
    font-family: "Quattrocento Sans", "Segoe UI", Verdana, Helvetica, Sans-Serif;
    padding-top: 100px;
}


#clNavbarParent, #body {
    padding-left: 0;
    padding-right: 0;
}

.navbar {
    margin-bottom: 0;
    border-bottom: thin solid #777;
}

#logoBanner {
    background-image: url('../Images/SiteImages/titleLogo.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #66052a;
    height: 60px;
    border-bottom: thin solid #999;
    border-left: none;
    border-right: none;
}


.navbar-inverse {
    background-color: #333;
    border-color: #080808;
    background-image: linear-gradient(#666, #222);
    background-repeat: repeat-x;
}

    .navbar-inverse .navbar-nav > li > a {
        color: #eee;
        font-size: 1.3em;
        transition: background-color 0.5s ease-in-out;
    }

        .navbar-inverse .navbar-nav > li > a:hover {
            background-color: #000000;
            background-color: rgba(0, 0, 0, 0.6);
        }

    .navbar-inverse .navbar-nav > .active > a {
        background-color: #b30a4b;
        background-color: rgba(179, 10, 75, 0.3);
        color: white;
    }

.page-header {
    font-size: 3em;
    border-style: none;
    margin: 10px 0 5px 0;
}

.carousel-caption {
    font-size: 8pt;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 50%;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 2px;
    border-radius: 0 0 5px 5px;
}

    .carousel-caption cite {
        font-size: 8pt;
    }

.carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}

#loading {
    position: fixed;
    width: 100%;
    top: 150px;
    text-align: center;
    z-index: 100;
}

#loadingBox {
    background-color: black;
    padding: 5px;
    width: 88px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.darkBack {
    background-color: rgba(0, 0, 0, 0.6);
}

.pageSection .row {
    margin: 0;
}

.pageSection {
    color: #eee;
    background-color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
    padding-bottom: 50px;
}

    .pageSection:has(.facebookPosts) {
        background-color: rgba(8, 58, 87, 0.6);
    }

#phoneContainer:has(.littlespoon) {
    height: 80px;
}

#phoneContainer:has(.bigspoon) {
    height: 120px;
}

.pageSection:has(.littlespoon), .pageSection:has(.bigspoon) {
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.facebookPosts {
    padding-top: 40px; /* Space above the first post */
    padding-bottom: 0;
    overflow: hidden; /*Not really necessary AL but might be useful defensively*/
}

    .facebookPosts .sectionPadding {
        padding-bottom: 40px; /* Space between posts */
    }

    .facebookPosts .facebookPoster {
        margin-bottom: 10px; /* Space between profile name etc. and message/pictures etc. */
        display: flex;
        align-items: center;
        gap: 10px;
    }


.fb-profile-pic {
    width: 48px; /* tweak to taste */
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.fb-header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facebookPoster h3 {
    margin: 0;
}

.facebookPoster .postTime {
    font-size: 1.5rem;
    color: #ccc;
    margin-top: 0;
}

.facebookPosts p {
    white-space: pre-line;
}

.fb-singleImage {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 8px;
    display: block;
}

.fb-images {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

    .fb-images img {
        max-width: 100%;
        max-height: 500px;
        width: auto;
        height: auto;
        border-radius: 8px;
        object-fit: contain; /* or remove entirely */
    }

.fb-reactions-bar {
    display: flex;
    justify-content: space-between; /* reactions left, comments right */
    align-items: center;
    margin-top: 0px;
    padding-top: 6px;
    font-size: 1em;
    opacity: 0.85;
}

.fb-reactions-left {
    display: flex;
    gap: 12px; /* spacing between reaction items */
}

.fb-reaction {
    display: flex;
    align-items: center;
    gap: 4px; /* spacing between emoji and number */
}

.fb-comments {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}

.facebookPosts hr, .articles hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 30px 0 10px 0;
}

.facebookPosts >.sectionPadding:last-child hr,
.articles > .sectionPadding:last-child hr
{
    display: none;
}



/*This is to allow space for the drow-down lists when the show more/show less is collapsed*/
div.merchOuterContainer section.pageSection:last-child {
    padding-bottom: 70px;
}

.sectionPadding {
    width: 90%;
    margin: 0 auto;
}

.pageSection a {
    text-decoration: underline;
    color: #21b5fe;
    cursor: pointer;
}

    .pageSection a:link {
        color: #21b5fe;
    }

    .pageSection a:visited {
        color: #21b5fe;
    }

    .pageSection a:hover {
        color: #7ED3FE;
    }

    .pageSection a:active {
        color: #21b5fe;
    }

.sideBar.affix-top {
    position: static;
    margin-top: 0;
}

.sideBar.affix {
    position: fixed;
    top: 115px;
    height: 400px;
}

.welcomeBar.affix-top {
    position: static;
    margin-top: 0;
}

.welcomeBar.affix {
    position: fixed;
    top: -90px;
}

h1, h2, h3, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

h2, caption {
    font-size: 1.4em;
    text-align: center;
    color: inherit;
}

h2 {
    padding-top: 3px;
    padding-bottom: 2px;
    background-color: black;
}

h3 {
    font-size: 1.3em;
}

#spaceBottom {
    height: 0;
}

.table {
    margin: 0;
}

    .table > thead > tr > th {
        font-weight: bold;
        font-size: 0.82em;
    }

    .table > tbody > tr > td {
        border: none;
        font-size: 0.8em;
    }

.table-condensed > tbody > tr > td {
    padding-top: 1px;
    padding-bottom: 1px;
}

.dropdown-menu {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: thin solid #999;
    font-size: 0.8em;
    min-width: 0;
}

    .dropdown-menu.colourMenu {
        width: 8em;
    }

    .dropdown-menu.sizeMenu {
        width: 7.6em;
    }

    .dropdown-menu.countryMenu {
        width: 8.98em;
    }

    .dropdown-menu.qtyMenu {
        width: 3.98em;
    }

    .dropdown-menu > li > a {
        transition: 0.2s;
    }

        .dropdown-menu > li > a:link, .dropdown-menu > li > a:visited {
            color: white;
            text-decoration: none;
        }

        .dropdown-menu > li > a:hover {
            background-color: #b30a4b;
            background-color: rgba(179, 10, 75, 0.5);
            color: white;
        }

.songbook {
    width: 100%;
    float: none;
}

#songbook1 {
    margin-top: 20px;
}

#songbook2 {
    margin-top: 40px;
}

.songTitle {
    font-size: 1em;
}

.lyricsContainer {
    text-align: center;
    font-size: 1em;
    padding-top: 8px;
    margin-bottom: 30px;
}

/*These sections are mostly the colours for the old site used in the right-side panels*/

.Home {
    background-color: #7590bd !important;
    color: white;
    background: url('../Images/SiteImages/liverpoolWaterfront.jpg') no-repeat bottom center;
}

    .Home a:link, .Home a:visited, .Home a:active {
        color: white;
    }

.Merchandise {
    background-color: #8e9bb0 !important;
    background: url('../Images/SiteImages/charlieDark.jpg') no-repeat bottom center;
}

.SheetMusic {
    background-color: #fffedf !important;
    color: black;
    background: url('../Images/SiteImages/charlieLemon.jpg') no-repeat bottom center;
}

.DownloadSheetMusic {
    color: white;
    background: url('../Images/SiteImages/downloadSheetMusicPanel.jpg') no-repeat bottom center;
}

.BackingTracks {
    color: white;
    background: url('../Images/SiteImages/charlieDoor.jpg') no-repeat bottom center;
}

.Karaoke {
    color: white;
    background: url('../Images/SiteImages/karaokePanel.jpg') no-repeat bottom center;
}

.TourDates {
    background-color: #e3fffe !important;
    background: url('../Images/SiteImages/charlieSea.jpg') no-repeat bottom center;
}

.Biography {
    background-color: #c9cab8 !important;
    background: url('../Images/SiteImages/charlieStrawRight.jpg') no-repeat bottom center;
}

.FanClub {
    background-color: black !important;
    color: white;
    background: url('../Images/SiteImages/charlieTie.jpg') no-repeat bottom center;
}

.Contact {
    background-color: #222 !important;
    background: url('../Images/SiteImages/stage.jpg') no-repeat bottom center;
}

.navFix {
    height: 400px;
    margin-bottom: 0;
    overflow: hidden;
}

.merchWrapper {
    padding: 15px;
}

.merchLeft {
    clear: left;
}

.merchImage {
    padding: 0 0.4em 0.4em 0;
}

.quantity {
    margin-top: 0.6em;
    clear: both;
    float: left;
}

.country, .size, .colour, .songsCountry {
    margin-top: 0.6em;
    clear: none;
    float: left;
}

.merchView, .songsView {
    margin-top: 1.2em;
    margin-left: 20px;
    clear: right;
}

.merchBuy {
    margin-top: 1.2em;
    clear: none;
}

.songsBuy, .songsView, .songsCountry {
    clear: none;
    float: none;
    margin-top: 10px;
}

.songsView, .songsBuy {
    margin-left: 10px;
}


.merchText {
    padding-top: 0.6em;
    font-size: 1em;
    clear: left;
}

.merchListWrapper {
    clear: both;
    float: none;
}

.flexbox .merchListWrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}

.no-flexbox .flexboxlegacy .merchListWrapper {
    display: -webkit-box;
    display: -moz-box;
    display: box;
}

.merchAlbum {
    padding: 2em 1% 1% 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.flexbox .merchAlbum {
    flex: 1;
    min-width: 100%;
}

.no-flexbox .flexboxlegacy .merchAlbum {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    max-width: 96%;
}

.no-flexbox .merchAlbum {
    padding-top: 2em;
    float: left;
    max-width: 96%;
}

.merchPriceLabel {
    display: inline-block;
    font-size: 0.8em;
    padding: 0 0 0 0.9em;
    text-shadow: 0 0 5px #533AE0;
}

.merchButtonMenu {
    border-radius: 5px !important;
}

    .merchButtonMenu span:first-child {
        display: inline-block;
        margin: 0 auto;
        text-align: center;
    }

    .merchButtonMenu.merchCountry span:first-child {
        width: 90%;
        width: calc(100% - 1em);
    }

    .merchButtonMenu.merchQty span:first-child {
        width: 70%;
        width: calc(100% - 1em);
    }

    .merchButtonMenu.merchSize span:first-child {
        width: 90%;
        width: calc(100% - 1em);
    }

    .merchButtonMenu.merchColour span:first-child {
        width: 90%;
        width: calc(100% - 1em);
    }

    .merchButtonMenu span:last-child {
        display: inline-block;
        padding-bottom: 0.2em;
        margin-right: 0.2em;
    }

a.priceList {
    color: white;
}


.btn, .btn:focus {
    height: 1.8em;
    background-color: #111;
    background-color: rgba(0, 0, 0, 0.6);
    outline: none !important;
    border: thin solid #999 !important;
    color: white;
}

.caret {
    border-top-style: solid;
}

.btn:active, .btn:hover {
    background-color: #e0533a;
    background-color: rgba(224, 83, 58, 0.6);
}

.open > .dropdown-toggle.btn-primary {
    background-color: #ea573d;
    background-color: rgba(234, 87, 61, 0.8);
    border: thin solid #999;
}

.btn-primary.merchColour {
    border: thin solid #999;
    width: 8em;
    padding: 0.2em 0 0 0;
    font-size: 0.8em;
}

.btn-primary.merchSize {
    border: thin solid #999;
    width: 7.6em;
    padding: 0.2em 0 0 0;
    font-size: 0.8em;
}

.btn-primary.merchCountry {
    border: thin solid #999;
    width: 9em;
    padding: 0.2em 0 0 0;
    margin-left: 10px !important;
    font-size: 0.8em;
}

.btn-primary.merchQty {
    border: thin solid #999;
    width: 4em;
    padding: 0.2em 0 0 0;
    font-size: 0.8em;
}

.btn-info {
    background-color: #e0533a;
    background-color: rgba(224, 83, 58, 0.6);
    border: thin solid #999;
    margin-bottom: 10px;
    width: 7em;
    text-align: center;
    padding: 0.2em 0 0 0;
    font-size: 0.8em;
}

.btn-info-spacer {
    width: 7em;
    padding: 0.2em 0 0 0;
    font-size: 0.8em;
}


.btn-info:link, .btn-info:visited, .btn-info:focus, .btn-info:active {
    background-color: #e0533a;
    background-color: rgba(224, 83, 58, 0.6);
    outline: none !important;
    border: thin solid #999 !important;
}

.btn-info:hover {
    background-color: #ea573d;
    background-color: rgba(234, 87, 61, 0.8);
    border: thin solid #999;
}


.btn-success {
    background-color: rgba(246, 239, 86, 0.6);
    margin-bottom: 0;
    width: 7em;
    text-align: center;
    padding: 0.2em 0 0 0;
    font-size: 0.8em;
    outline: none !important;
    border: thin solid #ccc !important;
}


    .btn-success:link, .btn-success:visited, .btn-success:focus, .btn-success:active {
        background-color: #f6ef56;
        background-color: rgba(246, 239, 86, 0.6);
    }

    .btn-success:hover {
        background-color: #fff759;
        color: #54521E;
    }

.navAnchor {
    padding-top: 130px;
    margin-top: -130px;
}

#navPanel {
    font-size: 10pt;
    height: 400px;
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
}

    #navPanel ul {
        margin-left: -5px;
        margin-right: -5px;
    }

        #navPanel ul.nav li {
            font-size: 9pt;
        }

        #navPanel ul.nav > li a {
            text-decoration: none;
            padding-top: 4px;
            padding-bottom: 4px;
        }

        #navPanel ul.nav > li.active a {
            text-decoration: none;
        }

        #navPanel ul.nav > li a:hover {
            text-decoration: none;
        }

        #navPanel ul.nav.merchNav > li a {
            color: white;
        }

        #navPanel ul.nav.merchNav > li.active a {
            color: white;
            background-color: #5f4b28;
        }

        #navPanel ul.nav.merchNav > li.disabled a {
            color: #777;
        }

        #navPanel ul.nav.merchNav > li a:hover {
            color: black;
            background-color: #866A39;
        }


        #navPanel ul.nav.tracksNav > li a {
            color: white;
        }

        #navPanel ul.nav.tracksNav > li.disabled a {
            color: #777;
        }

        #navPanel ul.nav.tracksNav > li.enabled a:hover {
            background-color: #deafbf;
        }

        #navPanel ul.nav.tracksNav > li.active a {
            color: white;
            background-color: #840B33;
        }

        #navPanel ul.nav.toursNav > li a {
            color: black;
        }

        #navPanel ul.nav.toursNav > li.active a {
            color: black;
            background-color: #C2D8D8;
        }

        #navPanel ul.nav.toursNav > li a:hover {
            color: black;
            background-color: #D6EFEF;
        }


        #navPanel ul.nav.biogNav > li a {
            color: black;
        }

        #navPanel ul.nav.biogNav > li.active a {
            color: white;
            background-color: #a7a799;
        }

        #navPanel ul.nav.biogNav > li a:hover {
            color: black;
            background-color: #e4e4d2;
        }


div.charlieTrackDiv {
    padding-bottom: 12px;
}

div.errorsSummary {
    color: #e43a3a;
    font-size: 0.9em;
    font-weight: normal;
    display: none;
    border-radius: 5px;
    padding: 5px;
    border: thin solid gray;
    margin-bottom: 5px;
}

label.error {
    display: block;
    height: 0.9em;
    font-weight: normal;
}

#searchIcon {
    background-color: black;
    color: white;
}

#searchButton {
    background-color: rgba(0, 80, 0, 0.9) !important;
    outline: none !important;
    border: thin solid #999 !important;
    color: white;
    margin-left: -20px;
    border-radius: 4px;
}

    #searchButton:link, #searchButton:visited, #searchButton:focus, #searchButton:active, #searchButton:hover {
        background-color: rgba(0, 80, 0, 0.9) !important;
    }

    #searchButton:hover {
        background-color: rgba(0, 120, 0, 0.8) !important;
    }

audio {
    max-width: 100%;
}

/* MEDIA QUERIES */
@media screen and (min-width: 440px) {

    body {
        font-size: 16px;
    }

    #logoBanner {
        background-size: auto;
    }

    .merchPriceLabel {
        font-size: 1em;
        padding: 0 0 0 1.5em;
    }

    /*Controls are stacked here*/

    .merchBuy {
        margin-top: 0;
        clear: right;
    }

    .quantity {
        clear: none;
    }

    .country, .size, .colour {
        margin-top: 0.8em;
        clear: right;
    }

    .btn-success {
        margin-bottom: 1.2em;
    }

    .merchText {
        clear: right;
    }

        .merchText ul {
            clear: both;
        }

    div.charlieTrackDiv {
        padding-bottom: 5px;
    }

    /*h2 {
        color: yellow;
    }*/
}

/* Small Devices, Tablets */
@media only screen and (min-width : 480px) {

    html {
        background: url('../Images/SiteImages/mediumBg.jpg') no-repeat center center fixed;
        background-size: cover;
        margin: 0;
    }

    body {
        font-size: 18px;
    }

    #spaceBottom {
        height: 0;
    }

    .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { /*This gets rid of the scrollbar on the collapsed nav vertical menu when the screen goes greater than xs - I left the usual 340px in with scrollbar in case some phones were too small to fit the menu on screen*/
        max-height: 400px !important;
    }

    .fb-images-2col img {
        width: calc(50% - 6px);
    }
}


@media only screen and (min-width : 600px) {
    .merchPriceLabel {
        padding: 0 0 0 1.6em;
    }

    .merchView {
        margin-top: 1.2em;
    }

    .merchBuy {
        clear: none;
        margin-top: 1.2em;
    }

    .country, .size, .colour, .quantity {
        margin-top: 0.6em;
        clear: none;
    }

    .btn-success {
        margin-bottom: 1.2em;
    }

    .merchText {
        font-size: 1em;
    }

    .no-flexbox .merchAlbum {
        margin-top: 0;
        min-height: 370px;
    }

    .flexbox .merchAlbum {
        min-width: 50%;
    }

    .no-flexbox .merchAlbum, .no-flexbox .flexboxlegacy .merchAlbum {
        max-width: 48%;
    }

    .songbook {
        width: 48%;
        margin-bottom: 36px;
    }

    #songbook1 {
        float: left;
        clear: both;
        margin-top: 0;
    }

    #songbook2 {
        float: right;
        margin-top: 0;
    }

    .songTitle {
        font-size: 0.85em;
    }

    .lyricsContainer {
        font-size: 0.8em;
    }
}

/* Greater than xs */
@media only screen and (min-width : 768px) {

    html {
        background: url('../Images/SiteImages/bg.jpg') no-repeat center center fixed;
        background-size: cover;
        margin: 0;
    }

    .navbar-inverse .navbar-nav > li > a {
        font-size: 0.8em;
    }

    body {
        padding-top: 120px;
        font-size: 18px; /*Already 18px ALALAL but left it in */
    }

    .page-header {
        color: #26231C;
        font-size: 2.8em;
        border-style: none;
        margin-top: 50px;
    }

    ::selection {
        background-color: #b30a4b;
        background-color: rgba(179, 10, 75, 0.5);
    }

    .pageSection, .sideBar {
        border-radius: 5px;
        border: none;
        padding: 0;
    }

    .welcomeBar .welcomeText {
        font-size: 14pt;
        text-align: right;
        line-height: 1.7em;
        padding-right: 5px;
        margin-bottom: 15px;
        text-shadow: 0 0 0.3em black;
        height: 190px !important;
        min-height: 190px !important;
        max-height: 190px !important;
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 5px;
    }

    .pageSection {
        margin-bottom: 1em;
        padding-bottom: 0;
        padding-top: 1em;
    }

    .sideBar.affix {
        width: 157px !important;
        min-width: 157px !important;
        max-width: 157px !important;
    }

    .merchPriceLabel {
        padding: 0 0 0 1.7em;
    }

    .merchText {
        font-size: 0.9em;
    }

    #spaceBottom {
        height: 900px;
        height: 70vh;
    }

    div.merchOuterContainer section.pageSection:last-child {
        padding-bottom: 0;
    }

    .songTitle {
        font-size: 0.7em;
    }

    .lyricsContainer {
        font-size: 0.65em;
    }

    h3 {
        font-size: 1.3em;
    }

    /*h2 {
        color: grey;
    }*/
}

/* Greater than sm */
@media only screen and (min-width : 992px) {

    body {
        font-size: 18px;
    }

    .page-header {
        font-size: 2.7em;
    }

    .pageSection {
        margin-bottom: 1.2em;
    }

    .sideBar.affix {
        width: 132px !important;
        min-width: 132px !important;
        max-width: 132px !important;
    }

    .welcomeBar.affix {
        width: 132px !important;
        min-width: 132px !important;
        max-width: 132px !important;
    }

    .merchPriceLabel {
        padding: 0 0 0 1.8em;
    }

    .no-flexbox .merchAlbum {
        min-height: 560px;
    }

    .flexbox .merchAlbum {
        min-width: 33%;
    }

    .no-flexbox .merchAlbum, .no-flexbox .flexboxlegacy .merchAlbum {
        max-width: 31%;
    }

    .presentationRadio {
        display: block;
        margin-left: 5px !important;
    }

    h3 {
        font-size: 1.2em;
    }

    .fb-images-3col img {
        width: calc(33.333% - 6px);
    }
}

/* Greater than md */
@media only screen and (min-width : 1200px) {

    .page-header {
        font-size: 3em;
        margin-top: 0;
    }

    .sideBar.affix {
        width: 165px !important;
        min-width: 165px !important;
        max-width: 165px !important;
    }

    .welcomeBar.affix {
        width: 165px !important;
        min-width: 165px !important;
        max-width: 165px !important;
    }

    .welcomeBar .welcomeText {
        font-size: 16pt;
        padding-right: 8px;
    }

    .pageSection {
        margin-bottom: 1.05em;
    }

    .merchPriceLabel {
        padding: 0 0 0 3em;
    }

    .carousel-caption, .carousel-caption cite {
        font-size: 0.8em;
    }

    .no-flexbox .merchAlbum {
        min-height: 500px;
    }

    .songTitle {
        font-size: 0.9em;
    }

    .lyricsContainer {
        font-size: 0.8em;
    }

    .presentationRadio {
        display: inline-block;
    }

    /*h2 {
        color: indigo;
    }*/
}

