/*fonts*/
@import url(https://fonts.googleapis.com/css?family=Allura&subset=latin,latin-ext);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,400italic,700italic&subset=latin,latin-ext);

.roboto {
    font-family: 'Roboto', sans-serif;
}

.allura {
    font-family: 'Allura', cursive;
}

html {
    height: 100%;
}

body {
    background: #f8c9bb;
    height: 100%;
}

h1 {
    padding: 0;
    margin: 55px 0 70px 0;
    font-size: 34px;
    color: #ffffff;
    text-align: center;
    font-weight: normal;
}

h1 .title, h1 .title-cursive {
    display: block;
    text-align: center;
}

h1 .title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: -3px auto -5px auto;
}

h1 .title-cursive {
    font-family: 'Allura', cursive;
}

h2 {
    font-family: 'Roboto', sans-serif;
    padding: 20px 40px;
    margin: 0;
    font-size: 26px;
    color: #ffffff;
    text-align: left;
    font-weight: normal;
}

.page {
    min-width: 360px;
}

.sidebar-container {
    background: #9a3a30 url("/frontend/images/side-bg-5.jpg") center top no-repeat;
    background-size: 100% auto;
    padding-top: 80px;
    padding-bottom: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    height: 100%;
}

.sidebar-nav,
.sidebar-nav ul,
.sidebar-nav ul li,
.sidebar-nav ul li.active,
.sidebar-nav ul li a {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}
.sidebar-nav ul {
    width: 100%;
    display: block;
}
.sidebar-nav ul li {
    float: none;
    width: 100%;
    display: block;
}
.sidebar-nav ul li.selected {
    border-bottom: 1px solid #ffffff;
    font-weight: 700;
}
.sidebar-nav ul li a.nav-href {
    width: 100%;
    display: block;
    padding: 10px;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}
.sidebar-nav ul li a.nav-href:hover {
    color: #111111;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
}
.sidebar-nav .navbar-toggle {
    background: none;
    border: 1px solid #333333;
    box-shadow: none;
}
.sidebar-nav .navbar-toggle .icon-bar {
    background: #ffffff;
}
.sidebar-nav .navbar-toggle:hover {
    background: none;
    border: 1px solid #ffffff;
}
.sidebar-nav .navbar-brand {
    text-align: center;
    color: #ffffff;
}


.content-container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.page-content {
    padding: 0 40px;
    color: #920d1c;
    font-family: 'Roboto', sans-serif;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin: 0 0 10px 0;
    padding: 0;
    text-align: left;
    color: #920d1c;
}

.main-image {
    padding: 20px 0;
}

.main-image h1 {
    font-size: 32px;
    color: #d50226;
    text-align: center;
}

.main-image h1 .sub-header {
    font-size: 22px;
    display: block;
    font-style: italic;
}

.alert-container {

}

.alert-container .alert {
    margin: 10px 0 0 0;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.hidden {
    display: none;
}


/* fix oldalsáv hack */
.col-fixed-300{
    background-position: 0 -100px;
    width: 350px;
    position:fixed;
    height:100%;
}

.col-offset-300{
    padding-left: 365px;
}


/* responsive cuccok */
@media screen and (max-width : 992px) and (min-width : 768px) {
    h1 {
        margin: 35px 0 50px 0;
        font-size: 26px;
    }
}

@media screen and (max-width : 992px) {
    h2 {
        padding: 5px 10px;
        font-size: 20px;
    }
}

@media screen and (max-width : 768px) {
    h1 {
        margin: 20px 0;
        font-size: 30px;
    }
    h2 {
        padding: 0;
        font-size: 20px;
        text-align: center;
    }
    .page-content {
        padding: 10px;
    }
    .page-content img {
        display: block  !important;
        float: none  !important;
        margin: 0 auto  !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .page-content img.hidden {
        display: none !important;
    }
    .col-offset-300{
        padding: 0 15px !important;
    }

    .sidebar-container {
        background: #9a3a30 url("/frontend/images/mobile-menu-bg.jpg") center center no-repeat;
        background-size: 100% auto;
        padding-top: 15px;
    }
}

/* fix oldalsáv hack level II. */
@media screen and (max-height: 800px) {
    .col-fixed-300{
        background-position: 0 -200px;
        width: 300px;
        position:fixed;
        height:100%;
    }

    .col-offset-300{
        padding-left: 315px;
    }
}