/* ========================================================================
  #GLOBAL SEARCH BUTTON
  ======================================================================== */

#global-search-mobile {
    position: absolute;
    z-index: 996;
    right: 145px;
    top: 64px;
}

#global-search,
#global-search-mobile {
    width: fit-content;
    height: fit-content;
    display: block;
    flex: none;
    float: right;
}
#global-search {
    right: 12px;
    top: 1px;
}
    #global-search a.global-search,
    #global-search-mobile a.global-search {
        -webkit-transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .3s cubic-bezier(.25,.46,.45,.94);
        -moz-transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .3s cubic-bezier(.25,.46,.45,.94);
        -o-transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .3s cubic-bezier(.25,.46,.45,.94);
        transition: opacity .3s cubic-bezier(.25,.46,.45,.94),transform .3s cubic-bezier(.25,.46,.45,.94);
    }

        #global-search a.global-search:hover,
        #global-search-mobile a.global-search:hover {
            opacity: .8;
            -ms-transform: scale(1.167);
            -webkit-transform: scale(1.167);
            -moz-transform: scale(1.167);
            -o-transform: scale(1.167);
            transform: scale(1.167);
        }

    #global-search .component-content .edit-here-hint,
    #global-search-mobile .component-content .edit-here-hint {
        display: none;
    }

    #global-search span.edit-here-hint,
    #global-search-mobile span.edit-here-hint {
        display: none;
    }

    #global-search a.global-search,
    #global-search-mobile a.global-search {
        background: url(Images/search.svg) no-repeat center;
        background-position-y: 13px;
        width: 35px;
        height: 48px;
        float: right;
        padding: 0;
    }

@media screen and (max-width: 600px) {
    #global-search-mobile {
        right: 20px;
        top: 84px;
    }
}

@media screen and (max-width: 450px) {
    #global-search-mobile {
        top: 82px;
    }
}

@media screen and (max-width: 375px) {
    #global-search-mobile {
        top: 78px;
    }
}

@media screen and (max-width: 320px) {
    #global-search-mobile {
        top: 76px;
    }

   
}

/* ========================================================================
  #GLOBAL SEARCH PANEL
  ======================================================================== */
#global-search-wrapper {
    position: absolute;
    top: 226px;
}

    #global-search-wrapper.scEnabledChrome {
        top: 258px;
        z-index: 99;
    }

    #global-search-wrapper #global-search-panel {
        display: none;
        position: absolute;
        overflow: hidden;
        width: 100%;
        z-index: 3;
        background: rgba(255,255,255,.95);
        height: 96px;
        justify-content: center;
        align-items: center;
    }

        #global-search-wrapper #global-search-panel .container {
            margin: 0 auto;
            display: flex;
            align-items: center;
            height: 96px;
            position: absolute;
            top: 0;
            box-sizing: border-box;
            padding-left: 24px;
            padding-right: 24px;
        }

    #global-search-wrapper.open #global-search-panel .container:after,
    #global-search-wrapper.open #global-search-panel .container:before {
        display: table;
        content: " ";
    }

    #global-search-wrapper.open #global-search-panel .container:after {
        clear: both;
    }

    #global-search-wrapper #global-search-panel .icon-before.magnifying-glass-blue {
        flex: 0;
        margin-right: 5px;
    }

    #global-search-wrapper #global-search-panel button {
        background-color: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
    }

        #global-search-wrapper #global-search-panel button.icon-before {
            position: relative;
        }

        #global-search-wrapper #global-search-panel button.icon-before {
            display: inline-flex;
            align-items: center;
        }

        #global-search-wrapper #global-search-panel button.magnifying-glass-blue:before {
            width: 21px;
            height: 22px;
            flex: 0 0 21px;
            margin: 0;
            content: ' ';
            margin-top: 5px;
        }

        #global-search-wrapper #global-search-panel button.magnifying-glass-blue:before {
            background: url(Images/search-blue.svg) no-repeat center;
        }

    #global-search-wrapper #global-search-panel input {
        font-family: omnes-pro,Arial,sans-serif;
        font-size: 28px;
        border: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background: 0 0;
        flex: 1;
    }

        #global-search-wrapper #global-search-panel input.form-control::placeholder,
        #global-search-wrapper #global-search-panel input.form-control::-webkit-input-placeholder {
            color: #a5a5a5;
        }

    #global-search-wrapper #global-search-panel .form-control {
        display: block;
        width: 100%;
        height: 39px;
        padding: 6px 12px;
        line-height: 1.42857;
        color: #555;
        border-radius: 4px;
        transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    }

    #global-search-wrapper #global-search-panel .close {
        background: transparent url(Images/close.svg) no-repeat;
        background-size: 16px;
        background-position: center;
        border: 0;
        height: 40px;
        flex: 0 0 40px;
        -webkit-transition: transform .5s cubic-bezier(.25,.46,.45,.94);
        -moz-transition: transform .5s cubic-bezier(.25,.46,.45,.94);
        -o-transition: transform .5s cubic-bezier(.25,.46,.45,.94);
        transition: transform .5s cubic-bezier(.25,.46,.45,.94);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
        margin-right: -9px;
    }

    #global-search-wrapper.open #global-search-panel .close {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate( 180deg);
        cursor: pointer;
    }

        #global-search-wrapper.open #global-search-panel .close:hover {
            ms-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }



