/* Shopping Cart Table (Basket Page) */

.basket-table, .address-table, .shipment-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.table-row {
    display: table-row;
}

.basket-table .table-cell {
    display: table-cell;
    border: #f0f0f0 1px solid;
    border-bottom: none;
}
.shipment-table .table-cell {
    display: table-cell;
    border: #f0f0f0 1px solid;
}

.basket-row-number {
    width: 60px;
    height: 150px;
    text-align: center;
    background-color: #a0a0a0;
    vertical-align: middle;
    color: #ffffff;
    font-size: 1.3em;
}

.basket-remove-item {
    width: 60px;
    height: 150px;
    text-align: center;
    background-color: #eaeaea;
    vertical-align: middle;
    color: #b11116;
}

.basket-product {
    width: 430px;
    text-align: center;
}

.basket-brand {
    width: 180px;
}

.basket-qty {
    width: 95px;
}

.basket-unit-price {
    width: 120px;
}

.basket-price {
    width: 260px;
}

.table-head {
    height: 50px;
    text-align: center;
    line-height: 50px;
}

.table-data {
    height: 100px;
    line-height: 100px;
    text-align: center;
}

.media.table-data {
    line-height: inherit;
    margin-top: 0;
}

.basket-product-img {
    width: 60px !important;
    margin: auto !important;
}

.basket-product .media-body {
    vertical-align: middle;
}

/* Delivery Hint */

.basket-hint {
    margin-bottom: 30px;
}

.delivery-hint {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 225px;
    padding: 30px;
    background-color: #fdf9d9;
    background-image: url("../images/icons/delivery.png");
    background-repeat: no-repeat;
    background-position: bottom left;
    border: 2px solid #fef0c6;
    border-radius: 5px;
}

.delivery-hint p {
    text-align: justify;
}

.basket-sum {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 14px;
}

.pay-sum {
    background-color: #c0f9fe;
}

.sum, .pay-sum {
    height: 60px;
    line-height: 60px;
    padding: 0 35px;
}

.sum-title {
    float: right;
}

.sum-data {
    float: left;
}

.order-hint {
    margin-top: 15px;
    height: 80px;
    border: 1px solid #b11116;
}

.order-hint > p {
    line-height: 40px !important;
    text-align: center !important;
    color: #b11116 !important;
}

/* filter */
.filter-tag {
    display: inline-block;
    position: relative;
    height: 40px;
    background-color: #ffffff;
    padding: 0 15px 0 40px;
    margin: 10px 0 0 10px;
    line-height: 40px;
    border-radius: 3px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}

.filter-close {
    position: absolute;
    left: 10px;
    top: 0;
    border-radius: 50%;
    cursor: pointer;
}

.filter-close i:hover {
    background-color: #b11116;
    color: #ffffff;
}

/* Products List */

.product-item {
    height: 420px;
    margin-bottom: 30px;
}

