body {padding:50px 0; background:url("../design/bg.gif") 0 0 repeat-x; font:0.8em/1.6 "arial", sans-serif;}
h1, h2, h3, h4, h5, h6, address, blockquote, dl, fieldset, ol, p, table, ul {margin:10px 0;}
hr {margin-top:10px;}

/* ----------------------------------------------------------------------------------------------------------
Layout
---------------------------------------------------------------------------------------------------------- */

#main {width:900px; margin:0 auto; padding:0 20px; border-radius:8px;}
#header {position:relative; height:65px; padding:0 0px; overflow:hidden;}
#header #logo {margin:0;}
#header #logo img {display:block;}
/* Desktop navigation positioning */
@media (min-width: 769px) {
	#header #nav {
		position: absolute;
		top: 25px;
		right: 30px;
		margin: 0;
	}
	
	#header #nav .main-nav {
		display: flex;
	}
	
	/* Hide mobile menu logo on desktop */
	#header #nav .mobile-menu-logo {
		display: none !important;
	}
}

#header #nav span {
	margin: 0 15px;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1001;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.mobile-menu-toggle:focus,
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus-visible {
    outline: none;
    background: none;
    box-shadow: none;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation styles */
#nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav .main-nav {
    display: flex;
    align-items: center;
}

#nav .main-nav li {
    margin: 0 15px;
    position: relative;
}

#nav .main-nav li a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    font-size: 19.2px; /* 20% larger than base 16px */
}

/* Home icon - replace Úvod text with icon */
#nav .main-nav li a.home-icon {
    font-size: 0;
    line-height: 1;
    display: inline-block;
    width: 15px;
    height: 12px;
    position: relative;
    vertical-align: middle;
    background-color: currentColor;
    border: 1.5px solid currentColor;
    border-top: none;
    box-sizing: border-box;
}

/* Triangular roof - more prominent */
#nav .main-nav li a.home-icon::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -1.5px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 8px solid currentColor;
}

/* Door - more visible and realistic */
#nav .main-nav li a.home-icon::after {
    content: "";
    position: absolute;
    bottom: -1.5px;
    left: 50%;
    transform: translateX(-50%);
    width: 3.5px;
    height: 6px;
    background-color: transparent;
    border: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    box-sizing: border-box;
}

#nav .main-nav li a:hover {
    color: #77aa00;
}

#nav .main-nav li strong {
    color: #77aa00;
}

/* Current page highlighting */
#nav .main-nav li a.current-page,
#nav .main-nav li a.current-page:hover {
    color: #77aa00;
    font-weight: bold;
    cursor: default;
}

.submenu li a.current-page,
.submenu li a.current-page:hover {
    color: #77aa00;
    font-weight: bold;
    background-color: #f0f8e0;
}

/* Submenu styles - Desktop */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    padding: 5px 0;
}

/* Submenu hover effect removed - no automatic opening on desktop */

.submenu li {
    margin: 0;
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 19.2px; /* 20% larger */
}

/* Desktop submenu items - 20% larger */
@media (min-width: 769px) {
    .submenu li a {
        font-size: 27.65px; /* 20% larger than 23.04px (44% larger than base 19.2px) */
    }
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background-color: #f5f5f5;
    color: #77aa00;
}

/* Submenu arrow indicator on mobile */
@media (max-width: 768px) {
    .has-submenu > a::after {
        content: "▶";
        float: right;
        font-size: 14.4px; /* 20% larger than 12px */
        margin-left: 10px;
        transition: transform 0.3s ease;
    }
    
    .has-submenu > a.submenu-open::after {
        content: "▼";
        float: right;
        font-size: 14.4px; /* 20% larger than 12px */
        margin-left: 10px;
    }
}

/* Hide arrows on desktop */
@media (min-width: 769px) {
    .has-submenu > a::after {
        display: none;
    }
}

/* Contact Form Styles */
.contact-form-wrapper .required {
    color: #77aa00;
    font-weight: bold;
}

/* Success Message Container */
.success-message-container {
    display: none;
    visibility: visible;
    opacity: 1;
    color: #77aa00;
    font-weight: bold;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #77aa00;
    border: 2px solid #77aa00;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(119, 170, 0, 0.3);
}

