@charset "utf-8";
/* CSS Document */


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

/* the stle for the wrapper element */
.quizy-memorygame {
    position: relative;
    width: 416px;
    margin-left: auto;
    margin-right: auto;
}

/* styles of the card to show */
.quizy-memorygame .mgcard-show {
    width: 132px;
    height: 132px;
    /*background: url('../img/memory/mg-mcard.png');*/
	background: white;
	border:1px solid #27aae1;
}

.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-topxs.jpg.png');
	background-size: cover;
	border:1px solid #27aae1;
}

/* 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 {
    width: 300px;
    height: 160px;
    position: absolute;
    z-index: 1001;
    background: #515b69;
    box-shadow: rgba(0, 0, 0, 0.7) 0 0 4px, inset 0 0 20px rgba(0, 0, 0, 0.4);
    ;
    border: 1px solid #000;
    display: none;
    text-align: center;
}

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

#quizy-game-summary #gs-column1 {
    font-size: 16px;
    padding-top;
    30px;
}

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

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


#quizy-game-summary #gs-closebut,
#quizy-game-summary #gs-replaybut {
    display: inline-block;
    margin-top: 10px;
    width: 70px;
    padding: 10px;
    text-align: center;
    background: #D7EEF0;
    cursor: pointer;
}

#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;
}
