/* root element for accordion. decorated with rounded borders and gradient background image */

.toolsaccordion {
    width: 33%;
    background: white;
    /* padding: 0px 2% 0px; */
}

.highpane {
    background: #0b2240;
    color: white;
}


/* .expandPlus a::after {
    font-family: Glyphicons Halflings;
    content: "\e257";
    margin-left: 50%;
    height: 17px;
    width: 21px;
    position: absolute;
    margin-top: -16px;
    display: flex;
    flex-flow: column-reverse;
    color: #20409a;
    transition: transform .25s linear;
}

.starredBlock a::after {
    transition: transform .25s linear;
    transform: rotate(-90deg); this line was commented out before
    font-family: Glyphicons Halflings;
    content: "\e257";
    margin-left: 50%;
    height: 17px;
    width: 21px;
    position: absolute;
    margin-top: -16px;
    display: flex;
    flex-flow: column-reverse;
} */

.toolsaccordion h3 {
    width: 100%;
    line-height: 2;
    margin: 0px;
}


/* accordion pane */

.toolsaccordion div>.highpane {
    font-size: 13px;
    width: 100%;
    display: none;
    border-top: solid white 1px;
    border-bottom: solid white 1px;
}

.toolsaccordion div:target>.highpane {
    display: block;
}

.toolsaccordion div>.lowpane {
    font-size: 13px;
    width: 100%;
    display: none;
}

.toolsaccordion div:target>.lowpane {
    display: block;
}

.toolsaccordion a,
.toolsaccordion A:visited,
.toolsaccordion A:active {
    text-decoration: none;
    padding-left: 30px;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
    padding-right: 10px;
}

.toolsaccordion div.highpane a {
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.toolsaccordion div.lowpane a {
    color: #0b2240;
    font-size: 12px;
}

.toolsaccordion H3 A:link,
.toolsaccordion H3 A:visited {
    color: #0b2240;
    font-family: Arial;
    font-weight: bold;
    margin-left: -9px;
    font-size: 17px;
    background: none;
    display: inline-block;
    line-height: 1.2;
}

.toolsaccordion H3>A:Hover {
    color: #6f7072;
}

.toolsaccordion div.highpane>a:hover {
    color: #fa8c35;
    font-weight: bold;
}

.toolsaccordion div.highpane h4 a,
.toolsaccordion H4 A:visited {
    color: #0b2240 !important;
    font-family: Arial;
    font-weight: bold;
    margin-left: -9px;
    font-size: 15px;
    background: none;
}

.toolsaccordion H4 A:Hover,
.toolsaccordion div.lowpane a:hover {
    color: #a1d6fb;
}

.accordionDiv:nth-child(n+8) {
    display: none;
}

@media (max-width: 767px) {
    .toolsaccordion {
        width: 100%;
    }
    .paneDrop {
        width: 100% !important;
        left: 0% !important;
    }
}

@media (max-width: 525px) {
    .toolsaccordion div>.highpane {
        width: 75%;
    }
    .starredBlock a::after {
        margin-left: 75%;
    }
    .expandPlus a::after {
        margin-left: 75%;
    }
}

@media (max-width: 320px) {
    .toolsaccordion div>.highpane {
        width: 100%;
    }
    .starredBlock a::after {
        margin-left: 90%;
    }
    .expandPlus a::after {
        margin-left: 90%;
    }
}