@charset "UTF-8";
body, h1, h2, form, html, p, div, span, table, tbody, td, tr, img {
  margin: 0;
  padding: 0;
  font-family: 'Rubik', sans-serif;
  color: #151515;
}

html {
  border: 0;
}

a {
  outline: none;
}

body {
  background: #ffffff;
  font-size: 18px;
  min-height: 100%;
  line-height: 1.25em;
  word-wrap: break-word;
  overflow-x: hidden;
}

.container {
  width: 800px;
  position: relative;
  top: 0px;
  margin: 0 auto;
  padding-top: 70px;
  z-index: 10;
}

.container .info-block {
  padding: 10px 0;
  color: #000000;
  font-size: 18px;
}

.text {
  margin-bottom: 8px;
}

h1, h2 {
  margin-bottom: 10px;
  color: #151515;
  text-align: center;
  position: relative;
  font-size: 32px;
}

h1 {
  line-height: 1.1em;
}

h2 {
  text-align: left;
  font-size: 22px;
}

ul {
  margin: 0;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb-block {
  margin-bottom: 30px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.center {
  text-align: center;
}

.b-c {
  display: block;
  margin: 0 auto;
}

.container a {
  display: inline-block;
  padding: 2px 10px;
  font-size: 18px;
  color: #ffffff;
  background: #151515;
  border-radius: 5px;
  text-decoration: none;
  transform: scale(1) rotateZ(0deg);
  transition: transform 0.2s;
  animation: none;
}

.container a._feature {
  animation: link-feat 1s infinite ease-in-out;
}

.container a:hover {
  animation: none;
  transform: scale(1.1) rotateZ(-5deg);
}

@keyframes link-feat {
  from,
to {
    transform: rotateZ(-5deg);
  }
  50% {
    transform: rotateZ(5deg);
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery {
  margin-top: 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
}

.gallery .image {
  order: 0;
  flex-basis: 30%;
  margin: 5px;
  flex-shrink: 1;
  cursor: pointer;
  background: #ffffff;
  display: flex;
  align-items: center;
}

.gallery .image img {
  width: 100%;
  height: auto;
}

.gallery .image-title {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  position: absolute;
  top: 100%;
  left: 0px;
  background: rgba(0, 0, 0, 0.8);
  transition: transform 0.2s;
  transform: translateY(0%);
}

.gallery .image-title span {
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}

.gallery .imageblock {
  display: block;
  width: 32%;
  margin-bottom: 10px;
  margin-right: 2%;
  position: relative;
  z-index: 5;
  transform: scale(1) rotateZ(0deg);
  transition: transform 0.2s ease;
  background: #000000;
}

.gallery .imageblock:nth-child(3n) {
  margin-right: 0;
}

.gallery .imageblock .image {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.gallery .imageblock .image img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.2s;
}

.gallery .imageblock:hover, .gallery .imageblock:active {
  z-index: 15;
  transform: scale(1.2) rotateZ(-5deg);
  box-shadow: 0px 5px 10px #000000;
}

.gallery .imageblock:hover img, .gallery .imageblock:active img {
  transform: scale(1.1);
}

.gallery .imageblock:hover .image-title, .gallery .imageblock:active .image-title {
  transform: translateY(-98%);
}

.gallery-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.gallery-close {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1005;
}

.gallery-next {
  display: block;
  max-width: 130vh;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1010;
}

#gallery-wrap {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

#gallery-wrap._show, #gallery-wrap._hide {
  display: table;
}

#gallery-wrap._show {
  animation: showGallery 0.3s 1 ease-in-out forwards;
  -webkit-animation: showGallery 0.3s 1 ease-in-out forwards;
}

#gallery-wrap._hide {
  animation: hideGallery 0.3s 1 ease-in-out forwards;
  -webkit-animation: hideGallery 0.3s 1 ease-in-out forwards;
}

@keyframes showGallery {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes showGallery {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hideGallery {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes hideGallery {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#gallery-image {
  margin: 0 auto;
  width: 100%;
  border: 4px solid #151515;
  background-color: #000000;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.link-block {
  display: block;
  margin-bottom: 8px;
}

.hidden-body {
  display: none;
  margin-bottom: 30px;
}

.hidden-head {
  display: inline-block;
  cursor: pointer;
}

.hidden-control {
  display: inline-block;
  width: 0;
  height: 0;
  border: 8px transparent solid;
  border-bottom-width: 0;
  border-top-width: 10px;
  border-top-color: #151515;
  margin: 0 5px;
  cursor: pointer;
  vertical-align: middle;
}

.hidden h2 {
  display: inline-block;
}

.hidden_show .hidden-control {
  border-bottom-width: 10px;
  border-bottom-color: #151515;
  border-top-width: 0;
}

.hidden_show + .hidden-body {
  display: block;
}

.status {
  display: block;
  text-align: center;
  width: 100%;
  position: relative;
  top: -15px;
}

.status._ready {
  color: #23c223;
}

.status._dev {
  color: #5f5ff5;
}

.status._freeze {
  color: #37b0d5;
}

.status._proto {
  color: #a19900;
}

.status._concept {
  color: #c95d09;
}

.menu {
  display: flex;
  justify-content: center;
  width: 100%;
  background: #000000;
  color: #ffffff;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
}

.menu-item {
  display: block;
  padding: 10px 15px !important;
  margin: 5px 10px;
  font-size: 22px !important;
  background: transparent !important;
  text-decoration: underline;
  text-decoration-color: #aaaaaa;
  animation: none !important;
  outline: none;
  color: #ffffff;
  user-select: none;
}

.menu-item._current {
  font-size: 26px !important;
  text-decoration: none;
  color: #000000;
  background: #ffffff !important;
  border-radius: 5px 5px 0 0;
  position: relative;
  transition: none !important;
  transform: none !important;
  top: 5px;
}

.menu::after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(white 20%, rgba(255, 255, 255, 0) 100%);
}

.gameslist {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  cursor: pointer;
  margin-bottom: 30px;
}

.gameslist-item {
  position: relative;
  z-index: 5;
  display: block;
  width: 32%;
  margin-bottom: 10px;
  margin-right: 2%;
  background: #000000;
  transform: scale(1) rotateZ(0deg);
  transition: transform 0.2s ease-in-out;
}

.gameslist-item:nth-child(3n) {
  margin-right: 0;
}

.gameslist-item-image {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
  overflow: hidden;
}

.gameslist-item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.gameslist-item-name {
  display: block;
  margin: 0 auto;
  padding: 10px 15px;
  background: #000000;
  color: #ffffff;
  font-size: 18px;
  kine-height: 1em;
  text-align: center;
}

.gameslist-item:hover {
  z-index: 15;
  transform: scale(1.2) rotateZ(-5deg);
  box-shadow: 0px 5px 10px #000000;
}

.gameslist-item:hover .gameslist-item-img {
  transform: scale(1.1);
}

.back-btn {
  border-radius: 50%;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 10px;
  margin-bottom: -60px !important;
  padding: 0 !important;
  background: #000000;
  cursor: pointer;
  position: relative;
  z-index: 5;
  transition: border-radius 0.2s;
}

.back-btn span {
  display: block;
  width: 70%;
  height: 10%;
  position: absolute;
  top: 45%;
  left: 15%;
  background: #ffffff;
  transition: transform 0.2s;
}

.back-btn span:nth-child(1) {
  transform: translateY(0%) rotateZ(45deg);
}

.back-btn span:nth-child(3) {
  transform: translateY(0%) rotateZ(-45deg);
}

.back-btn span:nth-child(2) {
  transform: scaleX(0);
}

.back-btn:hover {
  border-radius: 20%;
}

.back-btn:hover span:nth-child(1) {
  transform: translateY(-200%) rotateZ(0deg);
}

.back-btn:hover span:nth-child(3) {
  transform: translateY(200%) rotateZ(0deg);
}

.back-btn:hover span:nth-child(2) {
  transform: scaleX(1);
}

@keyframes loading {
  from {
    transform: rotateZ(45deg);
  }
  25% {
    transform: rotateZ(135deg);
  }
  50% {
    transform: rotateZ(225deg);
  }
  75% {
    transform: rotateZ(315deg);
  }
  to {
    transform: rotateZ(405deg);
  }
}

.head-line {
  display: block;
  width: 100%;
  padding: 10px 15px;
  text-align: center;
  background: transparent;
  color: #151515;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  border-top: 2px dotted #000000;
}

.info-game {
  padding-bottom: 30px !important;
}

.info-game h1 {
  padding: 10px 50px;
}

.releases {
  display: table;
  width: 100%;
  margin-bottom: 15px;
}

.releases-cell {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 10px;
  border-bottom: 1px dashed #151515;
}

.releases-cell:first-child, .releases-cell:last-child {
  width: 1%;
  font-weight: bold;
  padding: 5px 0;
}

.releases-cell:last-child {
  text-align: right;
}

.releases-row {
  display: table-row;
}

.releases-row:last-child .releases-cell {
  border: 0;
}

.switch {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  border-bottom: 2px solid #000000;
  position: relative;
  box-sizing: border-box;
}

.switch-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 25%;
  padding: 10px 5px;
  box-sizing: border-box;
  color: #000000;
  font-size: 18px;
  transition: color 0.2s linear;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transform: scale(1) rotateZ(0deg);
  transition: transform 0.2s ease;
}

.switch-item:hover {
  font-weight: bold;
  transform: scale(1.1) rotateZ(-3deg);
}

.switch-item:hover::after {
  content: " [" attr(count) "]";
  display: inline;
  color: inherit;
  margin-left: 5px;
}

.switch-item._current {
  color: #ffffff;
  font-weight: bold;
}

.switch-item._current:hover {
  cursor: auto;
  transform: scale(1) rotateZ(0deg);
}

.switch-item._current::after {
  display: none;
}

.switch-select {
  position: absolute;
  z-index: 1;
  width: 25%;
  height: 100%;
  background: #000000;
  transform: translateX(100%);
  transition: transform 0.2s ease;
}

.switch-descript {
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-size: 16px;
  background: #000000;
  color: #ffffff;
}

.audioblock {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 15px;
  border: 2px solid #151515;
  border-radius: 15px;
}

.audioblock-track {
  width: 49%;
}

.audioblock-title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
  width: 49%;
}

.audioblock-title-name {
  font-weight: bold;
  font-size: 22px;
  color: #000000;
  margin-bottom: 5px;
}

.audioblock-title-genres {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  row-gap: 5px;
}

.audioblock-title-genre {
  display: inline-block;
  margin-right: 5px;
  padding: 0px 5px;
  font-size: 16px;
  color: #ffffff;
  background: #000000;
  border-radius: 5px;
}

.audioblock-title-game {
  margin-bottom: 5px;
  color: #151515;
  font-style: italic;
}

.audiotags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  justify-content: flex-start;
}

