#lean_overlay {
    position: fixed;
    z-index:9998;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #000;
    display: none;
}
.modal {
    display: none;
    position: fixed;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-color: var(--color-white);
    margin: auto;
    z-index: 10000;
    border-top: 10px solid var(--color-accent-yellow);
    border-bottom: 10px solid var(--color-accent-yellow);
}
.modalBlue {
    display: none;
    position: fixed;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-color: var(--color-white);
    margin: auto;
    z-index: 10000;
    border-top: 10px solid var(--color-brand);
    border-bottom: 10px solid var(--color-brand);
}
.innar {
    overflow-y: auto;
    text-align: left;
    width: 90%;
    height: 75%;
    margin-left: 5%;
    margin-top: 10%;
    padding-right: 0.5em;
}
.modal h3,
.modalBlue h3 {
    margin: 5% 0 0 5vw;
	width: 100%;
}
.modal h3 div {
    border-bottom: 5px solid var(--color-accent-yellow);
    display: inline-block;
    padding-bottom: var(--space-10);
    font-size: 4vw;
}
.modalBlue h3 div {
    border-bottom: 5px solid var(--color-brand);
    display: inline-block;
    padding-bottom: var(--space-10);
    font-size: 3.5vw;
}
.modal dl dt,
.modalBlue dl dt{
    border-bottom: 1px solid #000000;
    padding-bottom: var(--space-5);
    margin-bottom: 8px;
    position: relative;
    text-indent: 20px;
}
.modal dl dt:before,
.modalBlue dl dt:before{
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 0px;
    background-color: #000000;
    margin-top: -8px;
}
.modal dl dd,
.modalBlue dl dd{
    margin-bottom: 5vh;	
}
.plus span {
    line-height: 35px;
    padding: 0 var(--space-20);
    display: block;
    color: var(--color-white);
    position: relative;
    margin-bottom: 35px;
}
.color span {
    line-height: 35px;
    display: inline-block;
    color: var(--color-white);
    position: relative;
    text-align: center;
}
.color span.blu, .color span.ora, .color span.pin {
    width: 60px;	
}
.color span.gre {
    width: 180px;	
}
.plus span:before, .plus span:after{
    position: absolute;
    top: -25px;
    border: 2px solid #707070;
    height: 16px;
    content: "";
}
.plus span:before{
    left: 50%;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.plus span:after{
    left: 50%;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.plus span:first-child:before, .plus span:first-child:after {
    display: none;
}
.blu {
    background-color: var(--color-brand);	
}
.ora {
    background-color: #F15A24;	
}
.gre {
    background-color: #009245;	
}
.pin {
    background-color: #ED1E79;
}
/* Close button */
.modal .close,
.modalBlue .close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor:pointer;
}
.modal .close:before, .modal .close:after,
.modalBlue .close:before, .modalBlue .close:after {
  position:absolute;
  top:4px;
  border:2px solid #707070;
  height:30px;
  content:"";
}
.modal .close:before,
.modalBlue .close:before{
  left:18px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal .close:after,
.modalBlue .close:after{
  right:18px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal .close span {
	position: absolute;
	top: 40px;
	left: 0px;
	width: 40px;
	display: inline-block;
	text-align: center;
}
.modalBlue .close span {
    display: none;	
}