:root {
    --text-primary: #2D2D2D;
    --btn-primary: #559CA1;
    --btn-primary-hover: #398fa5;
    --btn-secondary: #dfe9eb;
    --btn-secondary-hover: #c5c8c9;
    --bg-disabled: #dfdfdf;
    --bg-primary: #DFDFDF;
    --color-material-icons: #000000;
    --color-link: black
}
@font-face {
    font-family: "Open Sans";
    src: url('../fonts/OpenSans.ttf') format('truetype-variations');
    font-display: block ;
    font-weight: 1 999;

}
@font-face {
    font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(../fonts/material-icons.eot);
    src: local("Material Icons"), local("MaterialIcons-Regular"), url(../fonts/material-icons.woff2) format("woff2"), url(../fonts/material-icons.woff) format("woff"), url(../fonts/material-icons.ttf) format("truetype")
}

/* icomoon*/
@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon.eot?61825j');
    src:  url('../fonts/icomoon.eot?61825j#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?61825j') format('truetype'),
    url('../fonts/icomoon.woff?61825j') format('woff'),
    url('../fonts/icomoon.svg?61825j#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-email:before {
    content: "\e900";
}
.icon-order:before {
    content: "\e901";
}
.icon-cart_check:before {
    content: "\e902";
}
.icon-wishlist:before {
    content: "\e903";
}
.icon-cookies:before {
    content: "\e904";
}
.icon-rgpd:before {
    content: "\e905";
}
.icon-address:before {
    content: "\e906";
}
.icon-user:before {
    content: "\e907";
}
.icon-voucher:before {
    content: "\e908";
}
.icon-slip:before {
    content: "\e909";
}
.icon-order:before {
    content: "\e901";
}
.icon-star:before {
    content: "\e90e";
}
.icon-logout:before {
    content: "\e90d";
}
.icon-social:before {
    content: "\e90b";
}
.icon-alerts:before {
    content: "\e90c";
}
/*end icomoon*/




body {
    font-family: "Open Sans";
    font-size: 1rem;
    line-height: 1.25em;
    color: var(--text-primary);
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html h1, html .h1{
    font-size: 35px;
}
html h2, html .h2{
    font-size: 25px;
}
html h3, html .h3{
    font-size: 19px;
}
.text-primary{
    color: var(--text-primary);
}
.material-icons{
    font-family: Material Icons;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    color: var(--color-material-icons)
}

i.material-icons.touchspin-up:before {
    content: "\e145";
}
i.material-icons.touchspin-down:before {
    content: "\e15b"
}
a{
    color: var(--color-link)
}
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #559CA1;
    width: 45px;
    height: 45px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 90;
}
#return-to-top i {
    color: white;
    margin: 0;
    position: relative;
    left: 8px;
    top: 8px;
    font-size: 28px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
    border-radius: 6px;
    line-height: 30px;
}
.btn-primary{
    background: var(--btn-primary);
    color: white
}
.btn-primary:hover{
    background: var(--btn-primary-hover);
    color: white;
    border-color: var(--btn-primary-hover);
}
.btn-secondary {
    background: var(--btn-secondary);
    color: black;
}
.btn-secondary:hover {
    background: var(--btn-secondary-hover);
    color: black;
}
.btn-primary:disabled, .btn-primary:disabled:hover, .btn-secondary:disabled, .btn-secondary:disabled:hover {
    background: var(--bg-disabled);
}
.btn-link{
    text-decoration: none;
    color: black!important;
}
a.active {
 color: var(--text-primary)
}
.products-sort-order .select-list:hover, .brands-sort .select-list:hover, .suppliers-sort .select-list:hover, .products-sort-order .select-list.current {
    color: #fff;
    text-decoration: none;
    background: var(--btn-primary);
}
.bg-primary {
    background: var(--bg-primary);
}
.text-center{
    text-align: center;
}
.displayBlock{
    display: block;
}

body .ui-slider-horizontal .ui-slider-handle {
    background: var(--btn-primary);
}
/*forms*/
.custom-checkbox {
    position: relative;
}
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
    cursor: pointer;
    opacity: 0;
}
.custom-checkbox input[type="checkbox"] + span {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    vertical-align: middle;
    pointer-events: none;
    cursor: pointer;
    border: 1px #D4D4D4 solid;
}
.custom-checkbox input[type="checkbox"] + span .checkbox-checked {
    display: none;
    margin: -0.125rem;
    font-size: 0px;
    color: #232323;
    background: darkgrey;
    width: 14px;
    height: 14px;
    margin: 1px;
}
.custom-checkbox input[type="checkbox"]:checked + span .checkbox-checked {
    display: block;
}
.custom-checkbox input[type="checkbox"]:focus + span {
    border-color: #7a7a7a;
}
.custom-checkbox label {
    text-align: left;
}

.custom-radio {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-top: 0px;
    margin-right: 0px;
    vertical-align: middle;
    cursor: pointer;
    background: #fff;
    border: #979797 1px solid;
    border-radius: 50%;
    box-sizing: inherit;
}
.custom-radio input[type="radio"] {
    cursor: pointer;
    opacity: 0;
}
.custom-radio input[type="radio"]:checked + span {
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    width: 14px;
    height: 14px;
    background-color: #24b9d7;
    border-radius: 50%;
}
.custom-radio input[type="radio"]:focus + span {
    border-color: #7a7a7a;
}
.form-control:not(.form-control-select) {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 55px;
    color: #7a7a7a;
    background-image: none;
    background-clip: padding-box;
    border-radius: 0;
    padding: 0px 15px;
    color: #000000;
    background: #f6f6f6;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.25);
    max-width: 100%;
}
.form-control:disabled{
    background: #d4d3d3;
}
.form-control-select {
    height: 56px;
    padding: 0 0.5rem;
    background: #f6f6f6 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAQAAAD9CzEMAAAAPklEQVR4Ae3TwREAEBQD0V/6do4SXPZg7EsBhsQ8IEmSMOsiuEfg3gL3oXC7wK0bd1G4o8X9F4yIkyQfSrIByQBjp7QuND8AAAAASUVORK5CYII=) no-repeat scroll right 0.5rem center/1.25rem 1.25rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 100%;
    border: 1px solid #b8b8b8;
    max-width: 100%;
    border-radius: 0px;
}

