:root {
    --text-primary: #2D2D2D;
    --btn-primary: #124734;
    --btn-primary-hover: #1a4135;
    --btn-secondary: #fff;
    --btn-secondary-hover: #ddd;
    --bg-disabled: #dfdfdf;
    --bg-primary: #DFDFDF;
}
@font-face {
    font-family: "Montserrat";
    src: url('../fonts/Montserrat-Variable.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: "Montserrat", arial, sans-serif;
    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 h2, html h3, html h4, html h5, html h6, html .h1, html .h2, html .h3, html .h4, html .h5, html .h6 {
   /* font-family: arial, sans-serif;*/
}
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"
}

i.material-icons.touchspin-up:before {
    /*content: "\e145";*/
    content: "\e5ce";
}
i.material-icons.touchspin-down:before {
    /*content: "\e15b";*/
    content: "\e5cf";
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: black;
    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;
}
.btn-primary{
    background: #124734;
    color: white;
}
.btn-primary:hover{
    background: #0c3c2b;
    color: white;
}
.btn-secondary {
    border: 1px solid #124734;
    border-radius: 9px;
    background: var(--btn-secondary);
    color: #124734;
}
.btn-secondary:hover {
    background: #f6f6f6!important;
    color: #1e4b3e;
}
.btn-primary:disabled, .btn-primary:disabled:hover, .btn-secondary:disabled, .btn-secondary:disabled:hover {
    background: var(--bg-disabled);
}

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);
    color: #1d1d1b;
    background: #ddd;
}
.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: 1.125rem;
    height: 1.125rem;
    margin-right: 4px;
    vertical-align: middle;
    pointer-events: none;
    cursor: pointer;
    border: 1px #979797 solid;
}
.custom-checkbox input[type="checkbox"] + span .checkbox-checked {
    display: none;
    margin: -0.125rem;
    font-size: 1.25rem;
    color: #232323;
}
.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: top;
    cursor: pointer;
    background: #fff;
    border: #979797 1px solid;
    border-radius: 100%;
    box-sizing: inherit;
}
.custom-radio input[type="radio"] {
    cursor: pointer;
    opacity: 0;
}
.custom-radio input[type="radio"]:checked + span {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 17px;
    height: 17px;
    background-color: #124734;
    border-radius: 100%;
}
.custom-radio input[type="radio"]:focus + span {
    border-color: #7a7a7a;
}
.form-control:not(.form-control-select) {
    display: initial;
    width: 100%;
    order: 2;
    background-image: none;
    background-clip: padding-box;
    padding: 0px 15px;
    background: #f6f6f6;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 9px!important;
    max-width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 38px;
    color: #1D1D1B;
    height: 40px;
}
.form-control:disabled{
    background: #d4d3d3;
}
.form-control-select {
    height: 40px;
    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;
    border-radius: 9px;
    max-width: 100%;
}

span.group-span-filestyle.input-group-btn {
    /* background: #d0d0d0; */
}
/*end forms*/


strong {}