
html {
  font-family: 'Roboto', sans-serif;
  background: #bfc0c7;
  height: 100%:
}

body {
  background: #bfc0c7;
  margin: 0;
  overflow-x: hidden;
  width: 100vw;
  height: 100%:

}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primnav li:hover, .primnav expand:hover {
  background-color: #333333;
}

.primnav {
  position: fixed;
  height: 58px;
  width: 100vw;
  font-size: .8em;
  text-transform: uppercase;
  background-color: #333333;
  display: flex;
  flex-direction: column;
  transition: height 246ms .5s ease;
  padding-top: 58px;
  overflow-x: hidden;
  overflow-y: hidden;
  box-sizing: border-box;
  z-index: 1;
}
@media (min-width: 650px) {
  .primnav {
    height: 100vh;
    width: 58px;
    transition: width 246ms .5s ease;
  }
}
.primnav > ul {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.primnav li {
  font-weight: 400;
  position: relative;
}
.primnav li .tag {
  background-color: #333333;
  color: #e6e6e6;
  padding: 0 .5em;
  border-radius: 2em;
  margin-left: auto;
  margin-right: .75em;
}
.primnav li a {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: white;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.primnav .icon {
  height: 20px;
  flex-shrink: 0;
  width: 20px;
  padding: 19px;
  margin-right: 5px;
  padding-bottom: 15px;
  color: #e6e6e6;
  color: rgba(255, 255, 255, 0.9);
}

.secnav {
  margin-left: 63px;
  border-left: 1px solid black;
  border-left-color: #333333;
  overflow: hidden;
}
.secnav li {
  color: #e6e6e6;
  color: rgba(255, 255, 255, 0.9);
  max-height: 100px;
  transition: max-height .1s;
}
@media (min-width: 650px) {
  .secnav li {
    max-height: 0px;
    transition: max-height .5s .5s;
  }
}
.secnav li a {
  text-transform: initial;
  display: block;
  color: inherit;
  padding: .75em 10px;
}

user {
  padding: 5px;
  padding-bottom: 3px;
  flex-shrink: 0;
  position: fixed;
  font-weight: 400;
  right: 0;
  color: white;
  color: rgba(255, 255, 255, 0.9);
  z-index: 99999;
}
user > section {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
user > section > section {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
user img {
  height: 51px;
  width: 48px;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  margin-left: 10px;
  min-height: 51px;
  min-width: 48px;
  align-items: flex-end;
}
user name {
  font-weight: 400;
}
user actions {
  padding: .1em 0;
  font-size: .8em;
  display: flex;
  justify-content: flex-end;
}
user actions a {
  padding: 0 .5em;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
user actions a:last-child {
  padding-right: 0;
}

content {
  font-family: 'Pacifico', cursive;
  color: rgba(255, 255, 255, 0.9);
  font-size: 8vw;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  background-color: #bfc0c7;
  height: 100%;
  padding-top: 58px;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 650px) {
  content {
    padding-left: 58px;
    padding-top: 0;
  }
}

.features {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
.features li {
  width: 100%;
  text-align: center;
  padding: .25em;
}



::-webkit-scrollbar-track {
    background-color:#333333
}

::-webkit-scrollbar {
  padding:3px;
    background-color:#bfc0c7;
}

::-webkit-scrollbar-thumb {
  margin:3px;
  background: #bfc0c7;
  border-radius: 10px;
}

.scrollbar {
  padding:3px;
  background-color: #333333;
  scrollbar-base-color: #333333;
  scrollbar-3dlight-color: #333333;
  scrollbar-highlight-color: #333333;
  scrollbar-track-color: #333333;
  scrollbar-arrow-color: #bfc0c7;
  scrollbar-shadow-color: #333333;
  scrollbar-dark-shadow-color: #333333;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.icon {
  display: inline-block;
  width: 5vw;
  height: 4vw;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/** hamburger */
input.hamburger {
  display: none;
}
input.hamburger:checked ~ nav.primnav {
  height: 100vh;
}
@media (min-width: 650px) {
  input.hamburger:checked ~ nav.primnav {
    width: 275px;
  }
}
@media (min-width: 650px) {
  input.hamburger:checked ~ nav.primnav .secnav > li {
    max-height: 100px;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(1) {
    transition: max-height 0.5s 0.67s ease-in;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(2) {
    transition: max-height 0.5s 0.69s ease-in;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(3) {
    transition: max-height 0.5s 0.71s ease-in;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(4) {
    transition: max-height 0.5s 0.73s ease-in;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(5) {
    transition: max-height 0.5s 0.75s ease-in;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(6) {
    transition: max-height 0.5s 0.77s ease-in;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(7) {
    transition: max-height 0.5s 0.79s ease-in;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(8) {
    transition: max-height 0.5s 0.81s ease-in;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(9) {
    transition: max-height 0.5s 0.83s ease-in;
  }
  input.hamburger:checked ~ nav.primnav .secnav > li:nth-child(10) {
    transition: max-height 0.5s 0.85s ease-in;
  }
}
input.hamburger:checked ~ label > i {
  background-color: transparent;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input.hamburger:checked ~ label > i:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
input.hamburger:checked ~ label > i:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
input.hamburger:checked ~ label close {
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
}
input.hamburger:checked ~ label open {
  color: rgba(0, 0, 0, 0);
  width: 0;
}

label.hamburger {
  z-index: 9999;
  position: relative;
  display: block;
  height: 24px;
  width: 24px;
}
label.hamburger:hover {
  cursor: pointer;
}
label.hamburger text close,
label.hamburger text open {
  text-transform: uppercase;
  align-text: center;
  position: absolute;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  text-align: center;
  overflow: hidden;
  transition: width .25s .35s, color .45s .35s;
  font-size: 6px;
}
label.hamburger text close {
  color: rgba(255, 255, 255, 0.8);
  right: 0;
  width: 0;
}
label.hamburger text open {
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
}
label.hamburger > i {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  pointer-events: auto;
  transition-duration: .35s;
  transition-delay: .35s;
}
label.hamburger > i:before, label.hamburger > i:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
label.hamburger > i:before {
  -webkit-transform: translate(-50%, -7px);
          transform: translate(-50%, -7px);
}
label.hamburger > i:after {
  -webkit-transform: translate(-50%, 7px);
          transform: translate(-50%, 7px);
}

label.hamburger {
  position: fixed;
  top: 14px;
  left: 17px;
}

.tabs {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  position: fixed;
  top: 58px;
  left: 0;
  background-color: #333333;
  border-bottom: 1px solid #bfc0c7;
  width: 100vw;
  box-sizing: border-box;
}
@media (min-width: 650px) {
  .tabs {
    padding-left: calc(58px + .5rem);
    top: calc(58px - 3em);
    background-color: #bfc0c7;
    border: 0;
  }
}
.tabs > ul {
  display: flex;
  justify-content: space-around;
  overflow-x: auto;
  flex-wrap: wrap;
}
@media (min-width: 650px) {
  .tabs > ul {
    justify-content: flex-start;
  }
}
.tabs .tab {
  font-weight: 300;
  font-size: .7em;
  padding: 1em .75em;
  white-space: nowrap;
  flex-shrink: 0;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.tabs .tab:hover {
  background-color: #bfc0c7;
  cursor: pointer;
}

.mainblock {
  margin:10px;
  padding:10px;
  font-family: Verdana;
  font-size: 12px;

}

.topheader {
  width:98%;
  margin:0px;
  padding:4px;
  background-color: #333333;
  font-family: Verdana;
  font-size: 12px;
  border-radius: 0px 0px 10px 0px;
}

.topsubheader {
  font-family: Verdana;
  font-size: 12px;
  font-style: italic;
}

.contentblock {
  margin:10px;
  padding:10px;
  font-family: Verdana;
  font-size: 12px;

}

.antstyle2 {
  width:99%;
}

.dating {
  width:33%;
  padding:5px;
  float:left;
  box-sizing: border-box;
}

.topheaderinlinedating {
  width:100%;
  margin-top:10px;
  margin-left:10px;
  padding:4px;
  background-color: #595959;
  font-family: Verdana;
  font-size: 12px;
  border-radius: 5px 5px 5px 5px;
  box-sizing: border-box;
}

.contentblockinlinedating {
  width:98%;
  margin:0px;
  background-color: #f2f2f2;
  font-color: #000000;
  color: #000000;
  margin-left:15px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding:10px;
  border-style:solid;
  border-color: #595959;
  border-top-width: 0px;
  border-right-width: 2px;
  border-left-width: 2px;
  border-bottom-width: 2px;
  font-family: Verdana;
  font-size: 12px;
  box-sizing: border-box;
}



.topheaderinline {
  width:97%;
  margin-top:10px;
  margin-left:10px;
  padding:4px;
  background-color: #595959;
  font-family: Verdana;
  font-size: 12px;
  border-radius: 5px 5px 5px 5px;
  box-sizing: border-box;
}

.contentblockinline {
  width:96%;
  margin:0px;
  background-color: #f2f2f2;
  font-color: #000000;
  color: #000000;
  margin-left:15px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding:10px;
  border-style:solid;
  border-color: #595959;
  border-top-width: 0px;
  border-right-width: 2px;
  border-left-width: 2px;
  border-bottom-width: 2px;
  font-family: Verdana;
  font-size: 12px;
  box-sizing: border-box;
}

.contentblockinline2 {
  width:94%;
  margin:0px;
  background-color: #D3D3D3;
  font-color: #000000;
  color: #000000;
  margin-left:15px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding:10px;
  border-style:solid;
  border-color: #595959;
  border-top-width: 0px;
  border-right-width: 2px;
  border-left-width: 2px;
  border-bottom-width: 2px;
  font-family: Verdana;
  font-size: 12px;
  box-sizing: border-box;
}

.topinfo {
  font-family: Verdana;
  width:50%;
  font-size: 12px;
  margin:3px;
  padding:3px;
}

.topextraa {
  float:right;
  font-family: Verdana;
  font-size: 12px;
  margin:0px;
  padding:0px;
}

.topback {
  width:15px;
  float:right;
  font-family: Verdana;
  font-size: 10px;
  margin:0px;
  padding:2px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 4px;
}

.declock {
  margin:0px;
  padding:0px;
  font-family: Verdana;
  font-size: 10px;
}

.counter {
  float:right;
  font-family: Verdana;
  font-size: 10px;
  margin:0px;
  padding:0px;
}

.iconss {
  float:right;
  font-family: Verdana;
  font-size: 10px;
  margin:0px;
  padding:0px;
  margin-right:5px;
  vertical-align: middle;
  display:block;
}

.antstyle {
    width:20px; float:left; margin-top:5px; margin-left:1px;
}

.themessage {
    word-break:break-all; padding:5px; font-size:11px; float:left; width:90%;
}
table {
  background: white;
  margin-bottom: 1.25em;
  border: solid 1px #dddddd;
}
/* line 41, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_tables.scss */
table thead,
table tfoot {
  background: whitesmoke;
  font-weight: bold;
}
/* line 47, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_tables.scss */
table thead tr th,
table thead tr td,
table tfoot tr th,
table tfoot tr td {
  padding: 0.5em 0.625em 0.625em;
  font-size: 0.875em;
  color: #222222;
  text-align: left;
}
/* line 58, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_tables.scss */
table tr th,
table tr td {
  padding: 0.5625em 0.625em;
  font-size: 0.875em;
  color: #222222;
}
/* line 66, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_tables.scss */
table tr.even, table tr.alt, table tr:nth-of-type(even) {
  background: #f9f9f9;
}
/* line 73, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_tables.scss */
table thead tr th,
table tfoot tr th,
table tbody tr td,
table tr td,
table tfoot tr td {
  display: table-cell;
  line-height: 1.125em;
}

/* Pagination */
/* line 97, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination {
  display: block;
  height: 1.5em;
  margin-left: -0.3125em;
}
/* line 45, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination li {
  display: block;
  float: left;
  height: 1.5em;
  color: #222222;
  font-size: 0.875em;
  margin-left: 0.3125em;
}
/* line 53, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination li a {
  display: block;
  padding: 0.0625em 0.4375em 0.0625em;
  color: #999999;
}
/* line 60, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination li:hover a,
.pagination li a:focus {
  background: #e6e6e6;
}
/* line 62, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination li.unavailable a {
  cursor: default;
  color: #999999;
}
/* line 67, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination li.unavailable:hover a, .pagination li.unavailable a:focus {
  background: transparent;
}
/* line 69, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination li.current a {
  background: #cc9752;
  color: white;
  font-weight: bold;
  cursor: default;
}
/* line 76, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination li.current a:hover, .pagination li.current a:focus {
  background: #cc9752;
}

/* line 82, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination-centered {
  text-align: center;
}
/* line 83, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_pagination.scss */
.pagination-centered ul > li {
  float: none;
  display: inline-block;
}

a {
  color: #cc9752;
  text-decoration: none;
  line-height: inherit;
}
/* line 152, ../../../../lib/gems/1.9.1/gems/zurb-foundation-4.0.0/scss/foundation/components/_type.scss */
a:hover, a:focus {
  color: #c68b3e;
}

.iconss, .lockk {   display: flex;   align-items: center; }

.reconnecting {
  vertical-align: center;
  width:96%;
  margin:5px;
  background-color: #CE2906;
  font-color: #ffffff;
  color: #ffffff;
  margin-left:15px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding:3px;
  border-style:solid;
  border-color: #595959;
  border-top-width: 0px;
  border-right-width: 2px;
  border-left-width: 2px;
  border-bottom-width: 2px;
  font-family: Verdana;
  font-size: 12px;
  box-sizing: border-box;
}

.profielinfo {
  font-weight: bold;
}

.absoluutfooter {
  position: fixed;
  bottom: 0;
  width:96%;
  margin:0px;
  padding:4px;
  padding-left:60px;
  background-color: #333333;
  font-family: Verdana;
  font-size: 12px;
  border-radius: 10px 10px 0px 0px;
}