body, html {
  margin: 0;
  padding: 0;
  background: #DAD8D8;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3, h4, h5, h6, p, a, span, ul, li, button, article, figure {
  margin: 0;
  padding: 0;
  color: #565656;
  font-family: fp-dancer-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.tag {
  display: inline-block;
  background: #DAD8D8;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 3px 10px;
  border-radius: 3px;
}
.tag.extra {
  color: #F6F6F6;
  background: #D55B40;
}

a.tag {
  background: #2078C9;
  color: #F6F6F6;
  transition: filter 0.2s, background 0.2s;
}
a.tag:hover {
  filter: brightness(140%);
}

.app-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.app-links a {
  background: #E6E5E5;
  padding: 10px;
  border-radius: 8px;
  transition: color 0.5s, background 0.5s;
  font-size: 16px;
}
.app-links a:hover {
  color: #FFF;
  background: #57A6FA;
}

@keyframes error-animation {
  0% {
    transform: scale(100%) rotate(0);
    color: #898989;
  }
  50% {
    transform: scale(125%) rotate(-13deg);
    color: #D55B40;
  }
}
.banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #FDCB74;
  margin-bottom: 20px;
}
.banner i {
  color: #565656;
  font-size: 24px;
}

i.error-icon {
  animation: error-animation 4s linear infinite;
}

.loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.75em;
}
@keyframes loading {
  0% {
    transform: scale(100%) rotate(0);
    color: #B6B4B4;
  }
  50% {
    transform: scale(125%) rotate(-13deg);
    color: #898989;
  }
}
.loading i {
  animation: loading 2.5s linear infinite;
  color: #B6B4B4;
}
.loading p {
  color: #B6B4B4;
}

.spin {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #FABE57;
  animation: spin 2.5s linear infinite;
  font-size: 1.5em;
  opacity: 0.35;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 1.5em;
  background: #57A6FA;
  border-radius: 8px;
  font-size: 16px;
}
.badge .description {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 0;
  height: 100%;
  padding: 0;
  background: #F6F6F6;
  transition: width 0.2s, padding 0.2s;
}
.badge .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 2em;
  height: 100%;
  background: #FDCB74;
  border-radius: 8px 0 0 8px;
}
.badge .icon i {
  transition: transform 0.2s;
}
.badge .value {
  padding: 0 10px;
  color: #FFF;
  font-weight: bold;
}
.badge:hover .description {
  width: 100px;
  padding: 0 10px;
}
.badge:hover .icon i {
  transform: scale(125%) rotate(-15deg);
}

.total {
  color: #898989;
  margin-left: 0.5em;
  font-size: 0.75em;
}

.episode-play {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  background: none;
  border: none;
}
.episode-play i.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  width: 40px;
  height: 40px;
  background: #E6E5E5;
  border: none;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
  color: #898989;
}
.episode-play .cta {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block ruby;
  overflow: hidden;
  z-index: 2;
  margin-left: -10px;
  padding: 3px 10px 3px 20px;
  background: #F1F0F0;
  border-radius: 4px;
  transition: padding 0.2s;
  color: #565656;
  font-size: 18px;
}
.episode-play .duration {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-self: center;
  display: block ruby;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  position: absolute;
  top: 7px;
  left: 30px;
  padding: 3px 10px;
  background: #F1F0F0;
  border-radius: 4px;
  transition: top 0.2s, opacity 0.2s;
  color: #565656;
  font-size: 16px;
}
.episode-play .duration i {
  margin-right: 0.25em;
}
.episode-play:hover i.play-button {
  background: #57A6FA;
  color: #FFF;
}
.episode-play:hover .duration {
  top: 36px;
  opacity: 1;
}
.episode-play:hover .cta {
  padding-left: 40px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 50%;
  margin-top: 20px;
  background: #FFF;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul li button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 10px;
  background: none;
  border: none;
  color: #898989;
  font-size: 16px;
  transition: background 0.2s, padding 0.2s;
}
.pagination ul li button:hover {
  background: #E6E5E5;
  padding: 5px 10px 15px 10px;
}
.pagination ul li button.selected {
  background: #57A6FA;
  color: #FFF;
  font-weight: bold;
}
.pagination ul li button.selected:hover {
  background: #2078C9;
}
.pagination ul li.empty {
  padding: 10px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}
.modal .modal-content {
  width: 75%;
  height: 75%;
  background: #FFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.modal .modal-content section.main {
  width: 100%;
}

main {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding: 20px;
  padding-top: 40px;
  background: #F6F6F6;
}
main .separator {
  width: 100%;
  height: 80px;
}
main h2 {
  width: 100%;
}
main h2 .label {
  display: inline-block;
  margin-left: 20px;
  padding: 10px 20px;
  background: #E6E5E5;
  border-radius: 8px 8px 0 0;
  font-size: 28px;
  font-weight: bold;
}
main h2 .actions {
  margin-left: 20px;
}
main h2 .actions a {
  color: #DAD8D8;
  font-size: 18px;
  transition: color 0.2s;
}
main h2 .actions a:hover {
  color: #565656;
}

