@media screen and (min-width: 980px) /* Desktop */ {
  #mainNav {
      position: relative;
  }
}

@media screen  and (max-width: 979px) /* Tablet */ {
  #mainNav {
    position: relative;
  }
}

@media screen and (max-width: 500px) /* Mobile */ {
  header, body, #podcastsBody, #podcastsBodyContent  {
    width: 100vw !important;
    min-width: 100vw !important;
    padding: 0 !important;
  } 
  #mobileNav {
    background-color: black;
    text-transform: uppercase;
    letter-spacing: 3px;  
    color: white;
  }
  #collapsibleNavbar {
    padding-top: 1px;
    padding-right: 0px;
    text-align: right;

    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1); 
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1); 
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);
  }
  #mobileNav .navbar-nav li.nav-item a.nav-link {
    color: white; 
  }
  #mobileNav .navbar-nav li.nav-item a.nav-link:hover {
      color: #b7cc33;   
  }
  #podcastsBody {
    background-color: white;
    padding: 0px;
  }
  #podcastsBodyContent {
    height: auto !important;
    margin: 0 auto !important; 
    overflow: hidden !important;
    position: relative !important;
  }
  #podcastsBodyHeader {
    height: 110px !important;
    width: 256px !important;
    margin: 0 auto !important;
  }
   .show {
    height: 40vw !important;
    width: 40vw !important;
    position: relative !important;
    float: left !important; 
    margin: 0 auto !important;
    margin-left: 5vw !important;
    margin-right: 5vw !important;
    margin-top: 5vw !important;
    margin-bottom: 5vw !important;
    padding: 0px !important;
  }
  .show:hover {
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1); 
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1); 
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);
  }
  .show-cover  {
    width: 40vw !important;
    height: 40vw !important;
  }
  .show-listen {
     display: none !important;
  }
  .show-social-media {
    width: 100vw;
    display: none;
  }
  .show-description{
    height: 75vw;
    width: 100vw;
    display: block;
    padding: 20px;
    background-color: white;
    display: none;
  }

}