/*
    File: css/custom.css
    Author: Crece Consultores
*/

.bg-texture {
    background-image: url(../images/background.png);
    background-position: center center;
    background-repeat: repeat;
    background-size: 120px auto;
}

.btn-welcome {
    height: 160px;
}

/* cart-item-card */
.cart-item-card {
    
}

.cart-item-card .img-thumbnail {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: top center;
}

.cart-item-card .cart-item-configured {
    display: block;
    position: absolute;
    right: -5px;
    top: -5px;
}

/* cart-item-detail */
.cart-item-detail {
    
}

.cart-item-detail .cart-item-price {
    font-size: 18px;
}

.cart-item-detail .price {
    color: red;
    font-size: 22px;
    font-weight: 600;
}

/* payment-method */
.payment-method {
    
}

.payment-method .payment-method-choice input[type="radio"] {
    display: none;
}

.payment-method .payment-method-choice {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.payment-method .payment-method-choice img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    object-position: center center;
    border: 2px solid #fafafa;
    background-color: white;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 5px;
}

.payment-method .payment-method-choice input[type="radio"]:checked + img {
    border: 2px solid #000;
}

/* order-paid */
.order-paid {
    background-image: url(../images/paid.png);
    background-position: 80% 50%;
    background-repeat: no-repeat;
    background-size: 120px auto;
}