body,
html {
  padding: 0;
  margin: 0;

  height: 100%;
}

body {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  background: #373636;
  background-image: url("img/icon-bg-tile.png");
  color: #373636;
}

.main_container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page_container {
  max-width: 1000px;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: red;
  background-image: url("img/red-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: 1s ease-in-out all;
}

.menu_container {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  z-index: 200;
}

.menu_item {
  flex: 1;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: center;
  padding-bottom: 15px;
  transition: 0.5s ease-in-out all;
  cursor: pointer;
  border-radius: 10px;
  margin: 5px;
}

.menu_selected {
  color: white;
  background-color: #dc2c1f;
}

.menu_item:hover {
  color: white;
  background-color: #dc2c1f;
  transition: 0.1s ease-in-out all;
}

.menu_item i {
  font-size: 40px;
  padding: 0;
}

.station_logo {
  background-image: url("img/stationlogos/NationUK.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 5vh 5vw;
  flex: 1;
  min-height: 50px;
  min-width: 50px;
  transition: 1s ease-in-out all;
}

.schedule_item,
.track_item {
  width: 80%;
  height: 100px;
  margin: 10px auto;
  background-color: #eee;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 10px;
}

.transport_controls {
  font-size: 14vh;
  color: white;
  text-align: center;
}

.schedule_img,
.track_img {
  background-image: url("img/stationicons/NationUK.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 90px;
  border-radius: 10px;
  transition: 1s ease-in-out all;
}

.schedule_left,
.track_left {
  width: 100px;
}

.schedule_right,
.track_right {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.schedule_head,
.track_head {
  font-size: 14px;
  font-weight: lighter;
  position: absolute;
  white-space: nowrap;
}

.track_name,
.schedule_name {
  font-size: 16px;
  font-weight: bold;
  padding-top: 20px;
  text-align: left;
  overflow: hidden;
}

.track_detail,
.schedule_detail {
  text-align: left;
}

#playButton {
  cursor: pointer;
}

.stations_container,
.just_played_container,
.schedule_container,
.account_container {
  text-align: center;
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: auto;
  padding-bottom: 150px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.account_container {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.about_logo img {
  width:150px;
  padding-top: 20px;
}


#firebaseui-auth-container {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 500;
  display: none;
  backdrop-filter: blur(10px);
}
.firebaseui-container {
  margin-top: 100px !important;
}

.station_item {
  display: inline-block;
  padding: 5px;
  width: 200px;
  text-align: center;
}

.station_item_logo img {
  width: 200px;
  height: 200px;
  cursor: pointer;
  border-radius: 10px;
}

.popup_title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
  padding: 10px;
}

.schedule_date_title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  padding: 5px;
}

.schedule_times,
.track_times {
  position: absolute;
  bottom: 0;
  right: 0;
}

.station_item_name {
  color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  font-size: 16px;
  cursor: pointer;
}

.schedule_current_show {
  background-color: #a21f26;
  color: white;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -800px 0;
  }

  100% {
    background-position: 800px 0;
  }
}

.animated-background {
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background-color: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #bbbbbb 18%, #eeeeee 33%);
  background-size: 800px 104px;
  position: relative;
}

.station_logo_bar {
  flex: 1;
  display: flex;
  max-height: 50vh;
}

.station_carousel {
  display: flex;
  overflow-x: auto;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.station_carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.spacer {
  width: calc(50vw - 10vh);
  flex-shrink: 0;
}

.station_icon {
  width: 20vh;
  height: 20vh;
  margin: 0 5px;
  opacity: 0.5;
  transition: all 0.3s;
  scroll-snap-align: center;
  cursor: pointer;
  border-radius: 10px;
  flex-shrink: 0;
}

.station_icon.active {
  width: 40vh;
  height: 40vh;
  opacity: 1;
}

.user_detail {
    color:white;
    padding: 10px;
}

.link {
  display: inline-block;
  color: white;
  font-size: 14px;
  padding: 10px;
  text-align: left;
  transition: 1s ease-in-out all;
  box-sizing: border-box;
  margin: 5px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  
}
.link:hover {
cursor: pointer;
transition: 0.1s ease-in-out all;
background-color: #f03223;
}
.link_container {
    box-sizing: border-box;
}
.copyrightinfo {
    font-size: 18px;
    color: white;
    padding: 10px;
}
.login_logo img{
width: 150px;
}
.login_logo {
  text-align: center;
}
.login_text {
  text-align: center;
}

.mdl-button--raised.mdl-button--colored {
  background: rgb(241 46 29) !important;
  color: rgb(255,255,255) !important;
}

.hr {
  border-bottom:1px dotted rgba(255, 255, 255, 0.3);
}
.terms_links {
  position: absolute;
  bottom: 10px;
  margin-bottom: 100px;
  width: 100%;
}

.terms_links .link {
font-size: 10px;
}

.volume_controls {
  position: absolute;
  bottom: 100px;
  color: white;
  font-size: 35px;
  background-color: rgba(0,0,0,0.5);
  padding: 10px;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  text-align: center;
  right: 10px;
  cursor: pointer;
}

.volume_slider {
  display: none;
  position: absolute;
  right: 15px;
  bottom: 170px;
  background-color: rgba(0,0,0,0.5);
  width: 30px;
  height: 210px;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
}

.volume_slider input[type="range"] {
  writing-mode: vertical-lr;
  direction: rtl;
  appearance: slider-vertical;
  width: 16px;
  vertical-align: bottom;
  /* Adjust the width and height as needed */
  width: 20px;
  height: 200px;
}