@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');
body {
	font-family:"Noto Sans TC","Microsoft JhengHei", "Noto Sans CJK TC", "PingFang, STHeiti", sans-serif, serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: var(--grheight);
  width: 100vw;
  overflow: hidden;
  background-color: #1377ba;
}
/* 大背景 */
.page_bg{
  overflow: hidden;
  position: absolute;
  background: url(../img/pagebg.jpg);
  background-size: var(--bgsize);
  z-index: -100;
  background-position: center top;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--grheight);
  width: 100vw;
}
.page_bg::after{
  content: "";
  display: block;
  width: 137vw;
  height: var(--grheight);
  background: url(../img/floor.jpg);
  background-repeat: repeat-x;
  background-position: bottom;
  margin-left: 0vw;
  animation: moverl 15s steps(20) infinite;
}
@keyframes moverl {
  0% {
    margin-left: 0vw;
  }
  100% {
    margin-left: -37vw;
  }
}
.page_bg img{
  position: absolute;
}
.brick{
  width: 8.5vh;
}
.brick.bri02{
  margin-left: 17vh;
}
.brick.bri03{
  margin-left: 34vh;
}
.brick.brick_a{
  transform: translate(-770%, -2170%);
}
.brick.brick_b{
  transform: translate(-1065%, 750%);
}
.brick.brick_c{
  transform: translate(-330%, 645%);
}
.brick.brick_d{
  transform: translate(220%, -2170%);
}
.brick.brick_e{
  transform: translate(876%, -1170%);
  filter: brightness(0.75);
}
.peopleList{
  position: absolute;
  bottom: 40px;
  display: flex;
  justify-content: space-between;
  width: 150%;
  margin-right: 0;
  animation: moverlpl 15s steps(20) infinite;
}

@keyframes moverlpl {
  0% {
    margin-right: 0;
  }
  100% {
    margin-right: -60%;
  }
}
.peopleList div{
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.peopleList img{
  width: calc(var(--grwidth) * 0.2);
  height: auto;
}
.p03 img {
    width: calc(var(--grwidth) * 0.2 - 5px);
}
.p04 img {
    width: calc(var(--grwidth) * 0.2 - 20px);
}
.ladder{
  width: 4vh;
}
.ladder.lad01{
  transform: translate(-1700%, -106%);
}
.ladder.lad02{
  transform: translate(1850%, -36%);
  filter: brightness(0.7);
}
.bgicon01{
  width: 6vh;
  transform: translate(-1380%, 150%);
  margin-bottom: 0;
  animation: floatupdw 2s ease-in-out infinite;
}
.bgicon02{
  width: 6vh;
  transform: translate(-465%, 100%);
  margin-bottom: 0;
  animation: floatupdw 2s ease-in-out infinite;
  animation-delay: -0.8s;
}
.bgicon04{
  width: 6vh;
  transform: translate(1300%, -500%);
  margin-bottom: 0;
  animation: floatupdw 2s ease-in-out infinite;
  animation-delay: -1.4s;
}
@keyframes floatupdw {
  0%,100% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: 20px;
  }
}
.bgicon03{
  width: 8vh;
  transform: translate(290%, -580%);
  margin-bottom: 0;
  animation: fadeinout 2s ease-in-out infinite;
  animation-delay: -1.7s;
}
@keyframes fadeinout {
  0%,100% {
    opacity: 0.3;
  }
  40%,60% {
    opacity: 1;
  }
}

.elevatorbox{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20vh;
  height: 1vh;
}
.elevatorbox::after{
  position: absolute;
  content: "";
  display: block;
  width: 21vh;
  height: 1vh;
  border: 3px solid #000;
  background-color: #444964;
  bottom: -5vh;
  border-radius: 0 5px 5px 0;
}
.elevator{
  width: 8vh;
  margin-left: 18vh;
}
.ebleft{
  transform: scaleX(-1) translate(257%, 100%);
}
.ebleft img{
  animation: ebleftmove 5s ease-in-out infinite;
  animation-delay: -0.7s;
}
@keyframes ebleftmove {
  0%,10%,90%,100% {
    margin-left: 18vh;
  }
  40%,60% {
    margin-left: -18vh;
  }
}
.ebright{
  transform: translate(268%, 1500%);
  margin-bottom: 1vh;
  animation: ebrightmove 5s ease-in-out infinite;
}
@keyframes ebrightmove {
  0%,10%,90%,100% {
    margin-bottom: 1vh;
  }
  40%,60% {
    margin-bottom: 100vh;
  }
}