@media (max-width: 480px) {
  main h2 {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  main h2 .label {
    margin: 0;
  }
  main h2 .actions {
    display: none;
  }
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

a.article-mini {
  display: flex;
  gap: 10px;
}
a.article-mini .image {
  width: 48px;
  height: 48px;
  overflow: hidden;
}
a.article-mini .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-sizing: border-box;
  transition: filter 0.2s, transform 0.2s;
}
a.article-mini .no-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
}
a.article-mini .no-image i {
  transition: color 0.2s, transform 0.2s;
  font-size: 30px;
}
a.article-mini .details {
  display: flex;
  flex-direction: column;
  width: calc(100% - 48px - 10px);
}
a.article-mini .details .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: filter 0.2s;
  color: #57A6FA;
  font-size: 18px;
  font-weight: bold;
}
a.article-mini .details .author {
  font-size: 16px;
  font-weight: lighter;
}
a.article-mini .details .date {
  color: #898989;
  font-size: 14px;
}
a.article-mini:hover .image img {
  filter: brightness(125%);
  transform: scale(125%);
}
a.article-mini:hover .no-image i {
  transform: scale(125%);
  color: #57A6FA;
}
a.article-mini:hover .details .title {
  filter: brightness(125%);
}

.episode-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.episode-list.mini {
  gap: 10px;
}
.episode-list.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.episode-list.horizontal .episode-mini-card {
  width: calc(50% - 10px);
}

.episode-card {
  display: flex;
  background: #F6F6F6;
}
.episode-card a.image {
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.episode-card a.image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter 0.2s, transform 0.2s;
}
.episode-card a.image .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.episode-card a.image .icon i {
  color: #B6B4B4;
  font-size: 70px;
  transition: filter 0.2s, transform 0.2s;
}
.episode-card .details {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  width: calc(100% - 200px);
  height: 200px;
}
.episode-card .details .tag {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: right 0.2s;
}
.episode-card .details h3 {
  margin-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 28px;
}
.episode-card .details h5 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: lighter;
}
.episode-card .details p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.episode-card .details .play-container {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
  margin-top: 20px;
}
.episode-card .details .play-container .episode-play {
  position: unset;
}
.episode-card .details .play-container .app-links {
  margin-top: 0;
}
.episode-card .details .episode-play {
  position: absolute;
  bottom: 20px;
}
.episode-card:hover a.image img {
  transform: scale(110%);
  filter: brightness(125%);
}
.episode-card:hover a.image .icon i {
  transform: scale(110%);
  filter: brightness(125%);
}
.episode-card:hover .details .tag {
  right: 40px;
}
.episode-card:hover .details .more {
  opacity: 1;
}

.episode-mini-card {
  display: flex;
  gap: 10px;
  height: 60px;
  background: #F6F6F6;
  border-radius: 8px;
}
.episode-mini-card a {
  display: flex;
  flex-grow: 1;
  gap: 10px;
  overflow: hidden;
}
.episode-mini-card a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 60px;
  height: 60px;
  border-radius: 8px 0 0 8px;
  transition: filter 0.2s;
}
.episode-mini-card a i.no-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 30px;
}
.episode-mini-card a .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.episode-mini-card a .details .title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
}
.episode-mini-card a .details .edition {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  font-weight: lighter;
}
.episode-mini-card a .item-load {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #DAD8D8;
}
.episode-mini-card a .error {
  color: #D55B40;
}
.episode-mini-card a .icon {
  transition: color 0.2s, transform 0.2s;
}
.episode-mini-card a:hover img {
  filter: brightness(125%);
}
.episode-mini-card a:hover .icon {
  color: #57A6FA;
  transform: scale(125%);
}
.episode-mini-card button {
  cursor: pointer;
  background: #DAD8D8;
  padding: 10px 20px;
  border: none;
  border-radius: 0 8px 8px 0;
  transition: padding 0.2s, background 0.2s, color 0.2s;
  color: #565656;
  font-size: 14px;
  font-weight: lighter;
}
.episode-mini-card button:hover {
  background: #B6B4B4;
  padding: 20px 40px;
  color: #FFF;
}

@media (max-width: 480px) {
  .episode-card {
    flex-direction: column;
  }
  .episode-card a.image {
    width: 100%;
    height: 125px;
  }
  .episode-card .details {
    width: 100%;
    height: auto;
  }
  .episode-card .details .tag {
    top: -40px;
  }
  .episode-card .details p {
    display: none;
  }
  .episode-card .details .episode-play {
    position: relative;
    bottom: auto;
    margin-top: 10px;
  }
  .episode-card .details .play-container {
    flex-direction: column;
    gap: 1em;
  }
  .episode-card .details .more {
    opacity: 1;
  }
  .episode-card .details .more i {
    font-size: 28px;
  }
  .episode-mini-card .details span.title {
    font-size: 16px;
  }
  .episode-mini-card .details span.edition {
    font-size: 12px;
  }
}
article.error-dialog {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 8px;
}
article.error-dialog h3 {
  margin-bottom: 20px;
  color: #D55B40;
  font-size: 28px;
  font-weight: bold;
}
article.error-dialog h3 a {
  transition: color 0.2s;
}
article.error-dialog h3 a:hover {
  color: #2078C9;
}
article.error-dialog h3 i {
  color: #898989;
}
article.error-dialog p {
  margin-bottom: 10px;
}

