/*Página dedicada à estilização da loja geshop*/

/*Estilizo da Galeria de Itens da Loja*/
.sgal1 {
  background: url('../images/geshop/choose.jpg');
  background-size: cover;
}
.sgal2 {
  background: url('../images/geshop/gimmebr.jpg');
  background-size: cover;
}
.sgal3 {
  background: url('../images/geshop/gohan.jpg');
  background-size: cover;
}
.sgal4 {
  background: url('../images/geshop/luffyaf.jpg');
  background-size: cover;
}
.sgal5 {
  background: url('../images/geshop/r2d2.jpg');
  background-size: cover;
}
.sgal6 {
  background: url('../images/geshop/ssj3.jpg');
  background-size: cover;
}
#gal div:hover #subSgal{ /*Controla o aparecimento das SubDivs dos itens da galeria*/
  display: block;
  background: rgba(0, 0, 0, 0.3);
}
#gal #subSgal{ /* Estilo da subdive oculta dos itens da galeria*/
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  display: none;
}
#subSgal h4{ /* Sub div de cada item da galeria das comprar */
  color: #eee;
  font-size: 32px;
  font-family: monospace;
  text-align: center;
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
}
#btSGal{ /*Estilo do botão da galeria da loja */
  margin: auto;
  color: rgba(160, 0, 255, 0.7);
  font-weight: 600;
  font-size: 20px;
  margin-top: 10%;
  margin-left: 5%;
  outline: none;
  height: 20%;
  width: 90%;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
}
.price{ /*Estilização do preço*/
  font-size: 20px;
  color: white;
}
.price b{
  color: #0ff;
}
.btCar{/*Estiliza o botão de adicionar ao carrinho*/
  width: 60%;
  margin: 0 20% 10px 20%;
}
#cover { /* Escurecimento da página ao comprar na loja*/
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  overflow: scroll;
}
#buycar{ /*Popup que abre ao clickar no botão de compra de carrinho */
  position: absolute;
  top: 2.5%;
  left: 10%;
  width: 80%;
  background: #fff;
  min-width: 300px;
  /*margin: 30% 10%;*/
  border-radius: 15px;
  padding: 20px;
  overflow: scroll;
}
