html * {
    /*-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
}
body{
    background-color: #EEEEEE;
}

h1, .h1 {
    font-size: 2.8em;
    line-height: 1.15em;
}
#logo{
    max-height: 110px;
    margin: 12px 0;
    max-width: 100%;
}
#header{
    background-color: white;
}
#navbar .navbar {
    border-radius: 0;
}

.navbar.navbar-primary{
    background-color: #65b07f;
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 12px -5px rgba(100, 176, 126, 0.46);
}
#follow{
    padding-top: 25px;
}
#follow-facebook,#follow-twitter{
    float: right;
    margin-left: 20px;
}

#moto{
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 25px;
    font-weight: lighter;
    padding: 20px 0 30px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    font-style: italic;
    line-height: 1.2;
    margin-top: 0;
}
#moto a{
    color: #333;
}
#moto a:hover{
    text-decoration: underline;
}
.card-oferta{
    position: relative;
    margin-bottom: 0;
}
.card-oferta .discount{
    position: absolute;
    top: 0px;
    left: 0px;
    border-top-left-radius: 3px;
    padding: 5px;
    color: white;
}
.card-date{
    text-align: right;
    color: #8e8a8c;
    font-size: 12px;
    font-style: italic;

}

.card-oferta .low-discount{
    border: 1px solid #e68900;
    background-color: #ff9800;
}
.card-oferta .medium-discount{
    border: 1px solid #02a1d4;
    background-color: #00bcd4;
}
.card-oferta .high-discount{
    border: 1px solid #149279;
    background-color: #65b07f;
}
/*.card-oferta .card-imagen{
    width: 25%;
    margin: 0;
    padding: 0;
    float: left;
    text-align: center;

}
.card-oferta .imagen{
    height: auto;
    max-width: 100%;
    padding: 10px 10px 5px 10px;
    max-height: 150px;

}*/
.card-oferta .card-content{
    padding: 10px;

}

.card-oferta .card-description{
    font-size: 15px;
    color: #333;
}

.navbar .navbar-nav > li > a{
    font-size: 15px;
}

.card-price{
    float: right;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
}
.previous-price, .current-price{
    display: inline-block;
    font-size: 20px;
    float: right;
}
.previous-price{
    color: #777;
    -webkit-font-smoothing: antialiased;
    padding-top: 7px;
}

.current-price{
    margin-left: 10px;
    border-radius: 3px;
    padding: 5px;
    background-color: #F8D04E /*rgb(158,158,158)*/;
    color: #000000;
    box-shadow: 0 2px 2px 0 rgba(158,158,158, 0.14), 0 3px 1px -2px rgba(158,158,158, 0.2), 0 1px 5px 0 rgba(158,158,158, 0.12);
}

.footer-color-black, .footer-transparent {
    background-color: rgba(30, 30, 30, 0.97);
    color: #DDDDDD;
}

.footer .copyright {
    color: #777777;
    padding: 10px 15px;
    margin: 15px 3px;
    line-height: 20px;
    text-align: center;
}

.footer-color-black, .footer-transparent {
    background-color: rgba(30, 30, 30, 0.97);
    color: #DDDDDD;
}

/* LOADER */
.loader{
    display: none;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}
.loader {
    color: white;
    font-size: 8px;
    margin: 30px auto 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}
.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loader:after {
    left: 3.5em;
}
@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
.product{
    position: relative;
    margin-bottom: 30px;
    display: block;
}
.card-link a{
    display: block;
    color: white;
    margin:0;
    padding: 10px 12px;
    background-color: #65b07f;
    border-radius: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    cursor: pointer;
}
.product a:hover{
    background-color: #65b07f;

}
/*.product:hover .card{
    opacity: 0.4;
}

.product:hover:before{
    content: 'VER OFERTA';
    background-color: #65b07f;
    color: white;
    padding: 10px 35px;
    position: absolute;
    z-index: 1000;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    border-radius: 2px;

}*/

.card .card-oferta-footer{
    clear: both;
    padding: 5px;
    height: auto;
    border-top: 1px solid #f5f5f5;;
}

.card .card-oferta-footer a:hover{
    background-color: transparent;
    cursor: pointer;
    text-decoration: underline;
}

.card img{
    width: auto;
}

.card-imagen img {
    width: auto;
    height: auto;
    max-width: 100%;
    height: 180px;
    margin: auto;
    display: block;
    padding: 10px 10px 0 10px;
}

.card .fuente-logo{
    display: inline-block;
    margin-right: 5px;
    float: left;
    padding-top: 7px;
}

.card .categoria-label{
    color: #65b07f;
    font-weight: bold;
    vertical-align: middle;
}
.card .subcategoria-label{
    color: #65b07f;
    vertical-align: middle;
}


.dropdown-menu{
    display: block;
}

.subcategory-menu{
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    padding: 12px 0;
    border-bottom: 1px solid #e6e5e5;
    margin: 0 15px;
}
.subcategory-menu li{
    float: left;
    list-style: none;
}
.subcategory-menu li a{
    color: #333;
    font-size: 16px;
    padding: 0 15px;
}
.subcategory-menu li a:hover{
    text-decoration: underline;
}
.nav>li{
    position: inherit;
}

.navbar.navbar-primary{
    box-shadow: none;
}
.navbar .navbar-nav > li > a{
    padding-top: 10px;
    padding-bottom: 10px;
}
.navbar-collapse{
    position: relative;
}
#navbar{
    margin-bottom: 47px;
}

