#spx-compare-wrapper {
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    height: 100px;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 999999;
    margin: 0;
    transition: all .5s ease-in-out;
}


#spx-compare-wrapper.spx-toggle-bottom-bar-active {
    bottom: -100px;
}

@media (max-width: 580px) {
    #spx-compare-wrapper {
        height: 150px;
    }

    #spx-compare-wrapper.spx-toggle-bottom-bar-active {
        bottom: -150px;
    }
}

#spx-compare-wrapper.spx-toggle-bottom-bar-active .spx-compare-toggle-arrow {
    transform: rotateZ(180deg);
}

#spx-compare-wrapper .spx-compare-toggle-arrow {
    position: absolute;
    top: -40px;
    width: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    cursor: pointer;
}

#spx-compare-wrapper .spx-compare-toggle-arrow i {
    font-size: 20px;
    padding: 10px 20px;
}

#spx-compare-wrapper .spx-compare-toggle-arrow i:before {
    content: '\f13a';
}

#spx-compare-wrapper .fixed-to-bottom-inner {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    margin: 0;
}

.spx-compare-toggle-arrow {
    position: relative;
    top: -22px;
    display: inline-block;
    width: 40px;
    background: #000;
}

@media (max-width: 767px) {
    #spx-compare-wrapper .fixed-to-bottom-inner {
        padding: 0 10px;
    }
}

/***************************/
/* COMPARE ITEMS ELEMENTS  */
/***************************/
#spx-compare-wrapper .spx-compare-list-items {
    display: block;
    height: 100%;
    padding: 0;
    float: left;
}

@media (min-width: 992px) {
    #spx-compare-wrapper .spx-compare-list-items {
        width: 90%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #spx-compare-wrapper .spx-compare-list-items {
        width: 85%;
    }
}

@media (max-width: 767px) and (min-width: 581px) {
    #spx-compare-wrapper .spx-compare-list-items {
        width: 85%;
    }
}

@media (max-width: 580px) {
    #spx-compare-wrapper .spx-compare-list-items {
        width: 100%;
        height: 70%;
        float: none;
    }
}


/* Arrows
*/
.spx-compare-list-items .sp-arrow {
    display: inline-block;
    position: relative;
    float: left;
    height: 100%;
    width: 7%;
    margin: 0;
    cursor: pointer;
}

@media (max-width: 400px){
    .spx-compare-list-items .sp-arrow{
        padding: 0;
    }
}

.spx-compare-list-items .sp-arrow:after {
    display: none;
    top: 50%;
    margin-top: -5px;
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.spx-compare-list-items .sp-arrow.is-active:after {
    display: block;
}

.spx-compare-list-items .sp-arrow.right:after {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 50%;
}

.spx-compare-list-items .sp-arrow.left:after {
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 50%;
}


.spx-compare-list-items .compare-list-wrapper {
    display: inline-block;
    width: 86%;
    height: 100%;
    float: left;
    padding: 0;
}
@media (max-width: 767px) {
    .spx-compare-list-items .compare-list-wrapper {
        display: flex;
        justify-content: center;
    }
}

/* Items
*/
.spx-compare-list-items .compare-item {
    display: none;
    height: 70px;
    border: 1px dashed white;
    box-sizing: border-box;
    background-color: #fff;
    color: #fff;
    padding: 0;
    margin: 15px 15px;
    float: left;
}

.spx-compare-list-items .compare-item.is-visible {
    display: block;
}

@media (min-width: 1201px) {
    .spx-compare-list-items .compare-item {
        width: calc(25% - 30px);
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .spx-compare-list-items .compare-item {
        width: calc(33% - 30px);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .spx-compare-list-items .compare-item {
        width: calc(50% - 30px);
    }
}

.spx-compare-list-items .compare-item-inner {
    display: block;
    height: 100%;
    width: 100%;
}

.spx-compare-list-items .compare-item-inner:after {
    content: " ";
    display: table;
    clear: both;
}

.spx-compare-list-items .compare-item-inner .item-num {
    display: block;
    float: left;
    height: 100%;
    width: 20px;
    font-size: 12px;
    color: #000;
    padding: 5px;
}

.spx-compare-list-items .compare-item-inner .item-image {
    width: 30%;
    float: left;
    padding: 5px;
    height: 100%;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.spx-compare-list-items .compare-item-inner .item-image img {
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    height: auto;
    width: auto;
    max-height: 80%;
    max-width: 80%;
}

.spx-compare-list-items .compare-item-inner .item-text {
    display: block;
    float: left;
    width: calc(70% - 40px);
    height: 100%;
    color: #000;
    overflow: hidden;
    font-size: 12px;
}

.spx-compare-list-items .compare-item-inner .item-remove {
    display: block;
    float: left;
    width: 20px;
    height: 100%;
    color: #000;
    text-align: center;
    cursor: pointer;
}


/***************************/
/* COMPARE BTN's ELEMENTS  */
/***************************/
#spx-compare-wrapper .spx-compare-list-buttons {
    padding: 0;
    float: left;
}

@media (min-width: 992px) {
    #spx-compare-wrapper .spx-compare-list-buttons {
        width: 10%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #spx-compare-wrapper .spx-compare-list-buttons {
        width: 15%;
    }
}

@media (max-width: 767px) and (min-width: 581px) {
    #spx-compare-wrapper .spx-compare-list-buttons {
        width: 15%;
    }
}

@media (max-width: 580px) {
    #spx-compare-wrapper .spx-compare-list-buttons {
        height: 30%;
        width: 100%;
        float: none;
        text-align: center;
        padding: 0 20px;
    }
}

