/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
@import url("https://use.typekit.net/lwg5ycj.css");
@import "../fonts/Frontage/Frontage-Bold-min.css";
:root {
  --font-family: Effra, sans-serif;
  --font-family--heading: Frontage;
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #3676F3;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: none;
  background-color: #3676F3;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #3676F3;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #3676F3;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small);
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  box-shadow: var(--form-box-shadow-focus);
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: var(--border);
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: #100264;
  opacity: 0.25;
}

[type=search] {
  -webkit-appearance: textfield;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: var(--spacing--small);
}

[type=file] {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

select {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

html {
  background-color: #fff;
  box-sizing: border-box;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: var(--border);
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

html {
  color: #100264;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6,
#top .link {
  font-family: var(--font-family--heading);
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
.lead {
  font-size: 1.5625em;
  line-height: var(--line-height--heading);
  margin: var(--spacing) auto;
  color: #F16949;
}

h1 {
  font-size: 3.0517578125em;
}

p {
  margin: 0 auto var(--spacing--small);
}

a {
  color: #3676F3;
  text-decoration-skip: ink;
  transition: color var(--duration) var(--timing);
}
a:hover {
  color: #3676F3;
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

.wrapper .inner {
  max-width: 1100px;
  margin: auto;
  padding: 1em;
}
.wrapper section {
  overflow: hidden;
}
.wrapper section h2, .wrapper section p {
  text-align: center;
}
.wrapper section .toggle {
  width: 40px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #888;
  border-radius: 25px;
  padding: 2px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
  margin-left: 5px;
}
.wrapper section .toggle div {
  background-color: #888;
  border-radius: 25px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 100;
  line-height: 0.7em;
  color: #fff;
}
.wrapper section .toggle div:first-child {
  background-color: #F16949;
}
.wrapper section .toggle.usd div:first-child {
  background-color: #888;
}
.wrapper section .toggle.usd div:last-child {
  background-color: #F16949;
}
.wrapper section .table_wrap {
  margin: 80px 0;
  overflow: auto;
}
.wrapper section .table_wrap .search {
  margin-bottom: 10px;
  padding: 0 15px;
  line-height: 1em;
  background-color: #fff;
  border-radius: 50px;
  max-width: 250px;
}
.wrapper section .table_wrap .table {
  font-size: 0.9em;
  overflow: auto;
  margin: auto;
}
.wrapper section .table_wrap .table .row {
  display: grid;
  grid-auto-rows: auto;
  grid-column-gap: 10px;
  border-bottom: 1px solid #fff;
  width: 100%;
}
.wrapper section .table_wrap .table .head {
  font-weight: 700;
}
.wrapper section .table_wrap .table .head .row {
  padding-bottom: 15px;
  align-items: flex-end;
}
.wrapper section .table_wrap .table .head .row > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.1em;
  cursor: pointer;
}
.wrapper section .table_wrap .table .head .row > div .long {
  display: flex;
  align-items: center;
}
.wrapper section .table_wrap .table .head .row > div.active span {
  position: relative;
}
.wrapper section .table_wrap .table .head .row > div.active span:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: calc(50% - 2.5px);
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  transform-origin: center;
}
.wrapper section .table_wrap .table .head .row > div.active.reverse span:after {
  transform: rotate(225deg);
}
.wrapper section .table_wrap .table .body {
  font-size: 0.9em;
  max-height: 600px;
  overflow-x: hidden;
  overflow-y: overlay;
}
.wrapper section .table_wrap .table .body .row {
  padding: 10px 0;
}
.wrapper section .table_wrap .table .body .row > div {
  display: flex;
  align-items: center;
  line-height: 1.1em;
}
.wrapper section .table_wrap .table .body .row > div:last-child span {
  padding-right: 20px;
}
@media screen and (max-width: 700px) {
  .wrapper section .table_wrap .table {
    font-size: 0.7em;
  }
  .wrapper section .table_wrap .table .long {
    flex-direction: column-reverse;
    align-items: flex-start !important;
  }
  .wrapper section .table_wrap .table .long .toggle {
    margin: 0 0 5px 0;
  }
}
.wrapper section .graph_wrap .row {
  display: grid;
  grid-template-columns: 140px auto;
  grid-column-gap: 10px;
}
.wrapper section .graph_wrap .row > div {
  padding: 5px 0;
}
.wrapper section .graph_wrap .row .artist {
  text-align: right;
}
.wrapper section .graph_wrap .row .bar_wrap .bar {
  transform: skew(-20deg);
  height: 100%;
  position: relative;
  transition: width 0.1s;
}
.wrapper section .graph_wrap .row .bar_wrap .bar span {
  display: block;
  position: absolute;
  top: 2px;
  right: 5px;
  color: #fff;
  font-size: 0.9em;
  font-weight: 700;
  transform: skew(10deg);
}
.wrapper section .graph_wrap .row .bar_wrap .bar.small span {
  left: calc(100% + 10px);
  color: inherit;
}
.wrapper section .graph_wrap .row .bg {
  background-image: repeating-linear-gradient(to right, #fff 0%, #fff calc(100%/14), #F2F2F2 calc(100%/14), #F2F2F2 calc(100%/14*2));
}
.wrapper section .graph_wrap .row.buffer .bg {
  position: relative;
}
.wrapper section .graph_wrap .row.buffer .bg:after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  background-image: repeating-linear-gradient(to right, #dadada 0, #dadada 1px, transparent 1px, transparent calc(100%/7));
}
.wrapper section .graph_wrap .top {
  position: relative;
}
.wrapper section .graph_wrap .top .axis {
  border-bottom: 1px solid #dadada;
  position: relative;
}
.wrapper section .graph_wrap .top .axis div {
  position: absolute;
  transform: translate(-50%, 0);
}
.wrapper section .graph_wrap .top .axis div:nth-child(1) {
  left: 0;
}
.wrapper section .graph_wrap .top .axis div:nth-child(2) {
  left: calc(100%/7);
}
.wrapper section .graph_wrap .top .axis div:nth-child(3) {
  left: calc(100%/7*2);
}
.wrapper section .graph_wrap .top .axis div:nth-child(4) {
  left: calc(100%/7*3);
}
.wrapper section .graph_wrap .top .axis div:nth-child(5) {
  left: calc(100%/7*4);
}
.wrapper section .graph_wrap .top .axis div:nth-child(6) {
  left: calc(100%/7*5);
}
.wrapper section .graph_wrap .top .axis div:nth-child(7) {
  left: calc(100%/7*6);
}
.wrapper section .graph_wrap .bottom {
  max-height: 600px;
  overflow: overlay;
}
@media screen and (max-width: 700px) {
  .wrapper section .graph_wrap .row {
    display: block;
  }
  .wrapper section .graph_wrap .top .axis > div {
    top: -5px;
    font-size: 0.7em;
  }
  .wrapper section .graph_wrap .top .hide {
    display: none;
  }
  .wrapper section .graph_wrap .top .buffer {
    height: 5px;
  }
  .wrapper section .graph_wrap .bottom {
    background-image: repeating-linear-gradient(to right, #fff 0%, #fff calc(100%/14), #F2F2F2 calc(100%/14), #F2F2F2 calc(100%/14*2));
    padding-top: 20px;
  }
  .wrapper section .graph_wrap .bottom .row {
    display: block;
    position: relative;
    padding-top: 10px;
  }
  .wrapper section .graph_wrap .bottom .row .artist {
    text-align: left;
    position: absolute;
    left: 5px;
    top: -8px;
    font-size: 0.9em;
  }
  .wrapper section .graph_wrap .bottom .row .bar_wrap {
    height: 35px;
  }
}
.wrapper section#header, .wrapper section#most-streamed, .wrapper section#explore {
  background-image: linear-gradient(to bottom, #13027E, #080032);
  color: #fff;
}
.wrapper section#outro {
  font-size: 0.9em;
}
.wrapper section#outro p.b {
  font-weight: 700;
}
.wrapper section#outro p a {
  font-weight: 700;
}
.wrapper section#footer {
  background-color: #4D2FC3;
  color: #fff;
  font-size: 0.7em;
}
.wrapper section#footer p a {
  color: inherit;
}
.wrapper section#footer p img {
  max-width: 150px;
  margin: 20px 0 10px;
}
.wrapper section#top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}
.wrapper section#top .inner {
  padding: 20px 20px 10px 20px;
  overflow: auto;
}
.wrapper section#top ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.wrapper section#top ul li {
  display: flex;
  align-items: center;
  margin: 0 5px 10px;
}
@media screen and (max-width: 984px) {
  .wrapper section#top ul {
    font-size: 0.9em;
    width: 900px;
  }
  .wrapper section#top ul li .link a {
    width: 250px;
  }
}
.wrapper section#top .label {
  margin-right: 10px;
  font-weight: 700;
}
.wrapper section#top .link {
  color: #fff;
  background-color: #F16949;
  border-radius: 25px;
  font-size: 0.75em;
  text-align: center;
  line-height: 1em;
}
.wrapper section#top .link a {
  display: block;
  width: 280px;
  color: #fff;
  text-decoration: none;
  padding: 7px 0 5px;
}
.wrapper section#header {
  margin-bottom: 20px;
  padding-top: 70px;
}
.wrapper section#header .inner {
  position: relative;
}
.wrapper section#header .inner:before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 45%;
  content: "";
  width: 55%;
  height: 100%;
  background-image: url(../img/header-img.png);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (max-width: 700px) {
  .wrapper section#header .inner {
    padding-bottom: calc(20px + 60%);
  }
  .wrapper section#header .inner:before {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-bottom: 65%;
    background-image: url(../img/header-img.png);
    background-position: top center;
  }
}
.wrapper section#header h1, .wrapper section#header h2, .wrapper section#header p {
  text-align: left;
}
.wrapper section#header .text {
  width: 55%;
  position: relative;
}
@media screen and (max-width: 700px) {
  .wrapper section#header h1 {
    font-size: 10vw;
  }
  .wrapper section#header .text {
    width: 100%;
  }
}
.wrapper section#most-streamed .row {
  grid-template-columns: 50px repeat(2, minmax(0, 1.5fr)) 90px minmax(0, 1fr) 50px minmax(0, 1fr);
}
.wrapper section#most-streamed .row > div:first-child {
  color: #24CF5F;
}
.wrapper section#most-streamed .row > div:last-child {
  color: #F16949;
  font-weight: 700;
}
.wrapper section#explore .row {
  grid-template-columns: repeat(2, minmax(0, 1.5fr)) 90px minmax(0, 1fr) 50px minmax(0, 1fr);
}
.wrapper section#explore .row > div:last-child {
  color: #F16949;
  font-weight: 700;
}
.wrapper section#most-streamed {
  background-image: url(../img/most-streamed-bg.png), linear-gradient(to bottom, #13027E, #080032);
  background-position: bottom center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.wrapper section#explore {
  background-image: url(../img/explore-bg.png), linear-gradient(to bottom, #13027E, #080032);
  background-position: bottom center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 700px) {
  .wrapper section#most-streamed .table {
    width: 470px;
  }
  .wrapper section#most-streamed .head, .wrapper section#most-streamed .body {
    padding: 0 20px 0 0;
  }
  .wrapper section#most-streamed .row {
    grid-template-columns: 30px repeat(4, 70px) 30px 50px;
  }
  .wrapper section#explore .table {
    width: 430px;
  }
  .wrapper section#explore .head, .wrapper section#explore .body {
    padding: 0 20px 0 0;
  }
  .wrapper section#explore .row {
    grid-template-columns: repeat(4, 70px) 30px 50px;
  }
}
