/**
 * File: styles.css
 * Title: BWL Searchable Accordion jQuery Plugin
 * Description: Custom jQuery code for BWL Searchable Accordion jQuery Plugin
 * Author: xenioushk
 * Author Page: http://codecanyon.net/user/xenioushk
 * Website: http://bluewindalb.net
 * Plugin URL: http://codecanyon.net/item/bwl-searchable-accordion-jquery-plugin/8184405?ref=xenioushk
 * Version: 1.1.3
*  Last Update: 03-06-2020
 * Create Date: 04-07-2014
 **/
/*========================================================================*/
/*   TABLE OF CONTENT
/*========================================================================*/
/*
/* 01. Accordion basic styles
        1.1 Expand/Collapse box style.
    02. Accordion search container
    03. Accordion title bar & Themes
        3.1 Default theme(Olive)
        3.2 Red theme
        3.3 Blue theme
        3.4 Green theme
        3.5 Orange theme
        3.6 Yellow theme
        3.7 Custom theme
    04. Accordion content
    05. Pagination styling
    06. Custom nav box
            6.1 Square
            6.2 Arrow
            6.3 Crcile
    07. Custom nav icon
            7.1 Angle
            7.2 Angle Double
            7.3 Caret
            7.4 chevron
    08. RTL support
    09. Responsive styling
/*========================================================================*/
/***********************************************************************************************/
/* 01. Accordion basic styles */
/***********************************************************************************************/
.bwl_acc_container {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}

.bwl_acc_container .animated {
    animation-duration: .3s !important;
    animation-fill-mode: both;
    animation: ease-in-out;
}

/***********************************************************************************************/
/* 1.1: Expand/Collapse Box. */
/***********************************************************************************************/
.acc-ctrl-btn {
    padding: 0;
    margin: 0 0 12px 0;
    box-sizing: border-box;
    text-align: right;
    display: block;
    clear: both;
    width: 100%;
}

.acc-ctrl-btn .acc-expand-all,
.acc-ctrl-btn .acc-collapsible-all {
    width: 24px;
    height: 24px;
    border: 1px solid #cccccc;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.acc-ctrl-btn .acc-expand-all {
    margin-right: 5px;
}

/***********************************************************************************************/
/* 02. Accordion search container */
/***********************************************************************************************/
.accordion_search_container {
    display: none;
    margin: 0 0 12px 0;
    position: relative;
    background: #ffffff;
}

.accordion_search_container .acc_clear_btn {
    position: absolute;
    font-weight: bold;
    cursor: pointer;
    display: none;
}

.accordion_search_container .acc_clear_btn:after {
    background: #ffffff;
    right: 8px;
    top: 4px;
    padding: 5px 10px;
    display: inline-block;
    position: absolute;
    content: 'X';
    color: #000000;
}

.accordion_search_container .rtl_clear_btn {
    position: absolute;
    font-weight: bold;
    cursor: pointer;
    display: none;
}

.accordion_search_container .rtl_clear_btn:before {
    background: #ffffff;
    left: 8px;
    top: 4px;
    padding: 5px 10px;
    display: inline-block;
    position: absolute;
    content: 'X';
    color: #000000;
}

.accordion_search_container .accordion_search_input_box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 8px;
}

.suggestion_box {
    text-align: center;
    padding: 6px 0;
}

.suggestion_box .sbox_title {
    font-weight: bold;
}

.suggestion_box .sbox_keywords a {
    color: inherit;
}

.search_icon {
    background-origin: content-box;
    background: url(../images/search.png) no-repeat;
    background-position: top 10px right 10px;
    background-position-x: 99%;
    background-position-y: 50%;
    border: 1px solid #cccccc;
}

.accordion_search_input_box::-ms-clear {
    display: none;
}

.load {
    background-origin: content-box;
    background: url(../images/loader.gif) no-repeat;
    background-position: top 10px right 10px;
    background-position-x: 99%;
    background-position-y: 50%;
}

