.sticky-header,
.sticky-header * {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.sticky-header.stuck {
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #cccccb;
    border-top: none;
    background-color: #fff;
    z-index: 100;
}

.filters-desktop a,
.filters-desktop p {
    color: #4F4F4F;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.filters-desktop .dropdown-row {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filters-desktop.hide-type-filter .dropdown-row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.filters-desktop.hide-type-filter .dropdown-row * {
    margin-right: 7px;
}

.filters-desktop .filter-by{
    color: #9B9B9B;
}

.filters-desktop .filter-by,
.filters-desktop .clear-all {
    line-height: 17px;
}

.filters-desktop .clear-all {
    cursor: pointer;
}

.filters-desktop.hide-type-filter .clear-all {
    position: absolute;
    top: 43px;
    left: 66.67%;
}

.filters-desktop .dropdown-row .dropdown-container {
    width: calc(33.33% - 7px);
    height: 40px;
    position: relative;
}

.filters-desktop .dropdown-row.learning-material {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.filters-desktop .dropdown-row.learning-material > .search.right {
    margin-left: auto;
}

.filters-desktop .dropdown-row.learning-material > .dropdown-container {
    width: calc(33.33% - 25px);
}

.filters-desktop .dropdown-row.learning-material > .dropdown-container:nth-child(2) {
    margin: 0 25px;
}

.filters-desktop .dropdown-row .dropdown,
.dropdown,
.dropdown:hover {
    padding: 7px 10px;
    border: 1px solid #CCCCCB;
    border-radius: 3px;
    color: #9B9B9B;
    font-size: 16px;
    line-height: 26px;
    background-color: #fff;
    cursor: pointer;
    -webkit-transition: border .2s ease;
    -o-transition: border .2s ease;
    transition: border .2s ease;
}

.filters-desktop .dropdown-row .dropdown{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 10;
    overflow: hidden;
}

select.dropdown,
select.dropdown:hover {
    font-family: proxima-nova, "myriad-pro", Arial, Helvetica, sans-serif;
    background-image: url(../images/icons/dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-size: 38px;
    background-position: right 0px center;
    padding: 0 30px 0 10px;
    cursor: pointer;
}

select.icc-year-dropdown {
    max-width: 326px;
    margin: auto;
}

.filters-desktop .dropdown-row .dropdown.has-selection{
    color: #4e4e4e;
}

.filters-desktop .dropdown-row .dropdown::after,
.dropdown::after {
    content: '';
    position: absolute;
    right: 5px;
    top:17px;
    width: 24px;
    height: 5px;
    background-image: url(../images/icons/dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-size: 34px 5px;
    background-position: center center;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.filters-desktop .dropdown-row .dropdown.no-arrow::after{
    content: '';
    background-image: none;
}

.filters-desktop .dropdown-row .dropdown.expanded {
    border: 1px solid #4A90AD;
}

.filters-desktop .dropdown-row .dropdown.expanded::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    top: 16px;
}

.filters-desktop .dropdown-container .option-expand,
.filters-desktop .dropdown-container .option-expander {
    position: absolute;
    left: 0;
    right: 0;
    top: 39px;
    background-color: #fff;
    border: 1px solid #D3D3D3;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0,0,0,0.5);
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.5);
    padding: 8px 15px;
    max-height: 200px;
    overflow: auto;
    z-index: 1;
    transition: none;
}

.filters-desktop .dropdown .selected-filters {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: inherit;
    width: calc(100% - 50px);
}

.filters-mobile .filter-table .option-heading .selected-filters {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100vw - 100px);
    display: inline-block;
}

.filters-mobile .filter-table .option-heading > p.left {
    display: inline-flex;
}

.filters-desktop .dropdown-container .option-expand ul.options,
.filters-desktop .dropdown-container .option-expander ul.options {
    margin-bottom: 0;
}

.filters-desktop .sort-by-row {
    margin-top: 22px;
}

.filters-desktop .sort-by {
    line-height: 40px;
}

.filters-desktop .sort-by a,
.filters-desktop .sort-by p {
    display: inline-block;
    margin-bottom: 0;
}

.filters-desktop .sort-by p {
    color: #9B9B9B;
}

.filters-desktop .sort-by a.sort-option {
    font-weight: 300;
}

.filters-desktop .sort-by a.sort-option:hover {
    text-decoration: underline;
}

.filters-desktop .sort-by a.sort-option.selected {
    font-weight: 600;
}

.filters-desktop .search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    cursor: pointer;
    height: 40px;
    padding-right: 25px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.filters-desktop .search a,
.filters-desktop .search p {
    display: inline-block;
    margin: 0;
}

.filters-desktop .search input {
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-style: solid;
    border-color: #ccc;
    border-radius: 3px;
    background-color: #fff;
    width: 1px; /* needed for iOS to give focus programmatically */
    height: 40px;
    opacity: 0;
    padding: 0;
    border-width: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.filters-desktop .search .search-icon {
    display: inline-block;
    position: absolute;
    right: 0;
    /*bottom: 10px;*/
    width: 20px;
    height: 20px;
    -webkit-transition: right .5s ease;
    -o-transition: right .5s ease;
    transition: right .5s ease;
}

.filters-desktop .search .search-icon-wrapper {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 25px;
    height: 20px;
}

.search-icon svg g {
    -webkit-transition: stroke, .5s, ease;
    -o-transition: stroke, .5s, ease;
    transition: stroke, .5s, ease;
}

form.search.right:hover .search-icon svg g{
    stroke: #4A90AD;
}

.filters-desktop .search.expanded {
    padding-right: 0px;
}

.filters-desktop .search.expanded input {
    width: 200px;
    border-width: 1px;
    padding: 10px 40px 10px 10px;
    margin-left: 10px;
    opacity: 1;
    height: 40px;
}

.filters-desktop .search.expanded .search-icon {
    right: 8px;
}

.filters-desktop .search.expanded .search-icon svg g {
    stroke: #4a90ad;
}

.filters-desktop .search .search-icon:hover {
    cursor: pointer;
}

.bubble-container .options li {
    margin-bottom: 5px;
}

.bubble-container .subtype-bubble {
    border-radius: 15px;
    border: 1px solid transparent;
    background-color: #CCCCCB;
    padding: 8px 15px;
    margin-right: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.bubble-container .subtype-bubble.article:hover,
.bubble-container .subtype-bubble.article.active {
    background-color: #E5EFF3;
    border: 1px solid #4A90AD;
    color: #4A90AD;
}

.bubble-container .subtype-bubble.success:hover,
.bubble-container .subtype-bubble.success.active {
    background-color: #FEF1DE;
    border: 1px solid #F49E1E;
    color: #F49E1E;
}

.bubble-container .subtype-bubble.video:hover,
.bubble-container .subtype-bubble.video.active {
    background-color: #E6F2E5;
    border: 1px solid #57A94F;
    color: #57A94F;
}

.bubble-container .subtype-bubble.webinar:hover,
.bubble-container .subtype-bubble.webinar.active {
    background-color: #E5EFF3;
    border: 1px solid #4AA99D;
    color: #4AA99D;
}

.bubble-container .subtype-bubble.podcast:hover,
.bubble-container .subtype-bubble.podcast.active {
    background-color: #F3ECF4;
    border: 1px solid #AE7DB2;
    color: #AE7DB2;
}

.bubble-container .subtype-bubble.customerprojects:hover,
.bubble-container .subtype-bubble.customerprojects.active {
    background-color: #4AA99D;
    border: 1px solid #EC6742;
    color: #EC6742;
}

.bubble-container .subtype-bubble.learning:hover,
.bubble-container .subtype-bubble.learning.active {
    background-color: #E5EFF3;
    border: 1px solid #4A90AD;
    color: #4A90AD;
}

.bubble-container .subtype-bubble.icc:hover,
.bubble-container .subtype-bubble.icc.active {
    background-color: #E9ECF4;
    border: 1px solid currentColor;
    color: #4F66A8;
}

.bubble-container .subtype-bubble span {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    line-height: 14px;
}

.bubble-container .subtype-bubble:hover span,
.bubble-container .subtype-bubble.active span {
    color: inherit;
}

/* Mobile filters */
.grid-page .middle-section-1.filters-mobile {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 30px 0 0;
}

.grid-page .middle-section-1.filters-mobile.stuck {
    padding-top: 16px;
}

.filters-mobile .top-controls {
    margin-bottom: 30px;
    height: 40px;
    width: 100%;
    position: relative;
}

.filters-mobile.stuck .top-controls {
    margin-bottom: 16px;
}

.filters-mobile .top-controls .mobile-filter-searchbar {
    margin-top: 10px;
    margin-bottom: 30px;
    display: none;
}

.filters-mobile.stuck .top-controls .mobile-filter-searchbar {
    margin-bottom: 16px;
}

.filters-mobile .top-controls .mobile-filter-searchbar.show {
    display: flex;
}

/* mobile filter and sort buttons */
.filters-mobile .main-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filters-mobile .main-controls div span{
    font-size: 14px;
    color: #4e4e4e;
    font-weight: 300;
}

.filters-mobile .main-controls div.sort,
.filters-mobile .main-controls div.filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: calc(50% - 32px);
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
}

.filters-mobile .main-controls div.sort:hover,
.filters-mobile .main-controls div.filter:hover {
    cursor: pointer;;
}

.filters-mobile .main-controls div.sort.active,
.filters-mobile .main-controls div.filter.active {
    background-color: #4A90AD;
}

.filters-mobile .main-controls div.sort.active span,
.filters-mobile .main-controls div.filter.active span {
    color: #fff;
}

.filters-mobile .main-controls div.search-icon {
    height: 40px;
    width: 44px;
    padding: 10px 12px;
    margin-left: 8px;
    cursor: pointer;
}

/* mobile searchbar */
.filters-mobile .mobile-filter-searchbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filters-mobile .mobile-filter-searchbar :first-child {
    width: 100%;
}

.filters-mobile .mobile-filter-searchbar input {
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 15px;
    padding: 10px 40px 10px 10px;
    background-color: #fff;
    font-size: 16px; /* stops iOS from zooming on focus */
}

.filters-mobile .search-clear {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 25px;
    background-image: url(../images/icons/clear_x.png);
    background-repeat: no-repeat;
    background-position: 4px center;
    background-size: 11px;
}

.filters-mobile .mobile-filter-searchbar input:focus {
    background-color: #fff;
}

.filters-mobile .mobile-filter-searchbar .cancel {
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
    width: 44px;
}

.filters-mobile .mobile-filter-searchbar .cancel:hover {
    cursor: pointer;
}


/* mobile filter table */
.filters-mobile .filter-table {
    width: 100%;
    border: none;
    border-collapse:separate;
    color: #4e4e4e;
    margin-bottom: 30px;
}

.filters-mobile .filter-table th,
.filters-mobile .filter-table td {
    border: 1px solid #979797;
    border-bottom: none;
    padding: 0;
}

.filters-mobile .filter-table th > *,
.filters-mobile .filter-table td > * {
    padding: 0 14px;
}

.filters-mobile .filter-table tr:first-of-type{
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.filters-mobile .filter-table tr:first-of-type td,
.filters-mobile .filter-table tr:first-of-type th {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.filters-mobile .filter-table tr:last-of-type{
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.filters-mobile .filter-table tr:last-of-type td,
.filters-mobile .filter-table tr:last-of-type th {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom: 1px solid #979797;
}

.filters-mobile .filter-table th {
    background-color: #445C6D;
}

.filters-mobile .filter-table td {
    background-color: #fff;
}

.filters-mobile .filter-table th a:hover,
.filters-mobile .filter-table th a:visited,
.filters-mobile .filter-table th a:active,
.filters-mobile .filter-table th a {
    font-size: 14px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
}

.filters-mobile .filter-table .option-heading {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.filters-mobile .filter-table .option-heading p {
    line-height: 50px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
}

.filters-mobile .filter-table .option-heading div.right {
    height: 14px;
    width: 14px;
    background-size: 14px 14px;
    background-image: url('../images/icons/icon-accordian-more.svg');
}

.filters-mobile .filter-table .option-heading.expanded div.right {
    background-image: url('../images/icons/icon-accordian-less.svg');
}

.filters-mobile .filter-table .custom-checkbox {
    position: relative;
}

.edit-type-1 .options .custom-checkbox input + span::before,
.edit-type-1 .options li.disabled .custom-checkbox input + span::before,
.filters-mobile .filter-table.sort .custom-checkbox input + p::before {
    margin-right: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-6.5px);
    border: none;
}

.filters-mobile .filter-table.sort .custom-checkbox input + p::before {
    right: 14px;
}

.edit-type-1 .options .custom-checkbox input:checked + span,
.filters-mobile .filter-table.sort .custom-checkbox input:checked + p {
    color: #4A90AD;
    font-weight: 400;
}

.edit-type-1 .options .custom-checkbox input:checked + span::before,
.edit-type-1 .options li.disabled .custom-checkbox input:checked + span::before,
.filters-mobile .filter-table.sort .custom-checkbox input:checked + p::before {
    content: '';
    background-image: url('../images/icons/icon-dropdown-checkmark-blue.svg');
    background-color: transparent;
    background-size: 16px 13px;
    width: 16px;
    height: 13px;
}

.edit-type-1 .options li.disabled .custom-checkbox input + span::before {
    content: none;
}

ul.options {
    margin-bottom: 0;
    margin-left: 0;
    list-style: none;
}

ul.options li {
    display: block;
    position: relative;
}

/*.filters-mobile .filter-table .resources-all .middle-section-1 {*/
/*    padding: 30px 0;*/
/*}*/

.filters-mobile .bubble-container ul.options {
    margin-top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Disabled checkbox */
.disabled .custom-checkbox input[type=checkbox] + span,
.disabled .custom-checkbox input[type=radio] + span {
    color: #9b9b9b;
}

.disabled .custom-checkbox input[type=checkbox] + span::before {
    color: #CCCCCB;
    background-color: #f2f2f2;
    border: #E6E6E6 1px solid;
    cursor: default;
}

.disabled .custom-checkbox input[type=checkbox]:checked + span::before {
    background-color: #E5EFF3;
}

/* Hide checkbox buttons */
.custom-checkbox {
    user-select: none;
}

.custom-checkbox input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.custom-checkbox input + span {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
}

.custom-checkbox input + span:hover {
    cursor: pointer;
}

/* Style custom checkboxes */
.custom-checkbox input + span::before,
.custom-checkbox input + p::before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 8px;
    width: 15px;
    height: 15px;
    vertical-align: bottom;
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: 0px 0px;
    border: 1px solid #9B9B9B;
    border-radius: 4px;
}

.custom-checkbox input:checked + span::before {
    background-image: url(../images/icons/icon-dropdown-checkbox-checkmark.svg);
    background-color: #4A90AD;
    border-color: #4A90AD;
}

/* box colors for each content type */

.custom-checkbox input[value="article"]:checked + span::before {
    background-color: #4A90AD;
    border-color: #4A90AD;
}

.custom-checkbox input[value="video"]:checked + span::before {
    background-color: #57A94F;
    border-color: #57A94F;
}

.custom-checkbox input[value="podcast"]:checked + span::before {
    background-color: #AE7DB2;
    border-color: #AE7DB2;
}

.custom-checkbox input[value="white_paper"]:checked + span::before {
    background-color: #EC6742;
    border-color: #EC6742;
}

.custom-checkbox input[value="webinar"]:checked + span::before {
    background-color: #4AA99D;
    border-color: #4AA99D;
}

.custom-checkbox input[value="success"]:checked + span::before {
    background-color: #F49E1E;
    border-color: #F49E1E;
}

/* infinity pager styles */
.infinity-pager-container {
    padding-bottom: 100px;
}
.infinity-pager-container a {
    margin-bottom: 0;
}

.infinity-pager-container ul.pager {
    list-style: none;
    margin: 0;
}

.infinity-pager-container ul.pager li.pager__item a {
    width: 100%;
    border-radius: 3px;
    background-color: #e6e6e6;
    color: #4f4f4f;
    font-size: 16px;
}

.infinity-pager-container ul.pager li.pager__item a i {
    font-size: 12px;
    line-height: 15px;
    font-style: italic;
    margin-left: 10px;
}

@media print, screen and (min-width: 64em){
    .filters-desktop .search.expanded input {
        width: 270px;
    }
}

@media print, screen and (min-width: 120.063em){
    .filters-desktop .search.expanded input {
        width: 400px;
    }
}
