/*============================================================================
  Table of Contents

  #Utilities Classes
    // Global
    // Titles
    // Colors
    // Shadows
    // Icons
    // Buttons
    // Lines Division
    // Hovers
    // Selection
    // Transition
    // Circle
    // Center
    // No Padding
    // Effect zoom
    // Img
    // Shadows
  #Partials
    // Well
    // Breadcrumbs
    // Section title
    // Thumbnails
    // Sliders
    // Banner brand
  #Header and nav
    // Header
    // Nav
    // Nav desktop
    // Nav mobile
    // Brand
    // Search
    // Contact
  #Footer    
    // Footer top
    // Footer bottom
    // News 
  #Products section
    // Banner products
  #Product section





==============================================================================*/

/*============================================================================
  #UTILITIES CLASSES
==============================================================================*/
/* // GLOBAL */
body {
    font-family: "Roboto", sans-serif;
    padding-top: 0;
    color: #555;
}
hr {
    border-top: 1px solid #e7e7e7;
}
/* // TITLES */
h1 {
    font-family: "Staatliches", cursive;
}
h2 {
    font-family: "Staatliches", cursive;
    font-size: 38px;
    line-height: 34px;
}
h3 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 300;
}
h4 {
    font-size: 20px;
    font-weight: bold;
}
h5 {
    font-size: 14px;
    font-weight: bold;
}
hr {
    height: 10px;
    margin: 0;
    background-color: #009966;
}
/* Padding sections */
.padding-sections {
    padding: 60px 0;
}
/* // COLORS */
/* Principal 1 (Verde)*/
.primary-color-1 {
    color: #009966;
}
/* Principal 2 (Verde)*/
.primary-color-2 {
    color: #006666;
}
/* Principal 3 (Verde)*/
.primary-color-3 {
    color: #60d5b5;
}
/* Fondo 1 (Gris claro) */
.back-color-1 {
    background-color: #eee;
}
/* Fondo 2 (Blanco) */
.back-color-2 {
    background-color: white;
}
/* // SHADOWS */
.shadow-1 {
    -webkit-box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.6);
}
/* // ICONS */
.icon {
    fill: #555;
}
.icon-x1 {
    width: 18px;
    height: 18px;
}
.icon-x2 {
    width: 24px;
    height: 24px;
}
.icon-x3 {
    width: 36px;
    height: 36px;
}
/* // BUTTONS */
.btn,
.btn.active,
.btn:active,
.btn:hover,
.btn:active:focus,
.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    outline-offset: 0;
}
/* btn / primary */
.btn-primary {
    height: 50px;
    width: 160px;
    border: 2px solid white;
    background-color: transparent;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    padding: 14px;
}
/* btn / secundary */
.btn-secundary {
    height: 30px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    padding: 3px 20px;
}
/* btn / tertiary */
.btn-tertiary {
    color: #009966;
}
.btn-tertiary:hover,
.btn-tertiary:active,
.btn-tertiary:focus {
    text-decoration: underline;
    color: #009966;
}
/* btn class */
.btn-1 {
    border: 2px solid #009966;
    background-color: white;
    color: #009966;
}
.btn-1:hover,
.btn-1:active,
.btn-1:focus {
    background-color: #009966;
    border: 2px solid #009966;
    color: white;
}
.btn-2 {
    border: 2px solid #009966;
    background-color: #009966;
    color: white;
}
.btn-2:hover,
.btn-2:active,
.btn-2:focus {
    border: 2px solid #009966;
    background-color: #009966;
    color: white;
}
/* Arrow 1 */
.arrow1 {
    width: 30px;
    height: 30px;
    padding: 4px;
    border: 2px solid #555;
}
.arrow1:hover {
    background-color: #cc2a25;
    border: 2px solid #cc2a25;
}
.arrow1:hover .icon {
    fill: white;
}
/* // LINES DIVISION */
.line-1 {
    border-top: 1px solid #dadada;
}
.line-2 {
    border-top: 1px solid #e7e7e7;
    margin: 15px 0;
}
/* // HOVERS  */
/* hover / box */
.box-hover-1:hover {
    -webkit-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.15);
}
/* // SELECTION */
*::-moz-selection {
    background: #009966;
    color: white;
}
*::selection {
    background: #009966;
    color: white;
}
/* // TRANSITION */
.transition {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
/* // CIRCLE */
.circle {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
/* // CENTER */
.center-xy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.center-x {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.center-y {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
/* // NO PADDING */
.no-padding {
    padding: 0 !important;
    margin: 0 !important;
}
.no-padding-left {
    padding-left: 0 !important;
}
.no-padding-right {
    padding-right: 0 !important;
}
/* // IMG */
.img-hover:hover {
    opacity: 1;
}
.background-img {
    z-index: -1;
}
/* // EFFECT ZOOM */
figure {
    position: relative;
    text-align: center;
    overflow: hidden;
}
figure img {
    position: relative;
    display: block;
    opacity: 1;
}
.effect-zoom {
    background: #2f3238;
}
.effect-zoom img {
    max-width: none;
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.effect-zoom:hover img {
    opacity: 0.6;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}
/* // SHADOWS */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/*============================================================================
      #PARTIALS
    ==============================================================================*/
/* // WELL */
/* Buscador */
.well {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 15px 0;
    width: 50%;
    float: right;
}
.well .form-control {
    border: 1px solid #dadada;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: white;
}
.well input::placeholder {
    color: #555;
}
.well .form-group {
    position: relative;
    margin-bottom: 0;
}
.well .icon {
    position: absolute;
    right: 10px;
}
/* RESPONSIVE */
@media (max-width: 991px) {
    .well {
        margin-top: 0;
        width: 100%;
    }
}
/* // Section title */
.section-head {
    margin-bottom: 30px;
}
.section-head .btn {
    float: right;
}
.section-head p {
    text-align: center;
    margin: 10px 0;
}
/* // RESPONSIVE */
@media (max-width: 991px) and (min-width: 768px) {
    .section-head p {
        text-align: left;
        margin: 0;
    }
    .section-head h4 {
        margin: 0 0 2px 0;
    }
}
@media (max-width: 767px) {
    .section-head {
        text-align: center;
    }
    .section-head .btn {
        float: initial;
    }
    .section-head p {
        margin: 0 0 30px 0;
    }
    .section-head h4 {
        margin: 0 0 2px 0;
    }
}
/* // Thumbnails */
.thumb img {
    width: 100%;
}
.thumb h2 {
    margin-top: 0;
    margin-bottom: 15px;
}
/* Thumbnails: 1 */
.thumb-1 {
    -webkit-box-shadow: 4px 4px 12px -6px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: 4px 4px 12px -6px rgba(0, 0, 0, 0.57);
    box-shadow: 4px 4px 12px -6px rgba(0, 0, 0, 0.57);
}
.thumb-1 h2 {
    text-align: center;
    color: white;
}
.thumb-1 img {
    z-index: 0;
}
/* Thumbnails: 2 */
.thumb-2 {
    margin-bottom: 10px;
    color: #009966;
    -webkit-box-shadow: 4px 4px 12px -6px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: 4px 4px 12px -6px rgba(0, 0, 0, 0.57);
    box-shadow: 4px 4px 12px -6px rgba(0, 0, 0, 0.57);
}
.thumb-2 .right-thumb {
    padding: 30px;
}
.thumb-2.effect-zoom {
    background-color: white;
}
.thumb-2 .left-thumb img,
.thumb-2:hover img {
    opacity: 1;
}
.thumb-2 figure {
    height: inherit;
}
/* Thumbnails: 2 */
.thumb-3 {
    background-color: white;
    border: 1px solid #dadada;
    padding: 0;
    margin: 0 -1px;
}
.thumb-3 .btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    margin-left: 15px;
}
/* // RESPONSIVE */
@media (max-width: 768px) {
    .line-thumb-2 {
        margin-top: 30px;
    }
    .thumb-2 .right-thumb {
        text-align: center;
    }
}
/* Thumbnails: 3 */
.thumb-3 .body-thumb {
    border-bottom: 1px solid #dadada;
}
.thumb-3 .info-thumb {
    padding: 15px;
}
.thumb-3 .info-thumb p {
    line-height: 18px;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .thumb-3 {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .thumb-3 {
        text-align: center;
    }
    .thumb-3 .btn {
        position: initial;
        left: initial;
        margin-bottom: 25px;
        margin-left: 0;
    }
}
/* // SLIDERS */
/* Slide Home */
.carousel-inner,
.carousel-inner > .item,
.box-back-slide {
    height: inherit;
}
.slide-main {
    height: 511px;
}
.speech-slide {
    width: 370px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background-color: white;
    text-align: left;
    z-index: 1;
    padding: 30px;
    border-top: 10px solid #009966;
}
.speech-slide h2 {
    color: #009966;
    margin-top: 0;
}
.speech-slide p {
    font-size: 16px;
    line-height: 18px;
}
.box-back-slide {
    position: relative;
}
.back-slide {
    z-index: 0;
    width: 100%;
}
.back-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.carousel-control.left,
.carousel-control.right {
    background-image: none;
}
.nav-control {
    background-color: white;
    bottom: 25px;
    height: 60px;
    padding: 5px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
}
.nav-control a {
    position: relative;
    display: inline-block;
    float: left;
    width: 50px;
    height: 50px;
    background-color: white;
    border: 1px solid #dadada;
}
.nav-control a:hover,
.nav-control a:active,
.nav-control a:visited,
.nav-control a:focus {
    background-color: #009966;
    border: 1px solid #009966;
}
.nav-control a:hover .icon,
.nav-control a:active .icon,
.nav-control a:visited .icon,
.nav-control a:focus .icon {
    fill: white;
}
.nav-control .icon {
    fill: #009966;
}
/* // RESPONSIVE */
@media (min-width: 1367px) {
    .slide-main {
        height: 670px;
    }
}
@media (max-width: 768px) {
    .box-back-slide {
        overflow: hidden;
    }
    .speech-slide {
        width: 100%;
        left: 50%;
        text-align: center;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    .carousel-indicators .active {
        border: 2px solid #75b6e0;
    }
    .carousel-indicators li {
        border: 1px solid #75b6e0;
    }
    .speech-slide h2 {
        font-size: 25px;
        line-height: 23px;
        margin-bottom: 5px;
        margin-top: 0;
        padding: 0;
        text-shadow: none;
        box-shadow: none;
    }
    .speech-slide h2 {
        margin-bottom: 15px;
    }
    .speech-slide p {
        font-size: 16px;
    }
    .nav-control {
        bottom: 0;
    }
    .nav-control.shadow-1 {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border: 2px solid #009966;
    }
    .nav-control a {
        width: 46px;
        height: 46px;
    }
}
@media (min-width: 360px) and (max-width: 768px) {
    .slide-main {
        height: 440px;
    }
    .speech-slide {
        top: 180px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    .box-back-slide {
        height: 180px;
    }
    .slide-main .btn-primary {
        bottom: 30px;
    }
}
@media (max-width: 359px) {
    .slide-main {
        height: 380px;
    }
    .speech-slide {
        top: 160px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    .box-back-slide {
        height: 160px;
    }
    .slide-main .btn-primary {
        bottom: 30px;
    }
}
/* Slide Product */
.product-section .product-id p {
    margin: 0;
}
.product-section .product-id {
    margin-top: 20px;
}
.product-section .info-product p {
    margin-bottom: 20px;
}
.product-section h1 {
    font-size: 24px;
    line-height: 20px;
    margin-bottom: 20px;
}
.product-slider {
    padding: 0;
}
.product-slider .adjust-padding {
    padding-left: 0;
}
.product-slider #carousel {
    border-left: 1px solid #dadada;
    border-right: 1px solid #dadada;
    margin: 0;
}
.product-slider #thumbcarousel {
    margin: 0;
    padding: 0;
}
.product-slider #thumbcarousel .item {
    text-align: center;
}
.product-slider #thumbcarousel .item .thumb {
    float: left;
    border: 1px solid #dadada;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
#thumbcarousel .carousel-inner {
    overflow: initial;
}
.product-slider #thumbcarousel .item .thumb:hover {
    border-left: 3px solid #009966;
}
.product-slider .item img {
    width: 100%;
    height: auto;
}
.carousel-control {
    color: #0284b8;
    text-align: center;
    text-shadow: none;
    font-size: 30px;
    width: 30px;
    height: 30px;
    line-height: 20px;
    top: 23%;
}
.carousel-control:hover,
.carousel-control:focus,
.carousel-control:active {
    color: #333;
}
.carousel-caption,
.carousel-control .fa {
    font: normal normal normal 30px/26px FontAwesome;
}
.carousel-control {
    background-color: rgba(0, 0, 0, 0);
    bottom: auto;
    font-size: 20px;
    left: 0;
    position: absolute;
    top: 30%;
    width: auto;
}
.carousel-control.right,
.carousel-control.left {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
}
/* // RESPONSIVE */
@media (max-width: 768px) {
    .product-slider .adjust-padding {
        padding-right: 0;
    }
    .product-slider .adjust-border {
        border-bottom: 1px solid #dadada;
    }
    .product-section .info-product p {
        margin-bottom: 0;
        margin-top: 20px;
    }
    .product-section .info-product {
        text-align: center;
    }
    .product-section .product-brand {
        float: initial;
        width: 30%;
        margin: 30px 0;
    }
}

/* // BANNER BRAND */
.banner-brand {
    overflow: hidden;
    background-color: #009966;
    color: white;
}
.info-banner-brand {
    padding-top: 60px;
}
.img-banner-brand {
    height: 380px;
    position: relative;
}
.img-banner-brand img {
    position: absolute;
    top: -50px;
    left: -50px;
}
/* RESPONSIVE */
@media (max-width: 991px) and (min-width: 768px) {
    .banner-brand {
        text-align: center;
    }
    .img-banner-brand img {
        position: initial;
        width: 80%;
    }
}
@media (max-width: 767px) {
    .banner-brand {
        text-align: center;
    }
    .img-banner-brand {
        height: initial;
    }
    .img-banner-brand img {
        position: initial;
        width: 100%;
    }
}
/*============================================================================
      #HEADER AND NAV
    ==============================================================================*/
/* // HEADER */
.head-top {
    background-color: white;
    height: 140px;
}
.navbar-brand {
    height: initial;
}
.brand_1 {
    height: 70px;
    fill: #009966;
}
.brand_1 svg {
    height: inherit;
}
/* // NAV */
.navbar {
    margin-bottom: 0;
}
#magic-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: #009966;
}
#menu .navbar-right {
    margin-top: 25px;
}
.navbar-nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav > li > a {
    padding: 15px;
    display: block;
    text-transform: uppercase;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    background-color: transparent;
    color: #009966;
    text-decoration: none;
}
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
    color: #009966;
    text-decoration: none;
}
.navbar-default {
    background-color: white;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: 0;
}
.caret {
    margin-left: 6px;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}