.gameRange {
  max-width: var(--grwidth);
  display: flex;
  align-items: center;
  flex-direction: column;
  height: var(--grheight);
  position: relative;
}
.gameRange,
.gameRange * {
  transition: all 0.5s ease-in-out;
}

h1, h2, h3 {
  text-align: center;
}

.home .kvtitle{
  width: 95%;
  margin-top: 5vh;
}
.home .cooricon{
  width: 7vh;
  position: absolute;
  transform: translate(calc(var(--grwidth) * -0.42), calc(var(--grwidth) * 0.32) ) rotate(-20deg);
}
.home .introtext{ opacity: 0; }

.startbtn{
  color: #fff;
  font-family: Impact;
  font-weight: 500;
  letter-spacing: 5px;
  text-decoration: none;
  font-size: 4vh;
  text-shadow: 1px 2px 5px rgba(0,0,0,0.7);
  margin: 5vh 0;
  padding: 1vh 2vh;
  background: linear-gradient(to bottom,#fff799,#f1a646);
  border-radius: 60px;
  border: 1vh #000 solid;
  box-shadow: 0px 10px 0 rgba(0, 0, 0);
  position: absolute;
  top: calc(var(--grwidth) * 0.4);
}
.startbtn:hover{
  color: #fff;
  box-shadow: 0px 5px 0 rgba(0, 0, 0);
  transform: scale(0.97);
}
.startbtn img{
  width: 5vh;
  margin-left: 1vh;
}
.Msgtext{
  width: 75%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  transform: translate(0, 20vh);
}
.Msgtext img{
  width: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0.8;
}
.Msgtext span{
  padding-top: 4.5vh;
  color: #1f374d;
  text-align: center;
  font-weight: bold;
  font-size:calc(var(--grwidth) * 0.04);
}
.introtext{
  text-align: center;
  color: #fff;
  letter-spacing: 3px;
  line-height: 3.8vh;  
  margin-top: -10vh;
  z-index: -1;
}
.introtext span{
  display: block;
  font-size:calc(var(--grwidth) * 0.05);
}
.introtext span:nth-child(2){
  padding: 1.5vh 0;
  font-style: italic;
  font-size:calc(var(--grwidth) * 0.05);
  font-weight: bolder;
  color: #ffdd00;
  line-height: calc(var(--grwidth) * 0.07);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introtext span:nth-child(2) img{
  width: 2.3vh;
  position: absolute;
  left: 2vh;
}
.introtext span:nth-child(2) img:last-child{
  left: unset !important;
  right: 3vh;
}

.intro .kvtitle,.gogame .kvtitle,.goresult .kvtitle{
  width: 70%;
  margin-top: 5vh;
}
.intro .cooricon{
  width: 5vh;
    position: absolute;
    transform: rotate(0) translate(0, calc(var(--grwidth) * 0.28));
}
.intro .Msgtext{
  opacity: 0;
  transform: translate(0, -45vh);
}
.intro .startbtn{
  transform: scale(0.8) translate(0, calc(var(--grwidth) * 0.9));
}
.intro .introtext{ 
  opacity: 1; 
}
/* 進度條 */
.barbox{
  display: none;
  width: 70%;
  position: relative;
  top: 6vh;
}
.barbox img{
  width: 100%;
  position: absolute;
}
.progress{
  position: absolute;
  width: 90%;
  margin: 7px 0 10px 0;
  border-radius: 6px;
  height: 2.5vh;  
}
.progress-bar{
	background-color: #ffd638;
}
.progress {
  background-color: unset;
}
.gogame .barbox{
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 進度條 */

.gogame .startbtn,.gogame .introtext,.gogame .Msgtext,
.goresult .startbtn,.goresult .introtext,.goresult .Msgtext,.goresult .barbox
{
  display: none;
}
.gogame .cooricon{
  width: 7vh;
  position: absolute;
  z-index: 3;
  transform: translate(calc(var(--grwidth) * -0.3), calc(var(--grwidth) * 0.385));
}
.gogame .kvtitle {
  margin-top: 5vh;
}
#quiz{
  position: absolute;
  width: var(--grwidth);
  top: calc(var(--grwidth) * 0.6);
}
.question {
  /* margin: 20px 0; */
}
.question h3{
  color: #fff;
  font-size: calc(var(--grwidth) * 0.05);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: calc(var(--grwidth) * 0.07);
  width: 70%;
  margin: 0 auto;
}
.options{
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.options button ,.options button:active,.options button:focus{
  width: 90%;
  margin: 5px 0;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  background: url(../img/Qbgd.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: 50% 1.3vh;
  color: #000;
  /* margin-bottom: 20px; */
}
.options button::before{
  content: "";
  display: block;
  position: absolute;
  width: 75%;
  height: 15%;
  background: url(../img/Qbgl.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  /* margin-top: 15px; */
  margin-right: 5px;
}
.options button span{
  z-index: 1;
  position: absolute;
  width: 60%;
  display: block;
  padding-top: calc(var(--grwidth) * 0.01);
  font-weight: bold;
  font-size: calc(var(--grwidth) * 0.037);
  line-height: calc(var(--grwidth) * 0.05);
}

.options button:hover {
  background: unset;
}
.options button:hover span{
  color: #fff;
}
.options button:hover::before {
  background: url(../img/Qbgh.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 5px;
  margin-right: 0px;
}
.gameRange.goresult{
  justify-content: flex-start;
  position: absolute;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 80vh;
  top: 0;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}
.goresult .kvtitle{
  margin-top: 5vh;
}
#result,#peopledesc {
  width: var(--grwidth);
  display: none;
  text-align: center;
  margin-top: 1vh;
  transform: scale(0.79);
  transform-origin: top;
}
#peopledesc {
  transform: scale(1);
}
.cooricondiv{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: calc(var(--grwidth) * 0.8);
  width: 100%;
}
.cooricondiv div,.cooricondiv img{
  position: absolute;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.powername{
  width: 60%;
  margin-top: 15px;
}

.goresult .cooricon{
  width: 4vh;
  position: absolute;
  transform: translate(-16vh, 15vh) rotate(-20deg);
}
.goresult .coordspan{
  display: flex;
  color: #eee;
  font-weight: bold;
  font-size: calc(var(--grwidth) * 0.05);
  padding: 10px 0;
  justify-content: center;
  align-items: center;
}
.goresult .coordspan img{
  width: 4.5vh;
  margin-right: 5px;
}
.goresult h2{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee;
  font-size: calc(var(--grwidth) * 0.045);
  letter-spacing: 3px;
  padding-bottom: 1px;
}
.goresult h2 img{
  position: absolute;
  width: calc(var(--grwidth) * 0.25);
  z-index: -1;
}
.coorbrickbox{
  bottom: 3vh;
  left: 3.5vh;
}
.coorbrickbox img{
  width: 50%;
  position: relative;
}
.cooricondiv img.coorkidimg{
  width: 65%;
  bottom: 8vh;
}
.cooricondiv img.p-11{
  width: 50%;
}

#result p,#peopledesc p{
  font-size: calc(var(--grwidth) * 0.05);
  padding: 15px 5vh;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
}
#peopledesc p{
  font-size: calc(var(--grwidth) * 0.03);}
#btngroup{
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 1vh;
  top: 1vh;
}
#btngroup a{
  cursor: pointer;
}
#btngroup img{
  width: 4.5vh;
  margin: 5px;
}
.home #btngroup a.btn_music,
.home #btngroup a.btn_home,
.home #btngroup a.btn_replay,
.intro #btngroup a.btn_replay,
.home #btngroup a.btn_infor,
.intro #btngroup a.btn_infor,
.gogame #btngroup a.btn_infor,
.home #btngroup div,
.intro #btngroup div,
.gogame #btngroup div,
.home .nextpage,
.intro .nextpage,
.gogame .nextpage
{
  display: none;
}
#btngroup div{
  width: calc(var(--grwidth) * 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--grwidth) * 0.07);
  
  animation: floatitem 1s infinite ease-in-out;
  padding-bottom: 1vh;
}