.game-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.game-list.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.game-list.horizontal .game-mini-card {
  width: calc(50% - 10px);
}
.game-list.horizontal .game-card {
  width: calc(25% - 15px);
}
.game-list.hidden {
  display: none;
}

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 375px;
}
.game-card a.image {
  position: relative;
  width: 100%;
  height: 50%;
  overflow: hidden;
}
.game-card a.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.2s, transform 0.2s;
}
.game-card a.image i.no-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #B6B4B4;
  font-size: 70px;
  transition: filter 0.2s, transform 0.2s;
}
.game-card a.image span.expansion {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  padding: 3px 10px;
  background: #D55B40;
  border-radius: 3px;
  transition: right 0.2s;
  filter: drop-shadow(0 0 5px #000);
  color: #FFF;
  font-size: 14px;
}
.game-card .details {
  display: flex;
  flex-direction: column;
  z-index: 2;
  gap: 5px;
  box-sizing: border-box;
  width: 100%;
  height: calc(50% - 40px);
  padding: 10px;
  background: #F6F6F6;
  border-radius: 0 0 8px 8px;
  transition: border-radius 0.2s;
}
.game-card .details h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: 20px !important;
  font-weight: normal;
}
.game-card .details h4 {
  font-size: 14px !important;
  font-weight: normal;
}
.game-card .details .more {
  z-index: 4;
  bottom: 60px;
}
.game-card .details h5.price {
  position: absolute;
  bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  font-size: 20px;
}
.game-card .details h5.price .about {
  margin-left: 5px;
}
.game-card button.buy {
  cursor: pointer;
  position: absolute;
  bottom: 40px;
  z-index: 1;
  width: 100%;
  height: 40px;
  background: #57A6FA;
  border: none;
  border-radius: 0 0 8px 8px;
  color: #FFF;
  font-size: 22px;
  transition: bottom 0.2s, filter 0.2s;
}
.game-card button.buy.unavailable {
  cursor: default;
  background: #FFF;
  border: solid 1px #57A6FA;
  color: #57A6FA;
}
.game-card button.buy:hover {
  filter: brightness(125%);
}
.game-card button.buy:hover.unavailable {
  filter: none;
}
.game-card:hover a.image i, .game-card:hover a.image img {
  transform: scale(110%);
  filter: brightness(125%);
}
.game-card:hover a.image span.expansion {
  right: 20px;
}
.game-card:hover .details {
  border-radius: 0;
}
.game-card:hover .details .more {
  opacity: 1;
}
.game-card:hover button.buy {
  bottom: 0;
}

.game-mini-card {
  display: flex;
  gap: 10px;
  height: 60px;
  background: #F6F6F6;
  border-radius: 8px;
}
.game-mini-card a {
  position: relative;
  display: flex;
  flex-grow: 1;
  gap: 10px;
  overflow: hidden;
}
.game-mini-card a .image {
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.game-mini-card a .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter 0.2s, transform 0.2s;
  border-radius: 8px 0 0 8px;
}
.game-mini-card a .no-image i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: color 0.2s, transform 0.2s;
  font-size: 30px;
}
.game-mini-card a .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  width: calc(100% - 60px);
}
.game-mini-card a .details .title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: padding 0.2s;
  font-size: 20px;
  font-weight: bold;
}
.game-mini-card a .details .publisher {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  font-weight: lighter;
}
.game-mini-card a .item-load {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #DAD8D8;
}
.game-mini-card a .error {
  color: #D55B40;
}
.game-mini-card a .expansion {
  position: absolute;
  bottom: 5px;
  right: 0;
  padding: 3px 10px;
  background: #D55B40;
  border-radius: 3px;
  color: #FFF;
  font-size: 14px;
}
.game-mini-card a:hover .image img {
  transform: scale(125%);
  filter: brightness(125%);
}
.game-mini-card a:hover .details .title {
  padding-left: 10px;
}
.game-mini-card a:hover .no-image i {
  transform: scale(125%);
  color: #57A6FA;
}
.game-mini-card button {
  cursor: pointer;
  background: #57A6FA;
  padding: 10px;
  border: none;
  border-radius: 0 8px 8px 0;
  transition: padding 0.2s, filter 0.2s;
  color: #FFF;
  font-size: 14px;
  font-weight: lighter;
}
.game-mini-card button:hover {
  padding: 20px;
  filter: brightness(125%);
}

