/*!
 * jQuery simple gallery Plugin 1.1.0
 *
 * http://fernandomoreiraweb.com/
 *
 * Copyright 2013 Fernando Moreira
 * Released under the MIT license:
 *   http://mit.fernandomoreiraweb.com/
 */
 

 .gallery-wrap .img-big-wrap img {
  
    width: auto;
    display: inline-block;
    position: relative;
    z-index: 1;

}
 

.gallery-wrap .img-small-wrap .item-gallery {
  /*   width: 60px;
    height: 60px;*/
    width:80px;
    height:70px;
    border: 1px solid #ddd;
    margin: 7px 2px; 
    display: inline-block;
    overflow: hidden; 
    cursor:pointer;
}

.gallery-wrap .img-small-wrap .item-gallery:hover {
    opacity: 0.6;
}

.gallery-wrap .img-small-wrap {
    text-align: center;
}
.gallery-wrap .img-small-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 4px;

}

.product_price {
    display: inline-block;
    font-size: 30px;
    font-weight: 500;
    margin-top: 9px;
    clear: left;
    color:#00a65a;
}

.product_discount {
    display: inline-block;
    font-size: 17px;
    font-weight: 300;
    margin-top: 9px;
    clear: left;
    margin-left: 10px;
    color: red
}

label {
    width: 100%;
}

.card-input-element, .card-input-element-checkbox {
    display: none;
}

.card-input {
    margin: 10px;
    padding: 00px;
}

.card-input:hover {
    cursor: pointer;
}

.card-input-element:checked + .card-input {
     box-shadow: 0 0 1px 1px #2ecc71;
 }

.card-input-element:checked+.card::before {
    content: '\f058';
    color: #2ecc71;
    font-family: 'Font Awesome 5 Free';
    font-size: 24px;
    position: relative;
    /* Adjust these values accordingly */
    top: 5px;
    left: 8px;
    z-index: 5;
 
}

.card-input-element-checkbox:checked + .card-input {
    box-shadow: 0 0 1px 1px #2ecc71;
}

.card-input-element-checkbox:checked+.card::before {
    
    content: '\f058';
    color: #2ecc71;
    font-family: 'Font Awesome 5 Free';
    font-size: 24px;
    position: absolute;
    /* Adjust these values accordingly */
    top: 5px;
    left: 8px;
    z-index: 5;
}



label.radio_pay span {
    padding: 3vh 3vh;
    border: 1px solid #00d363;
    color: grey;
    display: inline-block;
    width: 100%;
}

label.radio_pay input:checked+span {
    padding: 3vh 3vh;
    background-color: rgb(0, 211, 99);
    color: #ffffff;
    display: inline-block;
    width: 100%;
}

label.radio_pay input {
    visibility: hidden;
    pointer-events: none
}

label.radio_pay {
    cursor: pointer
}