/*csslint
overqualified-elements: false,
qualified-headings: false,
floats: false,
ids: false,
outline-none: false,
fallback-colors: false,
unique-headings: false,
bulletproof-font-face: false
*/
@font-face {
    font-family: 'PoppinsRegular';
    src: url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'PoppinsSemiBold';
    src: url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
/******************** PAGE BODY ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: 'PoppinsRegular', sans-serif;
    color: #414a53;
    font-size: 16px;
    background-color: #f3f6f5;
    background-image: url(../layout/error-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.ws-page-wrapper {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}
strong,
h1,
h2,
h3,
h4,
h5,
th {
    font-weight: 600;
    font-family: 'PoppinsSemiBold', sans-serif;
}
a:link,
a:visited {
    color: #414a53;
    text-decoration: none;
    border-bottom: dotted 1px #414a53;
}
a:hover,
a:active {
    color: #92c83e;
    text-decoration: none;
    border-bottom: dotted 1px #92c83e;
}
.panel {
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}
.panel .panel-body {
    padding: 0;
    box-shadow: none;
}
header {
    padding: 25px 0;
    text-align: center;
}
header .logo {
    border: none;
    float: left;
    margin: 0 0 0 25px;
    width: 172px;
}
header .logo img {
    width: 100%;
    display: block;
}
.page-title {
    background: #f28b0e;
    color: #ffffff;
    font-size: 22px;
    margin: 0 -15px 15px;
    padding: 10px;
    font-weight: 700;
    text-align: center;
    border-radius: 0;
}
.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: 12px 15px 0;
    text-align: right;
}
.nav-tabs > li {
    float: none;
    display: inline-block;
    margin-bottom: 0;
}
.nav-tabs > li > a:focus,
.nav-tabs > li > a:hover {
    background-color: #f3f6f5;
    color: #414a53;
}
.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: #f3f6f5;
    color: #414a53;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1;
    border: none;
    border-radius: 0;
    padding: 5px 10px;
    color: #414a53;
}
.tab-content {
    padding: 0;
    font-size: 16px;
}
.tab-pane {
    padding: 0 15px 15px;
}
@media (max-width: 767px) {
    .ws-page-wrapper {
        padding-top: 20px;
    }
    .vertical-center-inner {
        vertical-align: top;
    }
    .vertical-center-centered {
        width: 90%;
    }
}