@media (max-width: 480px) {
  .game-list.horizontal .game-card {
    width: calc(50% - 10px);
  }
  .game-list.horizontal .game-card .details .more {
    opacity: 1;
  }
  .game-list.horizontal .game-card .details .more i {
    font-size: 28px;
  }
  .game-list.horizontal .game-mini-card {
    width: 100%;
  }
  .game-mini-card .details span.title {
    font-size: 16px;
  }
  .game-mini-card .details span.edition {
    font-size: 12px;
  }
}
section.main {
  flex-grow: 1;
  width: 70%;
}
section.main.list {
  width: 80%;
  display: flex;
  flex-direction: column;
}
section.main header {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #FFF;
}
section.main header figure.single img {
  width: 360px;
  height: 360px;
}
section.main header div[data-component=ImageGallery] {
  width: 50%;
}
section.main header section.details.half {
  width: 50%;
}
section.main header section.details h2 {
  font-size: 28px;
}
section.main header section.details h3 {
  margin-bottom: 20px;
  font-size: 16px;
  font-style: italic;
  font-weight: lighter;
}
section.main header section.details p {
  margin: 10px 0;
  font-size: 20px;
}
section.main header section.details p.description {
  margin: 40px 0;
}
section.main header section.details .episode-play {
  margin-top: 40px;
}
section.main header section.details .data {
  margin: 10px 0;
}
section.main header section.details .data a {
  transition: filter 0.2s;
  color: #57A6FA;
  font-weight: bold;
}
section.main header section.details .data a:hover {
  filter: brightness(125%);
}
section.main header section.details .data a.external {
  display: inline-flex;
  align-items: center;
  padding-right: 10px;
  background: #B6B4B4;
  border-radius: 5px;
  color: #565656;
  font-size: 14px;
  font-weight: lighter;
}
section.main header section.details .data a.external img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  padding: 3px 5px;
  background: #565656;
  border-radius: 5px 0 0 5px;
}
section.main header section.details .data a.external i {
  margin-left: 5px;
  color: #898989;
}
section.main header section.details .data h5 {
  font-size: 14px;
  font-weight: lighter;
}
section.main header section.details .data h6 {
  font-size: 18px;
  font-weight: normal;
}
section.main .block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #FFF;
  margin-top: 20px;
  padding: 20px;
}
section.main .block.mobile-only {
  display: none;
}
section.main .block button.panel-button {
  cursor: pointer;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
}
section.main .block button.panel-button i.panel-icon {
  vertical-align: middle;
  margin-right: 0.5em;
  font-size: 0.5em;
  transition: transform 0.5s;
}
section.main .block button.panel-button i.panel-icon.open {
  transform: rotate(180deg);
}
section.main .block h3 {
  font-size: 24px;
}
section.main .block h4 {
  font-size: 20px;
}
section.main .block h6 {
  margin-bottom: 10px;
  color: #565656;
  font-size: 14px;
  font-weight: lighter;
}
section.main .block .signature {
  color: #898989;
}
section.main .block .signature a {
  transition: filter 0.2s;
  color: #57A6FA;
  font-weight: bold;
}
section.main .block .signature a:hover {
  filter: brightness(125%);
}
section.main .block .signature .date {
  font-size: 14px;
}
section.main .tabs {
  margin-top: 20px;
}
section.main .tabs .buttons {
  display: inline-flex;
  background: #F1F0F0;
  border-radius: 8px 8px 0 0;
}
section.main .tabs .buttons button {
  cursor: pointer;
  display: flex;
  padding: 10px 20px;
  background: #F1F0F0;
  border: none;
  border-right: solid 1px #DAD8D8;
  color: #898989;
  font-size: 22px;
}
section.main .tabs .buttons button .counter {
  margin-left: 10px;
  padding: 0 5px;
  background: #DAD8D8;
  border-radius: 3px;
  font-weight: bold;
}
section.main .tabs .buttons button:first-of-type {
  border-radius: 5px 0 0 0;
}
section.main .tabs .buttons button:last-of-type {
  border-radius: 0 5px 0 0;
  border-right: none;
}
section.main .tabs .buttons button.selected {
  background: #FFF;
  border-radius: 5px 5px 0 0;
  border-right: none;
}
section.main .tabs .buttons button:hover {
  filter: brightness(102%);
}
section.main .tabs .tab {
  padding: 20px;
  background: #FFF;
}

aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  width: 30%;
  padding-top: 50px;
}
aside.filters {
  width: 20%;
}
aside.filters h4 {
  margin-bottom: 10px;
}
aside.filters li {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  background: #57A6FA;
  border-radius: 3px;
  color: #FFF;
}
aside.filters li button {
  opacity: 0;
  cursor: pointer;
  background: none;
  border: none;
  color: #FFF;
  transition: opacity 0.2s;
}
aside.filters li:hover button {
  opacity: 1;
}
aside section {
  padding: 20px;
  background: #FFF;
}
aside section h6 {
  margin-bottom: 10px;
  color: #565656;
  font-size: 14px;
  font-weight: lighter;
}
aside section p {
  display: inline-block;
}
aside section a.link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #57A6FA;
  font-size: 18px;
  font-weight: bold;
  transition: filter 0.2s;
}
aside section a.link .extra {
  color: #565656;
  font-size: 14px;
  font-weight: lighter;
}
aside section a.link:hover {
  filter: brightness(125%);
}