.search_result_container {
    line-height: 24px;
    display: none;
    background: #dddddd;
    color: #000000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 12px 5px;
    margin-bottom: 12px;
}

/***********************************************************************************************/
/* 03. Accordion title bar & Themes */
/***********************************************************************************************/
.acc_title_bar {
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 2px 0;
    line-height: 46px;
    font-weight: 500;
    display: block;
    background: transparent;
    overflow: hidden;
    border-radius: 0px 0px 0 10px;
    background-clip: padding-box;
}

.acc_title_bar a {
    color: #ffffff;
    text-decoration: none !important;
    display: flex;
    padding: 6px 12px;
    position: relative;
    line-height: 24px !important;
    min-height: 34px !important;
    align-items: flex-start;
}

.acc_title_bar a span {
    margin-top: -5px;
    flex-grow: 1;
}

.acc_title_bar a.title_icon {
    display: flex;
}

.acc_title_bar a.title_icon i.fa {
    margin: 4px 8px 0 0;
    text-align: center;
}

.acc_title_bar a:hover,
.acc_title_bar a:visited {
    color: #f0f0f0;
    text-decoration: none;
}

.title-bar-active {
    background: transparent;
}

.title-bar-active a {
    color: #f0f0f0;
}

.title-bar-active a:after {
    z-index: 1;
    left: 20px;
    top: 0;
    content: '';
    position: absolute;
    display: inline-block;
    width: 7px;
    height: 46px;
    line-height: 46px;
    background: transparent;
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    -ms-transform: skewX(10deg);
    -o-transform: skewX(0deg);
    transform: skewX(0deg);
}

.title-bar-active a:before {
    display: inline-block;
    width: 48px;
    height: 46px;
    line-height: 46px;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
}

.title-bar-active a:hover {
    color: #f0f0f0;
}

.title-bar-active a:hover:before {
    display: inline-block;
    width: 48px;
    height: 46px;
    line-height: 46px;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
}

/*-- Auto Navigation Shift To Right --*/
.acc_title_bar.nav_pos_right {
    border-radius: 0px 10px 0 0px;
}

.acc_title_bar.nav_pos_right a {
    padding: 12px 60px 12px 12px;
}

.acc_title_bar.nav_pos_right a:before {
    left: initial;
    right: 0;
}

.acc_title_bar.nav_pos_right a:after {
    left: initial;
    right: 20px;
}

/***********************************************************************************************/
/* 3.1 Default theme */
/***********************************************************************************************/
.bwl_acc_container {
    padding: 0 12px;
}

.acc_title_bar a:hover::before {
    content: '';
}

.default-title-bar {
    background: transparent;
    width: 100%;
}

.default-title-bar a {
    color: #000000 !important;
}

.default-title-bar a:after {
    background: transparent;
}

.default-title-bar a:before {
    content: '';
    background: transparent;
}

.default-title-bar a:hover {
    color: #000000;
}

.default-title-bar a:hover:before {
    background: transparent;
}

.default-title-bar-active {
    background: transparent;
}

.default-title-bar-active a {
    color: #f0f0f0;
}

.default-title-bar-active a:after {
    transform: skewX(0deg);
    background: transparent;
}

.default-title-bar-active a:before {
    content: "";
    background: transparent;
}

.default-title-bar-active a:hover {
    color: #f0f0f0;
}

.icon_left, .icon_right {
    width: 18px;
    height: auto;
}

.icon_left {
    margin-right: 15px;
}

.icon_right {
    float: right;
    transition: all 0.3s ease-in-out;
}

/* Rotate icon image 180 degree */
.default-title-bar-active .icon_right {
    transform: rotate(180deg);
}

/***********************************************************************************************/
/* 04. Accordion content */
/***********************************************************************************************/
div.acc_container {
    margin: 0 0 2px 0;
    overflow: hidden;
    clear: both;
    display: none;
}

div.acc_container .block {
    opacity: 1 !important;
}

div.acc_container .block {
    padding: 0 12px;
}