.spx-compare-list-buttons button {
    display: block;
    margin: 10px 0;
    height: 35px;
    width: 100%;
    border-radius: 20px;
    background: white;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #f9b233;
    transition: 0.1s all ease;
}

@media (max-width: 580px) {
    .spx-compare-list-buttons button {
        display: inline-block;
        height: 25px;
        width: calc(50% - 20px);
        margin: 0 auto;
    }
}

@media(max-width: 1199px) {
    .spx-compare-list-buttons button {
        font-size: 1rem;
        line-height: 1rem;
    }
}

.spx-compare-list-buttons .remove-all-compare {
    color: #000;
}

@media (max-width: 580px) {
    .spx-compare-list-buttons .remove-all-compare {
        display: inline-block;
        height: 25px;
        width: calc(50% - 20px);
        float: right;

    }

    .spx-compare-list-buttons .compare-redirect {
        float: left;
    }
}


/***************************/
/*     COMPARE BUTTONS     */
/***************************/

.spx-compare-products-element.compare-option {
    display: block;
    height: 20px;
    margin: 0 0 20px 0;
    font-weight: normal;
    text-align: center;
}
.artbox:not(.artbox-big) .spx-compare-products-element.compare-option .reg-search {
    display: flex;
    justify-content: center;
}

.spx-compare-products-element.compare-option .spx-compare-products-element-label {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: left;
    font-weight: normal;
    cursor: pointer;
}

.spx-compare-products-element.compare-option .spx-compare-products-element-label .spx-circle-thin {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    float: left;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.spx-compare-products-element.compare-option .spx-compare-products-element-label.active .spx-circle-thin:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    background: #f9b233;
}

.spx-compare-products-element.compare-option .spx-compare-products-element-label .compare-list-text {
    display: inline-block;
    height: 18px;
    float: left;
    margin-left: 10px;
    line-height: 20px;
}

.spx-compare-products-element .spx-compare-products-element-input {
    display: none !important;
}

.spx-compare-products-element.compare-option .spx-compare-products-element-label.fin-search {
    display: flex;
    justify-content: center;
}


/***************************************/
/*     COMPARE BUTTONS - DETAIL PAGE   */
/***************************************/
.spx-compare-detail-button {
    margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 991px){
    .price-actions .spx-compare-detail-button{
        margin-top: 120px;
    }
}

.spx-compare-detail-button .spx-compare-detail-icon-button {
    border: none;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 2px 2px;
    cursor: pointer;
    border-radius: 50%;
    -ms-transform: rotate(270deg); /* IE 9 */
    -webkit-transform: rotate(270deg); /* Safari 3-8 */
    transform: rotate(270deg);
}

.spx-compare-detail-button .spx-compare-selected .spx-compare-detail-icon-button {
    background-color: #F9B233;
}



/***************************************/
/*        COMPARE PAGE ELEMENTS        */
/***************************************/
.spx-compare-page .compare-table {
    margin: 50px auto;
    width: 97%;
    border: 1px solid #ebebeb;
    table-layout: fixed;
}

