/**
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Software License Agreement
 * that is bundled with this package in the file LICENSE.txt.
 *
 * @author    Peter Sliacky (Zelarg)
 * @copyright Peter Sliacky (Zelarg)
 * @license   http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */

div#default_offers_hook {
    width: 100%;
}

.content-buffer.hidden {
    display: none;
}

.z_offers-container {
    background: white;
    /*border: 1px solid #36b4d2;*/
}

.z_offers-info-header {
    padding: 15px 15px;
    border-bottom: 1px solid #c3c3c3;
    font-weight: bold;
}

.z_offers-body {
    padding: 0px;
}

.z_offers-item {
    display: flex;
    flex-wrap: nowrap;
    padding: 2px 5px;
}

.z_offers-item > div {
    padding: 5px
}

.z_offers-item > .z_offers-checkbox {
    flex-grow: 0;
    vertical-align: middle;
    align-self: center;
}

.z_offers-body > label {
    display: block;
    margin: 0;
}

.z_offers-item > .z_offers-image {
    text-align: left;
    flex-grow: 0;
}

.z_offers-item > .z_offers-image > a img {
    max-width: 100px;
}

.z_offers-item > .z_offers-name {
    min-width: 120px;
    text-align: left;
    flex-grow: 1;
    padding-top: 10px;
}

.z_offers-item > .z_offers-price {
    width: 120px;
    text-align: center;
    flex-grow: 0;
    text-align: right;
    padding-right: 10px;
    padding-top: 10px;
    font-weight: bold;
}

.z_offers-item > .z_offers-price > .tax-label {
    display: none;
}

.z_offers-item.ticked {
    opacity: 1;
    background: #2592a917;
}

.z_offers-item:hover {
    background: #f7f7f7;
}

.z_offers-cart-item {
    display: none;
}

.z_offers-checkbox input[type='checkbox'] {
    height: 20px;
    width: 20px;
}

@media(max-width: 767px) {
    .z_offers-item {
        flex-wrap: wrap;
    }

    .z_offers-item > .z_offers-name {
        min-width: 100%;
        order: 3;
    }

    .z_offers-item > .z_offers-price {
        flex-grow: 1;
    }
}

/*.z_offers-item:hover .z_offers-checkbox label {*/
/*    outline: 1px solid black;*/
/*}*/