.disclosure-popup {
    position: fixed;
    top: 10vh;
    z-index: 1100;
}

disclosures {
    color: #000;
    background-color: #fff;
    font-family: Nobel Regular;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .1em;
}

.modal-dialog{
    overflow-y: initial !important;
    width: 80%;
    height: 80%;
}

#disclosureModal:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100dvh;
    opacity: 0.4;
    background-color: #000;
    display: block;
}

#disclosureModal .modal-dialog {
    border: 1px solid rgba(134, 132, 135, 0.4);
    box-shadow: 2px 4px 4px 0 rgba(134, 132, 135, 0.25);
}

disclosures .modal-content {
    max-height: calc(75vh - 80px);
    overflow-y: hidden;
    overflow-x: hidden;
    border: none;
}

@media only screen and (max-width: 543.98px) {
    /*weird width otherwise*/
    #disclosureModal .modal-dialog {
        width: 97vw;
    }
    disclosures .modal-content {
        height: 100%;
        max-height: unset;
    }
}

disclosures .modal-content-container {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    height: 75%;
    overflow-y: auto;
}

disclosures .disclosure-header {
    display: flex;
    width: 100%;
    padding: 23px 90px 16px 30px;
    border-bottom: 1px solid #edf0f5;
    background: #fff;
    box-sizing: border-box;
}

disclosures .btn-close {
    cursor: pointer;
    pointer-events: visible;
    fill: #ccd1d9;
    color: #ccd1d9;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    /*
    border: 2px solid #ccd1d9;
    border-radius: 22px;
    background-color: rgba(204,0,0,0);
    */
    border: none;
    background-color: transparent;
    overflow: hidden;
    transition: background-color .4s ease,border-color .4s ease;
    /*
    border-color: #202020;
    background: #202020;
    */
    position: absolute;
    z-index: 1030;
}

disclosures .btn-close .btn-close-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 55px;
    height: 55px;
    fill: #ccd1d9;
    color: #ccd1d9;
    max-height: none;
    z-index: 2101;
    transition: fill .4s ease;
}

disclosures h3 {
    letter-spacing: 0.5px;
    font-size: 1.5rem;
    line-height: 1.3;
}

disclosures strong {
    font-weight: bold;
    font-size: 12px;
}

disclosures ul {
    list-style: none;
    padding-left: 0;
}

disclosures ul li {
    padding-left: 8px;
    padding-right: 20px;
    padding-top: 14px;
    padding-bottom: 14px;

    margin-left: 64px;/*43px;*/
    margin-right: 24px;
    position: relative;
    font-family: var(--primary-font);
    font-size: 12px;
    line-height: 150%;
}

disclosures ul li.is-active {
    background: #dee2e8;
}

disclosures li:first-child {
    counter-reset: index;
    /*counter-set: index 120;*/ /* test set value does not work on safari*/
}

.disclosure-item-skip {
    counter-increment:index;
}

disclosures ul li:before {
    position: absolute;
    top: 0px;
    left: -40px;
    width: 40px;    
    height: 100%;
    padding-top: 14px;
    text-align: right;
    content: counter(index) ".";
    counter-increment: index;
}


disclosures ul li.is-active:before {
    position: absolute;
    top: 0px;
    left: -40px;
    width: 40px;    
    height: 100%;
    background: #dee2e8;
    border-left: 4px solid var(--primary-1);
    padding-top: 14px;
    text-align: right;
    content: counter(index) ".";
    counter-increment:index;    
}

disclosures ul li>a {
    color: var(--primary-1);
    text-decoration: none;
    background: transparent;
    font-size: 12px;
}