.success-message-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.success-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #77aa00;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.success-button:hover {
    background-color: #f0f8e0;
    color: #558800;
    border-color: #f0f8e0;
}

/* Error Message Container */
.error-message-container {
    display: none;
    color: #d32f2f;
    font-weight: bold;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ffebee;
    border: 2px solid #d32f2f;
    border-radius: 5px;
    text-align: center;
}

.error-message-text {
    font-size: 16px;
    margin: 0;
    color: #d32f2f;
}

.contact-form-wrapper .input {
    width: 100%;
    max-width: 550px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.contact-form-wrapper textarea.input,
.contact-form-wrapper .textarea-responsive {
    width: 100% !important;
    max-width: 550px;
    min-height: 150px;
    resize: vertical;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form-wrapper .error-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.contact-form-wrapper .char-counter {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 10px;
}

.contact-form-wrapper .input-submit {
    background-color: #77aa00;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-wrapper .input-submit:hover {
    background-color: #669900;
}

.contact-form-wrapper .input-submit:active {
    background-color: #558800;
}

/* Responsive contact form */
@media (max-width: 768px) {
    /* Reduce padding on parent containers to maximize field width */
    .content .content-in {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    .contact-form-wrapper {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    
    .content .box-01 {
        padding: 10px 5px !important;
    }
    
    .contact-form-wrapper .input,
    .contact-form-wrapper textarea.input,
    .contact-form-wrapper .textarea-responsive {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px; /* Prevents zoom on iOS */
        box-sizing: border-box;
        padding: 12px;
        margin: 0;
    }
    
    .contact-form-wrapper textarea.input,
    .contact-form-wrapper .textarea-responsive {
        min-height: 120px;
        resize: vertical;
        display: block;
    }
    
    .contact-form-wrapper p {
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .contact-form-wrapper strong {
        display: block;
        margin-bottom: 5px;
    }
    
    .contact-form-wrapper .input-submit {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }
    
    .success-button {
        width: 100%;
        display: block;
        text-align: center;
        padding: 15px;
        font-size: 18px;
    }
    
    .success-button:hover {
        background-color: #f0f8e0 !important;
        color: #558800 !important;
    }
    
    /* Make iframe responsive on mobile */
    iframe {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* Success message button hover effect */
#email-success-message a:hover {
    background-color: #669900;
}
#promo {position:relative; height:250px; overflow:hidden;}
#promo p {margin:0;}
#promo p img {margin:0;}
#promo ul#slider {margin:0;}
#footer {padding-bottom:5px; font-size:85%;}
#footer p {margin:0;}
#footer P {text-align: center; padding:100}
#footer p#socialnet {margin-top:-7px;}

/* ----------------------------------------------------------------------------------------------------------
Page: Homepage
---------------------------------------------------------------------------------------------------------- */

.cols3 {width:940px; margin:20px -20px; padding:13px 0;}
.cols3 .cols3-content {padding-left:20px; background:url("../design/cols3.gif") 0 0 repeat-y;}
.cols3 .cols3-bottom {width:940px; height:3px; background:url("../design/cols3-bottom.gif") 0 0 no-repeat; font-size:0; line-height:0;}
.cols3 .col {float:left; width:270px; margin-right:15px; padding:0 10px 10px 10px;  background-color: white}
.cols3 .col.last {margin-right:0;}
.cols3 .col h2 {margin:0 0 10px 0; padding:15px 10px; font-size:100%; font-weight:bold; border-radius:0px 0px 5px 5px;}
.cols3 .col h2 a {text-decoration:none;}
.cols3 .col h2 a:hover {text-decoration:underline;}
.cols3 .col p {margin:0; background-color: white; margin-right: 10px; margin-left: 10px}
.cols3 .col img {margin-bottom:10px; background-color: white}
.cols3 .col ul {margin:10px 0 10px 10px; background-color: white}
.cols3 .col ul li {padding-left:15px; background:url("../design/ul.gif") 0 7px no-repeat;}

/* ----------------------------------------------------------------------------------------------------------
Page: Subpage
---------------------------------------------------------------------------------------------------------- */

#title {margin:0; padding:27px 20px; font:270%/1 "arial",sans-serif; letter-spacing:-1px;}
#subnav {margin:0; padding:10px 20px;}
#subnav span {margin:0 10px;}
.content {width:940px; margin:0 -20px 20px -20px; padding:13px 0;}
.content .content-in {padding:10px 40px; background:url("../design/content.gif") 0 0 repeat-y;}
.content .content-bottom {width:940px; height:3px; background:url("../design/content-bottom.gif") 0 0 no-repeat; font-size:0; line-height:0; margin-top:-1px;}
.content .perex {border-bottom:1px solid #ddd; font-size:170%;}
.content .box-01 {padding:15px;}
.content .col50 {float:left; width:420px;}
.content ul {margin:15px 25px;}
.content ul ul {margin:0 0 0 25px;}
.content ul li {padding-left:15px; background:url("../design/ul.gif") 0 7px no-repeat;}
.content ul ul li {padding-left:15px; background:url("../design/ul-ul.gif") 0 7px no-repeat;}
.content table {margin:15px 0; border-collapse:collapse;}
.content table th, .content table td {padding:7px 10px;}
.content table th {text-align:center; font-weight:bold;}
.content dt {font-weight:bold;}
.content dd {margin-left:50px; margin-bottom:15px;}
.content h1, .content h2 {font-size:200%;}
.content h3 {font-size:160%;}
.content h4 {font-size:120%;}
.content h5, h6 {font-size:100%;}

/* ----------------------------------------------------------------------------------------------------------
Others
---------------------------------------------------------------------------------------------------------- */

img.f-right {margin-left:20px;}
img.f-left {margin-right:20px;}
.input {padding:5px; background:url("../design/input.gif") 0 0 no-repeat; font:100%/1 "arial",sans-serif;}
.input-submit {padding:5px; font:bold 100%/1 "arial",sans-serif;}
.smaller {font-size:85%;}
.block {display:block;}
.socialnet p {padding-top:10px;}

/* ----------------------------------------------------------------------------------------------------------
Responsive overrides
---------------------------------------------------------------------------------------------------------- */

/* Make media scale in their containers */
img {max-width:100%; height:auto;}

/* Fluid wrapper instead of fixed width */
#main {max-width:980px; width:100%; box-sizing:border-box; padding:0 20px;}

/* Allow content sections to shrink and remove hard widths */
.cols3, .content {width:auto; margin:20px 0; padding:13px 0;}
.content .content-bottom, .cols3 .cols3-bottom {max-width:100%;}

/* Tables: fit container and wrap long text */
.content table {width:100%; table-layout:auto;}
.content table th, .content table td {word-break:break-word;}

/* Slider/promo: let height be automatic and images responsive */
#promo {height:auto; min-height:250px;}
#promo ul#slider {list-style:none; padding:0; margin:0; position:relative;}
#promo ul#slider li {display:none; position:absolute; left:0; top:0; width:100%;}
#promo ul#slider li:first-child {display:block;} /* fallback before JS inits */
#promo ul#slider img, #promo p img {width:100%; height:auto; display:block;}

/* Tablet and Mobile - Responsive breakpoints */
@media (max-width: 1024px) {
	/* Adjust header for tablets */
	#header #nav {
		right: 60px;
	}
}

/* Mobile devices - Main breakpoint */
@media (max-width: 768px) {
	/* Header/nav */
	#header {
		height: auto;
		position: relative;
		min-height: 65px;
	}
	
	/* Show hamburger menu on mobile */
	.mobile-menu-toggle {
		display: flex;
	}
	
	/* Reset header nav positioning for mobile */
	#header #nav {
		position: fixed !important;
		top: 0 !important;
		right: auto !important;
		left: -100%;
		width: 280px;
		max-width: 85%;
		height: 100vh;
		background: #fff;
		z-index: 1000;
		margin: 0;
		transition: left 0.3s ease;
		box-shadow: 2px 0 10px rgba(0,0,0,0.1);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	/* Hide desktop navigation by default on mobile */
	#header #nav .main-nav {
		display: none;
	}
	
	/* Mobile navigation active state */
	#header #nav.active {
		left: 0;
	}
	
	/* Mobile menu logo - 50% of main logo size */
	#header #nav .mobile-menu-logo {
		display: none;
		text-align: center;
		padding: 20px 15px;
		border-bottom: 1px solid #eee;
		background: #fff;
	}
	
	#header #nav.active .mobile-menu-logo {
		display: block;
	}
	
	#header #nav .mobile-menu-logo img {
		width: 50%;
		max-width: 137.5px;
		height: auto;
		display: block;
		margin: 0 auto;
	}
	
	#header #nav.active .main-nav {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 0;
	}
	
	#header #nav .main-nav li {
		margin: 0;
		width: 100%;
		border-bottom: 1px solid #eee;
	}
	
	#header #nav .main-nav li a {
		display: block;
		padding: 15px 20px;
		font-size: 19.2px; /* 20% larger than 16px */
		color: #333;
		text-decoration: none;
		width: 100%;
		box-sizing: border-box;
	}
	
	/* Home icon on mobile - replace Úvod text with icon */
	#header #nav .main-nav li a.home-icon {
		font-size: 0;
		line-height: 1;
		display: block;
		width: 15px;
		height: 12px;
		margin: 0 auto;
		padding: 15px 20px;
		position: relative;
		text-align: center;
		background-color: currentColor;
		border: 1.5px solid currentColor;
		border-top: none;
		box-sizing: content-box;
	}
	
	/* Triangular roof - more prominent */
	#header #nav .main-nav li a.home-icon::before {
		content: "";
		position: absolute;
		top: calc(15px - 8px);
		left: calc(50% - 9px);
		width: 0;
		height: 0;
		border-left: 9px solid transparent;
		border-right: 9px solid transparent;
		border-bottom: 8px solid currentColor;
	}
	
	/* Door - more visible and realistic */
	#header #nav .main-nav li a.home-icon::after {
		content: "";
		position: absolute;
		bottom: calc(15px - 1.5px);
		left: 50%;
		transform: translateX(-50%);
		width: 3.5px;
		height: 6px;
		background-color: transparent;
		border: 1.5px solid currentColor;
		border-top: 1.5px solid currentColor;
		box-sizing: border-box;
	}
	
	#header #nav .main-nav li a:hover {
		background-color: #f5f5f5;
		color: #77aa00;
	}
	
	#header #nav .main-nav li strong {
		display: block;
		padding: 15px 20px;
		font-size: 16px;
		color: #77aa00;
	}
	
	/* Current page highlighting on mobile - same style as Kontakt */
	#header #nav .main-nav li a.current-page,
	#header #nav .main-nav li a.current-page:hover {
		color: #77aa00 !important;
		font-weight: bold !important;
		background-color: #f0f8e0 !important;
	}
	
	/* Submenu items - current page highlighting */
	#header #nav .submenu li a.current-page,
	#header #nav .submenu li a.current-page:hover {
		color: #77aa00 !important;
		font-weight: bold !important;
		background-color: #f0f8e0 !important;
	}
	
	/* Submenu on mobile */
	.submenu {
		position: static;
		box-shadow: none;
		border: none;
		border-top: 1px solid #e0e0e0;
		background: #f8f8f8;
		margin: 0;
		border-radius: 0;
		display: none;
		padding: 0;
	}
	
	.submenu.active {
		display: block;
	}
	
	.submenu li {
		border-bottom: 1px solid #e0e0e0;
	}
	
	.submenu li a {
		padding: 12px 40px;
		font-size: 14px;
		border-bottom: none;
		color: #666;
	}
	
	.submenu li:last-child {
		border-bottom: none;
	}
	
	.submenu li a:hover {
		background-color: #eeeeee;
		color: #77aa00;
	}
	
	/* Prevent hover effects on touch devices - only show submenu on click */
	.has-submenu:hover .submenu {
		display: none !important;
	}

	/* Promo on mobile */
	#promo {height:93.05px; min-height:93.05px; background-color:#fff; position:relative; overflow:hidden;}
	#promo ul#slider {position:static;}
	#promo ul#slider li {position:static;}

	/* Columns stack */
	.cols3 .col {float:none; width:auto; margin-right:0; padding:0 0 15px 0;}
	.cols3 .col.last {margin-right:0;}

	/* Content two-column blocks */
	.content .col50 {float:none; width:auto;}
	
	/* Price list table - mobile improvements */
	.content table {
		width: 100% !important;
		max-width: 100%;
		display: block;
		margin: 15px 0;
		border-collapse: collapse;
		box-sizing: border-box;
		overflow: hidden;
	}
	
	.content table tbody {
		display: block;
		width: 100%;
		box-sizing: border-box;
		overflow: hidden;
	}
	
	.content table tr {
		display: block;
		width: 100%;
		max-width: 100%;
		margin-bottom: 12px;
		padding: 12px;
		background-color: #f9f9f9;
		border: 1px solid #e0e0e0;
		border-radius: 4px;
		box-sizing: border-box;
		overflow: hidden;
	}
	
	/* Header row - first cell green, second cell normal */
	.content table tr:first-child {
		background-color: transparent;
		padding: 0;
		margin-bottom: 15px;
		border: none;
		overflow: hidden;
	}
	
	.content table tr:first-child td {
		display: block;
		width: 100% !important;
		max-width: 100%;
		margin-bottom: 8px;
		padding: 12px !important;
		border-radius: 4px;
		word-break: break-word;
		line-height: 1.5;
		box-sizing: border-box;
		overflow: hidden;
	}
	
	.content table tr:first-child td:first-child {
		background-color: #77aa00;
		color: #fff !important;
		font-weight: bold;
		text-align: left;
	}
	
	.content table tr:first-child td:last-child {
		background-color: #f9f9f9;
		color: #333 !important;
		font-weight: 600;
		text-align: left;
		border: 1px solid #e0e0e0;
	}
	
	.content table tr:first-child td p {
		margin: 0 !important;
		text-align: left !important;
	}
	
	/* Data rows */
	.content table td {
		display: block;
		width: 100% !important;
		max-width: 100%;
		padding: 8px 0 !important;
		text-align: left !important;
		border: none !important;
		word-break: break-word;
		line-height: 1.5;
		box-sizing: border-box;
	}
	
	.content table td:first-child {
		font-weight: 600;
		margin-bottom: 8px;
		color: #333;
		padding-left: 12px !important;
		padding-right: 12px !important;
		box-sizing: border-box;
	}
	
	.content table td:last-child {
		font-size: 1.15em;
		font-weight: bold;
		color: #77aa00;
		text-align: left !important;
		padding: 12px 12px 12px 15px !important;
		border-left: 3px solid #77aa00;
		background-color: #f0f8e0;
		margin-top: 8px;
		margin-left: 0;
		margin-right: 0;
		min-height: 44px;
		display: flex;
		align-items: center;
		box-sizing: border-box;
		max-width: 100%;
		overflow: hidden;
		word-wrap: break-word;
	}
	
	.content table td:last-child p {
		margin: 0 !important;
		text-align: left !important;
	}
}

