/**
 * 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;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 24px;
    font-weight: 300;
}
/***********************************************************************************************/
/* 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;
        font-size: 12px;
        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;
}

    .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: 12px 5px;
        background-color: #FFFFFF;
    }

.suggestion_box {
    text-align: center;
    padding: 6px 0;
    font-size: 13px;
}

    .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: #ddd;
    color: #000;
    -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 */
/***********************************************************************************************/
h2.acc_title_bar {
    padding: 0;
    margin: 0 0 15px 0; /*0 0 2px 0  2021*/
    /*height: 46px;	*/
    line-height: 46px;
    font-size: 15px;
    font-weight: 500;
    display: block;
    background: transparent;
    overflow: hidden;
    -webkit-border-radius: 0px 0px 0 10px;
    -moz-border-radius: 0px 0px 0 10px;
    border-radius: 0px 0px 0 10px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-transition: font-size 0.5s 0.1s ease-in;
    -moz-transition: font-size 0.5s 0.1s ease-in;
    -o-transition: font-size 0.5s 0.1s ease-in;
    transition: font-size 0.5s 0.1s ease-in;
}

    h2.acc_title_bar a { /*2021*/
        /*color: #faad1b;*/
        text-decoration: none;
        display: block;
        padding: 12px 44px 12px 16px; /*padding: 12px 12px 6px 20px;*/
        position: relative;
        /*line-height: 24px;*/
        min-height: 34px;
    }

        h2.acc_title_bar a:after {
            z-index: 1;
            left: 95%;
            top :33%;
            border-radius: 30px;
            content: ""; /* \f077 2024*/
            font-family: 'FontAwesome';
            position: absolute;
            display: inline-block;
            width: 30px;
            min-height: 30px; /*500*/
            line-height: 30px; /*52px;*/
            background: transparent;
            margin-left:-20px;
        }

        h2.acc_title_bar a:before {
            z-index: 2;
            content: "\f067";
            font-family: 'FontAwesome';
            display: inline-block;
            width: 30px;
            min-height: 30px; /*500*/
            line-height: 30px; /*52px;*/
            background: transparent;
            position: absolute;
            left: 95%;
            top: 33%;
            text-align: center;
            overflow: hidden;
            -webkit-border-radius: 30px; /*0px 4px 0 4px;*/
            -moz-border-radius: 30px; /*0px 4px 0 4px;*/
            border-radius: 30px; /*0px 4px 0 4px;*/
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
            margin-left: -20px;
        }

        h2.acc_title_bar a:hover {
            /*
  color: #F0F0F0;
        */
        }

            h2.acc_title_bar a:hover:before {
                /*content: "\f067";*/
                font-family: 'FontAwesome';
                display: inline-block;
                width: 30px;
                min-height: 30px; /*500*/
                line-height: 30px; /*52px;*/
                background: transparent;
                position: absolute;
                left: 95%;
                top: 33%;
            }

h2.title-bar-active {
    background: transparent;
}

    h2.title-bar-active a {
        color: #F0F0F0;
    }

        h2.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);
        }

        h2.title-bar-active a:before {
            /*content: "\f068";*/
            font-family: 'FontAwesome';
            display: inline-block;
            width: 48px;
            height: 46px;
            line-height: 46px;
            background: transparent;
            position: absolute;
            left: 0;
            top: 0;
        }

        h2.title-bar-active a:hover {
            color: #F0F0F0;
        }

            h2.title-bar-active a:hover:before {
                /*content: "\f068";*/
                font-family: 'FontAwesome';
                display: inline-block;
                width: 48px;
                height: 46px;
                line-height: 46px;
                background: transparent;
                position: absolute;
                left: 0;
                top: 0;
            }
/*-- Auto Navgation Shift To Right --*/
h2.acc_title_bar.nav_pos_right {
    border-radius: 0px 10px 0 0px;
}

    h2.acc_title_bar.nav_pos_right a {
        padding: 12px 60px 6px 12px;
    }

        h2.acc_title_bar.nav_pos_right a:before {
            left: initial;
            right: 0;
        }

        h2.acc_title_bar.nav_pos_right a:after {
            left: initial;
            right: 20px;
        }
/***********************************************************************************************/
/* 3.1 Default theme */
/***********************************************************************************************/
h2.default-title-bar {
    font-weight: 500;
    font-size: 16px;
    color: #162C57;
}

    h2.default-title-bar a {
        font-weight: 600;
        font-size: 16px;
        color: #162C57;
    }

        h2.default-title-bar a:after {
            background: #FFFFFF;
        }

        h2.default-title-bar a:before {
            background: #FFFFFF;
        }

        h2.default-title-bar a:hover {
            /*
  color: #000000;  
  font-size:20px;
  font-weight:800;
        */
        }

            h2.default-title-bar a:hover:before {
                /*color: #000000;   
  font-size:20px;
  font-weight:800;*/
            }

