/*Button class*/
	.btn_black{
	    background-color: #000000;
	    color:#FFFFFF;
	}
	.btn_black:hover{
	    background-color: #2E2E2E;
	    color:#FFFFFF;
	}
/*End Button class*/

/*Responsive menu*/
    @media screen and (min-width: 1011px){  
        #table_menu_full{
            width: 100%;
            display: '';
        }
        #table_menu_tablet{
            display: none;
        }
    }
    @media screen and (max-width: 1010.9px){  
        #table_menu_tablet{
            width: 100%;
            display: '';
        }
        #table_menu_full{
            display: none;
        }
    }
/*Responsive menu kraj*/