.subcategory-active a{
    font-weight: bold;
}
#search-form{
    margin-bottom: 20px;
    height: 40px;
}
.search-box{
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    margin-top: 10px;
    clear: both;

}

.search-box input#search{
    width: 100%;
    height: 40px;
    background-color: #eeeeee;
    border: none;
    font-size: 10pt;
    float: left;
    color: #262626;
    padding-left: 45px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #262626;
}

.search-box input#search::-webkit-input-placeholder {
    color: #65737e;
}

.search-box input#search:-moz-placeholder { /* Firefox 18- */
    color: #65737e;
}

.search-box input#search::-moz-placeholder {  /* Firefox 19+ */
    color: #65737e;
}

.search-box input#search:-ms-input-placeholder {
    color: #65737e;
}

.search-box .icon{
    position: absolute;
    top: 50%;
    margin-left: 17px;
    margin-top: 10px;
    z-index: 1;
    color: #4f5b66;

    -webkit-transition: all .55s ease;
    -moz-transition: all .55s ease;
    -ms-transition: all .55s ease;
    -o-transition: all .55s ease;
    transition: all .55s ease;
}

.navbar-no-margin-bottom{
    margin-bottom: 0 !important;
}

.navbar.navbar-primary .dropdown-menu li > a:hover, .navbar.navbar-primary .dropdown-menu li > a:focus {
    color: #FFFFFF;
    background-color: #65b07f;
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(101, 176, 127, 0.4);
}

.navbar{
    margin-bottom: 0;
}

#footer{
    background-color: #333;
    color: #EEEEEE;
    font-weight: lighter;
    padding-bottom: 50px;
}
#footer a{
    color: #EEEEEE;
    font-weight: lighter;
}

.footer-social{
    margin: 20px 0;
    font-size: 20px;
}
.footer-social a{
    display: inline-block;
    margin-left: 10px;
}
#acerca-de{
    padding-bottom: 30px;
}
#acerca-de strong{
    font-weight: 500;
}
#acerca-de h1{
    font-size: 26px;
}
#acerca-de h2{
    font-size: 20px;
    font-weight: bold;
   /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
}
#acerca-de p{
    font-size: 18px;
    line-height: 1.4;
}
#acerca-de a{
    color: #65b07f ;
}
#acerca-de a:hover{
    text-decoration: underline;
}


@media all and (max-width: 768px) {
    .navbar-collapse{
        position: fixed;
    }

    .subcategory-menu {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        padding: 0 0 10px 0;
        border-bottom: none;
        margin: 0 15px;
    }

    .subcategory-menu a{
        margin: 5px 15px;
        display: block;
    }

    #navbar{
        margin-bottom: 0px;
    }
}

