/*
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: arial;
} */
/*
header{
    width: 100%;
    height: 60px;
    background: #e05656;
    padding: 10px;
}
*/
#input-search{
    width: 350px;
    height: 20px;
    font-size: 15px;
    text-indent: 10px;
}

.content-search{
    width: 100%;
    height: 100;
    position: 0;
    top: 50%;
    left: 50%; /*
    background: rgba(0,0,0,0.3); */
    display: none;
}

.content-table{
    position: absolute;
	width: 50%; /*largo tabla */
    max-height: 800px;
    height: auto; /*altura tabla automatico deslizante */
    background: rgba(250,250,250,1);
	z-index:inherit;
    margin-left: 50%;
	margin-top: 20%;
	-webkit-transform: translateX(-50%);
          transform: translateX(-50%);
    overflow-y: visible; 
    overflow-x: hidden; 
}

.content-table table{
    width: 100%;
}

tbody tr td a{ 
    display: block;
    padding: 7px;
    color: blak; /*color texto tabla deslizante */
    text-decoration: none;
}

tbody tr td a:hover{
    background: rgba(250,248,102,0.9);
}

#table_length, #table_filter, #table_info, #table_paginate{ 
    display: none;
}
/*TARJETA 3D */ 
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap'); 

*{
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
} 
/*
body{
    background: #F1FAFF;
} 
*/ 
.container__card{
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card__father{
    margin: 20px;
    perspective: 1000px;
}  

.card__father:hover .card{
    transform: rotateY(180deg);
}


.card{
    width: 295px;
    height: 295px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 600ms;
}

.card__front{
    background-size: cover;
    background-position: center;
}


.card__front,
.card__back{
    width: 100%;
    height: 100%; 
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 3px;
}

.card__back{
    transform: rotateY(180deg);
    background: #cbf2ae;
}

.body__card_front{
    width: 100%;
    height: 100%;
    text-align: center; 
    padding: 20px; 
    display: flex; 
    justify-content: center;
    align-items: center;
    color: #fff;
    transform: translateZ(60px);
}

.bg{
    width: 100%;
    height: 100%; 
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.0);
    border-radius: 3px;
}

.body__card_back{ 
    padding: 20px;
    text-align: center;
    transform: translateZ(60px);
}

.body__card_back p{
    margin-top: 10px;
    font-size: 16px;
}

.body__card_back input{
    padding: 10px 40px;
    margin-top: 10px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    color: yellow;
    background: #008000;
    box-shadow: 1px 1px 30px -5px #FAF866;
    border-radius: 10px;
    transition: box-shadow 600ms;
}

.body__card_back input:hover{
    box-shadow: 1px 1px 30px 0px #FAF866;
}