.product-img-wrap {
    position: relative;
    height: 300px;
    margin-bottom: 25px;
    padding: 15px 5px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.product-img-wrap:hover {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.product-img-wrap:hover .product-image {
    opacity: 0.1;
}

.product-img-wrap:hover .basket-div {
    opacity: 1;
    transform: scale(1);
}

.product-image {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: 0 auto;
    transition: 0.8s;
}

.basket-div i {
    color: #b11116;
    margin-bottom: 20px;
    font-size: 35px;
    text-align: center;
    transform: scaleX(-1);
}

.btn-basket {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    background-color: #b11116;
    width: 100px;
    height: 30px;
    font-size: 14px;
    display: block;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
}

.basket-div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 130px 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity 0.40s, transform 0.40s;
    transform: scale(0, 1);
}

.product-info {
    height: 100%;
}

.product-item-title {
    font-size: 16px;
    font-weight: bold;
}

.product-final-price {
    margin-top: 12px;
    color: #b11116;
}

.product-item-price.discounted {
    text-decoration: line-through;
    color: #cccccc;
}

/* Filter Panel */
.filter-panel {
    margin-bottom: 30px;
    padding: 18px 18px 0 18px;
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

.panel-toggle {
    float: left;
    width: 25px;
    height: 25px;
    text-align: center;
    background-color: #b11116;
    border-radius: 50%;
}

.panel-heading {
    padding: 0 0 15px 0;
}

/* Filter Color */
.color-ball {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #fd3b68;
}

/* TODO: change specificity order */
/* Filter Price */
.noUi-handle {
    top: -10px !important;
    width: 20px !important;
    height: 20px !important;
    background-color: #fff !important;
    border: 1px solid #b11116 !important;
    border-radius: 20px !important;
}

.noUi-handle:before, .noUi-handle:after {
    content: none !important;
}

.noUi-target {
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #e8e8e8 !important;
    height: 2px !important;
    border: none !important;
    border-radius: none !important;
    box-shadow: none !important;

}

.noUi-connect {
    height: 2px !important;
    background: #04243e !important;
}

.noUi-horizontal .noUi-tooltip {
    bottom: auto !important;
    top: 120% !important;
}

@media screen and (max-width: 768px) {
    .table-cell {
        display: flex;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

    .basket-row-number, .basket-remove-item {
        height: auto;
        padding: 10px;
    }

    .table-head {
        float: right;
        width: 40%;
        height: auto;
    }

    .table-data {
        float: left;
        width: 60%;
        height: auto;
    }

    .basket-product {
        padding: 0;
    }
}

/* ‌Btns */

.btn-main {
    border: 0;
    background-color: #04243e;
    font-size: 1em !important;
    height: 45px;
    width: 180px;
    padding: 12px 0;
    color: #fff;
}

.btn-main:hover {
    background-color: #b11116
}

.btn-round {
    height: 45px;
    width: 180px;
    background-color: #04243e;
    color: #ffffff;
    font-size: 1em !important;
    border-radius: 45px !important;
}

.btn-round:hover {
    background-color: #b11116
}

.basket-navigation {
    margin-bottom: 30px;
}

.product-offer {
    height: 160px;
    width: 100%;
    padding: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    transition: all 0.4s ease;
}

.product-offer:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.featured-offer {
    height: 560px;
    width: 100%;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.featured-offer:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.basket-offer {
    margin-bottom: 30px;
}

.basket-offers-img-sm {
    width: 80px !important;
    margin: auto !important;
}

.offers-img-lg {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.shipping-address-title {
    height: 50px;
    background-color: #04243e;
    color: #ffffff !important;
    text-align: center !important;
    font-size: 1em !important;
    line-height: 50px !important;
}

/* Address */

.address-table .row-number {
    width: 90px;
    background-color: #2e6da4;
}

.address-table .edit-remove-item {
    width: 75px;
    background-color: #1b6d85;
}

.address-head {
    width: 100%;
    height: 50px;
}

.address-data {
    height: 100px;
}

.address-city {
    width: 200px;
    height: 100%;
}

.address-detail {
    width: 540px;
    height: 100%;
}

.address-phone {
    width: 300px;
    height: 100%;
}

.address-table {
    height: 100%;
}

.shipping-address .radio label, .shipping-type .radio label {
    padding-left: 0;
    padding-right: 0;
}

.address-city .city, .address-city .province, .address-phone .phone, .address-phone .landline {
    height: 50px;
    line-height: 50px;
}

.address-table input {
    visibility: hidden;
}

.shipment-table .table-row {
    height: 100px;
}

.shipment-table .row-number {
    width: 65px;
    background-color: #f5f5f5;
    text-align: center;
    color: #e5e2e2;
}

.shipment-table .delivery-type {
    width: 125px;
}

.shipment-table .delivery-desc {
    width: 600px;
}

.shipment-table .delivery-price {
    width: 400px;
}

.no-invoice {
    width: 100%;
    height: 120px;
    background-color: #c0f9fe;
    background-image: url("../images/icons/paper-invoice-icon.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 20px;
}

.gift-wrap {
    width: 100%;
    height: 120px;
    background-color: #fdf9d9;
    background-image: url("../images/icons/gift-wrap-icon.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 20px;
}


.price-wrap {
    width: 100%;
    height: 120px;
    background-color: #6ab068;
    background-image: url("../images/icons/paper-invoice-icon.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 20px;
}

/* Publishers */
.publisher-card {
    position: relative;
    height: 380px;
    width: 100%;
    margin-bottom: 40px;
}

.publisher-card .publisher-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 330px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
}

.publisher-card .publisher-info {
    position: absolute;
    width: 225px;
    height: 95px;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.publisher-card .publisher-info {
    padding: 25px;
}

.publisher-card .publisher-name {
    display: block;
}

.publisher-card .like .countLikes:after {
    content: "\e8dc";
    font-family: "Material Icons";
    vertical-align: middle;
    padding-left: 5px;
    color: #aaaaaa;
}

.publisher-card .like:after {
    content: "|";
}

.publisher-card .heart a:after {
    content: "\e87e";
    font-family: "Material Icons";
    vertical-align: middle;
    padding-left: 5px;
    color: #aaaaaa;
}

.publisher-logo img  {
    height: 100%;
    object-fit: cover;
}

/* List Filter */
.list-filter {
    margin-bottom: 30px;
}

.alphabet-filter ul li {
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    margin-left: 18px;
    margin-bottom: 15px;
    text-align: center;
    line-height: 50px;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
}


/* Payment */
.pre-invoice {
    min-height: 500px;
    margin-bottom: 35px;
    padding: 30px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
}

.seller-info-title {
    height: 35px;
    background-color: #f5f5f5;
    text-align: center;
    line-height: 35px;
}

.search-category-wrap .row .checkbox label input:checked ~ .checkmark {
    background-image: url('../images/image-s4e2db65c66.png');
    background-repeat: no-repeat;
}

.search-category-wrap .row .checkbox label .checkmark {
    height: 10px;
    width: 10px;
    background: #fff;
    border: 2px solid #aaa;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
/* line 1015, ../sass/screen.scss */
.search-category-wrap .row .checkbox label input {
    display: none;
}
/* line 1018, ../sass/screen.scss */
.search-category-wrap .row .checkbox label input:checked + span {
    color: #b11116;
}
/* line 1021, ../sass/screen.scss */
.search-category-wrap .row .checkbox label input:checked ~ .checkmark {
    height: 13px;
    width: 14px;
    border: none;
    background-position: 0 -24px;
}

/* -=--------- */

@media screen and (max-width: 425px) {

    .table-head {
        width: 30%;
    }

    .table-data {
        width: 70%;
    }
}