@font-face {;
  font-family: 'Poppins';
  src: url('fonts/Poppins-Light.ttf') format('truetype');
}
html {
  min-height: 100vh;
  background-color: #2c7be5;
}
body {
  font-family: 'Poppins';
  padding: 0;
  margin: 0;
  color: #000;
  background: #edf2f9;
  font-size: 16px;
}
body * {
  font-family: 'Poppins';
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
ol {
  counter-reset: line;
}
ol li {
  margin: 5px 0;
}
ol li:before {
  counter-increment: line;
  display: inline;
  margin-right: 10px;
  content: counter(line);
  font-size: 14px;
  font-weight: bold;
}
h1 {
  font-size: 30px;
  margin-bottom: 20px;
}
h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
p {
  margin: 10px 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.container.center {
  text-align: center;
}
.content-with-sidebar {
  display: inline-block;
  width: 100%;
}
.content-with-sidebar .content-container {
  width: 67%;
  float: left;
}
.content-with-sidebar .sidebar-container {
  width: 30%;
  float: right;
}
@media only screen and (max-width: 900px) {
  .content-with-sidebar {
    display: block;
  }
  .content-with-sidebar .sidebar-container,
  .content-with-sidebar .content-container {
    float: none;
    width: 100%;
  }
  .content-with-sidebar .sidebar-container {
    margin-top: 50px;
  }
}
.header {
  background: #2c7be5;
  color: #fff;
  height: 90px;
  line-height: 90px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}
.header .container {
  display: flex;
}
.header .site-name {
  display: inline-block;
}
.header .site-name .logo {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #fff;
  border-radius: 40px;
  vertical-align: middle;
  background-image: url(logo.png);
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}
.header .site-name .name {
  margin-left: 10px;
  font-size: 20px;
}
.header .site-name .name span {
  color: #4fbd5d;
}
.header .site-name .name a {
    font-size: 20px;
}
.header .site-name .name span:first-of-type {
  color: #fff;
}
.header .site-search {
  flex-grow: 1;
}
.header .nav li {
  cursor: pointer;
  display: inline;
  margin-left: 20px;
  font-size: 14px;
}
.header .nav li:hover {
  opacity: 1;
}
@media only screen and (max-width: 900px) {
  .header {
    height: auto;
    max-height: 90px;
    transition-duration: 0.6s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  .header:after {
    content: "";
    display: block;
    height: 4px;
    width: 40px;
    border-radius: 8px;
    background: #fff;
    position: fixed;
    top: 32px;
    right: 30px;
    box-shadow: 0px 10px 0px 0px #fff, 0px 20px 0px 0px #fff;
    cursor: pointer;
    opacity: 0.6;
  }
  .header .container {
    width: 98%;
  }
  .header .site-name {
    display: none;
  }
  .header .site-name .name {
    font-size: 7px;
  }
  .site-search .box-container{
    padding: 24px 10px 0;
  }
  .header .nav {
    position: fixed;
    z-index: 1000;
    top: 90px;
    left: 40px;
    right: 0;
    bottom: 0;
    float: none;
    background: #2c7be5;
    transition-duration: 0.3s;
    transform: translateX(100%);
  }
  .header .nav li {
    height: 70px;
    line-height: 70px;
    display: block;
    text-align: center;
  }
  .header .nav.open {
    transform: translateX(0);
  }
  .header:hover {
    max-height: 400px;
  }
}
@media only screen and (max-width: 900px) {
  body {
    padding-top: 90px;
  }
}
.footer {
  background: #2c7be5;
  color: #fff;
  margin-top: 50px;
  padding: 30px 0 30px;
}
.footer .contact {
  margin-top: 20px;
}
.footer .rights {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.6;
}
.footer .rights a {
  text-decoration: underline;
}
.btn {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  background-color: #2c7be5;
  border: 1px solid #2c7be5;
  border-radius: 3px;
  transition-duration: 0.3s;
  font-weight: bold;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
.btn:hover {
  background-color: #1862c6;
}
.btn.big {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  font-size: 18px;
}
.btn.secondary {
  background-color: #4fbd5d;
  border: 1px solid #4fbd5d;
}
.btn.secondary:hover {
  background-color: #3b9e48;
}
.nav-buttons {
  text-align: center;
}
.nav-buttons li {
  display: inline-block;
  margin: 0 10px;
  height: 30px;
  line-height: 30px;
  background: #fff;
  color: #0061e2;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  font-size: 14px;
  border-radius: 30px;
}
.nav-buttons li:hover {
  background-color: #edf2f9;
}
.sites-links {
  text-align: center;
}

.sites-links .boxs {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
@media only screen and (max-width: 900px) {
  .sites-links .box {
    width: 50%;
  }
}
.sites-links .box .content {
  height: 180px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.sites-links .box .content .link {
  position: absolute;
  color: transparent;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.sites-links .box .content .logo {
  display: block;
  height: 120px;
  background-size: auto 70%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  transition-duration: 0.3s;
  line-height: 120px;
  font-size: 1px;
  color: transparent;
}
.sites-links .box .content .logo img {
  max-width: 70%;
  display: inline-block;
  vertical-align: middle;
}
.sites-links .box .content .name {
  height: 60px;
  line-height: 60px;
}
.sites-links .box .content:hover {
  background-color: #edf2f9;
}
.sites-links .box .content:hover .logo {
  background-size: auto 90%;
}
.sites-links .box.small {
  width: 50%;
}
.sites-links .box.small .content {
  height: 120px;
}
.sites-links .box.small .content .name {
  display: none;
}
.site-details {
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
}
.site-details .box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 50px 50px 30px;
  position: relative;
  text-align: justify;
}
.site-details .box .content .logo {
  display: block;
  height: 90px;
  width: 90px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}
.site-details .box .content .name {
  font-size: 18px;
  margin-bottom: 30px;
}
.site-details .box .content .advantages {
  font-size: 14px;
  font-weight: bold;
}
.site-details .box .content .advantages li {
  margin-top: 20px;
}
.site-details .box .content .votes {
  text-align: center;
  font-size: 13px;
  margin: 30px 0 0;
  opacity: 0.8;
}
.site-details .box .content a {
  color: #2c7be5;
  font-weight: bold;
}
@media only screen and (max-width: 900px) {
  .site-details .box .content {
    padding-top: 70px;
  }
  .site-details .box .content .logo {
    left: 50%;
    margin-left: -45px;
  }
  .site-details .box .content .name {
    text-align: center;
  }
}
.site-dashboard {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
}
.site-dashboard tr td {
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}
.site-dashboard tr td .logo {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}
.site-dashboard tr td .offers {
  color: #2c7be5;
}
.site-dashboard tr td .actions li {
  display: inline-block;
  margin: 0 10px;
  font-size: 14px;
  font-weight: bold;
  color: #4fbd5d;
}
.site-dashboard tr td .actions li.error {
  color: #ff6666;
}
.site-dashboard tr td .actions li.info {
  color: #2c7be5;
}
.site-dashboard tr.head td {
  padding: 10px;
  font-weight: bold;
  opacity: 0.8;
  font-size: 18px;
}
.site-search {
  display: inline-block;
  line-height: 0;
}
.site-search .box-container {
  display: inline-block;
  width: 80%;
  padding: 24px 20px 0;
}
.site-search .box-container .box {
  vertical-align: middle;
  width: 100%;
}
.site-search .box-container .box .content {
  margin: 0 auto;
  padding: 0 10px;
}
.site-search .box-container .box .content select,
.site-search .box-container .box .content input {
  border: none;
  background: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 5px;
}
.site-search .box-container .box .content .selected {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding-right: 60px;
  margin-bottom: 5px;
}
.site-search .box-container .box .content .selected-container {
  position: relative;
}

.site-search .box-container .box .content .search {
  position: relative;
  width: 100%;
}
.site-search .box-container .box .content .search .search-options {
  position: absolute;
  border: none;
  background: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0px 2px 3px 2px rgba(0, 0, 0, 0.1);
  display: none;
}
.site-search .box-container .box .content .search input {
  height: 40px;
  border: none;
  padding: 0 20px;
  width: 100%;
}
.site-search .box-container .box .content .search input:focus {
  background-color: #e2edfb;
}
.site-search .box-container .box .content .search .options {
  max-height: 180px;
  overflow-y: scroll;
  padding: 0 10px;
  background-color: #fff;
  width: 100%;
}
.site-search .box-container .box .content .search .options .option {
  margin: 5px 0;
  display: block;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  color: #000;
}
.site-search .box-container .box .content .search .options .option:hover {
  background-color: #edf2f9;
}
.card {
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
}
.card p {
  font-size: 14px;
  line-height: 24px;
}
.card ul,
.card ol {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 24px;
}
.card ul li,
.card ol li {
  margin-bottom: 20px;
}
.card .btn {
  width: 100%;
}
.card a.link {
  color: #2c7be5;
  font-weight: bold;
}
.message-card {
  text-align: center;
  padding: 150px 20px;
  background: #edf2f9;
}
.message-card h1 {
  font-size: 30px;
}
.message-card p {
  font-size: 18px;
}
.offers-list .box {
  background-color: #fff;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}
.offers-list .box .content {
  padding: 0 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.offers-list .box .content .link {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  color: transparent;
}
.offers-list .box .content .site {
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  height: 80px;
  width: 80px;
  border: 1px solid #c7c7c7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
.offers-list .box .content .details {
  padding: 20px 0;
}
.offers-list .box .content .details .description {
  font-size: 14px;
}
.offers-list .box .content .details .date {
  opacity: 0.6;
  font-size: 14px;
}
.offers-list .box .content .more {
  position: absolute;
  top: 50px;
  right: 17px;
}
.offers-list .box.box-dashboard .content .link {
  display: none;
}
.offers-list .box.box-dashboard .actions {
  margin-top: 10px;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-bottom: 20px;
}
.offers-list .box.box-dashboard .actions li {
  display: inline-block;
  margin: 0 10px;
  position: relative;
}
.offers-list .box.box-dashboard .actions li a {
  display: block;
  height: 30px;
  line-height: 30px;
  color: #2c7be5;
  background: #e2edfb;
  padding: 0 20px;
  font-size: 12px;
  border-radius: 3px;
}
.offers-list .box.box-dashboard .actions li.error a {
  color: #f00;
  background: #ffebeb;
}
.offers-list .box.box-dashboard .actions li.warning a {
  color: #ff9100;
  background: #fff6eb;
}
.offers-list .box.box-dashboard .actions li label {
  position: absolute;
  font-size: 12px;
  line-height: 16px;
  height: 16px;
  display: block;
  top: -20px;
  opacity: 0.6;
  cursor: pointer;
}
.offers-list .box.box-dashboard .actions li label input {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
@media only screen and (max-width: 900px) {
  .offers-list .box.box-dashboard .actions {
    height: auto;
  }
  .offers-list .box.box-dashboard .actions li {
    display: block;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 900px) {
  .offers-list .box .content .more {
    display: none;
  }
  .offers-list .box .content .link {
    right: 0;
  }
}
.offer-title{
  text-align: center;
  text-align: center;
  margin: 20px;
  color: #a5a5a5;
  font-size: 24px;
}
.offer-details {
  max-width: 700px;
  margin: 0 auto;
}
.offer-details .box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 120px 50px 30px;
  position: relative;
}
.offer-details .box .content .votes {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #e6e6e6;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  padding: 10px 20px;
}
.offer-details .box .content .votes .invite {
  display: block;
  margin-bottom: 10px;
}
.offer-details .box .content .votes .stars li {
  display: inline-block;
}
.offer-details .box .content .votes .stars li a {
  cursor: default;
  color: #ffc107;
  font-size: 24px;
}
.offer-details .box .content .votes .stars li a:before {
  content: attr(data-star);
}
.offer-details .box .content .votes .thanks {
  display: block;
  color: #4fbd5d;
}
.offer-details .box .content .logo {
  display: block;
  height: 90px;
  width: 90px;
  position: absolute;
  top: 10px;
  left: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}
.offer-details .box .content .date {
  font-size: 14px;
  opacity: 0.6;
}
.offer-details .box .content .description {
  margin: 20px 0 30px;
  line-height: 24px;
  font-size: 16px;
  overflow-wrap: break-word;
  word-wrap: break-word;

  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;

  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.member-dashboard {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
}
.member-dashboard tr td {
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}
.member-dashboard tr td .logo {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}
.member-dashboard tr td .offers {
  color: #2c7be5;
}
.member-dashboard tr td .actions li {
  display: inline-block;
  margin: 0 10px;
  font-size: 14px;
  font-weight: bold;
  color: #4fbd5d;
}
.member-dashboard tr td .actions li.error {
  color: #ff6666;
}
.member-dashboard tr td .actions li.info {
  color: #2c7be5;
}
.member-dashboard tr.head td {
  padding: 10px;
  font-weight: bold;
  opacity: 0.8;
  font-size: 18px;
}
.form {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
}
.form .title {
  font-size: 18px;
}
.form .fields {
  width: 100%;
  border-collapse: collapse;
}
.form .fields tr td {
  padding: 10px 5px;
  font-size: 14px;
}
.form .fields tr td:first-of-type {
  font-weight: bold;
}
.form .fields tr td:after {
  content: attr(data-comment);
  display: "block";
}
.form .fields tr input[type="text"],
.form .fields tr input[type="password"],
.form .fields tr select {
  background: #fff;
  border: 1px solid #808080;
  height: 40px;
  line-height: 40px;
  width: 100%;
  padding: 0 20px;
}
.form .fields tr input[type="submit"] {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  background-color: #2c7be5;
  border: 1px solid #2c7be5;
  border-radius: 3px;
  transition-duration: 0.3s;
  font-weight: bold;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.form .fields tr input[type="submit"]:hover {
  background-color: #1862c6;
}
.form .fields tr textarea {
  padding: 20px;
  width: 100%;
  max-width: 100%;
  min-height: 300px;
}
.form .fields tr.field-link {
  text-align: right;
}
.form .fields tr.field-link a {
  color: #2c7be5;
  font-weight: normal;
}
.form .fields tr.field-submit td {
  padding-top: 30px;
}
.form .fields tr.field-checkbox label {
  display: inline-block;
  height: 30px;
  width: 60px;
  border-radius: 30px;
  background-color: #edf2f9;
  cursor: pointer;
  position: relative;
  border: 1px solid #838383;
  overflow: hidden;
}
.form .fields tr.field-checkbox label input {
  position: absolute;
  display: none;
}
.form .fields tr.field-checkbox label input + span {
  position: absolute;
  display: block;
  height: 26px;
  width: 26px;
  border-radius: 26px;
  top: 1px;
  left: 1px;
  background-color: lightslategray;
  transition-duration: 0.3s;
}
.form .fields tr.field-checkbox label input:checked + span {
  background-color: #4fbd5d;
  left: 31px;
}
.form .fields tr.field-captcha td {
  position: relative;
}
.form .fields tr.field-captcha td img {
  position: absolute;
  top: 17px;
  right: 12px;
  border: 1px solid #666;
}
.form .fields tr.field-captcha td input {
  text-transform: uppercase;
}
.notifications {
  padding: 20px 0;
  width: 100%;
}
.notifications .notification {
  line-height: 40px;
  color: #2c7be5;
  background: #e2edfb;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 14px;
  box-shadow: 0px 3px 5px 1px rgba(44, 123, 229, 0.1);
  margin-bottom: 10px;
}
.notifications .notification.error {
  color: #f00;
  background: #ffebeb;
  box-shadow: 0px 3px 5px 1px rgba(255, 0, 0, 0.1);
}
.notifications .notification.warning {
  color: #ff9100;
  background: #fff6eb;
  box-shadow: 0px 3px 5px 1px rgba(255, 145, 0, 0.1);
}
.category-title {
  margin: 0 auto;
  color: #9B9B9B;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}
.categories-overlay {
  position: fixed;
  z-index: 1003;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.categories-overlay .box-container {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}
.categories-overlay .box-container .box {
  display: table-cell;
  vertical-align: middle;
}
.categories-overlay .box-container .box .content {
  background: #fff;
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 30px 30px;
}
.categories-overlay .box-container .box .content h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.categories-overlay .box-container .box .content .categories-list {
  display: flex;
  flex-wrap: wrap;
}
.categories-overlay .box-container .box .content .categories-list .category-item {
  display: block;
  text-align: left;
  width: 50%;
}
.categories-overlay .box-container .box .content .categories-list .category-item a:hover {
  color: #2c7be5;
}
body.home .section-2 {
  margin-top: 20px;
}
body.home .section-2 .last-offers-header {
  background-image: url(new.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  padding-left: 50px;
  color: #ffc107;
  margin-bottom: 30px;
  font-size: 30px;
}
@media only screen and (max-width: 900px) {
  body.home .section-2 .last-offers-header {
    font-size: 25px;
    background-size: auto 50px;
    background-position: center top;
    padding-left: 0px;
    padding-top: 50px;
    text-align: center;
  }
}
body.sitesPage .section-1 {
  padding: 50px 0 20px;
}
body.sitesPage .section-1 .nav-buttons {
  margin-top: 50px;
}
body.siteOffers .section-1 {
  margin: 50px auto;
}
body.siteOffers .section-2 {
  margin-top: 40px;
}
body.siteOffers .section-2 .last-offers-header {
  background-image: url(new.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  padding-left: 50px;
  color: #ffc107;
  margin-bottom: 30px;
}
@media only screen and (max-width: 900px) {
  body.siteOffers .section-2 .last-offers-header {
    font-size: 25px;
    background-size: auto 50px;
    background-position: center top;
    padding-left: 0px;
    padding-top: 50px;
    text-align: center;
  }
}
body.offer .section-1 {
  margin: 40px auto;
}
body.mentions-legales .section-1 {
  padding: 30px 0;
}
body.mentions-legales .section-1 h1 {
  color: #2c7be5;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Light.ttf') format('truetype');
}
html {
  min-height: 100vh;
  background-color: #2c7be5;
}
body {
  font-family: 'Poppins';
  padding: 0;
  margin: 0;
  color: #000;
  background: #edf2f9;
  font-size: 16px;
}
body * {
  font-family: 'Poppins';
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
ol {
  counter-reset: line;
}
ol li {
  margin: 5px 0;
}
ol li:before {
  counter-increment: line;
  display: inline;
  margin-right: 10px;
  content: counter(line);
  font-size: 14px;
  font-weight: bold;
}
h1 {
  font-size: 30px;
  margin-bottom: 20px;
}
h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
p {
  margin: 10px 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.container.center {
  text-align: center;
}
.content-with-sidebar {
  display: inline-block;
  width: 100%;
}
.content-with-sidebar .content-container {
  width: 67%;
  float: left;
}
.content-with-sidebar .sidebar-container {
  width: 30%;
  float: right;
}
@media only screen and (max-width: 900px) {
  .content-with-sidebar {
    display: block;
  }
  .content-with-sidebar .sidebar-container,
  .content-with-sidebar .content-container {
    float: none;
    width: 100%;
  }
  .content-with-sidebar .sidebar-container {
    margin-top: 50px;
  }
}
.header {
  background: #2c7be5;
  color: #fff;
  height: 90px;
  line-height: 90px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}
.header .nav li {
  cursor: pointer;
  display: inline;
  margin-left: 20px;
  font-size: 14px;
}
.header .nav li:hover {
  opacity: 1;
}
.header .site-name {
  display: inline-block;
}
.header .site-name .logo {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #fff;
  border-radius: 40px;
  vertical-align: middle;
  background-image: url(logo.png);
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}
.header .site-name .name span {
  color: #4fbd5d;
}
.header .site-name .name span:first-of-type {
  color: #fff;
}
@media only screen and (max-width: 900px) {
  .header {
    height: auto;
    max-height: 90px;
    transition-duration: 0.6s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  .header:after {
    content: "";
    display: block;
    height: 4px;
    width: 20px;
    border-radius: 8px;
    background: #fff;
    position: fixed;
    top: 32px;
    right: 30px;
    box-shadow: 0px 10px 0px 0px #fff, 0px 20px 0px 0px #fff;
    cursor: pointer;
    opacity: 0.6;
  }
  .header .nav {
    position: fixed;
    z-index: 1000;
    top: 90px;
    left: 40px;
    right: 0;
    bottom: 0;
    float: none;
    background: #2c7be5;
    transition-duration: 0.3s;
    transform: translateX(100%);
  }
  .header .nav li {
    height: 70px;
    line-height: 70px;
    display: block;
    text-align: center;
  }
  .header .nav.open {
    transform: translateX(0);
  }
  .header:hover {
    max-height: 400px;
  }
}
@media only screen and (max-width: 900px) {
  body {
    padding-top: 90px;
  }
}
.footer {
  background: #2c7be5;
  color: #fff;
  margin-top: 50px;
  padding: 30px 0 30px;
}
.footer .contact {
  margin-top: 20px;
}
.footer .rights {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.6;
}
.footer .rights a {
  text-decoration: underline;
}
.btn {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  background-color: #2c7be5;
  border: 1px solid #2c7be5;
  border-radius: 3px;
  transition-duration: 0.3s;
  font-weight: bold;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
.btn:hover {
  background-color: #1862c6;
}
.btn.big {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  font-size: 18px;
}
.btn.secondary {
  background-color: #4fbd5d;
  border: 1px solid #4fbd5d;
}
.btn.secondary:hover {
  background-color: #3b9e48;
}
.nav-buttons {
  text-align: center;
}
.nav-buttons li {
  display: inline-block;
  margin: 0 10px;
  height: 30px;
  line-height: 30px;
  background: #fff;
  color: #0061e2;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  font-size: 14px;
  border-radius: 30px;
}
.nav-buttons li:hover {
  background-color: #edf2f9;
}
.sites-links {
  text-align: center;
}
.sites-links .boxs {
  max-width: 800px;
  width: 100%;
  display: inline-block;
}
.sites-links .box {
  float: left;
  width: 25%;
  padding: 10px;
}
@media only screen and (max-width: 900px) {
  .sites-links .box {
    width: 50%;
  }
}
.sites-links .box .content {
  height: 180px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.sites-links .box .content .link {
  position: absolute;
  color: transparent;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.sites-links .box .content .logo {
  display: block;
  height: 120px;
  background-size: auto 70%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  transition-duration: 0.3s;
  line-height: 120px;
  font-size: 1px;
  color: transparent;
}
.sites-links .box .content .logo img {
  max-width: 70%;
  max-height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.sites-links .box .content .name {
  height: 60px;
  line-height: 60px;
}
.sites-links .box .content:hover {
  background-color: #edf2f9;
}
.sites-links .box .content:hover .logo {
  background-size: auto 90%;
}
.sites-links .box.small {
  width: 50%;
}
.sites-links .box.small .content {
  height: 120px;
}
.sites-links .box.small .content .name {
  display: none;
}
.site-details {
  max-width: 700px;
  margin: 0 auto;
}
.site-details .box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 50px 50px 30px;
  position: relative;
}
.site-details .box .content .logo {
  display: block;
  height: 90px;
  width: 90px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}
.site-details .box .content .name {
  font-size: 18px;
  margin-bottom: 30px;
}
.site-details .box .content .advantages {
  font-size: 14px;
  font-weight: bold;
}
.site-details .box .content .advantages li {
  margin-top: 20px;
}
@media only screen and (max-width: 900px) {
  .site-details .box .content {
    padding-top: 70px;
  }
  .site-details .box .content .logo {
    left: 50%;
    margin-left: -45px;
  }
  .site-details .box .content .name {
    text-align: center;
  }
}
.site-dashboard {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
}
.site-dashboard tr td {
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}
.site-dashboard tr td .logo {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}
.site-dashboard tr td .offers {
  color: #2c7be5;
}
.site-dashboard tr td .actions li {
  display: inline-block;
  margin: 0 10px;
  font-size: 14px;
  font-weight: bold;
  color: #4fbd5d;
}
.site-dashboard tr td .actions li.error {
  color: #ff6666;
}
.site-dashboard tr td .actions li.info {
  color: #2c7be5;
}
.site-dashboard tr.head td {
  padding: 10px;
  font-weight: bold;
  opacity: 0.8;
  font-size: 18px;
}
.sites-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.sites-overlay .box-container {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}
.sites-overlay .box-container .box {
  display: table-cell;
  vertical-align: middle;
}
.sites-overlay .box-container .box .content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
}
.sites-overlay .box-container .box .content h2 {
  font-size: 24px;
}
.sites-overlay .box-container .box .content select,
.sites-overlay .box-container .box .content input {
  background: #fff;
  border: 1px solid #808080;
  height: 40px;
  line-height: 40px;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
}
.sites-overlay .box-container .box .content .selected {
  margin-bottom: 10px;
  background-color: #edf2f9;
  position: relative;
}
.sites-overlay .box-container .box .content .selected-container {
  position: relative;
}

.sites-overlay .box-container .box .content .search {
  position: relative;
}
.sites-overlay .box-container .box .content .search .search-options {
  position: absolute;
  border: 1px solid #808080;
  background: #fff;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
}
.sites-overlay .box-container .box .content .search input {
  height: 40px;
  border: none;
  padding: 0 20px;
}
.sites-overlay .box-container .box .content .search input:focus {
  background-color: #e2edfb;
}
.sites-overlay .box-container .box .content .search .options {
  max-height: 180px;
  overflow-y: scroll;
  padding: 0 10px;
  background-color: #fff;
}
.sites-overlay .box-container .box .content .search .options .option {
  margin: 5px 0;
  display: block;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}
.sites-overlay .box-container .box .content .search .options .option:hover {
  background-color: #edf2f9;
}
.card {
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
}
.card p {
  font-size: 14px;
  line-height: 24px;
}
.card ul,
.card ol {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 24px;
}
.card ul li,
.card ol li {
  margin-bottom: 20px;
}
.card .btn {
  width: 100%;
}
.card a.link {
  color: #2c7be5;
  font-weight: bold;
}
.message-card {
  text-align: center;
  padding: 150px 20px;
  background: #edf2f9;
}
.message-card h1 {
  font-size: 30px;
}
.message-card p {
  font-size: 18px;
}
.offers-list .box {
  background-color: #fff;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}
.offers-list .box .content {
  padding: 0 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.offers-list .box .content .link {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  color: transparent;
}
.offers-list .box .content .site {
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  height: 80px;
  width: 80px;
  border: 1px solid #c7c7c7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
.offers-list .box .content .details {
  padding: 20px 0;
}
.offers-list .box .content .details .description {
  font-size: 14px;
}
.offers-list .box .content .details .date {
  opacity: 0.6;
  font-size: 14px;
}
.offers-list .box .content .more {
  position: absolute;
  top: 50px;
  right: 17px;
}
.offers-list .box.box-dashboard .content .link {
  display: none;
}
.offers-list .box.box-dashboard .actions {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-bottom: 20px;
}
.offers-list .box.box-dashboard .actions li {
  display: inline-block;
  margin: 0 10px;
}
.offers-list .box.box-dashboard .actions li a {
  display: block;
  height: 30px;
  line-height: 30px;
  color: #2c7be5;
  background: #e2edfb;
  padding: 0 20px;
  font-size: 12px;
  border-radius: 3px;
}
.offers-list .box.box-dashboard .actions li.error a {
  color: #f00;
  background: #ffebeb;
}
.offers-list .box.box-dashboard .actions li.warning a {
  color: #ff9100;
  background: #fff6eb;
}
@media only screen and (max-width: 900px) {
  .offers-list .box.box-dashboard .actions {
    height: auto;
  }
  .offers-list .box.box-dashboard .actions li {
    display: block;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 900px) {
  .offers-list .box .content {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 80px;
  }
  .offers-list .box .content .more {
    display: none;
  }
  .offers-list .box .content .link {
    right: 0;
  }
}
.offer-details {
  max-width: 700px;
  margin: 0 auto;
}
.offer-details .box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 120px 50px 30px;
  position: relative;
}
.offer-details .box .content .votes {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #e6e6e6;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  padding: 10px 20px;
}
.offer-details .box .content .votes .invite {
  display: block;
  margin-bottom: 10px;
}
.offer-details .box .content .votes .stars li {
  display: inline-block;
}
.offer-details .box .content .votes .stars li a {
  cursor: default;
  color: #ffc107;
  font-size: 24px;
}
.offer-details .box .content .votes .stars li a:before {
  content: attr(data-star);
}
.offer-details .box .content .votes .thanks {
  display: block;
  color: #4fbd5d;
}
.offer-details .box .content .logo {
  display: block;
  height: 90px;
  width: 90px;
  position: absolute;
  top: 10px;
  left: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90%;
}
.offer-details .box .content .date {
  font-size: 14px;
  opacity: 0.6;
}
.offer-details .box .content .description {
  margin: 20px 0 30px;
  line-height: 24px;
  font-size: 16px;
}
.member-dashboard {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
}
.member-dashboard tr td {
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}
.member-dashboard tr td .logo {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}
.member-dashboard tr td .offers {
  color: #2c7be5;
}
.member-dashboard tr td .actions li {
  display: inline-block;
  margin: 0 10px;
  font-size: 14px;
  font-weight: bold;
  color: #4fbd5d;
}
.member-dashboard tr td .actions li.error {
  color: #ff6666;
}
.member-dashboard tr td .actions li.info {
  color: #2c7be5;
}
.member-dashboard tr.head td {
  padding: 10px;
  font-weight: bold;
  opacity: 0.8;
  font-size: 18px;
}
.form {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
}
.form .title {
  font-size: 18px;
}
.form .fields {
  width: 100%;
  border-collapse: collapse;
}
.form .fields tr td {
  padding: 10px 5px;
  font-size: 14px;
}
.form .fields tr td:first-of-type {
  font-weight: bold;
}
.form .fields tr td:after {
  content: attr(data-comment);
  display: "block";
}
.form .fields tr input[type="text"],
.form .fields tr input[type="password"],
.form .fields tr select {
  background: #fff;
  border: 1px solid #808080;
  height: 40px;
  line-height: 40px;
  width: 100%;
  padding: 0 20px;
}
.form .fields tr input[type="submit"] {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  outline: none;
  background-color: #2c7be5;
  border: 1px solid #2c7be5;
  border-radius: 3px;
  transition-duration: 0.3s;
  font-weight: bold;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.form .fields tr input[type="submit"]:hover {
  background-color: #1862c6;
}
.form .fields tr textarea {
  padding: 20px;
  width: 100%;
  max-width: 100%;
  min-height: 300px;
}
.form .fields tr.field-link {
  text-align: right;
}
.form .fields tr.field-link a {
  color: #2c7be5;
  font-weight: normal;
}
.form .fields tr.field-submit td {
  padding-top: 30px;
}
.form .fields tr.field-checkbox label {
  display: inline-block;
  height: 30px;
  width: 60px;
  border-radius: 30px;
  background-color: #edf2f9;
  cursor: pointer;
  position: relative;
  border: 1px solid #838383;
  overflow: hidden;
}
.form .fields tr.field-checkbox label input {
  position: absolute;
  display: none;
}
.form .fields tr.field-checkbox label input + span {
  position: absolute;
  display: block;
  height: 26px;
  width: 26px;
  border-radius: 26px;
  top: 1px;
  left: 1px;
  background-color: lightslategray;
  transition-duration: 0.3s;
}
.form .fields tr.field-checkbox label input:checked + span {
  background-color: #4fbd5d;
  left: 31px;
}
.form .fields tr.field-captcha td {
  position: relative;
}
.form .fields tr.field-captcha td img {
  position: absolute;
  top: 17px;
  right: 12px;
  border: 1px solid #666;
}
.form .fields tr.field-captcha td input {
  text-transform: uppercase;
}
.notifications {
  padding: 20px 0;
  width: 100%;
}
.notifications .notification {
  line-height: 40px;
  color: #2c7be5;
  background: #e2edfb;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 14px;
  box-shadow: 0px 3px 5px 1px rgba(44, 123, 229, 0.1);
  margin-bottom: 10px;
  line-height: 40px;
  height: auto;
}
.notifications .notification.error {
  color: #f00;
  background: #ffebeb;
  box-shadow: 0px 3px 5px 1px rgba(255, 0, 0, 0.1);
}
.notifications .notification.warning {
  color: #ff9100;
  background: #fff6eb;
  box-shadow: 0px 3px 5px 1px rgba(255, 145, 0, 0.1);
}
.category-title {
  margin: 0 auto;
  color: #9B9B9B;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}
.categories-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.categories-overlay .box-container {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}
.categories-overlay .box-container .box {
  display: table-cell;
  vertical-align: middle;
}
.categories-overlay .box-container .box .content {
  background: #fff;
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 30px 30px;
}
.categories-overlay .box-container .box .content h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.categories-overlay .box-container .box .content .categories-list {
  display: flex;
  flex-wrap: wrap;
}
.categories-overlay .box-container .box .content .categories-list .category-item {
  display: block;
  text-align: left;
  width: 50%;
}
.categories-overlay .box-container .box .content .categories-list .category-item a:hover {
  color: #2c7be5;
}
body.home .section-1 {
  padding: 10px 0 50px;
}
body.home .section-1 .sites-links {
  margin: 20px;
}
body.home .section-2 {
  margin-top: 20px;
}
body.home .section-2 .last-offers-header {
  background-image: url(hot.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  padding-left: 50px;
  color: #ffc107;
  margin-bottom: 30px;
}
@media only screen and (max-width: 900px) {
  body.home .section-2 .last-offers-header {
    font-size: 25px;
    background-size: auto 50px;
    background-position: center top;
    padding-left: 0px;
    padding-top: 50px;
    text-align: center;
  }
}
body.sitesPage .section-1 {
  padding: 50px 0 20px;
}
body.sitesPage .section-1 .nav-buttons {
  margin-top: 50px;
}
body.siteOffers .section-1 {
  margin: 50px auto;
}
body.siteOffers .section-2 {
  margin-top: 40px;
}
body.siteOffers .section-2 .last-offers-header {
  background-image: url(hot.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  padding-left: 50px;
  color: #ffc107;
  margin-bottom: 30px;
}
@media only screen and (max-width: 900px) {
  body.siteOffers .section-2 .last-offers-header {
    font-size: 25px;
    background-size: auto 50px;
    background-position: center top;
    padding-left: 0px;
    padding-top: 50px;
    text-align: center;
  }
}
body.offer .section-1 {
  margin: 40px auto;
}
body.mentions-legales .section-1 {
  padding: 30px 0;
}
body.mentions-legales .section-1 h1 {
  color: #2c7be5;
}

body.user .headline{

}
body.user.baseline{

}
body.user .section-1{
  padding-top: 100px;
}
body.user .headline{
  text-transform: capitalize;
}
body.user .baseline{
  color: #b5b5b5;
  margin: 20px 0 50px;
}
body.user .last-offers-header{
  text-align: left;
  background-image: url(hot.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  padding-left: 50px;
  color: #ffc107;
  margin-bottom: 30px;
}
body.siteOffers .section-3{
  margin: 50px auto;
}
body.siteOffers .section-3 .headline{
  text-align: center;
}
body.siteOffers .nav-buttons{
  margin-top: 30px;
  margin-bottom: 30px;
}
.banner-section{
  padding: 50px 0 0px;
}
.banner-title{
  font-size: 45px;
  padding: 0;
  margin: 0;
}
.banner-subtitle{
  font-size: 18px;
  opacity: 0.8;
}
.banner-baseline{
  max-width: 600px;
  padding: 0 20px;
  margin: 30px auto;
  opacity: 0.8;
}

.banner-search{
   max-width: 600px;
  margin: 0 auto;
}
.banner-search input{
  width: 100%;
  height: 50px;
  line-break: 50px;
  border-radius: 5px;
  border: 1px solid #2c7be5;
  font-size: 18px;
  padding: 0 20px;
  text-align: center;
}

.banner-or{
  display: block;
  margin: 10px auto;
  color: #2c7be5;
  font-weight: bold;
  font-size: 20px;
  opacity: 0.4;
}

[data-site-select]{
  position: relative;
}
[data-site-select]  .options{
  position: absolute;
  background: #fff;
  max-height: 200px;
  right: 0; left: 0;
  border-radius: 5px;
  box-shadow: 0px 3px 5px 2px rgba(0,0,0,0.2);
  z-index: 100;
  overflow: hidden;
  display: none;
}
[data-site-select] .options .option{
  display: block;
  height: 40px;
  line-height: 40px;
  color: #000;
 padding: 0 10px;
 cursor: pointer;
}
[data-site-select] .options .option:hover{
  background: #aaceff;
}
.home-all-sites{
  margin-top: 20px;
}
.banner-search {
  background-color: #fff;
  background-image: url("search.png");
  background-size: auto 40%;
  background-position: left 15px center;
  background-repeat: no-repeat;
}
.banner-search input{
  background: transparent;
}
.featured-title{
  background-image: url("diamond.png");
}
.featured-title{
  background-size: auto 70%;
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  padding: 0 35px;
  font-size: 22px;
  color: #2c7be5;
}
.category-description{
  padding: 20px 0;
  text-align: left;
}
.alphas{
  margin-bottom: 20px;
}
.alphas li{
  display: inline-block;
  opacity: 0.8;
  margin: 0px 2px;
  font-size: 13px;
  text-transform: uppercase;
}
.alphas li:hover{
  opacity: 1;
  font-weight: bold;
}
@media only screen and (max-width: 900px) {
  .site-search .box-container{
    padding: 24px 10px 0;
  }
  .banner-title{
    font-size: 28px;
  }
  .banner-baseline {
    font-size: 14px;
  }
  .form{
    padding: 2px;
  }
  .site-details .box{
    padding: 50px 20px 30px;
    text-align: justify;
  }
  .offer-details .box {
    padding: 120px 20px 30px;
    text-align: justify;
  }
  .form{
    border-spacing:0;
    width:100%;
  }
  .form td{
      position:relative;
      float:left;
      clear:both;
      width:100% !important;
      text-align:left  
  }
  .form .field-file input{
    width: 200px;
  }
  .container{
    width: 95%;
  }
  .site-search .box-container .box .content .selected{
    padding: 0 0 0 4px;
    font-size: 10px;
  }
  body.user .last-offers-header{
    font-size: 16px;
    background-size: auto 60%;
  }
  body.user .section-1{
    padding-top: 40px;
  }
  .offers-list .box .content .site{
    left: 50%;
    margin-left: -40px;
  }
  .offer-details .box .content .logo{
    left: 10px;
  }
  .offer-details .box .content .votes{
    border: none;
    padding: 10px 0;
  }
}
.user .headline .username{
  display: block;
}
.user .headline .send-message{
  display: inline-block;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  color: #fff;
  background: #4fbd5d;
  padding: 0 20px;
  border-radius: 6px;
}
.header .nav li{
  position: relative;
}
.header .nav li .nav-notification{
  color: #fff;
  background-color: #ff6666;
  display: inline-block;
  position: absolute;
  height: 20px;
  line-height: 20px;
  width: 20px;
  text-align: center;
  top: -10px;
  right: -8px;
  border-radius: 20px;
}

.no-messages {
  text-align: center;
  margin: 60px 0 80px;
  font-weight: bold;
  opacity: 0.6;
  font-size: 16px;
}
.messages-conversation .new-message form {
  background-color: #fff;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.messages-conversation .new-message form textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 70px;
  max-height: 200px;
  padding: 20px 120px 20px 20px;
  border: 1px solid #cdcdcd;
  border-radius: 10px;
}
.messages-conversation .new-message form .btn {
  position: absolute;
  top: 40px;
  right: 40px;
}
.messages-conversation .messages {
  padding: 20px 0;
  margin-bottom: 20px;
}
.messages-conversation .messages .message {
  display: inline-block;
  width: 100%;
}
.messages-conversation .messages .message .message-details {
  display: inline-block;
  background-color: #fff;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  width: 90%;
}
.messages-conversation .messages .message .sender {
  font-weight: bold;
  display: none;
}
.messages-conversation .messages .message.head .message-details {
  margin-top: 10px;
}
.messages-conversation .messages .message.head .sender {
  display: block;
}
.messages-conversation .messages .message.me {
  text-align: right;
}
.messages-conversation .messages .message.me .message-details {
  background: #e7e7e7;
  background: #3b9e48;
  color: #fff;
}
.messages-conversation .messages .message.me .message-details .content {
  opacity: 1;
}
.messages-conversation .messages .message.me .date {
  right: auto;
}
.messages-conversation .messages .message .content {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  opacity: 0.8;
}
.messages-conversation .messages .message .date {
  text-align: right;
  margin-top: -8px;
  font-size: 12px;
  opacity: 0.4;
  font-weight: bold;
  height: 16px;
}
@media only screen and (max-width: 900px) {
  .messages-conversation .messages .message .date {
    position: relative;
  }
}
.messages-list .conversations {
  margin: 15px 0;
  overflow: hidden;
}
.messages-list .conversations h2 {
  font-size: 30px;
  margin: 20px 0;
  opacity: 0.6;
}
.messages-list .conversations .conversation {
  background-color: #fff;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 5px 20px 5px 40px;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}
.messages-list .conversations .conversation:before {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.messages-list .conversations .conversation.unseen:before {
  background-color: #2c7be5;
}
.messages-list .conversations .conversation.unseen .user,
.messages-list .conversations .conversation.unseen .content {
  font-weight: bold;
}
.messages-list .conversations .conversation .content {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  opacity: 0.8;
}
.messages-list .conversations .conversation .date {
  text-align: right;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 10px;
  font-size: 12px;
  opacity: 0.4;
  font-weight: bold;
  height: 16px;
}
.messages-list .conversations .conversation .link {
  color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
}
.messages-list .conversations .conversation .link:hover {
  background: rgba(0, 0, 0, 0.1);
}
.user-profile-details {
  text-align: center;
  margin: 20px 0;
  background: #ededed;
  padding: 10px;
  border-radius: 10px;
}
.user-profile-details a {
  display: block;
  margin: 10px 0 20px;
}
.user-profile-details b {
  display: block;
}
.user-profile-details input {
  select: pointer;
}
.sidebar-menu {
  margin: 20px 0;
  background: #ededed;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}
.sidebar-menu li {
  margin-bottom: 5px !important;
}
.sidebar-menu li:hover {
  font-weight: bold;
}
.header .nav li.ico-item {
  margin: 0;
  padding: 5px 10px;
  border-radius: 3px;
}
.header .nav li.ico-item:hover {
  background: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 900px) {
  .header .nav li.ico-item:hover {
    background: transparent;
  }
}
.header .nav li.ico-item.label span {
  display: none;
}
@media only screen and (max-width: 900px) {
  .header .nav li.ico-item.label {
    display: none;
  }
  .header .nav li.ico-item.label span {
    display: inline;
  }
  .header .nav li.ico-item.label.on-mobile {
    display: block;
  }
}
.header .nav li.nav-profile-container {
  position: relative;
  padding-left: 20px;
  height: 30px;
  vertical-align: middle;
  line-height: 30px;
}
.header .nav li.nav-profile-container:before {
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  width: 10px;
  border-radius: 8px;
  background: #fff;
  top: 8px;
  left: 4px;
  box-shadow: 0px 5px 0px 0px #fff, 0px 10px 0px 0px #fff;
  cursor: pointer;
  opacity: 0.9;
}
@media only screen and (max-width: 900px) {
  .header .nav li.nav-profile-container:hover {
    background: transparent;
  }
  .header .nav li.nav-profile-container:before {
    display: none;
  }
  .header .nav li.nav-profile-container > i,
  .header .nav li.nav-profile-container > span {
    display: none;
  }
}
.header .nav li.nav-profile-container:hover .nav-profile {
  display: block;
}
.header .nav li.nav-profile-container .nav-profile {
  display: none;
  top: 30px;
  right: -7px;
  position: absolute;
  background: #fff;
  color: #000;
  line-height: 18px;
  padding: 0;
  border-radius: 3px;
  box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.1);
  z-index: 999999;
}
.header .nav li.nav-profile-container .nav-profile li {
  margin: 0;
  display: block;
  white-space: nowrap;
  font-size: 12px;
  transition-duration: 0.3s;
}
.header .nav li.nav-profile-container .nav-profile li a {
  display: block;
  padding: 5px 15px;
}
.header .nav li.nav-profile-container .nav-profile li i {
  margin-right: 10px;
}
.header .nav li.nav-profile-container .nav-profile li:hover {
  background: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 900px) {
  .header .nav li.nav-profile-container .nav-profile li:hover {
    background: transparent;
  }
}
.header .nav li.nav-profile-container .nav-profile .nav-seperator {
  display: block;
  height: 1px;
  background: #C7C7C7;
  opacity: 0.6;
  width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width: 900px) {
  .header .nav li.nav-profile-container .nav-profile {
    display: block;
    left: 5px;
    right: 5px;
    background: transparent;
    box-shadow: none	;
    color: #fff;
    top: 50px;
  }
  .header .nav li.nav-profile-container .nav-profile li {
    height: 30px;
    line-height: 20px;
  }
}
body.memberOffers .section-1 {
  text-align: center;
  margin: 20px 0;
  opacity: 0.7;
}
.page.memberOffers .empty-sites-card {
  text-align: center;
  margin-top: 30px;
}
.page.memberOffers .empty-sites-card .sites-links .boxs {
  max-width: 5000px;
}
.page.account-settings .form {
  box-shadow: none;
  background: transparent;
}
.page.account-settings .container {
  margin: 20px auto;
}
.page.account-settings .container .card.informations {
  font-size: 14px;
}
.page.account-settings .container .card.informations table td {
  padding-left: 30px;
}
.page.account-settings .container .card.informations table td:nth-child(2) {
  font-weight: bold;
}
.page.account-settings .container .card.password form {
  display: none;
}
.page.account-settings .container .card.delete p {
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
}
.page.account-settings .container .card.delete p a {
  margin-top: 10px;
  display: block;
  color: #DD0000;
}
@media only screen and (max-width: 900px) {
  .hide-on-mobile {
    display: none !important;
  }
}
.block-on-mobile {
  display: none !important;
}
@media only screen and (max-width: 900px) {
  .block-on-mobile {
    display: block !important;
  }
}
.header .nav li .nav-notification {
  font-style: normal;
  background-color: #fb2929;
  right: -15px;
  font-size: 12px;
}
.header .nav .nav-profile li .nav-notification {
  right: 10px;
  top: 3px;
}
.kl-legal_name:before {
    content: 'Kalqui SAS';
}
.kl-legal_id:before {
    content: '792 792 343';
}
.kl-legal_address::before {
    content: "104 rue Reaumur 75002 Paris";
}
.kl-legal_email:before {
    content: 'contact@parrainage.co';
}
.kl-legal_director:before {
    content: 'M. Guillaume Autret et M. Anass Soufiane';
}

.site-advantages {
  background-color: #fff;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 20px 20px 20px;
  text-align: center;
}
.site-advantages h1 {
  font-size: 22px;
  opacity: 0.8;
  margin: 20px 0;
}
.site-advantages .desc {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.site-advantages .desc .desc-half {
  width: 49%;
  background: #E9E9E9;
  margin: 0px 0 30px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #A4A4A4;
}
.site-advantages .desc .desc-half h2 {
  font-size: 16px;
}
.site-details {
  max-width: 800px;
}
.user-headline .banner {
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #fff;
}
.user-headline .profile-editor {
  display: block;
  height: 26px;
  width: 26px;
  background-color: #cccccc;
  background-image: url(pencil.png);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  border-radius: 26px;
  position: absolute;
  bottom: -13px;
  left: 4px;
  cursor: pointer;
  opacity: 0.8;
}
.user-headline .profile-editor:hover {
  opacity: 1;
}
.user-headline .user-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  margin-top: -20px;
}
.user-headline .user-container .user-identity {
  flex-grow: 2;
  padding-left: 100px;
  padding-top: 50px;
  position: relative;
}
.user-headline .user-container .user-identity .avatar {
  height: 80px;
  width: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  border: 4px solid #fff;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
}
.user-headline .user-container .user-identity .username {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: light;
}
.user-headline .user-container .user-identity .presentation {
  position: relative;
  font-size: 14px;
  opacity: 0.8;
}
.user-headline .user-container .user-identity .presentation .profile-editor {
  bottom: auto;
  left: auto;
  top: 0px;
  right: 10px;
}
.user-headline .user-container .user-metas {
  padding-top: 60px;
  text-align: center;
}
.user-headline .user-container .user-metas .send-message {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  color: #fff;
  background: #4fbd5d;
  padding: 0 20px;
  border-radius: 6px;
}
.user-headline .user-container .user-metas .user-stats {
  margin-top: 20px;
  text-align: center;
  opacity: 0.5;
}
.user-headline .user-container .user-metas .user-stats li {
  font-size: 14px;
  font-weight: bold;
}
.user-headline .user-container .user-metas .user-stats li .stars {
  display: inline-block;
}
.user-headline .user-container .user-metas .user-stats li.small {
  font-size: 12px;
  font-weight: normal;
  opacity: 0.6;
}
@media only screen and (max-width: 900px) {
  .user-headline .user-container {
    display: block;
  }
  .user-headline .user-container .user-identity {
    margin-top: -40px;
    padding: 0px;
    padding-top: 90px;
    text-align: center;
  }
  .user-headline .user-container .user-identity .avatar {
    left: 50%;
    margin-left: -40px;
  }
  .user-headline .user-container .user-metas {
    padding-top: 20px;
  }
}
.user-notifications {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.user-update {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: table;
  height: 100%;
  width: 100%;
  display: none;
  z-index: 1000000;
}
.user-update .user-update-container {
  display: table-cell;
  vertical-align: middle;
}
.user-update .user-update-container .form {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}
.user-update .user-update-container .form textarea {
  max-height: 100px;
  min-height: 100px;
}
.field-close td {
  position: relative;
  height: 20px;
}
.field-close td span {
  border: none;
  display: inline-block;
  height: 40px;
  width: 40px;
  font-size: 20px;
  position: absolute;
  top: -20px;
  right: -20px;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
}
.field-close td span:hover {
  opacity: 1;
}
.stars li {
  display: inline-block;
}
.stars li a {
  cursor: default;
  color: #ffc107;
  font-size: 24px;
}
.stars li a:before {
  content: attr(data-star);
}
.offers-list .box .content {
  padding: 0 230px 0 120px;
}
@media only screen and (max-width: 900px) {
  .offers-list .box .content {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 80px;
  }
}
.offers-list .box .content .details .description {
  min-height: 44px;
}
.offers-list .box .content .offer-member-identity {
  display: block;
  text-align: center;
  position: absolute;
  top: 32px;
  right: 160px;
}
.offers-list .box .content .offer-member-avatar {
  height: 40px;
  width: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  position: relative;
}
.offers-list .box .content .offer-member-avatar a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: transparent;
  font-size: 0;
}
.offers-list .box .content .offer-member-rating {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
}
.offers-list .box .content .offer-member-rating .rating {
  height: 12px;
  line-height: 12px;
}
.offers-list .box .content .offer-member-rating .offer-member-name {
  display: block;
  font-size: 10px;
  margin: 4px 0;
}
@media only screen and (max-width: 900px) {
  .offers-list .box .content .offer-member-identity {
    top: 10px;
    right: 20px;
  }
}
.rating {
  unicode-bidi: bidi-override;
}
.rating > span {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 10px;
  vertical-align: middle;
  line-height: 10px;
  color: #ffd804;
}
.rating > span.selected:before {
  content: "\2605";
  position: absolute;
}
body.user .section-1 {
  padding: 40px;
}
@media only screen and (max-width: 900px) {
  body.user .section-1 {
    padding: 20px 0;
  }
}
body.user .sites-links .boxs {
  max-width: none;
}
#update-profile-form {
  padding: 50px 30px 30px;
  background-color: #fff;
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
  position: relative;
}
#update-profile-form .close-btn {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.8;
}
#update-profile-form textarea {
  display: block;
  width: 100%;
  padding: 20px;
  font-size: 15px;
  min-height: 100px;
  max-height: 100px;
  margin-bottom: 10px;
  font-family: 'Poppins';
}
#update-profile-form input[type='file'] {
  display: block;
  margin-bottom: 10px;
  font-family: 'Poppins';
}
@media only screen and (max-width: 900px) {
  #update-profile-form textarea {
    padding: 10px;
    font-size: 13px;
    min-height: 200px;
  }
  #update-profile-form tr {
    display: block;
  }
  #update-profile-form td {
    display: block;
    padding: 0;
  }
}
#update-profile-form .fields tr.field-submit td {
  padding-top: 10px;
  text-align: center;
}
.stars li {
  cursor: pointer;
}
.messages-list .conversations .conversation .date {
  position: relative;
  padding-left: 10px;
}

/* comment ca marche */
.how-it-works h2 {
    text-align: center;
    margin-bottom: 20px;
}

.container .row {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
	flex-wrap: wrap;
}

.container .row .col {
    flex-basis: 48%; /* Ajustez selon la marge entre les colonnes */
    text-align: justify;
}

.how-it-works h3 {
    margin-bottom: 10px;
	text-align:center;
}

/* Media Query pour les ecrans de moins de 768px */
@media (max-width: 768px) {
    .container .row .col {
        flex-basis: 100%; /* Les colonnes prennent toute la largeur disponible */
        margin-bottom: 20px; /* Ajoutez un espace entre les colonnes quand elles sont l'une au-dessus de l'autre */
    }
}

/* avis membre (version grid + même largeur que le contenu) */
.user-reviews {
  padding: 40px 0;
  text-align: center;

  /* Contraindre à la même largeur que .container */
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.user-reviews h2 {
  color: #333;
  margin-bottom: 30px;
}

/* Base: 1 par ligne sur mobile */
.user-reviews .reviews-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Par défaut: 2 par ligne sur >= 900px */
@media (min-width: 900px) {
  .user-reviews .reviews-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Option: tout sur une seule ligne (4 colonnes) sur desktop si tu ajoutes .one-line à <section> */
@media (min-width: 900px) {
  .user-reviews.one-line .reviews-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.review {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  text-align: left; /* meilleure lisibilité */
}

.review-text {
  font-style: italic;
  color: #555;
}

.review-author {
  margin-top: 16px;
  font-weight: bold;
  color: #333;
  text-align: right;
}

/* Mobile: reste sur 1 colonne */
@media (max-width: 768px) {
  .user-reviews .reviews-container {
    grid-template-columns: 1fr;
  }
}

/* Appel à l’action sous les cartes : même largeur + centrée */
.user-reviews .call-to-action {
  margin-top: 20px;
  color: #333;
}


/* new footer */
footer {
    background-color: #2c7be5; /* Ou la couleur de fond actuelle de votre footer */
    color: white; /* Couleur du texte par défaut */
    padding: 40px 0; /* Doublez la hauteur du padding pour un footer plus grand */
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Centre le contenu du footer */
}

.footer-logo {
    font-size: 2em; /* Ajustez la taille de la police selon votre design actuel */
    margin-bottom: 20px; /* Espace entre le logo et les liens */
    display: block; /* Assure que le logo prenne une nouvelle ligne */
}

.co-color {
    color: #4fbd5d; /* La couleur verte spécifique pour '.co' */
}

.footer-links {
    margin-bottom: 20px; /* Espace entre les liens et le texte des droits */
    display: flex;
    justify-content: center; /* Centre les liens horizontalement */
    gap: 30px; /* Espace entre les liens pour plus de lisibilité */
}

.footer-links a {
    color: white; /* La couleur des liens */
    text-decoration: none; /* Aucun soulignement */
    padding: 0 10px; /* Un peu d'espace horizontal pour une meilleure lisibilité */
}

.footer-rights {
    font-size: 1em; /* Maintient la taille de la police identique au reste du footer */
    opacity: 0.6; /* Rendre le texte un peu transparent */
    margin-top: 20px; /* Espace entre le texte des droits et les liens au-dessus */
}

/* Responsive design pour les petits écrans */
@media (max-width: 600px) {
    .footer-links, .footer-rights {
        display: block; /* Empile les éléments verticalement sur les petits écrans */
        margin: 10px 0; /* Ajustez l'espacement vertical */
    }
    .footer-links {
        gap: 20px; /* Réduire l'écart entre les liens sur les petits écrans */
    }
}
/* new footer */

.content h3 {
    font-size: 23px;
}