/* .container{
                            max-width: 1380px;
                            width: 100%;
                        }*/
.flt-label {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}
/* Side Filters */
.filter-by {
    margin-top: 15px;
    margin-bottom: 0;
    color: #333;
    font-weight: bold;
    letter-spacing: 0;
}

.filter-by-result {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    color: #333;
    letter-spacing: 0;
}

    .accordion-button .show {
        transform: rotate(0deg);
        transition: all .3s ease-in;
    }

    .accordion-button.collapsed .show {
        transform: rotate(180deg);
        transition: all .3s ease-in;
    }

.accordion-header {
    margin-bottom: 0px;
}

.accordion-item {
    border-bottom: .5px solid #ddd;
    padding: 15px 0;
}

    .accordion-item .accordion-collapse {
        margin-top: 15px;
    }

.checkbox-custom label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0;
}

    .checkbox-custom label.default {
        font-size: .8em;
    }

    .checkbox-custom label:after,
    .radio label:after {
        content: '';
        display: table;
        clear: both;
    }

.checkbox-custom .cr,
.radio .cr {
    position: relative;
    border: .5px solid #959595;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    margin-right: 5px;
    font-size: 1.2em;
}

    .checkbox-custom .cr .cr-icon,
    .radio .cr .cr-icon {
        position: absolute;
        font-size: .8em;
        line-height: 0;
        top: 50%;
        left: 20%;
    }

.checkbox-custom label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

    .checkbox-custom label input[type="checkbox"] + .cr > .cr-icon,
    .radio label input[type="radio"] + .cr > .cr-icon {
        transform: scale(1);
        opacity: 0;
        transition: all .3s linear;
    }

/* .checkbox-custom label:has(input[type="checkbox"]:checked){
                            font-weight: 600;
                        } */

.checkbox-custom input[type="checkbox"]:checked + .cr {
    background: #105cb6;
    border: 1px solid #105cb6;
    color: white;
}

.checkbox-custom label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1);
    opacity: 1;
}

.checkbox-custom label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}

#clear-all {
    display: none;
    float: right;
    margin-top: 6px;
}

/** Search box **/
.dataTables_filter {
    position: relative;
    margin: 15px 0 25px;
}

    .dataTables_filter i {
        position: absolute;
        right: 10px;
        top: 18px;
        color: #333;
        font-size: 18px;
        padding-right: 10px;
    }

.table-wrapper {
    margin-top: 15px;
}

input.form-search.form-control {
    padding: 25px 20px;
    border-color: #ccc;
}

.flterSort {
    display: inline-block;
    float: right;
    margin-top: 15px;
}

#sortFltr {
    padding: 8px 15px;
    border-radius: 4px;
    border-color: #ccc;
}

div.dataTables_length select {
    padding: 8px 15px;
    border-radius: 4px;
    border-color: #ccc;
}

/** Pagination **/
.dataTables_paginate {
    margin-top: 30px;
    text-align: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: .2em .7em !important;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.current,
    .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        color: #fff !important;
        background: #105bb6;
        border-radius: 50px;
        border-color: #105bb6;
        font-weight: 600;
    }

.paginate_button.previous,
.paginate_button.next {
    display: none;
}

.checkbox-label {
    margin-bottom: 0px;
    font-weight: normal;
}

.selected-option {
    font-weight: bold;
}

.checkbox-label:hover {
    cursor: pointer;
    font-weight: bold;
}

/** DataTable  **/
#caseStudy_wrapper {
    margin-bottom: 50px;
}

.caseStudy-table {
    width: 100%;
    display: block;
    margin-top: 10px;
}

    .caseStudy-table tr {
        width: calc(100% / 3 - 10px);
        height: 380px;
        position: relative;
        margin: 5px;
        float: left;
        border: .5px solid #ccc;
        border-radius: 4px;
        margin-left: 5px;
        background: white;
    }


        .caseStudy-table tr td {
            width: 100%;
            display: block;
        }

.cs-list-content {
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;
}

    .cs-list-content a:hover {
        text-decoration: underline;
    }

    .cs-list-content .title {
        padding: 0 15px;
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: #105cb6;
        line-height: 1.2;
    }

    .cs-list-content .summary {
        font-size: 14px;
        font-weight: 400;
        padding: 0 15px;
    }

