.itemUpload{
  background: #07366a;
  color: white;
  font-weight: bold;
  padding: 8px;
  display: inline-block;
  max-width: 48%;
  border-radius: 8px;
  margin: 8px;
  width: 300px;
}
.itemUpload img{
  float: left;
}
.itemUpload span{
  display: block;
  margin-top: 4px;
}

.bgDarkBlue{
  background-color: #063867db!important;
}

.formTicket{
  border-radius: 6px;
  background-color: #f9f9f9;
  box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%);
}



.form-input {
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  color: black;
  display: block;
  font-size: 14px;
  height: 34px;
  line-height: 1.42857;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
}
.form-input:focus {
  border-color: #094071;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
  outline: 0 none;
}

textarea.form-input{
  min-height: 100px;
}

.margin-bottom{
  margin-bottom: 30px;
}
.margin-bottom-15{
  margin-bottom: 15px;
}

.flex-center{
  display: flex;
  align-items: center;
}

.border-bottom{
  padding-bottom: 10px;
  border-bottom: 2px #dddddd solid;
}

body::-webkit-scrollbar {
  width: 10px
}

body::-webkit-scrollbar-thumb {
background-color: darkgrey;
border-radius: 3px;
}

.d-flex-center{
  display: flex;
  flex-direction: row;

  align-items: center;
  gap: 10px;
}

.p-0{
  padding: 0 !important;
}

.btn-width{
  width: 150px;
}

option:disabled{
  display: none;
}

.caixa{
  margin: 10px 0px;
  padding: 10px;
  border: 1px solid black;
  border-radius: 6px;
  /* box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%); */
}

.loader{
  width: 50px;
  height: 50px;
  background-color: #07366a;
  position: absolute;
  display: none;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
}

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