#faq-faq .faq-list-item {
    margin-bottom: 1em;
    margin-top: 1em;
}

.faq-question {
    cursor: pointer;
    position: relative;
    display: block;
    background-color: #00406B;
    color: #FFFFFF !important;
    margin: 0 !important;
    padding: 0.5em 2em 0.5em 0.5em;
    font-size: 1.3rem;
    font-weight: 700;
}

h5.faq-question.showans {
    border-radius: 15px;
}

h5.faq-question:not(.showans) {
    border-radius: 15px;
}

.faq-question:after {
    position: absolute;
    right: 5px;
    top: -7px;
    content: "\00BB";
    transform: rotate(90deg);
    transition: all 150ms ease-in-out;
    padding: .35em;
    color: #FFFFFF;
	font-size: 2rem;
}

.faq-question.showans:after {
    transform: rotate(270deg);
    padding: .35em;
    color: #FFFFFF;
}

.faq-question:hover {
    background-color: #1A759F;
}

.faq-answer {
	color: #393E41;
	font-weight: 600;
    padding: 0.5em;
    padding-left: 1em;
    background-color: #F4F8FC;
    border-bottom-left-radius: 15px;
    border-left: 1px solid #00406B;
    border-right: 1px solid #00406B;
    border-bottom: 1px solid #00406B;
    border-bottom-right-radius: 15px;
}

.faq-answer p:only-child {
    margin-bottom: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}