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

/* the stle for the wrapper element */
.quizy-memorygame{
  position:relative;
  width:100%;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}


.quizy-memorygame div, .quizy-memorygame span, .quizy-mg-item, .quizy-mg-item-top {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

/* styles of the card to show */
.quizy-memorygame .mgcard-show{
  width:100px;
  height:100px;
  background:url('../img/memory/mg-mcard.png');
  display: table-cell;
	vertical-align: middle;
}

.quizy-memorygame img {
	max-width: 100px;
	max-height: 100px;
	padding: 2px;	
}

.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/memory/quizy-mg-item-top.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/memory/quizy-mg-notif-neg.png');
}

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

/* styles for the game summary */



#quizy-game-summary #gs-closebut:hover, 
#quizy-game-summary #gs-replaybut:hover{
  /*background: #fff;*/
}

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

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

.memDone {
	
}