h2.default-title-bar-active {
    font-weight: 600;
    font-size: 16px;
    color: #162C57;
}

    h2.default-title-bar-active a {
       
        font-weight: 600;
        font-size: 16px;
        color: #162C57;
    }

        h2.default-title-bar-active a:after {
            /*
  -webkit-transform: skewX(0deg);
  -moz-transform: skewX(0deg);
  -ms-transform: skewX(0deg);
  -o-transform: skewX(0deg);
  transform: skewX(0deg);
  background: #cfcf4d;
        */
        }

        h2.default-title-bar-active a:before {
            content: "\f068";
            background: #FFFFFF;
        }

        h2.default-title-bar-active a:hover {
            /*
  color: #000000;*/
        }

            h2.default-title-bar-active a:hover:before {
                /*content: "\f068";
  background: #000000;
      */
            }
/***********************************************************************************************/
/* 3.2 Red theme  */
/***********************************************************************************************/
h2.theme-red-title-bar {
    background: #E31D1A;
}

    h2.theme-red-title-bar a {
        color: #FFFFFF;
    }

        h2.theme-red-title-bar a:after {
            background: #5a0b0a;
        }

        h2.theme-red-title-bar a:before {
            background: #5a0b0a;
        }

        h2.theme-red-title-bar a:hover {
            color: #F0F0F0;
        }

            h2.theme-red-title-bar a:hover:before {
                background: #5a0b0a;
            }

h2.theme-red-title-active {
    background: #b51715;
}

    h2.theme-red-title-active a {
        color: #F0F0F0;
    }

        h2.theme-red-title-active a:after {
            -webkit-transform: skewX(0deg);
            -moz-transform: skewX(0deg);
            -ms-transform: skewX(0deg);
            -o-transform: skewX(0deg);
            transform: skewX(0deg);
            background: #710e0d;
        }

        h2.theme-red-title-active a:before {
            content: "\f068";
            background: #710e0d;
        }

        h2.theme-red-title-active a:hover {
            color: #F0F0F0;
        }

            h2.theme-red-title-active a:hover:before {
                content: "\f068";
                background: #710e0d;
            }
/***********************************************************************************************/
/* 3.3 Blue theme  */
/***********************************************************************************************/
h2.theme-blue-title-bar {
    background: #2D9FD0;
}

    h2.theme-blue-title-bar a {
        color: #FFFFFF;
    }

        h2.theme-blue-title-bar a:after {
            background: #091f28;
        }

        h2.theme-blue-title-bar a:before {
            background: #091f28;
        }

        h2.theme-blue-title-bar a:hover {
            color: #F0F0F0;
        }

            h2.theme-blue-title-bar a:hover:before {
                background: #091f28;
            }

h2.theme-blue-title-active {
    background: #247fa6;
}

    h2.theme-blue-title-active a {
        color: #F0F0F0;
    }

        h2.theme-blue-title-active a:after {
            -webkit-transform: skewX(0deg);
            -moz-transform: skewX(0deg);
            -ms-transform: skewX(0deg);
            -o-transform: skewX(0deg);
            transform: skewX(0deg);
            background: #164f67;
        }

        h2.theme-blue-title-active a:before {
            content: "\f068";
            background: #164f67;
        }

        h2.theme-blue-title-active a:hover {
            color: #F0F0F0;
        }

            h2.theme-blue-title-active a:hover:before {
                content: "\f068";
                background: #164f67;
            }
/***********************************************************************************************/
/* 3.4 Green theme  */
/***********************************************************************************************/
h2.theme-green-title-bar {
    background: #3F9F39;
}

    h2.theme-green-title-bar a {
        color: #FFFFFF;
    }

        h2.theme-green-title-bar a:after {
            background: #122e11;
        }

        h2.theme-green-title-bar a:before {
            background: #122e11;
        }

        h2.theme-green-title-bar a:hover {
            color: #F0F0F0;
        }

            h2.theme-green-title-bar a:hover:before {
                background: #122e11;
            }

