﻿.mainSeccion {
    padding: 20px 0px 0px 0px;
}

.navbar.navbar-inicio {
    background-color: white;
    box-shadow: 0px 0px 5px lightgray;
}

.dl-horizontal dt {
    white-space: normal;
}

.alertList {
    padding-left: 20px;
}

.selectView {
    width: auto;
    display: inline-block;
}

.flotDiv {
    /*width: 100%;
    height:400px;
    display: block;*/
}

.bg-dark.dropdown-menu {
    background-color: #e7e7e7;
}

#menu-user {
    padding: 5px 10px;
}

    #menu-user:hover {
        box-shadow: 0px 0px 5px #bdbdbd;
        border-radius: 5px 5px 0px 0px;
        background: #efefef;
        color: black;
    }

.bg-dark.dropdown-menu a {
    color: #ffffff;
}

.bg-dark > .dropdown-item:hover, .bg-dark > .dropdown-item:focus {
    text-decoration: none;
    background-color: #555555;
}

@keyframes growProgressBar {
    0%, 33% {
        --pgPercentage: 0;
    }

    100% {
        --pgPercentage: var(--value);
    }
}

@property --pgPercentage {
    syntax: '<number>';
    inherits: false;
    initial-value: 0;
}

div.circular[role="progressbar"] {
    --size: 12rem;
    --fg: #369;
    --bg: #def;
    --pgPercentage: var(--value);
    animation: growProgressBar 3s 1 forwards;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0), conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(var(--size) / 5);
    color: var(--fg);
}

    div.circular[role="progressbar"]::before {
        counter-reset: percentage var(--value);
        content: counter(percentage) '%';
    }

.border {
    border: solid 1px;
}

.border-success {
    border-color: #28a745 !important;
}

.review {
    margin: 5px;
    padding: 10px;
    width: 100%;
    position: relative;
    border-radius: 10px;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

.img-result {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.clockdiv {
    font-family: sans-serif;
    color: #000;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
}

    .clockdiv > div {
        padding: 10px;
        border-radius: 3px;
        background: #EEEEEE;
        display: inline-block;
    }

    .clockdiv div > span {
        padding: 15px;
        border-radius: 3px;
        background: #DDDDDD;
        display: inline-block;
    }

.clock-warning div > span {
    color: orange;
}

.clock-red div > span {
    color: red;
}

.smalltext {
    padding-top: 5px;
    font-size: 16px;
}

div.dataTables_wrapper div.dataTables_processing {
    background: whitesmoke;
    box-shadow: 0px 0px 10px 2px gray;
    border-radius: 10px
}

.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* 16:9 aspect ratio (height 9 ÷ width 16 = 0.5625) */
    padding-top: 56.25%;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
