/*
*  STYLE FOR ACCORDION
*
*
*  [Table of contents]
*
*  [&. Content / #key]
*  [Let press Ctrl + f and type of paste the key, then press Enter to search the content ]
*
*  Summary: Accordion
*
*
*  1. General
*  2. Accordion Icon Plus
*  3. Accordion Icon Arrow
*
*
*/


/*----------  1. General  ---------------*/
    .slz-accordion-group .accordion-panel + .accordion-panel {
        margin-top: 5px;
    }

    .accordion-panel {
        margin-bottom: 10px;
        border: 2px solid #ececec;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        box-shadow: none;
        -webkit-box-shadow: none;
    }

    .panel-heading {
        background-color: #fff;
        border: none;
        color: #666c72;
        padding: 0;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
    }

    .panel-heading a {
        display: block;
        color: inherit;
        font-size: 16px;
        padding: 0;
        text-transform: capitalize;
        position: relative;
    }

    .panel-heading a i,
    .panel-heading a span {
        padding: 10px 15px;
        display: inline-block;
        vertical-align: top;
        line-height: 24px;
        font-style: normal;
        color: #333;
        font-weight: 500;
        padding: 15px 50px 15px 30px;
        transition: all 0.3 ease;

    }

    .panel-heading a i {
        padding: 0;
    }

    .panel-heading i.title-icon {
        padding: 0 15px 0 0;
        margin-top: -1px;
    }

    .panel-collapse {
        border-top: 2px solid #ececec;
    }

    .panel-body {
        padding: 15px 30px;
        color: #777;
    }

    .panel-heading .icon-plus,
    .panel-heading .icon-arrow {
        right: 25px;
        top: 13px;
        text-align: center;
        position: absolute;
        font-size: inherit;
        color: inherit;
    }

    .panel-heading.icons-left .icon-plus,
    .panel-heading.icons-left .icon-arrow {
        position: absolute;
        left: 25px;
        top: 13px;
        right: auto;
        padding: 0;
    }

    .accordion-panel .panel-heading a:hover i,
    .accordion-panel .panel-heading a:focus i,
    .accordion-panel .panel-heading a:active i {
        color: #333;
    }

    .accordion-panel .panel-heading:hover a span,
    .accordion-panel .panel-heading:focus a span,
    .accordion-panel .panel-heading a:not(.collapsed) span  {
        color: #304fe9;
    }

    .panel-heading.icons-left a span {
        padding: 15px 30px 15px 60px;
    }

/*----------  2. Accordion Icon Plus  ----------*/
    .panel-heading .icon-plus:before {
        font-family: 'FontAwesome';
        content: '\f068';
    }

    .panel-heading .collapsed .icon-plus:before {
        content: '\f067';
    }

/*----------  3. Accordion Icon Arrow  ---------*/
    .panel-heading .icon-arrow:before {
        font-family: 'FontAwesome';
        content: '\f105';
        min-width: 14px;
        display: inline-block;
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .panel-heading .collapsed .icon-arrow:before {
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }
    