h2.theme-green-title-active {
    background: #388c32;
}

    h2.theme-green-title-active a {
        color: #F0F0F0;
    }

        h2.theme-green-title-active a:after {
            -webkit-transform: skewX(0deg);
            -moz-transform: skewX(0deg);
            -ms-transform: skewX(0deg);
            -o-transform: skewX(0deg);
            transform: skewX(0deg);
            background: #1a4117;
        }

        h2.theme-green-title-active a:before {
            content: "\f068";
            background: #1a4117;
        }

        h2.theme-green-title-active a:hover {
            color: #F0F0F0;
        }

            h2.theme-green-title-active a:hover:before {
                content: "\f068";
                background: #1a4117;
            }
/***********************************************************************************************/
/* 3.5 Orange theme  */
/***********************************************************************************************/
h2.theme-orange-title-bar {
    background: #FF9900;
}

    h2.theme-orange-title-bar a {
        color: #FFFFFF;
    }

        h2.theme-orange-title-bar a:after {
            background: #cc7a00;
        }

        h2.theme-orange-title-bar a:before {
            background: #cc7a00;
        }

        h2.theme-orange-title-bar a:hover {
            color: #F0F0F0;
        }

            h2.theme-orange-title-bar a:hover:before {
                background: #cc7a00;
            }

h2.theme-orange-title-active {
    background: #e68a00;
}

    h2.theme-orange-title-active a {
        color: #F0F0F0;
    }

        h2.theme-orange-title-active a:after {
            -webkit-transform: skewX(0deg);
            -moz-transform: skewX(0deg);
            -ms-transform: skewX(0deg);
            -o-transform: skewX(0deg);
            transform: skewX(0deg);
            background: #804d00;
        }

        h2.theme-orange-title-active a:before {
            content: "\f068";
            background: #804d00;
        }

        h2.theme-orange-title-active a:hover {
            color: #F0F0F0;
        }

            h2.theme-orange-title-active a:hover:before {
                content: "\f068";
                background: #804d00;
            }
/***********************************************************************************************/
/* 3.6 Yellow theme  */
/***********************************************************************************************/
h2.theme-yellow-title-bar {
    background: #FFE140;
}

    h2.theme-yellow-title-bar a {
        color: #2C2C2C;
    }

        h2.theme-yellow-title-bar a:after {
            background: #d9b700;
        }

        h2.theme-yellow-title-bar a:before {
            background: #d9b700;
        }

        h2.theme-yellow-title-bar a:hover {
            color: #2C2C2C;
        }

            h2.theme-yellow-title-bar a:hover:before {
                background: #d9b700;
            }

h2.theme-yellow-title-active {
    background: #f3cc00;
}

    h2.theme-yellow-title-active a:after {
        -webkit-transform: skewX(0deg);
        -moz-transform: skewX(0deg);
        -ms-transform: skewX(0deg);
        -o-transform: skewX(0deg);
        transform: skewX(0deg);
        background: #c0a100;
    }

    h2.theme-yellow-title-active a:before {
        content: "\f068";
        background: #c0a100;
    }

    h2.theme-yellow-title-active a:hover:before {
        content: "\f068";
        background: #c0a100;
    }
/***********************************************************************************************/
/* 3.7 Custom theme  */
/***********************************************************************************************/
h2.theme-custom-title-bar {
    background: #2c2c2c;
}

h2.theme-custom-title-active a:before {
    content: "\f068";
}

h2.theme-custom-title-active a:hover:before {
    content: "\f068";
}
/***********************************************************************************************/
/* 04. Accordion content */
/***********************************************************************************************/
div.acc_container {
    margin: 0 0 2px 0;
    padding: 0;
    overflow: hidden;
    clear: both;
    background: #FBFBFB;
    border: 0px solid #d6d6d6; /*2021*/
    display: none;
}

    div.acc_container .block {
        padding: 0 12px;
    }
/***********************************************************************************************/
/* 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;
        font-size: small;
    }

    #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 */
/***********************************************************************************************/
h2.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;
}

    h2.nav_square a {
        -webkit-transform: skewX(0deg);
        -moz-transform: skewX(0deg);
        -ms-transform: skewX(0deg);
        -o-transform: skewX(0deg);
        transform: skewX(0deg);
    }

        h2.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;
        }

        h2.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);
        }

    h2.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;
    }

    h2.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;
    }

h2.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;
}

    h2.nav_arrow a {
        padding: 12px 0 6px 62px;
    }

        h2.nav_arrow a:after {
            left: -4px;
            top: 50%;
            margin-top: -24px;
            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;
        }

        h2.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;
        }

h2.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;
}

    h2.nav_circle a {
        padding: 12px 12px 6px 62px;
    }

        h2.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;
        }

        h2.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;
        }

