/* Sidebar template */
:root {
    /*Brand color*/
    --brand-color-1: #967FFD;
    --brand-color-1-hover: #d1b828;
    --brand-color-2: #7A71EB;
    --brand-color-2-hover: #fffaf3;
    --brand-color-3: #FFFFFF;
    --brand-color-text: #fbfbfb;

    /*Background gradients*/
    --brand-gradient-1: none;
    --brand-gradient-2: linear-gradient(#967FFD, #FA7EFA);
    --brand-gradient-3: none;

    /*Background colors*/
    --background-color-1: #ffffff;
    --background-color-2: #f7f7fe;
    --background-color-3: #f7f7fe;
    --background-color-3-hover: #256a68;
    --background-color-4: #ffffff;
    --background-color-4-hover: #2c7d7b;
    --background-color-5: #EBEBFD;
    --background-color-6: #404248;

    /*Background gradients*/
    --background-gradient-1: none;
    --background-gradient-2: none;
    --background-gradient-3: none;
    --background-gradient-4: none;
    --background-gradient-5: none;
    --background-gradient-6: none;

    /*Text colors*/
    --text-color-1: #2E3036;
    --text-color-2: #818285;
    --text-color-3: #bcbec5;
    --text-color-4: #818285;

    /*Default immutable colors*/
    --white-color: #fff;
    --black-color: #000;
    --error-color: #f02849;
    --success-color: #009900;
    --info-color: #FFB700;

    /*Fonts and Styles*/
    --font-family-1: 'Roboto', sans-serif;

    /* Border Radiuses */
    --btn-radius-top-left: 20px;
    --btn-radius-top-right: 20px;
    --btn-radius-bottom-left: 20px;
    --btn-radius-bottom-right: 20px;
    --input-radius-top-left: 20px;
    --input-radius-top-right: 20px;
    --input-radius-bottom-left: 20px;
    --input-radius-bottom-right: 20px;
    --odd-radius-top-left: 20px;
    --odd-radius-top-right: 20px;
    --odd-radius-bottom-left: 20px;
    --odd-radius-bottom-right: 20px;

    --modal-bg-color-1: #fff;
    --modal-bg-color-2: #f4f4f4;
    --modal-bg-color-3: #e8e8e8;
    --modal-bg-color-4: #c7c7c7;

    --modal-text-color-1: #1a1a1a;      
    --modal-text-color-2: #3d3d3d;      
    --modal-text-color-3: #999;    
}

:root[data-theme="light"] {
	--background-color-1: #ffffff;
	--background-color-2: #f7f7fe;
	--background-color-3: #f7f7fe;
	--background-color-4: #ffffff;
	--background-color-5: #EBEBFD;
    --background-color-6: #404248;

	--text-color-1: #2E3036;
	--text-color-2: #818285;
	--text-color-3: #94969e;
	--text-color-4: #818285;

    --modal-bg-color-1: #fff;
    --modal-bg-color-2: #f4f4f4;
    --modal-bg-color-3: #e8e8e8;
    --modal-bg-color-4: #c7c7c7;

    --modal-text-color-1: #1a1a1a;      
    --modal-text-color-2: #3d3d3d;      
    --modal-text-color-3: #999;    
}

:root[data-theme="dark"] {
	--background-color-1: #3c383f;
	--background-color-2: #2c292d;
	--background-color-3: #4b4451;
	--background-color-4: #3c383f;
	--background-color-5: #423c47;
    --background-color-6: #f7f7f7;

	--text-color-1: #ffffff;
	--text-color-2: #efefef;
	--text-color-3: #969696;
	--text-color-4: #fcfcfc;

    --modal-bg-color-1: #2C2D3A;
    --modal-bg-color-2: #363747; 
    --modal-bg-color-3: #3B3D4F;
    --modal-bg-color-4: #48495A; 

    --modal-text-color-1: #fff;     
    --modal-text-color-2: #ccc;     
    --modal-text-color-3: #999;   
}