#global-search-mobile a.disabled,
#global-search a.disabled {
    opacity: .2;
    pointer-events: none;
}

@media only screen and (max-width: 1366px) {
    #global-search-wrapper {
        top: 133px;
    }
}

@media only screen and (max-width: 1024px) {
    #global-search-wrapper {
        top: 133px;
    }

        #global-search-wrapper #global-search-panel .container {
            padding-left: 24px;
            padding-right: 24px;
            max-width: 100%;
        }
}

@media only screen and (max-width: 824px) {
    #global-search-wrapper {
        top: 133px;
    }
}

@media only screen and (max-width: 767px) {
    #global-search-wrapper {
        top: 138px;
    }

        #global-search-wrapper #global-search-panel input {
            font-size: 22px;
        }

        #global-search-wrapper #global-search-panel,
        #global-search-wrapper #global-search-panel .container {
            height: 54px;
        }
    
}

@media only screen and (max-width: 717px) {
    #global-search-wrapper {
        top: 136px;
    }
}

@media only screen and (max-width: 667px) {
    #global-search-wrapper {
        top: 136px;
    }
}

@media only screen and (max-width: 575px) {
    #global-search-wrapper #global-search-panel input {
        font-size: 18px;
    }
}

@media only screen and (max-width: 568px) {
    #global-search-wrapper {
        top: 136px;
    }
}

/* ========================================================================
  #SEARCH RESULT PAGE SELECTOR
  ======================================================================== */
.page-selector {
    display: flex;
    justify-content: end;
}

    .page-selector.no-first-last-button li.page-selector-item-first,
    .page-selector.no-first-last-button li.page-selector-item-last {
        display: none;
    }

    .page-selector ul.page-selector-list li {
        display: inline-block;
        margin-left: 5px;
        margin-right: 5px;
    }

        .page-selector ul.page-selector-list li a {
            display: block;
            padding: 6px 12px;
            line-height: 1.42857;
            text-decoration: none;
            color: #3093cc;
            background-color: #fff;
            border: 1px solid #ddd;
        }

            .page-selector ul.page-selector-list li a.active {
                color: #fff;
                background-color: #3093cc;
                border-color: #3093cc;
                pointer-events: none;
            }

        .page-selector ul.page-selector-list li.inactive a {
            pointer-events: none;
            cursor: not-allowed;
        }

        .page-selector ul.page-selector-list li a:hover {
            color: #3093cc;
            background-color: #eee;
            border-color: #ddd;
        }

/* ========================================================================
  #SEARCH RESULT
  ======================================================================== */
.search-results.sc-search-result {
    padding: 0 15px;
}

.sc-search-result a {
    color: #3093cc;
}
.sc-search-result h3 a {
    font-weight: 500;
}
    .sc-search-result a.link {
        font-size: 14px;
        font-weight: 400;
    }

.sc-search-result p.field-metadescription {
    font-size: 14px;
    font-weight: 400;
}

.sc-search-result h3.field-title {
    font-size: 18px;
    margin:0;
}
ul.search-result-list li {
    margin: 20px 0;
}
.sc-search-result .sc-tags {
    background-color: #777;
    color: #FFF;
    width: fit-content;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
    display:inline;
    margin-right:5px;
}