ul.icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.icons li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: lighter;
}
ul.icons li i {
  width: 30px;
  font-size: 24px;
}

.big-action {
  display: flex;
  flex-direction: column;
}
.big-action button {
  cursor: pointer;
  box-sizing: border-box;
  padding: 10px;
  background: #57A6FA;
  transition: filter 0.2s;
  border: none;
  border-radius: 5px;
  color: #FFF;
  font-size: 18px;
}
.big-action button i {
  margin: 0 10px;
}
.big-action button:hover {
  filter: brightness(125%);
}
.big-action p.disclaimer {
  margin-top: 20px;
  color: #898989;
  font-size: 14px;
  font-weight: lighter;
}
.big-action.secondary button {
  cursor: default;
  background: #FFF;
  border: solid 1px #57A6FA;
  color: #57A6FA;
}
.big-action.secondary button:hover {
  filter: none;
}

.more {
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
}
.more i {
  transition: color 0.2s, font-size 0.2s;
  color: #898989;
  font-size: 24px;
}
.more:hover i {
  color: #57A6FA;
  font-size: 30px;
}

button.about {
  cursor: pointer;
  background: none;
  border: none;
  align-self: center;
}
button.about i {
  transition: transform 0.2s, filter 0.2s;
  color: #B6B4B4;
}
button.about:hover i {
  filter: brightness(65%);
  transform: scale(125%) rotate(360deg);
}

@media (max-width: 1024px) {
  section.main header {
    flex-direction: column;
  }
  section.main header div[data-component=ImageGallery] {
    width: 100%;
  }
  section.main header section.details.half {
    width: 100%;
  }
}
@media (max-width: 480px) {
  main {
    flex-direction: column;
  }
  main section.main {
    width: 100%;
  }
  main section.main.list {
    width: 100%;
  }
  main section.main header {
    flex-direction: column;
  }
  main section.main header div[data-component=ImageGallery] {
    width: 100%;
  }
  main section.main header section.details {
    width: 100%;
  }
  main section.main header figure {
    width: 100%;
  }
  main section.main header figure.single img {
    width: 100%;
    height: auto;
  }
  main .block {
    display: flex !important;
  }
  main aside {
    width: 100%;
  }
  main aside section.desktop-only {
    display: none;
  }
  main aside.filters {
    width: 100%;
  }
  main .tabs .buttons {
    flex-direction: column;
    width: 100%;
  }
  main .tabs .buttons button {
    border-radius: 0 !important;
    border-right: none !important;
    border-bottom: solid 1px #DAD8D8 !important;
  }
  main .tabs .buttons button.selected {
    border-radius: 0 !important;
    border-right: none !important;
    border-bottom: solid 1px #DAD8D8 !important;
  }
  main .tabs .buttons button:last-of-type {
    border-bottom: none !important;
  }
  aside {
    padding-top: 0;
  }
  aside.filters section ul li button {
    opacity: 1;
  }
}
article.news-card {
  display: flex;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 8px;
}
article.news-card.secondary {
  background: #E6E5E5;
}
article.news-card .left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
article.news-card .left-column a.image-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  overflow: hidden;
  margin-bottom: 20px;
}
article.news-card .left-column a.image-link img {
  width: 100%;
  height: 100%;
  transition: transform 0.2s, filter 0.2s;
}
article.news-card .right-column h3 {
  font-size: 28px;
  font-weight: bold;
}
article.news-card .right-column h3 a {
  transition: color 0.2s;
}
article.news-card .right-column h3 a:hover {
  color: #2078C9;
}
article.news-card .right-column h4 {
  font-size: 16px;
  font-weight: lighter;
}
article.news-card .right-column h4 a {
  color: #2078C9;
  transition: color 0.2s;
}
article.news-card .right-column h4 a:hover {
  color: #57A6FA;
}
article.news-card .right-column .app-links {
  margin-top: 5px;
}
article.news-card .right-column h5 {
  font-size: 14px;
  font-style: oblique;
  font-weight: lighter;
}
article.news-card .right-column h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
}
article.news-card .right-column p {
  display: block;
  margin: 10px 0;
  font-size: 18px;
  font-weight: normal;
}
article.news-card.action {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  padding: 0;
}
article.news-card.action a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #E6E5E5;
  border-radius: 8px;
  transition: background 0.2s;
}
article.news-card.action a .label {
  color: #898989;
  font-size: 28px;
  transition: color 0.2s;
}
article.news-card.action a .label i {
  transform: rotate(-90deg);
  transition: transform 0.2s;
}
article.news-card.action a:hover {
  background: #898989;
}
article.news-card.action a:hover .label {
  color: #E6E5E5;
}
article.news-card.action a:hover .label i {
  transform: rotate(0);
}
article.news-card:hover .left-column img {
  filter: brightness(125%);
  transform: scale(116%);
}

