/*!
Theme Name: Kava Child
Theme URI:
Author: Zemez
Author URI:
Description: Kava child theme.
Template: kava
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kava-child
*/

:root{
    --purple: #452465;
    --red: #d12b2b;
    --green: #2ec070;
}

body{
    background-color:#F2F0F5;
}

/* Offer Tabs */
.offer_tabs {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: center;
    margin: 20px 0 10px 0;
    padding: 0 0 20px 0;
}

/* Offers Top Header */
.offers_top_header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* Offers List Title */
.offers_title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Offer Tab Pills */
.offer_pills {
    margin: 0 !important;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
}

.offer_pills .nav-item a {
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0.5px;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 0;
    border-right:1px solid #d5d5d5;
}

.offer_pills .nav-item a:hover{
    background-color:var(--purple) !important;
    color:#fff !important;
    border-color:var(--purple);
}

.offer_pills .nav-item a.active{
    background-color:var(--purple) !important;
    color:#fff !important;
    border-right:0;
}

.offer_pills .nav-item:first-child a {
    border-radius: 5px 0 0 5px;
}

.offer_pills .nav-item:last-child a {
    border-radius: 0 5px 5px 0;
    border-right:0;
}

/* Offers Heading */
.offers_heading {
    margin: 15px 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Offer Wrapper */
.offer_wrapper {
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    border-color: #d5d5d5;
    box-shadow: 0px 5px 5px 0px #e3e2e4;
    transition: all 0.3s;
    padding: 14px 0px;
    margin-bottom: 15px;
    background-color: #fff;
}
.offer_wrapper:hover{
    border-color:var(--purple);
}

/* Offer Column */
.offer_column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Title */
.offer_title{
    font-family: "Poppins";
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    width: 100%;
}

/* Product ID */
.offer_product_id{

}

/* Price Wrapper */
.offer_price_wrapper {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0000001A;
    border-radius: 5px;
    padding: 2px 0;
    text-align: center;
    margin: 0 3px;
    min-width: 70px;
}

/* Price Label */
.offer_price_label{
    font-family: "Poppins";
    font-weight: 500;
    font-size: 0.8rem;
}

/* Price  */
.offer_price_value {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Inventory Wrapper */
.offer_inventory_wrapper{
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0000001A;
    border-radius: 5px;
    padding: 2px 0;
    text-align: center;
    margin: 0 5px;
    min-width: 70px;
}

/* Inventory Label */
.offer_inventory_label{
    font-family: "Poppins";
    font-weight: 500;
    font-size: 0.8rem;
}

/* Inventory Value */
.offer_inventory_value{
    font-family: "Poppins";
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Offer Status */
.offer_status {
    display: inline;
    margin-right: 10px;
    margin-bottom: 1px;
}
.offer_status svg{
    width: 16px;
    height: 16px;
}

/* Button Actions */
.actions_column{
    justify-content: flex-end;
}
.btn-actions {
    background-color: transparent !important;
    padding: 0 !important;
}
.btn-actions:focus{
    outline: 0;
    box-shadow: none !important;
}
.btn-actions:focus svg{
    fill:var(--purple);
}
.btn-actions svg {
    width: 20px;
    height: 20px;
}

.dropdown-item.delete{
    color:var(--red);
}
.dropdown-item.active, .dropdown-item:active{
    background-color:var(--purple);
}
.dropdown-item.delete:hover{
    background-color:var(--red);
    color:#fff;
}