/* ========================================================================
  #SEARCH BOX
  ======================================================================== */

.search-box.horizontal.sc-search-box {
    background-color: #F0F8FF;
    padding: 20px;
    width: 100%;
    /*display:none;*/
    margin-top: 80px;
}

    .search-box.horizontal.sc-search-box .component-content {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: start;
        padding: 10px;
    }

    .search-box.horizontal.sc-search-box input {
        width: 100%;
        padding: 6px 12px;
        font-size: 14px;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 0;
        -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
        -webkit-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
        -o-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
        transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
        border-right: 0px;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
    }

    .search-box.horizontal.sc-search-box button {
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
        color: #FFF;
        background: none;
        background-color: white;
        outline: none !important;
        border: solid 1px #ccc;
        box-shadow: none;
        border-left: 0px;
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
        z-index: 2;
        width: 5%;
        cursor: pointer;
    }

        .search-box.horizontal.sc-search-box button:after {
            font: normal normal normal 16px FontAwesome;
            content: "\f002";
            width: 16px;
            height: 16px;
            color: #3093cc;
            position: absolute;
            right: 42px;
            top: 36px
        }

    .search-box.horizontal.sc-search-box label {
        padding-right: 25px;
        color: #000;
    }

    .search-box.horizontal.sc-search-box .twitter-typeahead {
        width: 100%;
        max-width: 100%;
    }

        .search-box.horizontal.sc-search-box .twitter-typeahead .tt-menu {
            width: 105%;
            background-color: #FFF;
            border: 1px solid #ccc;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
        }

            .search-box.horizontal.sc-search-box .twitter-typeahead .tt-menu .sugesstion-item {
                padding: 10px;
                line-height: 34px;
                transition: all .3s cubic-bezier(.25,.46,.45,.94);
                cursor: pointer;
                color: #3093cc;
                background-color: #FFF;
            }

                .search-box.horizontal.sc-search-box .twitter-typeahead .tt-menu .sugesstion-item:hover {
                    background-color: #eee;
                }

                .search-box.horizontal.sc-search-box .twitter-typeahead .tt-menu .sugesstion-item a {
                    text-decoration: none;
                }

                    .search-box.horizontal.sc-search-box .twitter-typeahead .tt-menu .sugesstion-item a:hover {
                        color: #3093cc;
                    }

    .search-box.horizontal.sc-search-box.sc-search-box-help {
        background: #f7f7f7;
    }

        .search-box.horizontal.sc-search-box.sc-search-box-help button:after {
            left: 42px;
        }

        .search-box.horizontal.sc-search-box.sc-search-box-help input {
            padding: 6px 35px;
        }
/* ========================================================================
  #SEARCH RESULT COUNT
  ======================================================================== */
.search-results-count .results-count {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

div#blog-search-box-container > .component-content {
    margin: 0 10px;
    width: 758px;
}

/* ========================================================================
  #BLOG SEARCH BOX RESULT
  ======================================================================== */
div#blog-search-box-container {
    display: flex;
    justify-content: space-evenly;
}

.search-box#blog-search-box {
    height: 73px;
    display: inline-block;
    max-width: 385px;
}

    .search-box#blog-search-box input.search-box-input {
        display: block;
        min-width: 365px;
        line-height: 1.42857;
        color: #525252;
        background-color: #fff;
        background-image: none;
        border: 1px solid #d2d2d2;
        border-radius: 4px;
        height: 44px;
        padding: 9px 13px;
        font-size: 16px;
        font-weight: 500;
        text-overflow: ellipsis;
        box-shadow: inset 0 1px 3px 0 rgb(0 0 0 / 12%);
        -webkit-transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
        -moz-transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
        -o-transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
        transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-right: 0;
        text-align: left !important;
    }

    .search-box#blog-search-box .search-box-button-with-redirect {
        display: none;
    }

span.twitter-typeahead {
    margin-right: -3px;
}

.search-box#blog-search-box input.search-box-input::placeholder {
    color: #d2d2d2;
}

.search-box#blog-search-box.scEnabledChrome label {
    display: none;
}

.search-box#blog-search-box.scEnabledChrome input.search-box-input {
    display: inline-block;
}

