header {
  display: inline-block;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #15191b;
  border-bottom: 1px solid #23262b;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  height: var(--header-height);
}

header div.header-grid {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: var(--page-width);
  height: var(--header-height);
}

/*
header div.header-grid>div {
	justify-items: center;
} */

header .logo {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  align-items: center;
}

header .logo > :not(:first-child) {
  margin-inline: 15px;
}

header .logo > a {
  width: 280px;
  height: 50px;
  padding: 0;
  background-image: url(../img/v2/logo-transparent.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}

header .logo .social-follow * {
  opacity: 0.6;
}

header .user {
  grid-area: 1 / 2 / 2 / 3;
  place-content: end;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 12px;
  gap: 2em;
}

header .user > div {
  white-space: nowrap;
}

header .user > div > a {
  color: inherit;
  text-decoration: none;
}

header .user > div.nav-group {
  margin-left: 2em;
}

header .user .account-menu {
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  min-width: 100px;
  margin-right: -1em;
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

header .user .account-menu > .value {
  display: inline-block;
  user-select: none;
}

header .user .account-menu .caret {
  font-size: 0.85em;
  margin-left: 4px;
  opacity: 0.7;
}

header .user .account-menu.open {
  background: #2a2d32;
  border-color: #3a3d42;
  z-index: 101;
}

header .user .account-menu > ul {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  box-sizing: border-box;
  min-width: 100px;
  margin: 0;
  padding: 4px 0;
  background: #2a2d32;
  border: 1px solid #3a3d42;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  list-style: none;
  display: none;
  z-index: 100;
}

header .user .account-menu.open > ul {
  display: block;
}

header .user .account-menu > ul > li {
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

header .user .account-menu > ul > li > a {
  display: block;
  padding: 6px 10px;
  color: inherit;
  text-decoration: none;
}

header .user .account-menu > ul > li > a:hover {
  background: rgba(255, 255, 255, 0.06);
}

header .prefs {
  grid-area: 2 / 1 / 3 / 2;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 30px;
}

header .pref-select {
  display: flex;
  flex-flow: row nowrap;
  font-size: smaller;
}

header .pref-select > div {
  border-top: 1px solid #53565b;
  padding: 4px;
}

header .pref-select > div:hover {
  border-top: 1px solid #1277ba;
  cursor: pointer;
}

header .pref-select > div.selected {
  border-top: 1px solid #1691e2;
}

header .pref-select > div.inactive {
  border-top: 1px solid #adb0b6;
}

header .pref-select > div a {
  color: #adb0b6;
  text-decoration: none;
}

header .search {
  grid-area: 2 / 2 / 3 / 3;
  position: relative;
  top: -6px;
  right: -3px;
  align-self: start;
  text-align: right;
}

header .search > form > input.q {
  width: 200px;
  font-size: 12px;
  color: #c3c6cb;
  margin: 0 0 0 7px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 5px 5px 5px 26px;
  background: #33363b url(../img/v1/icon-search.gif) 5px center no-repeat;
  background-size: 16px 16px;
  outline: none;
}

header .search > form > input.button.small {
  padding: 0 0;
  height: 26px;
  font-size: 12px;
  line-height: 1;
}

header .nav {
  grid-area: 3 / 1 / 4 / 3;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  /* margin-top: 10px; */
}

header .nav .highlight {
  color: #cc6;
}

header .nav div {
  border-top: 1px solid #53565b;
  padding-block: 5px;
  font-size: 11px;
  font-weight: 300;
  white-space: nowrap;
  flex-grow: 1;
}

header .nav div:hover {
  border-top: 1px solid #1277ba;
}

header .nav div.selected {
  border-top: 1px solid #1691e2;
}

header .nav div a {
  padding-inline: 9px;
  color: #adb0b6;
  text-decoration: none;
}

header .nav div a[href*='/holiday'] {
  color: limegreen;
}

header .flashdata {
  margin: 10px;
}

div.header-nav {
  width: 100%;
  z-index: 10;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

div.header-nav .highlight {
  color: #cc6;
}

div.header-nav div {
  border-top: 1px solid #53565b;
  padding-block: 5px;
  font-size: 11px;
  font-weight: 300;
  white-space: nowrap;
  flex-grow: 1;
}

div.header-nav div:hover {
  border-top: 1px solid #1277ba;
}

div.header-nav div.selected {
  border-top: 1px solid #1691e2;
}

div.header-nav div a {
  padding-inline: 9px;
  color: #adb0b6;
  text-decoration: none;
}

/* div.header-nav div:first-child a {
	padding-inline-start: 0;
}

div.header-nav div:last-child a {
	padding-inline-end: 0;
} */

div.header-nav.genres {
  position: absolute;
  top: 91px;
}

div.header-intl-container {
  z-index: 3;
  position: sticky;
  top: var(--header-height);
  display: block;
  margin: 0 auto;
  width: 100%;
  background: #15191b;
  border-top: 1px solid #23262b;
  border-bottom: 1px solid #23262b;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

div.header-intl {
  color: #adb0b6;
  margin: 0 auto;
  width: var(--page-width);
}

div.dropdown-header {
  text-align: left;
  width: 100%;
  padding-block: 5px;
  padding-left: 3px;
  font-size: 11px;
  cursor: pointer;
  color: #00b3ff;
}

/* div.dropdown-header:hover,
div.dropdown-header.selected a:hover {} */

div.dropdown-header.selected {
  color: revert;
}

div.dropdown-header.selected > .selection {
  color: #00b3ff;
}

div.dropdown-header.selected a {
  margin-left: 20px;
  color: #93969b;
}

div.dropdown-list {
  display: none;
}

div.list-title {
  display: none;
  text-align: left;
  flex-basis: 100%;
  color: #adb0b6;
  margin: 4px;
}

div.dropdown-list.flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  margin-top: 5px;
  /* color: #3ae; */
  color: #7ad;
}

div.dropdown-list.flex > div {
  padding-inline: 6px;
  padding-block: 3px;
  font-size: 11px;
  font-weight: 300;
  flex-grow: 1;
}

div.dropdown-list.flex > div:last-child {
  margin-bottom: 10px;
}

div.dropdown-list.flex > div a {
  color: #adb0b6;
  /* text-decoration: none; */
  padding-inline: 4px;
}

div.dropdown-list.flex > div.selected > a,
div.dropdown-list.flex > div > a:hover {
  /* color: #3ae; */
  color: #7ad;
}

div.header-nav.intl-genres {
  width: var(--page-width);
  justify-content: space-between;
  /* background: #15191b; */
}

#footer {
  padding-top: 30px;
  padding-bottom: 20px;
  color: #93969b;
  background: #1e2326;
}

#footer .col1 {
  float: left;
  font-size: 11px;
  font-weight: 300;
}

#footer .col1 .inset {
  padding: 20px 0 20px 5px;
}

#footer .col1 a.logo {
  display: block;
  width: 183px;
  height: 15px;
  background: transparent url(../img/v2/footer-prostudiomasters.png) no-repeat;
}

