/*! nouislider - 11.1.0 - 2018-04-02 11:18:13 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
  direction: ltr;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Offset direction
 */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  position: absolute;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}
html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -17px;
  left: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

/* 4.0 Search Results */
#filters > .col {
    position: relative;
}

.def-desc-img {
    height: 20px;
}

.filter_btn {
    background: url(/build/images/filters_arrow_down@2x.250c2a7f.png) no-repeat;
    background-position: right 13px center;
    background-size: 10px;
    border: 1px solid #6c6c6c;
    display: block;
    text-align: center;
    line-height: 32px;
    color: #6c6c6c;
    margin-right: 13px;
}
.filter_btn.opened {
    background-image: url(/build/images/filters_arrow_up@2x.26cc2dbb.png);
}
.filter_btn.selected {
    background-image: url(/build/images/filter_selected.48e1dac9.png);
    background-size: 15px;
    background-position: right 10px center;
}
.filter_btn:hover {
    background-color: #ececec;
    text-decoration: none;
}
.filter_dropdown {
    display: none;
    position: absolute;
    top: 34px;
    left: 0;
    width: calc(100% - 13px);
    background: #fff;
    border: 1px solid #6c6c6c;
    border-top: 0;
    z-index: 1;
}
.filter_dropdown .custom_scroll {
    max-height: 290px;
    padding-right: 8px;
    overflow-y: auto;
}
.filter_dropdown .custom_scroll:after {
    display: none;
}
.filter_dropdown .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #636363;
}
.filter_dropdown .btn.grey_bg {
    height: 35px;
    line-height: 25px;
    font-size: 1rem;
    background: #dddddd;
    color: #8a8a8a;
}
.filter_dropdown .btn.grey_bg.active {
    background: #f57e32;
    color: #fff;
}
.filter_dropdown .btn.grey_bg:hover {
    background: #000;
    color: #fff;
}
.filter_dropdown .simplebar-content {
    overflow-x: hidden;
}
.filter_dropdown.wide {
    width: 300px;
    border-top: 1px solid #6c6c6c;
}
.filter_dropdown label.checkbox {
    display: block;
}
input[type=checkbox] {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
#onetrust-consent-sdk input[type=checkbox] {
    clip: initial;
}
input[type="checkbox"] + span {
    padding-left: 31px;
    position: relative;
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s linear;
    line-height: 18px;
    padding-top: 2px;
    padding-bottom: 2px;
    min-height: 22px;
}
input[type="checkbox"] + span:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: no-repeat center;
    background-size: 100%;
    cursor: pointer;
    box-sizing: border-box;
    bottom: 0;
    margin: auto;
    border: 1px solid #e2e2e2;
}
input[type="checkbox"]:checked + span:after {
    background-image: url(/build/images/checkbox.bc9a7846.png);
    background-size: 15px;
    border: 1px solid #636363;
}
.child_filters {
    padding-left: 16px;
    display: none;
}
.store_parent > span {
    background: url(/build/images/filters_arrow_down@2x.250c2a7f.png) no-repeat;
    background-position: right 9px;
    background-size: 10px;
    padding-right: 12px;
    flex: 1;
    color: #000;
    cursor: pointer;
}
.store_parent > span.active {
    background-image: url(/build/images/filters_arrow_up@2x.26cc2dbb.png);
}
.selected_child .parent_store input[type="checkbox"] + span:after {
    content: "-";
    color: #e2e2e2;
    text-align: center;
    font-size: 20px;
}
.selected_child .parent_store input[type="checkbox"]:checked + span:after {
    font-size: 0;
}

.noUi-target {
    border: none;
    box-shadow: none;
    background: #dddddd;
}
.noUi-horizontal {
    height: 4px;
}
.noUi-connect {
    background: #9b9c9d;
}
.noUi-handle {
    border: none;
    box-shadow: none;
    background: #9b9c9d;
    border-radius: 0;
    cursor: pointer;
}
.noUi-handle:after,
.noUi-handle:before {
    display: none;
}
.noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    top: -7px;
}
html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
    right: -9px;
}
.price_inputs {
    text-align: center;
    align-items: center;
}
.price_inputs input {
    height: 33px;
    border: 1px solid #dddddd;
    text-align: center;
}