section.news-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
section.news-list article.news-card {
  width: calc(50% - 10px);
}

@media (max-width: 480px) {
  article.news-card {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  article.news-card .left-column .episode-play {
    margin-top: 20px;
  }
  article.news-card .left-column a {
    width: 100%;
    height: 200px;
    margin-top: 20px;
    margin-bottom: 0;
  }
  article.news-card .left-column a img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  article.news-card .right-column {
    padding: 20px;
  }
  article.news-card.action {
    padding: 0 20px;
  }
  article.news-card.action a {
    padding: 20px;
  }
  section.news-list article.news-card {
    width: 100%;
  }
}
.person-list {
  display: flex;
  gap: 20px;
}
.person-list.mini {
  flex-direction: column;
  gap: 10px;
}
.person-list.card {
  flex-wrap: wrap;
}
.person-list.card .person-card {
  width: calc(50% - 10px);
}

.person-card {
  display: flex;
  gap: 20px;
  box-sizing: border-box;
  width: 50%;
  margin: 0;
  padding: 20px;
  background: #F6F6F6;
  border-radius: 0;
}
.person-card a.image {
  display: flex;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 40px;
}
.person-card a.image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter 0.2s, transform 0.2s;
}
.person-card a.no-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 40px;
  background: #E6E5E5;
  transition: background 0.2s;
}
.person-card a.no-image i.person {
  font-size: 40px;
  transition: color 0.2s, transform 0.2s;
}
.person-card .details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - 100px);
}
.person-card .details header {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: none;
}
.person-card .details header h3 {
  font-size: 18px;
  font-weight: bold;
}
.person-card .details header h3 a {
  transition: color 0.2s;
}
.person-card .details header h3 a:hover {
  color: #57A6FA;
}
.person-card .details header h4 {
  font-size: 14px;
  font-weight: lighter;
}
.person-card .details p {
  font-size: 16px;
}
.person-card .details .social {
  display: flex;
  gap: 10px;
}
.person-card .details .social li {
  list-style: none;
}
.person-card .details .social li a {
  transition: color 0.2s;
}
.person-card .details .social li a i {
  font-size: 24px;
}
.person-card .details .social li a:hover {
  color: #57A6FA;
}
.person-card:hover a.image img {
  filter: brightness(125%);
  transform: scale(125%);
}
.person-card:hover a.no-image {
  background: #57A6FA;
}
.person-card:hover a.no-image i {
  color: #FFF;
  transform: scale(125%);
}

.person-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 60px;
  padding-right: 20px;
  background: #F6F6F6;
  border-radius: 30px;
}
.person-summary img, .person-summary i {
  width: 60px;
  height: 60px;
  border-radius: 30px;
}
.person-summary img {
  -o-object-fit: cover;
     object-fit: cover;
}
.person-summary i {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DAD8D8;
  color: #565656;
  font-size: 60px;
}

.person-mini a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  color: #565656;
  font-size: 16px;
  font-weight: bold;
}
.person-mini a .image {
  width: 32px;
  height: 32px;
  overflow: hidden;
  margin-right: 5px;
  border-radius: 18px;
  border: solid 2px #E6E5E5;
  transition: border 0.2s;
}
.person-mini a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.2s, transform 0.2s;
}
.person-mini a .no-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  margin-right: 5px;
  transition: background 0.2s;
  background: #E6E5E5;
  border-radius: 18px;
}
.person-mini a .no-image i {
  transition: transform 0.2s, color 0.2s;
  color: #565656;
  font-size: 18px;
}
.person-mini a:hover {
  color: #57A6FA;
}
.person-mini a:hover .image {
  border-color: #57A6FA;
}
.person-mini a:hover .image img {
  filter: brightness(140%);
  transform: scale(125%);
}
.person-mini a:hover .no-image {
  background: #57A6FA;
}
.person-mini a:hover .no-image i {
  transform: scale(155%);
  color: #FFF;
}

@media (max-width: 480px) {
  .person-list.card {
    flex-direction: column;
  }
  .person-list.card .person-card {
    width: 100%;
  }
}
.sleeve-list {
  display: flex;
  gap: 20px;
}