/* Small mobile devices */
@media (max-width: 600px) {
	/* Base typography a bit larger for readability */
	body {font:1em/1.6 "arial", sans-serif;}

	/* Mobile menu adjustments for small screens */
	#header #nav {
		width: 100%;
		left: -100%;
	}
	
	.mobile-menu-toggle {
		top: 10px;
		right: 10px;
	}

	/* Reduce inner paddings and remove decorative backgrounds to gain space */
	.cols3 .cols3-content {padding:10px; background:none;}
	.content .content-in {padding:5px !important; background:none;}
	.content .content-bottom, .cols3 .cols3-bottom {display:none;}
	
	/* Ensure tables stay within content area */
	.content .content-in table {
		width: calc(100% - 0px) !important;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	/* Simplify nav separators */
	#header #nav span {display:none;}

	/* Footer layout stacks */
	#footer p {text-align:center;}
	#footer p.f-right, #footer p.f-left {float:none !important; margin:5px 0;}

	/* Maps iframe */
	.content-in iframe {width:100% !important; height:250px !important;}
}

/* Very small mobile devices */
@media (max-width: 480px) {
	#header #nav .main-nav li a {
		padding: 12px 15px;
		font-size: 15px;
	}
	
	.submenu li a {
		padding: 10px 30px;
		font-size: 13px;
	}
	
	.mobile-menu-toggle {
		padding: 6px;
	}
	
	.mobile-menu-toggle span {
		width: 22px;
		height: 2px;
	}
}

/* Large tablets and small desktops */
@media (min-width: 769px) and (max-width: 1024px) {
	#header #nav {
		right: 20px;
	}
	
	#nav .main-nav li {
		margin: 0 10px;
	}
}

/* Extra large devices */
@media (min-width: 1025px) {
	#nav .main-nav li {
		margin: 0 15px;
	}
}