@import url('./menu.css');
@import url('./content.css');
@import url('./layout.css');
@import url('./colors.css');
@import url('./mockup.css');
@import url('./tags.css');

html {
    overflow-y: scroll;
}

body {
    font-size: 14px;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    background: #eee;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
}

body > #header {
    background-color: white;
}

body > #content {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: calc(100vh - 112px - 249px);
}

body.homepage > #content {
    min-height: calc(100vh - 292px - 249px);
}

body.full > #content {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100px;
    bottom: 0;
    left: 0;
    right: 0;
}

body > #content > iframe {
    border: none;
    width: 100%;
    height: 100%;
}

body > #footer {
    z-index: 10;
}

body > #footer > .footer-v3 > .footer {
    padding: 0;
}

.header .logo {
    height: 72px;
    z-index: 99999;
}

li a {
    color: #3498db;
}

p,
li,
label {
    color: #333;
}

.scrollup {
    width: 40px;
    height: 40px;
    opacity: 0.2;
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: none;
    margin-left: 970px;
    text-indent: -99999px;
    cursor: pointer;
    background: url(../img/ico-scroll-top.png) no-repeat;
}

@media (max-width: 767px) {
    body > #content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}