@media all and (max-width: 992px) {
    .navbar .navbar-nav > li > a {
        font-size: 13px;
        padding: 10px 7px;
    }
    .subcategory-menu li a {
        padding: 0 13px;
    }
    .search-box{
        margin-top: 5px;
    }
    #follow{
        padding-top: 10px;
    }
    #follow-facebook{
        margin-bottom: 4px;
    }
    #logo{
        display: block;
        margin: auto;
        height: 80px;
        padding-top: 5px;
    }

}

@media all and (max-width: 778px) {
    .navbar{
        padding: 0;
    }
    #search-form {
        margin-bottom: 10px;
    }
}

.card-header.card-header-image img{
    width: 100% !important;
    border-radius: 6px;
}

#pagina-blog{
    background-color: white;
}

.btn-primary{
    background-color: #64b07e !important;
}

.btn.btn-primary, .navbar .navbar-nav > li > a.btn.btn-primary {
    box-shadow: 0 2px 2px 0 rgba(99, 176, 125, 0.14), 0 3px 1px -2px rgba(99, 176, 125, 0.2), 0 1px 5px 0 rgba(99, 176, 125, 0.12) !important;
}

.btn.btn-primary:focus, .btn.btn-primary:active, .btn.btn-primary:hover, .navbar .navbar-nav > li > a.btn.btn-primary:focus, .navbar .navbar-nav > li > a.btn.btn-primary:active, .navbar .navbar-nav > li > a.btn.btn-primary:hover {
    box-shadow: 0 14px 26px -12px rgba(99, 176, 125, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(99, 176, 125, 0.2) !important;
}

.share-icons {
    padding: 0;
    margin: 0;
    float: right;
    margin-top: 15px;
}
.share-icons li {
    list-style: none;
    display: inline-block;
}
.share-icons li a {
    color: #959595;
    text-align: center;
}
.share-icons li a i {
    width: 28px;
    height: 28px;
    line-height: 28px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 15px;
}
.share-icons li a:hover i {
    color: #ffffff;
    background: #67AF80;
}

.entry-header .share-icons{
    float: none;
}

#pagina-blog .date {
    float: right;
    color: #797878;
    font-size: 14px;
    font-style: italic;
}

.badge-light {
    color: #111;
    background-color: #f8f9fa;
}
.badge-pill {
    font-weight: normal;
}
.entry-content img, .post-thumbnail img {
    width: 100%;
    height: auto;
}

#pagina-blog h2,
#pagina-blog h1{
    font-size: 1.825em;
    margin-top: 5px;
    font-weight: 700;
    font-family: "Roboto Slab", "Times New Roman", serif;
}
.widget-area {
    margin-top: 48px;
}
#recent-posts-2 ul{
    padding: 0;
}
#recent-posts-2 li{
    margin-bottom: 10px;
    list-style: none;
}
#recent-posts-2 li:before {
    content: "\f105";  /* this is your text. You can also use UTF-8 character codes as I do here */
    font-family: FontAwesome;

}

#secondary li a {
    color: #333;
    font-size: 16px;
}
#secondary li a:hover{
    text-decoration: underline;
}

.description, .card-description, .footer-big p {
    color: #777;
}

#pagina-blog h2{
    font-weight: normal;
}

.section-text a{
    text-decoration: underline;
    color: #555555 !important;
}

.section-text img{
    width: 100%;
}

.section-text ul{
    font-size: 1.35em;
    line-height: 1.5em;
    color: #555555;
}

.blog-post .section-text p {
    margin-bottom: 10px;
}

.nav-previous,
.nav-next{
    background-color: #eee;
    padding: 15px 10px;
    margin-bottom: 30px;
}

.nav-previous a,
.nav-next a{
    color: #333;
}

ul.navbar-nav{
    height: auto !important;
}

.card-blog{
    margin-bottom: 0;
}
