
body.lightbox-open {
    height: 100%;
    overflow: hidden;
}


#prospecuts-builder .lightbox {
    display: flex;
    position: fixed;
    background: rgba(0,0,0,0.75);
    align-items: center;
    justify-items: center;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease-in-out;
}
#prospecuts-builder .lightbox:target {
    left:0;
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

#prospecuts-builder .lightbox__inner {
    position: relative;
    max-width: 85vw;
    max-height: 90vh;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    overflow: auto;
    padding: 2rem 2rem 1rem;
    transform: translateZ(0);
}

#prospecuts-builder .lightbox__close {
    position: fixed;
    top: 10px;
    right: 10px;
    height: 2rem;
    width: 2rem;
    background: #000;
    color: white;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 1px solid #eee;
    z-index: 999999;
}

#prospecuts-builder .lightbox__close:after {
    content: 'X';
}

#prospecuts-builder .lightbox__close:focus {
    outline: 0;
    box-shadow: 0 0 10px 10px rgba(7, 90, 145, 1);
}

#prospecuts-builder .lightbox__img {
    width: 100%;
}

#prospecuts-builder .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

#prospecuts-builder details.accordion{
    display: block;
    margin-bottom: .4em !important;
    border: 1px solid #efefef;
}


#prospecuts-builder details.accordion  summary{
    content: '';
    background: #fcfcfc;
    color: #222;
    padding: 0.625rem;
    display: block;
    font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    min-height: 20px;
}

#prospecuts-builder details.accordion  summary::-webkit-details-marker {
    display: none;
}
#prospecuts-builder details.accordion  summary:before {
  background: black; 
  border-radius: 5px; 
  content: "+"; 
  color: #fff; 
  font-weight: bold; 
  margin: 0px 10px 0 0; 
  padding: 0; 
  text-align: center; 
  display: inline-block;
  width: 15px;
  height: 15px;
  font-size:1rem;
  line-height: 11px;
}
#prospecuts-builder details.accordion[open] summary:before {
  content: "-";
}

#prospecuts-builder details.accordion  summary label {
    /*float: left;*/
  display: inline-block;
  line-height: 20px;
  width: 90%;
}
#prospecuts-builder details.accordion  ul {
    padding: 2rem;
}

#prospecuts-builder details.accordion  ul ul{
    padding: 0rem;
}