.spx-compare-page .compare-table tr th {
    height: 45px;
    padding-left: 0.78vw;
    padding-right: 0.78vw;
    border: 1px solid #ebebeb;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    font-size: 13px;
    transition: 0.3s all;
}

.spx-compare-page .compare-table tr td {
    height: 45px;
    padding-left: 0.78vw;
    padding-right: 0.78vw;
    border: 1px solid #ebebeb;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    font-size: 13px;
    transition: 0.3s all;
    text-align: left;
}

.spx-compare-page .compare-table tr th,
.spx-compare-page .compare-table tr td{
    display: none;
}

.spx-compare-page .compare-table tr th.visible,
.spx-compare-page .compare-table tr td.visible{
    display: table-cell;
}

.spx-compare-page .compare-table tr td.first,
.spx-compare-page .compare-table tr th.first {
    min-width: 70px;
    white-space: normal;
    overflow: unset;
    word-break: break-all;
}

.spx-compare-page .compare-table th {
    position: relative;
}

.spx-compare-page .compare-table th .spx-close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
}

@media (max-width: 560px){
    .spx-compare-page .compare-table-wrapper .compare-table tr td.first,
    .spx-compare-page .compare-table-wrapper .compare-table tr th.first {
        width: 30%!important;
    }
}

@media (min-width: 561px) and (max-width: 992px){
    .spx-compare-page .compare-table-wrapper .compare-table tr td.first,
    .spx-compare-page .compare-table-wrapper .compare-table tr th.first {
        width: 70px!important;
    }
}

.spx-compare-page .compare-table-wrapper {
    margin-left: 8.33333333%;
}

.spx-compare-page .fa-times-thin:before {
    content: '\00d7';
}

.spx-compare-page .image-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.spx-compare-page .image-top a {
    display: block;
    padding: 10px 25px;
}

.spx-compare-page .image-top a img {
    height: 130px;
}

.spx-compare-page .horizontal-header{
    width: 10%;
    min-width: 60px;
}

.spx-compare-page .spx-compare-gray-line {
    background-color: #f7f7f7;
}

.spx-compare-page .spx-empty-compare-table {
    min-height: 500px;
}

.spx-compare-page .spx-empty-compare-table-hidden {
    min-height: 500px;
    display: none;
}

.spx-compare-page .option-holder {
    display: none;
}

.spx-compare-page .detailCartButton{
    margin: 0 5% 0 5%;
    height: 100%;
    position: relative;
}

@media (max-width: 580px) {
    .spx-compare-page .detailCartButton {
        height: 100%;
        margin: 0;
    }
}

.spx-compare-page .detailCartButton button.basketButton{
    margin: 0 0 0 0;
    position: absolute;
    top: 7px;
    left: 80px;
    padding: 0 0 0 0;
}

.spx-compare-page .detailCartButton button.basketButton img{
    width: 35px;
    height: auto;
    float: left;
    margin-top: -4px;
}

@media (max-width: 580px) {
    .spx-compare-page .detailCartButton button.basketButton img {
        float: none;
        margin: 0;
    }

    .spx-compare-page .detailCartButton button.basketButton .spx-add-to-cart-text {
        display: block;
        background-color: #f9b233;
        border-radius: 7px;
        width: 80%;
        margin: 0 auto;
    }
}

.spx-compare-page .spx-compare-not-available{
    margin-left: 5%;
}

.spx-compare-page .spx-compare-star{
    margin-left: 25px;
    color: red;
    position: absolute;
    top: 3px;
    height: 20px;
    right: -16px;
}

.spx-compare-page .spx-compare-page-arrow-wrapper {
    position: fixed;
    top: 50%;
    padding: 0;
    height: 105px;
}

.spx-compare-page .spx-compare-page-arrow-wrapper.spx-scroll-hide {
    opacity: 0 !important;
}

.spx-compare-page .spx-compare-page-arrow-wrapper.spx-left {
    left: 0;
}

.spx-compare-page .spx-compare-page-arrow-wrapper.spx-right {
    right: 0;
}

.spx-compare-page .spx-compare-page-arrow-wrapper .spx-compare-page-arrow {
    display: none;
    cursor: pointer;
}

.spx-compare-page .spx-compare-page-arrow-wrapper .spx-compare-page-arrow.is-active {
    display: block;
    background-color: rgba(0,0,0,0.3);
    height: 85px;
    margin-top: 20px;
    position: relative;
    width: 30px;
}

