﻿html, body {
    height: 100%;
}


.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8) url("../images/cargando.gif") center no-repeat;
}
/* Turn off scrollbar when body element has the loading class */
body.loading {
    overflow: hidden;
}
    /* Make spinner image visible when body element has the loading class */
body.loading .overlay {
        display: block;

}


.hidden_div {
    display: none;
}

.custom-bg {
    background-image: url("../images/bgbelinda.jpg");
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.special-card {
    /* create a custom class so you 
   do not run into specificity issues 
   against bootstraps styles
   which tends to work better than using !important 
   (future you will thank you later)*/
    background-color: rgba(255,255,255, 0.9);
    opacity: .8;
}


.fill-height {
    flex-grow: 1;
    width: 100%;
}


.btn-sq-lg {
    width: 150px !important;
    height: 150px !important;
}

.btn-sq {
    width: 33.33333333% !important;
    height: 33.33333333% !important;
    font-size: 10px;
}

.btn-sq-sm {
    width: 50px !important;
    height: 50px !important;
    font-size: 10px;
}

.btn-sq-xs {
    width: 25px !important;
    height: 25px !important;
    padding: 2px;
}

.square:before {
    content: "";
    display: block;
    padding-top: 100%; /* initial ratio of 1:1*/
}


.btn-square-sm {
    width: 50px !important;
    max-width: 100% !important;
    max-height: 100% !important;
    height: 50px !important;
    text-align: center;
    padding: 0px;
}

section {
    display: none;
}

    section:target {
        display: block;
    }


.facet-container {
    width: 330px;
}

.right {
    float: right;
}

.left {
    float: left;
}

p {
    clear: both;
    padding-top: 1em;
}

.facet-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-right: 10px;
    background: #eee;
    padding: 5px;
    width: 143px;
    min-height: 1.5em;
    font-size: 0.85em;
}

    .facet-list li {
        margin: 5px;
        padding: 5px;
        font-size: 1.2em;
        width: 120px;
    }

        .facet-list li.placeholder {
            height: 1.2em
        }

.facet {
    border: 1px solid #bbb;
    background-color: #fafafa;
    cursor: move;
}

    .facet.ui-sortable-helper {
        opacity: 0.5;
    }

.placeholder {
    border: 1px solid orange;
    background-color: #fffffd;
}