.prescription-list-row{
  cursor:pointer;
}

.prescription-editor-card .system-blue-body{
  display:grid;
  gap:18px;
}

.prescription-form-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.prescription-form-grid .span-2{
  grid-column:span 2;
}

.prescription-form-grid .span-3{
  grid-column:1 / -1;
}

.exam-request-form-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.prescription-editor-actions{
  display:flex;
  justify-content:center;
  padding-top:2px;
}

.prescription-editor-actions .btn svg{
  width:18px;
  height:18px;
}

.exam-result-modal-dialog{
  width:min(760px,calc(100vw - 32px));
}

.exam-result-upload-grid{
  display:grid;
  grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);
  gap:14px;
}

.evolution-upload-slot.exam-result-upload-slot{
  grid-column:1 / -1;
  min-height:86px;
}

.exam-result-upload-slot .evolution-upload-trigger{
  min-height:84px;
  padding:12px 18px;
}

.exam-result-upload-slot .evolution-upload-icon svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.exam-result-list-row .client-module-icon svg{
  display:block;
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.exam-result-list-row .client-module-icon{
  display:grid;
  place-items:center;
  color:var(--blue-2);
}

.access-card .btn.is-disabled{
  cursor:not-allowed;
  opacity:.58;
}

@media(max-width:900px){
  .prescription-form-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}

@media(max-width:620px){
  .prescription-form-grid{
    grid-template-columns:1fr;
  }

  .prescription-form-grid .span-2,
  .prescription-form-grid .span-3{
    grid-column:auto;
  }

  .exam-result-upload-grid{
    grid-template-columns:1fr;
  }

  .evolution-upload-slot.exam-result-upload-slot{
    grid-column:auto;
  }
}