.caseStudy-table tbody {
    display: table;
    width: 100%;
}


ul.filter-selected-list {
    list-style: none;
    padding: 0;
    display: inline-block;
}

    ul.filter-selected-list li {
        display: inline-block;
        padding: 2px 25px 2px 10px;
        border-radius: 4px;
        margin-right: 5px;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

        ul.filter-selected-list li.filter-selected {
            border: .5px solid #ccc;
            position: relative;
        }

            ul.filter-selected-list li.filter-selected:hover {
                background: #ed1c24;
                border: 1px solid #ed1c24;
                color: white;
            }

            ul.filter-selected-list li.filter-selected:before {
                content: "x";
                position: absolute;
                right: 5px;
                top: 1px;
                font-size: 16px;
                font-weight: 600;
            }

        ul.filter-selected-list li.clear-all {
            color: red;
            position: static;
            padding: 0 10px;
        }

            ul.filter-selected-list li.clear-all:hover {
                background: red;
                color: white;
            }

ul.category-list {
    list-style: none;
    padding: 0;
    margin: 0 15px;
    display: inline-block;
}

    ul.category-list li {
        display: inline-block;
        border: .5px solid #ddd;
        padding: 0px 5px;
        border-radius: 4px;
        margin-right: 2px;
        margin-bottom: 5px;
        font-size: 12px;
        font-weight: 400;
    }

@media(max-width:1170px) {
    .caseStudy-table tr {
        width: 31%;
        margin-left: 10px;
    }
}

@media(max-width: 992px) {
}

@media(max-width:680px) {
    .caseStudy-table tr {
        width: 46%;
        margin-left: 15px;
    }
}

@media(max-width:550px) {
    .caseStudy-table tr {
        max-width: 100%;
        width: 100%;
        height: 100%;
        min-height: 200px;
        margin-left: 0px;
    }
}

.dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
}

.dataTables_filter label {
    width: 100%;
}

    .dataTables_filter label input {
        width: 100%;
        padding: 3px 12px 3px 40px;
    }

.glyphicon {
    position: absolute;
    z-index: 10;
    margin: 23px 10px 10px 12px;
}

ul.typeahead {
    width: 100%;
}

[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    width: 10px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjEyMy4wNXB4IiBoZWlnaHQ9IjEyMy4wNXB4IiB2aWV3Qm94PSIwIDAgMTIzLjA1IDEyMy4wNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTIzLjA1IDEyMy4wNTsiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZD0iTTEyMS4zMjUsMTAuOTI1bC04LjUtOC4zOTljLTIuMy0yLjMtNi4xLTIuMy04LjUsMGwtNDIuNCw0Mi4zOTlMMTguNzI2LDEuNzI2Yy0yLjMwMS0yLjMwMS02LjEwMS0yLjMwMS04LjUsMGwtOC41LDguNQ0KCQljLTIuMzAxLDIuMy0yLjMwMSw2LjEsMCw4LjVsNDMuMSw0My4xbC00Mi4zLDQyLjVjLTIuMywyLjMtMi4zLDYuMSwwLDguNWw4LjUsOC41YzIuMywyLjMsNi4xLDIuMyw4LjUsMGw0Mi4zOTktNDIuNGw0Mi40LDQyLjQNCgkJYzIuMywyLjMsNi4xLDIuMyw4LjUsMGw4LjUtOC41YzIuMy0yLjMsMi4zLTYuMSwwLTguNWwtNDIuNS00Mi40bDQyLjQtNDIuMzk5QzEyMy42MjUsMTcuMTI1LDEyMy42MjUsMTMuMzI1LDEyMS4zMjUsMTAuOTI1eiIvPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=);
    background-size: 10px 10px;
}

.filter-result-loading {
    text-align: center;
}

.filter-selected {
    display: none;
}

.clear-all {
    display: none;
    float: right;
    margin-top: 6px;
}

.datatable_empty_box {
    border: none !important;
    background-color: white !important;
}