.filters_selected {
    padding: 15px 0 5px;
}
.filter_selected {
    height: 28px;
    line-height: 26px;
    padding: 0 30px 0 15px;
    position: relative;
    border: 1px solid #9c9c9c;
    color: #9c9c9c;
    margin-right: 12px;
    display: inline-block;
    margin-bottom: 10px;
}
.filter_selected .remove_filter {
    position: absolute;
    background: url(/build/images/filter_close.ee00bc6c.png) no-repeat;
    background-size: 100%;
    width: 10px;
    height: 10px;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 0;
    line-height: 0;
    opacity: 0.5;
    transition: all 0.3s;
}
.filter_selected .remove_filter:hover {
    opacity: 1;
}
.reset_filters.filter_selected {
    color: #fff;
    background: #9c9c9c;
}
.reset_filters.filter_selected:after {
    content: "";
    position: absolute;
    background: url(/build/images/filter_close.ee00bc6c.png) no-repeat;
    background-size: 100%;
    width: 10px;
    height: 10px;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 0;
    line-height: 0;
    opacity: 1;
    transition: all 0.3s;
    filter: invert(100%);
}
.reset_filters.filter_selected:hover {
    text-decoration: none;
    background: #000;
    border-color: #000;
}

.search_actions {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#outer-offer-container {
    background: #fff;
}

.banner-inner-headline {
    font-size: clamp(1rem, 2vw, 3rem);
    font-family: ui-monospace;
}

.banner-inner-byline {
    font-size: clamp(1rem, 1.3vw, 2rem);
}

.cheasy-banner-2 .banner-inner-right {
    padding-right: 8vw;
}

.cheasy-banner-2 .banner-inner-headline {
    color: #6b382c;
}

.cheasy-banner-2 .banner-inner-byline {
    color: #646364;
}

.search-result-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid #dddddd;
    color: #656565;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    background: #fff;
    padding: 15px 30px;
    justify-content: space-between;
	height: 150px;
}

.order-validity {
    white-space: nowrap;
}

.search-result-img {
    max-width: 10%;
    min-width: 80px;
    height: 100%;
    flex-basis: 10%;
    position: relative;
}