.audiotags-tag {
  display: inline-block;
  cursor: pointer;
  padding: 0 5px;
  font-size: 16px;
  color: #151515;
  background: #ffffff;
  border: 1px solid #151515;
  border-radius: 5px;
  transform: scale(1) rotateZ(0deg);
  transition: transform 0.2s ease;
}

.audiotags-tag:hover {
  transform: scale(1.1) rotateZ(-3deg);
}

.audiotags-tag._selected {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.audiotags-tag._selected:hover {
  transform: scale(1) rotateZ(0deg);
}

.tooltip {
  display: block;
  position: absolute;
  z-index: 8;
  bottom: -15px;
  left: 50%;
  width: 16px;
  text-align: center;
  padding: 2px 8px;
  margin: 5px;
  margin-left: -16px;
  border-radius: 5px;
  background: #151515;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.2s;
  /*&::before
		content: ""
		display: block
		position: absolute
		z-index: inherit
		top: -50%
		left: -50%
		width: 200%
		height: 200%*/
}

.tooltip:hover {
  z-index: 15;
  transform: scale(1.2);
}

.tooltip-wrap {
  position: fixed;
  justify-content: center;
  align-items: center;
  display: none;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.tooltip-wrap._show, .tooltip-wrap._hide {
  display: flex;
}

.tooltip-wrap._show {
  animation: showGallery 0.3s 1 ease-in-out forwards;
  -webkit-animation: showGallery 0.3s 1 ease-in-out forwards;
}

.tooltip-wrap._hide {
  animation: hideGallery 0.3s 1 ease-in-out forwards;
  -webkit-animation: hideGallery 0.3s 1 ease-in-out forwards;
}

.tooltip-content {
  dipslay: block;
  width: 100%;
  max-width: 400px;
  margin: auto auto;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  font-size: 18px;
  text-align: center;
}

.tooltip-hover {
  position: absolute;
  display: none;
  max-width: 350px;
  padding: 10px 20px;
  border-radius: 15px;
  background: #151515;
  color: #ffffff;
  font-size: 16px;
  z-index: 12;
  filter: drop-shadow(2px 2px 3px #151515);
}

.tooltip-hover._left, .tooltip-hover._right {
  display: block;
}

.tooltip-hover._left::before, .tooltip-hover._right::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  border: 15px solid transparent;
}

.tooltip-hover._left::before {
  border-right-color: #151515;
  border-left: 0px;
  left: -15px;
}

.tooltip-hover._right::before {
  border-left-color: #151515;
  border-right: 0px;
  right: -15px;
}

.props {
  display: grid;
  grid-template-columns: 33.33% auto 33.33%;
  grid-template-rows: auto;
  grid-template-areas: "h-genres h-time h-exp" "t-genres t-time t-exp";
  margin-bottom: 30px;
  margin-top: 0px;
}

.prop-header {
  font-size: 18px;
  font-weight: bold;
  place-self: stretch stretch;
  padding: 5px 10px;
  border-right: 1px dashed #151515;
}

.prop-header._genres {
  grid-area: h-genres;
}

.prop-header._time {
  grid-area: h-time;
}

.prop-header._exp {
  grid-area: h-exp;
  border: 0;
}

.prop-header a {
  background: transparent !important;
  border-radius: 0 !important;
}

.prop-header img {
  max-width: 180px;
}

.prop-text {
  position: relative;
  font-size: 18px;
  place-self: stretch stretch;
  padding: 0px 10px 10px 10px;
  border-right: 1px dashed #151515;
}

.prop-text._genres {
  grid-area: t-genres;
}

.prop-text._time {
  grid-area: t-time;
}

.prop-text._exp {
  grid-area: t-exp;
  border: 0;
}

.prop-header, .prop-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.prop-header .tooltip, .prop-text .tooltip {
  bottom: -25px;
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  place-self: stretch stretch;
  padding: 10px 15px 20px 15px;
  text-align: center;
  border-radius: 10px;
  border: 2px dotted #151515;
  border-bottom: 4px solid #151515;
  font-size: 16px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 15px 10px;
  margin-bottom: 40px;
}

#socials {
  border-top: dotted 2px #151515;
}

._hidden {
  display: none;
}

.data-loader {
  width: 100%;
  position: relative;
}

.data-loader::before, .data-loader::after {
  content: "";
  display: block;
  position: absolute;
}

.data-loader::before {
  content: "ЗАГРУЖАЕМ";
  color: #000000;
  font-size: 16px;
  width: 100%;
  text-align: center;
  top: calc(50% - 50px);
  left: 0;
}

.data-loader::after {
  width: 30px;
  height: 30px;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  border: 5px solid #000000;
  border-radius: 10px;
  animation: loading 3s infinite ease-in-out;
}

.data-loader-header, .data-loader-intro, .data-loader-content {
  background: #dddddd;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.data-loader-header, .data-loader-intro {
  width: 100%;
}

.data-loader-data {
  grid-column-gap: 10px;
  margin-bottom: 10px;
}

.data-loader-data .prop-header {
  background: #dddddd;
  border-radius: 10px;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  border: 0;
}

.data-loader-data .prop-text {
  display: 0;
}

.data-loader-content {
  width: 100%;
  padding-bottom: 62.5%;
}

@media screen and (max-width: 800px) {
  .container {
    width: 100%;
  }
  .container .info-block {
    padding: 10px;
  }
  .gameslist-item {
    width: 49%;
    margin-right: 2%;
  }
  .gameslist-item:nth-child(3n) {
    margin-right: 2%;
  }
  .gameslist-item:nth-child(2n) {
    margin-right: 0;
  }
  .gallery .imageblock {
    width: 49%;
    margin-right: 2%;
  }
  .gallery .imageblock:nth-child(3n) {
    margin-right: 2%;
  }
  .gallery .imageblock:nth-child(2n) {
    margin-right: 0;
  }
  .features {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .back-btn {
    margin-right: 15px;
  }
  .tooltip-hover {
    max-width: 35vw;
  }
}

@media screen and (max-width: 500px) {
  body {
    line-height: 1.5em;
    font-size: 13.5px;
  }
  .container {
    padding-top: 45px;
  }
  .info-block {
    padding: 15px !important;
    font-size: 13.5px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 16.5px;
    padding-bottom: 0;
  }
  .mb-block {
    margin-bottom: 15px !important;
  }
  .info-game h1 {
    padding: 0 30px 0 0;
    text-align: left;
    margin-bottom: 5px;
  }
  .info-game .status {
    text-align: left;
    padding-bottom: 5px;
    border-bottom: 1px dashed #151515;
    top: 0;
    margin-bottom: 10px;
  }
  .menu-item {
    margin: 2px;
    padding: 10px 5px;
    font-size: 16.5px !important;
  }
  .menu-item._current {
    font-size: 19.5px !important;
  }
  .menu::after {
    height: 25px;
  }
  .gameslist-item {
    width: 100%;
    margin-right: 0 !important;
  }
  .releases {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .releases-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "link cost" "descript descript";
    gap: 0 10px;
    margin-bottom: 10px;
  }
  .releases-row .releases-cell {
    border: 0;
  }
  .releases-cell {
    display: block;
    padding: 5px 0;
    width: 100% !important;
  }
  .releases-cell:first-child {
    grid-area: link;
    place-self: end center;
  }
  .releases-cell:last-child {
    grid-area: cost;
    place-self: start center;
  }
  .releases-cell:nth-child(2) {
    grid-area: descript;
    place-self: center center;
    border-bottom: 1px dashed #151515;
  }
  .releases-cell:nth-child(2):first-letter {
    text-transform: capitalize;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .props {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "h-genres t-genres" "h-time t-time" "h-exp t-exp";
    gap: 5px 10px;
    margin-bottom: 10px;
  }
  .prop-text {
    display: flex;
  }
  .prop-header, .prop-text {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px dashed #151515;
    text-align: left;
  }
  .prop-header .tooltip, .prop-text .tooltip {
    position: static;
    display: inline-block;
    margin-left: 5px;
  }
  .back-btn {
    width: 30px;
    height: 30px;
    margin-bottom: -40px !important;
    margin-top: 20px;
  }
  .gallery .imageblock {
    width: 100%;
    margin-right: 0 !important;
  }
  .switch-item {
    font-size: 13.5px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
  }
  .audioblock {
    flex-direction: column;
    padding: 0;
    border: none;
    border-bottom: 2px dashed #151515;
    border-radius: 0;
    margin-bottom: 20px;
  }
  .audioblock-title, .audioblock-track {
    width: 100%;
  }
  .audioblock-title {
    align-items: center;
  }
  .audioblock-title-genres {
    justify-content: center;
  }
  .audioblock-title-name, .audioblock-title-game, .audioblock-title-genres {
    text-align: center;
  }
  .data-loader-data {
    display: block;
    width: 100%;
    height: 300px;
    background: #dddddd;
    border-radius: 10px;
  }
  .data-loader-data > * {
    display: none;
  }
  .data-loader::before {
    top: calc(35% - 50px);
  }
  .data-loader::after {
    top: calc(35% - 15px);
  }
}

/*# sourceMappingURL=design.css.map */
