
/* 
    Created on : 31 de ago. de 2023, 14:00:12
    Author     : wellingtonassis
*/


.h_container{
    padding: 10px;
}
.titulo{
    padding: 5px;
}
.box_container{
    display: flex;
    justify-content: center;
    padding: 10px;
}

.box-flex{
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

#permissionMessage{ 
    flex-wrap:wrap;
    width: 100%;
    justify-content: center
}
#permissionMessage div{    
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.modal-load{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.modal-load span{
    display: inline-block;
    margin-right: 10px;
}

.dados-assets{
    margin-left: 15px;
    max-width: 300px;
}
.form-ticket{
    display: none;
}
.spinner {
  width: 20px;
  height: 20px;
  position: relative;  
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1s;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