.sleeve-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100px;
  height: 250px;
  color: #898989;
  font-family: fp-dancer-serif;
}
.sleeve-card .sleeve-container {
  display: inline-flex;
  align-items: flex-end;
  height: 100px;
  padding-bottom: 10px;
}
.sleeve-card .sleeve-container .sleeve {
  border-radius: 3px;
  border: solid 1px #B6B4B4;
}
.sleeve-card .title {
  font-weight: normal;
  text-transform: uppercase;
}
.sleeve-card .dimensions {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: lighter;
  text-align: center;
}
.sleeve-card .total {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.sleeve-card button {
  cursor: pointer;
  width: 100%;
  padding: 5px;
  transition: filter 0.2s;
  background: #57A6FA;
  border: none;
  border-radius: 5px;
  color: #FFF;
}
.sleeve-card button:hover {
  filter: brightness(125%);
}
.sleeve-card button.unavailable {
  cursor: default;
  background: #FFF;
  border: solid 1px #57A6FA;
  color: #57A6FA;
}
.sleeve-card button.unavailable:hover {
  filter: none;
}

@media (max-width: 480px) {
  .sleeve-list {
    flex-wrap: wrap;
  }
  .sleeve-list .sleeve-card {
    width: calc(50% - 10px);
  }
}
.text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text h3 {
  font-size: 24px;
}
.text h4 {
  font-size: 20px;
}
.text ul li {
  list-style: circle;
}
.text p a {
  transition: filter 0.2s;
  color: #57A6FA;
  font-weight: bold;
}
.text p a:hover {
  filter: brightness(125%);
}
.text .image img {
  max-width: 100%;
}

nav[data-component=Breadcrumbs] {
  display: flex;
  margin-bottom: 20px;
  height: 30px;
}
nav[data-component=Breadcrumbs] a {
  display: flex;
  align-items: center;
  color: #898989;
  transition: filter 0.2s;
}
nav[data-component=Breadcrumbs] a::before {
  width: 10px;
  height: 100%;
  background: #E6E5E5;
  content: "";
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 100% 50%);
}
nav[data-component=Breadcrumbs] a span {
  box-sizing: border-box;
  max-width: 300px;
  height: 100%;
  padding: 5px 10px;
  background: #E6E5E5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
nav[data-component=Breadcrumbs] a::after {
  width: 10px;
  height: 100%;
  background: #E6E5E5;
  content: "";
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
nav[data-component=Breadcrumbs] a:first-child::before {
  content: none;
}
nav[data-component=Breadcrumbs] a:hover {
  filter: brightness(105%);
}

@media (max-width: 480px) {
  nav[data-component=Breadcrumbs] a span {
    max-width: 135px;
  }
}
div[data-component=ImageGallery] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
div[data-component=ImageGallery] .current-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
}
div[data-component=ImageGallery] .current-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
div[data-component=ImageGallery] .current-image i.missing {
  color: #E6E5E5;
  font-size: 4em;
}
div[data-component=ImageGallery] .current-image figcaption {
  position: absolute;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px 5px;
  background: rgba(50, 50, 50, 0.85);
  color: #FFF;
  font-size: 14px;
  font-weight: lighter;
}
div[data-component=ImageGallery] .current-image figcaption .title {
  color: #FFF;
  font-size: 16px;
  font-weight: normal;
}
div[data-component=ImageGallery] .current-image figcaption .subtitle {
  color: #E6E5E5;
  font-size: 14px;
  font-weight: lighter;
}
div[data-component=ImageGallery] .current-image figcaption a {
  transition: filter 0.2s;
  color: #57A6FA;
  font-weight: bold;
}
div[data-component=ImageGallery] .current-image figcaption a:hover {
  filter: brightness(125%);
}
div[data-component=ImageGallery] .current-image .zoom {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  background: rgba(50, 50, 50, 0.75);
  border: none;
}
div[data-component=ImageGallery] .current-image .zoom i {
  color: #FFF;
}
div[data-component=ImageGallery] .thumbs {
  position: relative;
  display: flex;
  gap: 10px;
  overflow: hidden;
  width: 100%;
  height: 84px;
}
div[data-component=ImageGallery] .thumbs .previous, div[data-component=ImageGallery] .thumbs .next {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 80px;
  transition: background 0.2s;
  padding: 20px;
  background: #F6F6F6;
  border: none;
}
div[data-component=ImageGallery] .thumbs .previous i, div[data-component=ImageGallery] .thumbs .next i {
  transition: color 0.2s;
  color: #898989;
  font-size: 18px;
}
div[data-component=ImageGallery] .thumbs .previous:hover, div[data-component=ImageGallery] .thumbs .next:hover {
  background: #E6E5E5;
}
div[data-component=ImageGallery] .thumbs .previous:hover i, div[data-component=ImageGallery] .thumbs .next:hover i {
  color: #565656;
}
div[data-component=ImageGallery] .thumbs .previous.previous, div[data-component=ImageGallery] .thumbs .next.previous {
  left: 0;
}
div[data-component=ImageGallery] .thumbs .previous.next, div[data-component=ImageGallery] .thumbs .next.next {
  right: 0;
}
div[data-component=ImageGallery] .thumbs ul.images {
  position: absolute;
  left: 50px;
  z-index: 1;
  display: flex;
  gap: 10px;
  transition: left 0.2s;
}
div[data-component=ImageGallery] .thumbs ul.images li {
  list-style: none;
}
div[data-component=ImageGallery] .thumbs ul.images li button {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border: none;
  transition: filter 0.2s;
}
div[data-component=ImageGallery] .thumbs ul.images li button img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 80px;
  height: 80px;
}
div[data-component=ImageGallery] .thumbs ul.images li button i.zoom {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
  opacity: 0;
  background: radial-gradient(rgba(35, 35, 35, 0.95), rgba(35, 35, 35, 0.35), rgba(0, 0, 0, 0));
  width: 80px;
  height: 80px;
  color: #FFF;
  font-size: 24px;
}
div[data-component=ImageGallery] .thumbs ul.images li button:hover {
  filter: grayscale(0);
}
div[data-component=ImageGallery] .thumbs ul.images li button:hover i {
  opacity: 1;
}
div[data-component=ImageGallery] .thumbs ul.images li.selected {
  border-bottom: solid #565656 4px;
}
div[data-component=ImageGallery] .thumbs ul.images:hover li button {
  filter: grayscale(75%);
}
div[data-component=ImageGallery] .thumbs ul.images:hover li button:hover {
  filter: grayscale(0);
}
div[data-component=ImageGallery].no-image {
  background: #F6F6F6;
}