.search-box#blog-search-box-button .search-box-button-with-redirect {
    background-color: #fc6014;
    border-color: #fc6014;
    padding: 13px 30px;
    font: 500 16px/1 omnes-pro,Arial,sans-serif;
    text-shadow: 0 1px 1px #00000080;
    color: #fff !important;
    user-select: none;
    border-radius: 0.25rem;
    display: inline-flex;
    width: auto;
    vertical-align: top;
    border: 1px solid transparent;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    box-shadow: none;
    -webkit-transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
    -moz-transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
    -o-transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
    transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
    cursor: pointer;
}

    .search-box#blog-search-box-button .search-box-button-with-redirect:hover {
        background-color: #ffaf22;
        border-color: #ffaf22;
        color: #fff !important;
    }

.search-box#blog-search-box .component-content {
    text-align: right !important;
    margin-right: -6px;
    padding-top: 15px;
}

div#blog-search-box-button {
    height: 73px;
    max-width: 115px;
}

    div#blog-search-box-button .component-content, .show-all-articles-button-container {
        text-align: left !important;
        margin-left: -5px;
        padding-top: 15px;
    }
.search-box.filterEnabled#blog-search-box {
    max-width: 210px;
}
.c-btn--primary.show-all-articles-button {
    margin-left: 10px;
    min-height: 44px;
    border: 1px #0f6ea5 solid;
    background-color: #fff;
    color: #0f6ea5 !important;
}

.c-btn--primary.show-all-articles-button:active, .c-btn--primary.show-all-articles-button:active:focus, .c-btn--primary.show-all-articles-button:active:hover, .c-btn--primary.show-all-articles-button:hover, .c-btn--primary.show-all-articles-button:focus
{
        border: 1px #0f6ea5 solid;
        background-color: #fff !important;
        color: #0f6ea5 !important;
        border: 1px #0f6ea5 solid !important;
        -webkit-box-shadow: 0 0 0 4px rgb(0 139 206 / 15%) inset;
        -moz-box-shadow: 0 0 0 4px rgba(0,139,206,.15) inset;
        box-shadow: 0 0 0 4px rgb(0 139 206 / 15%) inset;
    }

@media only screen and (max-width: 767px){
    .c-btn--primary.show-all-articles-button {
    margin-left: 0px;
    width: 100%;
}
    .show-all-articles-button-container {
        margin-left: 0px;
    }
    .search-box.filterEnabled#blog-search-box {
        max-width:100%;
    }
}

/* ========================================================================
  #BLOG FACET DROPDOWN
  ======================================================================== */
.facet-dropdown#blog-article-facets-filter,
.facet-dropdown#blog-article-facets-filter1 {
    height: 73px;
    text-align: left !important;
    padding: 0;
    max-width: fit-content;
    display: block !important;
}

    .facet-dropdown#blog-article-facets-filter div select,
    .facet-dropdown#blog-article-facets-filter1 div select {
        height: 44px;
    }

    .facet-dropdown#blog-article-facets-filter .component-content,
    .facet-dropdown#blog-article-facets-filter1 .component-content {
        padding-top: 15px;
        text-align: left !important;
    }

    .facet-dropdown#blog-article-facets-filter .facet-heading,
    .facet-dropdown#blog-article-facets-filter1 .facet-heading {
        display: none;
    }

    .facet-dropdown#blog-article-facets-filter select#DropDownOptions,
    .facet-dropdown#blog-article-facets-filter1 select#DropDownOptions {
        cursor: pointer;
        background: #fff;
        border: 1px solid #d2d2d2;
        border-radius: 3px;
        padding: 12px 43px 12px 15px;
        font-size: 16px;
        line-height: 1;
        color: #525252;
        width: 100%;
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 500;
        -webkit-transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
        -moz-transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
        -o-transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
        transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        background-image: none;
        font: 500 16px/1 omnes-pro,Arial,sans-serif !important;
    }

    .facet-dropdown#blog-article-facets-filter .component-content div:nth-child(2):before,
    .facet-dropdown#blog-article-facets-filter1 .component-content div:nth-child(2):before {
        pointer-events: none;
        content: "";
        background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMiA3Ij48cGF0aCBkPSJNMTAuNSA2LjdjLjMuMy45LjQgMS4zIDAgLjMtLjQuMy0uOSAwLTEuM0w2LjYuM2MtLjMtLjMtLjktLjQtMS4zIDBsLTUgNS4yYy0uMy40LS4zLjkgMCAxLjMuMy4zLjkuNCAxLjMgMEw2IDIuMmw0LjUgNC41eiIgZmlsbD0iIzAwOEJDRSIvPjwvc3ZnPg==) no-repeat;
        background-size: contain;
        background-position: center;
        border: 0;
        position: absolute;
        width: 14px;
        height: 14px;
        top: 30px;
        right: 15px;
        -webkit-transition: transform .3s cubic-bezier(.25,.46,.45,.94);
        -moz-transition: transform .3s cubic-bezier(.25,.46,.45,.94);
        -o-transition: transform .3s cubic-bezier(.25,.46,.45,.94);
        transition: transform .3s cubic-bezier(.25,.46,.45,.94);
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
        display: block;
        cursor: pointer;
    }

    .facet-dropdown#blog-article-facets-filter .component-content.open div:nth-child(2):before,
    .facet-dropdown#blog-article-facets-filter1 .component-content.open div:nth-child(2):before {
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    .facet-dropdown#blog-article-facets-filter .bottom-remove-filter,
    .facet-dropdown#blog-article-facets-filter1 .bottom-remove-filter {
        display: none;
    }