#footer .col1 ul {
  margin: 1em 0;
}

#footer .col1 ul li {
  display: inline-block;
  border-left: 1px solid #63666b;
  padding: 0 0.75em 0 1em;
}

#footer .col1 ul li:first-child {
  border-left: none;
  padding: 0 0.5em 0 0;
}

#footer .col1 .copyright {
  color: #53565b;
  font-weight: 300;
  font-style: italic;
}

#footer .col2 {
  float: right;
  font-size: 12px;
  line-height: 1.4;
  width: 400px;
}

#footer .col2 .inset {
  display: inline-block;
  border: 1px solid #292c31;
  box-shadow: 1px 1px 1px #46494e;
  border-radius: 5px;
  padding: 15px;
}

#footer .col2 h3 {
  display: inline;
  margin-right: 20px;
}

#footer .col2 h3 a.facebook {
  display: inline-block;
  width: 64px;
  height: 64px;
  background: transparent url(../img/v1/facebook.gif) no-repeat;
}

#footer .col2 h4 {
  font-size: 17px;
  margin-bottom: 3px;
}

#footer .select-store {
  font-size: 12px;
  outline: none;
}

.cmenu span.value {
  display: block;
  white-space: nowrap;
  width: 300px;
  background: #15191b;
  border: 1px solid rgba(50, 50, 50, 0.5);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  padding: 4px 12px 4px 2px;
  cursor: pointer;
  margin-top: -1px;
  font-size: 12px;
}

.cmenu span.value span {
  color: #9df;
}

.cmenu > li {
  float: left;
  margin-left: 0;
  cursor: default;
}

.cmenu li ul {
  position: absolute;
  width: 300px;
  left: -999em;
  z-index: 5;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
}

.cmenu li ul div {
  display: block;
  white-space: nowrap;
  text-align: left;
  text-decoration: none;
  padding: 6px 3em 8px 1em;
  border-bottom: 1px solid #53565b;
  border-top: 1px solid #33363b;
  background: #43464b;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
}

