@import url(http://weloveiconfonts.com/api/?family=fontawesome);/**
* SassQueries
* Manage media-queries in Sass easily.
*
* @author     Samuel Marchal (zessx)
* @version    0.3
*//* fontawesome */[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

body {
  margin: 100px 0 0 0;
  padding: 0;
  font-family: Raleway;
  color: #525c66;
  font-weight: 400;
  font-size: 12px;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

i {
  font-style: normal;
}

header {
  font-family: Montserrat;
  color: #525c66;
  font-weight: 600;
  font-size: 20px;
  background-color: white;
  text-transform: uppercase;
}

header .container {
  display: table;
  padding: 10px 0;
}

header .container span {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}

header .container span.describe {
  font-family: Raleway;
  color: #525c66;
  font-weight: 100;
  font-size: 14px;
  text-align: right;
  text-transform: none;
}

nav.menu {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: #f3f6f8;
  text-align: center;
  color: #525c66;
  border-top: 1px solid #e5e9ec;
  border-bottom: 1px solid #e5e9ec;
}

nav.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  font-size: 0px;
}

nav.menu ul li {
  padding: 15px 0;
  text-align: center;
  display: inline-block;
  background-color: #f3f6f8;
  font-family: Raleway;
  color: #c4c9cc;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 1s;
  transition: all 1s;
  border-right: 1px solid #e5e9ec;
  width: 150px;
}

nav.menu ul li.active {
  background-color: #FFFFFF;
  font-family: Raleway;
  color: #525c66;
  font-weight: 700;
  font-size: 14px;
}

nav.menu ul li i {
  padding-right: 5px;
}

nav.menu ul li:first-child {
  border-left: 1px solid #e5e9ec;
}

nav.menu ul li:hover {
  background-color: #528fcc;
  color: #FFFFFF;
}

.container {
  width: 960px;
  margin: auto;
}

.container-user {
  width: 960px;
  margin:auto;
}

.container-user .title {
  font-family: Montserrat;
  color: #528fcc;
  font-weight: 700;
  font-size: 26px;
  padding-left: 30px;
  text-transform: uppercase;
}

.container-user__content {
  padding: 0 30px;
  height: 800px;
}

.container-user__content .rubrique {
  padding: 50px 0;
  display: table;
  width: 100%;
  padding-left:10px;
  border-bottom: 1px solid #edeeee;
}

.container-user__content .rubrique__title {
  display: table-cell;
  font-family: Montserrat;
  color: #b5babc;
  font-weight: 400;
  font-size: 12px;
  padding-right: 10px;
  text-transform: uppercase;
  width: 20%;
  vertical-align: middle;
}

.container-user__content .rubrique__content {
  display: table-cell;
  width: 80%;
}

.container-user__content .rubrique__content div {
  padding-bottom: 10px;
}

.container-user__content .rubrique__content__step {
  font-family: Montserrat;
  color: #528fcc;
  font-weight: 400;
  font-size: 16px;
}

.container-overview {
  margin:auto;
  width: calc(100% - 92px);
  height: 100%;
  background: white;
  position: fixed;
  top: 92px;
  left: 0;
}

.container-overview .title {
  font-family: Montserrat;
  color: #528fcc;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  text-transform: uppercase;
}

.container-overview #content-newsletter {
  height: 800px;
  overflow-y: scroll;
}

input[type="text"] {
  border: 1px solid #d4d8da;
  border-radius: 2px;
  height: 20px;
  padding: 3px;
  margin-right: 20px;
  width: 150px;
  background-color: #f5f8f9;
}

textarea {
  border: 1px solid #d4d8da;
  border-radius: 2px;
  padding: 3px;
  width: 100%;
  margin-right: 20px;
  display: block;
  font-family: Raleway;
  background-color: #f5f8f9;
  padding: 5px;
  height: 150px;
  resize: none;
}

textarea:focus {
  border: 1px solid #528fcc;
  outline: none;
  background-color: #FFFFFF;
}

label {
  padding-right: 10px;
  width: 120px;
  display: inline-block;
}

input[type="text"]:focus {
  border: 1px solid #528fcc;
  outline: none;
  background-color: #FFFFFF;
}

button {
  border:none;
  font-family: Montserrat;
  color:white;
  background-color:#528fcc;
  padding:5px;
  text-transform: uppercase;
  float: right;
  font-size: 15px;
  margin-top:20px;
}

.displayPara {
  overflow: hidden;
  height: 0px;
  display: block;
}

.button_add{
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
  border-radius: 100px;
  padding: 5px;
  background-color: #528fcc;
  width: 100px;
  color: white;
  font-weight: bold;
}

.container-user .rubrique:nth-child(even){
  background: rgba(82, 143, 204, 0.10);
}





/* Let's get this party started */
::-webkit-scrollbar {
    width: 8px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #b5babc; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #b5babc; 
}


.button_generate{
  color: #FFFFFF;
  font-weight: bold;
  font-size: 30px;
  margin: auto;
  background: #528fcc;
  text-align: center;
  width: 300px;
  border-radius: 100px;
  margin: 30px auto;
  cursor: pointer;
}

.fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}