
/*
Spezialeffekte

*/

/* 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: 322px;
    height: 200px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    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);
}

/* 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;
    border-radius: 10px;
    color: black;
}

/* Style the back side */
.flip-card-back {
    background-color: dodgerblue;
    border-radius: 10px;
    color: white;
    transform: rotateY(180deg);
}

/* 
    --- The flip card container -----------------------------------------------
    Set: Shop
*/
.flip-card.Shop {
    background-color: navajowhite;
    width: 300px;
    height: 370px;
    border: 1px solid none;
    border-radius: 10px;
    font-size: 1em;
    color: black;
    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.Shop {
    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.Shop:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front.Shop, .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.Shop {
    background: navajowhite;
    vertical-align: middle;
    font-weight: normal;
    color: black;
}

/* Style the back side */
.flip-card-back.Shop {
    width: 100%;
    background-color: navajowhite;
    vertical-align: middle;
    color: black;
    transform: rotateY(180deg);
}

/* 
    --- The flip card container -----------------------------------------------
    Set: Nataly
*/
.flip-card.Nataly {
    background-color: transparent;
    width: 322px;
    height: 200px;
    border: 1px solid red;
    border-radius: 10px;
    font-size: 0.7em;
    color: white;
    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.Nataly {
    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.Nataly:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front.Nataly, .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.Nataly {
    background: red;
    vertical-align: middle;
    font-weight: normal;
    color: black;
}

/* Style the back side */
.flip-card-back.Nataly {
    width: 100%;
    background-color: lightyellow;
    border-radius: 10px;
    vertical-align: middle;
    color: black;
    transform: rotateY(180deg);
}

/* 
    --- The flip card container -----------------------------------------------
    Set: Klaus
*/
.flip-card.Klaus {
    background-color: transparent;
    width: 322px;
    height: 200px;
    border: 1px solid skyblue;
    border-radius: 10px;
    font-size: 0.7em;
    color: white;
    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.Klaus {
    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.Klaus:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front.Klaus, .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.Klaus {
    background: skyblue;
    vertical-align: middle;
    font-weight: normal;
    color: black;
}

/* Style the back side */
.flip-card-back.Klaus {
    background-color: lightyellow;
    border-radius: 10px;
    vertical-align: middle;
    color: black;
    transform: rotateY(180deg);
}

/* 
    --- The flip card container -----------------------------------------------
    Set: Tabea
*/
.flip-card.Tabea {
    background-color: transparent;
    width: 322px;
    height: 200px;
    border: 1px solid pink;
    border-radius: 10px;
    font-size: 0.7em;
    color: white;
    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.Tabea {
    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.Tabea:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front.Tabea, .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.Tabea {
    background: pink;
    vertical-align: middle;
    font-weight: normal;
    color: black;
}

/* Style the back side */
.flip-card-back.Tabea {
    background-color: lightyellow;
    border-radius: 10px;
    vertical-align: middle;
    color: black;
    transform: rotateY(180deg);
}

/* 
    --- The flip card container -----------------------------------------------
    Set: Fussel
*/
.flip-card.Fussel {
    background-color: transparent;
    width: 322px;
    height: 200px;
    border: 1px solid darkred;
    border-radius: 10px;
    font-size: 0.7em;
    color: white;
    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.Fussel {
    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.Fussel:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front.Fussel, .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.Fussel {
    background: darkred;
    vertical-align: middle;
    font-weight: normal;
    color: black;
}

/* Style the back side */
.flip-card-back.Fussel {
    background-color: lightyellow;
    border-radius: 10px;
    vertical-align: middle;
    color: black;
    transform: rotateY(180deg);
}


/* 
    --- The flip card container -----------------------------------------------
    Set: Perser
*/
.flip-card.Perser {
    background-color: transparent;
    width: 322px;
    height: 200px;
    border: 1px solid sandybrown;
    border-radius: 10px;
    color: white;
    font-size: 0.7em;
    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.Perser {
    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.Perser:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front.Perser, .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.Perser {
    background: sandybrown;
    vertical-align: middle;
    font-weight: normal;
    color: black;
}

/* Style the back side */
.flip-card-back.Perser {
    background-color: lightyellow;
    border-radius: 10px;
    vertical-align: middle;
    color: black;
    transform: rotateY(180deg);
}



/* 
    --- The flip card container -----------------------------------------------
    Set: Pacco
*/
.flip-card.Pacco {
    background-color: transparent;
    width: 322px;
    height: 200px;
    border: 1px solid blue;
    border-radius: 10px;
    color: white;
    font-size: 0.7em;
    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.Pacco {
    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.Pacco:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front.Pacco, .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.Pacco {
    background: blue;
    vertical-align: middle;
    font-weight: normal;
    color: black;
}

/* Style the back side */
.flip-card-back.Pacco {
    background-color: lightyellow;
    border-radius: 10px;
    vertical-align: middle;
    color: black;
    transform: rotateY(180deg);
}



/* 
    --- The flip card container -----------------------------------------------
    Set: Zahnärzte Neuhaus
*/
.flip-card.md {
    background-color: transparent;
    width: 322px;
    height: 200px;
    border: 1px solid #fff;
    border-radius: 10px;
    color: white;
    font-size: 0.7em;
    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.md {
    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.md:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front.md, .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.md {
    background: #eee;
    vertical-align: middle;
    font-weight: normal;
    color: black;
}

/* Style the back side */
.flip-card-back.md {
    background-color: #ddd;
    border-radius: 10px;
    vertical-align: middle;
    color: black;
    transform: rotateY(180deg);
}