.search-result-details {
    flex-shrink: 1;
    padding: 0 20px 0 20px;
    flex-basis: 60%;
    max-width: 60%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-details img {
    max-height: 24px;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}

.details-product-name {
    font-size: 18px;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.highlighted-offer .details-product-name {
    font-size: 22px;
}

.highlighted-offer .search-result-details img {
    max-height: 24px;
}
.search-result-actions {
    display: flex;
    align-items: center;
    width: 30%;
    flex-basis: 30%;
}

.webshop-link .moreInfo {
    height: 100% !important;
}

.moreInfo {
    display: flex;
    height: 85%;
    justify-content: center;
    align-items: center;
}

.search-result-item.highlighted-offer {
    background: rgb(255, 255, 255);
    background: linear-gradient(
        128deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 55%,
        rgb(239 229 29) 90%,        
        rgb(255 243 0) 100%
    );
}

.details-certificates {
    min-width: 0;
    height: 50px;
}

.certificates-imgs, .certificates-text {
    height: 50%;
}

.search-result-item .product_price {
	color: #656565;
    font-size: max(2.2vh, 14px);
    font-weight: bold;
}

.search-result-item .fromPrice {
    font-size: max(1.8vh, 12px);
}


.search-result-item .product_price_pcs {
    white-space: nowrap;
    font-size: max(1.4vh, 10px);
}


.search-result-item.highlighted-offer .product_price {
    font-size: max(2.6vh, 24px);
    color: #333;
}

.search-result-item.highlighted-offer .fromPrice {
    font-size: max(2.2vh, 18px);
}

.search-result-item.highlighted-offer .product_price_pcs {
	white-space: nowrap;
    font-size: max(1.8vh, 14px)
}

.details-store-name {
    height: 30px;
}

.store-name-logo, .store-name-text {
    height: 100%;
}

.details-store-name img, .details-certificates img {
    max-height: 100% !important;
    max-width: 100%;
}

.headerFilters {
    padding: 0 15px 0 15px;
}

.headerFilters {
    background-color: #fff;
}

.search_result_list {
    border-bottom: 1px solid #dddddd;
    color: #656565;
}
.search_result_list .product_actions {
    position: inherit;
    right: auto;
}
.search_result_list .product_thumb_menu_btn {
    width: 50px;
    height: 50px;
    margin-left: 0px;
}
.search_result_list .product_img_holder {
    width: 122px;
    height: 109px;
    margin: 0 10px 0 0;
}
.search_result_list .product_title {
    font-size: 21px;
}

.search_result_list .offer_list_details {
    width: calc(100% - 340px);
    padding-bottom: 5px;
    height: 105px;
}

.certificates-text {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search_result_list .catalogue_thumb_info {
    padding: 3px 10px;
    font-size: 13px;
    bottom: 23px;
    white-space: nowrap;
}

.store-name-logo img {
    max-height: 100%;
}

.headerEmpty {
    padding: 15px 15px 0 15px;
    font-size: 2.5vh;
    display:none;
    font-weight:bold;
    margin-bottom: 30px;
    text-align: center;
}

#spotlight-search-offers .store-name-logo {
    display: flex;
    justify-content: center;
    padding: 5px 0 0 0;
}

.spotlight .top-header img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}

.offer-list .slick-list .product_thumb > div {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.selected-for-you-slide, .might-like-slide {
    padding: 0 40px;
}

.catalogue_thumb_info {
    position: absolute !important;
}
.product_img_holder.full_width {
    height: auto;
    padding: 15px;
}

#myChart {
    width: 100%;
    height: 150px;
}

.orderWrapper .catalogue_thumb_info {
    position: relative !important;
}

/*  Filters Mobile */
#filters_mobile {
    background: #fff !important;
}
#filters_mobile .mm-listview > li > a,
#filters_mobile .mm-listview > li > span {
    color: #656565 !important;
    font-size: 16px !important;
}
#filters_mobile.mm-menu .mm-listview .mm-btn_next:after {
    border-color: #656565;
}
#filters_mobile.mm-menu_offcanvas {
    max-width: 320px;
    box-shadow: 3px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000500 !important;
}
.mm-panels > .mm-panel > .mm-listview {
    margin: 0px -21px;
}
.mm-menu_position-bottom.mm-menu_opened ~ .mm-page__blocker,
.mm-menu_position-front.mm-menu_opened ~ .mm-page__blocker,
.mm-menu_position-top.mm-menu_opened ~ .mm-page__blocker {
    z-index: 1071;
}
.filter_counter {
    color: #b3b3b3;
}
#filters_mobile .mm-listitem {
    background: #f3f3f3;
}
#filters_mobile .mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + a,
#filters_mobile .mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + span {
    margin-right: 40px;
}
#filters_mobile .mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) {
    height: 48px;
    border-color: #f3f3f3;
}
#filters_mobile .mm-listview > li > a,
#filters_mobile .mm-listview > li > span {
    padding: 14px 20px 14px 20px !important;
}
#filters_mobile.mm-menu .mm-listview .mm-btn_next:after {
    right: 24px;
}
.mm-menu .mm-navbar a,
.mm-menu .mm-navbar > * {
    color: #656565;
    padding-left: 5px;
}
.price_menu-item {
    padding-bottom: 10px;
}
.price_menu-item .col:last-child {
    font-size: 13px;
}
#filters_mobile .noUi-horizontal {
    margin: 8px 0 12px 0;
}
/*	.filters_list_ctn.mm-listview li {padding: 0px 20px}	*/
.filters_list_ctn.mm-listview li {
    padding: 0px 0px 0px 20px;
}
.filters_list_ctn.mm-listview li label {
    display: block;
    margin-bottom: 0;
    padding: 13px 0;
}
#filters_mobile .filters_list_ctn li .mm-btn_next:not(.mm-btn_fullwidth) {
    width: calc(10% - 0px);
}

