.load_spinner {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.spinner-grow {
    position: fixed;
    top: 50%;
    left: 50%;
}

.load_spinner_title {
    position: fixed;
    margin: 19px 0 0 -44px;
    font-weight: 700;
    color: #8cb15e;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.message_response {
    position: fixed;
    padding: 20px 20px 0 0;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
    z-index: 999999 !important;
}

.message_response .message {
    background: #333333;
    font-size: 1em;
    font-weight: 400;
    /* border-radius: 4px; */
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 15px 20px 15px;
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;
}

.message_response .message:before {
    flex-basis: 0%;
    margin: -5px 15px 0 0 !important;
    font-size: 2.4em;
    color: rgba(0, 0, 0, 0.5);
}

.message_response .message.success {
    background: rgba(143, 189, 86, 0.9);
}

.message_response .message.info {
    background: rgb(29, 122, 126, 0.9);
}

.message_response .message.warning {
    background: rgb(231, 195, 84, 0.9);
    color: #333333;
}

.message_response .message.error {
    background: rgb(209, 44, 71, 0.9);
}

.message_response .message_time {
    display: none;
    /* Ativar depois de um tempo! */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4%;
    height: 5px;
    background: rgba(0, 0, 0, 0.5);
}

.maestre_consult:hover {
    background-color: #DDEBCC;
}

.btn-opacity-hover{
    opacity: 0.3;
}

tr:hover > td a.btn-opacity-hover{
    opacity: 1;
}



/**
*
*   Media para impressão
*
*/
@media print {

body * {
    visibility: hidden;
  }
  #printable, #printable *,.printable, .printable *  {
    visibility: visible;
  }

  table tr{
    border-bottom: 1px solid #cccccccc;
  }

  #printable {
    position: fixed;
    left: 0;
    top: 0;
  }
    .d-print-none {
      display: none !important;
    }
  }
