.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
}
.accordion-section{
}

/*----- Section Titles -----*/
.accordion-section-title {
    padding: 10px 0px;
    margin: 0;
    display: inline-block;
    font-size: 14px;
    color: #fff;
}
.accordion-section-title:before {
    font-family: 'droparrow' !important;
    content: "\e5cf";
    font-size: 18px;
    font-weight: normal;
    float: right;
    text-align: center;
    position: absolute;
    color: #999;
    right: 5px;
    transition: all 0.2s;
}
.accordion-section-title.active:before {
    transform: rotate(-180deg);
    font-family: 'droparrow' !important;
    content: "\e5cf";
    font-size: 18px;
    float: right;
    text-align: center;
    position: absolute;
    color: #999;
    right: 5px;
}
.filter-box-row .accordion-section-title.active:before {
    content: "\e5cf";
    font-family: 'droparrow' !important;
    transform: rotate(180deg);
    font-size: 22px;
    float: right;
    text-align: center;
    position: relative;
    color: #000;
    width: 24px;
}
.footer-menu-box .accordion-section-title.active:before {
    content: "\e5cf";
    font-family: 'droparrow' !important;
    transform: rotate(180deg);
    font-size: 24px;
    float: right;
    text-align: center;
    position: relative;
    color: #000;
    width: 24px;
}
.accordion-section-title:link,
.accordion-section-title:visited{
	color:#000;
}
.accordion-section-title:focus{
	outline:none;
}
.accordion-section-title.active {
	/* Type */
	text-decoration:none;
    padding-bottom: 0;
}
.accordion-section-title:hover {
	/* Type */
	text-decoration:none;
}
.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}
.search-box-title-txt .accordion-section-title{
	color: #FFF !important;
}
.search-box-title-txt .accordion-section-title:before {
    font-family: 'droparrow' !important;
    content: "\e5cf";
    font-size: 35px;
    float: right;
    text-align: center;
    position: relative;
    color: #FFF;
}
.search-box-title-txt .accordion-section-title.active:before {
    content: "\e5ce";
    font-family: 'uparrow' !important;
    font-size: 35px;
    float: right;
    text-align: center;
    position: relative;
    color: #FFF;
}
.according-bg-org{
	line-height:20px;
}
.according-bg-org:link,
.according-bg-org:visited{
	display:block;
}

/*----- Section Content -----*/
.accordion-section-content {
	margin-top: 10px;
	display:none;
    margin-bottom: 10px;
}

/*******************************************************************/
button.accordion {
    background-color: #efefef;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 12px;
    transition: 0.4s;
    margin-bottom: 10px;
    line-height: 24px;
    height: 40px;
}

button.accordion:active, button.accordion:hover {
    background-color: #efefef;
}

button.accordion:before {
    content: '+';
    background-color: #fd6801;
    font-size: 18px;
	font-weight:bold;
    float: right;
    color: #FFF;
    border-radius: 30px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 19px;
    position: relative;
    margin-left: 10px;
	font-family:tahoma;
}

button.accordion.active:before {
    content: "-";
	background-color:#fd6801;
	color:#FFF;
	line-height: 18px;
}

div.panel {
	padding: 0px 0px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.1s ease-in-out;
}

div.panel.show {
    max-height: 9999px;
    margin-bottom: 15px;
}

#search-box{
    background-color: #fd6801;
	color:#FFF;
	font-size:14px;
	margin:0px;
}
#search-box:before,
#search-box:after {
	content:"";
    color:#fd6801;
	background-color: #fd6801;
}

.footer-menu-box .accordion{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.footer-menu-box .accordion .accordion-section{
    flex: 1;
    padding: 0px 10px;
}
.footer-menu-box .accordion .accordion-section:first-child{
    padding-left: 0px;
}
.footer-menu-box .accordion .accordion-section:last-child{
    padding-right: 0px;
}
.footer-menu-box .accordion .accordion-section .accordion-section-title {
    display: none;
}

.footer-menu-box .accordion .accordion-section .accordion-section-title:before {
    content: "";
    top: 10px;
}
.footer-menu-box .accordion .accordion-section .accordion-section-title.active:before{
    top: 0px;
}
.footer-menu-box .accordion .accordion-section .accordion-section-content{
    display: block;
    margin-top: 0;
}
.footer-menu-box .accordion .accordion-section ul{
    margin-top: 0;
}
.footer-menu-box .accordion .accordion-section .accordion-section-content dt {
    font-weight: bold;
    border-bottom: 1px solid #CCC;
    margin-bottom: 10px;
    padding: 10px 0px;
    width: 100%;
}

@media only screen and (max-width:767px){
.accordion-section-title {
}
}