/*! added.css v1.0.0 | MIT License | by sialka */

/* Loading */

#overlay-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  z-index: 9999;
  display: none; /* começa escondido */
  justify-content: center;
  align-items: center;
}

/* Spinner animado */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Texto abaixo do spinner */
.loading-text {     
    padding-left: 4px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Geral */

.no-border {
    border: 0px;
}

.no-radius{
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
}

.box{
    background-color: white;
    border: 1px solid #D3D3D3;
    border-radius: 4px;
    padding: 10px 5px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.no-link {
    text-decoration: none;
}

.no-link:hover {
    text-decoration: none;
}

.text-normal {
    font-size: 1em;
}

.bg-disabled {
    background-color: #EEEEEE;
}

.display-none {
    display: none;
}

.strong {
    font-weight: bold;
}

textarea:focus,
input:focus,
select:focus {
    outline: 0;
    /*border-radius: 0px;*/
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;

}

.bg-footer {
    background-color: #eff3f8;
}

/* Login */

.login {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: 100vh;
}

.login-error {
    background-color: transparent !important;
    color: #cc0000 !important;
    border-radius: 0 !important;
    border: none !important;
    font-weight: bold;
}

.label-disabled {
    background-color: #eaecf4;
}


input[type="file"] {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    padding: 2px;
    height: calc(1.5em + 0.75rem) !important;
    font-size: 13px;
}

.bg-black {
    background: #000000;
}

.status {
    width:50%;
    padding: 0;
    font-size: 1.6rem;
}

.left {
    float: left
}

.right {
    float: right
}

.fixed {
    position: fixed;
    bottom: 0;
    left:0;
}

.center {
    text-align: center;
}

.hide {
    display: none;
}

/* Tela Login */

.login {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: 100vh;
}

.login-error{    
    background-color: rgb(220,53,69, 0.2);
    color: #AB0909;
    border-radius: 20px;
    border: 1px solid #AB0909;
    font-size: 0.8rem;
    padding: 4px 8px;    
    text-align: center;
    margin-bottom: 1em;
}

.campo {
    position: relative;
    margin-top: 20px;
}

.campo input {
    width: 100%;
    padding: 12px 10px;
    font-size: 1rem;
    border: 1px solid #999;
    border-radius: 4px;
    outline: none;
}

.campo label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    background: white;
    padding: 0 4px;
    pointer-events: none;
    transition: 0.2s ease;
}

.campo input:focus + label,
.campo input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: #000000;
    /*font-weight: bold;*/
}

.f05{
    font-size: 0.5rem;
}
.f06{
    font-size: 0.6rem;
}
.f07{
    font-size: 0.7rem;
}
.f08{
    font-size: 0.8rem;
}
.f09{
    font-size: 0.9rem;
}
.f10{
    font-size: 1.0rem;
}
.f11{
    font-size: 1.1rem;
}
.f12{
    font-size: 1.2rem;
}
.f13{
    font-size: 1.3rem;    
}
.f14{
    font-size: 1.4rem;
}
.f15{
    font-size: 1.5rem;
}