/******************** GENERAL ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    background-color: #ffffff;
}
body:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: url(../layout/pattern.svg);
    background-repeat: repeat;
    background-position: left top;
}
strong,
h2 {
    font-weight: 700;
}
a:link,
a:visited {
    color: #182865;
    text-decoration: none;
    border-bottom: dotted 1px #182865;
}
a:hover,
a:active {
    color: #B58D49;
    text-decoration: none;
    border-bottom: dotted 1px #B58D49;
}
.panel {
    border: solid 1px #f7f7f7;
    overflow: hidden;
    padding: 0;
    border-radius: 0;
    margin: 0;
    background-color: #ffffff;
}
.panel .panel-body {
    padding: 0;
}
header {
    font-size: 0;
    padding: 20px 0;
    background-color: #ffffff;
}
header .logo {
    width: 120px;
    display: block;
    border: none;
    margin: 0 auto;
}
header .logo img {
    width: 100%;
    border: none;
}
.login-form #logo img {
    width: 100%;
    display: none;
}
.page-title {
    background-color: #B58D49;
    color: #ffffff;
    font-size: 21px;
    margin: 0 -20px 15px;
    padding: 15px 20px;
    font-weight: 700;
    line-height: 1.3;
    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: 0;
    top: -55px;
    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: #B58D49;
    color: #ffffff;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: #B58D49;
    color: #ffffff;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1;
    border: solid 1px #182865;
    border-radius: 0;
    padding: 8px;
    color: #ffffff;
    background-color: #182865;
}
.tab-content {
    padding: 0 20px 20px;
}
@media (max-width: 767px) {
    .ws-page-wrapper {
        padding-top: 76px;
    }
    .vertical-center-inner {
        vertical-align: top;
    }
    .vertical-center-centered {
        width: 90%;
    }
}
@media (max-width: 359px) {
    header .logo {
        width: 220px;
    }
}