.nosticky .header.sticky-header { position: static; }
.sticky-atc .atc-inner::after,
.sticky-atc .atc-inner::before {
    content: '';
    display: table;
    clear: both;
}
.sticky-atc {
    position: fixed;
    width: 100%;
    background: white;
    height: auto;
    border-top: 1px solid #ccc;
    z-index: 1000;
    max-height:0;
    overflow: hidden;
    min-height:0;
    transition: max-height 0.2s;
    top: auto;
    bottom: 0;
}
.sticky-atc.stuck-top {
top:0;
bottom:auto;
border-top:none;
    border-bottom: 1px solid #ccc;
}
.sticky-atc .atc-inner {
    margin-top:10px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.sticky-atc .atc-prodImg img {
    max-height: 60px;
}
.sticky-atc .atc-prodInfo,
.sticky-atc .atc-prodAction {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-startz
}
.sticky-atc .atc-prodAction {
    justify-content: flex-end
}
.sticky-atc .atc-prodAction > * {
    padding-left: 15px;
    padding-right: 15px;
}
.sticky-atc .atc-prodTitle {
    padding: 0 15px;
    font-family: "Ubuntu Condensed", Helvetica, Arial, sans-serif;
    font-size: 26px;
}
.sticky-atc .atc-prodPrice > * {
    display: inline-block;
    padding: 0 5px;
}
.sticky-atc .atc-prodPrice > *::before {
    content: '$';
}
.sticky-atc .atc-prodPrice .atc-big-price {
    font-size: 30px;
    font-weight: bold;
}
.sticky-atc .atc-prodPrice .atc-small-price {
    font-weight: bold;
    color: #777;
    text-decoration: line-through;
    font-size: 15px;
}
.sticky-atc .atc-prodPrice .atc-savings::before {
    content: 'Save: $'
} 
.sticky-atc .atc-prodPrice .atc-savings {
    color: #a00;
    font-size: 14px;
    border-left: 1px solid
}
.sticky-atc .atc-prodAction .atc-wishlist {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    width: 40px;
    height: 40px;
    color: #aaa;
    border: 2px solid currentColor;
    border-radius: 40px;
    text-align: center;
    transition:0.2s;
    background: transparent;
}
.sticky-atc .atc-prodAction .atc-wishlist::before {
    content: "\f141";
    font-size: 25px;
    display: inline-block;
    font-family: "Ionicons";
    line-height: 38px;
}
.sticky-atc .atc-prodAction .atc-wishlist:hover {
    color: #a00;
}
.sticky-atc.active {max-height: 200px;}
@media (max-width:767px) {
    .sticky-atc .atc-prodAction,
    .sticky-atc .atc-inner {
        flex-wrap: wrap;
    }
    .sticky-atc.active {
        max-height: unset;
        height: auto;
    }
    .sticky-atc .atc-prodWish {
        display: none;
    }
    .sticky-atc .atc-prodButton {
        width: 100%;
        order:1;
        text-align: center;
        padding:0;
    }
    .sticky-atc .atc-prodButton .btn {
        width: 100%;
    }
    .sticky-atc .atc-prodPrice {
        width: 100%;
        text-align: center;
    }
    .sticky-atc .atc-prodPrice .atc-big-price {
        font-size: 17px;
        margin: 8px 0;
    }
    .sticky-atc .atc-prodImg {
        display: none;
    }
    .sticky-atc .atc-inner >*{
        width: 100%;
    }
    .sticky-atc .atc-prodTitle {
        font-size: 20px;
        text-align: center;
        width: 100%;
    }
    .sticky-atc .atc-prodButton .btn {
        padding: 6px 0;
    }

}