#filters_mobile .filter_selected .remove_filter {
    right: 5px;
}
#filters_mobile .filter_selected {
    padding: 0 20px 0 10px;
    font-size: 13px;
    color: #a1a1a1;
    border-color: #a1a1a1;
    margin-right: 8px;
}
#filters_mobile .filter_selected.reset_filters {
    color: #fff;
}
#filters_mobile .reset_filters.filter_selected:after {
    right: 6px;
}
#filters_mobile .filters_selected .btn {
    margin-top: 10px;
    color: #fff !important;
    font-size: 16px;
}
#filters_mobile .filters_selected {
    padding: 20px 0 0px;
}
#filters_mobile .mm-navbar__title {
    font-weight: bold;
    font-size: 18px;
    color: #656565;
    padding: 18px 0;
}
.mm-btn_clear:after,
.mm-btn_close:after {
    right: 29px;
}
.mm-btn_clear:after,
.mm-btn_clear:before,
.mm-btn_close:after,
.mm-btn_close:before {
    width: 8px;
    height: 8px;
}
.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
    border-color: #656565;
}
#filters_mobile .mm-navbar {
    height: 55px;
    background: #ddd;
}
#filters_mobile .mm-btn {
    height: 55px;
}
#filters_mobile .mm-panel:after,
#filters_mobile .mm-panel:before {
    height: 15px;
}

.filters_mobile_triggers .filter_btn {
    margin: 0;
    background-color: #fff;
    border: none;
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.06);
    text-align: left;
    padding: 0 15px;
    color: #000;
    height: calc(2.25rem + 2px);
}
.filters_mobile_triggers .filter_btn:hover {
    box-shadow: none;
    background-color: #fff;
}
.filters_mobile_triggers .custom-select {
    border-radius: 0;
    background-color: #efefef;
    width: 100%;
    box-shadow: none;
    color: #000;
}
.filters_mobile_triggers #filters_mobile {
    display: none;
}

.help_btn .fa {
    margin-right: 6px;
    font-size: 18px;
    vertical-align: middle;
    margin-top: -2px;
}

.custom_theme .tooltipster-box {
    background: #fff;
    border: 2px solid #f57e32;
    border-radius: 0px;
}
.custom_theme .tooltipster-content {
    color: #656565;
    line-height: 18px;
    padding: 0px 0px;
}

/* our*/

#affiliateOffers .img-thumbnail_holder {
    height: auto;
    margin-bottom: 10px;
}
.product_img_holder {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 190px;
    position: relative;
    margin-bottom: 10px;
    transition: border 0.3s;
}
.product_img_holder:hover {
    border-color: #f57e32;
}
.product_img_holder > a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_img_holder img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    width: auto;
}
.product_title {
    display: block;
    color: #656565;
    font-size: 15px;
}
.product_catalog {
    display: block;
    color: #656565;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 7px;
}
.product_thumb small {
    color: #a1a1a1;
    padding-bottom: 10px;
    display: block;
    font-size: 108%;
}
.product_actions {
    position: absolute;
    top: -1px;
    right: -1px;
}
.product_actions .dropdown-menu {
    width: 210px;
    text-align: right;
    border-color: #f57e32;
}
.product_actions .dropdown-item {
    padding: 15px 20px 15px 0;
    border-bottom: 1px solid #f57e32;
    font-size: 15px;
    color: #656565;
}
.product_actions .dropdown-item:last-child {
    border: 0;
}

.product_actions .dropdown-item.added {
    color: #f57e32;
}
.product_actions .dropdown-item.added:before {
    font-size: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    height: 22px;
    margin-top: -13px;
}
.product_thumb_menu_btn {
    padding: 0;
    background: #dddddd;
    color: #2f2f2f;
    font-size: 21px;
    line-height: 21px;
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: lighter;
}
.product_thumb_menu_btn.grey {
    background: #dddddd;
    color: #2f2f2f;
}
.product_thumb_menu_btn .fa {
    line-height: 21px;
}
.product_thumb_menu_left {
    float: right;
    display: -webkit-box;
}

.contentBanner {
    display: none;
    justify-content:center;
    flex-direction: column;
    align-items: center;
}

.offer-list .text-right {
    height: 105px;
}

