body{
	background-color: rgba(248,209,129,1);
}
.corps{
	width: 85%;
	margin: auto;
	text-align: center;
}

#pordre {
	text-align: left;
}
#pordre button {
	margin-left: 10px;
}

.container {
	text-align: center;
}
.col-md-4, .col-sm-6 {
	display: inline-block;
	width: 30%;
	/* max-width: 430px; */
	text-align: center;
}
.box{
    border: 5px solid #fff;
    box-shadow: 0 0 7px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
	width: 20vw;
	height: 20vw;
	max-width: 400px;
	max-height: 400px;
	margin: 10px;
	display: inline-block;
	transition: background-color 0.3s ease;
}
.mini {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
}
.box img{
    transition: all 0.5s ease 0s;
}
.box-content img {
	width: 100%;
	margin: auto;
}
/*.box:hover img{
	animation: flash 1s;
}*/
.box .box-content{
    color: #999;
    background: rgba(255,255,255,0.9);
    text-align: center;
    width: 80%;
    padding: 10px 15px 15px;
    border: 5px solid #fff;
    box-shadow: -4px -4px #ee5253 inset;
    opacity: 0;
    transform: translateY(-50%) translateX(-50%) scale(2);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transition: all 0.3s ease-out 0s;
}
.box:hover .box-content{
    opacity: 1;
    transform: translateY(-50%) translateX(-50%) scale(1);
}
.box .title{
    color: #ee5253;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 3px;
}
.box .post{
    color: #555;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 10px;
    display: block;
}
.box .icon{
    padding: 0 8px;
    margin: 0;
    list-style: none;
}
.box .icon li{
    display: inline-block;
    margin: 0 2px;
}
.box .icon li a{
    color: #fff;
    background-color: rgba(243,165,5,1);
    font-size: 13px;
    text-align: center;
    line-height: 30px;
    height: 30px;
    width: 30px;
    display: block;
    transition: all 0.3s ease 0s;
}
.box .icon li a:hover{
    color: #fff;
    background-color: #ee5253;
    border-radius: 50%;
}

.classee:before, .resolue:before {
	display: block;
	font-size: 48px;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.classee:before {
	content: "🥇";
}
.resolue:before {
	content: "✔";
	color: green;
}
.classee.resolue:before {
	content: "🥇✔";
	color: green;
}

#oeuf-ouvert {
	width: 600px;
	height: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(0,0);
	transition: transform 0.5s ease-in-out;
	border-radius: 10px;
	background-color: white;
	z-index: 5;
	text-align: center;
	box-shadow: 1px 1px 5px #888;
}

/*@keyframes flash{
    0%{ opacity: 0.1; }
    100%{ opacity: 1; }
}*/

@media all and (max-width:1150px){
    .box{
		margin: 0 0 30px;
		width: 15vw;
		height: 15vw;
	}
	.box .title {
		font-size: 14px;
	}
	.box .post {
		font-size: 10px;
	}
}

@media all and (max-width:900px) {
	.box .title {
		font-size: 10px;
	}
	.box .post {
		font-size: 6px;
	}
	.box .icon li a {
		height: 15px;
		width: 15px;
		line-height: 15px;
		font-size: 8px;
	}
}