body {
    font: 400 15px/1.8 Lato, sans-serif;
    color: #777;
    margin: 0px;
    padding: 0px;
}
h3, h4 {
    margin: 10px 0 30px 0;
    letter-spacing: 10px;      
    font-size: 20px;
    color: #111;
}
.container {
    padding: 80px 120px;
}

.merch-container {
    padding: 80px 120px;
}
.person {
    border: 10px solid transparent;
    margin-bottom: 25px;
    width: 80%;
    height: 80%;
    opacity: 0.7;
}
.person:hover {
    border-color: #f1f1f1;
}
.carousel-inner img {
    /*-webkit-filter: grayscale(90%);
    filter: grayscale(90%); /* make all photos black and white */
    width: 100%; /* Set width to 100% */
    margin: auto;
}
.carousel-caption h3 {
    color: #fff !important;
}

@media (max-width: 600px) {
.carousel-caption {
    display: none; /* Hide the carousel text when the screen is less than 600 pixels wide */
}
}
.bg-1 {
    background: #2d2d2d;
    color: #bdbdbd;
    width: 100%;
}

.bg-1 a {
    color: #fff;
    text-decoration: underline;
}
.bg-1 a:hover {
    text-decoration: none;
}


.bg-1 h3 {color: #fff;} 
.bg-1 p {font-style: italic;}
.list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.thumbnail {
    padding: 0 0 15px 0;
    border: none;
    border-radius: 0;
}
.thumbnail p {
    margin-top: 15px;
    color: #555;
}
.btn {
    padding: 10px 20px;
    background-color: #333;
    color: #f1f1f1;
    border-radius: 5px;
    transition: .2s;
}
.btn:hover, .btn:focus {
    border: 1px solid #333;
    background-color: #fff;
    color: #000;
}

.btn-light {
    background-color: #ddd;
    color: #333;
}

.btn-light:hover {
    background-color: #555;
    color: #ddd;
    border: 1px solid #ddd;
}

.nav-tabs li a {
    color: #777;
}
#googleMap {
    width: 100%;
    height: 400px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}  
.navbar {
    font-family: Montserrat, sans-serif;
    margin-bottom: 0;
    background-color: #2d2d2d;
    border: 0;
    font-size: 11px !important;
    letter-spacing: 4px;
    opacity: 0.9;
}
.navbar-brand {
    padding: 5px;
    padding-left: 10px;
}
.navbar li a, .navbar .navbar-brand { 
    color: #d5d5d5 !important;
}

.nav-dropdown > li > a {
    color: #333;
}

.navbar-nav li a:hover {
    color: #fff !important;
}
.navbar-nav li.active>a {
    color: #fff !important;
    background-color: rgba(60, 60, 60, 1) !important;
}

.dropdown-menu a {
    background-color: #fff;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}
.open .dropdown-toggle {
    color: #5cb85c;
    background-color: #fff !important;
}

.dropdown-menu li a:hover {
    background-color: #777 !important;
    color: #fff;
}
footer {
    color: #777;
    padding: 32px;
}
footer a {
    color: #777;
}
footer a:hover {
    color: #777;
    text-decoration: none;
}  
.form-control {
    border-radius: 0;
}
textarea {
    resize: none;
}

.songlink:hover {
    text-decoration: underline;
}

#overlay {
    height: 100vh;
    background-color: #2d2d2d;
    z-index: 1040;
}

#splash {
    position: fixed;
    z-index: 1100;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: url("images/splash.png") no-repeat fixed;
    background-position-y: top;
    background-position-x: center;
    background-size: contain;
    background-color: #2d2d2d;
    opacity: 1;
    padding-bottom: 100px;
}

.loader {
    border: 2px solid #2d2d2d;
    border-top: 2px solid #d5d5d5;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin 1.2s ease infinite;
    margin: auto;
    margin-top: 70vh;
}


/*Social media buttons style*/
.fa {
    padding: 6px;
    font-size: 30px;
    width: 25px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    color: white;
    animation: reverseSpin 0.2s ease-out 1;
    margin: auto 4px;
}

.fa:hover {
    animation-name: spin;
    animation-duration: 0.3s;
    animation-delay: 0s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-direction: normal;
}