.save_filter_btn {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .search_result_list .product_title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .offer-list .text-right {
        height: 78px;
    }
    .offer-list .product_thumb small {
        font-size: 90%;
        margin-top: 3px;
    }
    .search_result_list .offer_list_details {
        width: calc(100% - 215px);
        height: 88px;
    }
    .search_result_list .product_title {
        font-size: 15px;
    }
    .search_result_list .product_thumb_menu_btn {
        float: right;
        width: 37px;
        height: 22px;
        background: none;
        padding-top: 2px;
        margin-right: 1px;
    }
    .search_result_list .product_img_holder {
        width: 90px;
        height: 85px;
    }
    .search_result_list .catalogue_thumb_info {
        font-size: 9px;
        padding: 2px 6px;
        
    }
    .search_result_list .product_thumb_menu_btn:hover {
        background: #fff !important;
        color: #f57e32 !important;
        border: 1px solid #f57e32;
    }
    .search_result_list .show > .product_thumb_menu_btn {
        background: #fff !important;
        color: #f57e32 !important;
        border: 1px solid #f57e32;
    }
    .search_result_list .product_actions {
        padding-top: 18px;
    }
    .search_result_list .product_actions .dropdown-menu {
        margin-top: -1px !important;
    }

    .shipping_added {
        margin-left: -20px;
        margin-bottom: -12px;
        max-width: 22px;
        max-height: 22px;
        position: absolute;
    }
    .offer_agent_added {
        margin-left: -45px;
        margin-bottom: 10px;
        max-width: 22px;
        max-height: 22px;
        position: absolute;
    }
    .certificates_imgs {
        margin-top: 0;
        margin-left: -5px;
    }
}

@media (max-width: 450px) {
    .search_result_list .product_actions {
        margin-left: -12px;
    }
}

/* New Action buttons on offers */
@media (min-width: 769px) {

    .offer-action-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        justify-self: inherit;
        width: 170px;
        border-radius: 2.5px;
        color: white;
        border-radius: 5px;
       text-transform: uppercase;
    }

    .offer-action-btn-txt,
    .offer-action-btn-graphic {
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 100%;
        height: 40px;
        text-align: center;
    }

    .offer-action-btn-icon {
        max-height: 100%;
    }

    .search_actions.d-sm-flex {
        height: 100%;
    }

    .offer-action-btn-txt {
        padding: 0 10px 0 10px;
        text-align: center;
        border-right: 2px solid white;
        flex-basis: 70%;
    }

    .action-catalogue {
        background-color: #f57d32;
    }

    .action-webshop {
        background-color: #1bbc30;
    }

    .offer-action-btn-graphic {
        flex-basis: 30%;
    }
}

@media (max-width: 1024px) {
    .offer-action-btn {
        display: flex;
        height: 4.5vh;
        width: 12vw;
        flex-direction: unset;
        font-size: 1.8vh;
        white-space: nowrap;
        overflow: hidden;
        color: white;
        border-radius: 2px;
        text-align: center;
        align-items: center;
        padding: 0.5vh 1vw;
        text-transform: uppercase;
        border-radius: 5px;
    }

    .offer-action-btn-graphic {
        display: none !important;
        flex-basis: 100%;
        max-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .offer-action-btn-txt {
        width: 100%;
        border-right: none;
    }
    .offer-action-btn-graphic {
        width: 100%;
    }

    .offer-action-btn-icon {
        height: 100%;
    }

    .action-catalogue {
        background-color: #f57d32;
    }

    .action-webshop {
        background-color: #1bbc30;
    }

    .search_actions.d-sm-flex {
        align-items: center;
    }
}
@media (max-width: 414px) {
    .offer-action-btn {
        width: 20vw;
    }
}
@media (max-width: 320px) {
    .offer-action-btn {
        width: 18vw;
    }
}
/* end */

/* Spotlight webshop graphic */

.spot-btn-graphic {
    position: absolute;
    right: 10px;
    top: 55px;
    height: 7vh;
    max-height: 7vw;
    width: 7vh;
    max-width: 7vw;
    background-color: #1bbc30;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.spot-btn-icon {
    height: 80%;
    width: 80%;
}

/* end */

/* .webshop-open-img {
    height: 70px;
    padding-top: 10px;
    padding-left: 10px;
} */

.catalogue-open-img {
    height: 50px;
    padding-top: 10px;
}

#catalogue-open-img {
    height: 50px;
    padding-top: 10px;
}

#spotlight-search-offers {
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    width: 100%;
    display: flex;
}

