@charset "UTF-8";
body, html {
  padding: 0;
  margin: 0; }

body {
  background: #2A2A2A; }

img {
  width: 100%; }

html,body,section{
  height: 100%;
}

.wrapper {
  position: relative;
  max-width: 768px;
  width: 100%;
  margin: 0 auto;

  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow-x: hidden; }

header {
  position: relative;
  z-index: 50;
  transform: translate(0%, -100%);
  transition: 0.3s; }

header.ready {
  transform: translate(0%, 0%); }

.logo {
  transform: rotate(0deg) perspective(1000px) rotateX(0deg);
  transition: 0.5s; }

.logo:hover {
  transform: rotate(0deg) perspective(1000px) rotateX(360deg); }

.header_content {
  background: #00010C;
  border-bottom: 2px solid #7F818B;
  padding: 0 20px 0 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center; }
  .header_content .back {
    width: 10px;
    padding: 10px 13px 10px 10px;
    transform: rotate(0deg) perspective(1000px) rotateY(0deg);
    transition: 0.5s; }
    .header_content .back img {
      width: 100%; }
    .header_content .back.active {
      transform: rotate(0deg) perspective(1000px) rotateY(360deg); }
  .header_content .logo_box {
    max-width: 58px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); 
  }

.main_box {
  z-index: 11;
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translate(-50%, -200%);
  transition: 0.6s; }
  .main_box img {
    transform: rotate(0deg) perspective(1000px) rotateX(0deg);
    transition: 0.5s; }
  .main_box img:hover {
    transform: rotate(0deg) perspective(1000px) rotateX(360deg); }

.main_box.ready {
  transform: translate(-50%, 0%); }

.main_box .main_item {
  max-width: 65px;
  margin: 0 auto; }
.main_box .main_text {
  font-size: 13px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Avenir Next LT Pro';
  font-weight: normal;
  font-style: normal; }
.main_box img {
  width: 100%; }

/*figure*/
.figure {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  z-index: 1; }

.figure:after {
  content: '';
  position: absolute;
  background: transparent;
  border: 1px solid #F7F7F7;
  transition: 0.3s;
  opacity: 0; }

.figure:after {
  width: 220px;
  height: 220px;
  left: 50%;
  top: 0%;
  border-radius: 100%;
  transform: translate(-50%, -100%);
  background: #2A2A2A; }

.opacity.figure:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.6s;
  transition: 0.6s; }

