* {
  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: "Roboto", serif;
  position: relative;
  background-color: #bbbbbb;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../images/bg.jpg);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/bg.jpg);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/bg.jpg);
  background-position: 0px 0px, 50% 0px;
  background-size: auto, cover;
  background-repeat: repeat, repeat;
}

a {
  text-decoration: none;
}

.window {
  width: 100%;
  height: 100%;
  background: rgba(112, 112, 112, 0.3);
  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: #000;
  padding: 5px;
  border: 1px solid #383838;
}

.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: 5px;
}

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

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

.content button {
  margin: 0 auto;
}

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

/*************** media queries start ***********/
@media only screen and (min-width: 1200px) {
  .window__player {
    width: 1140px;
    margin: 30px auto 0;
  }
}

@media only screen and (max-width: 1200px) {
  .window__player {
    width: 960px;
    margin: 30px auto 0;
  }

  .content {
    width: 430px;
  }
}

@media only screen and (max-width: 992px) {
  .window__player {
    width: 720px;
  }
}

@media only screen and (max-width: 768px) {
  .window__player {
    width: 96%;
  }

  .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: 100%;
    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 {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.header img {
  width: 40px;
}

.header-right {
  display: flex;
  align-items: center;
}

.footer_btn {
  background-color: #0068ff;
  margin: 20px 20px 0px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  padding: 10px;
}

.footer {
  position: absolute;
  width: 100%;
  bottom: 0px;
  background: linear-gradient(rgb(0 0 0 / 3%), rgb(0 0 0 / 77%));
  padding-bottom: 50px;
  padding-top: 30px;
}

.footer_btn img {
  width: 30px;
  margin-right: 13px;
}

.footer-desc {
  padding: 0px 20px;
  color: #fff;
}