.spotlight_thumbnail_holder {
    height: 440px;
    padding-top: 10px;
    padding-bottom: 15px;
    overflow: hidden;
    position: relative;
}
.spotlight {
    padding-bottom: 0px;
    padding-top: 10px;
}
.spotlight_thumbnail_holder .top-header {
    background: #fff;
    color: #222;
    text-align: left;
    height: 50px;
}
.spotlight_thumbnail_holder .spot-img-holder {
    overflow: hidden;
    height: 245px;
    background: #fff;
}
.spotlight_thumbnail_holder .local-badge-wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: auto;
    left: 0;
}
.spotlight_thumbnail_holder .spot_txt_holder {
    background: #fff;
    color: #222;
    height: 120px;
    padding: 20px 15px;
}
.spotlight_thumbnail_holder .banner {
    position: absolute;
    bottom: 20px;
    padding-left: 15px;
    font-size: 80%;
}
.spot_txt_holder .title {
    color: #222;
    font-size: 14px;
    font-weight: bold;
}
.spot_txt_holder .title img {
    height: auto;
    width: auto;
    max-height: 22px;
    max-width: 65px;
    margin-bottom: 5px;
}
.spot_txt_holder .quatity {
    font-weight: bold;
    font-size: 12px;
}
.spot_txt_holder .chain {
    font-size: 13px;
    line-height: 12px;
}
.spot_txt_holder .defined_desc {
    font-size: 12px;
}
.spot_txt_holder .price {
    color: #222;
    font-size: 22px;
    font-weight: bold;
    line-height: 20px;
}

@media (max-width: 1024px) {
    .spotlight_thumbnail_holder {
        height: 385px;
    }
    .spotlight_thumbnail_holder .spot-img-holder {
        height: 190px;
    }
    /*	.spotlight_thumbnail_holder .store-name-logo img { max-width: 30%; max-height: 120%; }	*/
    .spot_txt_holder .title {
        font-size: 12px;
    }
    .spot_txt_holder .quatity {
        font-size: 10px;
    }
    .spot_txt_holder .chain {
        font-size: 10px;
    }
    .spot_txt_holder .defined_desc {
        font-size: 10px;
    }
    .spot_txt_holder .price {
        font-size: 20px;
    }
}

.spotlight {
    display: flex;
    justify-content: center;
    width: 100%;
}

.spotlight-link-wrapper {
    flex-basis: 0;
    max-width: 50%;
    padding: 0 10px 0 10px;
    flex-shrink: 0;
    flex-grow: 1;
}


.offer-action-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    padding: 0 10px 0 0;
    flex-basis: 50%;
}

.search-result-item:hover {
    text-decoration: none !important;
}

.search-result-item:hover .offer-action-btn-txt,
.search-result-item:hover .search-result-details {
    text-decoration: underline !important;
}

@media (min-width: 576px) {
    .spotlight-link-wrapper {
        flex-basis: 0;
        max-width: 25%;
        flex-shrink: 0;
        flex-grow: 1;
        padding: 0 10px 0 10px;
    }
}

