html {
    overflow: hidden;
    max-width: 400px;
}
body>.container {
    height:calc(100vh - 60px);
    padding-top:0;
    margin:0;
    scroll-behavior:smooth;
    overflow-y:scroll;
    padding-bottom:10px;
}
body>.container.full-height {
    height:100vh;
    padding-bottom:0;
}

.footer {
    z-index: 999;
    position: sticky;
    bottom: 0;
    width: 100%;
    line-height: 60px;
    background-color: gray;
    border-radius: 15px 15px 0 0;
    border-top:1px solid silver;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover,
.footer a:active,
.footer a.active {
    color: #f5f5f5;
}
.footer .nav-item .nav-link {
    display: flex;
    line-height: 25px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.fav-btn .fa-heart.fa-solid {
    color: red;
}
.dislike {
    cursor: pointer;
}

/* -- LOGIN -- */
.tag-box {
    width: 30%;
    height: 30%;
    margin-bottom: 5px;
}
.tag-box label {
    height: 100%;
    width: 100%;
    border-radius: 5px;

    text-align: center;
    display: inline-block;
    background-color: #f5f5f5;
    border: 1px solid silver;

    margin: 0.5%;
    padding: 0.5%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}
.tag-box input {
    display: none;
}
.tag-box input:checked+label {
    border: 1px solid #007bff;
    background-color: #007bff;
    color: #f5f5f5;
}

#experiencia-number {
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 40px;
}
#experiencia {
    width: 75%;
}
#anio {
    width: 50%;
    font-size: 35px;
    margin: auto;
    text-align: center;
}

/* -- HOME -- */
.btns-home {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.btns-home .btn-home {
    width: 30%;
    height: 30%;
    margin-bottom: 5px;
    cursor: pointer;
}
.btn-inactivo {
    opacity: 0.5;
}
.btn-active {
    opacity: 1;
}

.clic-card {
    cursor: pointer;
    border-radius:15px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    overflow:hidden;
}
.clic-card:hover {
    background-color: #f5f5f5;
    border-color: #007bff;
}

.moment-con-dios {
    background-color: #007bff;
    color: white;
}

/* -- LIST CARD -- */
.card-group-horizontal {
    margin-top: 5px;
    display: flex;
    overflow: auto;
    flex-wrap: nowrap;
    flex-direction: row;
}
    .card-group-horizontal .card {
        display:inline-block;
        margin-right:10px;
        max-width:120px !important;
        min-width:120px !important;
        overflow:hidden;
        display: flex;
        flex-direction: column;
    }
        .card-group-horizontal .card-body {
            margin:0;
            padding:10px;
            
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-group-horizontal .card-background {
            height:120px;
            width:120px;
            background:silver;
        }
            .card-group-horizontal .card-background .img {
                height:50%;
                width:50%;
                background-size:cover;
                background-position:center;
                float:left;
            }
            .card-group-horizontal .card-background .img:nth-child(1) { background-color: #eee; }
            .card-group-horizontal .card-background .img:nth-child(3) { background-color: #ddd; }
            .card-group-horizontal .card-background .img:nth-child(4) { background-color: #bbb; }
            .card-group-horizontal .card-background .img:nth-child(2) { background-color: #999; }