html,body{
    margin: 0;
    padding: 0;
    border: 0;
}

*{
    font-family: Helvetica;
}

/* css generales */
.box-neomorfo{
    border-radius: 50px;
    background: #7807a2;
    box-shadow:  20px 20px 60px #66068a,
                -20px -20px 60px #8a08ba;
}

.input-neomorfo{
    border: 0;
    color: #fff;
    outline: none;
    padding: 10px;
    border-radius: 19px;
background: #7807a2;
box-shadow: inset 34px 34px 79px #700797,
            inset -34px -34px 79px #8007ad;
}

.flex-row{
    display: flex;
    flex-direction: row;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.flex-center{
    align-items: center;
    justify-content: center;
}

a{
    color: #fff;
    text-decoration: none;
}

/* css para login */
#contenedor_general{
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#contenedor_campos{
    width: 700px;
    height: 500px;
    align-items: center;
    justify-content: center;
}

.album-carta-general{
    width: 200px;
    background-color: rgb(194, 194, 194);
    transition: all 0.5s ease-in-out;
}

.album-carta{
    width: 100px;
    background-color: rgb(194, 194, 194);
    transition: all 0.5s ease-in-out;
}

.album-carta-cantidad{
    position:absolute;
    top:0;
    background : red;
    padding:10px;
    font-size: 20px;
    color:#fff;
    width: 40px;
    height: 40px;
}


.album-carta-parent{
    width: 200px;
    height: 300px;
    background-color: rgb(194, 194, 194);
    transition: all 0.5s ease-in-out;
    display: inline-block;
    position: relative;
}

#container-carta-seleccionada {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 999;
}
/* .album-carta-parent::after{
    content: attr(title);
    position: absolute;
    left: 0;
} */

/* .album-carta:hover{
    width: 400px;
    height: 600px;
} */

/* CSS para el panel principal */
#chard_navbar{
    width: 100%;
    height: 50px;
    position: fixed;
    /* box-shadow: 0 0 1px 1px rgba(0,0,0,0.3); */
    background: #7807A2;
    top:0;
    left: 0;
}

#chard_navbar ul{
    list-style: none;
    display: flex;
    flex-direction: row;
    color: #fff;
}

#chard_navbar ul li{
    flex: 1;
}

.flipY{
    animation-name: aflipY;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}

@keyframes aflipY {
    from {transform: rotateY(0deg); }
    to {transform: rotateY(360deg); }
}

