/* Defaults
------------------------------------------------------------------------------ */
:root
{
    --body-font: 'adelle', sans-serif;
    --fallback-font: 'Arial';
    --header-font: 'Dancing Script', cursive;
    --body-bg:#ffffff;
    --body-text-color: #4d4d4d;
    --lc-black: #1d191c;
    --lc-orange: #fe9c3d;
    --lc-orange-dark: #fd5f0f;
}
body 
{
    font-family: var(--body-font), var(--fallback-font);
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    background-color: var(--body-bg);
	letter-spacing: normal;
	color: var(--body-text-color);
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}
html, body
{
	height: 100%;
	margin: 0;
}
p.italic
{
	font-style: italic;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a
{
	color: var(--lc-orange);
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}


/* Headings
------------------------------------------------------------------------------ */
h1, h2, h3
{
	font-family: var(--header-font), var(--fallback-font);
	font-style: normal;
	letter-spacing: normal;
}
h1,h2
{
	font-family: var(--body-font), var(--fallback-font);
	font-size: 22px;
	font-weight: 300;
	color: #ffffff;
	line-height: 30px;
	letter-spacing: 1px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 60px 0px;
}
h1
{
	color: #ffffff;
	text-align: center;
	letter-spacing: 2px;
}
h2
{
	color: var(--lc-orange);
	padding: 0px 0px 40px 0px;
}
h3
{
	font-family: var(--header-font), var(--fallback-font);
	font-size: 41px;
	font-weight: 400;
	color: var(--lc-orange);
	line-height: 46px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 20px 0px;
}
h4
{
    font-family: var(--body-font), var(--fallback-font);
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
	letter-spacing: 2px;
	color: var(--body-text-color);
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
	text-transform: uppercase;
}

/* Sections 
------------------------------------------------------------------------------ */
.section 
{
	padding: 80px 0px 80px 0px;
	text-align: left;
}

/* Section - Header
---------------------------------------------------------------- */
.section.header 
{
	position: fixed;
	top: 0px;
	width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-align: left;
	height: auto;
	transition: all .4s ease;
	z-index: 400;
	background-color: var(--lc-black);
}
.section.header.scrolled 
{
	box-shadow: 0px 2px 4px 0px var(--lc-black);
}
.section.header .flex_container
{
	justify-content: space-between;
}
.section.header .logo_wrapper
{
	margin-left: 0px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.section.header .navbar_logo
{
	width: 285px;
	height: 58px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	background-image: url(../images/logo_la_capannina.png);
	background-size: contain;
	background-repeat: no-repeat;
}
.section.header .navbar_logo img
{
	max-width: 100%;
	display: block;
}
.section.header .navbar_logo a,
.section.header .navbar_logo a:hover
{
	text-decoration: none;
}
@media only screen and (max-width: 1200px) {
	.section.header .menu_container
	{
		display: none;
	}
}
@media only screen and (max-width: 420px) {
	.section.header .navbar_logo
	{
		width: 205px;
		height: 40px;
	}
}
  
/* Section - Header Padding
------------------------------------------------------------------------------ */
.section.header_padding
{
	height: 98px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
@media only screen and (max-width: 420px) {
	.section.header_padding
	{
		height: 80px;
	}
}

/* Section - Header Bar :: Menu
------------------------------------------------------------------------------ */
.section.header .menu
{
	margin: 0px 0px 0px 0px;
}
.section.header .menu ul
{
	list-style: none;
	margin: 30px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.section.header .menu ul li
{
	float: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-align: center;
}
.section.header .menu ul li:last-child
{
	margin-right: 0px;
}
.section.header .menu ul li a
{
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-family: var(--body-font), var(--fallback-font);
	font-weight: 300;
	line-height: 38px;
	color: #ffffff;
    transition: all .4s ease, color .4s ease, opacity .3s ease;
	text-decoration: none;
	text-transform: uppercase;
	padding: 0px 0px 0px 0px;
	margin: 0px 16px 0px 16px;
	box-sizing: border-box;
	width: auto;
}
.section.header .menu ul li a:hover
{
    text-decoration: none;
}
.section.header .menu ul li a.active
{
	text-decoration: none;
	color: var(--lc-orange-dark);
}
.section.header .menu ul li a::after
{
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0px;
	content: '';
	width: 100%;
	height: 3px;
	background-color: #ffffff;
	transition: opacity 0.4s ease;
    opacity: 0;
}
.section.header .menu ul li a:hover::after
{
    opacity: 1;
}


/* Section - Heroes
------------------------------------------------------------------------------ */
.section.heroes
{
	text-align: center;
	padding: 0px 0px 0px 0px;
}
.section.heroes,
.section.heroes .hero_wrapper,
.section.heroes .hero_panel
{
	/* height: 550px; */
	height: 680px;
}
.section.heroes.policypage
{
	height: 224px;
}

.section.heroes .caption_container
{
	text-align: center;
	position: relative;
	width: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.section.heroes .caption_container.bottom
{
	position: absolute;
	background-color: #ffffff;
	top: unset;
	bottom: 0px;
	left: 50%;
	width: 60%;
	-webkit-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	transform: translate(-50%,0);
	padding: 60px 30px 10px 30px;
	box-sizing: border-box;
}
.section.heroes .caption_container h2
{
	font-family: var(--header-font);
	font-size: 85px;
	line-height: 95px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	color: #ffffff;
}
.section.heroes .caption_container.bottom h2
{
	color: var(--lc-orange);
}

.section.heroes .caption_container p
{
    font-family: var(--body-font), var(--fallback-font);
    font-weight: 300;
    font-size: 20px;
	font-style: italic;
    line-height: 28px;
	color: #ffffff;
}
.section.heroes .caption_container.bottom p
{
	color: var(--body-text-color);
	font-size: 18px;
	font-style: normal;
}

.section.heroes .hero_wrapper
{
	position: absolute;
	width: 100%;
	z-index: 100;
}
.section.heroes .hero_panel
{
	position: relative;
	max-width: 100%;
	overflow: hidden;
	top: 0px;
	left: 0px;
	box-sizing: border-box;
	background-image: none;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.section.heroes .hero_panel.about_us
{
	background-image: url(../images/heroes/about_us.jpg);
}
.section.heroes .hero_panel.champagne
{
	background-image: url(../images/heroes/champagne.jpg);
}
.section.heroes .hero_panel.copper_pan
{
	background-image: url(../images/heroes/copper_pan.jpg);
}
.section.heroes .hero_panel.pasta
{
	background-image: url(../images/heroes/pasta_hero.jpg);
}
.section.heroes .hero_panel.private_functions
{
	background-image: url(../images/heroes/private_functions.jpg);
}
.section.heroes .hero_panel.wine_list
{
	background-image: url(../images/heroes/wine_list.jpg);
}

@media only screen and (max-width: 767px) {
	.section.heroes,
	.section.heroes .hero_wrapper,
	.section.heroes .hero_panel,
	.section.heroes .hero_overlay
	{
		height: 224px;
	}
	.section.heroes .caption_container p
	{
		display: none;
	}
	.section.heroes .caption_container h2
	{
		font-size: 70px;
	}
}
@media only screen and (max-width: 430px) {
	.section.heroes .caption_container.bottom h2
	{
		font-size: 35px;
		line-height: 42px;
	}
}

/* Section - Lower Heroes
------------------------------------------------------------------------------ */
.section.lower_heroes
{
	text-align: center;
	padding: 0px 0px 0px 0px;
}
.section.lower_heroes.additional_margin_top
{
	margin-top: 40px;
}
.section.lower_heroes .hero_panel
{
	background-image: none;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 120px 0px 120px 0px;
	text-align: center;
}
.section.lower_heroes .hero_panel.burner
{
	background-image: url(../images/heroes/burner.jpg);
}
.section.lower_heroes .hero_panel.pasta
{
	background-image: url(../images/heroes/pasta.jpg);
}
.section.lower_heroes .hero_panel.prawns
{
	background-image: url(../images/heroes/prawns.jpg);
}
.section.lower_heroes .hero_panel.wines
{
	background-image: url(../images/heroes/wine.jpg);
}
.section.lower_heroes .caption_container
{
	text-align: center;
	background-color: #ffffff;
	box-sizing: border-box;
	padding: 70px 70px 70px 70px;
	max-width: 50%;
	margin: auto auto;
}
.section.lower_heroes .caption_container p:last-child
{
	margin-bottom: 0px;
}
.section.lower_heroes a
{
	transition: all .4s ease, color .4s ease, opacity .3s ease;
}
.section.lower_heroes a.italic
{
	font-style: italic;
}

@media only screen and (max-width: 1300px) {
	.section.lower_heroes .caption_container
	{
		max-width: 80%;
	}
}


/* Section - Orange Panel
------------------------------------------------------------------------------ */
.section.orange_panel
{
	background-color: var(--lc-orange);
}
.section.orange_panel p
{
	color: var(--body-text-color);
	text-align: center;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}


/* Section - Dark Orange Panel
------------------------------------------------------------------------------ */
.section.dark_orange_panel
{
	padding: 38px 0px 38px 0px;
	background-color: var(--lc-orange-dark);
}
.section.dark_orange_panel a
{
	color: #ffffff;
    transition: all .4s ease, color .4s ease, opacity .3s ease;
}
.section.dark_orange_panel a:hover
{
	color: var(--lc-orange);
	text-decoration: none;
}
.section.dark_orange_panel p
{
	color: #ffffff;
	text-align: center;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	letter-spacing: 2px;
}


/* Section - White Panel
------------------------------------------------------------------------------ */
.section.white_panel
{
	text-align: center;
}
.section.white_panel.padding_bottom_zero
{
	padding-bottom: 0px;
}
.section.white_panel .short_underbar_wrapper
{
	display: block;
	margin: 80px 0px 0px 0px;
	text-align: center;
}
.section.white_panel .short_underbar
{
	width: 26%;
	height: 1px;
	margin: 0px auto;
	background-color: var(--lc-orange);
}

/* Section - Three Cols
------------------------------------------------------------------------------ */
.section.three_cols .flex_container
{
	flex-direction: row;
	align-items: start;
	gap: 50px;
	flex-basis: 28%;
	flex-wrap: wrap;
	justify-content: space-around;
}
.section.three_cols h2
{
	display: block;
	text-transform: uppercase;
	text-align: center;
	padding-bottom: 60px;
}
.section.three_cols .flex_container > div,
.section.three_cols .flex_container > div.single_menu_links
{
	width: 28%;
	box-sizing: border-box;
	text-align: center;
}

.section.three_cols #hotel_tariff_info .flex_container .flex_container2
{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.section.three_cols p.italic
{
	border-bottom: 1px solid var(--lc-orange);
	padding-bottom: 25px;
}
.section.three_cols ul
{
	list-style: none;
	margin: 0px 0px 0px 0px;
	font-size: 100%;
}
.section.three_cols ul.horizontal_list li
{
	display: inline-block;
	margin-left: 0px;
}
.section.three_cols ul.horizontal_list li a
{
	display: block;
	position: relative;
	padding-left: 10px;
	margin-right: 3px;
	margin-left: 0px;
}
.section.three_cols ul.horizontal_list li:first-child a
{
	padding-left: 0px;
}

.section.three_cols ul.horizontal_list li a:after
{
    content:""; 
    background: var(--lc-black);
    position: absolute; 
    bottom: 7px; 
    left: 0px; 
    height: 50%; 
    width: 1px;
}
.section.three_cols ul.horizontal_list li:first-child a:after 
{
   display: none;
}

.section.three_cols .flex_container .single_menu_links a p
{
	color: var(--body-text-color);
}
.section.three_cols .flex_container .single_menu_links a p,
.section.three_cols .flex_container .single_menu_links a
{
	transition: all .4s ease, color .4s ease, opacity .3s ease;
}
.section.three_cols .flex_container .single_menu_links a:hover,
.section.three_cols .flex_container .single_menu_links a:hover p
{
	text-decoration: none;
	color: var(--lc-orange);
}
.section.three_cols .text_copy
{
	cursor: pointer;
}
.section.three_cols .copied_toast_container
{
	display: inline-block;
	text-align: center;
	position: relative;
	width: 200px;
	height: 20px;
	top: 0px;
	/* width: 100%; */
	/* height: 100vh; */
	/* background-color: lime; */
	/* z-index: 1000; */
	/* visibility: hidden; */
    /* display: none; */
	/* border: 1px solid red; */
}
.section.three_cols .copied_toast
{
	position: absolute;
	/* width: 200px; */
	/* top: 0px;
	left: 0px; */
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	background-color: var(--lc-orange-dark); 
	color: #ffffff;
	font-size: 22px;
	line-height: 30px;
	padding: 4px 20px 4px 20px;
	box-shadow: 5px 10px #888888;
	z-index: 200;
}

@media only screen and (max-width: 840px) {
	.section.three_cols .flex_container
	{
		flex-direction: column;
	}
	.section.three_cols .flex_container > div,
	.section.three_cols .flex_container > div.single_menu_links
	{
		width: 100%;
	}
	.section.three_cols .flex_container .hide_on_mobile
	{
		display: none;
	}
	
}


/* Section - Signature Dishes
------------------------------------------------------------------------------ */
.section.signature_dishes h2
{
	text-align: center;
	padding-bottom: 80px;
}
.section.signature_dishes .flex_container
{
	flex-direction: row;
	/* align-items: start; */
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin: auto;
}
.section.signature_dishes .flex_container .flex_item
{
	box-sizing: border-box;
	text-align: center;
	background-color: var(--lc-orange);
	display: flex;
	flex-grow: 1;
	flex-shrink: 1;
	align-items: center;
	flex-basis: 32%;
	height: 240px;
	width: 32%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.section.signature_dishes .unrolled
{
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	padding: 0px 10px 0px 10px;
}
.section.signature_dishes .unrolled h3
{
	color: #ffffff;
	padding: 0px 0px 0px 0px;
	font-size: 36px;
	line-height: 36px;
}
.section.signature_dishes .rolled
{
	display: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
}
.section.signature_dishes .rolled p
{
	font-size: 14px;
	line-height: 28px;
	padding: 0px 30px 0px 30px;
	margin: 5px 0px 0px 0px;
}

.section.signature_dishes #bottles
{
	background-image: url(../images/signature_dishes/fine_wines.jpg);
}
.section.signature_dishes #carpaccio
{
	background-image: url(../images/signature_dishes/carpaccio.jpg);
}
.section.signature_dishes #cooked_at_the_table
{
	background-image: url(../images/signature_dishes/cooked_at_your_table.jpg);
}
.section.signature_dishes #crabs
{
	background-image: url(../images/signature_dishes/local_fish.jpg);
}
.section.signature_dishes #decor
{
	background-image: url(../images/signature_dishes/decor.jpg);
}
.section.signature_dishes #fine_art
{
	background-image: url(../images/signature_dishes/fine_art.jpg);
}
.section.signature_dishes #freshfish
{
	background-image: url(../images/signature_dishes/freshfish.jpg);
}
.section.signature_dishes #lamb
{
	background-image: url(../images/signature_dishes/lamb.jpg);
}
.section.signature_dishes #potatoes
{
	background-image: url(../images/signature_dishes/potatoes.jpg);
}
.section.signature_dishes #table
{
	background-image: url(../images/signature_dishes/favourite_table.jpg);
}
.section.signature_dishes #taglionineri
{
	background-image: url(../images/signature_dishes/taglionineri.jpg);
}
.section.signature_dishes #vegetables
{
	background-image: url(../images/signature_dishes/vegetables.jpg);
}

.section.signature_dishes .flex_item:hover
{
	background-image: none !important;
}

@media only screen and (max-width: 420px) {
	.section.signature_dishes .flex_container
	{
		flex-direction: column;
	}
	.section.signature_dishes .flex_container .flex_item
	{
		width: 100%;
		height: 250px;
		flex-basis: auto;
	}
	
}

/* Section - Policy
------------------------------------------------------------------------------ */
.section.policy ul
{
	list-style-position: outside;
	list-style-type: disc;
	margin-left: 20px;
}
.section.policy h1
{
	color: var(--lc-orange);
	padding: 0px 0px 20px 0px;
	text-transform: uppercase;
	text-align: left;
}
.section.policy h3
{
	font-family: var(--body-font), var(--fallback-font);
	font-size: 22px;
	color: var(--lc-orange);
	padding: 0px 0px 10px 0px;
}


/* Section - Map
------------------------------------------------------------------------------ */
.section.map
{
	padding: 0px 0px 0px 0px;
}
.section.map .map_wrapper
{
	display: block;
	width: 100%;
	height: 650px;
}
.section.map .map_wrapper iframe
{
	display: block;
	width: 100%;
	height: 100%;
}

/* Section - Footer 
------------------------------------------------------------------------------ */
.section.footer
{
	padding: 45px 0px 45px 0px;
	background-color: var(--lc-black);
	color: #ffffff;
	font-weight: 100;
}
.section.footer .flex_container
{
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.section.footer .logo_wrapper
{
	display: block;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 75px;
}
.section.footer .footer_logo
{
	width: 285px;
	height: 58px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	background-image: url(../images/logo_la_capannina.png);
	background-size: contain;
	background-repeat: no-repeat;
}
.section.footer .footer_logo img
{
	max-width: 100%;
	display: block;
}
.section.footer ul
{
	text-align: left;
	list-style: none;
}
.section.footer li 
{
	margin: 0px 0px 0px 0px;
}
.section.footer li a
{
	color: #ffffff;
    transition: all .4s ease, color .4s ease, opacity .3s ease;
}
.section.footer li a:hover,
.section.footer ul.social_buttons li a:hover,
.section.footer .link_block ul li a:hover
{
	text-decoration: none;
	color: var(--lc-orange);
}
.section.footer ul.social_buttons
{
	margin: 0px 0px 30px 0px;
}
.section.footer ul.social_buttons
{
	margin: 0px 0px 12px 0px;
	padding: 0px 0px 0px 0px;
}
.section.footer ul.social_buttons li
{
	display: inline;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.section.footer ul.social_buttons li a
{
	color: var(--body-color);
	/* line-height: 42px; */
	font-size: 14px;
}
.section.footer ul.social_buttons li a i
{
	font-size: 32px;
	vertical-align: middle;
	margin-right: 5px;
}
.section.footer .link_block,
.section.footer .link_block ul
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.section.footer .link_block ul li
{
	display: inline-block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	color: #ffffff;
	height: auto;
}
.section.footer .link_block ul.with_dividers li:after 
{
	content: '\007C';
	padding-left: 10px;
	padding-right: 6px;
}
.section.footer .link_block ul.with_dividers li:last-child:after 
{
	content: '';
}
.section.footer .link_block ul li,
.section.footer .link_block ul li a
{
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	font-size: 14px;
}

@media only screen and (max-width: 765px) {
	.section.footer ul.social_buttons
	{
		margin: 30px 0px 30px 0px;
	}
	.section.footer ul.social_buttons li,
	.section.footer .link_block ul li
	{
		display: block;
		text-align: center;
	}
	.section.footer .link_block ul.with_dividers li:after 
	{
		content: '';
		padding: 0px 0px 0px 0px;
	}
	.section.footer .logo_wrapper
	{
		margin-bottom: 35px;
	}
	.section.footer .footer_logo
	{
		margin: 0px auto;
	}
					
}

/* #Misc
=================================================================================================================== */
.centered
{
	text-align: center;
}
.limit-to-two-lines
{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
			line-clamp: 2; 
	-webkit-box-orient: vertical;
}

/* Flex Box
=================================================================================================================== */
.flex_container
{
	display: flex;
}
.justify_content_space_around
{
	justify-content: space-around;
}
.justify_content_space_between
{
	justify-content: space-between;
}
.justify_content_center
{
	justify-content: center;
}
.flex_wrap
{
	flex-wrap: wrap;
}
.flex_item.padded_7pc
{
	margin: 0px 7% 0px 7%; 
	padding: 0px 0% 0px 0%;
}
.flex_item.padded_out
{
	margin: 0px 7% 0px 7%; 
	padding: 0px 0% 0px 0%;
}

/* Grid Box
=================================================================================================================== */
.grid-container
{
	display: grid;
	box-sizing: border-box;
}
.grid-container *
{
	box-sizing: border-box;
}


/* Responsive Menu
================================================== */
#responsive_menu_buttons
{
	display: none;
	position: relative;
	top: 22px;
	right: 0px;
	width: 36px;
	height: 36px;
	padding: 4px 4px 2px 4px;
	margin: 0px 0px 0px 0px;
	border-radius: 3px;
	background: #f2f2f2;
	text-align: center;
	line-height: 36px;
}
#responsive_menu_buttons a
{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	text-decoration: none;
	color: #494c4f;
	cursor: pointer;
}
#responsive_menu_buttons a:hover
{
	text-decoration: none;
}
#responsive_menu_open_button
{
	display: block;
	visibility: visible;	
	font-size: 34px;
	line-height: 34px;
}
#responsive_menu_close_button
{
	display: none;
	visibility: visible;	
	font-size: 34px;
	line-height: 34px;
}

#responsive_menu 
{
	position: fixed;
	display: none;
	box-sizing: border-box;
	width: 100%;
	top: 94px;
	background-color: var(--lc-orange-dark);
	padding-top: 26px;
	padding-bottom: 40px;
	margin-left: 0px;
	margin-right: 0px;
	z-index: 500;
	overflow-y: auto;
	max-height: 100%;
	min-height: 100%;
}
#responsive_menu ul
{
	width: 100%;
	margin: 0px 0px 0px 0px;
	box-sizing: border-box;
	padding: 0px 10px 0px 10px;
	list-style: none;
	box-sizing: border-box;
}
#responsive_menu li
{
	display: inline;
	float: left;
	width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 10px 0px 10px;
	box-sizing: border-box;
}
#responsive_menu li a
{
	float: left;
	color: #494c4f;
	font-family: var(--body-font), var(--fallback-font);
	font-style: normal;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	padding: 2px 0px 2px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 50px;
	text-transform: uppercase;
}
#responsive_menu li.active
{
	background-color: var(--lc-orange);
	color: #ffffff;
}
#responsive_menu li.active a
{
	color: #ffffff;
}
/* Menu - Responsive  ---------------------------------- */
@media only screen and (max-width: 1200px) {
	#responsive_menu_buttons
	{
		display: block;
	}
	#responsive_menu 
	{
		visibility: visible;
	}
	.section.header .menu
	{
		visibility: hidden;
		height: 0;
		display: none;
	}
}
@media only screen and (max-width: 420px) {
	#responsive_menu 
	{
		top: 80px;
	}
}


/* #Media Queries
=================================================================================================================== */

/* Bigger than 1000 */
@media (min-width: 1000px) {

}
/* ALL NON DESKTOP SIZES - Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
}

/* TABLET PORTRAIT - Size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* ALL MOBILE Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
}

/* MOBILE LANDSCAPE Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}

/* MOBILE PORTRAIT Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
}

