/***********************************************************************************
    POPUP PRODUCT
***********************************************************************************/

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.lightbox-blanket {
    background-color: rgba(30, 30, 30, 0.9);
    display: block;
    height: 100vh;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    width: 100vw;
    z-index: 20;
}

.pop-up-container {
    height: 100%;
    width: auto;
    display: table;
    margin: auto;
    position: static;
}

.pop-up-container-vertical {
    height: 100%;
    vertical-align: middle;
    display: table-cell;
}

.pop-up-wrapper {
    -webkit-box-shadow: -45px 49px 83px 1px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: -45px 49px 83px 1px rgba(0, 0, 0, 0.45);
    box-shadow: -45px 49px 83px 1px rgba(0, 0, 0, 0.45);
    display: block;
    margin: 20px auto;
    width: auto;
    position: relative;
}

.pop-up-wrapper {
    background-color: white;
    display: block;
    padding: 50px;
}

.go-back {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #222;
    width: 0;
    height: 0;
    border-top: 60px solid #dd9c25;
    border-right: 60px solid transparent;
}

.go-back i {
    font-size: 20px;
    position: relative;
    top: -52px;
    left: 10px;
}

.product-left {
    display: inline-block;
    padding-right: 4%;
    vertical-align: top;
    width: 46%;
}

.product-right {
    display: inline-block;
    vertical-align: top;
    width: 49%;
}

.product-bottom {
    border-top: 1px solid #ccc;
    position: relative;
    padding-top: 20px;
}

.product-manufacturer {
    color: #222;
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
    margin: -2px;
}

.product-title {
    font-size: 20px;
    color: #888;
}

.product-price {
    color: #222;
    font-size: 18px;
    letter-spacing: 1px;
}

.product-price-cents {
    /*text-decoration: underline;*/
    vertical-align: top;
    /*padding-left: 3px;*/
}

.product-image {
    padding: 10px 10px 0 10px;
    width: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    height: 250px;
}

.product-description {
    line-height: 1.5;
        font-size: 15px;
    max-width: 400px;
}

.product-stock {
    color: rgb(109, 171, 15);
    font-size: 15px;
}

.product-available {
    margin-top: 25px;
}

.product-quantity {
    margin-top: 25px;
    margin-bottom: 25px;
}

.product-checkout {
    position: absolute;
    left: 0;
    font-size: 12px;
    text-transform: uppercase;
}

.product-promo {
    color: #eeb822;
    font-size: 20px;
    position: absolute;
    left: 100px;
    padding-top:14px;
}

.product-checkout-promo {
    position: absolute;
    left: 240px;
    font-size: 12px;
    text-transform: uppercase;
}

.product-checkout-actions {
    position: absolute;
    right: 0;
    padding-top: -5px;
}

.product-checkout-total,
.product-checkout-total-promo,
.product-checkout-total-amount 
.product-checkout-total-amount-promo{
    font-size: 20px;
    color: #C17A41;
}

.product-checkout-total *,
.product-checkout-total-promo * {
    display: inline-block;
}

.product-quantity-label {
    font-size: 16px;
    text-transform: uppercase;
}

.product-quantity * {
    display: inline-block;
}

#product-quantity-input {
    background-color: #eee;
    border: none;
    width: 50px!important;
    text-align: center;
}

.product-quantity-subtract,
.product-quantity-add {
    margin-left: 20px;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

.product-quantity-subtract {
    margin-right: 20px;
}

.product-checkout-actions a{
    font-size: 14px;
}

#productDetails {
    position: relative;
}

#imgDiscount {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
}

/***********************************************************************************
    CARD PRODUCT
***********************************************************************************/

.card {
    margin: 16px 5px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.cardHeader {
    padding: 16px;
    height:400px;
    border-bottom: 1px solid #e1e1e1;
}

.product-card:hover {
    box-shadow: 0 4px 30px #e1e1e1;
}

.product-card {
    position: relative;
    max-width: 240px;
    cursor: pointer;
}

/***********************************************************************************
    TOAST ADD TO CARD
***********************************************************************************/

.toast {
    position: fixed;
    top: -50px;
    left: calc(50vw - 50px);
    z-index: 25;
    padding: 5px 10px;
    border-radius: 15px;
}

.toast-success {
    background-color: #dd9c25;
    color: white;
    font-size: 12pt;
}

.toast-transition {
    top: calc(50px);
    transition: top 1s;
}

.hidden {
    display: none;
}

/***********************************************************************************
    POPUP CAROUSEL
***********************************************************************************/
.car-card {
    margin: 10px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.car-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* height: 250px; */
}

.car-cardHeader {
    padding: 10px;
    height:240px;
    border-bottom: 1px solid #e1e1e1;
}

.car-product-title {
    font-size: 15px;
    color: #888;
}

.car-product-price {
    color: #222;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 2px;
}