.faq_outer {
width: 100%;
}
.faq_inner {
    margin-bottom: 30px;
}
.faq_title {
padding: 0 15px 20px;
    font-size: 22px;
    font-weight: 300;
}
.faq_box {
    border-radius: 6px;
    box-shadow: 0 0 6px 0 #000;
}
.faq_row .question {
	background: linear-gradient(#242d35, #1d252b);
    padding: 10px 40px;
    position: relative;
    cursor: pointer;
    border-top: 1px solid #38444e;
    border-bottom: 1px solid #000;
	min-height: 50px;
}
.faq_row .question::before, .faq_row .question::after {
    width: 40px;
    height: 46px;
    display: block;
    content: "";
    position: absolute;
    top: 0;
    z-index: 9;
}
.faq_row .question::before {
    background: url(/images/faq_icon.png) center center no-repeat;
    left: 0;
}
.faq_row .question::after {
    background: url(/images/arrow_white_sm.png) center center no-repeat;
    right: 0;
}
.faq_row .answer {
	min-height: 70px;
    padding: 15px 40px 30px;
    background: #26343f;
    display: none;
}
.faq_row.active .answer {
    display: block;
}
.faq_row:first-child .question {
    border-radius: 6px 6px 0 0;
}
.faq_row:last-child .question {
    border-radius: 0 0 6px 6px;
}
.faq_row .answer ul {
    margin: 6px 0 15px 10px;
}
.faq_row .answer ul li {
    padding: 0 0 3px;
}
.head {
position: relative;
    display: inline-block;
    width: 100%;
}
#faq_search {
    width: calc(100% - 70px);
    color: #000;
    float: left;
    margin: 0;
    border-radius: 5px 0 0 5px;
    position: relative;
    padding: 6px 64px 6px 12px;
    box-sizing: border-box;
    height: 60px;
	z-index:1;
}
#faq_search_btn {
    width: 70px;
    height: 60px;
    float: left;
    margin: 0;
    background: linear-gradient(#263039, #1a2127);
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    position: relative;
}
#faq_search_btn::before {
    display: block;
    content: "";
    position: absolute;
    background: url(/images/icon_search.png) center center no-repeat;
    width: 100%;
    height: 100%;
}
.faq_inner:first-child {
    margin-top: 30px;
}
.faq_outer .results {
    margin: 15px 0 40px;
}
.faq_outer .results span {
    font-style: italic;
    margin-right: 3px;
    color: #a5e3ff;
}
#faq_search_del {
position: absolute;
    width: 40px;
    height: 40px;
    background: url(/images/icon_delete40.png) center center no-repeat;
    padding: 5px;
    top: 6px;
    right: 78px;
    cursor: pointer;
    opacity: 0.9;
    display: none;
    z-index: 9;
}
#faq_search_del.active {
    display:block;
}
