﻿:root{
    --footer-height: 5rem;
}

body{
    display:block;
    overflow-x: hidden;
}

.layout{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* .layout .layoutContent{
    min-width: 0;
    flex-grow: 1;
} */

.body-card{
    display: flex !important;
    flex: 1 1 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
}

.layout .layoutContent{
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    flex-grow: 1;
}

.layout .layoutFooter{
    min-width: 0;
}

/*.layout .layoutContent .app_logo{*/
    /*width: 9rem;*/
    /*height: 9rem;
}*/

.layout .layoutContent main .row .col-lg-5 .card{
    max-height: calc(100vh - (var(--footer-height) + (1rem * 2) + 10.5rem)) !important;
    overflow-y: auto;
}


footer{
    height: 5rem;
    display: flex;
    align-items: center;
}

footer img{
    transition: all 0.7s;
    width: 10rem;
    height: 10rem;
}
.custom-select {
    position: relative;
}

.selected-option {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
}

    .selected-option:hover {
        background-color: #f0f0f0;
    }

    .selected-option img {
        width: 20px;
    }

.options {
    display: none;
    background-color: #fff;
    border: 1px solid #ccc;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

.option {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
}

    .option:hover {
        background-color: #f0f0f0;
    }

    .option img {
        width: 20px;
        margin-right: 10px;
    }