.b_inline_player {
  display: flex !important;
  align-items: center;
  width: 100%;
  height: 15px;
  padding: 0;
  margin: 10px 0 10px 0;
  box-sizing: border-box;
}
.b_inline_player > .progress {
  width: 88%;
  height: 100%;
  margin: 0 10px 0 0;
}
@media (max-width: 767px) {
  .b_inline_player > .progress {
    margin-right: 0;
  }
}
.b_inline_player > .volume {
  display: flex;
  margin: 0 0 0 30px;
  position: relative;
  width: 12%;
  height: 100%;
}
.b_inline_player > .volume .icon {
  position: absolute;
  left: -25px;
  top: -1px;
  opacity: 0.8;
  cursor: pointer;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-image: url('/img/volume.svg');
}
.b_inline_player > .volume.mute .icon {
  background-image: url('/img/volume_off.svg');
}
.b_inline_player.hide_volume > .progress {
  width: 100%;
}
.b_inline_player.hide_volume > .volume {
  display: none;
}
.b_range {
  display: inline-block;
  box-sizing: content-box;
  width: 100%;
  height: 4px;
  padding: 5px 0;
  background-color: #E1E8EE;
  background-clip: content-box;
  cursor: pointer;
}
.b_range .loading {
  position: absolute;
  width: 0;
  height: 4px;
  background-color: #B8C7D7;
}
.b_range .slider {
  position: relative;
  width: 0;
  height: 100%;
  background-color: #2A5885;
}
.b_range .slider:before {
  content: '';
  position: absolute;
  right: -12px;
  top: -4px;
  width: 12px;
  height: 12px;
  background-color: #2A5885;
  border-radius: 50%;
}
.b_list_songs {
  margin-bottom: -10px;
}
.b_list_songs.empty {
  margin: 0;
}
.b_list_songs.for_admin .title .song_name > a[rel=nofollow] {
  color: #919292;
}
@media (max-width: 767px) {
  .b_list_songs {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.b_list_songs .reload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  color: #919292;
}
.b_list_songs .reload.hide {
  display: none;
}
.b_list_songs .reload .close {
  position: absolute;
  right: 0px;
  font-style: normal;
  font-size: 25px;
  font-family: monospace;
  cursor: pointer;
  line-height: 10px;
  color: #919292;
  padding: 5px 10px;
  opacity: 0.5;
}
.b_list_songs .reload .close:hover {
  opacity: 1;
}
.b_list_songs .reload .btn {
  padding: 5px 25px;
  border: 2px solid;
  text-decoration: none;
  margin: 10px 0 0 0;
}
.b_list_songs > p {
  margin: 0;
}
.b_list_songs .song {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 60px;
  position: relative;
  padding: 0 10px;
  left: -10px;
  width: calc(100% + (2 * 10px));
  box-sizing: border-box;
}
.b_list_songs .song.selected {
  transition-property: color;
  transition-duration: 1s;
}
@media (pointer: fine) {
  .b_list_songs .song:hover {
    transition-property: color;
    transition-duration: 1s;
  }
}
.b_list_songs .song .btn {
  width: 40px;
  height: 40px;
  border: 2px solid #d3d9de;
  border-radius: 10px;
  flex-shrink: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .b_list_songs .song .btn {
    width: 35px;
    height: 35px;
    margin-right: 5px;
  }
}
.b_list_songs .song .btn:after {
  content: ' ';
  display: inline-block;
  width: 70%;
  height: 70%;
  margin-top: 15%;
  margin-left: 15%;
  background-color: white;
  background-size: 15px;
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .b_list_songs .song .btn:after {
    background-size: 13px;
  }
}
.b_list_songs .song .btn.play:after {
  background-position: calc(50% + 1px);
  background-image: url(/img/play.svg?v=1);
}
.b_list_songs .song .btn.play.pause:after {
  background-position: 50%;
  background-image: url(/img/pause.svg);
}
.b_list_songs .song .btn.download {
  margin-left: 10px;
  margin-right: 0;
}
.b_list_songs .song .btn.download:after {
  background-size: 21px;
  background-image: url(/img/download.svg?v=5);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .b_list_songs .song .btn.download:after {
    background-size: 19px;
  }
}
.b_list_songs .song .btn.error {
  cursor: default;
}
.b_list_songs .song .btn.error:after {
  background-size: 18px;
  background-position: 50%;
  background-image: url(/img/file_error.svg);
}
.b_list_songs .song .title {
  position: relative;
  flex-grow: 1;
  white-space: nowrap;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .b_list_songs .song .title {
    margin-left: 3px;
  }
}
.b_list_songs .song .title > div {
  position: absolute;
  overflow: hidden;
  max-width: 100%;
}
.b_list_songs .song .title .artist_name {
  bottom: 0;
}
@media (max-width: 767px) {
  .b_list_songs .song .title .artist_name {
    bottom: 1px;
  }
}
.b_list_songs .song .title .song_name {
  top: 0;
  font-weight: normal;
}
@media (max-width: 767px) {
  .b_list_songs .song .title .song_name {
    top: 2px;
  }
}
.b_list_songs .song .right {
  display: flex;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .b_list_songs .song .right {
    margin-left: 7px;
  }
}
.b_list_songs .song .right .info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  color: #919292;
  flex-shrink: 0;
  margin-right: 0;
  font-weight: normal;
}
@media (max-width: 767px) {
  .b_list_songs .song .right .info {
    margin-right: 0;
  }
}
.b_columns {
  display: flex;
  margin: 0;
  flex-direction: row;
}
@media (max-width: 767px) {
  .b_columns {
    margin-top: -20px;
    flex-direction: column;
  }
}
.b_columns > .col {
  width: 49%;
  margin-right: 2%;
}
.b_columns > .col:last-of-type {
  margin-right: 0;
}
@media (max-width: 767px) {
  .b_columns > .col.queries {
    order: 1;
  }
  .b_columns > .col.queries li {
    display: none;
  }
  .b_columns > .col.queries li:nth-of-type(-n+5) {
    display: list-item;
  }
  .b_columns > .col.lists {
    order: 2;
  }
}
@media (max-width: 767px) {
  .b_columns > .col {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
}
.b_columns > .col li {
  height: calc(1em + 5px);
  overflow: hidden;
}
.b_list {
  color: #919292;
}
.hx_line + .b_list {
  margin-top: 20px;
}
.b_list .title {
  margin: 0 0 10px 0;
  font-size: 24px;
}
.b_list ul {
  padding: 0;
  margin: 0 0 -10px 0;
  list-style: none;
}
.b_list ul li {
  margin-bottom: 10px;
}
body {
  background-color: white;
  overflow-y: scroll;
  margin: 0;
  background-image: url("/img/background.png?v=3");
}
.b_body {
  display: flex;
  flex-direction: column;
  max-width: 800px !important;
  margin: auto;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 20px 20px 0 20px;
  background-color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .b_body {
    font-size: 15px;
    padding: 0;
  }
}
a {
  color: #2A5885;
  text-decoration: none;
}
a:visited {
  color: #2A5885;
}
a:hover {
  text-decoration: underline;
}
h1 {
  margin: 0 0 20px 0;
  font-size: 24px;
  line-height: 18px;
  font-weight: normal;
  color: #919292;
  white-space: nowrap;
}
@media (max-width: 767px) {
  h1 {
    margin: 5px 0 10px 0;
  }
}
.b_ya_share2 {
  margin: 0 auto 20px 0;
}
@media (max-width: 767px) {
  .b_ya_share2 {
    margin: 10px 0 10px 10px;
  }
}
.b_box {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .b_box {
    margin-top: 10px;
    padding: 10px;
  }
}
.b_box .hx_line {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
  padding-bottom: 5px;
  align-items: flex-end;
  color: #919292;
  overflow: hidden;
}
@media (max-width: 767px) {
  .b_box .hx_line {
    margin-bottom: 10px;
  }
}
.b_box .hx_line .back {
  height: 24px;
}
.b_box .hx_line .back img {
  width: 24px;
  height: inherit;
  opacity: 0.5;
}
.b_box .hx_line .back + h1 {
  margin-left: 15px;
}
.b_box .hx_line h1 {
  flex-shrink: 0;
  margin-bottom: 0;
  margin-right: 10px;
}
.b_box .hx_line .clicks {
  margin-right: 10px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
}
.b_box .hx_line form {
  position: relative;
  bottom: -3px;
  width: 100%;
  margin-top: 5px;
}
.b_box .hx_line form + form {
  margin-top: 8px;
}
.b_box .hx_line form select {
  padding: 2px 5px;
}
.b_box .hx_line form button[type=submit] {
  display: none;
}
.b_user_menu {
  position: absolute;
  right: 0;
  z-index: 1;
}
.b_user_menu ul {
  height: 24px;
  overflow: hidden;
  list-style: none;
  background: white;
  border-radius: 2px;
  box-shadow: 0 1px 0 0 #d7d8db, 0 0 0 1px #e3e4e8;
  margin: 10px;
  padding: 10px;
  max-width: 200px;
  white-space: nowrap;
}
.b_user_menu ul hr {
  visibility: hidden;
}
.b_user_menu ul:hover {
  height: auto;
}
.b_user_menu ul:hover hr {
  visibility: visible;
}
@media (max-width: 767px) {
  .b_user_menu ul {
    padding: 8px 5px;
    max-width: 85px;
  }
}
.b_user_menu ul > li {
  overflow: hidden;
}
.b_user_menu ul > li > a {
  display: inline-block;
  padding: 1px 2px;
  width: 100%;
}
.b_user_menu ul > li:first-of-type > a {
  width: auto;
}
.b_user_menu.hidden ul {
  background: none;
  border: none;
  box-shadow: none;
}
.b_user_menu.hidden a {
  color: transparent;
}
.b_header .logo {
  padding: 0;
  text-align: center;
}
.b_header .logo img {
  width: auto;
  height: 60px;
}
.b_header .logo h1 {
  display: flex;
  justify-content: center;
  margin: 0;
}
.b_search_form {
  margin: 0 -10px;
  border: 0;
  background-color: white;
}
.b_search_form form {
  display: flex;
}
.b_search_form form .input {
  flex-grow: 1;
}
.b_search_form form .input input {
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  border: 2px solid #d3d9de;
  border-right: none;
  outline: none;
  font-family: inherit;
  font-size: 24px;
}
@media (max-width: 767px) {
  .b_search_form form .input input {
    padding: 8px;
  }
}
.b_search_form form .input input::-webkit-input-placeholder {
  transition-property: opacity;
  transition-duration: .15s;
}
.b_search_form form .input input:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.b_search_form form .btn.spinner {
  position: relative;
}
.b_search_form form .btn.spinner input {
  background-image: none;
}
.b_search_form form .btn.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spinner .6s linear infinite;
}
.b_search_form form .btn input {
  background-image: url(/img/search.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: inherit;
  background-size: 25px;
  height: 100%;
  width: 60px;
  border: 2px solid #d3d9de;
  color: transparent;
  outline: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .b_search_form form .btn input {
    background-size: 20px;
  }
}
.b_search_form .list {
  margin: 10px 10px 10px 10px;
}
@media (max-width: 767px) {
  .b_search_form .list {
    margin-bottom: 0;
  }
}
.b_search_form .list ul {
  display: inline-flex;
  padding: 0;
  flex-direction: row;
  list-style: none;
  flex-wrap: wrap;
  margin: -7px 0 0 0;
  font-size: 16px;
}
@media (max-width: 767px) {
  .b_search_form .list ul {
    font-size: 15px;
  }
}
.b_search_form .list ul li {
  display: inline-flex;
  margin: 7px 5px 0 0;
  align-items: center;
}
.b_search_form .list ul li:first-of-type {
  padding-left: 0;
}
.b_search_form .list ul li.hide {
  display: none;
}
.b_search_form .list ul li.item {
  order: 0;
  border: 2px solid #d3d9de;
  border-radius: 2px;
  margin-right: 12px;
}
.b_search_form .list ul li.item:hover {
  background-color: #F2F4F7;
}
.b_search_form .list ul li.item a {
  padding: 3px 7px 5px 7px;
}
.b_search_form .list ul li.item a:hover {
  text-decoration: none;
}
.b_search_form .list ul li.active {
  background-color: #F2F4F7;
}
.b_search_form .list ul li.active.hide {
  order: 1;
  display: inline-flex;
}
.b_search_form .list ul li.active a {
  color: black;
  cursor: default;
  text-decoration: none;
}
.b_search_form .list ul li.show_all {
  order: 2;
}
.b_footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-grow: 1;
  align-items: flex-end;
  line-height: 1.5;
  margin: 30px 0;
  opacity: 0.7;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .b_footer {
    margin: 10px 10px 20px 10px;
  }
}
.b_footer .center {
  flex-grow: 1;
  text-align: center;
}
.b_footer .right {
  text-align: right;
}
@media (max-width: 767px) {
  .b_footer .hide_phone {
    display: none;
  }
}
.b_footer .li {
  position: relative;
  bottom: -2px;
}
