/*
======================================
COLOR THEME:
          dk.blue - #00264c
          dk.teal - #4a778a
          lt.teal - #82a6b6
  lt.grey borders - #ddd

======================================
*/

/*
-----------------------------------
fonts
-----------------------------------
*/

/* font-family: 'Roboto Slab', serif; */
@font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 700;
    src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(./fonts/RobotoSlab-Bold.woff) format('woff');
}

/* font-family: 'Open Sans', sans-serif; */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url(./fonts/OpenSans.woff) format('woff');
}

/*
-----------------------------------
elements
-----------------------------------
*/
html,
body {
    background: #00264c;
    font-family: 'Open Sans', sans-serif;
}
h1 {
    font-family: 'Roboto Slab', serif;
    color: #4a778a;
    margin: 0 0 40px 0;
}
h2 {
    font-family: 'Roboto Slab', serif;
    color: #82a6b6;
    margin: 30px 0;
}
h3 {
    color: #58575d;
    font-weight: 700;
    margin: 30px 0;
}
h4 {
    color: #1d1a21;
    font-weight: 700;
    margin: 20px 0;
}
table {
    margin-bottom: 20px;
}
th {
    background: #f5f5f5;
}
th,
td {
    text-align: left;
    padding: 10px;
}
pre {
    background: #f5f5f5 !important;
}

/*
--------------------------------------
layout
--------------------------------------
*/
header {
    padding: 10px 0;
}
footer {
    padding: 10px 0 30px;
    color: white;
    font-size: 12px;
}
footer hr {
    margin: 5px 0;
}
footer a {
    color: white !important;
    text-decoration: none;
}
footer a:hover {
    color: white !important;
    text-decoration: underline;
}
section {
    background: white;
    padding-bottom: 50px;
}

/*
-----------------------------------
tab: sample homepage
-----------------------------------
*/
#samples .sample-template.thumbnail {
    text-decoration: none;
}
@media (min-width: 1000px) {
    #samples .sample-template.thumbnail {
        float: right;
        margin: 0 0 10px 10px;
    }
}

/*
-----------------------------------
tab: services
-----------------------------------
*/
#services .panel-body {
    overflow: auto;
}
.services-input-table thead {
    display: block;
}
.services-input-table tbody {
    display: block;
    overflow-y: auto;
}
.services-input-table-header {
    font-size: 90%;
    padding: 5px;
    text-align: center;
}
.services-input-table .input-group {
    width: 300px;
}
.services-url {
    height: 180px;
    overflow-y: auto;
    font-size: 120%;
    font-family: monospace;
    word-break: break-all;
}

/*
-----------------------------------
tab: faq
-----------------------------------
*/
#faq h5 {
    color: #82a6b6;
    margin: 0 0 5px 0;
    line-height: 20pt;
}
#faq tr {
    vertical-align: top;
}

/*
--------------------------------------
helper classes
--------------------------------------
*/
.code {
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    color: #777;
}
.error-banner {
    position: fixed;
    width: 100%;
    background-color: #ffc;
    color: red;
    padding: 5px;
    z-index: 99999;
}

/*
--------------------------------------
bootstrap
--------------------------------------
*/
.jumbotron {
    height: 100px;
    background-image: url("../img/top-banner.png");
    background-size: cover;
    border: 1px solid #ddd;
    margin: 20px 0 10px 0;
}

.nav>li>a {
    text-decoration: none;
}
.nav>li>a {
    color: #fff;
    border-color: #333 !important;
    background-color: #58575d !important;
    font-size: 11pt;
}
.nav>li>a:hover {
    color: #fff;
    background-color: #82a6b6 !important;
}
.nav>.active>a,
.nav>.active>a:focus {
    color: #fff !important;
    background-color: #b1aeb7 !important;
    font-size: 11pt;
}

.dropdown-menu>li>a {
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    border-color: #333 !important;
    background-color: #82a6b6 !important;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: #4a778a !important;
}

.alert-info {
    background: #eff4f6;
}

/*
--------------------------------------
highlight js
--------------------------------------
*/
.hljs {
    background: none;
}

/*
--------------------------------------
transitions
--------------------------------------
*/
.nav>li>a,
.btn {
    transition: background 150ms linear;
}
