/* input(3,13): run-time error CSS1038: Expected hex color, found '#83838' */
:root {
    --white: #fff;
    --black:#83838;
    --dark: #FF5800;
    --dark-secondary: #838383;
    --darken: #000;
    --darken-secondary: #838383;
    --light: #DEDEDE;
    --light-secondary: #FF5800;
    --lighten: #DEDEDE;
    --lighten2: #DEDEDE;
    --sky-blue: #FF5800;
    --background: #DEDEDE;
    --background-light: #DEDEDE;
    --light-gray: #DEDEDE;
    --dark-gray2: #838383;
    --dark-gray3: #838383;
    --dark-pink: #000;
    --background-lights: #f9f9f9;
    --box-light: #000;
    --light-red: #e95353;
    --light-red2: #eb6464;
    --red: #f30606;
    --white2: #f3f3f3f3;
    --light-gray2: #dddddd;
    --light-gray3: #D3D3D3;
    --black2: #1d1d1d;
    --background-black: #2f2f2f;
    --table-blue: #FF5800;
    --warning-default: #ff0000;
    --warning-option-2: #ffa500;

    --main-category-title: #FF5800;
    --sublist-category-title: #FF5800;
    --list-category-title: #595959;

    --rounded-corners: var(--medium-rounded-corners);
    --border-width-default: 1px;
    --border-width-option-2: 2px;
}

.title {
    color: var(--main-category-title)!important;
}

.home-page-filters-wrapper .search-button,
.home-page-filters-wrapper .results-number {
    background: var(--light-secondary);
}

/*blog titels*/
.rich-blog-homepage .title {
    font-weight: lighter !important;
    font-size: 32px;
    line-height: 33px;
    color: var(--main-category-title);
}
/*bestsellers titel*/
.universal-carousel .title {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: lighter;
    color: var(--main-category-title);
}

.footer-lower .follow-us .title {
    display:none !important;
}

.btn-primary, .btn-default:hover {
background-color: var(--dark)!important;
}

.btn-primary:hover, .btn-default:hover {
background-color: var(--darken)!important;
}

/*responsive menu*/

@media only screen and (max-width: 1000px) {
    .child-menu .main-title {
        color: var(--dark);
        font-size: larger;
    }
    .child-menu .title {
        color: var(--dark);
        margin-bottom: 0;
    }

    .child-menu .main-title, .child-menu .title, .child-menu .category-description {
        font-weight: bolder;
    }

    .sublist-wrap .title {
        padding: 16px 45px 16px 30px;
    }

    .child-menu .title {
        font-size: 16px;
    }
}
            
            
            
            
            
            
            
            
            
            
            
            