@media screen and (min-width: 768px) {
    .facet-dropdown#blog-article-facets-filter select#DropDownOptions,
    .facet-dropdown#blog-article-facets-filter1 select#DropDownOptions {
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        background-clip: padding-box;
        border-right: 0;
    }
}
@media only screen and (max-width: 767px) {
    .search-box.horizontal.sc-search-box {
        margin-top: 40px;
    }
    #global-search-mobile {
        top: 66px;
    }
}
/* ========================================================================
  #BLOG SEARCH RESULT
  ======================================================================== */
.search-results.blog-article-list {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1005px;
}

    .search-results.blog-article-list ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

        .search-results.blog-article-list ul li {
            overflow: hidden;
            max-width: 311px;
            display: block;
            max-height: 500px;
            margin-left: 10px;
            margin-right: 10px;
        }

            .search-results.blog-article-list ul li img {
                width: 311px;
                height: 177px;
                object-fit: cover;
                object-position: center;
                -webkit-transition: width .3s cubic-bezier(.25,.46,.45,.94);
                -moz-transition: width .3s cubic-bezier(.25,.46,.45,.94);
                -o-transition: width .3s cubic-bezier(.25,.46,.45,.94);
                transition: width .3s cubic-bezier(.25,.46,.45,.94);
            }

                .search-results.blog-article-list ul li img:hover {
                    width: 354px;
                    object-fit: cover;
                }

            .search-results.blog-article-list ul li .image-wrapper {
                border-radius: 4px;
                border: none;
                display: block;
                overflow: hidden;
                background-color: transparent;
            }

            .search-results.blog-article-list ul li .content-wrapper {
                text-align: left !important;
                margin-top: 10px;
                margin-bottom: 10px;
            }

            .search-results.blog-article-list ul li a {
                display: block;
                text-decoration: none;
                text-align: left !important;
                position:relative;
            }

                .search-results.blog-article-list ul li a:hover {
                    text-decoration: none;
                }

                .search-results.blog-article-list ul li a.title {
                    display: block;
                    
                    text-overflow: ellipsis;
                    max-height: 40px;
                    line-height: 20px;
                    margin-bottom: 10px;
                    min-height: 40px;
                }

            .search-results.blog-article-list ul li img .field-mainimage {
                width: 183px;
            }

            .search-results.blog-article-list ul li .field-mainimage {
                width: 311px;
                height: 177px;
            }

            .search-results.blog-article-list ul li .content-wrapper p {
                text-align: left !important;
                border-bottom: 1px solid silver;
                padding-bottom: 17px;
                overflow: hidden;
                text-overflow: ellipsis;
                height: 86px;
                display: -webkit-box;
                -webkit-line-clamp: 5;
                -webkit-box-orient: vertical;
            }


            .search-results.blog-article-list ul li .content-wrapper a.read-more:before {
                display: block;
                content: '';
                width: 311px;
                position: absolute;
                height: 30px;
                background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 100%);
                bottom: 32px;
            }
                .search-results.blog-article-list ul li .sc-tags

