/******************** GENERAL ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: #1a1c1d;
    font-weight: 400;
    background-color: #f5f8fa;
    background-image: url('../layout/bg-login.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}
strong,
h2 {
    font-weight: 600;
}
a:link,
a:visited {
    color: #1a1c1d;
    text-decoration: none;
    border-bottom: dashed 1px #1a1c1d;
}
a:hover,
a:active {
    color: #95cbe9;
    text-decoration: none;
    border-bottom: dashed 1px #95cbe9;
}
.panel {
    box-shadow: none;
    padding: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.8);
    border: solid 1px #e4ebef;
    border-radius: 4px;
}
.panel .panel-body {
    padding: 0;
}
header {
    font-size: 0;
}
header .logo {
    border: none;
    margin: 20px 0 15px 20px;
    width: 240px;
    display: inline-block;
}
header .logo img {
    width: 100%;
    display: block;
}
.page-title {
    background-color: #1a1c1d;
    font-family: 'Lora', serif;
    color: #ffffff;
    font-size: 24px;
    margin: 0 -20px 15px;
    padding: 10px;
    font-weight: 600;
    text-align: center;
    border-radius: 0;
}
.ws-page-wrapper {
    height: 100%;
}
.vertical-center-outer {
    display: table;
    width: 100%;
    height: 100%;
}
.vertical-center-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.vertical-center-centered {
    position: relative;
    display: inline-block;
    width: 50%;
    max-width: 700px;
}
.panel-body {
    text-align: left;
}
.nav-tabs {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 24px;
    font-size: 16px;
}
.nav-tabs > li {
    float: none;
    display: inline-block;
    margin-bottom: 0;
}
.nav-tabs,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border: none;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background-color: #f5f8fa;
    color: #1a1c1d;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: #f5f8fa;
    color: #000f1a;
    border: none;
}
.nav-tabs > li.active {
    display: none;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1;
    border: none;
    border-radius: 3px;
    padding: 5px;
}
.tab-content {
    padding: 0 20px 20px;
}
@media (max-width: 767px) {
    .ws-page-wrapper {
        padding-top: 20px;
    }
    .vertical-center-inner {
        vertical-align: top;
    }
    .vertical-center-centered {
        width: 90%;
    }
}