html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	color: #bbb;
	background: url('../img/background.png') center top;
	background-attachment: fixed;
	font-size: 100%;
	-webkit-font-smoothing: antialiased;
	font-size: 13px;
	font-family: 'PT Sans', sans-serif;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: #fff;
	text-decoration: none;
}

a:hover {
	color: #fff;
}

ul {
	padding: 0;
	list-style-type: none;
}

h1 {
	margin-bottom: 25px;
	color: #e4e4e4!important;
	font-weight: 700;
}

h4 {
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	margin-top: 0;
	font-weight: bold;
}

h5 {
	color: #555;
	font-size: 16px;
	text-transform: uppercase;
	margin-top: 0;
	font-weight: bold;
}

h6 {
	color: #e4e4e4;
	text-transform: uppercase;
	font-size: 16px;
	margin: 0 0 15px;
	font-weight: bold;
}

.mb0 {
	margin-bottom: 0;
}

section {
	margin: 35px 0;
}

.nopadding {
	padding: 0!important;
	margin: 0!important;
}

.mt20 {
	margin-top: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

/*------------HEADER-----------*/

.pre-header {
	min-height: 45px;
	line-height: 45px;
	background: rgb(63,63,63);
}

.moto {
	text-transform: uppercase;
	margin-bottom: 0;
}

.pre-header_odkazy {
	font-weight: bold;
	color: #fff;
	font-size: 15px;
}

.menu {
	width: 100%;
}

.navbar {
	margin-top: 10px;
	margin-bottom: 10px;
    min-height: auto;
}

.navbar-nav {
    float:none;
    margin:0 auto;
    display: block;
    text-align: center;
}

.navbar-nav > li {
    display: inline-block;
    float:none;
    position: static;
    z-index: 9999;
    border: none;
}

.navbar-nav li a {
	font-size: 15px;
	text-transform: uppercase;
	padding: 5px 18px;
	margin: 0 15px;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.navbar-nav li:hover a {
	border: 1px solid #929292;
	border-radius: 25px;
	background: none
}

.nav>li>a:focus {
	outline: none;
	background: none;
	color: #fff !important;
}

.fixed_menu {
	box-shadow: 0 5px 5px -5px rgba(0,0,0,.2);
	background: #2a2a2a;
	position: fixed;
	top: 0;
	z-index: 20;
	transition: all 0.3s ease
}

.navbar-toggle {
	float: left;
}

.navbar-toggle .icon-bar {
	background: #fff;
}

/*------MAIN------*/
.right_section {
	text-align: right;
	padding: 20px;
	background: #545454;
}

.right_section a {
	color: #bbb;
	transition: color 0.2s ease;
}

a.orange {
	color: orange;
}

.right_section a:hover {
	color: #fff;
	text-decoration: none;
}

.white_container {
	background: #fff;
	padding: 15px 10px 0;
}

.item {
	padding: 7px 5px 7px 10px;
    background: url(../img/bodyli.gif) no-repeat 0px 13px;
    color: #555;
}

.item_link {
	cursor: pointer;
}

.item_container {
	display: none;
	background: rgb(238, 238, 238);
	padding: 10px;
	color: #555;
}

/*--------FOOTER-------*/
.main_footer {
	background: #343434;
    border: 1px solid #3f3f3f;
    padding: 55px 0 40px;
    color: #cdcdcd;
}

.footer_list li {
	padding: 5px 0;
	color: #a5a5a5;
}

.footer_list li a {
	color: #a5a5a5;
	transition: all 0.3s ease
}

.footer_list li a:hover {
	padding-left: 5px;
	color: #fff;
	text-decoration: none;
}

.border {
	border-left: 1px solid #464646;
    border-right: 1px solid #464646;
    padding: 0 30px !important;
}

.column1 {
	padding-right: 30px;
}

.column3 {
	padding-left: 30px;
}

.footer_list .fa {
	margin-right: 10px;
}

.footer_copyright {
	background: #232323;
	padding: 15px 0;
	text-align: center;
}

.footer_copyright p {
	color: #828282;
	margin-bottom: 0
}

@media(max-width: 992px) {
	.navbar-nav > li {
	    display: block;
	    text-align: left;
	}
}

@media (min-width: 768px) and (max-width: 992px) {
    .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-collapse.collapse.in {
        display: block !important;
        padding-left: 0;
    }
    .navbar-header .collapse, .navbar-toggle {
        display:block !important;
    }
    .navbar-header {
        float:none;
    }
    .navbar-nav li a {
    	margin-left: 0;
    }
}

@media (max-width: 767px) {
	.border, .column3, .column1 {
		padding: 0 15px!important;
	}
}

body {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.error {
	min-height: 182px;
	text-align: center;
}

.error p {
	font-size: 16px;
}