.cmenu li ul div:hover {
  background: #33363b;
}

.cmenu li ul div.selected span {
  color: #9df;
}

.cmenu span.fileformat {
  display: inline-block;
  width: 40px;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
  margin-left: 1em;
}

.cmenu span.filekhz {
  display: inline-block;
  width: 90px;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.cmenu span.filemhz {
  display: inline-block;
  width: 90px;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

span.count {
  background: #73767b;
  color: #eee;
  display: inline-block;
  padding: 2px 6px 2px 6px;
  border-radius: 1em;
  font-size: 12px;
  font-family: arial;
  font-weight: bold;
  line-height: 1;
  margin-left: 0.6em;
  box-shadow: 0 1px 5px #000;
}

span.count.blue {
  background: #3b87b9;
}

.tagline {
  padding: 40px 0 44px 0;
  background: #15191b;
  width: 100%;
}

.tagline h2 {
  font-size: 32px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 0.4em;
  color: #c3c6cb;
}

.tagline p {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #a3a6ab;
}

.tagline sup {
  font-size: 50%;
  vertical-align: top;
  opacity: 0.4;
  margin-left: 0.25em;
}

.subscribe {
  padding: 40px 0;
  background: #33363b !important;
  width: 100%;
}

#main.home {
  position: relative;
  margin-top: 30px;
}

span.count {
  margin-left: 1em;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 11px;
}

.stop-scrolling {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#overlay {
  width: 100%;
  height: 100%;
  margin: 0 0 0 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}

#quickview {
  position: fixed;
  width: 720px;
  height: 540px;
  top: 20px;
  left: 20px;
  display: none;
  background: #e3e6eb;
  box-shadow: 0 0 50px #000;
  color: #111;
  text-align: left;
  z-index: 10000;
  clear: both;
}

#quickview .content {
  margin: 0;
  padding: 0;
  /* font-weight: 300; */
}

#quickview .content .pline {
  font-size: 8pt;
  margin: 3px;
  width: 93%;
  /* opacity: 0.6; */
}

#quickview .album-details {
  width: 100%;
  font-size: 11px;
}

#quickview .album-details td {
  padding: 1px 4px 1px 0;
}

#quickview a {
  color: #357;
}

#quickview a.genre {
  color: inherit;
  line-height: 1.3;
  /* font-size: 13px; */
}

#quickview a.genre:hover {
  text-decoration: underline;
}

#quickview div.down-arrow {
  float: inline-end;
  width: 11px;
  height: 8px;
  background-image: url(../img/v2/downarrow.png);
  background-size: 11px 8px;
  background-repeat: no-repeat;
}

/* <img src="static/img/v2/downarrow.png" border="0" width="11" height="8" alt="" style="display: none;" /> */

#quickview span.parental-advisory {
  float: right;
  border: 1px solid #000;
  margin: 6px 0 0 4px;
  width: 46px;
  height: 28px;
  background-image: url(../img/v2/parental-advisory.png);
  background-size: 46px 28px;
  background-repeat: no-repeat;
}

a.genre {
  color: inherit;
  line-height: 1.4;
}

a.genre:hover {
  text-decoration: underline;
}

#quickview .content .close {
  position: absolute;
  top: 14px;
  right: 0;
  display: inline-block;
  padding: 0.5em 0.6em;
  margin: 0;
  font-size: 11px;
  color: #93969b;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  border: 1px inset #fff;
}

#quickview .content .mast {
  margin: 12px;
  width: 660px;
  -background: #eee;
}

#quickview .content .mast tr td {
  vertical-align: top;
}

#quickview .content .mast tr td.col1 {
  width: 200px;
}

#quickview .content .mast .album-art {
  border: 1px solid #d3d6db;
  width: 180px;
  height: 180px;
  margin: 3px;
}

#quickview .content .album-purchase .cmenu {
  display: flow-root;
  position: relative;
  z-index: 999;
  margin: 0;
}

#quickview .content .album-purchase .cmenu li ul {
  width: 100%;
  box-sizing: border-box;
}

#quickview .content .album-purchase .cmenu span.value {
  border-radius: 4px;
  padding: 11px 12px 10px;
  line-height: 1;
}

#quickview .content .album-purchase .button {
  padding: 11px 20px 10px;
  margin-top: 0;
}

#quickview .content .album-purchase .button.wishlist-album {
  padding: 11px 20px 10px;
}

