/*

HTML5 CSS Reset
Based on Eric Meyer's CSS Reset
and html5doctor.com HTML5 Reset

Copyright (c) 2011 736 Computing Services Limited
Released under the MIT license. http://opensource.736cs.com/licenses/mit

*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, audio, canvas, details, figcaption,
figure, footer, header, hgroup, mark, menu, meter, nav,
output, progress, section, summary, time, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}

article, aside, dialog, figure, footer, header, 
hgroup, nav, section, blockquote { 
	display: block;
}

nav ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

ul ul {
	list-style: circle;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

ins {
	text-decoration: underline;
}

del {
	text-decoration: line-through;
}

mark {
	background: none;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;	
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

/*input[type="submit"], input[type="button"], button {
    padding: 0 !important;
    margin: 0 !important;
}*/

input, select, a img {
	vertical-align: middle;
}
div#select_lang {
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.select_lang {
    width: 100%;
    /* background: #fff; */
    /* padding: 10px; */
    float: left;
    text-align: center;
}
.box_select_lang {
    background: #fff;
    padding: 20px 10px;
    display: inline-block;
    margin-top: 200px;
    width: 30%;
}   
.box_select_lang .show_lang {
    float: left;
    width: 100%;
    padding-top: 10px;
}
.box_select_lang .show_lang ul li {
    float: none;
    display: inline-block;
}
.box_select_lang p {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}
.box_select_lang .show_lang img {
    width: 40px;
}


@media (max-width: 768px){

	.box_select_lang {
	    background: #fff;
	    padding: 5px;
	    display: inline-block;
	    margin-top: 100px;
	    width: 30%;
	}
	.box_select_lang p {
	    font-size: 12px;
	    font-weight: normal;
	    text-transform: none;
	}

	.box_select_lang .show_lang img {
	    width: 20px;
	}

}