@keyframes floatitem {
  0%,100%  {
    padding-top: 0;
    padding-bottom: 1vh;
  }
  50% {
    padding-top: 1vh;
    padding-bottom: 0;
  }
}
#btngroup div img,#btngroup div span{
  position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  margin: 0;
}
#btngroup div img{
  z-index: -1;
  transform: scale(-1);
}
#btngroup div span{
  color: #1f374d;
  font-weight: 900;
  font-style: italic;
  font-size: calc(var(--grwidth) * 0.03);
  line-height: calc(var(--grwidth) * 0.035);
  margin-top: calc(var(--grwidth) * 0.02);
}
.nextpage{
  position: fixed;
  width: calc(var(--grwidth) * 0.1);
  bottom: calc(var(--grwidth) * 0.22);
  animation: floatitem 1s infinite ease-in-out;
  padding-bottom: 1vh;
}
.coorlight{
  animation: lds-roller 30s steps(120) infinite;
}

.cooricondiv div.peoplegroup,.cooricondiv div.peoplegrouptext {
    width: 100%;
    height: calc(var(--grwidth) * 0.77);
}
.cooricondiv div.peoplegroup img{
    width: 30%;
}
.cooricondiv div.peoplegroup img:first-child{
    right: 5vh;
    top: 2vh;
}
.cooricondiv div.peoplegroup img:nth-child(2){
    right: 5vh;
    bottom: 5vh;
}
.cooricondiv div.peoplegroup img:nth-child(3){
    left: 5vh;
    bottom: 5vh;
}
.cooricondiv div.peoplegroup img:last-child{
    width: 25%;     
    left: 5vh;
    top: 0;
}
.peoplegrouptext span{
  display: block;
  position: absolute;
  color: #fff;
  font-size: calc(var(--grwidth) * 0.05);
  font-weight: bold;
}
.cooricondiv div.peoplegrouptext {
  height: calc(var(--grwidth) * 0.48);
}
.cooricondiv div.peoplegrouptext span:first-child{
    right: 7vh;
    top: 0;
}
.cooricondiv div.peoplegrouptext span:nth-child(2){
    right: 7vh;
    bottom: 0;
}
.cooricondiv div.peoplegrouptext span:nth-child(3){
    left: 7vh;
    bottom: 0;
}
.cooricondiv div.peoplegrouptext span:last-child{
    left: 7vh;
    top: 0;
}
.cooricondiv div.peoplegrouptext img{
  height: 100%;
  width: auto;
  margin-left: -4.5vh;
}

