/* GLOBALS */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font: inherit;
}
html,body{
    min-height: 100%;
    position: relative;
    background: #e6e6e6;
    font-size: 16px;
    color: #333;
    font-family: 'Raleway', sans-serif;
}
img{
    max-width:100%;
}
img[disabled]{
    opacity: .5;
}
[v-cloak] {
    display: none!important;
}
a{
    text-decoration: none;
}
ul{
    margin-left: 1.2rem;
}
li{
    margin-bottom: 0.2rem;
}
strong{
    font-weight: bold;
}
small{
    font-size: 70%;
}
hr{
    margin: 2rem; 
    border-color: #e6e6e6;
}

#app{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}

label{
    display: block;
    position: relative;
    padding: 1.2rem 0 0.4rem;
}
.form_label{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.2rem 0;
    font-size: 0.8rem;
}
input{
    display: block;
    width: 100%;
}

table{
    width:100%;
    border-collapse: collapse;
    border: 1px solid #e6e6e6;
}
td,th{
    border: 1px solid #e6e6e6;
    text-align: center;
    padding: 0.4rem 0;
}
th{
    font-weight: 700;
}

/* HELPERS */
.wrap{
    max-width: 960px;
    margin: 0 auto;
    width: 90%;
    position: relative;
}
.fila{
    display:flex;
}
.col{
    flex:1;
    padding: 0 0.3rem;
}
.col:first-child{
    padding-left: 0;
}
.col:last-child{
    padding-right: 0;
}
@media (max-width:720px){
    .fila{ flex-direction: column;}
    .col:first-child{
        padding: 0 0.3rem;
    }
    .col:last-child{
        padding: 0 0.3rem;
    }
}
.info{
    background: #e6e6e6;
    color:#900;
    padding: 0.6rem;
    margin-top: 0.6rem;
}

#main{
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    margin: 0 auto;
    height: 80%;
    width: 80%;
    max-width: 720px;
    min-width: 320px;
    position: relative;
    top: 10%;
    padding: 2rem;
    overflow: auto;
}

/* preloader */
#preloader{
    position: fixed;
    z-index: 500;
    top:0;
    bottom:0;
    right:0;
    left:0;
    width: 100%;
    height: 100%;
    background: #151c36;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
    #preloader_spinner{
        width: 50%;
    }
    