@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: 760px) {
  .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 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: 15px;
  }
  .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: 760px) {
  .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.x-small {
  width: 25%;
}
.sites-links .box.small .content {
  height: 120px;
}
.sites-links .box.x-small .content {
  height: 60px;
}
.sites-links .box.x-small .content .logo{
  height: 60px;
  line-height: 60px;
}
.sites-links .box.small .content .name,.sites-links .box.x-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;
}
.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-dashboard tr.head td[order]{
  cursor: pointer;
}
#sites-table tbody{
  opacity: 0.2;
}
#sites-table.ready tbody{
  opacity: 1;
}
.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 .selected-container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #edf2f9;
  opacity: 0;
}
.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 .messages {
  text-align: center;
  font-size: 12px;
  color: #f00;
  display: none;
  padding: 10px 20px;
}
.offers-list .box.box-dashboard.show-messages .messages{
  display: block;
}
.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.show-messages .actions{
  margin-bottom: 0;
}
.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: 760px) {
  .offers-list .box .content {
    padding-right: 10px;
  }
  .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 {
  height: 40px;
  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.login .header,
body.register .header {
  margin-bottom: 50px;
}
body.login .section-1,
body.register .section-1 {
  max-width: 500px;
  margin: 0px auto 50px;
}
body.login .section-2,
body.register .section-2 {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
body.memberOffers .header {
  margin-bottom: 50px;
}
body.memberOffers .section-1 {
  margin: 20px auto 50px;
}
body.newOffer .section-1 {
  margin: 50px 0;
}
body.adminSites .header {
  margin-bottom: 50px;
}
body.adminSites .section-1 {
  margin: 20px auto 50px;
}
body.adminSites .section-2 {
  margin-bottom: 100px;
}
body.adminMembers {
  background: #2c7be5;
}
body.adminMembers .section-1 {
  padding: 50px 0;
  background: #edf2f9;
}
body.newSite .section-1 {
  padding: 50px 0;
}
body.newSite .section-1 .form .fields tr td:first-of-type {
  width: 20%;
}
body.newSite .section-1 .form .fields tr td textarea {
  min-height: 150px;
}
body.forgot {
  background-color: #2c7be5;
}
body.forgot .page-container {
  background: #edf2f9;
  padding: 100px 0;
}
body.forgot .section-1 {
  max-width: 500px;
  margin: 0 auto;
}
body.message {
  background: #2c7be5;
}


.admin-lists ul{
  padding: 20px;
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
  margin-bottom: 20px;
}
.admin-lists ul li{
  display: inline-block;
  margin-right: 20px;
}
.admin-lists ul li a{
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
}
.admin-lists ul li a:hover{
  color:#2c7be5;
}

.logins-list ul{
    
}

.logins-list ul li {
    width: 70%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    position: relative;
    text-align: right;
}

.logins-list ul li strong{
    float: left;
    position: absolute;
    left: 0;
}