#peopledesc .coorbrickbox{
  bottom: -5vh;
  left: 3.5vh;
}
#peopledesc p {
  padding: 8vh 5vh;
  padding-bottom:0;
}
#peopledesc p img,#peopledesc .coordspan img{
  width: 3vh;
  margin-right: 1vh;
}
.popbuble{
  width: 100%;
  top: 30%;
}
.popbuble,.infordesc span,.infordesc img{
  position: absolute;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.popbuble img{
  width: 85%;
  z-index: 1;
}
.infordesc{
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.infordesc span{
  z-index: 2;
  transform: translateY(65%);
  color: #0f3d7d;
  font-size: calc(var(--grwidth) * 0.045);
  font-weight: bold;
  letter-spacing: 0;
  width: 70%;
}
.popbuble .overlay_close_btn {
    right: 13%;
    background: #fff;
    border-radius: 10px;
}
.coorkidimg{
  cursor:pointer;
}

.bannerpromo img{
  width: 100%;
}
.bannerpromo p{
  padding-top: 0;
  animation: floatitem 1s infinite ease-in-out;
  padding-bottom: 1vh;
}

@keyframes floatitem {
  0%,100%  {
    padding-top: 0;
    padding-bottom: 1vh;
  }
  50% {
    padding-top: 1vh;
    padding-bottom: 0;
  }
}

.hidden {display: none;}  


/* 旋轉關閉紐 */
.overlay_close_btn {
    position: absolute;
    z-index: 30;
    width: calc(var(--grwidth) * 0.06);
    height: calc(var(--grwidth) * 0.06);
    border-radius: 50%;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-sizing: border-box;
}
.overlay_close_btn:before, .overlay_close_btn:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    height: 2px;
    background: #000;
}
.overlay_close_btn:after {
    transform: translate(-50%, -50%) rotateZ(-45deg);
}
.overlay_close_btn:before {
    transform: translate(-50%, -50%) rotateZ(45deg);
}
.overlay_close_btn:hover {
    transform: rotateZ(180deg) scale(1.2);
}
.overlay_close_btn {
    right: 15px;
    top: 15px;
}
/* 旋轉關閉紐 */
.formBox{
  background: linear-gradient(to right,rgba(0,89,136,0.6),rgba(0,89,136,0.6));
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 20px 0;
  z-index: 99;
  position:absolute;
}
.form{
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  width: var(--grwidth);
  max-width: calc(var(--grwidth) - 20px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 1vh;
}
.formiframe{
  width: calc(var(--grwidth) - 50px);
  overflow: hidden;
  height: calc(var(--grwidth) * 1);
  margin-top: calc(var(--grwidth) * 1 / 5);
}
.formiframe iframe{
  width: calc(var(--grwidth) + 50px);
  max-width: calc(var(--grwidth) + 50px);
  height: 2500px;
  transform: translate(-45px, -380px);
  overflow: hidden;
}
.formnote.Msgtext {
  transform:unset;
  margin-top: 50px;
  opacity: 1;
  cursor: pointer;
}
.formnote.Msgtext img {
  /* transform:unset; */
  z-index: 0;
}
.formnote.Msgtext span {
  padding-top: 4vh;
  z-index: 1;
}
.formBox .overlay_close_btn{
  display: none;
}

/* Loading轉圈圈 */
.loadingPage{
  display: flex;
  justify-content: center;
}
.spinner
{
	position: fixed;
	z-index: 4;
	width: 100%;
	min-height:100%;
  background-color: rgba(19, 119, 186,0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.fout .spinner{
  opacity: 0;
  transition: all 0.5s linear;
}
.spMsg{
	text-align: center;
	font-size:20px;
	font-weight:bold;
	line-height:40px;
	color:#eee;
}
/* LOADING CYCLE START */
.lds-roller {
  /* change color here */
  color: #eee;
  animation: lds-roller 5s infinite linear ;
}
.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 160px;
  height: 160px;
}
.lds-roller div {
  animation: lds-roller 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 80px 80px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  margin: -5px 0 0 -5px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
  opacity: 0.3;
}
.lds-roller div:nth-child(1):after {
  top: 125.25484px;
  left: 125.25484px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
  opacity: 0.4;
}
.lds-roller div:nth-child(2):after {
  top: 135.42562px;
  left: 112px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
  opacity: 0.5;
}
.lds-roller div:nth-child(3):after {
  top: 141.81926px;
  left: 96.56442px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
  opacity: 0.6;
}
.lds-roller div:nth-child(4):after {
  top: 144px;
  left: 80px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
  opacity: 0.7;
}
.lds-roller div:nth-child(5):after {
  top: 141.81926px;
  left: 63.43558px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
  opacity: 0.8;
}
.lds-roller div:nth-child(6):after {
  top: 135.42562px;
  left: 48px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
  opacity: 0.9;
}
.lds-roller div:nth-child(7):after {
  top: 125.25484px;
  left: 34.74516px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
  opacity: 1;
}
.lds-roller div:nth-child(8):after {
  top: 112px;
  left: 24.57438px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* LOADING CYCLE END */

hr{
  height: 0 !important;
  margin: 0.8vh;
}


@media (max-height: 650px) {
  .formiframe {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .formiframe iframe{
    height: 1100px;
  }
}


@media (max-width: 500px) {
  /* .bgicon03,.brick_d{
    display: none;
  } */
  .gogame .cooricon {
      transform: translate(calc(var(--grwidth) * -0.3), calc(var(--grwidth) * 0.41));
  }
  #result, #peopledesc {
    /* transform: scale(0.9); */
  }
  .goresult .cooricon {
      transform: translate(-14vh, 13vh) rotate(-20deg);
  }
  .intro .startbtn {
    transform: scale(0.8) translate(0, calc(var(--grwidth) * 1));
  }

  .options button:hover {
    background: url(../img/Qbgd.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 1.3vh;
  }
  .options button:hover span{
    color: #000;
  }
  .options button:hover::before {
    background: url(../img/Qbgl.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: unset;
    margin-right: 5px;
  }

}
