﻿/* YOLKA_VUCEM_EXPEDIENTE_V1 */

#yolkaVucemExpediente{
  display:none;
}

#yolkaVucemExpediente[data-visible="1"]{
  display:inline-flex;
}

.yvexp-group{
  align-items:center;
  gap:4px;
  margin-left:5px;
  vertical-align:middle;
}

.yvexp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  min-height:29px;
  padding:4px 7px;
  border:1px solid #b8cce2;
  border-radius:6px;
  background:#fff;
  color:#31536f;
  font-size:9px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  cursor:pointer;
}

.yvexp-btn:hover:not(:disabled){
  background:#f0f7ff;
  border-color:#8bb9e5;
}

.yvexp-btn.is-ready{
  background:#edf9f1;
  border-color:#9bcfaf;
  color:#0b63ce;
}

.yvexp-btn.is-loading{
  opacity:.6;
}

.yvexp-btn:disabled{
  opacity:.42;
  cursor:default;
}

.yvexp-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:14px;
  height:14px;
  flex:0 0 14px;
}

.yvexp-icon svg{
  width:14px !important;
  height:14px !important;
}

.yvexp-dialog{
  width:min(980px,92vw);
  max-height:86vh;
  padding:0;
  border:1px solid #cbd8e5;
  border-radius:10px;
  background:#fff;
  box-shadow:0 18px 60px rgba(0,0,0,.22);
}

.yvexp-dialog::backdrop{
  background:rgba(15,23,42,.45);
}

.yvexp-dialog-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-bottom:1px solid #dbe4ed;
}

.yvexp-dialog-head small{
  display:block;
  margin-bottom:2px;
  color:#64748b;
  font-size:9px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.yvexp-dialog-head h3{
  margin:0;
  font-size:14px;
}

.yvexp-close{
  width:30px;
  height:30px;
  border:1px solid #d6dee7;
  border-radius:6px;
  background:#fff;
  font-size:19px;
  cursor:pointer;
}

.yvexp-dialog-meta{
  padding:8px 14px;
  border-bottom:1px solid #e4ebf1;
  color:#607184;
  font-size:9px;
  overflow-wrap:anywhere;
}

.yvexp-content{
  margin:0;
  padding:14px;
  min-height:260px;
  max-height:58vh;
  overflow:auto;
  background:#f7f9fb;
  color:#1f2937;
  font:11px/1.45 Consolas,"Courier New",monospace;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
}

.yvexp-dialog-actions{
  display:flex;
  justify-content:flex-end;
  gap:7px;
  padding:10px 14px;
  border-top:1px solid #dbe4ed;
}

@media(max-width:1200px){
  .yvexp-btn > span:last-child{
    display:none;
  }

  .yvexp-btn{
    width:29px;
    padding:0;
  }
}

