/* Basic Reset */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Kanit', sans-serif;
  font-style: normal;
  line-height: 1.6;
}
body{
  width: 100vw;
  overflow-x: hidden;
}
.body{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;/*#eceaea - grey */
}
.fq{
  display: flex;
  width: 100%;
  padding: 10px;
  justify-content: center;
  background-color: #000000;
}
.fq span{
  font-size: 1rem;
  letter-spacing: 5px;
  text-align: center;
  color: #bd8349;
}
.menu{
  width: 100%;
  display: flex;
  background: #faa719;
  justify-content: center;
  align-items: center;
}
.navbar{
  max-width: 100%;
  display: flex;
  align-items: center;
}
.logo{
  width: 150px;
  padding: 5px;
}
.logo img{
  max-width: 100%;
}
.menu ul{
  display: flex;
  list-style: none;
  overflow-x: auto;
}
.menu ul li{
  flex: 0 0 auto;
  margin: 20px;
  text-decoration: none;
}
.menu ul li a{
  text-decoration: none;
  color: #f1f5ef;
}
.player{
  position: fixed;
  width: 100vw;
  height: 100px;
  bottom: 0;
  display: flex;
  align-items: center;
  background-color: #0e0d0cf6;
  overflow: hidden;
}
.button{
  width: 80px;
  height: 80px;
  display: flex;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid #8f1319;/* #0b580b */
}
.button button{
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: none;
}
.button button svg{
  position: absolute;
  width: 30px;
  height: 30px;
  fill: #f0b801;
  opacity: 1;
  transition: opacity .2s;
}
.button .loading{
  width: 50px;
  height: 50px;
  animation: none;
}
.button svg.hidden{
  opacity: 0;
}
@keyframes spin{
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
.show{
  margin: 10px;
  flex: 1;
}
.show *{
  width: max-content;
  font-family: 'Cuprum', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #ddb941;
}
.show h3{
  color: red;
  line-height: 1rem;
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
}
.show h1{
  letter-spacing: 2px;
}
.volume{
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  margin-right: 10px;
  cursor: pointer;
}
.volume-slider-wrapper{
  position: relative;
  display: flex;
  width: 0;
  height: 50px;
  align-items: center;
  padding: 0;
  overflow: hidden;
  transition: width .3s cubic-bezier(.4,.4,.265,.99);
}
#volume{
  position: absolute;
  width: 100px;
  height: 3px;
  background: #f30808;
  border-radius: 15px;
}
.ui-slider-range-min{
  position: absolute;
  width: 100px;
  height: 3px;
  background: #ffe605;
  border: none;
  border-radius: 10px;
  outline: none;
}
.ui-slider-handle{
  position: absolute;
  width: 15px;
  height: 15px;
  background: rgb(20, 20, 20);
  border-radius: 15px;
  margin-top: -6px;
  margin-left: -6px;
  cursor: pointer;
  outline: none;
  border: none;
}
.player .volume:hover > .volume-slider-wrapper{
  width: 130px;
  padding: 0 10px 0 20px;
}
.player .volume svg{
  width: 40px;
  height: 40px;
  margin: 10px;
  fill: #f1f51c;
}
@media only screen and (max-width: 720px){
  .player .volume{
    display: none;
  }
  .statement, .contacts{
    width: 100%;
  }
  .show h1{
    font-size: 1.5em;
  }
}