.relative {
  position: relative;
}
#lr-libro-reclamaciones {
  padding: 0px;
  border-radius: 8px;
  max-width: 1170px;
  margin: 0 auto;
}
#lr-libro-reclamaciones *{
  box-sizing: border-box;
}
.lr-progress-bar {
  width: 100%;
  height: 1rem;
  background: #e57373;
}
.lr-progress-bar-wrap{
  margin: 20px 0px;
  background-color: #ddd;
  border-radius: 25px;
  overflow: hidden;
}
.lr-step-title{
  font-size: 1rem;
  margin: 0;
  padding: 0px;
}
.lr-step {
  display: none;
}
.lr-step.active {
  display: block;
}
.lr-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem
}

.lr-form-grid > div {
  padding: 0px;
}
@media (max-width: 600px) {
  .lr-form-grid {
    grid-template-columns: 1fr;
  }
}
.lr-label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
}
#lr-libro-reclamaciones .lr-input, 
#lr-libro-reclamaciones .lr-select, 
#lr-libro-reclamaciones .lr-textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #FFF!important;
  box-sizing: border-box;
}
#lr-libro-reclamaciones .lr-textarea{
  height: 120px;
  min-height: 120px;
  resize: none;
}
#lr-libro-reclamaciones .lr-input:focus, 
#lr-libro-reclamaciones .lr-select:focus, 
#lr-libro-reclamaciones .lr-textarea:focus {
  outline: none;
}
#lr-libro-reclamaciones .lr-input:disabled, 
#lr-libro-reclamaciones .lr-select:disabled, 
#lr-libro-reclamaciones .lr-textarea:disabled {
  background-color: #F2F2F2!important;
}
.lr-btn {
  background: #888;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  margin: 5px;
}
.lr-btn-clear{
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000000' class='bi bi-trash' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5m2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5m3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0z'/%3E%3Cpath d='M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1zM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4zM2.5 3h11V2h-11z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem!important;
  height: 1rem!important;
  background-color: transparent!important;
  padding: 0!important;
  margin: 0;
  opacity: 0.5;
  transition: 250ms linear;
}
.lr-btn-clear:hover{
  opacity: 1;
}

.lr-btn[disabled] {
  background-color: #CCC!important;
  cursor: not-allowed;
}
.lr-error {
  color: #d32f2f;
  font-size: 13px;
  margin-bottom: 10px;
}
.lr-signature-canvas {
  border: 1px solid #bbb;
  background: #fff;
  width: 100%;
  height: 120px;
  display: block;
  margin: 0 auto 10px auto;
  touch-action: none;
  user-select: none;
  max-width: 100%;
}
.lr-signature-canvas[disabled] {
  background: #f2f2f2;
  cursor: not-allowed;
  opacity: 0.8;
}
.lr-legal-text {
  font-size: 13px;
  color: #444;
  margin-top: 20px;
  background: #eee;
  padding: 10px;
  border-radius: 4px;
}

.col-span-2{
  grid-column: span 2;
}

.grid-col-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.lr-silence{
  font-size: 12px;
  color: #bbb;
}

.lr-btn-next-wrap{
  margin-top: 20px;
}