{
    position: absolute;
    top: 145px;
    padding: 3px 11px;
    background: #FFF;
    border-radius: 12px;
    margin-left: 10px;
    display: block;
    color: #008bce;
    -webkit-transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
    -moz-transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
    -o-transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
    transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.search-results.blog-article-list ul li .sc-tags:hover {
    background-color: #e7f6fe;
    color: #0f6ea5;
}

.search-results.blog-article-list ul li .sc-tags span {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    display: block;
}
    .search-results.blog-article-list .no-results {
        width: 100%;
        text-align: left !important;
        color: #008bce;
    }

    div#article-list-carousel-container {
        padding: 0 4.5%;
    }
.disabled-sx {
    pointer-events: none !important;
    opacity: 0.4 !important;
}
/* Business */
section.author-busi.field-author, 
section.company-busi.field-company {
    text-align: left !important;
    font-size: 14px;
    font-weight:500;
}
.search-results.blog-article-list ul li a.title.business-ti {
    margin-bottom: 0;
    font-weight:500;
}
@media screen and (max-width: 1028px) {
    .search-results.blog-article-list ul {
        justify-content: center;
    }
}
@media screen and (min-width: 768px) {
    .business-search select#DropDownOptions {
        max-width: 240px;
    }
}
@media screen and (max-width: 768px) {
    ul.search-result-list {
        justify-content: center;
    }
    .search-box#blog-search-box input.search-box-input {
        border-right: 1px solid #d2d2d2;
    }
}
/* ========================================================================
  #HEALTHY FUTURES SEARCH RESULT
  ======================================================================== */
.search-results.hf-blog-article-list {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 860px;
}

    .search-results.hf-blog-article-list ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

        .search-results.hf-blog-article-list ul li {
            overflow: hidden;
            max-width: 264px;
            display: block;
            max-height: 500px;
            margin-left: 18px;
        }

            .search-results.hf-blog-article-list ul li img {
                width: 264px;
                height: 167px;
                object-fit: cover;
                object-position: center;
                -webkit-transition: width .3s cubic-bezier(.25,.46,.45,.94);
                -moz-transition: width .3s cubic-bezier(.25,.46,.45,.94);
                -o-transition: width .3s cubic-bezier(.25,.46,.45,.94);
                transition: width .3s cubic-bezier(.25,.46,.45,.94);
            }

                .search-results.hf-blog-article-list ul li img:hover {
                    width: 264px;
                    object-fit: cover;
                }

            .search-results.hf-blog-article-list ul li .image-wrapper {
                border-radius: 4px;
                border: none;
                display: block;
                overflow: hidden;
                background-color: transparent;
            }

            .search-results.hf-blog-article-list ul li .content-wrapper {
                text-align: left !important;
                margin-top: 10px;
                margin-bottom: 10px;
            }

            .search-results.hf-blog-article-list ul li a {
                display: block;
                text-decoration: none;
                text-align: left !important;
                position: relative;
            }

                .search-results.hf-blog-article-list ul li a:hover {
                    text-decoration: none;
                }

            .search-results.hf-blog-article-list ul li img .field-mainimage {
                width: 183px;
            }

            .search-results.hf-blog-article-list ul li .field-mainimage {
                width: 264px;
                height: 167px;
            }

            .search-results.hf-blog-article-list ul li .content-wrapper p {
                text-align: left !important;
                padding-bottom: 17px;
                overflow: hidden;
                text-overflow: ellipsis;
                height: 86px;
                display: -webkit-box;
                -webkit-line-clamp: 5;
                -webkit-box-orient: vertical;
                color: #007db9;
                font-weight: 500;
            }                        

    .search-results.hf-blog-article-list .no-results {
        width: 100%;
        text-align: center;
        color: #008bce;
    }

div#article-list-carousel-container {
    padding: 0 4.5%;
}

.disabled-sx {
    pointer-events: none !important;
    opacity: 0.4 !important;
}
/* Business */
section.author-busi.field-author,
section.company-busi.field-company {
    text-align: left !important;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 1028px) {
    .search-results.hf-blog-article-list ul {
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {
    .business-search select#DropDownOptions {
        max-width: 240px;
    }
}

@media screen and (max-width: 768px) {
    ul.search-result-list {
        justify-content: center;
    }

    .search-box#blog-search-box input.search-box-input {
        border-right: 1px solid #d2d2d2;
    }
}

  