/*
** CADENAS POST TYPE STYLE
*/
.slide{
    background-color: #333;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem;
}
.slide__title{
    color: #FFF;
    margin-bottom: 3rem;
}
.slide__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem 0;
}
.slide__content--hide{
    display: none !important;
}
.slide__content__picture{
    width: 100%;
    height: auto;
    max-width: 1200px;
    object-fit: cover;
}
.slide__content__footer{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.slide__content__footer--lock{
    margin-top: 2rem;
}
.slide__content__button{
    background-color: #F00;
    color: #FFF;
    height: 4rem;
    line-height: 4rem;
    border-radius: 50px;
    padding: 0 1rem;
    margin-bottom: 2rem;
}
.slide__content__button:hover {
    color: #fdfdfd;
    text-decoration: underline;
}
/*
** LOCKEE PLUGIN STYLE
*/
#wrapper-code{
    background-color: #555;
    padding: 1rem;
    border-radius: 20px;
    color: #FFF;
}
#wrapper-code *{
    border-color: #555;
}
#switchs * {
    border-color: #333;
}
.title{
    color: #FFF;
}
.lockee #close-light{
    display: none !important;
}
.lockee #close-dark{
    display: inline !important;
}
/*
** Custom gamebox style
*/
.game{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    height: 100vh;
    
}
.game__title{
    margin-bottom: 50px;
}
.gamebox{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: 100%;
}
.gamebox__title{
    width: 100%;
    flex: 1 1 100%;
}
.game__button{
    border: none;
    background-color: transparent !important;
    padding: 0 1rem;
    color: black !important; 
}
.game__input--hidden{
    clip: rect(0 0 0 0);
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;

}
/* =============================== */
/**
* Archive page
*/
.archive__title{
    text-align: center;
    margin-bottom: 2rem;
}
.archive__title--h2{
    font-size: 1.2rem;
    flex: 1 1 100%;
}
.archive__section{
    padding: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.archive__section--column{
    flex-direction: column;
    align-items: center;
}
/**
*   game-category-tile
*/
.game-category{
    border: solid 0.2px black;
    border-radius: 15px;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 350px;
}
.game-category:hover{
    box-shadow: 10px 10px rgba(0,0, 0, 0.2);
}
.game-category__link::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/**
*   gamebox tile
*/
.gamebox-tile{
    border: solid 0.2px black;
    border-radius: 15px;
    padding: 3rem 3rem 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 800px;
    margin-bottom: 1rem;
}
.gamebox-tile:hover{
    box-shadow: 10px 10px rgba(0,0, 0, 0.2);
}
.gamebox-tile__link::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.gamebox-tile__tags{
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: right;
}
.gamebox-tile__tag{
    display: block;
    margin: 0 0.5rem;
    padding: 0.25rem 1rem;
    border: solid 0.1rem black;
    border-radius: 25px;
}
.gamebox-tile__tag--language{
    border-color: red;
}
.gamebox-tile__tag--duration{
    border-color: blue;
}
.gamebox-tile__tag--players{
    border-color: green;
}

/**
* Game box button copy iframe
**/
.iframe__content__button {
    background-color: #1f4877;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 3px !important;
    font-family: "Delicious Bold", Helvetica, Arial, sans-serif;
    text-align: center;
    vertical-align: middle;
/*     padding: 10px 20px; */
    margin: 5px;
}

/**
*   Filters
*/
.archive__filters{
    display: flex;
    gap: 3rem;
}
.filters{
    display: flex;
    flex-direction: column;
}