/******************** GENERAL ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    color: #414047;
    font-weight: 400;
    background-image: url(../layout/body-bg-left.png);
    background-repeat: no-repeat;
    background-size: auto 150vh;
    background-position: left top;
    background-color: #084873;
}
body:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: url(../layout/body-bg-right.png);
    background-repeat: no-repeat;
    background-size: auto 220vh;
    background-position: right -10vh;
}
body.loginform:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .45) 100%);
}
strong,
h2 {
    font-weight: 700;
}
a:link,
a:visited {
    color: #127183;
    text-decoration: none;
    border-bottom: dotted 1px #127183;
}
a:hover,
a:active {
    color: #213c80;
    text-decoration: none;
    border-bottom: dotted 1px #213c80;
}
.panel {
    border: none;
    box-shadow: 0 0 64px 0 rgba(0, 0, 0, 0.2);
    padding: 0;
    border-radius: 4px;
    margin: 0;
    background-color: #ffffff;
}
.panel .panel-body {
    padding: 0;
}
header {
    font-size: 0;
}
header .logo {
    margin: 20px;
    width: 140px;
    display: block;
    border: none;
}
header .logo img {
    width: 100%;
    border: none;
}
.login-form #logo img {
    width: 100%;
    display: none;
}
.page-title {
    background-color: #0f2f41;
    color: #ffffff;
    font-size: 24px;
    margin: 0 -20px 15px;
    padding: 15px 20px;
    font-weight: 700;
    text-align: center;
    font-family: 'Playfair Display', serif;
}
.ws-page-wrapper {
    height: 100%;
    position: relative;
    z-index: 2;
}
.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: 15px;
    top: 15px;
    font-size: 16px;
}
.nav-tabs > li {
    float: none;
    display: inline-block;
    margin-bottom: 0;
}
.nav-tabs > li.active {
    display: none;
}
.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: #f7f9fa;
    color: #414047;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: #f7f9fa;
    color: #414047;
    border: none;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1;
    border: none;
    border-radius: 4px;
    padding: 8px;
    color: #414047;
    background-color: #f7f9fa;
}
.tab-content {
    padding: 0 20px 20px;
    font-size: 16px;
}
@media (max-width: 767px) {
    .ws-page-wrapper {
        padding-top: 120px;
    }
    .vertical-center-inner {
        vertical-align: top;
    }
    .vertical-center-centered {
        width: 90%;
    }
}