 /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  border: 1px solid #f1f1f1;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */

}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;

}

/* Do an horizontal flip when you move the mouse over the flip box container */
/* .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  
} */

.turn_it
{
	transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
  
}

/* Style the back side */
.flip-card-back {
  background-color: white;
  color: white;
  transform: rotateY(180deg);
  border: 1px solid gray;
} 

.flip-card-back h1
{
	background-color: dodgerblue;
}



/* Transition to showing the bigger shadow on hover */
.make-it-fast:hover {
  box-shadow: 5px 5px 10px rgba(0,0,0,0.15);
  transition: box-shadow 0.5s ease-in-out;
}

.make-it-fast:active {
  box-shadow: 2px 2px 2px rgba(0,0,0,0.15);
  transition: box-shadow 0.1s ease-in-out;
}

.cache
{
  position:absolute;
  background-color:black;
  opacity: 0.1;
  width:100%;
  height:100%;
  top:0px;
}

.img-over-cache{
  display: block;
    max-width: 100%;
    height: auto;
}

.blur
{
  filter:blur(4px);
}

.arrondir
{
  border-radius: 15px;
}

/* MODAL */
.modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}



.modal-body {
position:relative;
padding:0px;
}
.close {
position:absolute;
right:-30px;
top:0;
z-index:999;
font-size:2rem;
font-weight: normal;
color:#fff;
opacity:1;
}

