/* <SCPDOC> */
.doc-header {
    font-size: .94rem;
}

.doc-intro {
    background-color: #f2f4f6;
    border-radius: 5px;
    padding: 1rem 1.4rem;
    margin-bottom: 1rem;
}

.doc-intro h1 {
    font-size: .975rem;
    font-weight: 600;
}

.doc-intro p {
    margin-bottom: 0;
    font-size: .875rem;
    line-height: 1.5;
}

.doc-search-box {
    padding-top: 1.2rem;
    width: 18.75rem;
}

.doc-search-box .search-form {
    position: relative;
    width: 85%;
}

.doc-search-box .search-form .search-input {
    font-size: 0.875rem;
    border-radius: 1.5rem;
    padding-right: 3rem;
    padding-left: 1.5rem
}

.doc-search-box .search-form .search-input:focus {
    border-color: #e7e9ed
}

.doc-search-box .search-form .search-btn {
    color: #828d9f;
    background: none;
    border: none;
    position: absolute;
    right: 0;
    top: 0.15rem;
    margin-right: 0
}

.doc-search-box .search-form .search-btn:active,
.doc-search-box .search-form .search-btn:focus,
.doc-search-box .search-form .search-btn:hover {
    outline: none !important;
    color: rgba(0, 102, 153, .80);
    box-shadow: none
}
.doc-content button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    color: var(--scp-text-color);   
}
.doc-content button i {
    font-size: .8rem;
}
.doc-content .btn:hover,
.doc-content .btn.highlight {
    color: var(--scp-blue2); /* #287ba7 */
}
.doc-content .bodying {
    padding: 0 .9rem;
    padding-bottom: .6rem;
}

/* Accordion */
.ac-label {
    font-weight: 700;
    position: relative;
    padding: .5em 1em;
    margin-bottom: 0;
    display: block;
    cursor: pointer;   
    transition: background-color .15s ease-in-out;
    font-size: 1rem;
}
.ac-label .icon-img {
    height: 32px;
}
.ac-input:checked + label, .ac-label:hover {
    background-color: #f2f4f6;
    color: var(--scp-blue); 
}
.ac-label:after, .ac-input:checked + .ac-label:after {
    content: "\f078";
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 2em;
    height: 100%;
    line-height: 3.8em;
    text-align: center;       
    transition: background-color .15s ease-in-out;
    font-family: "Font Awesome 5 Free";
    font-size: .8rem;
    padding-right: .5rem;
}
.ac-label:hover:after, .ac-input:checked + .ac-label:after {
    /*background-color: var(--scp-graylight2);*/
}
.ac-input:checked + .ac-label:after {
    content: "\f077";
}
.ac-input {
    display: none;
}
.ac-sub {
    margin-bottom: .5em; 
}
.ac-text, .ac-sub-text {
    opacity: 0;
    height: 0;    
    transition: opacity .5s ease-in-out;
    overflow: hidden;
}
.ac-input:checked ~ .ac-text, .ac-sub .ac-input:checked ~ .ac-sub-text {
    opacity: 1;
    height: auto;
}
.ac-sub .ac-label {
    background: none;
    font-weight: 600;
    padding: .5em 0;
    margin-bottom: 0;
    padding-left: 2.2rem;
}
.ac-sub .ac-label:checked {
    background: none;
    border-bottom: 1px solid whitesmoke;
}
.ac-sub .ac-label:after, .ac-sub .ac-input:checked + .ac-label:after {
    left: 0;
    background: none;
    line-height: 3.4em;
    padding-left: 1rem;  
}
.ac-sub .ac-input:checked + label, .ac-sub .ac-label:hover {
    background: none;
}
.ac-sub-text {
    padding: 0 1em 0 2em;
    font-size: .92rem;
}