/******************** GENERAL ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Gotham Rounded SSm A', 'Gotham Rounded SSm B', Arial, sans-serif;
    font-size: 16px;
    color: #4d4d4f;
    font-weight: 400;
    background-color: #283840;
}
body:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../layout/bg-login.svg);
    background-size: auto 97%;
    background-position: center center;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: .05;
    filter: alpha(opacity=5);
}
body:after {
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
strong,
h2 {
    font-weight: 600;
}
a:link,
a:visited {
    color: #c20033;
    text-decoration: none;
    border-bottom: dotted 1px #c20033;
}
a:hover,
a:active {
    color: #a9002c;
    text-decoration: none;
    border-bottom: dotted 1px #a9002c;
}
.panel {
    border: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25);
    background-color: #eeeeee;
}
.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: #c20033;
    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%;
    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: 30px;
    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: #eeeeee;
    color: #4d4d4f;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: #eeeeee;
    color: #4d4d4f;
    border: none;
}
.nav-tabs > li.active {
    display: none;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1;
    border: none;
    border-radius: 3px;
    padding: 10px;
    background-color: #eeeeee;
}
.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%;
    }
}