* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: relative;
  background-color: black;

  background-size: auto, cover;
  background-repeat: repeat, repeat;
}

a {
  text-decoration: none;
}

.window {
  width: 100%;
  height: 100%;

  color: #3e3e3e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.window__player {
  background: url(a6b212fa77f857e28d6c6818f0f835af.gif) center center no-repeat;
  padding: 5px;
  border: none;
  background-size: cover;
  width: 100%;
}

.content__text {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
}

.content__text p {
  margin-bottom: 5px;
}

.content__text p:last-child {
  margin-bottom: 0;
}

.content__text b {
  font-weight: 700;
}

button {
  background: none;
  color: #0379f4;
  border: none;
  font-weight: 400;
  padding: 10px;
  font-size: 1.2rem;
  position: relative;
  display: block;
  cursor: pointer;
  text-align: center;
}

.window__loader {
  width: 90px;
}

.window__loader img {
  width: 100%;
  display: block;
}

.window__container {
  height: 55vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.playerPanel__progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 3px;
}

.playerPanel__icons {
  width: 100%;
  padding: 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.icon {
  fill: #fff;
  height: 22px;
}

.picIcon {
  height: 18px;
}

.playerPanel__left,
.playerPanel__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.playerPanel__left .icon {
  margin-right: 10px;
}

.playerPanel__right .icon {
  margin-left: 10px;
}

.playerPanel__time {
  font-size: 0.8rem;
  line-height: 1;
  color: #fff;
  display: inline-block;
}

.content {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  color: #333333;
  text-align: center;
  background: #fff;
  width: 500px;
}

.content__top {
  padding: 15px;
}

.content__bottom {
  border-top: 1px solid #e1e1e1;
  padding: 3px;
}

.content__bottom:hover {
  background: #f1f1f1;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

.content h1 {
  font-size: 1.4rem;
  font-size: 600;
  margin-bottom: 7px;
  margin-top: 1px;
}

.content button {
  margin: 0 auto;
}

.content .content__text {
  font-size: 1.2rem;
}



@media only screen and (max-width: 1200px) {


  .content {
      width: 430px;
  }
}



@media only screen and (max-width: 768px) {
  .window__player {
    background: url(a6b212fa77f857e28d6c6818f0f835af.gif) center center no-repeat;
    padding: 5px;
    border: 1px solid #383838;
    background-size: cover;
    width: 100%;
    margin-top: 10px;
  }

  .window__container {
    height: 35vh;
    }
  .content {
      width: 90%;
      margin: 0 auto;
  }

  .playerPanel__left .icon {
      margin-right: 5px;
  }

  .playerPanel__right .icon {
      margin-left: 5px;
  }

  .content .content__text {
      font-size: 1rem;
  }
}

@media only screen and (max-width: 320px) {
  html {
      font-size: 13px;
  }

  button {
      padding: 10px;
  }

  .window__player {
      margin-top: 15px;
  }

  .window__loader {
      width: 70px;
  }

  .icon {
      height: 20px;
  }

  .picIcon {
      height: 16px;
  }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
  .window {
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
  }

  .window__player {
      width: 96%;
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-top: 0;
      
  }

  .window__container {
      height: 100%;
  }
}

@media screen and (max-width: 480px) and (orientation: landscape) {
  html {
      font-size: 14px;
  }
}


.header{
  width: 100%;
clear: both;
}
.header img{
  width: 100%;
}
.footer{
  width: 100%;

  color: white;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  position: absolute;
bottom: 65px;
}
.ft{
  text-align: left;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}
.fb img{
  width: 25px;
  margin-right: 10px;
  vertical-align: middle;
}
.fb span{
  vertical-align: middle;
}
.fb{
  background-color: #1877F2;
  font-size: 19px;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 0 100px black;
}
.playerPanel{
  bottom: 5px;
position: absolute;
width: 97%;
}
.f1b img{
  width: 50px;
  border-radius: 100%;
  display: inline-block;
vertical-align: middle;
margin-right: 10px;
}
.gh{
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
  vertical-align: middle;
}
.f1b{
  text-align: left;
  margin-bottom: 15px;
}
.folb{
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  border: 1px solid white;
  padding: 8px 37px;
  border-radius: 10px;
}
@media (max-height: 620px){
  .window__player {
    padding: 0px;
    margin-top: 0px;
  }
  .window__container {
    height: 30vh;
    }
}
body{
  max-width: 600px;
margin: 0 auto;
}