.fa-facebook {background: #3B5998;}
.fa-twitter {background: #55ACEE;}
.fa-google {background: #dd4b39;}
.fa-linkedin {background: #007bb5;}
.fa-youtube {background: #bb0000;}
.fa-instagram {background: #125688;}
.fa-tiktok {background: #000;}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes reverseSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* merch card styling */
.merch-card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    background-color: #ddd;
    display: block;
    margin: 15px 15px;
    float: left;
}

.merch-card > div > p {
    color: #2d2d2d;
    margin: 5px 0px;
    font-style: normal;
}

.merch-card a {
    color: #2d2d2d;
}

.merch-card a:hover {
    color: #999;
}

.merch-name, .merch-price {
    text-align: left;
}

.merch-name {
    width: 80%;
    margin: 0px;
    float: left;
}   

.merch-price {
    text-align: right;
    color: #3554a4;
}

.merch-description {
    text-align: left;
}

.buy-btn {
    background-color: #5cb85c;
    margin-bottom: 10px;
    width: 100%;
}

.buy-btn:hover {
    border-color: #5cb85c;
    color: #5cb85c;
}

/* On mouse-over, add a deeper shadow */
.merch-card:hover {
    box-shadow: 0 8px 16px 0 rgba(255,255,255,0.2);
}

/* Add some padding inside the card container */
.merch-card > .container {
    padding: 2px 16px;
    width: 200px;
}

/*dropdown menu styling*/
.dropdown-menu {
    background-color: #fff;
}

@keyframes dropdown-anim {
    from {top: -116px;}
    to {top: 50px;}
}

nav .dropdown-menu {
    animation-name: dropdown-anim;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0, 0, 0, 1);
}

.buy-btn[disabled]:hover {
    background-color: #5cb85c;
    color: #f1f1f1;
}

.sizeLink {
    color: #fff;
}

#mobileMerch .merch-card {
    margin-left: -10px;
}

/*TOUR CARDS*/
.tourCard {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    background-color: #ddd;
    width: 250px;
    margin-right: 10px;
    margin-bottom: 5px;
    float: left;
    height: 187px;
}

/* On mouse-over, add a deeper shadow */
.tourCard:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.tourCard > .container {
    padding: 2px 16px;
    width: inherit;
}

.tourCard > .container > h4 {
    width: 100%;
    font-size: 12pt;
    background-color: #ddd;
    color: #333;
    text-align:center;
}

.glyphpicon-check {
    color: #333;
}

.tourCard p {
    text-align: center;
    color: #2d2d2d;
}  

.tourTable td {
    padding: 15px !important; 
    border: none !important; 
}

/*isolation album css*/

.isoSmall {
    height: 150px;
    width: 100%;
    background-image: url("images/isobg.jpg");
    background-size: cover;
    background-position: center bottom;
    transition: background-image 0.2s;
    font-family: "Arial Black", Gadget, sans-serif;
    color: #ddd;
    transition: color 0.2s;
}

.isoSmall:hover {
    height: 150px;
    width: 100%;
    background-image: url("images/isobigdark.png");
    background-size: cover;
    background-position: center bottom;
    transition: background-image 0.2s;

    text-decoration: none;
}

.isoSmall:hover {
    color: rgba(0, 0, 0, 0);
    transition: color 0.2s;
}

a.isoLink:hover, a.isoLink {
    text-decoration: none;
}

.customAlbumText {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding-top:30px;
}

.SCWideEmbed {
    padding-left: 15px;
    padding-right: 15px;
}

.essayFrame{
    width: 100%;    
}


.modal-lg {
    width: 95vw;
}

/* NEWS CARDS */
#press-desktop {
    display: initial;
}

#press-mobile {
    display: none;
}

.newsCard {
    background-color: #fff;
    box-shadow: 3px 3px 10px 2px #111;
    margin-top: 15px;
    transition: 0.3s;
}

.newsCard:hover {
    box-shadow: 5px 5px 10px 2px #000;
}

.newsCard img {
    float: left;
}

.newsCard h5 {
    color: #333;
    font: 20px sans-serif;
    height: 100px;
    line-height: 100px;
    margin: 0px;
    text-decoration: underline;
}

.newsCard:hover h5 {
    text-decoration: none;
}



.clearFix::after {
    content: "";
    clear: both;
    display: table;
}

.jumboImg h1 {
      font-size: 72px;
      font-style: bold;
  }

  .galleryImg {
      width: 100%;
      box-shadow: 0px 0px 5px 2px #ccc;
  }

  .galleryImg:hover {
      box-shadow: 0px 0px 5px 4px #ccc;
  }

  #galleryCarousel {
      box-shadow: 0px 0px 5px 2px #ccc;
  }

  #galModalDialog {
      margin-top: 65px;
  }

  /*  GALLERY TYPE SWITCHING (depending on mobile or desktop)  */
  #galleryMobile {
      display: block;
  }

  #gallery {
      display: none;
  }

  /*@media only screen and (min-width: 800px) {
      #galleryMobile {
          display: none;
      }

      #gallery {
          display: block;
      }
  }*/

  .carousel-control.right, .carousel-control.left {
    background-image: none;
    color: #eee;
  }