#quickview .content .album-purchase .button.wishlist-album.wishlisted {
  opacity: 0.7;
}

#quickview .content .album-purchase .button.wishlist-album.view-wishlist {
  opacity: 1;
  cursor: pointer;
}

#quickview .content .mast .album-name {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0.25em;
  margin-bottom: 4px;
}

#quickview .content .mast .album-artist {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 12px;
}

#quickview .content .mast .album-blurb {
  font-size: 12px;
  line-height: 1.5;
  margin: 2em 0;
}

#quickview .content .album-purchase {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 6px 12px 10px;
  gap: 10px;
}

#quickview .content .tabs {
  display: flex;
  justify-content: center;
}

#quickview .content .tabs .tab {
  border: 1px solid #c3c6cb;
  width: 90px;
  padding: 6px;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
}

#quickview .content .tabs .tab.on {
  background: #d9dbe3;
}

#quickview .content .album-info-container {
  display: none;
  margin-top: 10px;
  height: 260px;
  overflow: auto;
  border-top: 1px solid #33363b;
  white-space: pre-wrap;
  background: #63666b;
  padding: 40px 60px;
  line-height: 1.7;
  font-size: 12px;
  color: #fff;
}

#quickview .content .recording-info-container {
  display: none;
  margin-top: 10px;
  height: 260px;
  overflow: auto;
  border-top: 1px solid #33363b;
  background: #63666b;
  padding: 40px 60px;
  line-height: 1.7;
  font-size: 12px;
  white-space: pre-wrap;
  color: #fff;
}

#quickview .content .comments-container {
  display: none;
  margin-top: 10px;
  height: 260px;
  overflow: auto;
  border-top: 1px solid #33363b;
  background: #63666b;
  padding: 40px 60px;
  line-height: 1.7;
  font-size: 12px;
  color: #000;
}

#quickview .content .audio-stats-container {
  display: none;
  margin-top: 10px;
  height: 340px;
  overflow: none;
  overflow-x: auto;
  border-top: 1px solid #33363b;
  background: #73767b;
  /* padding: 40px 60px; */
  /* line-height: 1.7; */
  /* font-size: 12px; */
}

#quickview .content .tracks-container {
  margin-top: 10px;
  height: 340px;
  overflow: none;
  overflow-x: auto;
  border-top: 1px solid #33363b;
  background: #73767b;
}

#quickview .content .tracks {
  width: 100%;
}

#quickview .content .tracks td {
  padding: 9px;
  border-bottom: 1px solid #83868b;
  vertical-align: middle;
  font-size: 11px;
  line-height: 1;
}

#quickview .content .tracks td.track-seq {
  text-align: right;
  width: 16px;
  font-weight: 600;
}

#quickview .content .tracks td.track-play {
  text-align: center;
  width: 24px;
}

#quickview .content .tracks td.track-name {
  text-align: left;
  width: auto;
}

#quickview .content .tracks:not(.stats) td.track-name {
  cursor: pointer;
}

#quickview .content .tracks td.track-duration {
  text-align: right;
  width: 40px;
  padding-left: 1em;
  padding-right: 2em;
}

#quickview .content .tracks td.track-format {
  text-align: right;
  width: 40px;
  padding-left: 1em;
}

#quickview .content .tracks td.track-price {
  text-align: left;
  width: 60px;
  white-space: nowrap;
  font-size: 10px;
  padding-left: 12px;
}

#quickview .content .tracks td.track-stat {
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
}

/* #quickview .content .tracks td span.sub {
			font-size: 8px;
			opacity: 0.8;
		} */

#quickview .content .tracks td.track-format span {
  border: 0 solid rgba(0, 0, 0, 0.1);
  padding: 2px 4px;
  display: inline-block;
  white-space: nowrap;
  font-size: 11px;
}

#quickview .content .tracks td.track-price span.album-only {
  white-space: nowrap;
  font-size: 10px;
  color: #c3c6cb;
  margin-left: 8px;
}

#quickview .content .tracks td.track-price span.buy-track {
  background: #c3c6cb url(../img/v2/bg-button-track.png) repeat-x top;
  color: #23262b;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  padding: 4px 10px 3px 8px !important;
  display: inline-block;
  cursor: pointer;
  font-family: arial;
  font-weight: normal;
  font-size: 10px;
  line-height: 1;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

#quickview .content .tracks td.track-price span.buy-track:active {
  background-color: #d3d6db !important;
}

#quickview .content .tracks td.album-pline {
  line-height: 1.4;
  font-size: 10px;
  opacity: 0.6;
}

