body{
    background-color: #F6F6F6;
}

.body-service .category-item.active{
    background-color: #2B9EA6;
    border: 1px solid #2B9EA6;
}

.body-service .category-item.active .category-text{
    color: #ffffff;
}

.body-service .category-item{
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 40px;
    margin-right: 30px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
}

.body-service .category-text{
    font-weight: bold;
    padding-left: 10px;
}

.body-service .container-products .card-img-top{
    height: 190px;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    border-bottom:6px solid #2B9EA6;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);

}

.checkbox-text{
    color: white;
    /* padding-left: 26px; */
    padding-top: 5px;
    font-weight: 600;
    font-size: 16px;
}

.label-checkbox input[type="checkbox"] {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
    margin-left: -20px;
}

.label-checkbox label {
    min-height: 34px;
    display: block;
    padding-left: 40px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    vertical-align: sub;
}

.label-checkbox label {
    position: relative;
}

.label-checkbox label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 4px;
    width: 22px;
    height: 22px;
    transition: transform 0.28s ease;
    border-radius: 3px;
    /* border: 2px solid #2196F3; */
    background-color: #fff;
}

.label-checkbox label:after {
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    transition: transform ease 0.25s;
    will-change: transform;
    position: absolute;
    top: 12px;
    left: 10px;
}

.label-checkbox input[type="checkbox"]:checked ~ label::before {
    color: #fff;
    background-color: #01CC83;
}

.label-checkbox input[type="checkbox"]:checked ~ label::after {
    -webkit-transform: rotate(-45deg) scale(1.5);
    transform: rotate(-45deg) scale(1.5);
}

.container-products .card{
    /* width: 28%; */
    width: 370px;
    border-radius: 10px;
}

.container-products .marker{
    font-size: 12px;
}

.container-products .marker span{
    font-size: 20px;
    padding-right: 6px;
}

.container-products .card-header-text{
    bottom: 0;
    position: absolute;
    /* padding-left: 3rem; */
    padding-bottom: 13px;
    line-height: 0.6;
}

.container-products .card-body p{
    line-height: 21.5px;
    margin-bottom: 0.5rem;
}

.container-products .card-body .price{
    color: #37B4BB;
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 1rem;
}

/* .container-products .card-body .btn-add-cart{
    padding: 0.375rem 1.5rem;
    border-radius: 40px;
}

.container-products .card-body .btn-add-cart i{
    font-size: 1.5rem;
} */

.container-products .card-body .btn-add-cart span{
    padding-left: 5px;
}

@media screen and (max-width:760px){
    .container-products .card {
        margin-right: 0px !important;
    }
} 

@media screen and (max-width:560px){

    .container-category .category-item.active{
        margin-right: 0;
    }

    .container-category .category-item:not(.active) {
        display: none;
        
    }
} 