.description_box {
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translate(-50%, 200%);
  color: #fff;
  width: 95%;
  font-family: 'Avenir Next LT Pro';
  font-weight: normal;
  font-style: normal;
  box-sizing: border-box;
  text-align: justify;
  opacity: 0;
  transition: 1.2s;
  z-index: 3; }
  .description_box.ready {
    opacity: 1;
    transform: translate(-50%, 0%); }
  .description_box:after {
    content: '';
    position: absolute;
    bottom: -25px;
    height: 25px;
    width: 1px;
    background: transparent;
    z-index: -1; }
  .description_box .item {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    background: #2A2A2A;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-size: 14px; }
    .description_box .item .image_box {
      width: 100%;
      max-width: 38px;
      height: 38px;
      border-radius: 3px; }
    .description_box .item .text_box {
      margin-left: 10px;
      margin-right: 10px; }
  .description_box input[type=range] {
    height: 3px;
    width: 200px; }
  .description_box p {
    margin: 0; }
  .description_box h3 {
    font-size: 12px;
    margin: 0;
    padding: 0;
    text-transform: capitalize; }
  .description_box span,p {
    padding-bottom: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 12px; }

.play {
  background-image: url("../img/music_category/play.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center; }

.pause {
  background-image: url("../img/music_category/pause.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center; }

.red {
  background: red;
  border-radius: 11px; }

.hide {
  opacity: 0; }

.visible {
  opacity: 1; }

.active {
  color: #ff0000; }

.active_p {
  color: #fffefe; }

  .record__player{
    margin-bottom: 3px;
  }

  .item p{
    margin: 0;
    padding: 0px;
    display: inline;
  }

  .wrapper::-webkit-scrollbar {
      width: 0
  }

  ::-webkit-scrollbar {
      width: 0
  }
  .item p{
    margin: 0;
    padding: 0px;
    display: inline;
  }
/*end figure style*/
@media all and (min-width: 320px) and (min-height: 500px) {}
@media all and (min-width: 360px) and (min-height: 512px) {
  .description_box input[type=range] {
    height: 3px;
    margin-left: -3px;
    width: 230px;
  }
  .description_box .item .text_box{
    max-width: 220px;
  }
  .main_box .main_text{
    font-size: 15px;
  }
}

@media all and (min-width: 360px) and (min-height: 560px) {
  .main_box {
    top: 55px }

  .figure:after {
    width: 260px;
    height: 260px; }

  .figure:after {
    transform: translate(-50%, -50%); } 
  .description_box input[type=range] {
    height: 3px;
    margin-left: -3px;
    width: 230px;
    }
    .description_box{
      top: 200px;
    }
  }
@media all and (min-width: 360px) and (min-height: 660px) {
  .description_box {
    top: 30%; }
  .main_box {
    top: 8%; }
  }
@media all and (min-width: 375px) and (min-height: 700px) {
  .main_box {
    top: 60px }
  }
@media all and (min-width: 415px) and (min-height: 612px) {
  .description_box{
    width: 90%}
  .description_box > * {
    font-size: 16px; }
  .description_box .item{
    justify-content: space-around;
  }}

/*Iphone 5S - Album - Chrome*/
@media screen and (min-width: 568px)and (min-height:244px) {
  .description_box{
    top: 180px;
    width: 350px;
  }
  .main_box {
    top:55px;
  }
  .description_box .item .text_box {
      max-width: 230px;
  }
  .description_box input[type=range] {
      height: 3px;
      width: 230px;
  }
}
@media screen and (min-width: 568px) and (min-height: 500px){
  .description_box{
    top: 210px;
    max-width: 370px;
  }
  .main_box{
    top: 70px;
  }
  .header_content {
  padding: 10px 20px 10px 10px;
  }

}

@media all and (min-width: 768px) and (min-height: 768px) {
  .description_box {
    top: 33%;
    width: 65%;
    max-width: 450px; }

  .header_content .logo_box {
    max-width: 75px; }
    .description_box .item .image_box {
        width: 100%;
        max-width: 45px;
        height: 45px;
        border-radius: 5px;
    }
    .description_box input[type=range] {
        height: 3px;
        margin-left: -3px;
        width: 300px;
    }
    .description_box .item{
      justify-content: space-around;
      padding: 13px 28px 13px 13px;
    }
    .description_box .item .text_box{
      margin-left: 20px;
    }
    .download_box{
      margin-left: auto;
    }
    .description_box h3 {
        font-size: 14px;
        margin: 0;
        padding: 0;
        text-transform: capitalize;
    }
    .description_box span, p{
      font-size: 13px;
      }
    .description_box .item .text_box{
      max-width: 360px;
    }
     }
/*Iphone 8+, Iphone 6s+ - Port*/
@media all and (min-width: 768px) and (min-height: 905px) {
  .header_content {
    padding: 10px 20px 10px 10px; }
  .description_box {
      top: 33%;
      max-width: 500px; }
  .header_content .logo_box {
    max-width: 78px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }

  .main_box {
    top: 10%; }

  .main_box .main_item {
    max-width: 100px; }

  .main_box .main_text {
    font-size: 22px; }

  .figure:after {
    width: 378px;
    height: 378px;
    background: #2A2A2A; }

  .figure:after {
    transform: translate(-50%, -50%) scale(1); }

  .description_box {
    padding: 20px; }

  .description_box > * {
    font-size: 20px; }
  
}

@media all and (min-width: 768px) and (min-height: 1023px) {
  .main_box {top: 85px;}}
@media all and (min-width: 1023px) and (min-height: 700px) {
  .main_box {top: 65px;}
  .description_box {max-width: 550px}}
@media all and (min-width: 1023px) and (min-height: 985px) {
  .main_box {top: 85px;}}
/*Windows 1440*900 */
@media screen and (min-width: 1439px)and (min-height:788px) {
  .main_box{top: 70px;}}
/* Андрій - комп*/
/*в браузере: 1520x722*/
@media screen and (min-width: 1519px)and (min-height:720px) {
  .main_box {top: 70px;}}
/*1600x1200*/
/*в браузере: 1583x1050*/
@media screen and (min-width: 1580px)and (min-height:1049px) {
  .main_box {top: 85px;}}
/*1600x787*/
/*в браузере: 1600x787 - Asus X75*/
@media screen and (min-width: 1599px)and (min-height:786px) {}
/*1680x1050*/
/*в браузере: 1663x900*/
@media screen and (min-width: 1660px)and (min-height:899px) {}
/*1920x1080*/
/*в браузере: 1903x930*/
@media screen and (min-width: 1900px)and (min-height:929px) {
  .main_box {top: 85px;}}
/*1920x1080*/
/*Мій комп на хромі*/
/*в браузере: 1903x969*/
@media screen and (min-width: 1900px)and (min-height:968px) {}
/*1920x1200*/
/*в браузере: 1903x1050*/
@media screen and (min-width: 1900px)and (min-height:1049px) {}
/*2K*/
/*2048x1536*/
/*в браузере: 2031x1386*/
@media screen and (min-width: 2030px)and (min-height:1380px) {
  .description_box {top: 32%;}}
/*4K windows*/
/*3840x2160*/
/*в браузере: 2543x1300*/
@media screen and (min-width: 2540px)and (min-height:1299px){
  .description_box {top: 32%;}}
/*Media Requests*/
/*PC*/
/*4k mac*/
/*6720x3780*/
/*в браузере: 3360x1755*/
@media screen and (min-width: 3350px)and (min-height:1750px){}
