/******************** CUSTOM FONT ********************/
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BookItalic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}
/******************** GENERAL ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: Gotham, Arial Unicode MS, Arial, sans-serif;
    font-size: 16px;
    color: #383838;
    font-weight: 400;
    background: rgb(0, 82, 62);
    background: linear-gradient(40deg, rgba(0, 82, 62, 1) 0%, rgba(0, 98, 74, 1) 100%);
}
strong,
h2 {
    font-weight: 600;
}
a:link,
a:visited {
    color: #2A6654;
    text-decoration: none;
    border-bottom: dotted 1px #2A6654;
}
a:hover,
a:active {
    color: #CB521C;
    text-decoration: none;
    border-bottom: dotted 1px #383838;
}
.panel {
    border: none;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.18);
    padding: 20px;
    border-radius: 0;
    margin: 0;
    background-color: #ffffff;
}
.panel .panel-body {
    padding: 0;
}
header {
    font-size: 0;
}
header .logo {
    margin: 0 0 20px;
    width: 200px;
    display: block;
    border: none;
}
header .logo img {
    width: 100%;
    border: none;
}
.login-form #logo img {
    width: 100%;
    display: none;
}
.page-title {
    background-color: #CB521C;
    color: #ffffff;
    font-size: 24px;
    margin: 0 -20px 15px;
    padding: 10px 20px;
    font-weight: 700;
    text-align: center;
}
.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: 20px;
    top: 20px;
    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: #2A6654;
    color: #ffffff;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: #2A6654;
    color: #ffffff;
    border: none;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1;
    border: none;
    border-radius: 3px;
    padding: 8px;
    color: #383838;
    background-color: #ededed;
}
.tab-content {
    font-size: 16px;
}
@media (max-width: 767px) {
    .ws-page-wrapper {
        padding-top: 120px;
    }
    .vertical-center-inner {
        vertical-align: top;
    }
    .vertical-center-centered {
        width: 90%;
    }
}