h2.acc_title_bar.nav_box_transparent {
    clear: both;
}

    h2.acc_title_bar.nav_box_transparent a {
        padding-left: 48px;
        clear: both;
    }

        h2.acc_title_bar.nav_box_transparent a:before {
            background: none;
        }

        h2.acc_title_bar.nav_box_transparent a:after {
            background: none;
        }

h2.acc_title_bar.nav_pos_right {
    border-radius: 0px 0px 10px 0;
}

    h2.acc_title_bar.nav_pos_right a {
        padding: 12px 60px 6px 12px;
    }

        h2.acc_title_bar.nav_pos_right a:before {
            border-radius: 0px 0px 0 4px;
            left: initial;
            right: 0;
        }

        h2.acc_title_bar.nav_pos_right a:after {
            left: initial;
            right: 20px;
            -webkit-transform: skewX(-50deg);
            transform: skewX(-50deg);
        }

    h2.acc_title_bar.nav_pos_right.nav_square {
        border-radius: 0px 0px 0px 0;
    }

        h2.acc_title_bar.nav_pos_right.nav_square a {
            clear: both;
        }

            h2.acc_title_bar.nav_pos_right.nav_square a:after,
            h2.acc_title_bar.nav_pos_right.nav_square a:before {
                right: 0px;
                -webkit-transform: skewX(0deg);
                transform: skewX(0deg);
            }

    h2.acc_title_bar.nav_pos_right.nav_arrow {
        border-radius: 0px 0px 0px 0;
    }

        h2.acc_title_bar.nav_pos_right.nav_arrow a {
            clear: both;
        }

            h2.acc_title_bar.nav_pos_right.nav_arrow a:after {
                right: -4px;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            h2.acc_title_bar.nav_pos_right.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;
            }

    h2.acc_title_bar.nav_pos_right.nav_circle {
        border-radius: 0px 0px 0px 0;
    }

        h2.acc_title_bar.nav_pos_right.nav_circle a {
            clear: both;
        }

            h2.acc_title_bar.nav_pos_right.nav_circle a:after {
                right: 36px;
                top: 33%;
                -webkit-transform: rotate(70deg);
                transform: rotate(70deg);
            }

            h2.acc_title_bar.nav_pos_right.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;
            }

