/*
 CSS for Memogry game plugin
 Author: Yane Frenski
*/

/* the stle for the wrapper element */
.quizy-memorygame{
  position:relative;
  width:100%;  
 /* width:624px; */
  }

/* styles of the card to show  140 125 3*/
.quizy-memorygame .mgcard-show{
  width:115px;
  height:100px;
  background: white; 
 /* background:url('img/mg-mcard.png');  */
  border:1px solid gray;  /* #000 */ /* linea de margen */
}

.quizy-memorygame .quizy-mg-item{
  position:absolute;
  cursor:pointer;
  text-align:center;
}

.quizy-memorygame .quizy-mg-item .quizy-mg-item-bottom, .quizy-memorygame .quizy-mg-item .quizy-mg-item-top{
  position:absolute;
  top:0;
  left:0;
  text-align:center;
}

.quizy-mg-item .quizy-mg-item-top{
  background:url('img/quizy-mg-item-top99.png');
}

/* styles for the popup notifications */
.quizy-mg-notification-fly{
  width:90px;
  height:90px;
  position:absolute;
  z-index:1000;
  display:none;
  -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
  box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
}

.quizy-mg-notification-fly-neg{
  background:url('img/quizy-mg-notif-neg.png'); 
}

.quizy-mg-notification-fly-pos{
  background:url('img/quizy-mg-notif-pos.png'); 
}

/* styles for the game summary  #515b69; */
#quizy-game-summary {
  width:150px; /* 300 160 */
  height:180px;
  position:absolute;
  z-index:1001;
  background: transparent; /*#99CCFF; */ /* #F5F5DC */
  box-shadow: rgba(0,0,0,0.7) 0 0 4px, inset 0 0 20px rgba(0, 0, 0, 0.4); 
  border:2px solid white;  /* #000 */ /* linea de margen */
  display:none;
  text-align: center;
}

#quizy-game-summary div.gs-column{
  width:75px;
  float:left;
  padding:10px 0 10px 20px; 
  /*color:black;  */ /* *fff */
 /* text-shadow: 1px 1px 1px rgba(0,0,0, 0.5); */ /* segundos */
  text-align:center;
}

#quizy-game-summary #gs-column1{
  font-size:26px;
  color:red;  /* white  de excelente */
 /* text-shadow: 1px 1px 1px rgba(0,0,0, 0.5);  */  /* cuantos segundos */
  padding-top:30px;
}

#quizy-game-summary #gs-column2{
  font-size:26px; 
  color:red;     /* de segundos */
  padding-top: 25px; /* 65 */
 /* background:url('img/8.gif') no-repeat 70% 25%; */   /* img/mg-timeicon.png  #F5F5DC beige*/
 }

#quizy-game-summary #gs-column3{
  font-size:12px;
 /* padding-top: 65px; */
 /* background:url('img/mg-clickicon.png') no-repeat 70% 25%; */
}


#quizy-game-summary #gs-closebut,
#quizy-game-summary #gs-replaybut{
  display: inline-block;
  margin-top: 5px;
  width: 50px;
  padding: 3px;
  font-size:24px;
  text-align: center;
 /* background: #D7EEF0;   */     /* #D7EEF0 transparent  */ /*de otro/cerrar */
  cursor: pointer;
}

#quizy-game-summary #gs-closebut:hover, 
#quizy-game-summary #gs-replaybut:hover{
/*  background: blue;  */         /* #fff   de  backg otro/cerrar*/
}

#quizy-game-summary #gs-replaybut{
  margin-right: 20px;
}

.quizy-game-clear{
  clear: both;
}