#quickview .content .tracks td.album-reldate {
  line-height: 1.4;
  font-size: 10px;
  opacity: 0.6;
}

#quickview .content .tracks .TrackName {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: auto;
}

#quickview .content .tracks .ArtistName {
  font-size: 10px;
  line-height: 1.25;
  margin-top: 2px;
  opacity: 0.7;
}

#quickview .buy-album-wrap {
  display: inline-block;
  text-align: center;
}

#quickview .discount-applied {
  font-size: 10px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  font-weight: 400;
}

#quickview .discount-applied-message {
  vertical-align: top;
  display: inline-block;
  margin-top: 1px;
}

#quickview-prev {
  position: fixed;
  z-index: 99999;
  display: none;
  cursor: pointer;
  width: 36px;
  height: 64px;
  top: 400px;
  left: 20px;
  background: #c3c6c9 url(../img/v2/arrow-prev.png) no-repeat center center;
  opacity: 0.25;
  border-radius: 4px;
}

#quickview-next {
  position: fixed;
  z-index: 99999;
  display: none;
  cursor: pointer;
  width: 36px;
  height: 64px;
  top: 400px;
  right: 36px;
  background: #c3c6c9 url(../img/v2/arrow-next.png) no-repeat center center;
  opacity: 0.25;
  border-radius: 4px;
}

#quickview-prev:hover {
  opacity: 0.4;
}

#quickview-next:hover {
  opacity: 0.4;
}

#quickview .mp3 {
  cursor: pointer;
  background: url(../img/v2/icon-play.png) no-repeat center center;
  background-size: 24px 24px;
  display: inline-block;
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

#quickview .mp3.loading {
  background-image: url(../img/v2/loading3.gif);
  background-size: 12px 12px;
  opacity: 0.5;
}

#quickview .mp3.playing {
  background-image: url(../img/v2/icon-pause.png);
}

#main .mp3 {
  cursor: pointer;
  background: url(../img/v2/icon-play.png) no-repeat center center;
  background-size: 20px 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 2px 0 -2px 0;
  opacity: 0.8;
}

#main .mp3.loading {
  background-image: url(../img/v2/loading3.gif);
  background-size: 12px 12px;
  opacity: 0.5;
}

#main .mp3.playing {
  background-image: url(../img/v2/icon-pause.png);
}

/* SKIN */
#quickview {
  background: #63666b url(../img/v2/gradient-overlay.png) no-repeat left top;
  color: #fff;
  font-weight: 300;
  /* text-shadow: 0 1px 0 #63666b; */
}

#quickview .float-right {
  float: right;
}

#quickview a {
  color: #fff;
  text-decoration: none;
}

#quickview .content .social-container {
  float: right;
  display: inline-block;
  margin: 0px 0 12px 12px;
  width: 140px;
  height: 24px;
  text-align: right;
  -background: #999;
}

#quickview .content .social {
  display: none;
}

#quickview .content .close {
  color: rgba(255, 255, 255, 0.4);
  background: rgba(100, 100, 100, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: none;
  border-radius: 3em;
  font-weight: 600;
  margin: -5px 10px 0 150px;
}

#quickview .content .close:hover {
  background: rgba(255, 255, 255, 0.1);
}

#quickview .content .tabs .tab {
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: 2px;
  border-radius: 2px;
}

#quickview .content .tabs .tab.on {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.1);
}

#quickview .content .tracks tr td {
  border-bottom: 1px solid #83868b;
  cursor: default;
}

#quickview .content .tracks tr.head td {
  top: 0;
  position: sticky;
  font-weight: 400;
  background: #63666b !important;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1;
}

#quickview .content .tracks tr.album-stats td {
  background-color: #83868b;
}

#quickview .content .tracks tr:hover td {
  background: #66696e;
}

.fancybox-skin {
  border-radius: 0;
}

#faq24 {
  display: none;
  width: 540px;
  padding: 20px 60px 30px 60px;
  text-align: left;
  line-height: 1.5;
  background: #2e3d58;
  color: #fff;
}

#faq24 h3 {
  font-size: 18px;
  margin: 1.5em 0 0.5em 0;
  color: #fff;
}

#faq24 h4 {
  font-size: 12px;
  margin: 1em 0 0.5em 0;
  color: #fff;
  font-weight: 300;
}

#faq24 p {
  font-size: 12px;
  margin: 0 0 1.5em 0;
  color: #eee;
}

#faq24 ul {
  margin: 1em 1.5em;
}