.navbar-toggle {
    margin-top: 15px;
}
#hamburger.is-active {
    background-color: #009966;
}
#hamburger.is-active .icon-bar {
    background: white !important;
}
/* RESPONSIVE */
@media (max-width: 767px) {
    .brand_1 {
        height: 50px;
    }
}
/*============================================================================
      #FOOTER
    ==============================================================================*/
/* // FOOTER TOP */
footer {
    margin: 0;
    background-color: white;
    border-top: 1px solid #dadada;
}
.footer-top {
    padding: 60px 0;
}
footer ul {
    padding-left: 0;
}
footer li {
    list-style: none;
}
/* Contact form */
.form-contact {
    border: 1px solid #e7e7e7;
    background-color: white;
}
.form-contact-body {
    padding: 15px;
}
.form-contact-header .bg-info > * {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.input-group {
    width: 100%;
}
.form-contact .form-control {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.icon-form-contact,
.form-contact .input-group {
    display: inline-block;
}
.form-control:focus {
    border-color: #009966;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-control {
    border-top-color: white;
    border-left-color: white;
    border-right-color: white;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-contact .icon {
    fill: #009966;
}
/* // FOOTER BOTTOM */
.footer-bottom {
    padding: 30px 0;
    color: #60d5b5;
    background-color: #009966;
}
.footer-bottom .legal {
    margin-top: 5px;
    margin-bottom: 0;
    text-align: center;
}
.brand_2 {
    height: 50px;
    fill: #60d5b5;
}
.brand_2 svg {
    height: inherit;
}
.liquid {
    height: 40px;
    float: right;
}
/* RESPONSIVE */
@media (max-width: 991px) {
    footer {
        text-align: center;
    }
    ::-webkit-input-placeholder {
        text-align: center;
    }
    :-moz-placeholder {
        text-align: center;
    }
    ::-moz-placeholder {
        text-align: center;
    }
    :-ms-input-placeholder {
        text-align: center;
    }
    .box-brand-footer > * {
        margin-top: 15px;
        float: initial;
    }
    .legal {
        margin: 30px 0 !important;
        padding: 0 35px;
    }
    .liquid {
        float: initial;
    }
}
/*============================================================================
      #PRODUCTS SECTION
    ==============================================================================*/
/* // BANNER PRODUCTS */
.banner-products {
    position: relative;
    height: 160px;
    color: white;
    background-color: #009966;
    text-align: center;
    border-bottom: 10px solid #60d5b5;
    -webkit-box-shadow: inset 0px 6px 6px -3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0px 6px 6px -3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 6px 6px -3px rgba(0, 0, 0, 0.2);
}
.products-section h1 {
    font-size: 38px;
    line-height: 34px;
    margin: 0;
}
/* Breadcrumb */
.breadcrumb {
    padding: 8px 0;
    background-color: transparent;
}
.breadcrumb a {
    color: #555;
}
.breadcrumb .last {
    color: #009966;
}
@media (max-width: 991px) {
    .breadcrumb {
        margin-bottom: 10px;
    }
}
/* Sidebar */
.sidebar a {
    text-decoration: none;
}
.sidebar a:hover {
    color: #009966;
}
.sidebar ul li {
    list-style: none;
}
.sidebar ul {
    padding-left: 0;
}
.category-item {
    text-transform: uppercase;
    font-size: 12px;
    color: #009966;
    border-bottom: 1px solid #dadada;
    padding-bottom: 5px;
}
.subcategory-item {
    margin-bottom: 5px;
}
.subcategory-item a {
    color: #555;
}
.level-2 {
    margin: 10px 0 20px 0;
}
/* Sidebar: Modal */
.filter-box .modal-content {
    text-align: center;
}
.filter-box .subcategory-item {
    margin-bottom: 15px;
}
.filter-box .level-2 {
    margin-top: 20px;
}
@media (max-width: 767px) {
    .filter-box {
        margin-top: 30px;
        margin-bottom: 20px;
        text-align: center;
    }
}
/* // PRODUCTS LIST */
.list-products-section {
    background-color: white;
    border-top: 1px solid #dadada;
    border-left: 1px solid #dadada;
    border-right: 1px solid #dadada;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-top-left-radius: 6px;
    -moz-border-top-right-radius: 6px;
}
.list-products-section .row {
    margin-left: 0;
    margin-right: 0;
}
.product-thumb {
    border-bottom: 1px solid #dadada;
    padding: 15px 0;
}
.product-img,
.product-brand {
    display: inline-block;
    float: left;
    width: 50%;
}
.product-img img,
.product-brand img {
    width: 100%;
    border: 1px solid #dadada;
}
.list-products-section .btn {
    float: right;
}
.product-id p {
    color: #009966;
    display: inline-block;
    margin-bottom: 5px;
}
.product-name {
    font-size: 18px;
}
/* RESPONSIVE */
@media (max-width: 991px) {
    .product-id {
        margin-top: 10px;
        text-align: center;
    }
    .product-name {
        font-size: 14px;
        text-align: center;
    }
    .box-btn {
        text-align: center;
        margin-bottom: 10px;
    }
    .list-products-section .btn {
        float: initial;
    }
}
/* Pagination */
.pagination {
    padding: 15px;
    background-color: white;
    border-bottom: 1px solid #dadada;
    border-left: 1px solid #dadada;
    border-right: 1px solid #dadada;
    margin-top: 0;
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-top-left-radius: 0px;
    -moz-border-top-right-radius: 0px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-bottom-left-radius: 6px;
    -moz-border-bottom-right-radius: 6px;
}
.quantity p {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 4px;
}
.quantity p:first-child,
.product-id p:last-child {
    font-weight: 600;
}
.quantity {
    float: left;
}
.pages {
    float: right;
}
.pages a {
    position: relative;
    display: inline-block;
    float: left;
    border: 1px solid #dadada;
    width: 30px;
    height: 30px;
    color: #555;
    margin: 0 2px;
}
.pages a:hover {
    background-color: #009966;
    border: #009966;
    color: white;
}
.pages a:hover .icon {
    fill: white;
}
.in-page {
    background-color: #009966 !important;
    border: #009966 !important;
    color: white !important;
}
/*============================================================================
      #PRODUCT SECTION
    ==============================================================================*/
.product-section {
    -webkit-box-shadow: inset 0px 6px 6px -3px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: inset 0px 6px 6px -3px rgba(0, 0, 0, 0.06);
    box-shadow: inset 0px 6px 6px -3px rgba(0, 0, 0, 0.06);
}
.wrapper-product {
    margin-bottom: 30px;
    background-color: white;
    border: 1px solid #dadada;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}
.product-section .breadcrumb {
    padding: 0;
    margin: 20px 0;
}

/*
    
Border radius

border-radius:;
-webkit-border-radius:;
-moz-border-radius:;


@media (min-width: 1200px){}
@media (max-width: 1199px) and (min-width: 992px){}
@media (max-width: 991px) and (min-width: 768px){}
@media (max-width: 767px){}

*/

.category-main .btn-primary:hover,
.category-main .btn-primary:active,
.category-main .btn-primary:focus {
    background-color: #009966;
    border: 2px solid #009966;
    color: white;
}