@media (max-width: 480px) {
  div[data-component=ImageGallery] .current-image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  div[data-component=ImageGallery] .current-image.single {
    height: auto;
  }
}
header[data-component=MainHeader] {
  width: 100%;
}
header[data-component=MainHeader] .top-bar {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 200px;
  background: #FABE57;
}
header[data-component=MainHeader] .top-bar img {
  height: 90%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

nav[data-component=MainNavigation] {
  display: flex;
  justify-content: center;
  width: 100%;
  background: #DDA84D;
}
nav[data-component=MainNavigation] .container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 1400px;
  box-sizing: border-box;
  padding: 10px 20px;
}
nav[data-component=MainNavigation] .container h1 {
  margin-right: 100px;
  color: #565656;
  font-size: 24px;
  font-weight: bold;
}
nav[data-component=MainNavigation] .container ul {
  display: flex;
  gap: 20px;
}
nav[data-component=MainNavigation] .container ul li a {
  padding: 10px;
  font-size: 24px;
  font-weight: normal;
  transition: background 0.2s;
}
nav[data-component=MainNavigation] .container ul li a:hover {
  background: #C09243;
}
nav[data-component=MainNavigation] .container ul button.mobile-close {
  display: none;
}
nav[data-component=MainNavigation] .container button.mobile-menu {
  display: none;
}

@media (max-width: 480px) {
  nav[data-component=MainNavigation] .container {
    justify-content: space-between;
  }
  nav[data-component=MainNavigation] .container ul {
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 10;
    box-sizing: border-box;
    transition: top 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
  }
  nav[data-component=MainNavigation] .container ul li {
    width: 100%;
    background: #DAD8D8;
  }
  nav[data-component=MainNavigation] .container ul li a {
    display: inline-flex;
    width: 100%;
    padding: 10px 20px;
    border-bottom: solid 1px #565656;
  }
  nav[data-component=MainNavigation] .container ul li:first-child a {
    box-shadow: 0px -5px 5px 0px #000;
  }
  nav[data-component=MainNavigation] .container ul li:last-of-type a {
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.45);
  }
  nav[data-component=MainNavigation] .container ul button.mobile-close {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    color: #FFF;
    font-size: 28px;
  }
  nav[data-component=MainNavigation] .container button.mobile-menu {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    font-size: 20px;
  }
}
aside[data-component=MiniPlayer] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
  width: 352px;
  padding: 10px;
  background: #B6B4B4;
}
aside[data-component=MiniPlayer].hidden {
  display: none;
}
aside[data-component=MiniPlayer] .close-button {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 16px;
}
aside[data-component=MiniPlayer] .close-button i {
  font-size: 2em;
}
aside[data-component=MiniPlayer] figure {
  width: 100px;
  height: 100px;
}
aside[data-component=MiniPlayer] figure img {
  width: 100%;
  height: 100%;
}
aside[data-component=MiniPlayer] section {
  width: calc(100% - 100px);
  box-sizing: border-box;
  padding: 0 10px;
  background: none;
}
aside[data-component=MiniPlayer] section h3 {
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 32px);
  white-space: nowrap;
}
aside[data-component=MiniPlayer] section .controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
aside[data-component=MiniPlayer] section .controls .buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
aside[data-component=MiniPlayer] section .controls .buttons button {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 15px;
}
aside[data-component=MiniPlayer] section .controls .buttons button.big {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  font-size: 2em;
}
aside[data-component=MiniPlayer] section .controls progress {
  width: 100%;
  height: 10px;
  border: none;
}
aside[data-component=MiniPlayer] section .controls progress::-webkit-progress-bar, aside[data-component=MiniPlayer] section .controls progress::-moz-progress-bar, aside[data-component=MiniPlayer] section .controls progress::-webkit-progress-inner-element, aside[data-component=MiniPlayer] section .controls progress::-webkit-progress-value {
  background: #FABE57;
}

@media (max-width: 480px) {
  aside[data-component=MiniPlayer] {
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
    box-sizing: border-box;
  }
}/*# sourceMappingURL=fabuloso.css.map */