@font-face {
    font-family: 'Tangerine-Regular';
    src: url('../fonts/Tangerine-Regular.ttf');
 }
 @font-face {
    font-family: 'IMFePIsc28P';
    src: url('../fonts/IMFePIsc28P.ttf');
 }
 @font-face {
    font-family: 'GenBas';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/GenBasR.ttf');
}
@font-face {
    font-family: 'GenBas';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/GenBasI.ttf');
}
@font-face {
    font-family: 'GenBas';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/GenBasB.ttf');
}
@font-face {
    font-family: 'GenBas';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/GenBasBI.ttf');
}

*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-family: 'GenBas';
    cursor: url("../img/cursor.png"),pointer;
    outline: none;
}

/** Root **/

html{
    height: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
}

@media(max-width:767px){

    html{
        font-size:14px;
    }

}

@media(min-width:768px){

    html{
        font-size:16px;
    }

}

@media(min-width:992px){

    html{
        font-size:20px;
    }

}

@media(min-width:1140px){

    html{
        font-size:24px;
    }

}

@media(min-width:1240px){

    html{
        font-size:28px;
    }

}

@media(min-width:1440px){

    html{
        font-size:32px;
    }

}

body{
    height: 100%;
    width: 100%;
    position:relative;
    background-color: #000;
}

/**** Container ****/

.container-wrap{
    
    width: 100vw; 
    height: 56.25vw; /* 100/56.25 = 1.778 */ 
    max-height: 100vh; 
    max-width: 177.78vh; /* 16/9 = 1.778 */ 
    margin: auto; 
    position: absolute; 
    top:0;
    bottom:0; /* vertical center */ 
    left:0;
    right:0; /* horizontal center */
    background:no-repeat center; 
    background-size: cover;
    overflow: hidden;
}
#imagen-cofre{
    cursor: url("../img/cursor_hover.png"),pointer;
}
.container-wrap > .container {
    width: 100%;
    height: 100%;
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/**** Forms ****/
form{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.falso-form{
   display: flex;
    flex-direction: column;
    align-items: center; 
  

}

/**** Errors ****/
.errors{
    font-family: 'IMFePIsc28P';
    font-size: 16px;
    color: #ef4848;
}

/**** Buttons ****/
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: url("../img/cursor_hover.png"),pointer;
    border:none;
    background-color: transparent;
    background: transparent url(../img/buttons/btn_sm.png) center center no-repeat;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position:center;
    color:#e3b154;
    font-size: 16px;
    padding: 8px 48px 6px;
    font-family: 'IMFePIsc28P';
    line-height: 100%;
    text-decoration:none;
    text-transform: uppercase;
}
.btn-static{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: url("../img/cursor_hover.png"),pointer;
    border:none;
    background-color: transparent;
    background: transparent url(../img/buttons/btn_sm.png) center center no-repeat;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position:center;
    color:#e3b154;
    font-size: 16px;
    padding: 8px 48px 6px;
    font-family: 'IMFePIsc28P';
    line-height: 100%;
    text-decoration:none;
    text-transform: uppercase;
}
.btn:hover{
    background-image: url(../img/buttons/btn_sm_hover.png);
    color: #131d22;
}

.btn_sm{
    padding: 4px 48px 3px;
    background-image: url(../img/buttons/btn_sm.png);
    font-size: 12px;
    height: auto;
    width: auto;
}

.btn_close{
    position: absolute;
    top:14%;
    right:14%;
    padding: 8px;
    font-family: 'IMFePIsc28P';
    font-size: 1rem;
    color: #5a4c23;
    cursor: url("../img/cursor_hover.png"),pointer;
}

.btn_close:hover{
    color: #ef4848;
}

.btn-transparent{
    background: none;
}

/**** Labels ****/
label{
    font-family: 'Tangerine-Regular';
    color:#e3b154;
    font-size:32px;
    margin-right: 16px;
}

/**** Selects ****/
.select{
    position:relative;
    /**flex: 0 0 96px; **/
    display: flex;
    align-items:center;
    height: 32.5px;
    padding: 8px 12px;
    box-shadow: 0 1px 3px #444, 1px 0 2px #444, 1px 0 3px #444, inset 1px 0 2px #ccc;
    border-radius: 2px;
    background: #ede2b8;
    cursor: url("../img/cursor_hover.png"),pointer;
    color: #140b11;
    font-size: 14px;
}

.select .selected{
    width: 100%;
    background: #ede2b8 url(../img/elements/down.svg) no-repeat right center;
    background-size: 5%;
    cursor: url("../img/cursor_hover.png"),pointer;
}
.select .options{
    display: none;
    position: absolute;
    top:32.5px;
    left:0;
    min-width: 100%;
    background-color: #ede2b8;
    border-radius: 2px;
    box-shadow: 0 1px 3px #444, 1px 0 2px #444, 1px 0 3px #444, inset 1px 0 2px #ccc;
    cursor: url("../img/cursor_hover.png"),pointer;
}
.select .option{

    width: 100%;
    padding: 4px 8px;
    cursor: url("../img/cursor_hover.png"),pointer;
}
.select .option.active{
    display: none;
}
.select .option:hover{
    background-color: #E3B154;
}

/**** Inputs ****/
.input-group{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:16px;
    width: 100%;
}
input,
input[type="checkbox"]{
    font-family: 'GenBas';
    background-color: #ede2b8;
    border:none;
    padding: 8px 12px;
    cursor: url("../img/cursor_hover.png"),pointer;
    box-shadow: 0 1px 3px #444, 1px 0 2px #444, 1px 0 3px #444, inset 1px 0 2px #ccc;
    border-radius: 2px;
    color: #140b11;
    font-size: 14px;
}
input:focus,
input[type="checkbox"]:focus{
    background-color: #fff;
}

/*** Typography ***/
h2{
    font-size:1.5rem;
    color: #dfb25f;
    font-family: 'IMFePIsc28P';
    font-weight: normal;
    text-transform: uppercase;
}

h3{
    font-family: 'Tangerine-Regular';
    font-size: 1.25rem;
    color: #afbabe;
}

p{
    font-size: 0.625rem;
    letter-spacing: 0.03rem;
    font-family: 'GenBas';
}

ol li{
    font-size: 0.625rem;
}

/* Scroll Bar */
.scrollable{
    overflow-y:auto;
    width: 100%;
    padding-right: 16px;
}
.scrollable::-webkit-scrollbar {
    -webkit-appearance: none;
}
.scrollable::-webkit-scrollbar:vertical {
    width: 10px;
}
.scrollable::-webkit-scrollbar:horizontal {
    height: 10px;
}
.scrollable::-webkit-scrollbar-button:increment,
.scrollable::-webkit-scrollbar-button {
    display: none;
} 
.scrollable::-webkit-scrollbar-thumb {
    background:#624d29;
    box-shadow: 0 0px 4px #30230b;
    border:1px solid #30230b;
    border-radius:4px;
}
.scrollable::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(118,80,16,0.3);
    width: 3px;
    padding:3px;
}
.personaje_avatar{
    cursor: url("../img/cursor_hover.png"),pointer;

}
.personaje{
    cursor: url("../img/cursor_hover.png"),pointer;

}
.score{
    cursor: url("../img/cursor_hover.png"),pointer;

}
/* Scroll Bar End */