#faq24 ul li {
  list-style-type: circle;
  margin: auto 2em;
  font-size: 12px;
  color: #eee;
}

#faq24 a {
  color: #fff;
  text-decoration: underline;
}

.album-info u,
.recording-info u,
.album-info-container u,
.recording-info-container u {
  text-decoration: none;
}

.album-info a,
.recording-info a,
.album-info-container a,
.recording-info-container a {
  text-decoration: none;
  color: rgba(210, 230, 255, 1) !important;
}

.album-info a:hover,
.recording-info a:hover,
.album-info-container a:hover,
.recording-info-container a:hover {
  color: rgba(210, 230, 255, 0.9) !important;
}

.format_badges {
  margin: 5px 0 0 0;
  text-align: left;
  cursor: default;
}

.format_badges .badge {
  display: inline-block;
  padding: 1px 4px 1px 2px;
  border-radius: 0px;
  background: #73767b;
  color: #03060b;
  text-shadow: 0 1px 0px rgba(255, 255, 255, 0.1);
  font-weight: 400;
  font-size: 9px;
  line-height: 1 !important;
  margin: 0 2px 2px 0;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  text-align: left;
  min-width: 2.75em;
}

.format_badges .badge.releaseType {
  /* background-color: #357; */
  /* background-color: #53565b; */
  background-color: #63666b;
}

.rotate-90 {
  display: inline-block;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.upsells5 {
  background: #33363b;
  padding: 28px 0 34px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.upsells5 h3 {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 24px 0;
  color: #93969b;
}

.upsells5 a {
  /* font-size: 12px; */
  font-weight: 400;
  text-decoration: none;
}

.upsells5 .album {
  position: relative;
  display: inline-block;
  width: 130px;
  text-align: left;
  vertical-align: top;
  font-weight: 300;
  font-size: 10px;
  margin: 15px 23px;
}

.upsells5 .art {
  display: block;
  width: 130px;
  height: 130px;
  background-size: 130px 130px !important;
  margin-bottom: 1em;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
}

.upsells5 .title {
  display: block;
  width: 130px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap;*/
  max-height: 4.2em;
  line-height: 1.4;
  color: #f3f6fb;
  font-size: 12px;
  margin-bottom: 1px;
}

.upsells5 .artist {
  display: block;
  width: 130px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap;*/
  max-height: 4.2em;
  line-height: 1.4;
  /* font-style: italic; */
  white-space: nowrap;
  color: #b3b6bb;
  font-size: 11px;
  margin-bottom: 6px;
}

.upsells5 .header {
  padding: 5px 20px 6px 20px;
  border-radius: 1em;
  line-height: 1;
  text-shadow: none;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.2);
}

.upsells5 a.order_by {
  color: #c3c6cb;
  font-weight: 300;
}

.upsells5 a.selected {
  color: #7ad;
  font-weight: 600;
}

.upsells5 .pagination {
  margin: 30px 0 20px;
}

.upsells5 .pagination .page {
  display: inline-block !important;
  border: 1px solid #7ad;
  text-align: center;
  font-size: 12px;
  min-width: 24px;
  padding: 8px 2px;
  margin: 3px;
}

.upsells5 .pagination a.page:active {
  border-color: #9cf;
  color: #9cf;
}

.upsells5 .pagination span.page {
  border-color: #7ad;
  background-color: #7ad;
  color: #000;
  cursor: default;
}

.upsells5 a.period {
  letter-spacing: 2px;
}

.upsells5 a.period.selected {
  font-weight: 600 !important;
  font-size: 12px !important;
  color: #9cf;
}

.upsells5 span.badge-sale {
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1 !important;
  font-size: 11px;
  font-weight: 600;
  color: #000 !important;
  opacity: 1;
  text-shadow: none;
  /* background: #ff6; */
  background: #9cf;
  padding: 1px 0.4em 2px 0.4em !important;
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
}

.upsells5 span.badge-recentlyadded {
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1 !important;
  font-size: 11px;
  font-weight: 600;
  color: #000 !important;
  opacity: 1;
  text-shadow: none;
  background: #d3d6db;
  padding: 1px 0.4em 2px 0.4em !important;
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
}

.upsells5 div.sort-list {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 1.5em;
  color: #83868b;
}

.upsells5 .title-explicit-lyrics {
  background: #c44;
  color: #fcc;
  font: normal 8px/8px arial;
  display: inline-block;
  padding: 2px 3px 1px 3px;
  margin-right: 0.5em;
  vertical-align: middle;
}
