/*

Theme Style:  TAROTISTAS CSS

Version:     1.0.0

Descripción: Archivo CSS para utilizar estilo en los tarotistas desarrollados por Alvaro.

Author:      Alvaro Lagarde

Author URI:  https://alvarolagarde.com

*/

/***************************************************************************/
/*-------------------------------------------------------------------------*/

/* D E F I N I C I O N    D E    V A R I A B L E S    G L O B A L E S. 

/*-------------------------------------------------------------------------*/

/* Colores principales */

:root {
    --color-tarotista-libre: #00cf27;
    --color-tarotista-ocupado: #ff4549;
    --color-tarotista-noDisponible: #7a7a7a;
  }


/***************************************************************************/


/*-------------------------------------------------------------------------*/

/* (TAROTISTAS GRILLA)  

/*-------------------------------------------------------------------------*/

.tarotistas-grilla{
    display: grid;
    grid-template-columns: repeat(6,1fr);
	grid-column-gap: 30px;
    grid-row-gap: 35px;
}

.tarotista-article{
	    border-radius: 25px 25px 25px 25px;
	    overflow: hidden;
	    margin-top: 0px;
	    margin-bottom: 0px;
	    padding: 0px 0px 0px 0px;
	    height: 200px;
	    width: 100%;
	    display: flex;
	    flex-direction: column-reverse;

}

.tarotista-article:hover{
	border: 3px solid #FFF;
	transform: scale(1.05);
}	
.tarotista-caja{
	background-color: var(--color-tarotista-noDisponible);
	display: flex;
	flex-direction: row;
	justify-content: space-between;

}

.tarotista-caja sup{
	position: relative;
	top: 12px;
	right: 6px;
	color: #fff;
}
.tarotista-titulo{
    position: relative;
    top: 10px;
    left: 15px;
}

.tarotista-titulo{
	color: #FFFFFF;
	font-family: "Fashion", Sans-serif;
	font-size: 17px;
	font-weight: 300;
	line-height: 2em;
	letter-spacing: 1px;
}
/* ---------------------- RESPONSIVE 1024 PX -------------------------- */


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	
	.tarotistas-grilla {
	    grid-template-columns: repeat(2,1fr);
	    display: grid;
	}
	
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	
	.tarotistas-grilla {
	    grid-template-columns: repeat(3,1fr);
	    display: grid;
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	
	.tarotistas-grilla {
	    grid-template-columns: repeat(4,1fr);
	    display: grid;
	}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	
	.tarotistas-grilla {
	    grid-template-columns: repeat(5,1fr);
	    display: grid;
	}
	
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	
	.tarotistas-grilla {
	    grid-template-columns: repeat(6,1fr);
	    display: grid;
	}
}




/* (FIN) TAROTISTAS GRILLA  ------------------------*/