.spx-compare-page .spx-compare-page-arrow-wrapper .spx-compare-page-arrow.is-active.left {
    float: right;
}

.spx-compare-page .spx-compare-page-arrow-wrapper .spx-compare-page-arrow.is-active:after {
    display: block;
}

.spx-compare-page .spx-compare-page-arrow-wrapper .spx-compare-page-arrow:after {
    display: none;
    top: 45%;
    margin-top: -5px;
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.spx-compare-page .spx-compare-page-arrow-wrapper .spx-compare-page-arrow.right:after {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 36%;
}

.spx-compare-page .spx-compare-page-arrow-wrapper .spx-compare-page-arrow.left:after {
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 42%;
}


.spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton-wrapper {
    height: 60px;
    margin: 0;
    padding: 10px 0;
}

.spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton {
    margin: 0 5% 0 5%;
    height: 100%;
    position: relative;
}



.spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton .spx-fire-btn img {
    width: 35px;
    height: auto;
    float: left;
    margin-top: -4px;
}

.spx-compare-to-cart .spx-compare-product-to-cart-button-cell form .spx-compare-basketbutton,
.spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton .spx-fire-btn {
    width: 95%;
    height: 25px;
    margin: 0 0 0 0;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 0 0 0;
}

@media (min-width: 581px){
    .spx-compare-to-cart .spx-compare-product-to-cart-button-cell form .spx-compare-basketbutton {
        position: absolute;
        top: 7px;
        left: 50%;
        transform: translateX(-50%);
        padding-left: 30px;
    }

    .spx-compare-page .detailCartButton button.basketButton img{
        position: absolute;
        left: 0;
        top: 65%;
        transform: translateY(-50%);
    }
}

.spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton .spx-fire-btn {
    text-align: center;
    line-height: 28px;
}

.spx-compare-to-cart .spx-compare-product-to-cart-button-cell form .basketButton span {
    font-size: 13px;
    font-weight: 600;
}

.spx-compare-to-cart .spx-compare-product-to-cart-button-cell form .spx-quantity-send {
    display: none;
}

.spx-compare-basketbutton img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    top: 10px
}

.spx-compare-basketbutton .spx-compare-text {
    top: 2px;
    position: absolute;
    left: 35px;
}

@media (max-width: 1349px) {
    .spx-compare-to-cart .spx-compare-product-to-cart-button-cell form .spx-compare-basketbutton,
    .spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton .spx-fire-btn {
        width: 95%;
    }
}

@media (max-width: 580px) {
    .spx-compare-to-cart .spx-compare-product-to-cart-button-cell form .spx-compare-basketbutton {
        width: 100%;
        height: 100%;
        background: none;
        position: relative;
        transform: unset;
        left: unset;
        top: unset;
        padding: 0;
        margin: 0;
    }

    .spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton-wrapper {
        padding: 0;
        height: 100%;
    }

    .spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton {
        display: flex;
        justify-content: center;
    }

    .spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton .spx-fire-btn {
        position: relative;
        display: block;
        background-color: #f9b233;
        border-radius: 7px;
        margin: 40px auto 0;
        height: 20px;
        line-height: 20px;
        width: 80%;
        transform: none;
        left: auto;
    }

    .spx-compare-to-cart .spx-compare-product-to-cart-button-cell .spx-detailCartButton .spx-fire-btn img {
        float: none;
        margin: 0;
        width: 35px;
        height: auto;
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
    }
    .spx-compare-page .compare-table-wrapper .compare-table .spx-compare-to-cart .spx-compare-product-to-cart-button-cell {
        height: 81px;
    }

    .spx-compare-to-cart .spx-compare-product-to-cart-button-cell form .spx-compare-basketbutton .spx-compare-star {
        margin-left: 0;
        right: 0px;
        top: 64%;
        transform: translateX(-50%);
    }
}


/*BUNDLE & MATRIX ITEMS
*/
.spx-compare-info-bundle-matrix {
    margin: 0 30px 0 30px;
}

.spx-compare-info-bundle-matrix i {
    margin-right: 10px;
    color: red;
}


body table .spx-compare-product-to-cart-button-cell {
    height: 60px;
}

