/**
 * Reset the box-sizing
 */
html {
  box-sizing: border-box;
}

*, ::before, ::after {
  box-sizing: inherit;
}

html {
  -ms-text-size-adjust: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 1 */
  -webkit-font-smoothing: antialiased; /* 2 */
  -moz-osx-font-smoothing: grayscale; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3 */
}

body {
  margin: 0;
  background-color: #c6c6c6;
  background-image: url(images/back_2_crop.gif);
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

.wrapper {
  background-color: #ffffff;
  margin: 0 auto;
  text-align: left;
  vertical-align: middle;
  max-width: 960px;
}

.main {
  padding: 20px;
}
.main h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px;
}
.main ul {
  padding-left: 20px;
}
.main li {
  margin-bottom: 1em;
}

.header {
  overflow: hidden;
  padding: 20px 20px 30px;
}

.header__logo {
  margin: 0;
}

.header__logo a {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  width: 230px;
  height: 70px;
  background-image: url('images/logo-tight-crop.png');
  background-size: 230px 70px;
}

.header__right {
  padding: 10px 5px 0 5px;
  background-color: #eaeaea;
  overflow: hidden;
  margin-top: 20px;
}

.header__right table {
  text-align: right;
}
.header__right td {
  padding: 0 5px 10px;
  text-align: right;
}
.header__right svg {
  height: 24px;
}

#showitemcount {
  display: block;
  width: 40px;
  line-height: 30px;
  text-align: center;
  background-color: #6a6a6a;
  color: #fff;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}
#showcarttotal {
  font-weight: bold;
  text-align: center;
}
.footer {
  overflow: hidden;
  padding: 20px;
}

.cd {
  padding: 20px;
  background-image: -moz-linear-gradient(-90deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
  background-image: -webkit-linear-gradient(-90deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
}

.cd h2 {
}

.cd p {
}

.cd__row {
  overflow: hidden;
}

.song {
  display: flex;
  align-items: center;
  background-color: #eaeaea;
  margin-bottom: 10px;
  padding: 8px;
  border: 2px solid #eaeaea;
}

.song.-full {
  border: 2px solid #a5cfd5;
}

.song__title {
  font-weight: bold;
  flex-basis: 350px;
  padding-right: 20px;
}

.song__mp3 {
  flex-basis: 30px;
}

.song__duration {
  flex-basis: 70px;
  text-align: right;
  padding-right: 10px;
  padding-left: 10px;
}

.song__price {
  flex-basis: 50px;
  text-align: right;
  font-weight: bold;
  padding-right: 10px;
  margin-left: auto;
}

.song__btn {
  flex-basis: 100px;
}

.song__btn button svg {
  margin-right: 3px;
}


.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -.125em;
}
.svg-inline--fa path {
  fill: currentColor
}

.btn {
  display: inline-block;
  width: 100px;
  line-height: 30px;
  background-color: #a5cfd5;
  padding: 0;
  border: 0;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}
.btn:hover {
  background-color: #cb8863;
}

@media (max-width: 799px) {
  .song {
    flex-wrap:wrap;
  }
  .song__title {
    font-weight: bold;
    flex-basis: 100%;
    margin-bottom: 10px;
    padding-right: 0;
  }
}


@media (min-width: 767px) {
  .cd__img {
    float: left;
  }

  .cd__songs {
    float: right;
  }
}

@media (min-width: 560px) {
  .footer__left {
    float: left;
    width: 50%;
  }

  .footer__right {
    float: right;
    width: 50%;
    text-align: right;
  }

  .header__left {
    float: left;
    width: 45%;
  }

  .header__right {
    float: right;
    margin-top: 0;
  }
}

@media (min-width: 620px) {
  .header {
    padding-bottom: 40px;
  }
  .cd__img {
    width: 280px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .cd__songs {
    float: right;
    width: calc(100% - 300px);
  }
}

@media (max-width: 499px) {
  div.vibracart,
  div.vibracart_waiting,
  div.vibracart_alert {
    width: calc(100% - 20px) !important;
    max-width: 450px !important;
    left: 10px !important;
    right: 10px !important;
  }
}

#navbar {
  background-color: #333;
  position: fixed;
  top: -50px;
  width: 100%;
  display: block;
  transition: top 0.3s;
  z-index: 1;
}

#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 15px;
  font-family: Arial;
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
}

#navbar a:hover {
  background-color: #c6c6c6;
  color: black;
  z-index: 1;
}
