@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/******************** GENERAL ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Roboto', avenir, helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #0a2139;
    font-weight: 400;
    background-color: #F2F4F7;
}
strong,
h2 {
    font-weight: 600;
}
a:link,
a:visited {
    color: #001831;
    text-decoration: none;
    border-bottom: dotted 1px #001831;
}
a:hover,
a:active {
    color: #001831;
    text-decoration: none;
    border-bottom: dotted 1px #001831;
}
.panel {
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 4px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.9);
}
.panel .panel-body {
    padding: 0;
}
header {
    font-size: 0;
}
header .logo {
    border: none;
    margin: 15px 0 15px 20px;
    width: 180px;
    display: inline-block;
}
header .logo img {
    width: 100%;
    display: block;
}
.page-title {
    background-color: #001831;
    color: #ffffff;
    font-size: 24px;
    margin: 0 -20px 15px;
    padding: 10px;
    font-weight: 500;
    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: 15px;
    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: #C3E7D9;
    color: #0a2139;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: #C3E7D9;
    color: #0a2139;
    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%;
    }
}