body table .spx-compare-product-to-cart-button-cell form {
    height: 60px;
    margin: 0;
    padding: 10px 0;
}

@media (max-width: 580px) {
    body table .spx-compare-product-to-cart-button-cell form {
        height: 80px;
    }
}

body table tbody tr .spx-compare-product-to-cart-button-cell{
    overflow: visible;
    padding: 0 0 0 0;
}



/***************************************/
/*     HELPER CLASSES FOR ELEMENTS     */
/***************************************/
.spx-compare-modal {
    display: none;
    position: fixed;
    background-color: #fff;
    z-index: 9999;
    border-bottom: 2px solid rgba(0, 0, 0, 0.35);
    overflow: auto;
    margin: 0 !important;
}
.spx-compare-modal.spx-show {
    display: flex;
}

#spx-popup-limitation-modal {
    height: 155px !important;
    width: 40% !important;
    top: calc(40% - 80px) !important;
    left: 30% !important;
    z-index: 9999;
}
@media (min-width: 768px) and (max-width: 1024px) {
    #spx-popup-limitation-modal {
        width: 50% !important;
        left: 25% !important;
    }
}
@media (max-width: 767px) {
    #spx-popup-limitation-modal {
        width: 75% !important;
        left: 15% !important;
    }
}
#spx-popup-limitation-modal .spx-popup-limitation-modal-title {
    width: 100%;
}
#spx-popup-limitation-modal .spx-popup-limitation-modal-title .heading {
    display: block;
    padding: 20px;
    height: 70px;
    position: relative;
    background-color: #ededed;
}
#spx-popup-limitation-modal .spx-popup-limitation-modal-title .heading h2 {
    margin: 0;
    text-align: left;
    color: #000;
}
#spx-popup-limitation-modal .spx-popup-limitation-modal-title .heading .spx-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background-color: #3c3c3b;
    overflow: hidden;
}
#spx-popup-limitation-modal .spx-popup-limitation-modal-title .heading .spx-modal-close span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    height: 100%;
}
#spx-popup-limitation-modal .spx-popup-limitation-modal-body {
    display: flex;
    height: 80px;
}
#spx-popup-limitation-modal .spx-popup-limitation-modal-body .limitation-body {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0;
    font-size: 18px;
    padding: 20px 20px 20px 20px;
    color: #000;
}

#spx-popup-cart-modal {
    height: auto !important;
    max-height: calc(100% - 60px) !important;
    width: 46% !important;
    top: 30px !important;
    left: 28% !important;
    margin: 0 !important;
    z-index: 9999;
}
@media (min-width: 768px) and (max-width: 1024px) {
    #spx-popup-cart-modal {
        width: 70% !important;
        left: 15% !important;
    }
}
@media (max-width: 767px) {
    #spx-popup-cart-modal {
        width: 90% !important;
        left: 5% !important;
    }
}




.spx-spinner {
    display:none;
    position: absolute;
    margin: 100px auto;
}

.spx-compare-count {
    position: absolute;
    top: -40px;
    right: 0;
    width: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    height: 40px;
}

.spx-compare-count span {
    display: block;
    width: 40px;
    height: 80%;
    font-size: 16px;
    padding: 5px;
    color: #000;
    border-radius: 50%;
    background: #fbbb00;
    margin: 8% auto;
    text-align: center;
}

html body #hbl-live-chat-wrapper #olark-wrapper .olark-chat-tab.spx-behind-compare-selection {
    z-index: 100!important;
}

html body div#___ratingbadge_0.spx-behind-compare-selection {
    z-index: 100!important;
}


/***************************************/
/*     FeuerDepot Styles               */
/***************************************/
.spx-feuerdepot .spx-compare-products-element.compare-option {
    position: absolute;
    left: 20px;
    bottom: 45%;
}

@media (min-width: 768px) and (max-width: 991px) {
    .spx-feuerdepot .spx-compare-products-element.compare-option {
        left: 10px;
    }
}



/***************************************/
/*     Schornsteinmarkt Styles         */
/***************************************/
.spx-schornsteinmarkt .spx-compare-products-element.compare-option {
    position: absolute;
    left: 20px;
    bottom: 45%;
}

@media (min-width: 768px) and (max-width: 991px) {
    .spx-schornsteinmarkt .spx-compare-products-element.compare-option {
        left: 10px;
    }
}