html {
    font: 0.9em;
    height: 100%;
    overflow:hidden;
}

body {
    height: 100%;
    padding-top: 210px; 
}

.jumbotron {
    padding: 0.5rem 1rem;
    border-radius: 0;
    height: 200px;
}

.content {
    height: 100%;
}

.content .row{
    height: 100%;
}

.content .row > div {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.card-block {
    padding: 0.7em;
}


.card .img-container{
    height: 120px;
    margin: auto;
    vertical-align: middle;
    width: 120px;
}

.card {
    overflow: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.img-container img{
    max-width: 100%;
    max-height: 100%;
}

.label {
    margin-right: .25rem;
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f7f8f8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #d4d6d7;
    height: 30px;
}

.close {
    position: absolute;
    z-index: 20001;
    top: 15px;
    right: 35px;
    display: none;
} 

a.card {
    color: #000;
}

.card.active, a.card:focus, a.card:hover {
    background-color: #ECF0F1;
    color: #000;
    text-decoration: none;
}

.label.active {
    border: 4px solid #ABB7B7;
}

button.loading:disabled {
    cursor: progress;
}

@-webkit-keyframes spin { to {transform: rotate(360deg);}}
@-moz-keyframes spin { to {transform: rotate(360deg);}}
@-ms-keyframes spin { to {transform: rotate(360deg);}}
@-o-keyframes spin { to {transform: rotate(360deg);}}
@keyframes spin {to {transform: rotate(360deg);}}

.spinner {
    content: "";
    background-image: url(../img/logo.svg);
    height: 120px;
    width: 120px;
    margin: 120px auto;
    border-radius: 50%;
    opacity: .5;
    clear: both;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -ms-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.spinner.list {
    margin: -180px auto;
    position: relative;
    top: -150px;
}

@media (max-width: 767px) {

    body {
        padding-top: 118px;
    }

    .hidden-sm-down.popUp {
        position: absolute;
        display: block!important;
        top: 10px;
        z-index: 2000;
        width: 100%;
    }

    .wrapper.popUp {
        background-color: rgba(0,0,0,0.5);
        position: absolute;
        top: 0;
        z-index: 1999;
        width: 100%;
        height: 100%;
    }

    .close.popUp{
        display: block!important;
    }

    .jumbotron {
        height: 112px;
    }
}

@media (min-width: 544px) {

    .container.content {
        max-width: 1200px;
    }

    .jumbotron {
        padding: 2rem;
    }

    .jumbotron .container {
        max-width: 700px;
    }
}