.import {
    display: flex;
    flex-direction: row;
} .mr-1 {
    margin-right: 1rem;
} .ml-1 {
    margin-left: 1rem !important;
} .pd-10 {
    padding: 10px;
} .btn-green {
    background-color: #3A6;
    color: #FFF;
    transition: 0.4ms ease all;
} .btn-green:hover {
    background-color: #184;
    color: #FFF;
} #enabled {
    background-color: rgb(245, 255, 234);
    color: rgb(13, 95, 33);
} #disabled {
    background-color: rgb(255, 218, 218);
    color: rgb(255, 60, 60);
} .fixed {
    position: fixed;
    width: 60%;
} .line {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.lido {
    font-weight: 400;
    border-bottom: 4px solid #333;
    margin: 2px 0;
} .notlido {
    font-weight: 700;
    border-bottom: 4px solid #D12027;
    animation: alert1 0.8s infinite;
    margin: 2px 0;
} .analisado {
    font-weight: 600;
    border-bottom: 4px solid #FFAA00;
    animation: alert2 0.8s infinite;
    margin: 2px 0;
} #right-side {
    height: 85vh;
    display: none;
    overflow-y: scroll;
} #left-side {
    height: 85vh;
    overflow-y: scroll;
}

/* Toogle Switch */
    .act {
        display: flex;
        align-items: center;
    }

    .switch input {
        position: absolute;
        opacity: 0;
    }

    .switch {
        display: inline-block;
        font-size: 20px; /* 1 */
        height: 1em;
        width: 2em;
        background: #DDD;
        border-radius: 1em;
    }

    .switch div {
        height: 1em;
        width: 1em;
        border-radius: 1em;
        background: #F55;
        box-shadow: 0 0.1em 0.3em rgba(0,0,0,0.3);
        -webkit-transition: all 300ms;
        -moz-transition: all 300ms;
        transition: all 300ms;
    }

    .switch input:checked + div {
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        background: #8C8;
    }
/* Toogle Switch */

.round {
    border-radius: 8px;
    text-align: center;
}

.cl-yellow {
    background-color: #FA0;
    color: white;
} .cl-red {
    background-color: #F55;
    color: white;
} .cl-orange {
    background-color: #F50;
    color: white;
} 

@keyframes alert1 {
    from { background-color: white;}
    to { background-color: rgb(255, 140, 82);}
} @keyframes alert2 {
    from { background-color: white;}
    to { background-color: rgb(247, 229, 73);}
}


.alert-background {
    animation: alert3 0.8s infinite ease-in-out;
}

@keyframes alert3 {
    from { opacity: 1; }
    to { opacity: 0.7; }
}

.img-btn {
    width: 12rem;
}

#telaCaps{
    background-color: rgba(247, 229, 73, 0.5);
}
