/*
* @Author: Fabrice Bascoulergue
* @Date:   2017-01-25 14:00:12
* @Last Modified by:   Fabrice Bascoulergue
* @Last Modified time: 2017-01-31 11:04:02
*/

@import url(font-awesome.min.css);
/*@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

html {
    height: 100%;
}

body {
    min-height: 100%;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    width: 100%;
    height: 72px;
    position: fixed;
    background-color: #fc537f;
    z-index: 10;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#header-content {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
}

.content-container {
    width: 100%;
    position: relative;
    display: block;
    /*padding-top: 72px;*/
}

.content {
    position: relative;
    display: block;
    overflow: auto;
    width: 100%;
    max-width: 1000px;
    min-width: 320px;
    margin: auto;
    padding: 0 12px;
    box-sizing: border-box;
}

.brand-title > img {
    padding-top: 1px;
	padding-left:1px;
	background:#ffffff;
	margin-top:11px;
    height: 48px;
}

.faq {
    padding-bottom: 64px;
}

.faq h2 {
    margin-top: 64px;
    margin-bottom: 16px;
}

.faq p {
    color: rgba(0, 0, 0, 0.8);
}

.faq li {
    color: rgba(0, 0, 0, 0.8);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: right;
}

nav * {
    display: inline;
}

nav li,
nav li > a {
    position: relative;
    display: inline-block;
    height: 72px;
    line-height: 72px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
}

nav li:not(:last-child) {
    padding-right: 36px;
}

nav li > a > span {
    position: absolute;
    bottom: 0;
    left: -2px;
    right: -2px;
    height: 4px;
    background-color: #5775f1;
    opacity: 0;
    border-radius: 2px;
    transition: opacity 0.25s ease;
    -webkit-transition: opacity 0.25s ease;
}

nav li > a.selected,
nav li > a:hover {
    color: #e0e0e0;
}

nav li > a.selected > span {
    opacity: 1;
}

nav li > a:hover > span {
    opacity: 1;
}

h1.page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    line-height: 48px;
    font-weight: 800;
    padding: 40px 0;
    text-align: center;
    color: #2f2f2f;
    margin: 0 0;
}

.legal-content {
    padding-bottom: 128px !important;
}

.legal-content h2,
.legal-content h3 {
    padding: 72px 0 0 0;
    font-size: 18px;
    font-weight: 800;
    color: #2f2f2f;
    text-transform: uppercase;
}

.legal-content h4 {
    padding: 0 0 0 0;
    font-size: 18px;
    font-weight: 800;
    color: #2f2f2f;
    text-transform: capitalize;
}

.legal-content p {
    padding-bottom: 18px;
    font-size: 16px;
    line-height: 22px;
    -webkit-margin-before: 0 !important;
    -webkit-margin-after: 0em !important;
}

.legal-content p.signature {
    padding-top: 92px;
    font-weight: 700;
}

.legal-content a {
    color: #4274db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content .lang-choice {
    padding-top: 6px;
    float: right;
}

.legal-content .lang-choice > a {
    padding-left: 12px;
    font-size: 14px;
}

@media (max-width: 840px) {
    h1.page-title {
        font-size: 24px;
        line-height: 34px;
        padding: 60px 20px;
    }
}

.icon {
    text-decoration: none;
    border-bottom: none;
    position: relative;
}

.icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

.icon > .label {
    display: none;
}

ul.icons {
    cursor: default;
    list-style: none;
    padding-left: 0;
}

ul.icons li {
    display: inline-block;
    padding: 0 1em 0 0;
}

ul.icons li:last-child {
    padding-right: 0;
}

ul.icons li .icon:before {
    font-size: 1.25em;
}

ul.icons li a {
    color: inherit;
}

#footer {
    /* background-color: #fc537f; */
    color: rgba(0, 0, 0, 1);
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative;
    text-align: center;
}

#footer .icons {
    margin: 0 0 0.5em 0;
}

#footer .copyright {
    font-size: 0.8em;
    list-style: none;
    padding: 0;
    margin: auto;
}

#footer .copyright li {
    border-left: solid 1px rgba(0, 0, 0, 0.25);
    display: inline-block;
    line-height: 1em;
    margin: 0 0 0 0.75em;
    padding: 0 0 0 0.75em;
}

#footer .copyright li:first-child {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
}

#footer .copyright a {
    color: inherit;
}

#footer:hover {
    opacity: 1;
}

#footer > :last-child {
    margin-bottom: 0;
}

a.doc-link {
    margin-top: 12px;
    font-size: 12px;
    line-height: 12px;
    background-color: #fc537f;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    min-width: 240px;
}