div.acc_container a {
    transition: 0.3s 0.2s ease-out;
}

div.acc_container a:before,
div.acc_container a:after,
div.acc_container a:hover:before,
div.acc_container a:hover:after {
    content: '';
}

/***********************************************************************************************/
/* 05. Pagination styling */
/***********************************************************************************************/
.bsa_pagination_nav_block {
    display: block;
    clear: both;
}

#bsa_page_navigation {
    text-align: right;
}

#bsa_page_navigation a {
    padding: 1px 5px;
    border: 1px solid #cccccc;
    margin: 2px;
    color: black;
    text-decoration: none;
    text-align: center;
    outline: none;
}

#bsa_page_navigation a.active_page {
    color: white;
}

#bsa_page_navigation span.total_pages {
    display: inline-block;
    margin: 5px 0 0 0;
}

#bsa_page_navigation a.previous_link,
#bsa_page_navigation a.next_link {
    padding: 1px 8px;
    font-weight: normal;
}

.default_theme_nav a.active_page {
    background: #b3b330;
}

.red_theme_nav a.active_page {
    background: #e31d1a;
}

.green_theme_nav a.active_page {
    background: #3f9f39;
}

.blue_theme_nav a.active_page {
    background: #2d9fd0;
}

.orange_theme_nav a.active_page {
    background: #ff9900;
}

.yellow_theme_nav a.active_page {
    background: #ffe140;
}

.custom_theme_nav a.active_page {
    background: #2c2c2c;
}

.bsa_dn {
    display: none;
}

