﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

body {
    padding-bottom: 160px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

#loading-pane {
    display: none;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* IE 5-7 */
    /* filter: alpha(opacity=80); */

    /* Old Mozilla */ 
    /* -moz-opacity: 0.8; */

    z-index: 999998;
    background-color: #ffffff;
}

#loading-pane img {
    position: absolute; 
    top: 40%; 
    left: 47%; 
    z-index: 999999;
}

.classWithPad { padding:5px; }

.btn-sq {
    text-align: center;
    justify-content: center;
    white-space: normal;
    width: 60px !important;
    height: 60px !important;
    font-size: 9px;
    margin-right: 5px;
    margin-bottom: 5px !important;
  }

.agente-ocupado {
    height: 15px;
    width: 15px;
    margin: 1px;
    border-style: solid;
    border-radius: 20px;
    border-color: lightskyblue;
    border-width: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
}

.agente-livre {
    height: 15px;
    width: 15px;
    margin: 1px;
    border-style: solid;
    border-color: limegreen;
    border-width: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
}

.agente-livre-limite-spin {
    height: 15px;
    width: 15px;
    margin: 1px;
    border-style: solid;
    border-color: hotpink;
    border-width: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
}

.scrollable-textarea {
    overflow: auto;
    white-space: pre;
    font-family: monospace;
    max-width: 90% !important;
}