.productViewContainer {
    position: relative;
    float: left;
    width: 23%;
    height: auto;
    cursor: pointer;
    margin-right: 1%;
    margin-left: 1%;
    background-color: white;
    border-radius: 10px;
    top: 0px;
    margin-bottom: 20px;
    transition: top .2s ease-out;
    -moz-transition: top .2s ease-out;
    -webkit-transition: top .2s ease-out;
    -o-transition: top .2s ease-out;
}


.productSlide .productViewContainer {
    width: 89%;
    height: 337px;
}

.segundoImg{
    /*display:none !important;*/
    opacity: 0;
    position: absolute !important;
    left: 0px;
    top:0px;
}
/*.productViewContainer:hover .segundoImg{
    display: block !important;
    opacity: 1;
}
.productViewContainer:hover .primerImg{
    opacity: 0;
}*/

.productViewTop {
        overflow: hidden;
    display: block;
    position: relative;
    height: 100% !important;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition-property: opacity;
    transition-duration: 0.3s;
}

.textPrice{float: left;color: #ADADAD;font-weight: 100;}

.priceView{
    margin-right: 5px;
}

.productViewBottom {
    height: 122px;
    overflow: hidden;
    width: 100%;
    display: block;
    justify-content: space-evenly;
    text-align: center;
}

.productViewImage {
    height: 100%;
    width: 100%;
}

.productViewName {
    color: #208661;
    margin-bottom: 0;
    margin-top: 15px;
    font-weight: 900;
    width: calc(100% - 30px);
    margin-left: 15px;
    text-align: left;
    font-size: 17px;
    line-height: 18px;
    height: 40px;
}

.productViewName em {
    font-size: 12px;
}

.addProductBtn{
    display: block;
    position: relative;
    width: calc(100% - 30px);
    margin-top: 5px;
    top: 20px;
    margin-left: 15px;
    text-align: center;
    font-size: 13px;
    justify-content: center;
    line-height: 5px;
    height: 27px;
    border-radius: 4px;
    background-color: #208661;
    border: solid 1px #208661;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 900;
}

.addProductBtn:hover{
    background-color: white;
    border: solid 1.5px #208661;
    color: #208661;
    font-weight: bold;
}

.addProductBtn:hover p{
    color: #208661;
    font-weight: bold;
}

.addProductBtn p{
    color: white;
    line-height: 4px;
}

.productViewPrice {
    overflow: hidden;
    color: #ADADAD;
    font-size: 14px;
    margin-top: 0;
    height: auto;
    position: relative;
    font-weight: 900;
    width: 90%;
    text-align: right;
    float: right;
    line-height: 15px;
    margin-right: 9px;
}
.badgeFile {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40%;
    margin-right: 15px;
    margin-top: 15px;
}

.oldPrice {
    position: relative;
    font-size: 14px;
    margin-right: 8px;
    font-weight: 100;
}

.oldPrice:before {
    position: absolute;
    content: "";
    left: 0;
    top: 6px;
    right: 0;
    border-top: 2px solid;
    border-color: inherit;
    color: #208661;
}

.bankPrice {
    position: relative;
    width: 100%;
    font-size: 13px;
    color: #ee3223;
    line-height: 27px;
    display: inline-block;
    width: auto;
    margin-top: 5px;
    font-weight: 600;
}

.bankPriceImg {
    position: relative;
    float: left;
    height: 25px;
    margin-right: 5px;
}

.bankPriceText {
    position: relative;
    float: left;
}

@media screen and (max-width: 768px) {
    .productViewContainer {
        width: 44%;
        height: auto;
        overflow: hidden;
        margin-bottom: 15px;
        text-align: center;
        margin-right: 3%;
        margin-left: 3%;
        margin-bottom: 30px;
    }

    .productViewTop {
        overflow: hidden;
        display: inline-block;
    }
    .badgeFile {
        width: 28% !important;
        top: 0;
        right: 1px;
    }

    .productViewImage {
        height: auto;
    }

    .productSlide .badgeFile {
        top: 0;
    }

    .productViewName {
        font-size: 3.9vw;
        padding-left: 10px;
        padding-right: 5px;
        width: calc(100% - 20px);
        margin-bottom: 4px;
        margin-top: 0;
        height: 30px;
        line-height: 15px;
        margin-left: 0px;
    }

    .productViewName em{
        font-size: 12px;
    }

    .productViewPrice {
        font-size: 10px;
        font-weight: 600;
        margin-left: 10px;
        margin-top: 5px;
        width: calc(100% - 20px);

    }

    .productViewBottom {
        height: 95px;
    }
    .addProductBtn p{
        margin-top: 7%;
        position: absolute;
        text-align: center;
        color: white;
        width: fit-content;
        margin-left: 2.5vw;
        font-size: 2vw;
    }
    .addProductBtn {
        font-size: 7px;
        height: 20px;
        top: 27px;
        width: calc(100% - 20px);
        margin-left: 10px;
        line-height: unset;
    }
    .oldPrice {
        font-size: 9px;
        margin-right: 8px;
        font-weight: 100;
    }
    .oldPrice:before {
        top: 3px;
        right: 0;
        border-top: 1px solid;
        border-color: inherit;
        color: #208661;
    }


}