/******************** GENERAL ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #373535;
    font-weight: 300;
    background: linear-gradient(-45deg, #efeeca, #d4ffd6, #e3ebff, #d6fdff);
    background-size: cover;
}
strong,
h2 {
    font-weight: 700;
}
a:link,
a:visited {
    color: #e0191b;
    text-decoration: none;
    border-bottom: dotted 1px #e0191b;
}
a:hover,
a:active {
    color: #373535;
    text-decoration: none;
    border-bottom: dotted 1px #373535;
}
.panel {
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 0;
}
.panel .panel-body {
    padding: 0;
}
header {
    font-size: 0;
    background-color: #ffffff;
    border-radius: 0;
}
header .logo {
    border: none;
    margin: 25px 20px;
    width: 180px;
    display: inline-block;
}
header .logo img {
    width: 100%;
    display: block;
}
.page-title {
    background-color: #e0191b;
    color: #ffffff;
    font-size: 21px;
    margin: 0 -20px 25px;
    padding: 10px;
    font-weight: 700;
    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: 20px;
    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: #191919;
    color: #ffffff;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: #191919;
    color: #ffffff;
    border: none;
}
.nav-tabs > li.active {
    display: none;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 18px;
    border: none;
    border-radius: 0;
    padding: 6px;
    color: #373535;
    background-color: #ECECEC;
}
.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%;
    }
}