@media (max-width: 428px) {
    .search-result-item.highlighted-offer {
        background: linear-gradient(98deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 68%, rgb(188, 188, 188, 1) 68%, rgb(188, 188, 188, 1) 100%) !important;
    }

    .offer-action-price {
        padding: 0 0 10px 0;
    }

    .offer-action-btn {
        width: 100%;
    }

    .search-result-actions {
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .search-result-item {
        padding: 10px 10px;
    }

    .local-badge-wrapper{ 
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .spotlight {
        padding-bottom: 15px;
    }
    .spotlight_thumbnail_holder {
        height: 270px;
    }
    /*	.spot_txt_holder .title img { height: 18px; }		*/
    .spotlight_thumbnail_holder .top-header {
        font-size: 8px;
        padding: 12px 10px;
    }
    .spotlight_thumbnail_holder .spot-img-holder {
        height: 130px;
    }
    .spotlight_thumbnail_holder .spot_txt_holder {
        padding: 15px 8px;
        height: 80px;
    }
    /*	.spotlight_thumbnail_holder .store-name-logo img { max-height: 80%; }	*/
    .spotlight_thumbnail_holder .banner {
        bottom: 2px;
        padding-left: 8px;
        font-size: 60%;
    }
    .spot_txt_holder .title {
        font-size: 10px;
    }
    .spot_txt_holder .quatity {
        font-size: 6px;
        line-height: 15px;
    }
    .spot_txt_holder .chain {
        font-size: 10px;
    }
    .spot_txt_holder .defined_desc {
        font-size: 8px;
    }
    .spot_txt_holder .price {
        font-size: 13px;
        line-height: 15px;
    }
}
@media (max-width: 540px) {
    .spotlight {
        padding-bottom: 15px;
    }
    .spotlight_thumbnail_holder {
        height: 345px;
    }
    .spotlight_thumbnail_holder .top-header {
        font-size: 12px;
    }
    .spotlight_thumbnail_holder .spot-img-holder {
        height: 190px;
    }
    .spotlight_thumbnail_holder .spot_txt_holder {
        height: 95px;
    }
    .spotlight_thumbnail_holder .banner {
        font-size: 65%;
    }
    .spot_txt_holder .title {
        font-size: 12px;
    }
    .spot_txt_holder .quatity {
        font-size: 10px;
        line-height: 17px;
    }
    .spot_txt_holder .chain {
        font-size: 12px;
    }
    .spot_txt_holder .defined_desc {
        font-size: 12px;
    }
    .spot_txt_holder .price {
        font-size: 18px;
    }
}
@media (max-width: 414px) {
    .spotlight {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .spotlight_thumbnail_holder {
        height: 320px;
    }
    .spotlight_thumbnail_holder .top-header {
        font-size: 12px;
    }
    .spotlight_thumbnail_holder .spot-img-holder {
        height: 160px;
    }
    .spotlight_thumbnail_holder .banner {
        bottom: 5px;
        font-size: 70%;
    }
    .spot_txt_holder .title {
        font-size: 11px;
    }
    .spot_txt_holder .quatity {
        font-size: 9px;
    }
    .spot_txt_holder .chain {
        font-size: 11px;
    }
    .spot_txt_holder .defined_desc {
        font-size: 11px;
    }
    .spot_txt_holder .price {
        font-size: 18px;
    }
}
@media (max-width: 375px) {
    .spotlight {
        padding-top: 5px;
        padding-bottom: 10px;
    }
    .spotlight_thumbnail_holder {
        height: 300px;
    }
    .spotlight_thumbnail_holder .top-header {
        padding: 10px 7px;
        font-size: 11px;
    }
    .spotlight_thumbnail_holder .spot-img-holder {
        height: 150px;
    }
    .spotlight_thumbnail_holder .banner {
        bottom: 2px;
    }
    .spot_txt_holder .quatity {
        font-size: 7px;
    }
    .spot_txt_holder .chain {
        font-size: 9px;
    }
    .spot_txt_holder .defined_desc {
        font-size: 9x;
    }
    .spot_txt_holder .price {
        font-size: 15px;
    }
}
@media (max-width: 360px) {
    .spotlight {
        padding-bottom: 10px;
    }
    .spotlight_thumbnail_holder {
        height: 285px;
    }
    .spotlight_thumbnail_holder .top-header {
        height: 40px;
    }
    .spotlight_thumbnail_holder .spot-img-holder {
        height: 140px;
    }
    .spot_txt_holder .price {
        font-size: 14px;
    }
}
@media (max-width: 320px) {
    .spotlight {
        padding-bottom: 10px;
    }
    .spotlight_thumbnail_holder {
        height: 260px;
    }
    .spotlight_thumbnail_holder .top-header {
        height: 36px;
    }
    .spotlight_thumbnail_holder .spot-img-holder {
        height: 128px;
    }
    .spotlight_thumbnail_holder .banner {
        font-size: 60%;
    }
}
.filter_btn.disabled {
    border-color: lightgray;
}
.filter_dropdown.disabled {
    display: none !important;
}

.spotlight {
    display: flex;
    justify-content: center;
}
#more_info {
    z-index: 99999999;
}
.errMsg {
    color: red;
    display: none;
}

.slick-slide {
    height: 100px;
}

.slider-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    font-weight: bold;
}

.slider-price {
    margin: 0;
    margin-bottom: 10px;
}

.slider-retailer {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: italic;
}

.slider-buttons {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.slider-text,
.slider-price,
.slider-retailer {
    color: gray;
}

.search-result-item .product_img_holder {
    margin: 10px 10px 20px 30px;
}
.search-result-item .offer_list_details {
    height: 110px;
    padding: 10px;
}
.search-result-item .img-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.search-result-item .product_title {
    font-size: 17px;
}
.search-result-item .product_title img {
    height: auto;
    width: auto;
    max-height: 22px;
    max-width: 65px;
    margin-bottom: 5px;
}

.search-result-item .product_thumb_menu_btn {
    margin-top: 7px;
    background: #ddd;
}

.search-result-item .store-name-text {
    color: #656565;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.headerFilters .sort_select {
    margin-top: 10px;
}
a.mobile_filters.filter_green_btn {
    right: 48%;
    bottom: 20px;
    position: fixed;
    z-index: 100;
}

@media (max-width: 768px) {
    a.mobile_filters.filter_green_btn {
        right: 46%;
    }
}
@media (max-width: 540px) {
    .search-result-item .offer_list_details {
        width: 190px;
        min-width: 220px;
    }
    .search-result-item .product_thumb_menu_btn {
        height: 38px;
        margin-top: -5px;
    }
    .search-result-item .product_actions {
        padding-top: 8px;
    }
    .headerFilters .sort_select {
        margin-top: 2px;
        font-size: 12px;
    }
    a.mobile_filters.filter_green_btn {
        right: 44%;
    }
}
@media (max-width: 414px) {
    .search-result-item .offer_list_details {
        width: 130px;
        min-width: 150px;
    }

    .search-result-item .product_img_holder {
        margin-left: 10px;
    }
    .search-result-item .product_title {
        font-size: 15px;
    }
    a.mobile_filters.filter_green_btn {
        right: 10%;
    }
}
@media (max-width: 375px) {
    .search-result-item .offer_list_details {
        width: 115px;
        min-width: 125px;
    }

    .search-result-item .product_img_holder {
        margin-left: 5px;
    }
    .search-result-item .product_title {
        font-size: 14px;
    }
    .search-result-item .product_thumb_menu_btn {
        height: 35px;
    }
}
@media (max-width: 360px) {
    .search-result-item .offer_list_details {
        width: 110px;
        min-width: 115px;
    }
    .search-result-item .product_title {
        font-size: 14px;
    }
    .search-result-item .product_thumb_menu_btn {
        height: 32px;
        width: 32px;
    }
}
@media (max-width: 320px) {
    .search-result-item .offer_list_details {
        width: 90x;
        min-width: 80px;
    }
}
/* Google Font Raleway */
/* cyrillic-ext */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/raleway/v19/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrEHJA.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/raleway/v19/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCMPrEHJA.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/raleway/v19/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCHPrEHJA.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/raleway/v19/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrEHJA.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/raleway/v19/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrE.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
        U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Google Font Raleway END */
/*!
 * 
 *         SimpleBar.js - v2.6.1
 *         Scrollbars, simpler.
 *         https://grsmto.github.io/simplebar/
 *         
 *         Made by Adrien Grsmto from a fork by Jonathan Nicol
 *         Under MIT License
 *       
 */
[data-simplebar] {
    position: relative;
    z-index: 0;
    overflow: hidden!important;
    max-height: inherit;
    -webkit-overflow-scrolling: touch; /* Trigger native scrolling for mobile, if not supported, plugin is used. */
}

[data-simplebar="init"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.simplebar-scroll-content {
    overflow-x: hidden!important;
    overflow-y: scroll;
    min-width: 100%!important;
    max-height: inherit!important;
    -webkit-box-sizing: content-box!important;
            box-sizing: content-box!important;
}

.simplebar-content {
    overflow-y: hidden!important;
    overflow-x: scroll;
    -webkit-box-sizing: border-box!important;
            box-sizing: border-box!important;
    min-height: 100%!important;
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 11px;
}

.simplebar-scrollbar {
    position: absolute;
    right: 2px;
    width: 7px;
    min-height: 10px;
}

.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    background: black;
    border-radius: 7px;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.simplebar-track:hover .simplebar-scrollbar:before,
.simplebar-track .simplebar-scrollbar.visible:before {
    /* When hovered, remove all transitions from drag handle */
    opacity: 0.5;
    -webkit-transition: opacity 0 linear;
    transition: opacity 0 linear;
}

.simplebar-track.vertical {
    top: 0;
}

.simplebar-track.vertical .simplebar-scrollbar:before {
    top: 2px;
    bottom: 2px;
}

.simplebar-track.horizontal {
    left: 0;
    width: auto;
    height: 11px;
}

.simplebar-track.horizontal .simplebar-scrollbar:before {
    height: 100%;
    left: 2px;
    right: 2px;
}

.horizontal.simplebar-track .simplebar-scrollbar {
    right: auto;
    top: 2px;
    height: 7px;
    min-height: 0;
    min-width: 10px;
    width: auto;
}
