body {
    background: rgba(252,252,252,1);
    /*background-image: url('http://turinter.com/image/wallpapers/turinter-bg-03.jpg');*/
    background-repeat: no-repeat;
    background-position-y: -220px;
    background-position-x: 0px;
}

/* Top Nav */
#top-nav {
    margin: 0px;
    border: none;
    border-radius: 0px;
    _background: rgba(24,60,142,.5);
    background: rgba(0,0,0,1);
}
/* Top Nav */

/* Jum Logo */
#jum-logo {
    margin: 0px;
    background: transparent;
}
/* Jum Logo */

/* Main Nav */
#main-nav {
    border-radius: 0px;
    border: none;
    background: rgba(255,255,255,1);
    border-bottom: solid 3px rgba(24,60,142,1);
    border-top: solid 1px rgba(24,60,142,1);
    border-left: solid 1px rgba(24,60,142,1);
    border-right: solid 1px rgba(24,60,142,1);
    margin: 0px;
}
#main-nav li a {
    color: rgba(24,60,142,1);
}
#main-nav li a:hover {
    transition: all 1s;
    background: rgba(24,60,142,1);
    color: rgba(255,255,255,1);
}
/* Main Nav */

/* Filters */
@media (min-width: 768px) {
    .toggle-search-btn {
        margin-right: 50px;
    }
}
@media (max-width: 768px) {
    .toggle-search-btn {
        margin-left: 15px;
    }   
}
#search-content {
    _border: solid 1px rgba(230,230,230,1);
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0px;
    background: rgba(24,60,142,.8);
    color: rgba(200,200,200,1);
}
.tab-content {
    padding: 10px;
}
.btn-tabs {
    background-color: rgba(255,255,255,0.1);
    border: solid 1px rgba(0,0,0,0.1);
}
/* Filters */


/* Breadcrumbs */
.breadcrumb {
    _background: rgba(50,50,50,.8);
    background: rgba(24,60,142,.8);
    border-radius: 0px;
    margin-bottom: 10px;
}
.breadcrumb li a{
    color: rgba(240,240,240,1);
    font-size: 12px;
}
.breadcrumb>li+li:before {
    color: rgba(240,240,240,1);
    font-size: 12px;

}
/* Breadcrumbs */


/* Tarifario */
.divider {
    border-top: 1px double #7d7d7d;
    margin-bottom: 25px;
    margin-top: 25px;
    text-align: center;
}
.divider span {
    background: #F0F0F0;
    display: inline-block;
    padding: 0 24px;
    position: relative;
    top: -15px;
}
#filters {
    margin: 0px 0px 50px 0px;
}
.table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > thead > tr > td.info, .table > thead > tr > th.info {
    background-color: #f4ed31;
    color: rgb(24, 60, 141);
}
/* Tarifario */


/* Footer */
footer {
    background: rgba(255,255,255,1);
    padding: 10px 0px;
    border-top: solid 1px rgba(230,230,230,1);
}
.franquicia {
    margin: 0px;
    color: rgba(130,130,130,1);
}
.social-links a {
    background: rgba(100,100,100,1);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    color: rgba(255,255,255,1);
    box-shadow: 2px 2px 0px rgba(0,0,0,.1);
}
#socios-carousel .item{
    margin: 3px;
}
#socios-carousel .item img{
    display: block;
    _width: 100%;
    _height: auto;
}
/* Footer */

/* Suplementos Product*/
.supplement-card{
    border-radius: 16px;
    overflow: hidden;
    transition: .3s;
}

.supplement-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,.15);
}

/* imagen */
.supplement-img-wrapper{
    position: relative;
    overflow: hidden;
}

.supplement-img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s;
}

.supplement-card:hover .supplement-img{
    transform: scale(1.07);
}

/* overlay */
.title-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

.title-overlay h5{
    color: #fff;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.title-overlay small{
    color: rgba(255,255,255,.8);
    font-size: 11px;
}

/* botón */
.btn-add-modern{
    cursor: pointer;
    display: block;
}

.btn-check{
    display: none;
}

.btn-modern{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px;
    border-radius: 50px;

    background: linear-gradient(135deg,#667eea,#764ba2);
    color: #fff;

    font-weight: 600;
    transition: .3s;
}

.btn-modern:hover{
    transform: scale(1.03);
}

.btn-check:checked + .btn-modern{
    background: linear-gradient(135deg,#11998e,#38ef7d);
}