/***********************************************************************************************/
/* 06. Custom nav box */
/***********************************************************************************************/
.nav_square {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.nav_square a {
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    -ms-transform: skewX(0deg);
    -o-transform: skewX(0deg);
    transform: skewX(0deg);
}

.nav_square a:before {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.nav_square a:after {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    -ms-transform: skewX(0deg);
    -o-transform: skewX(0deg);
    transform: skewX(0deg);
}

.nav_square:before {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.nav_square:after {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.nav_arrow {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.nav_arrow a {
    padding: 12px 0 12px 62px;
}

.nav_arrow a:after {
    left: -4px;
    top: 0;
    content: '';
    width: 48px;
    height: 48px;
    line-height: 46px;
    transform: rotate(45deg);
    transition: 0.5s 0.2s ease-out;
}

.nav_arrow a:before {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.nav_circle {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.nav_circle a {
    padding: 12px 12px 12px 62px;
}

.nav_circle a:after {
    left: 36px;
    top: 33%;
    content: '';
    width: 18px;
    height: 18px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    line-height: 18px;
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
    -webkit-transition: 0.5s 0.2s ease-out;
    -moz-transition: 0.5s 0.2s ease-out;
    -o-transition: 0.5s 0.2s ease-out;
    transition: 0.5s 0.2s ease-out;
}

.nav_circle a:before {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}


.acc_title_bar.nav_box_transparent {
    clear: both;
}

.acc_title_bar.nav_box_transparent a {
    padding-left: 48px;
    clear: both;
}

.acc_title_bar.nav_box_transparent a:before {
    background: none;
}

.acc_title_bar.nav_box_transparent a:after {
    background: none;
}

.acc_title_bar.nav_pos_right {
    border-radius: 0px 0px 10px 0;
}

.acc_title_bar.nav_pos_right a {
    padding: 12px 60px 12px 12px;
}

.acc_title_bar.nav_pos_right a:after {
    left: initial;
    right: 20px;
    -webkit-transform: skewX(-50deg);
    transform: skewX(-50deg);
}

.acc_title_bar.nav_pos_right.nav_square {
    border-radius: 0px 0px 0px 0;
}

.acc_title_bar.nav_pos_right.nav_square a {
    clear: both;
}

.acc_title_bar.nav_pos_right.nav_arrow {
    border-radius: 0px 0px 0px 0;
}

.acc_title_bar.nav_pos_right.nav_arrow a {
    clear: both;
}

.acc_title_bar.nav_pos_right.nav_arrow a:after {
    right: -4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.acc_title_bar.nav_pos_right.nav_circle {
    border-radius: 0px 0px 0px 0;
}

.acc_title_bar.nav_pos_right.nav_circle a {
    clear: both;
}

.acc_title_bar.nav_pos_right.nav_circle a:after {
    right: 36px;
    top: 33%;
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
}

[class*="nav_pos_right"][class*="-active"] a::after {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}

/***********************************************************************************************/
/* 08. RTL support */
/***********************************************************************************************/
div.bwl_acc_container_rtl_support {
    direction: rtl;
    unicode-bidi: embed;
    text-align: right;
    clear: right;
}

div.bwl_acc_container_rtl_support .nav_arrow {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

div.bwl_acc_container_rtl_support .nav_arrow a:after {
    right: -4px;
    top: 0;
    content: '';
    width: 48px;
    height: 48px;
    line-height: 46px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.5s 0.2s ease-out;
    -moz-transition: 0.5s 0.2s ease-out;
    -o-transition: 0.5s 0.2s ease-out;
    transition: 0.5s 0.2s ease-out;
}

div.bwl_acc_container_rtl_support .nav_arrow a:before {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

div.bwl_acc_container_rtl_support .nav_circle {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

div.bwl_acc_container_rtl_support .nav_circle a:after {
    right: 36px;
    top: 33%;
    content: '';
    width: 18px;
    height: 18px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    line-height: 18px;
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
    -webkit-transition: 0.5s 0.2s ease-out;
    -moz-transition: 0.5s 0.2s ease-out;
    -o-transition: 0.5s 0.2s ease-out;
    transition: 0.5s 0.2s ease-out;
}

div.bwl_acc_container_rtl_support .nav_circle a:before {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.rtl-title-bar {
    -webkit-border-radius: 0 10px 0 0;
    -moz-border-radius: 0 10px 0 0;
    border-radius: 0 10px 0 0;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.rtl-title-bar a {
    padding: 6px 12px;
}

.rtl-title-bar a:after {
    right: 20px;
    top: 0;
    -webkit-transform: skewX(50deg);
    -moz-transform: skewX(50deg);
    -ms-transform: skewX(50deg);
    -o-transform: skewX(50deg);
    transform: skewX(50deg);
}

.rtl-title-bar a:before {
    right: 0;
    top: 0;
    -webkit-border-radius: 0px 4px 0px 0px;
    -moz-border-radius: 0px 4px 0px 0px;
    border-radius: 0px 4px 0px 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.rtl-title-bar a:hover:before {
    position: absolute;
    right: 0;
    top: 0;
}

.rtl-title-active a:after {
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    -ms-transform: skewX(0deg);
    -o-transform: skewX(0deg);
    transform: skewX(0deg);
}

input.search_icon_rtl {
    background-position: top 10px left 10px;
}

input.load_rtl {
    background-position: top 10px left 10px;
}

.highlight {
    display: inline;
    font-style: normal;
}

/***********************************************************************************************/
/* 09. Responsive styling */
/***********************************************************************************************/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .acc_title_bar {
        min-height: 46px;
        line-height: 18px;
    }

    .acc_title_bar a {
        color: #ffffff;
        text-decoration: none;
        display: block;
        padding: 6px 12px;
        position: relative;
        line-height: 24px !important;
        min-height: 34px !important;

    }

    .nav_circle a::after,
    .nav_arrow a::after {
        display: none;
    }
}

@media only screen and (min-width: 0px) and (max-width: 479px) {
    .acc_title_bar {
        clear: both;
    }

    .acc_title_bar a {
        color: #ffffff;
        text-decoration: none;
        display: block;
        padding: 6px 12px;
        position: relative;
        height: 100%;
        line-height: 20px !important;
        min-height: 32px !important;
    }

    .nav_circle a::after,
    .nav_arrow a::after {
        display: none;
    }

    .rtl-title-bar a {
        padding: 0px 56px 0 12px;
    }
}
