fhtml, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, active, hover, selected {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

html {
  background: #f5f5f6;
}

*:focus {
  outline: 0;
}

:root {
  --white: #fff;
  --gray1: #eee;
  --gray2: #E1E2E1;
  --gray3: #ccc;
  --icon-color: #000;
  --title-color: #444;
  --highlight: #4167f4;
  --post-content: #f5f5f5;
}

/*Please use one global stylesheet and also get the minify package in atom. Thank you. :D*/

* {
  font-family: "Roboto", sans-serif;
  margin: 0px;
  padding: 0px, 0px, 0px, 0px;
}

.l-body {
  background: #e2e1e0;
}

h1 {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

/* TOP BAR */

.top-bar {
  width: 100%;
  height: 60px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: logo;
  position: relative;
  top: 0px;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  font-size: 25px;
  cursor: pointer;
}

.searchbar {
  position: relative;
  font-family: Roboto;
  padding: 8px 8px 8px 8px;
  font-size: 17px;
  width: 210px;
  height: 20px;
  color: #646d6d;
  float: left;
  margin-top: 10px;
  margin-left: 30px;
  border: 0;
  border-radius: 2px;
  background-color: #e1e2e1;
  z-index: 1000;
  transition-duration: 0.3s;
}

.searchbar:hover {
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
}

::placeholder {
  color: inherit;
}

.t-settings {
  -ms-grid-row: 2;
  -ms-grid-column: 5;
  grid-area: si;
  position: relative;
  justify-self: center;
  top: 3px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  font-weight: medium;
  font-size: 15px;
}

/* when pressed call a floating message */

/* The container */

.container {
  display: block;
  position: relative;
  height: 20px;
  margin-left: 55px;
  margin-bottom: 12px;
  margin-top: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/* Hide the browser's default checkbox */

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */

.checkmark {
  position: relative;
  float: left;
  height: 16px;
  width: 16px;
  background-color: #eee;
  border-radius: 2px;
  margin-right: 10px;
  border: 2px solid #ccc;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* When the checkbox is checked, add a blue background */

.container input:checked~.checkmark {
  background-color: #4167f4;
  border: 2px solid #4167f4;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */

.container input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */

.container .checkmark:after {
  left: 4.9px;
  top: 1.5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2.7px 2.7px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.switch {
  position: relative;
  float: left;
  display: inline-block;
  width: 32px;
  height: 16px;
  margin-right: 10px;
  left: -6px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: -4px;
  bottom: 0;
  background-color: #BDBDBD;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: -1px;
  top: -1.7px;
  bottom: 4px;
  background-color: white;
  -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.13);
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.13);
  -webkit-transition: .2s;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #819eef;
}

input:focus+.slider {
  -webkit-box-shadow: 0 0 1px #2196F3;
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
  background-color: #4167f4;
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Hide the browser's default radio button */

.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */

.radio {
  position: relative;
  top: 0;
  left: 0;
  height: 15.4px;
  width: 15.4px;
  background-color: #eee;
  border-radius: 50%;
  margin-right: 10px;
  float: left;
  border: 2.3px solid #999;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* On mouse-over, add a grey background color */

.container:hover input~.radio {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */

.container input:checked~.radio {
  border: 2.3px solid #4167f4;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.radio:after {
  content: "";
  position: relative;
  display: none;
}

/* Show the indicator (dot/circle) when checked */

.container input:checked~.radio:after {
  display: block;
}

/* Style the indicator (dot/circle) */

.container .radio:after {
  top: 3.3px;
  left: 3.3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4167f4;
}

/* Settings */

.s-settings {
  display: none;
  position: absolute;
  z-index: 100000;
  width: 500px;
  height: 320px;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 8px;
}

.s-tab-box {
  width: auto;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 48px;
  display: table-row;
}

.s-tab-holder {
  width: auto;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 48px;
  display: table;
}

.s-tab {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-align: center;
  position: relative;
  float: left;
  padding: 12px 12px 12px 12px;
  cursor: pointer;
  display: table-row;
}

.s-selected {
  border-bottom: 2px solid #4167f4;
}

.s-title-box {
  width: 100%;
  height: 30px;
  display: table-row;
}

.s-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 22px;
  padding-left: 6px;
  width: 200px;
  margin-left: none;
  float: left;
}

.s-delete {
  position: relative;
  float: left;
  top: 12.5px;
  cursor: pointer;
  float: right;
}

.s-content {
  width: 100%;
  height: 100%;
  display: block;
  overflow-x: hidden;
}

.s-c-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.s-c-wrapper.s-slide {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.s-c-tab {
  display: table-column;
  /* display: none; */
  position: absolute;
  height: 100%;
  width: 100%;
}

.s-c-tab.account {
  display: block;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.s-section-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-left: 20px;
  margin-top: 10px;
}

.s-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 10px;
}

.p-holder {
  height: 100px;
  width: auto;
  margin-left: 55px;
  margin-top: 10px;
}

.image.edit {
  width: 80px;
  height: 80px;
  margin-top: 5px;
  /* background: #000; */
  display: inline-block;
}

.setting-img {
  width: auto;
  height: 100%;
}

.input.s {
  position: relative;
  font-family: Roboto;
  padding: 0px 8px 0px 8px;
  font-size: 17px;
  width: 80%;
  margin: auto;
  color: #222;
  border: none;
  border-radius: 2px;
  z-index: 100;
  margin-top: 6px;
  margin-bottom: 2px;
}

.input-bar {
  all: unset;
  width: auto;
  position: relative;
  height: 20px;
  border-bottom: 2px solid #ddd;
  margin-left: 10px;
  font-weight: 400;
}

.input-sub {
  font: Roboto;
  font-size: 10px;
  color: #ff8e8e;
  position: relative;
  left: 10px;
}

.setting-desc {
  font: Roboto;
  font-size: 10px;
  color: #aaa;
  position: relative;
  left: 10px;
  margin-left: 40px;
}

.input-sub.i-handle {
  font: Roboto;
  font-size: 10px;
  color: #ff8e8e;
  position: relative;
  left: 10px;
}

.i-edit {
  position: absolute;
  top: 36%;
  left: 33%;
  font-weight: 200;
  color: #eee;
  cursor: pointer;
  z-index: 10000;
}

.s-bottom-buttons {
  display: table-row;
  width: 100%;
  height: 1px;
}

.s-op-1 {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #444;
  background-color: inherit;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.s-op-2 {
  position: relative;
  float: right;
  text-decoration: none;
  right: 0px;
  font-family: Roboto;
  font-weight: 600;
  color: #444;
  background-color: inherit;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 10px;
  margin-bottom: 5px;
}

/*   */

.search-g {
  position: relative;
  top: -10px;
}

.context {
  position: relative;
  width: 100%;
  height: 180px;
  z-index: 1;
}

.title {
  position: relative;
  color: #222;
  width: 90px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  padding-left: 20px;
  font-family: Roboto;
  font-weight: lighter;
  font-size: 30px;
}

.section {
  height: 40px;
  width: 100%;
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 400;
  color: #222;
  border: none;
  font-size: 18px;
  display: table;
  cursor: pointer;
}

.section:hover {
  background: #ddd;
}

.s-txt {
  position: relative;
  float: left;
  top: 10.5px;
  margin-left: 20px;
  font-size: 16px;
}

.s-notes {
  position: relative;
  top: 6px;
  float: right;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #666;
  background: #ccc;
  padding: 2px 8px 2px 8px;
  margin: 3px 40px 3px 2px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

.s-icon {
  position: relative;
  float: left;
  margin-left: 55px;
  top: 7px !important;
  color: #444;
}

.settings-icon {
  margin-left: 23px;
}

.s-avatar {
  position: relative;
  float: left;
  top: 7.5px;
  width: 25px;
  height: 25px;
  margin-left: 55px;
  border-radius: 50%;
  background: #ddd;
}

.sub-box {
  display: table-cell;
  height: 0;
  overflow-y: auto;
}

.subscriptions {
  margin: auto;
  position: relative;
  height: auto;
  display: block
}

.sections {
  height: auto;
  display: block;
}

.sections.slim {
  height: auto;
  display: block;
  width: 250px;
  margin-left: 25px;
}

/* SUPPORT */

.support {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  width: 700px;
  height: 112px;
  padding: 5px 5px 5px 5px;
}

.s-title {
  font-family: ;
  color: #222;
  font-size: 19px;
  font-weight: bold;
}

.s-bar {
  position: relative;
  float: left;
  width: 100%;
}

.s-b {
  position: relative;
  float: left;
  margin-top: 20px;
  width: 87%;
  height: 3px;
  background: #009CDE;
  border-radius: 2px;
}

.s-percent {
  position: relative;
  float: right;
  margin-top: 11px;
  margin-right: 10px;
}

.s-text {
  position: relative;
  margin-top: 10px;
  width: 100%;
  height: 30px;
}

.donate {
  position: relative;
  margin-top: 30px;
  float: right;
  cursor: pointer;
}

.paypal {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  color: #009CDE;
  background-color: inherit;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

/* SIDENAV */

.sidenav {
  display: block;
  position: fixed;
  float: left;
  height: 100%;
  width: 350px;
  background: #eee;
  border-right: 1px solid #ddd;
  overflow-y: auto;
}

.sidenav-home {
  z-index: 100;
  display: block;
  position: fixed;
  float: left;
  height: 100%;
  width: 300px;
  background: #E1E2E1;
  overflow-y: auto;
  overflow-x: hidden;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0, 1, 1, 1);
}

.logo-info {
  position: absolute;
  z-index: 10;
  width: 100%;
  z-index: 1000;
  background: #e1e2e1;
}

.logo-info.account {
  background: transparent;
  height: 0px;
}

.s-scroll {
  position: relative;
  height: auto;
  margin-top: 55px;
}

.image {
  width: 60px;
  height: 60px;
  margin-top: 13px;
  margin-right: 5px;
  position: relative;
  background: #999;
  border-radius: 50%;
  float: left;
}

.n-name {
  font-size: 20px;
  margin-right: auto;
  margin-top: 2px;
}

.s-namebox {
  width: 100%;
  height: 50px;
  background: red;
}

.username {
  width: 130px;
  height: 18px;
  position: relative;
  float: left;
  margin-left: 10px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: lighter;
}

.name {
  padding-top: 10px;
  padding-left: 10px;
  position: relative;
  margin: none;
  float: left;
}

.info {
  position: relative;
  margin-top: 18px;
  margin-left: 10px;
  float: left;
  display: table;
}

/* CHANGE NAME LATER */

.u-stat {
  width: 250px;
  display: table-column;
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600 !important;
  color: #222;
  border-radius: 2px;
  border: none;
  text-align: left;
  font-size: 16px;
  float: left;
  margin-top: 2px;
}

.u-stat.karma {
  margin: 0;
  width: 100px;
  position: relative;
  float: left;
  font-family: Roboto;
  font-size: 16px;
  font-weight: lighter;
  text-align: left;
  padding-left: 10px;
}

.u-stat.rank {
  margin: 0;
  width: 100px;
  position: relative;
  float: left;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: lighter;
  text-align: left;
  padding-left: 10px;
}

.user {
  height: 0;
  display: table-row;
}

.user-info {
  width: 80%;
  height: 120px;
  position: relative;
  margin: auto;
  margin-top: 55px;
}

.followers {
  width: 100%;
  height: 50px !important;
  margin-left: 70px;
}

.line {
  height: 1px;
  width: 80%;
  margin: auto;
  background: #ccc;
  border-radius: 10px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.long-line {
  height: 1px;
  width: 100%;
  margin: auto;
  background: #eee;
  border-radius: 10px;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
}

.c-names {
  position: relative;
  float: left;
  margin-top: 5px;
  margin-left: 10px;
}

.c-OP {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #222;
  cursor: pointer;
}

.c-op-1.c-reply {
  font-size: 16px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  position: relative;
  float: left;
}

.c-op-1.c-reply.reply {
  font-size: 14px;
}

.m-comment-likes {
  display: inline-block;
  position: relative;
  float: left;
  margin-top: 2px;
  cursor: pointer;
}

.c-handle {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  font-style: italic;
  font-size: 10px;
  color: #222;
}

.c-pp {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #222;
  position: relative;
  float: left;
  margin-top: 8px;
  margin-left: 18px;
}

.m-c-text-box {
  width: 100%;
  height: 40px;
}

.m-c-para {
  margin-left: 20px;
}

.c-para {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #444;
}

.c-para.small {
  font-size: 11px;
  font-weight: lighter;
}

/* H CONTENT */

.h-content {
  position: relative;
  margin-left: 300px;
  width: auto;
  height: auto;
  background: #F5F5F6;
}

.h-content.ec {
  margin-top: 0px;
  height: 100%;
  background: #222629;
}

.h-row {
  position: relative;
  width: 100%;
  height: 200px;
  top: 10px;
  margin-top: 10px;
  margin-left: 5px;
}

.h-post {
  position: relative;
  top: 5px;
  left: 5px;
  float: left;
  height: 200px;
  width: 200px;
  background: #ddd;
  margin: 5px;
  cursor: pointer;
  border-radius: 3px;
}

.h-post-info.tiny {
  height: 20px;
}

.h-post.small {
  width: 150px;
  height: 150px;
}

.h-post.tiny {
  width: 115px;
  height: 115px;
}

.h-post-row {
  width: 100%;
  height: 92px;
  display: table;
}

.h-op {
  width: 100%;
  height: 30px;
  /* background: rgba(34, 34, 34, 0.2); */
  position: relative;
}

.h-p {
  position: relative;
  float: left;
  font-weight: 100;
  font-size: 15px;
  margin-top: 11px;
  color: #666;
}

.op-pp {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #bbb;
  position: relative;
  margin-left: 7px;
  margin-top: 7px;
  margin-right: 10px;
  float: left;
}

.h-post-info {
  display: display;
  width: 100%;
  height: 30px;
  background: rgba(34, 34, 34, 0.1);
  position: absolute;
  bottom: 0;
  cursor: default;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.h-icon {
  position: relative;
  float: left;
  top: 2px;
  margin-left: 10px;
  cursor: pointer;
}

.h-p-stat {
  opacity: 1;
  position: relative;
  color: #333;
  float: left;
  top: 8px;
  margin-left: 5px;
  font-size: 12px;
  cursor: default;
  font-weight: 600;
}

.h-post-info.big {
  height: 50px;
}

.h-p-stat.big {
  top: 14.5px;
  margin-left: 5px;
  margin-right: 5px;
  font-size: 16px;
}

.h-icon.big {
  top: 10px;
}

.h-more.big {
  top: 18.5px;
  font-weight: 600;
  right: 5px;
}

.h-search-tools {
  width: 100%;
  height: 50px;
  position: relative;
  top: -1px;
  border-bottom: 1px solid #ccc;
  background: #eee;
}

.h-s-txt {
  position: relative;
  float: left;
  top: 14px;
  margin-left: 20px;
  font-size: 16px;
  cursor: pointer;
}

.h-more {
  position: relative;
  top: 10px;
  float: right;
  margin-right: 12px;
  cursor: pointer;
}

/*  */

.c-image {
  background-color: #eee;
  width: 300px;
  height: 300px;
  margin-left: 20px;
  position: relative;
  float: left;
  cursor: pointer;
  border-radius: 3px;
}

.layer {
  height: 300px;
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
}

p {
  font-family: Roboto;
  font-weight: 500;
}

html {
  height: 100%;
  width: 100%;
}

body {
  position: relative;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* TOP BAR */

.logo {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: logo;
  position: relative;
  top: 0px;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  font-size: 25px;
  cursor: pointer;
}

.sign-in-user {
  -ms-grid-row: 2;
  -ms-grid-column: 5;
  grid-area: si;
  position: relative;
  -ms-grid-column-align: center;
  justify-self: center;
  font-weight: 500;
  background-color: #fff;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.s-dropdown {
  display: none;
  z-index: 1000000;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 300px;
  background: #fff;
  color: #222;
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.s-d-titlebox {
  width: auto;
  height: 40px;
  background: #eee;
  padding: 16px;
}

.sdname {
  margin: 0px !important;
  font-size: 18px !important;
}

.sd-img {
  border-radius: 50%;
  margin-right: 7px;
  position: relative;
  float: left;
}

.sd-infoholder {
  width: auto;
  position: relative;
  float: left;
}

.sd-content {
  display: table;
  width: 100%;
}

.sd-option {
  display: table-row;
  background: green;
}

/* SEARCH RESULT BOX */

.search-result-box {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 8px 8px 8px 25px;
  position: relative;
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  left: -25px;
  top: 30px;
}

.search-op {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.res-p {
  font-family: 'Roboto', sans-serif;
}

.search-featured-box {
  width: 100%;
  height: auto;
  position: relative;
  top: 50px;
}

.s-box-holder {
  width: auto;
  height: 117px;
  margin-top: 5px;
  overflow-y: hidden;
  overflow-x: scroll;
  /* make box holder scroll horizontally */
}

.s-box {
  width: 100px;
  height: 100px;
  background-color: #ccc;
  margin-right: 10px;
  position: relative;
  float: left;
}

/* END OF SEARCH BAR */

.pepe {
  width: 100%;
  height: 55px;
  background: green;
}

/* ACCOUNT */

.image {
  width: 60px;
  height: 60px;
  margin-top: 13px;
  margin-right: 5px;
  position: relative;
  background: #999;
  border-radius: 50%;
  float: left;
}

.n-name {
  font-size: 20px;
  margin-right: auto;
  margin-top: 2px;
  font-weight: 600;
}

.username {
  width: 130px;
  height: 18px;
  position: relative;
  float: left;
  font-family: Roboto;
  font-size: 14px;
  font-weight: lighter;
  text-align: left;
  margin: 0;
}

.name {
  width: 150px;
}

.info {
  position: relative;
  top: -5px;
  margin-left: 10px;
  width: 100%;
  float: left;
}

/* CHANGE NAME LATER */

.follow {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #ccc;
  background: #4167f4;
  padding: 8px 16px 8px 16px;
  margin-top: 5px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  height: 35px;
  width: 115px;
  transition: background 0.5s;
}

.unfollow {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #555;
  background: #ccc;
  padding: 8px 16px 8px 16px;
  margin-top: 5px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  width: 115px;
  transition: background 0.5s;
}

.follow-self {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #666;
  background: #ccc;
  padding: 8px 16px 8px 16px;
  margin-top: 5px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

.follow-self.home {
  float: right;
  margin: 15px;
  background: #eee;
}

.follow-self.rec {
  float: right;
  margin: 14px 10px 0px 0px;
  background: #ddd;
}

.post-btn.hover {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  float: right;
  color: #fff;
  background: #4167f4;
  padding: 8px 16px 8px 16px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}

.post-btn.hover:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.post-btn.closePost {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  float: left;
  color: #000;
  background: none;
  padding: 8px 16px 8px 16px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

.post-btn.cancel:hover {}

.follow span::before {
  content: "Follow ";
  color: #efefef;
}

.follow-white::before {
  content: "Follow ";
  color: #555 !important;
}

.unfollow span::before {
  content: "Unfollow ";
  color: #222;
}

.follow-self span::after {
  content: " Followers";
  color: #444;
}

.a-user-info {
  width: 80%;
  height: 80px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  margin-top: 55px;
}

.s-user {
  display: block;
}

.s-favorites {
  display: block;
}

.s-searchbox {
  display: block;
}

.s-r-scroll {
  width: 100%;
  position: relative;
  height: inherit;
  margin: auto;
}

.s-margin {
  width: 76%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.s-results {
  display: block;
  overflow-y: hidden;
}

/*  */

.fav-holder {
  width: 80%;
  height: 20px;
  position: relative;
  margin: auto;
  margin-bottom: 10px;
}

.div-line {
  height: 2px;
  width: 34.6%;
  margin: auto;
  background: #ccc;
  border-radius: 10px;
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;
  float: left;
}

.div-text {
  float: left;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  color: #aaa;
}

/* MEME TYPE */

.meme-type {
  width: 80%;
  min-height: 100px;
  margin: auto;
  position: relative;
  top: -10px;
  overflow-y: auto;
}

.type {
  position: relative;
  float: left;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #666;
  background: #ccc;
  padding: 2px 8px 2px 8px;
  margin: 3px 2px 3px 2px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

.t-cross {
  display: none;
  position: absolute;
  right: 1px;
  top: 0px;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 700;
  color: #222;
  margin-left: 5px;
  margin-top: 1.5px;
  padding: 2px 8px 2px 8px;
  -webkit-box-shadow: 0 0 1px 1px #ccc;
  box-shadow: 0 0 1px 1px #ccc;
  background: #ccc;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 100;
}

.t-add {
  display: none;
  position: relative;
  float: left;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #666;
  background: #ccc;
  padding: 2px 8px 2px 8px;
  margin: 3px 3px 3px 3px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
}

.meme-type:hover .t-add {
  display: block;
}

.type:hover .t-cross {
  display: block;
}

.s-search-box {
  height: 0;
  display: table-row;
}

.s-searchbar {
  position: relative;
  font-family: Roboto;
  padding: 8px 8px 8px 8px;
  font-size: 17px;
  width: 70%;
  margin: auto;
  color: #222;
  border: none;
  border-radius: 2px;
  background-color: #eee;
  z-index: 100;
}

/* RESULTS */

.result-box {
  width: 80%;
  margin: auto;
  padding-top: 0.1px;
}

.result-scroll {
  position: relative;
  overflow-y: scroll;
  overflow-x: none;
  height: 55%;
  width: 100%;
  margin-top: 10px;
}

.r-container {
  width: 300px;
  height: 50px;
  margin: 10px 0px 10px 40px;
  cursor: pointer;
  display: table;
}

.r-image-preview {
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  float: left;
}

.r-desc {
  width: 80%;
  height: auto;
  position: relative;
  float: left;
  margin-left: 5px;
}

.r-title-text {
  font-family: Roboto;
  font-size: 15px;
  font-weight: lighter;
  margin-left: 2px;
}

.r-tags {
  width: 90%;
  height: 22px;
  margin-top: 10px;
  overflow-x: auto;
  padding-right: 40px;
}

.r-type {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #666;
  background: #ccc;
  padding-left: 8px;
  padding-right: 8px;
  padding: 2px 8px 2px 8px;
  margin: 0px 2px 0px 2px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  top: -1px;
}

/* CONTENT */

.home-content {
  position: relative;
  width: auto;
  height: auto;
  margin-left: 300px;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0, 1, 1, 1);
}

.c-box {
  width: 100%;
  margin-bottom: 12px;
}

.c-popular {
  position: relative;
  height: 170px;
  width: 810px;
  margin-right: auto;
  margin-left: auto;
}

.c-pop-cont {
  position: relative;
  height: 200px;
  overflow: none;
  padding-bottom: 17px solid #eee;
}

.library {
  height: 56px;
  padding: 16px 16px 16px 48px;
  background: #eee;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 10;
}

.library.onDrop {
  z-index: 100;
  border-bottom: 3px #777 solid;
  background: #999;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.library.light {
  background: #fff;
}

.library.is-dragover {
  background: #7ba4e5;
  /* border: 2.5px solid #4167f4; */
  border-radius: 2px;
  box-shadow: inset 0px 0px 0px 2.5px #4167f4;
  box-sizing: border-box;
}

.empty-library {
  width: auto;
  height: auto;
  display: flex;
  color: #999;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.empty-library.is-dragover {
  width: auto;
  height: auto;
  background: #7ba4e5;
  border: 2px solid #4167f4;
  color: #fff;
}

.empty-library-content {
  width: 500px;
  height: auto;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.material-icons.empty-library-icon {
  font-size: 100px;
  color: inherit;
  position: relative;
  right: -50%;
  transform: translateX(-50%);
  cursor: default;
}

.empty-library-title {
  font-size: 16px;
  color: inherit;
  text-align: center;
}

.l-l1 {
  background: #cfcfcf;
  box-sizing: border-box;
}

.l-icon {
  float: left;
  width: 30px;
  font-size: 23px !important;
}

.l-title {
  padding-left: 20px;
  display: inline-block;
  max-width: 100%;
  font-family: "Roboto Mono", serif;
  font-size: 18px;
  color: #444;
  font-size: 20px;
}

.l-settings {
  top: -2px;
  position: relative;
  width: 30px;
  height: 30px;
  float: right;
  margin-right: 9px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.7, -0.02, 0.23, 0.99);
  -o-transition-timing-function: cubic-bezier(0.7, -0.02, 0.23, 0.99);
  transition-timing-function: cubic-bezier(0.7, -0.02, 0.23, 0.99);
  z-index: 1;
}

/* set coordinates through JS */

/* As a result of this we may only ever need one on the HTML side */

/* Just to be safe I put two, just remove it if it's redundant */

/* if screen is clicked anywhere else = quit */

/* scrolling works perfectly though */

/* Also please give it a cool animation */

.l-sett-opt {
  width: 130px;
  height: auto;
  background: #fdfdfd;
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  position: absolute;
  right: 60px;
  top: 70px;
  z-index: 100;
  cursor: default;
  -webkit-transition: right 0.2s, opacity 0.2s;
  -o-transition: right 0.2s, opacity 0.2s;
  transition: right 0.2s, opacity 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.88, -0.01, 0.01, 1.01);
  -o-transition-timing-function: cubic-bezier(0.88, -0.01, 0.01, 1.01);
  transition-timing-function: cubic-bezier(0.88, -0.01, 0.01, 1.01);
  z-index: 100000;
}

.l-sett-button {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #444;
  background-color: inherit;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-top: 5px;
  margin-left: 10px;
  margin-bottom: 5px;
}

.l-line {
  height: 1px;
  width: 80%;
  margin: auto;
  background: #ccc;
  border-radius: 10px;
  position: relative;
}

/* END OF SECTION */

.l-drop {
  top: -2px;
  position: relative;
  width: 30px;
  height: 30px;
  float: right;
  margin-right: 15px;
  z-index: 1;
}

.l-content {
  width: auto;
  height: auto;
  position: relative;
  /*Change this for the curve*/
  -webkit-transition-timing-function: cubic-bezier(0, 0.98, 0.21, 0.99);
  -o-transition-timing-function: cubic-bezier(0, 0.98, 0.21, 0.99);
  transition-timing-function: cubic-bezier(0, 0.98, 0.21, 0.99);
  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
  overflow: hidden;
}

.l-content.is-dragover {
  background: #7ba4e5;
}

.l-img {
  width: 100px;
  height: 100px;
  background: #ddd;
  position: relative;
  float: left;
  cursor: pointer;
  margin-bottom: 5px;
  margin-right: 5px;
}

.l-img:hover {
  background: #c6c6c6;
}

/* MESSAGE */

.imp-bg-fade {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 100000;
  background: #222;
  opacity: 0.2;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  transition-duration: 0.3s;
}

.imp-message {
  position: absolute;
  right: 40%;
  top: 40%;
  width: 300px;
  height: auto;
  background: #fdfdfd;
  border-radius: 2px;
  padding: 8px 8px 8px 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 100000;
  cursor: default;
  opacity: 1;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.imp-title-holder {
  position: relative;
  width: 100%;
  height: 20px;
  margin-bottom: 10px;
}

.imp-icon {
  position: relative;
  font: Roboto;
  float: left;
  color: #444;
  margin-left: 10px;
}

.imp-title {
  position: relative;
  float: left;
  font-family: 'Roboto';
  top: 2px;
  color: inherit;
  font-size: 20px;
  font-weight: 600;
  margin-left: 10px;
}

.imp-p {
  z-index: 100000;
  text-align: left;
  font-weight: 300;
  margin-bottom: 7px;
  margin-left: 10px;
}

.imp-op-1 {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #444;
  background-color: inherit;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 10px;
  margin-bottom: 5px;
  z-index: 100000;
}

.imp-op-2 {
  position: relative;
  text-decoration: none;
  right: 0px;
  font-family: Roboto;
  font-weight: 600;
  color: #444;
  background-color: inherit;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 10px;
  margin-bottom: 5px;
  z-index: 100000;
}

.material-icons {
  font-size: 27px;
  position: relative;
  top: 2px;
}

.material-icons.hoverable:hover:after {
  width: 150%;
  height: 150%;
  left: -99%;
  top: -28%;
  background: #999;
  opacity: .2;
  border-radius: 50%;
  z-index: 10000;
  content: "";
  position: absolute;
  transform: translateX(50%);
}

.material-icons.hoverable:after {
  width: 0%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: #999;
  opacity: .2;
  border-radius: 50%;
  z-index: 10000;
  content: "";
  position: absolute;
  transform: translateX(50%);
  /* You can mess with the animations on these. Probably want to keep them all the same though. */
  transition: width 0.2s, height 0.2s, left 0.2s, top 0.2s, transform 0.2s;
}

.material-icons.hoverable-sidenav:hover:after {
  width: 170%;
  height: 170%;
  left: -118%;
  top: -45%;
  background: #999;
  opacity: .2;
  border-radius: 50%;
  z-index: 10000;
  content: "";
  position: absolute;
  transform: translateX(50%);
}

.material-icons.hoverable-sidenav:after {
  width: 0%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: #999;
  opacity: .2;
  border-radius: 50%;
  z-index: 10000;
  content: "";
  position: absolute;
  transform: translateX(50%);
  /* Also here. */
  transition: width 0.2s, height 0.2s, left 0.2s, top 0.2s, transform 0.2s;
}

.black {
  color: #222;
}

/* EDIT MENU */

.edit-menu {
  position: fixed;
  right: 0px;
  height: 100%;
  width: 70px;
  background: #f5f5f5;
  border-left: 1px #ddd solid;
  z-index: 10;
  margin-top: 55px;
}

.edit-icons {
  position: relative;
  font-size: 29px;
  width: auto;
  height: auto;
  margin-left: 21px;
  margin-right: 21px;
  margin-top: 9px;
  margin-bottom: 9px;
  color: #444;
  cursor: pointer;
}

.edit-icons:hover {
  color: #333;
}

/* LOGIN */

.login-h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 60px;
  color: #fff;
  font-weight: 400;
  margin-left: 40px;
  margin-top: 10px;
}

.color-block {
  width: 100%;
  height: 100px;
  background: #222;
  padding: 15px;
  position: relative;
  top: -15px;
  left: -15px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 30px;
}

.login-block {
  width: 400px;
  height: 450px;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  padding: 15px;
  background: #fff;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.login-sub {
  font: Roboto;
  font-size: 10px;
  color: #ff8e8e;
  margin-left: 40px;
}

.input {
  position: relative;
  font-family: Roboto;
  padding: 0px 8px 0px 8px;
  font-size: 17px;
  width: 80%;
  margin: auto;
  color: #222;
  border: none;
  border-radius: 2px;
  z-index: 100;
  margin-bottom: 8px;
}

/* LOGIN */

.color-block {
  width: 100%;
  height: 100px;
  background: #222;
  padding: 15px;
  position: relative;
  top: -15px;
  left: -15px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 30px;
}

.signup-block {
  width: 400px;
  height: 500px;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  padding: 15px;
  background: #fff;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.login-sub {
  font: Roboto;
  font-size: 10px;
  color: #999;
  margin-left: 40px;
}

.input {
  position: relative;
  font-family: Roboto;
  padding: 0px 8px 0px 8px;
  font-size: 17px;
  width: 80%;
  margin: auto;
  color: #222;
  border: none;
  border-radius: 2px;
  z-index: 100;
  margin-bottom: 8px;
}

.button {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #fff;
  background: #222;
  padding: 8px 16px 8px 16px;
  margin: 3px 40px 3px 2px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  float: right;
  bottom: 0px;
}

.l-buttons {
  width: 100%;
  height: 50px;
  position: relative;
  bottom: 0px;
  top: 25px;
}

.alt {
  position: relative;
  text-decoration: none;
  font-family: 'Roboto';
  font-weight: 500;
  color: #222;
  background: inherit;
  padding: 8px 0px 8px 0px;
  margin: 3px 2px 3px 40px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  bottom: 0px;
}

.meme-preview-box {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  margin-top: 50px;
}

.meme-preview-box-hover {
  position: absolute;
  z-index: 100000;
  display: inline-block;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
  border-radius: 5px;
}

.post-corridor {
  width: 800px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.m-main-content {
  position: relative;
  background: #fff;
  float: left;
  width: auto;
  height: auto;
  display: inline-block;
}

.m-main-content-hover {
  position: relative;
  background: #F5F5F6;
  float: left;
  width: auto;
  height: auto;
  display: inline-block;
  padding-bottom: 10px;
}

.m-comment-wrapper {
  display: inline-block;
  max-height: 300px;
  overflow: hidden;
  background: #eee;
}

.m-comment-wrapper-hover {
  display: inline-block;
  height: 100%;
  width: 100%;
  background: #fafafa;
  overflow-y: auto;
  grid-area: comments;
}

.m-new-container {
  height: auto;
  width: auto;
  display: inline-block;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background: #fff;
}

.m-new-container-hover {
  height: auto;
  width: auto;
  display: inline-grid;
  grid-template-columns: 600px 300px;
  grid-template-rows: 400px minmax(150px, auto);
  grid-template-areas: "img comments" "desc reply";
}

.follow.mp, .unfollow.mp, .follow-self.mp {
  float: right;
  margin: 16px 20px;
}

.m-comment-bar {
  grid-area: comments;
}

.meme-img {
  height: 600px;
  position: relative;
  width: 100%;
  background: #ccc;
  display: block;
  cursor: pointer;
}

.meme-img-hover {
  height: 100%;
  position: relative;
  width: 100%;
  background: #ccc;
  grid-area: img;
  cursor: pointer;
}

.m-album {
  position: relative;
  width: 800px;
  display: block;
}

.m-album-row {
  width: 800px;
  height: 250px;
  position: relative;
  display: block;
}

.m-album-img {
  width: 400px;
  height: 400px;
  position: relative;
  background: #ccc;
  display: block;
  float: left;
  cursor: pointer;
}

.m-album-img.light {
  width: 400px;
  height: 400px;
  position: relative;
  background: #ddd;
  display: block;
  float: left;
}

.m-album-img.wide {
  width: 800px;
  height: 400px;
  background: #d5d5d5;
}

.album-text {
  color: #999;
  font-size: 60px;
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.m-names {
  position: relative;
  float: left;
  margin-top: 16px;
  margin-left: 10px;
  color: #444;
}

.reposted {
  position: absolute;
  top: -15px;
  left: 15px;
  background: #4167f4;
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 5px;
  cursor: pointer;
  transition: 0.1s;
}

.reposted:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.m-OP {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: inherit;
  cursor: pointer;
}

.m-OP.light {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #fff;
}

.material-icons {
  cursor: pointer;
}

.m-handle {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  font-style: italic;
  font-size: 12px;
  color: inherit;
  opacity: .7
}

.m-handle.light {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  font-style: italic;
  font-size: 12px;
  color: #fff;
  opacity: .7
}

.m-pp {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddd;
  position: relative;
  float: left;
  margin-top: 18px;
  margin-left: 18px;
  cursor: pointer;
}

.m-text-box {
  width: 100%;
  height: 68px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.m-text-box.color {
  width: 100%;
  height: 68px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  background: #222;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.m-date {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  font-style: italic;
  font-size: 12px;
  color: #222;
  position: relative;
  float: right;
  margin-top: 10.5px;
}

.m-desc {
  width: 800px;
  height: auto;
  position: relative;
  display: block;
}

.m-desc-hover {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  grid-area: desc;
  background: #f5f5f5;
}

.m-para {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  font-size: 16px;
  display: block;
  width: auto;
  margin-left: 18px;
  margin-right: 10px;
}

.m-tags {
  display: inline-block;
  margin-left: 18px;
  margin-right: 10px;
}

.type.m {
  position: relative;
  float: left;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #666;
  background: #ccc;
  padding: 2px 8px 2px 8px;
  margin: 3px 2px 3px 2px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}

.comment-options {
  position: absolute;
  bottom: -24px;
  right: -17px;
  background: #fff;
  padding: 3px;
  border-radius: 35px;
  z-index: 10;
  box-shadow: 0 0 10px 0 #777;
}

.m-post-info {
  width: auto;
  height: 40px;
  position: relative;
  display: block;
  margin-left: 18px;
  margin-right: 10px;
  margin-top: 9px;
}

.m-likes {
  min-width: 80px;
  height: 30px;
  position: relative;
  float: left;
  top: 5px;
  margin-right: 15px;
}

.comment-box {
  position: relative;
  display: inline-flex;
  padding: 10px;
  grid-area: reply;
  background: #f5f5f5;
}

.comment-box-hover {
  position: relative;
}

.m-post-comment {
  width: auto;
  height: 10%;
  position: relative;
  padding-bottom: 20px;
}

.h-post-comment {
  width: auto;
  height: 75px;
  display: grid;
  grid-template-columns: 55px 1fr 55px;
  grid-template-rows: 10px 55px 10px;
  grid-template-areas: ". . ." "addimg commentbox postbtn" ". . .";
}

.m-post-comment-hover {
  width: 100%;
  position: relative;
  background: #F5F5F6;
  padding-bottom: 20px;
  top: -4px;
}

.m-comments {
  width: 80px;
  height: 30px;
  position: relative;
  float: left;
  top: 5px;
}

.m-reposts {
  width: 80px;
  height: 30px;
  position: relative;
  float: left;
  top: 5px;
}

.m-save {
  width: 30px;
  height: 30px;
  position: relative;
  float: left;
  top: 5px;
}

.m-header {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  float: left;
  margin: 4px 3px;
}

.m-icon {
  font-size: 25px;
  font-weight: 600;
  position: relative;
  float: left;
  color: #333;
}

.m-comments-s {
  width: 100%;
  position: relative;
  height: auto;
  padding-bottom: 18px;
  margin-top: 10px;
}

.m-comment-inside {
  width: 100%;
  position: relative;
  height: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 17px;
  box-sizing: content-box;
}

.m-c-more {
  width: 100px;
  height: 20px;
  margin-top: 10px;
  margin-left: 18px;
}

/* D O N A T E */

.donate-bar {
  width: 100%;
  height: 50px;
  top: 55px;
  position: fixed;
  background: #fff;
  z-index: 10;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.d-para {
  position: relative;
  top: 13.5px;
  margin-left: 13.5px;
  width: auto;
  float: left;
}

.d-icon {
  position: relative;
  float: right;
  top: 12.5px;
  margin-right: 12.5px;
  cursor: pointer;
}

.hover-post-textarea {
  width: 100%;
  position: relative;
  background: #ddd;
  border: none;
  border-radius: 5px;
  padding: 5px;
  float: left;
  overflow-y: hidden;
  resize: none;
  font-size: 18px;
  font-family: 'Rubik', sans-serif;
}

.reply-box {
  position: absolute;
  display: inline-block;
}

.reply-header {
  font-size: 12px;
  font-family: 'Rubik',sans-serif;
  position: relative;
  float: right;
  top: 1.6px;
}

.reply-icon {
  font-size: 15px;
  position: relative;
  float: left;
  margin-right: 7px;
  cursor: pointer;
}

.m-meme-icon {
  background: #eee;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  position: relative;
  float: left;
  color: #222;
  font-size: 21px;
  top: 0px;
  display: table-column;
  text-align: center;
  transition: 0.2s;
}

.h-meme-icon {
  background: #eee;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  position: relative;
  float: left;
  color: #222;
  font-size: 20px;
  top: 0px;
  grid-area: addimg;
  text-align: center;
  transition: 0.2s;
  margin: auto;
}

.m-meme-icon:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.m-meme-icon.main {
  float: right;
  margin-left: 10px;
  background: #222;
  color: #eee;
}

.m-c-reviews {
  width: 200px;
  height: 30px;
  position: relative;
  margin-left: 20px;
  right: 0;
}

.m-c-reviews.reply {
  opacity: 1;
  margin-left: 0px;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.m-comment-icon {
  font-size: 21px;
  font-weight: 600;
  position: relative;
  float: left;
  color: #333;
  margin-top: 1px;
}

.m-comment-icon.reply {
  font-size: 17px;
}

.comment-replies {
  width: auto;
  height: auto;
  margin-left: 30px;
}

.m-textarea {
  width: 83%;
  position: relative;
  border: none;
  border-bottom: 2px solid #333;
  background: none;
  position: relative;
  float: left;
  overflow-y: hidden;
  resize: none;
  height: 21px;
  margin-top: 7px;
}

.m-textarea.home {
  grid-area: commentbox;
  width: 96%;
  margin: auto auto auto auto;
  height: 26px;
  background: #eee;
  border: 0;
  border-radius: 5px;
  font-size: 20px;
  padding: 10px;
}

.post-textarea {
  padding: 10px;
  width: 96%;
  position: relative;
  border: 0;
  background: #f5f5f5;
  overflow-y: auto;
  resize: none;
  height: 231px;
  border-radius: 2px;
}

.textarea-wrap {
  position: relative;
  float: left;
  width: 579px;
  height: 300px;
  display: block;
}

.other-options-wrap {
  width: 100%;
  height: 37px;
  margin-top: 10px;
}

.option-btn {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #222;
  margin-right: 5px;
  background: #ddd;
  padding: 8px 16px 8px 16px;
  border-radius: 2px;
  border: none;
  width: 32%;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}

.tags-wrap {
  position: relative;
  float: left;
  width: 195px;
  margin-left: 10px;
  background: #f5f5f5;
  height: 300px;
}

.tags-wrap-inside {
  width: 100%;
  height: auto;
}

.reply-comment {
  padding-top: 10px;
  padding-bottom: 5px;
  border-left: 3px solid #ccc;
  padding-left: 5px;
}

.m-header-comment {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  float: left;
  margin: 4px 3px;
}

.m-header-comment.reply {
  font-size: 14px;
}

.comment-image {
  width: 200px;
  height: 200px;
  /*automatically adjust later*/
  position: relative;
  background: #ccc;
  margin-left: 20px;
  margin-top: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.comment-image.reply {
  width: 150px;
  height: 150px;
  margin-left: 0px;
}

.d-button {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 500;
  color: #eee;
  background: #4167f4;
  padding: 8px 16px 8px 16px;
  margin: 10px 12px 3px 2px;
  border-radius: 2px;
  border: none;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  float: right;
}

.g-signin2 {
  margin: 10px 0 0 40px;
  position: relative;
}

/* ADD TYPE */

/* NOTE:

  please add suggestions

 */

.category-blk {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fdfdfd;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 10000000;
  cursor: default;
  opacity: 1;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  overflow-y: hidden;
}

.post-blk {
  display: none;
  position: relative;
  width: 800px;
  background: #fdfdfd;
  border-radius: 2px;
  padding: 8px 8px 8px 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 100000;
  cursor: default;
  opacity: 1;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  overflow-y: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  top: 10px;
}

.c-title-holder {
  position: relative;
  width: 100%;
  height: 30px;
  background: #102027;
  color: #222;
  z-index: 100000;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.c-title-holder.dark {
  background: #222629;
  color: #dbd85e;
}

.searchbar.category {
  padding: 8px 8px 8px 10px;
  margin: unset;
  width: 177px;
}

.c-b-results {
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
  z-index: 100;
  min-height: 100px;
  background: #eee;
  border-radius: 2px;
}

.c-op-1 {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #444;
  background-color: inherit;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 10px;
  margin-bottom: 5px;
  z-index: 100;
}

.c-op-1.postit {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #444;
  background-color: inherit;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-left: 12px;
  margin-right: 10px;
  margin-bottom: 5px;
  z-index: 100;
}

.postit.home {
  grid-area: postbtn;
  margin: 0px;
  padding: 0px;
  position: relative;
  top: 0px;
}

.c-op-2 {
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #444;
  background-color: inherit;
  border: none;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  margin-left: 4px;
  margin-right: 10px;
  margin-bottom: 5px;
  z-index: 100000;
  float: right;
  top: 7px;
}

.c-button-hold {
  position: relative;
  display: inline-block;
  height: auto;
  width: 100%;
  /* margin-bottom: 8px; */
}

.c-button-hold.new-post {
  position: relative;
  display: inline-block;
  height: auto;
  width: 100%;
  top: 4px;
}

.c-result {
  width: 100%;
  height: 40px;
  margin-top: 5px;
  margin-bottom: 5px;
  cursor: pointer;
}

.c-b-wrapper {
  width: 100%;
  position: relative;
  margin: auto;
  z-index: 1000;
  border-right: 17px;
}

.c-result:hover {
  background: #eee;
}

.c-r-title {
  margin-left: 20px;
  font-size: 1em;
  position: relative;
  float: left;
  top: 9px;
  font-weight: 600;
}

.type.c {
  float: right;
  top: 5px;
  margin-right: 8px;
}

.c-content {
  height: auto;
  width: 100%;
  margin-bottom: 10px;
}

/* SHARING */

.category-blk.sharing {
  display: none;
}

.category-blk.stats {
  display: none;
}

/* FLOATING BUTTON */

.floating-box {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 55px;
  width: auto;
  z-index: 10000;
  user-select: none;
}

.floating-button {
  cursor: pointer;
  position: relative;
  float: left;
  margin-right: 10px;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  background: #4167f4;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.floating-button.secondary {
  cursor: pointer;
  position: relative;
  float: left;
  margin-right: 10px;
  top: 3px;
  height: 49px;
  width: 49px;
  border-radius: 50%;
  background: #f2f2f2;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.floating-button:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.floating {
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin: 0px;
  left: 23%;
  top: 23%;
  font-weight: 500;
}

.floating.secondary {
  color: #444;
  font-size: 30px;
  text-align: center;
  margin: 0px;
  left: 19%;
  top: 21%;
  font-weight: 500;
}

/*Recommended*/

.rec-content {
  position: relative;
  width: auto;
}

.tag-corridor {
  width: 1130px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.rt-header {
  font-family: 'Roboto Mono';
  font-size: 23px;
  color: #fff;
  display: inline-block;
  margin-top: 10px;
  margin-left: 20px;
}

.rec-tag {
  width: 100%;
  background: #f5f5f6;
  margin-top: 50px;
  margin-bottom: 50px;
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.rec-icon {
  position: relative;
  float: right;
  margin-right: 15px;
  font-size: 23px;
  color: #fff;
  display: inline-block;
  margin-top: 12px;
}

.rt-title {
  position: relative;
  width: 100%;
  height: 50px;
  background: #102027;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.rt-userbox {
  position: relative;
  height: auto;
  width: 100%;
}

.userbox-title {
  position: relative;
  width: 100%;
  height: 50px;
}

.rt-postchain {
  height: 160px;
  width: 100%;
  position: relative;
}

.rt-more {
  width: 100%;
  height: 30px;
  position: relative;
  display: inline-block;
}

.rt-fab {
  cursor: pointer;
  position: relative;
  margin-left: 30px;
  top: 5px;
  display: inline-block;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: #37474f;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.rt-fab:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.small-floating {
  left: 19%;
  top: 23%;
  color: #fff;
}

.rt-post {
  position: relative;
  top: 5px;
  left: 5px;
  float: left;
  height: 150px;
  width: 150px;
  background: #ddd;
  margin: 5px;
  cursor: pointer;
  border-radius: 3px;
}

/* ECONOMY */

.ec-content {
  position: relative;
  width: auto;
  background: #222629;
}

.sidenav-ec {
  display: block;
  position: fixed;
  float: left;
  height: 100%;
  width: 300px;
  background: #2d3235;
  overflow-y: auto;
  overflow-x: hidden;
}

.section-dark {
  height: 40px;
  width: 100%;
  top: 312px;
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #bdd1d0;
  border: none;
  font-size: 18px;
  display: table;
  cursor: pointer;
  transition-duration: 0.3s;
}

.section-light {
  height: 40px;
  width: 100%;
  top: 272px;
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #333;
  border: none;
  font-size: 18px;
  display: table;
  cursor: pointer;
  transition-duration: 0.3s;
}

.section-light.imp-info {
  top: 0px;
}

.section-light.subs {
  height: 44px;
}

.section-light:hover {
  margin-left: 5px;
}

.s-txt.highlighted {
  color: #4167f4;
}

.section-dark.imp-info {
  top: 0px;
}

.section-dark:hover {
  margin-left: 5px;
}

.s-txt.ec {
  margin-left: 75px;
}

.s-txt.h {
  margin-left: 85px;
}

.s-txt.foll {
  margin-left: 16px;
  color: #666;
  font-family: 'Rubik';
  font-weight: 400;
}

.section-avi {
  width: 27px;
  height: 27px;
  background: #bbb;
  border-radius: 50%;
  margin-left: 50px;
  display: inline-block;
  float: left;
  margin-top: 6px;
  position: relative;
}

.s-txt.a {
  margin-left: 55px;
}

.s-txt.ec.highlighted {
  color: #dbd85e;
}

.line.ec {
  background: #646d6d;
  width: 70%;
}

.ec-logo {
  position: relative;
  text-align: center;
  color: #dbd85e;
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  font-size: 45px;
  cursor: pointer;
  margin-top: 10px;
}

.home-logo {
  position: relative;
  text-align: center;
  background: #e1e2e1;
  font-family: 'Roboto Slab', serif;
  font-weight: bold;
  font-size: 45px;
  cursor: pointer;
  height: 60px;
  padding-top: 10px;
}

.expand-sidenav {
  font-size: 30px;
  font-weight: 600;
  transform: rotate(30deg);
  position: relative;
  top: 5px;
  cursor: pointer;
  transition-duration: 0.3s;
  position: relative;
  top: 24px;
  right: 22px;
  float: right;
}

.balance-span {
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  font-style: italic;
  font-size: 16px;
  color: inherit;
  opacity: .7;
  margin-left: 10px;
}

.ec-icons {
  margin-right: 70px;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  float: right;
}

.ec-icons.low {
  color: #a35555;
}

.ec-icons.idle {
  color: inherit
}

.ec-icons.up {
  color: #5da555;
}

.ec-top-bar {
  width: 100%;
  height: 60px;
  padding-top: 15px;
}

.ec-searchbar {
  position: relative;
  font-family: Roboto;
  padding: 8px 8px 8px 8px;
  font-size: 17px;
  width: 210px;
  height: 20px;
  color: #646d6d;
  float: left;
  margin-top: 10px;
  margin-left: 30px;
  border: 0;
  border-radius: 2px;
  background-color: #2d3235;
  z-index: 1000000;
}

.ec-search-results {
  display: none;
  position: fixed;
  width: 226px;
  max-height: 160px;
  background-color: #2d3235;
  z-index: 1000000;
  top: 75px;
  left: 330px;
  border-radius: 2px;
  opacity: 0.9;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.ec-account-settings {
  height: 100%;
  width: auto;
  position: relative;
  float: right;
}

.ec-account-info {
  height: 60px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: auto;
  position: relative;
  float: left;
  color: #bdd1d0;
}

.account-info {
  height: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: auto;
  position: relative;
  float: left;
  color: #222;
}

.account-wrapper {
  display: table;
  justify-content: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  width: 180px;
}

.account-para {
  font-family: 'Roboto';
  font-size: 16px;
  color: #666;
}

.ec-settings {
  color: #bdd1d0;
  font-size: 30px;
  margin-right: 15px;
  margin-top: 13px;
  margin-left: 30px;
}

.settings {
  color: #222;
  font-size: 30px;
  margin-right: 15px;
  margin-top: 13px;
  margin-left: 30px;
  transition-duration: 0.3s;
}

.settings:hover {
  transform: rotate(60deg);
  transform-origin: center;
}

.ec-meme-title {
  position: relative;
  margin-left: 30px;
  color: #bdd1d0;
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 45px;
  cursor: default;
  margin-top: 10px;
  float: left;
}

.ec-icons.large {
  font-size: 55px;
  float: left;
  font-weight: 600;
  margin-left: 10px;
  float: left;
}

.ec-meme-save {
  position: relative;
  float: right;
  text-align: center;
  color: #bdd1d0;
  font-family: 'Roboto';
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  margin-top: 25px;
  margin-right: 50px;
  float: right;
}

.ec-title {
  height: 80px;
}

.ec-graph {
  width: 95%;
  height: 700px;
  margin-right: auto;
  margin-left: auto;
  /* background: #2d3235; */
}

.ec-stats-info {
  width: 95%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.ec-invest {
  position: relative;
  margin-left: 10px;
  color: #bdd1d0;
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 35px;
  cursor: default;
  float: left;
}

.ec-invest-input {
  all: unset;
  width: 85px;
  position: relative;
  color: #818c8b;
  margin-left: 10px;
  font-family: 'Roboto Slab';
  font-weight: bold;
  top: -4px;
}

.scroll-hide {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 17px;
  /* Increase/decrease this value for cross-browser compatibility */
  box-sizing: content-box;
  /* So the width will be 100% + 17px */
}

.ec-lifetime {
  position: relative;
  float: right;
  margin: 0;
}

.ec-h-lifetime {
  width: 130px;
  height: 18px;
  position: relative;
  float: left;
  font-family: Roboto;
  font-size: 14px;
  font-weight: lighter;
  text-align: left;
  font-style: italic;
  top: -20px;
  color: #bdd1d0;
}

.lifetime-box {
  background: #2d3235;
  height: 100px;
  width: 400px;
  position: relative;
}

.s-dropdown.ec {
  opacity: 0.8;
  display: none;
  z-index: 1000000;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 300px;
  background: #2d3235;
  color: #fff;
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.s-d-titlebox.ec {
  width: auto;
  height: 40px;
  color: #dbd85e;
  background: #222629;
  padding: 16px;
}

.section.ec {
  height: 40px;
  width: 100%;
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #bdd1d0;
  border: none;
  font-size: 18px;
  display: table;
  cursor: pointer;
}

.section.ec:hover {
  background: #2d3235;
}

.section.ec:hover .settings-icon.ec {
  margin-left: 35px;
}

.long-line.ec {
  background: #222629;
}

.settings-icon.ec {
  transition-duration: 0.3s;
  color: #bdd1d0;
}

.ec-result-section {
  height: 40px;
  width: 100%;
  position: relative;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 600;
  color: #bdd1d0;
  border: none;
  font-size: 18px;
  display: table;
  cursor: pointer;
  transition-duration: 0.3s;
}

.s-txt.ec.result {
  margin-left: 20px;
  transition-duration: 0.3s;
}

.ec-result-section:hover .s-txt.ec.result {
  margin-left: 25px;
}

.ec-icons.results {
  margin-right: 10px;
}

.ec-logo-info {
  position: absolute;
  z-index: 10;
  width: 100%;
  background: #2d3235;
}

.balance-message {
  display: none;
  width: 800px;
  height: 600px;
  background: #2d3235;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  z-index: 1000000;
  opacity: 0.8;
}

.bm-lock {
  display: block;
  width: 300px;
  height: 50px;
  position: absolute;
  background: #343a3d;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bm-content {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.input.ec {
  top: 13px;
  color: #777;
  font-weight: 600;
}

.ec-sub-field {
  font: 'Roboto';
  font-size: 12px;
  color: #555;
  font-weight: 600;
  position: relative;
  float: left;
}

.ec-sub-field.ec-link {
  color: #dbd85e;
  margin-left: 10px;
  font-weight: 500;
  cursor: pointer;
}

.sidenav-ec.small {
  width: 300px;
  overflow-y: hidden;
  background: #222629;
  top: 0px;
}

.bm-transaction {
  width: auto;
  height: 100px;
  border-bottom: 1px solid #343a3d;
  position: relative;
  top: 30px;
  margin-left: 17px;
}

.bm-t-title {
  font-size: 18px;
  font-family: 'Roboto Mono';
  font-weight: 600;
  margin-left: 10px;
  color: #737f7e;
}

.bm-t-h {
  float: left;
  position: relative;
  margin-left: 10px;
  font-size: 35px;
  color: #454e51;
}

.bm-db {
  position: relative;
  font-size: 20px;
  color: #454e51;
  margin-left: 2px;
  top: 13.5px;
}

.bm-t-date {
  font-weight: 300;
  font-style: italic;
  position: relative;
  font-size: 12px;
  color: #454e51;
  top: 13.5px;
  text-align: right;
}

.bm-main-content {
  position: relative;
  margin-left: 300px;
  width: auto;
  height: auto;
}

.money-wrapper {
  padding-top: 10px;
  padding-left: 30px;
  height: 130px;
  background: #3c4347;
}

.bm-main-moneyyy {
  float: left;
  position: relative;
  margin-left: 10px;
  font-size: 100px;
  color: #222629;
}

.bm-db-moneyyy {
  position: relative;
  font-size: 60px;
  color: #222629;
  margin-left: 2px;
  top: 37px;
}

/* POSTS */

.post {
  width: 400px;
  height: auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.post-header {
  position: relative;
  width: 100%;
  height: 45px;
  background: #222629;
  color: #fff;
  z-index: 100000;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.post-title {
  position: relative;
  float: left;
  font-family: 'Rubik';
  top: 6.5px;
  color: inherit;
  font-size: 26px;
  font-weight: 500;
  margin-left: 12px;
}

.post-content {
  width: auto;
  background: #f5f5f5;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  padding: 8px;
}

h6 {
  font-family: 'Work Sans';
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 21px;
  padding: 8px 16px 0px 16px;
  color: #222;
  display: inline-block;
}

.post-para {
  font-family: 'Work Sans';
  font-size: 22px;
  padding: 16px;
}

.post.m-post {
  overflow: hidden;
  display: none;
  position: relative;
  width: 800px;
  background: #fdfdfd;
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 100000;
  cursor: default;
  opacity: 1;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  overflow-y: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  top: 10px;
}

.vote-selected {
  color: #4167f1;
}

/* EXP POST */

.exp-post-corridor {
  height: auto;
  width: 600px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  display: none;
  z-index: 100;
  float: right;
  margin-right: 55px;
  transition-duration: 0.3s;
  opacity: 0;
}

.exp-post {
  background: #000;
  position: relative;
  top: 70px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 600px;
  height: auto;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition-duration: 0.3s;
}

.exp-card-content {
  display: inline-block;
  padding-right: 10px;
  width: 100%;
}

.exp-post-image {
  width: 600px;
  height: 600px;
  display: block;
  background: #eee;
}

.exp-post-info {
  width: 600px;
  height: 40px;
  background: #fff;
}

.tl-post-title {
  opacity: 0;
  display: none;
  position: relative;
  left: -140px;
  font-size: 23px;
  font-weight: 600;
  transition-duration: 0.3s;
}

.exp-card {
  top: 70px;
  width: 300px;
  position: relative;
  display: inline-block;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 100px;
  transition-duration: 0.3s;
}

.exp-card.long {
  width: auto;
  max-width: 430px;
  cursor: pointer;
}

.exp-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.exp-post:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.album-text.small {
  font-size: 15px;
}

.small-post {
  width: 50px;
  height: 50px;
  background: #f5f5f6;
  margin-left: 10px;
  margin-bottom: 10px;
  position: relative;
  float: left;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.exp-card-title {
  width: 100%;
  height: 33px;
  margin-bottom: 10px;
  background: #eee;
}

.card-date {
  height: 18px;
  position: relative;
  float: right;
  font-family: Roboto;
  font-size: 14px;
  font-weight: lighter;
  text-align: left;
  margin-top: 11px;
  margin-right: 8px;
}

.card-title {
  font-family: "Roboto Mono", serif;
  color: #444;
  font-size: 18px;
  font-weight: 600;
  padding-left: 10px;
  padding-top: 4px;
  width: auto;
  display: inline-block;
}

.exp-card-block {
  width: auto;
  height: 45px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 2px;
  background: #f5f5f6;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition-duration: 0.2s;
}

.exp-card-block:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.card-icon {
  cursor: pointer;
  text-align: center;
  position: relative;
  display: block;
  color: #eee;
  top: 9px;
}

.exp-card-square {
  width: 45px;
  height: 45px;
  position: relative;
  float: left;
  background: #333;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.card-library-title {
  padding-left: 20px;
  display: inline-block;
  max-width: 100%;
  font-family: "Roboto Mono", serif;
  font-size: 18px;
  color: #444;
  font-size: 20px;
  position: relative;
  top: 7.8px;
}

.upload-popup-hover {
  position: absolute;
  z-index: 1000000;
  right: 10px;
  bottom: 10px;
  width: 362px;
  max-height: 362px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 2px;
}

.upload-popup-bar {
  display: block;
  background: #222;
  color: #eee;
  height: 21px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  padding: 16px 0 16px 16px;
}

.upload-popup-item {
  display: block;
  height: 22px;
  padding: 16px 0px 16px 16px;
  cursor: pointer;
}

.upload-popup-item:hover {
  background: #eee;
}

.upload-popup-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  color: #eee;
}

.upload-popup-content {
  overflow-y: scroll;
  max-height: 300px;
}

.material-icons.upload {
  color: #999;
  padding-right: 10px;
  top: 0px;
}

.upload-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  color: #555;
  margin-top: 1px;
}

.upload-circle {
  width: 22px;
  height: 22px;
  background: #ddd;
  border-radius: 50%;
  margin-right: 25px;
  position: relative;
  float: right;
}

.progress-circle {
  font-size: 5px;
  margin-right: 21px;
  margin-top: -4px;
  position: relative;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 5px;
  float: right;
}

.progress-circle:after {
  border: none;
  position: absolute;
  top: 3px;
  left: 3px;
  text-align: center;
  display: block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-color: #ddd;
  content: " ";
}

.left-half-clipper {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  clip: rect(0, 30px, 30px, 15px);
}

.progress-circle.over50 .left-half-clipper {
  clip: rect(auto, auto, auto, auto);
}

.value-bar {
  position: absolute;
  clip: rect(0, 15px, 30px, 0);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 6px solid #4167f4;
  box-sizing: border-box;
}

.progress-circle.over50 .first50-bar {
  position: absolute;
  clip: rect(0, 30px, 30px, 15px);
  background-color: #4167f4;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.progress-circle:not(.over50) .first50-bar {
  display: none;
}

.progress-circle.p0 .value-bar {
  display: none;
}

.progress-circle.p1 .value-bar {
  transform: rotate(4deg);
}

.progress-circle.p2 .value-bar {
  transform: rotate(7deg);
}

.progress-circle.p3 .value-bar {
  transform: rotate(11deg);
}

.progress-circle.p4 .value-bar {
  transform: rotate(14deg);
}

.progress-circle.p5 .value-bar {
  transform: rotate(18deg);
}

.progress-circle.p6 .value-bar {
  transform: rotate(22deg);
}

.progress-circle.p7 .value-bar {
  transform: rotate(25deg);
}

.progress-circle.p8 .value-bar {
  transform: rotate(29deg);
}

.progress-circle.p9 .value-bar {
  transform: rotate(32deg);
}

.progress-circle.p10 .value-bar {
  transform: rotate(36deg);
}

.progress-circle.p11 .value-bar {
  transform: rotate(40deg);
}

.progress-circle.p12 .value-bar {
  transform: rotate(43deg);
}

.progress-circle.p13 .value-bar {
  transform: rotate(47deg);
}

.progress-circle.p14 .value-bar {
  transform: rotate(50deg);
}

.progress-circle.p15 .value-bar {
  transform: rotate(54deg);
}

.progress-circle.p16 .value-bar {
  transform: rotate(58deg);
}

.progress-circle.p17 .value-bar {
  transform: rotate(61deg);
}

.progress-circle.p18 .value-bar {
  transform: rotate(65deg);
}

.progress-circle.p19 .value-bar {
  transform: rotate(68deg);
}

.progress-circle.p20 .value-bar {
  transform: rotate(72deg);
}

.progress-circle.p21 .value-bar {
  transform: rotate(76deg);
}

.progress-circle.p22 .value-bar {
  transform: rotate(79deg);
}

.progress-circle.p23 .value-bar {
  transform: rotate(83deg);
}

.progress-circle.p24 .value-bar {
  transform: rotate(86deg);
}

.progress-circle.p25 .value-bar {
  transform: rotate(90deg);
}

.progress-circle.p26 .value-bar {
  transform: rotate(94deg);
}

.progress-circle.p27 .value-bar {
  transform: rotate(97deg);
}

.progress-circle.p28 .value-bar {
  transform: rotate(101deg);
}

.progress-circle.p29 .value-bar {
  transform: rotate(104deg);
}

.progress-circle.p30 .value-bar {
  transform: rotate(108deg);
}

.progress-circle.p31 .value-bar {
  transform: rotate(112deg);
}

.progress-circle.p32 .value-bar {
  transform: rotate(115deg);
}

.progress-circle.p33 .value-bar {
  transform: rotate(119deg);
}

.progress-circle.p34 .value-bar {
  transform: rotate(122deg);
}

.progress-circle.p35 .value-bar {
  transform: rotate(126deg);
}

.progress-circle.p36 .value-bar {
  transform: rotate(130deg);
}

.progress-circle.p37 .value-bar {
  transform: rotate(133deg);
}

.progress-circle.p38 .value-bar {
  transform: rotate(137deg);
}

.progress-circle.p39 .value-bar {
  transform: rotate(140deg);
}

.progress-circle.p40 .value-bar {
  transform: rotate(144deg);
}

.progress-circle.p41 .value-bar {
  transform: rotate(148deg);
}

.progress-circle.p42 .value-bar {
  transform: rotate(151deg);
}

.progress-circle.p43 .value-bar {
  transform: rotate(155deg);
}

.progress-circle.p44 .value-bar {
  transform: rotate(158deg);
}

.progress-circle.p45 .value-bar {
  transform: rotate(162deg);
}

.progress-circle.p46 .value-bar {
  transform: rotate(166deg);
}

.progress-circle.p47 .value-bar {
  transform: rotate(169deg);
}

.progress-circle.p48 .value-bar {
  transform: rotate(173deg);
}

.progress-circle.p49 .value-bar {
  transform: rotate(176deg);
}

.progress-circle.p50 .value-bar {
  transform: rotate(180deg);
}

.progress-circle.p51 .value-bar {
  transform: rotate(184deg);
}

.progress-circle.p52 .value-bar {
  transform: rotate(187deg);
}

.progress-circle.p53 .value-bar {
  transform: rotate(191deg);
}

.progress-circle.p54 .value-bar {
  transform: rotate(194deg);
}

.progress-circle.p55 .value-bar {
  transform: rotate(198deg);
}

.progress-circle.p56 .value-bar {
  transform: rotate(202deg);
}

.progress-circle.p57 .value-bar {
  transform: rotate(205deg);
}

.progress-circle.p58 .value-bar {
  transform: rotate(209deg);
}

.progress-circle.p59 .value-bar {
  transform: rotate(212deg);
}

.progress-circle.p60 .value-bar {
  transform: rotate(216deg);
}

.progress-circle.p61 .value-bar {
  transform: rotate(220deg);
}

.progress-circle.p62 .value-bar {
  transform: rotate(223deg);
}

.progress-circle.p63 .value-bar {
  transform: rotate(227deg);
}

.progress-circle.p64 .value-bar {
  transform: rotate(230deg);
}

.progress-circle.p65 .value-bar {
  transform: rotate(234deg);
}

.progress-circle.p66 .value-bar {
  transform: rotate(238deg);
}

.progress-circle.p67 .value-bar {
  transform: rotate(241deg);
}

.progress-circle.p68 .value-bar {
  transform: rotate(245deg);
}

.progress-circle.p69 .value-bar {
  transform: rotate(248deg);
}

.progress-circle.p70 .value-bar {
  transform: rotate(252deg);
}

.progress-circle.p71 .value-bar {
  transform: rotate(256deg);
}

.progress-circle.p72 .value-bar {
  transform: rotate(259deg);
}

.progress-circle.p73 .value-bar {
  transform: rotate(263deg);
}

.progress-circle.p74 .value-bar {
  transform: rotate(266deg);
}

.progress-circle.p75 .value-bar {
  transform: rotate(270deg);
}

.progress-circle.p76 .value-bar {
  transform: rotate(274deg);
}

.progress-circle.p77 .value-bar {
  transform: rotate(277deg);
}

.progress-circle.p78 .value-bar {
  transform: rotate(281deg);
}

.progress-circle.p79 .value-bar {
  transform: rotate(284deg);
}

.progress-circle.p80 .value-bar {
  transform: rotate(288deg);
}

.progress-circle.p81 .value-bar {
  transform: rotate(292deg);
}

.progress-circle.p82 .value-bar {
  transform: rotate(295deg);
}

.progress-circle.p83 .value-bar {
  transform: rotate(299deg);
}

.progress-circle.p84 .value-bar {
  transform: rotate(302deg);
}

.progress-circle.p85 .value-bar {
  transform: rotate(306deg);
}

.progress-circle.p86 .value-bar {
  transform: rotate(310deg);
}

.progress-circle.p87 .value-bar {
  transform: rotate(313deg);
}

.progress-circle.p88 .value-bar {
  transform: rotate(317deg);
}

.progress-circle.p89 .value-bar {
  transform: rotate(320deg);
}

.progress-circle.p90 .value-bar {
  transform: rotate(324deg);
}

.progress-circle.p91 .value-bar {
  transform: rotate(328deg);
}

.progress-circle.p92 .value-bar {
  transform: rotate(331deg);
}

.progress-circle.p93 .value-bar {
  transform: rotate(335deg);
}

.progress-circle.p94 .value-bar {
  transform: rotate(338deg);
}

.progress-circle.p95 .value-bar {
  transform: rotate(342deg);
}

.progress-circle.p96 .value-bar {
  transform: rotate(346deg);
}

.progress-circle.p97 .value-bar {
  transform: rotate(349deg);
}

.progress-circle.p98 .value-bar {
  transform: rotate(353deg);
}

.progress-circle.p99 .value-bar {
  transform: rotate(356deg);
}

.progress-circle.p100 .value-bar {
  transform: rotate(360deg);
}

/* MEDIA TAGS */

/* MOBILE */

/* @media screen and (max-width: 1200px) {
  .sidenav-home {
    z-index: 10000000;
    display: none;
    width: 500px;
    left: -500px;
  }
  .section-light {
    height: 70px;
    top: 382px;
  }
  .section-light.subs {
    height: 85px;
  }
  .section-avi {
    height: 50px;
    width: 50px;
  }
  .h-content {
    margin-left: 0px;
  }
  .reposted {
    height: 29px;
    width: auto;
    top: -31px;
  }
  .m-handle {
    font-size: 23px;
  }
  .m-icon {
    font-size: 29px !important;
  }
  .m-text-box {
    height: 95px;
    background: #efefef;
  }
  .m-pp {
    height: 60px;
    width: 60px;
  }
  .m-OP {
    font-size: 30px;
  }
  .followmp {
    font-size: 22px;
    padding: 10px 18px;
    margin-top: 24px;
  }
  .m-header {
    font-size: 25px;
    margin-left: 30px;
  }
  .m-likes, .m-reposts, .m-comments {
    width: 100px;
  }
  .m-date {
    font-size: 22px;
  }
  .m-comment-wrapper {
    display: none;
  }
  .m-post-comment {
    display: none;
  }
  .h-post-comment {
    display: none;
  }
  .post-corridor {
    top: 130px;
    position: relative;
  }
  .top-bar {
    top: -1px;
    position: fixed;
    background: #222;
    height: 90px;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  }
  .settings {
    font-size: 60px;
    margin-right: 35px;
    margin-top: 15px;
    margin-left: 30px;
    color: #eee;
  }
  .openSidenav {
    float: left;
    font-size: 60px;
    margin-right: 35px;
    margin-top: 15px;
    margin-left: 30px;
    color: #eee;
  }
  .sd-infoholder.disapear {
    display: none;
  }
  .home-topbar-image {
    height: 50px !important;
  }
  .searchbar {
    font-size: 34px;
    width: 330px;
    height: 40px;
    margin-top: 18px;
    background: #333;
    color: #eee;
  }
  .search-g {
    font-size: 50px;
  }
  .account-info {
    margin-top: 20px;
  }
  .input-searchbar {
    color: #eee !important;
    width: 270px !important;
  }
  .s-dropdown {
    width: 450px;
  }
  .section {
    height: 70px;
  }
  .settings-icon {
    font-size: 50px;
  }
  .s-txt {
    font-size: 30px;
    top: 13.5px;
  }
  .openSidenav {
    display: block !important;
  }
  .post.m-post {
    top: 130px;
  }
} */

/* ANIMATIONS */

.animation-box {
  height: 200px;
  width: 200px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0px 40px 60px -20px rgba(0, 0, 0, 0.2)
}

.tickmark {
  width: 10px;
  height: 10px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tickmark>span {
  display: block;
  width: 10px;
  height: 10px;
  background: #ddd;
  position: absolute;
}

.tickmark>span:nth-child(1) {
  background: red;
  width: 40px;
  animation: span1 10s linear infinite;
}

.tickmark>span:nth-child(2) {
  background: green;
  width: 40px;
  transform: rotate(-45deg);
  animation: span2 1s linear infinite;
}

/* RED ELEMENT */

@keyframes span1 {
  0%, 70% {
    transform: rotate(45deg);
    transform: translate(0px, 0px);
  }
  100% {
    transform: rotate(90deg);
    transform: translate(-10px, -10px);
  }
}

/* GREEN ELEMENT */

@keyframes span2 {
  0%, 70% {
    width: 40px;
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
    transform: translate(-10px, -10px);
  }
}