#contact .form-control {
    margin-bottom: 20px;
}

#contact .form-control + .input-group-btn {
    margin-top: -20px;
    margin-bottom: 20px;
}

span.group-span-filestyle.input-group-btn {
    background: #d0d0d0;
}
label,
.label {
  text-align: left;
}

/*end forms*/

body:not(#index) #wrapper {
    padding-top: 1.563rem;
}

/*abreviaciones*/
/*fontsize*/
body .fs-11{
    font-size: 11px
}
body .fs-13{
    font-size: 13px
}
body .fs-15{
    font-size: 15px
}
body .fs-18{
    font-size: 18px
}
body .fs-24{
    font-size: 24px
}
body .fs-32{
    font-size: 32px;
    line-height: 32px;
}
/*line-height*/
body .lh-22{
    line-height: 22px
}

/*font-weight*/
body .fw-400{
    font-weight: 400
}
body .fw-600{
    font-weight: 600
}
body .fw-800{
    font-weight: 800
}

/*display*/
body .df{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

/*border*/
body .b-default{
    border: var(--border-color);
}
body .br-default{
    border-radius: var(--border-radius);
}

/*background*/
body .bg-default {
    background: var(--bg-primary)
}

/*color*/
body .color-default{
   color: var(--text-primary)

}

/*text transform*/
body .tt-uppercase{
    text-transform: uppercase
}

/*others*/
body .fullwidth{
    margin-left: calc((-50vw) + 50%);
width: 100vw;
}
body .alignright{
    text-align: right
}
body .d-none{
    display: none    
}
body .fc-white{
    color: white
}
/*end abreviaciones*/




/*añadido bootstrap antiguo*/



@media (min-width: 576px){
    .hidden-sm-up {
        display: none !important;
    }
}
@media (min-width: 768px){
    .hidden-md-up {
        display: none !important;
    }
    .links .collapse {
        display: inherit;
    }
}
@media (min-width: 992px){
    .hidden-lg-up {
        display: none !important;
    }

}
@media (min-width: 1200px){
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1380px;
    }
  
}

/*hiddens compatibility*/

.hidden-sm-up {
    display: none !important;
}
@media (max-width: 991px){
    .hidden-md-down {
        display: none !important;
    }
}
@media (max-width: 767px){
    .col-xs-12 {
        width: 100%!important;
    }
    .hidden-sm-down {
        display: none !important;
    }
    .links .title .collapse-icons .remove {
        display: none;
    }
    .links .title[aria-expanded="true"] .collapse-icons .remove {
        display: block;
    }
    .links .title[aria-expanded="true"] .collapse-icons .add {
    display: none;
    }
    .text-xs-right{
        text-align: right!important
    }
    
}
@media (max-width: 575px){
    .hidden-xs-down {
        display: none !important;
    }
}



ul {
    padding-left: 0px;
    list-style: none;
}

#wrapper .breadcrumb {
  padding: 0;
  background: transparent;
}
#wrapper .breadcrumb[data-depth="1"] {
  display: none;
}
#wrapper .breadcrumb ol {
  padding-left: 0;
  margin-bottom: 0;
}
#wrapper .breadcrumb li {
  display: inline;
}
#wrapper .breadcrumb li::after {
  margin: 0.3125rem;
  color: #7a7a7a;
  content: ">";
}

#wrapper .breadcrumb li span {
    font-size: 14px;
    color: black;
    font-weight: bold;
}

#wrapper .breadcrumb li a span {
    font-weight: normal;
}
#wrapper .breadcrumb li:last-child {
  margin: 0;
  color: #7a7a7a;
  content: "/";
}
#wrapper .breadcrumb li:last-child::after {
  content: "";
}
#wrapper .breadcrumb li a {
  color: #232323;
}

.float-xs-right{
    float: right
}
.scroll-box-arrows {
    display: none;
}

span.user-icon {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
}
span.user-icon:before {
    content: "";
    background: url(../../img/svg/user.svg) no-repeat;
    width: 25px;
    height: 25px;
    display: inline-block;
}

span.shopping-cart.shopping-cart-icon {
     content: "";
     background: url(../../img/svg/cart.svg) no-repeat;
     width: 25px;
     height: 25px;
     display: block;
}
.hearticon{
    font-size: 0px;
    width: 20px;
    height: 20px;
}

.hearticon:after {
    content: "";
    background: url(../../img/svg/wishlist.svg) no-repeat;
    width: inherit;
    height: inherit;
    display: block;
}
.active .hearticon:after {
    background: url(../../img/svg/wishlist_on.svg) no-repeat;
}
@media(min-width: 1200px){
    .col-lg-20 {
        width: 20%;
    }    
}
 .dropdown-menu{
    left: auto;
    width: 16.88rem;
    margin: 0;
    background: #f6f6f6;
    border: none;
    border-radius: 0;
     z-index: 5
}
.open.dropdown  >.dropdown-menu {
    display: block;
}

.modal {--bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background: #646464ad;
}

#contact #content .gdpr_consent {
    margin-bottom: 20px;
}

/*.collapse {*/
/*    display: none;*/
/*}*/