h2[class*="nav_pos_right"][class*="-active"] a::after {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}
/***********************************************************************************************/
/* 07. Custom nav icon */
/***********************************************************************************************/
h2.nav_icon_angle a:before {
    content: "\f107";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle a:hover:before {
    content: "\f107";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_active a:before {
    content: "\f106";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_active a:hover:before {
    content: "\f106";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_double a:before {
    content: "\f103";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_double a:hover:before {
    content: "\f103";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_double_active a:before {
    content: "\f102";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_double_active a:hover:before {
    content: "\f102";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_caret a:before {
    content: "\f0d8";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_caret a:hover:before {
    content: "\f0d8";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_caret_active a:before {
    content: "\f0d7";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_caret_active a:hover:before {
    content: "\f0d7";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_chevron a:before {
    content: "\f078";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_chevron a:hover:before {
    content: "\f078";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_chevron_active a:before {
    content: "\f077";
    font-family: 'FontAwesome';
}

h2.nav_icon_angle_chevron_active a:hover:before {
    content: "\f077";
    font-family: 'FontAwesome';
}
/***********************************************************************************************/
/* 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 h2.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 h2.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 h2.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 h2.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 h2.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 h2.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;
        }

h2.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;
}

    h2.rtl-title-bar a {
        padding: 12px 60px 6px 12px;
    }

        h2.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);
        }

        h2.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;
        }

        h2.rtl-title-bar a:hover:before {
            position: absolute;
            right: 0;
            top: 0;
        }

h2.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) {
    h2.acc_title_bar {
        min-height: 46px;
        /* line-height: 18px;*/
        font-size: 14px;
    }

        h2.acc_title_bar a {
            /* color: #FFFFFF;*/
            
            text-decoration: none;
            display: block;
            padding: 12px 44px 12px 16px;
            /* padding: 12px 12px 6px 20px; */
            position: relative;
            /* line-height: 24px; */
            min-height: 34px;
        }

    h2.nav_circle a::after,
    h2.nav_arrow a::after {
        display: none;
    }
}

@media only screen and (min-width: 0px) and (max-width: 479px) {
    h2.acc_title_bar {
        clear: both;
        /*
        min-height: 46px;	
        line-height: 24px;
        font-size: 13px;
            */
    }

        h2.acc_title_bar a {
            /*color: #FFFFFF;*/
            text-decoration: none;
            display: block;
            /*padding: 6px 12px 6px 60px;*/
            position: relative;
            height: 100%;
            /*line-height: 20px;*/
            min-height: 32px;
            /*line-height: 14px;*/
        }

    h2.nav_circle a::after,
    h2.nav_arrow a::after {
        display: none;
    }

    h2.rtl-title-bar a {
        padding: 0px 56px 0 12px;
    }
}

/*# sourceMappingURL=styles.css.map */



body {
    margin: 0;
    color: #0B1324;    
    font-family: 'Poppins', sans-serif;
}

.fullwidth-wrap {
    padding-top: 60px;
}

    .fullwidth-wrap h3 {
        color: #3C5164;
    }


section {
    margin-top: 10px;
}

h2.default-title-bar-active,
h2.default-title-bar {
    border: 1px solid #E8E3DC;
    background: -webkit-gradient(linear, left top, right top, from(#FFF), to(#F6F4F1));
    background: -webkit-linear-gradient(left, #FFF 0%, #F6F4F1 100%);
    background: linear-gradient(90deg, #FFF 0%, #F6F4F1 100%);
    border-radius: 6px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

    h2.default-title-bar-active a:before,
    h2.default-title-bar-active a:after,
    h2.acc_title_bar a:before,
    h2.acc_title_bar a:after {
        /*content: none;*/
        /*  content: "\f077";
        font-family: 'FontAwesome'; */
    }

h2.acc_title_bar {
    border-radius: 6px;
}

div.acc_container {
    padding: 15px;
}

    div.acc_container .block {
        padding: 10px 10px 5px 10px;
        margin: 10px 0;
        /*border-bottom: 1px solid #449A0B; 2021*/
        display: flex;
        flex-flow: row;
    }

.block:nth-child(odd) {
    /*background: #f7f7f7;*/
}
.block:nth-child(odd), .block:nth-child(even) {
    /*background: #f7f7f7;*/
    border-radius: 6px;
    border: 1px solid #E8E3DC;
    background: -webkit-gradient(linear, left top, right top, from(#FFF), to(#F6F4F1));
    background: -webkit-linear-gradient(left, #FFF 0%, #F6F4F1 100%);
    background: linear-gradient(90deg, #FFF 0%, #F6F4F1 100%);
}

div.acc_container .block .left-wrap {
    width: 80%;
    text-align: left;    
    border: none;
    font-weight: 400;
    text-transform: capitalize;
    padding: 10px 5px 10px 10px;
    line-height: normal;
    min-width: 105px;
    font-size:12px;
}

div.acc_container .block .right-wrap {
    /*display:none;*/
    width: 20%;
    text-align: right;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 5px 10px 10px;
    line-height: normal;
}

    div.acc_container .block .right-wrap h3 {
        margin-bottom: 5px;
        font-size: 18px;
        color: #005a70;
        font-weight: 400;
        /*line-height:1;*/
    }

div.acc_container a.btn {
    margin-top: 5px;
    display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

h3 {
    font-size: 16px;
    /*line-height: 36px;    */
    color: #162C57 !important;
    font-weight: 500;
    margin-bottom: 0px; /*12px;*/
}

a {
    text-decoration: none;
    -webkit-transition: all 0.1s ease-in 0s;
    -moz-transition: all 0.1s ease-in 0s;
    -o-transition: all 0.1s ease-in 0s;
    transition: all 0.1s ease-in 0s;
    color: #3C5164;
}

.btn {
    padding: 10px 20px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    letter-spacing: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease-in 0s;
    -moz-transition: all 0.2s ease-in 0s;
    -o-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
}

.primary-btn {
    background-color: #3C5164;
    color: #ffffff;
    border-color: #344c73;
}

    .primary-btn:hover {
        background-color: #717175;
        color: #ffffff;
        border-color: #717175;
    }

.btn-arrow-link,
.arrow {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 24px;
    font-size: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .btn-arrow-link,
    .arrow:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 10px;
        height: 10px;
        border-style: solid;
        border-width: 2px 2px 0 0;
        border-color: #162C57 #162C57 transparent transparent;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        margin: -5px 0 0 -7px;
    }

@media screen and (max-width: 550px) {
    .dateSpan {
    }
}
/*
@media screen and (max-width: 800px) {
    div.acc_container .block .right-wrap, div.acc_container .block .left-wrap {
        width: 10%;
        text-align: left;
        margin-left:40px;
    }
    div.acc_container .block{
        display:block;
    }
        div.acc_container .block .right-wrap {
            margin-top: 5px;
        }
}
    */
