/* ************************************************************************************ */
/* Guidelines
/* ************************************************************************************ */
/*

INTERACTIVE STYLES & BUTTONS
Background default: x
Background hover: x + 17
Background active: x - 17
Border: x - 20

BLUE DEFAULT: #3098dc
BLUE BORDER DEFAULT: #2b89c6
BLUE HOVER: #3ba4e8
BLUE ACTIVE: #2686c4


*/
/* ************************************************************************************ */
/* CSS RESET
/* ************************************************************************************ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
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,
container,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul {
  font-size: 12px;
  list-style-type: disc;
  margin-left: 15px;
}
li {
  font-size: 12px;
  margin-top: 8px;
}

/* ************************************************************************************ */
/* GLOBAL
/* ************************************************************************************ */
/*
----------------------------------------------
DEFAULT GLOBAL SETTINGS
----------------------------------------------
*/
@charset "utf-8";
html,
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  margin: 0px;
  padding: 0px;
  min-width: 960px;
  background-color: #fff;
  color: #777777;
  width: 100%;
  height: 100%;
  line-height: 1.3;
}

a:link {
  text-decoration: none;
  color: #3098dc;
  outline: none;
}
a:visited {
  text-decoration: none;
  color: #3098dc;
}
a:hover {
  text-decoration: none;
  color: #3ba4e8;
}
a:active {
  text-decoration: none;
  color: #2686c4;
}
a:focus {
  text-decoration: none;
  color: #2686c4;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #333;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #333;
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #333;
  opacity: 1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333;
}
:placeholder-shown {
  /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color: #333;
}

abbr {
  text-decoration: none;
}

.icon {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat top left;
  display: block;
  float: left;
}
#performanceStatus {
  position: fixed;
  bottom: 2px;
  right: 2px;
  font-size: 9px;
}

.clearfix {
  clear: both;
}

.b {
  font-weight: bold;
}

hr {
  height: 1px;
  border: none;
  background-color: #dfdfdf;
  box-shadow: 0 0 1px #fff;
  -moz-box-shadow: 0 1px 0 #fff;
  -webkit-box-shadow: 0 1px 0 #fff;
  clear: both;
}

input,
textarea,
select {
  border: 1px solid #c2c7cd;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 10px;
  margin: 2px;
  margin-bottom: 5px;
  background-color: #fdfdfd;
  font-size: 14px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  transition-property: border-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  vertical-align: top;
  transition: height 0.2s;
  -webkit-transition: height 0.2s;
  -moz-transition: height 0.2s;
}
input[type="radio"] {
  cursor: pointer;
}
label {
  cursor: pointer;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2b89c6;
  background-color: #fff;
}
input.optional,
textarea.optional,
select.optional {
  background-color: #f6f6f6;
}

h1 {
  font-size: 40px;
  padding-bottom: 20px;
  font-weight: bold;
}
h2 {
  font-size: 30px;
  padding-bottom: 12px;
  font-weight: bold;
}
h3 {
  font-size: 20px;
  padding-bottom: 6px;
  font-weight: bold;
  margin-top: 10px;
}
h4 {
  font-size: 16px;
  padding-bottom: 4px;
  font-weight: bold;
}
h5 {
  font-size: 14px;
  padding-bottom: 2px;
  font-weight: bold;
}

.button {
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 12px;
  padding-left: 12px;
  font-size: 12px;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #3098dc;
  color: #fff !important;
  border: 1px solid #2b89c6;
}
.button:hover {
  background-color: #3ba4e8;
}
.button:active {
  background-color: #2686c4;
}
.button.fill {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 0px;
  padding-left: 0px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.button.small {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 6px;
  padding-left: 6px;
  font-size: 10px;
  margin-bottom: 0px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-weight: normal;
}
.button.tiny {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-right: 3px;
  padding-left: 3px;
  font-size: 8px;
  margin-bottom: 0px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-weight: normal;
  border: 0px;
  float: left;
}
.button.giant {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 24px;
  padding-left: 24px;
  font-size: 14px;
  margin-bottom: 0px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
}

.status {
  padding: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 12px;
}
.status span.icon {
  background-position: -468px -49px;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-top: -2px;
}
.status.green span.icon {
  background-position: -468px -9px;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-top: -2px;
}

/*
----------------------------------------------
COLORS
----------------------------------------------
*/

a.link-white:link {
  text-decoration: none;
  color: #f2f2f2;
  outline: none;
}
a.link-white:visited {
  text-decoration: none;
  color: #f2f2f2;
}
a.link-white:hover {
  text-decoration: none;
  color: #fff;
}
a.link-white:active {
  text-decoration: none;
  color: #fff;
}
a.link-white:focus {
  text-decoration: none;
  color: #fff;
}

a.link-black:link {
  text-decoration: none;
  color: #222222;
  outline: none;
}
a.link-black:visited {
  text-decoration: none;
  color: #222222;
}
a.link-black:hover {
  text-decoration: none;
  color: #343434;
}
a.link-black:active {
  text-decoration: none;
  color: #101010;
}
a.link-black:focus {
  text-decoration: none;
  color: #101010;
}

a.link-grey:link {
  text-decoration: none;
  color: #999999;
  outline: none;
}
a.link-grey:visited {
  text-decoration: none;
  color: #999999;
}
a.link-grey:hover {
  text-decoration: none;
  color: #ababab;
}
a.link-grey:active {
  text-decoration: none;
  color: #878787;
}
a.link-grey:focus {
  text-decoration: none;
  color: #878787;
}

a.link-grey2:link {
  text-decoration: none;
  color: #777;
  outline: none;
}
a.link-grey2:visited {
  text-decoration: none;
  color: #777;
}
a.link-grey2:hover {
  text-decoration: none;
  color: #999;
}
a.link-grey2:active {
  text-decoration: none;
  color: #666;
}
a.link-grey2:focus {
  text-decoration: none;
  color: #666;
}

a.link-red:link {
  text-decoration: none;
  color: #e74c3c;
  outline: none;
}
a.link-red:visited {
  text-decoration: none;
  color: #e74c3c;
}
a.link-red:hover {
  text-decoration: none;
  color: #eb6c5d;
}
a.link-red:active {
  text-decoration: none;
  color: #e4301c;
}
a.link-red:focus {
  text-decoration: none;
  color: #e4301c;
}

a.link-green:link {
  text-decoration: none;
  color: #27ae60;
  outline: none;
}
a.link-green:visited {
  text-decoration: none;
  color: #27ae60;
}
a.link-green:hover {
  text-decoration: none;
  color: #2ece72;
}
a.link-green:active {
  text-decoration: none;
  color: #209351;
}
a.link-green:focus {
  text-decoration: none;
  color: #209351;
}

a.link-bronze:link {
  text-decoration: none;
  color: #cc9966;
  outline: none;
}
a.link-bronze:visited {
  text-decoration: none;
  color: #cc9966;
}
a.link-bronze:hover {
  text-decoration: none;
  color: #d4aa7f;
}
a.link-bronze:active {
  text-decoration: none;
  color: #d4aa7f;
}
a.link-bronze:focus {
  text-decoration: none;
  color: #d4aa7f;
}

a.link-silver:link {
  text-decoration: none;
  color: #c5c5c5;
  outline: none;
}
a.link-silver:visited {
  text-decoration: none;
  color: #c5c5c5;
}
a.link-silver:hover {
  text-decoration: none;
  color: #d6d6d6;
}
a.link-silver:active {
  text-decoration: none;
  color: #d6d6d6;
}
a.link-silver:focus {
  text-decoration: none;
  color: #d6d6d6;
}

a.link-gold:link {
  text-decoration: none;
  color: #f7c600;
  outline: none;
}
a.link-gold:visited {
  text-decoration: none;
  color: #f7c600;
}
a.link-gold:hover {
  text-decoration: none;
  color: #ffd21a;
}
a.link-gold:active {
  text-decoration: none;
  color: #ffd21a;
}
a.link-gold:focus {
  text-decoration: none;
  color: #ffd21a;
}

a.link-legendary:link {
  text-decoration: none;
  color: #ff800a;
  outline: none;
  text-shadow: -1px 1px 6px #fff, 1px -1px 6px #fff;
  box-shadow: 0px 1px 6px rgba(252, 145, 47, 0.6) inset,
    0px 0px 12px rgba(252, 145, 47, 0.6);
}
a.link-legendary:visited {
  text-decoration: none;
  color: #ff800a;
}
a.link-legendary:hover {
  text-decoration: none;
  color: #ff912b;
}
a.link-legendary:active {
  text-decoration: none;
  color: #ff912b;
}
a.link-legendary:focus {
  text-decoration: none;
  color: #ff912b;
}

.color-blue {
  color: #3098dc;
}

.green {
  background-color: #27ae60;
  border-color: #1f8e4f;
}
.button.green:hover {
  background-color: #2ece72;
}
.button.green:active {
  background-color: #209351;
}

.orange {
  background-color: #e67e22;
  border-color: #c96c17;
}
.button.orange:hover {
  background-color: #e99446;
}
.button.orange:active {
  background-color: #cf6f18;
}

.red {
  background-color: #e74c3c;
  border-color: #df2f1b;
}
.button.red:hover {
  background-color: #eb6c5d;
}
.button.red:active {
  background-color: #e4301c;
}

.black {
  background-color: #333333;
  border-color: #484848;
}
.button.black:hover {
  background-color: #454545;
}
.button.black:active {
  background-color: #212121;
}

.grey {
  border: 1px solid #a7b0b4;
  background-color: #bdc3c7;
}
.button.grey:hover {
  background-color: #d2d6d8;
}
.button.grey:active {
  background-color: #aab3b7;
}

/* SPECIAL COLORS */
.mark-op {
  color: #3098dc;
  font-weight: bold;
}
.mature-button {
  color: #d10023;
  border-radius: 3px;
  border: 1px solid;
  display: inline-block;
  font-size: 10px;
  padding: 0 4px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 10px;
}
.viral-button {
  color: #1bbc09;
  border-radius: 3px;
  border: 1px solid;
  display: inline-block;
  font-size: 10px;
  padding: 0 4px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-top: -3px;
  margin-left: 10px;
  display: none;
}
/* ************************************************************************************ */
/* GLOBAL --> DETAILS
/* ************************************************************************************ */
.fll {
  float: left;
}
.flr {
  float: right;
}

.invisible {
  display: none;
}

/* ************************************************************************************ */
/* BUILDUP
/* ************************************************************************************ */
#header-space {
  height: 50px;
}
#header-container {
  width: 100%;
  background-color: #272b2b;
  z-index: 100;
  position: fixed;
  top: 0px;
  left: 0px;
}
#header {
  min-width: 940px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  color: #999999;
  font-size: 13px;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
}

#content-container {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #ebeced;
  z-index: 90;
}
#content {
  min-width: 860px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
#content.duo {
  width: 920px;
}
#content.center {
  width: 600px;
}
#content.post {
  width: 960px;
}

#footer-container {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  border-top: 1px solid #c5c8cb;
  z-index: 80;
}
#footer {
  width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* SCROLLING ADS */
#scrolling-ad-1 {
  position: relative;
  width: 300px;
  height: 250px;
  overflow: hidden;
}
#scrolling-ad-1.fixed {
  position: fixed;
  top: 70px;
  left: 0px;
}
#scrolling-ad-1.fixed.with-verify {
  position: fixed;
  top: 117px;
  left: 0px;
}

#scrolling-ad-2 {
  position: relative;
  width: 300px;
  height: 250px;
  overflow: hidden;
}
#scrolling-ad-2.fixed {
  position: fixed;
  top: 70px;
  left: 0px;
}
#scrolling-ad-2.fixed.with-verify {
  position: fixed;
  top: 117px;
  left: 0px;
}

/* ************************************************************************************ */
/* HEADER
/* ************************************************************************************ */
#header a#logo {
  color: #fff;
  margin-top: 15px;
  font-size: 20px;
  margin-left: 0px;
  margin-right: 20px;
  float: left;
}

#header a {
  color: #bbbbbb;
}
#header a:hover {
  color: #dddddd;
}
#header a:active {
  color: #fff;
}
#header a.active {
  color: #fff;
}

#header .fll {
  margin-top: 17px;
}
#header .fll a {
  margin-left: 10px;
  margin-right: 10px;
}

#header .flr {
  margin-top: 10px;
}
#header .flr a.search-icon {
  margin-right: 15px;
  margin-top: 6px;
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -111px -107px;
  width: 18px;
  height: 18px;
}
#header .flr a.search-icon.active {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -111px -82px;
}
#header .flr a.search-icon:hover {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -111px -82px;
  opacity: 0.7;
}
#header-search-container {
  background-color: #4491d2;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #000;
  border-bottom: 1px solid #26699f;
  z-index: 100;
  position: fixed;
  top: 50px;
  left: 0px;
  color: #cee8fc;
  display: none;
}
#header-search-container #header-search {
  width: 860px;
  margin-left: auto;
  margin-right: auto;
}
#header-search-container #header-search #header-search-q {
  height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  color: #5f6476;
  background-color: #eee;
  border-color: #ddd;
  width: 800px;
  min-width: 30px;
  font-size: 22px;
  float: left;
}
#header-search-container #header-search #header-search-q:focus {
  color: #4b4f5d;
  background-color: #fff;
  border-color: #ddd;
}
#header-search-container #header-search .headerSearchContainerClose {
  cursor: pointer;
  float: right;
  margin-top: 11px;
  font-size: 16px;
}
#header-search-container #header-search .headerSearchContainerClose:hover {
  opacity: 0.7;
}

#header .flr a.notifications-icon {
  margin-right: 15px;
  margin-top: 6px;
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -4px -105px;
  width: 17px;
  height: 18px;
}
#header .flr a.notifications-icon.active {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -4px -81px;
}
#header .flr a.notifications-icon:hover {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -4px -81px;
  opacity: 0.7;
}

#header .flr a.messages-icon {
  margin-right: 15px;
  margin-top: 6px;
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -31px -105px;
  width: 21px;
  height: 18px;
}
#header .flr a.messages-icon.active {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -31px -81px;
}
#header .flr a.messages-icon:hover {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -31px -81px;
  opacity: 0.7;
}

#header .flr a.moderation-icon {
  margin-right: 15px;
  margin-top: 6px;
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -88px -105px;
  width: 17px;
  height: 18px;
}
#header .flr a.moderation-icon.active {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -88px -81px;
}
#header .flr a.moderation-icon:hover {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -88px -81px;
  opacity: 0.7;
}

#header .flr a.settings-icon {
  margin-right: 15px;
  margin-top: 6px;
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -63px -105px;
  width: 18px;
  height: 18px;
}
#header .flr a.settings-icon.active {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -63px -81px;
}
#header .flr a.settings-icon:hover {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -63px -81px;
  opacity: 0.7;
}

#header .flr a.profile {
  margin-right: 15px;
  padding-top: 5px;
  padding-bottom: 8px;
  padding-right: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
#header .flr a.profile:hover {
  background-color: #474f4f;
}
#header .flr a.profile:hover img {
  opacity: 0.9;
}
#header .flr a.profile img.avatar-icon {
  margin-right: 5px;
  height: 28px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-top: 1px;
  vertical-align: middle;
}
#header .flr a.profile .you-text {
  margin-left: 4px;
  margin-right: 0px;
  vertical-align: sub;
}
#header .flr a.profile .you-text::after {
  opacity: 0.8;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  background: none;
  border-top-color: #ddd;
  margin: 2px 0 0 8px;
}

#header .flr a.button {
  margin-top: 1px;
  float: right;
  padding-top: 6px;
  padding-bottom: 4px;
}

#header .flr a.button .upload-icon {
  height: 13px;
  margin-top: -2px;
  margin-right: 5px;
  vertical-align: middle;
}

#header .profile-dropdown {
  display: none;
  width: 205px;
  background-color: #272b2b;
  z-index: 101;
  position: fixed;
  left: 0px;
  top: 50px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
}
#header .profile-dropdown a div {
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 15px;
}
#header .profile-dropdown a div:hover {
  background-color: #3c4242;
}

#header .notifications-count {
  z-index: 100;
  position: fixed;
  left: 0px;
  top: 8px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #3098dc;
  border: 1px solid #57ace3; /* background-color + 20 brightness */
  padding: 2px;
  padding-right: 3px;
  padding-left: 3px;
  color: #fff;
  font-size: 10px;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
#header .messages-count {
  z-index: 100;
  position: fixed;
  left: 0px;
  top: 8px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #3098dc;
  border: 1px solid #57ace3; /* background-color + 20 brightness */
  padding: 2px;
  padding-right: 3px;
  padding-left: 3px;
  color: #fff;
  font-size: 10px;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
#header .moderation-count {
  z-index: 100;
  position: fixed;
  left: 0px;
  top: 8px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #27ae60;
  border: 1px solid #31d175; /* background-color + 20 brightness */
  padding: 2px;
  padding-right: 3px;
  padding-left: 3px;
  color: #fff;
  font-size: 10px;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

#verify-email-space {
  height: 47px;
}
#verify-email-container {
  background-color: #4491d2;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  color: #000;
  border-bottom: 1px solid #26699f;
  z-index: 100;
  position: fixed;
  top: 50px;
  left: 0px;
  color: #cee8fc;
}

/* ************************************************************************************ */
/* CONTENT
/* ************************************************************************************ */
#content .content-center {
  display: inline-block;
  width: 540px;
}
#content .content-side {
  width: 300px;
  font-size: 12px;
}
#content .content-side.left {
  float: left;
  margin-right: 20px;
}
#content .content-side.right {
  float: right;
  margin-left: 20px;
}

#content.duo .content-center {
  width: 600px;
}
#content.post .content-center {
  width: 640px;
}

#content.center .content-center {
  display: block;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ************************************************************************************ */
/* CONTENT --> SIDES
/* ************************************************************************************ */
#content .content-side .box {
  float: right;
  width: 270px;
  padding: 14px;
  background-color: #fff;
  margin-bottom: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #c5c8cb;
  overflow: hidden;
}
#content .content-side .box .title {
  font-weight: bold;
  color: #363636;
  margin: -15px;
  margin-bottom: 0px;
  padding: 15px;
  font-size: 12px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #e1e1e1;
}
#content .content-side .box p {
  margin-top: 15px;
}
#content .content-side .box .part-grey {
  background-color: #fff;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
  color: #787878;
}
#content .content-side .box .part-grey:hover {
  background-color: #fbfbfb;
}
#content .content-side .box .part-grey.last {
  margin-bottom: -10px;
  font-size: 12px;
  text-align: center;
  border-bottom: 0px solid #e1e1e1;
}

/* profile */
#content .content-side .box.profile .title {
  margin-bottom: 10px;
}
#content .content-side .box.profile img.avatar {
  height: 60px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  float: left;
}
#content .content-side .box.profile a.username {
  width: 200px;
  float: right;
  font-size: 16px;
  font-weight: bold;
  margin-left: 0px;
  margin-right: 0px;
}
#content .content-side .box.profile .description {
  width: 200px;
  float: right;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 5px;
}
#content .content-side .box.profile .user-links a {
  margin-left: 5px;
  margin-right: 5px;
}

#content .content-side .adbox {
  width: 300px;
  margin-bottom: 20px;
}

/* ************************************************************************************ */
/* CONTENT --> CENTER
/* ************************************************************************************ */
#content .content-center .box {
  width: 570px;
  padding: 14px;
  background-color: #fff;
  margin-bottom: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #c5c8cb;
  overflow: hidden;
  color: #222222;
}
#content .content-center .box .title {
  font-weight: bold;
  color: #363636;
  margin: -15px;
  margin-bottom: 0px;
  padding: 15px;
  font-size: 14px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #e1e1e1;
}
#content .content-center .box p {
  color: #444;
}
#content .content-center .box .left {
  width: 120px;
  float: left;
  font-size: 13px;
}
#content .content-center .box .left p {
  margin-top: 14px;
}
#content .content-center .box .right {
  width: 450px;
  float: right;
  font-size: 12px;
}
#content .content-center .box .right input[type="email"],
#content .content-center .box .right input[type="text"],
#content .content-center .box .right input[type="password"],
#content .content-center .box .right textarea {
  width: 426px;
}
#content .content-center .box .right textarea {
  height: 80px;
}
#content .content-center .box .right input[type="radio"] {
  margin-right: 5px;
  margin-top: 0px;
}
#content .content-center .box .right label {
  margin-right: 40px;
}
#content .content-center .box .right .subtitle {
  font-weight: bold;
  font-size: 13px;
  margin-top: 14px;
  margin-bottom: 4px;
}

#content .content-center .box .right .avatar-left {
  width: 100px;
  float: left;
}
#content .content-center .box .right .avatar-right {
  width: 340px;
  float: right;
  margin-left: 10px;
}
#content .content-center .box .right .avatar-right input {
  width: 316px;
}
#content .content-center .box .right .avatar-left img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 100px;
  width: 100px;
}
#content .content-center .box .right .avatar-right div {
  margin-left: 2px;
  font-size: 12px;
  margin-top: 5px;
}

#content .content-center .box hr.full-hr {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* feed */
#content .content-center #feed-loader {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
#content .content-center #feed-loader .button.giant {
  width: 490px;
  float: right;
}

/* ************************************************************************************ */
/* CONTENT --> CENTER --> POST
/* ************************************************************************************ */
/* post */
#content.post .content-center .box {
  width: 610px;
  padding: 14px;
  background-color: #fff;
  margin-bottom: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #c5c8cb;
  overflow: hidden;
}

#content .content-center .box.post .title {
  color: #232323;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  float: none;
}
#content .content-center .box.post .title:hover {
  color: #3098dc;
}
#content .content-center .box.post .source {
  width: 610px;
  margin-bottom: 5px;
  text-align: center;
}
#content .content-center .box.post .source.zoomable {
  cursor: zoom-in;
}
#content .content-center .box.post .source img {
  width: 610px;
}
#content .content-center .box.post .source video {
  width: 610px;
}

/* post -> create-comment */
#content .content-center .box.post .comments-title {
  color: #232323;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
#content .content-center .box.post .create-comment {
  width: 610px;
  margin-bottom: 15px;
}
#content .content-center .box.post .create-comment .avatar {
  width: 40px;
  float: left;
}
#content .content-center .box.post .create-comment .avatar img {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
#content .content-center .box.post .create-comment .text {
  width: 560px;
  float: right;
}
#content .content-center .box.post .create-comment .text textarea {
  width: 546px;
  height: 24px;
  padding: 7px;
  margin: 0px;
  font-size: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  float: right;
}
#content .content-center .box.post .create-comment .text span {
  margin-top: 5px;
  margin-left: 5px;
}
#content .content-center .box.post .create-comment .picture {
  width: 60px;
  height: 60px;
  display: none;
  float: left;
}

/* post -> next-posts */
.next-posts {
  float: right;
  width: 300px;
  height: 0px;
  overflow: hidden;
}
.next-posts .next-posts-title {
  font-weight: bold;
  color: #363636;
  font-size: 14px;
  margin-bottom: 2px;
}
.next-posts .next_box {
  width: 280px;
  padding: 10px;
  overflow: hidden;
}
.next-posts .next_box:hover {
  background-color: #f4f4f4;
}
.next-posts .next_box .left {
  width: 130px;
  float: left;
  margin-right: 10px;
}
.next-posts .next_box .right {
  width: 140px;
  float: right;
  font-weight: bold;
  font-size: 12px !important;
  text-transform: none !important;
}
.next-posts a:link {
  color: #222222;
  font-size: 12px !important;
}
.next-posts a:visited {
  color: #aaa;
}

/* ************************************************************************************ */
/* FEED
/* ************************************************************************************ */
.feed {
  width: 540px;
}
.feed .post-container {
  margin-bottom: 20px;
}
.feed .post-container .author img {
  height: 50px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.feed .post {
  width: 500px;
  padding: 19px;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #c5c8cb;
  overflow: hidden;
  float: right;
}
.feed .post.no-bottom-corners {
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.post .title {
  color: #232323;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  float: left;
}
.post .title:hover {
  color: #3098dc;
}
.post .source {
  margin-bottom: 5px;
}
.post .source img {
  width: 500px;
}
.post .source video {
  width: 500px;
}
.post .post-info {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #777777; /* RECENT ADD, EXPERIMENTAL */
}
.post .post-info .score-info {
  -webkit-transition: color 500ms ease-out;
  -moz-transition: color 500ms ease-out;
  -o-transition: color 500ms ease-out;
  transition: color 500ms ease-out;
}
.post.upvoted .post-info .score-info {
  color: #ff8a5e;
}
.post .post-info .time {
  float: right;
}
.post .post-action {
  color: #8b8b8b;
  font-size: 16px;
  font-weight: bold;
}

.post .post-action .action-container {
  height: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
  border: 1px solid #c2c7cd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-right: 8px;
  float: left;
  cursor: pointer;
  overflow: hidden;
}
.post .post-action .action-container:hover {
  border: 1px solid #666;
}

.post .post-action .action-container a.upvote {
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -2px -210px;
  width: 16px;
  height: 16px;
}
.post.upvoted .post-action .action-container a.upvote {
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -44px -210px;
  width: 16px;
  height: 16px;
}
.post.upvoted .post-action .action-container.upvote {
  border: 1px solid #ff8a5e;
  background-color: #ffe9e0;
}

.post .post-action .action-container a.downvote {
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -2px -242px;
  width: 16px;
  height: 16px;
}
.post.downvoted .post-action .action-container a.downvote {
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -44px -242px;
  width: 16px;
  height: 16px;
}
.post.downvoted .post-action .action-container.downvote {
  border: 1px solid #9494ff;
  background-color: #e2e2ff;
}

.post .post-action .action-container a.comments {
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -83px -242px;
  width: 16px;
  height: 16px;
}

.post .post-action .action-container.zoom {
  display: none;
}
.post .post-action .action-container a.zoom {
  float: left;
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -157px -242px;
  width: 16px;
  height: 16px;
}

.post .post-action .facebook-share {
  background-color: #3b5998;
  float: right;
  height: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-right: 8px;
  cursor: pointer;
}
.post .post-action .facebook-share:hover {
  background-color: #4c70ba;
}
.post .post-action .facebook-share:active {
  background-color: #36528c;
}
.post .post-action .facebook-share .text {
  margin-top: 0px;
  font-size: 13px;
  color: #fff !important;
  float: right;
}
.post .post-action .facebook-share .icon {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -8px -300px;
  width: 12px;
  height: 18px;
  float: left;
  margin-right: 10px;
}
.post .post-action .twitter-share {
  background-color: #00aced;
  float: right;
  height: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 14px;
  padding-right: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-right: 8px;
  cursor: pointer;
  margin-right: 0px;
}
.post .post-action .twitter-share:hover {
  background-color: #21c2ff;
}
.post .post-action .twitter-share:active {
  background-color: #00a0dc;
}
.post .post-action .twitter-share .text {
  margin-top: 0px;
  font-size: 13px;
  color: #fff !important;
  float: right;
}
.post .post-action .twitter-share .icon {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -4px -335px;
  width: 20px;
  height: 16px;
  float: left;
  margin-right: 10px;
}

/* INFEED COMMENT */
.feed .post-container .infeed-comment {
  width: 500px;
  padding: 19px;
  padding-bottom: 15px;
  background-color: #f6f6f6;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border: 1px solid #c5c8cb;
  overflow: hidden;
  float: right;
  border-top: 1px solid #e1e1e1;
  margin-top: -10px;
}

/* create */
.feed .post-container .infeed-comment .create-comment {
  width: 500px;
  margin-bottom: 5px;
}
.feed .post-container .infeed-comment .create-comment .avatar {
  width: 30px;
  float: left;
}
.feed .post-container .infeed-comment .create-comment .avatar img {
  width: 30px;
  height: 30px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.feed .post-container .infeed-comment .create-comment .text {
  width: 460px;
  float: right;
}
.feed .post-container .infeed-comment .create-comment .text textarea {
  width: 446px;
  height: 16px;
  padding: 6px;
  margin: 0px;
  font-size: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  float: right;
}
.feed .post-container .infeed-comment .create-comment .text span {
  margin-top: 5px;
  margin-left: 5px;
}
.feed .post-container .infeed-comment .create-comment .picture {
  width: 60px;
  height: 60px;
  display: none;
  float: left;
}

/* UPLOAD NEW POST */
.feed #upload-container {
  display: none;
}
.post.upload {
  padding-bottom: 10px;
}
.post.upload #upload-title {
  width: 480px;
  color: #232323;
  font-size: 18px;
  font-weight: bold;
  margin-left: 0px;
}
.post.upload #upload-link {
  width: 480px;
  color: #232323;
  font-size: 18px;
  font-weight: bold;
  margin-left: 0px;
}
.post.upload .source img {
  cursor: pointer;
  opacity: 0.8;
}
.post.upload .source img:hover {
  opacity: 1;
}
.post.upload .source {
  margin-bottom: 10px;
}

/* ************************************************************************************ */
/* COMMENTS
/* ************************************************************************************ */

/* comment */
.comment {
  width: 610px;
  margin-top: 5px;
  float: right;
}
.comment a.upvote {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -4px -142px;
  width: 12px;
  height: 12px;
  float: left;
  margin-bottom: 9px;
  padding: 2px;
  margin-right: 5px;
}
.comment a.upvote:hover {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -4px -162px;
  width: 12px;
  height: 12px;
}
.comment .comment-footer.upvoted a.upvote {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -4px -182px;
  width: 12px;
  height: 12px;
  float: left;
  margin-bottom: 9px;
  padding: 2px;
  margin-right: 5px;
}
.comment a.downvote {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -24px -142px;
  width: 12px;
  height: 12px;
  float: left;
  padding: 2px;
  margin-right: 5px;
}
.comment a.downvote:hover {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -24px -162px;
  width: 12px;
  height: 12px;
}
.comment .comment-footer.downvoted a.downvote {
  background: url("https://hugelol.com/css/sprite_v1.png") no-repeat -24px -182px;
  width: 12px;
  height: 12px;
  float: left;
  padding: 2px;
  margin-right: 5px;
}

.comment .avatar {
  width: 45px;
  float: left;
  margin-right: 4px;
}
.comment .avatar img {
  width: 45px;
  height: 45px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.comment .text {
  min-height: 18px;
  width: 549px;
  float: left;
  font-size: 13px;
  padding: 5px;
  padding-bottom: 0px;
  background-color: #fafafa;
  color: #222;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.comment .text img {
  max-width: 200px;
  max-height: 200px;
  cursor: pointer;
  margin-bottom: 5px;
}
.comment .text img.full {
  max-width: 100%;
  max-height: 100%;
}
.comment .text video {
  max-width: 200px;
  max-height: 200px;
  cursor: pointer;
  margin-bottom: 5px;
  float: left;
}
.comment .text video.full {
  max-width: 100%;
  max-height: 100%;
}
.comment .text .info {
  color: #999;
  margin-bottom: 3px;
}
.comment .text .info .info-left {
  float: left;
}
.comment .text .info .info-right {
  float: right;
}

.comment .text .info .big {
  font-size: 13px;
  font-weight: bold;
  margin-top: -10px;
}
.comment .text .info .small {
  font-size: 11px;
  font-weight: normal;
}

.comment .text .info .small .flr {
  float: right;
}
.comment .comment-footer {
  font-size: 13px;
  font-weight: bold;
  margin-top: 3px;
}

.comment-hidden-hint {
  padding: 6px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #e1e1e1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  float: left;
  margin-top: 5px;
  clear: both;
  font-size: 12px;
  color: #222;
}
.comment-hidden-hint:hover {
  background-color: #eaeaea;
  color: #333;
}

/* create reply */
.comment .create-reply {
  width: 559px;
  margin-top: 5px;
  margin-bottom: 0px;
  padding-right: 2px;
  float: right;
}
.comment .create-reply .text {
  width: 510px;
  min-height: auto;
  padding: 0px;
  background-color: transparent;
  border: 0px solid #e1e1e1;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.comment .create-reply .text textarea {
  width: 496px;
  height: 31px;
  padding: 6px;
  margin: 0px;
  font-size: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  float: right;
}
.comment .create-reply .picture {
  width: 60px;
  height: 60px;
  display: none;
  float: left;
}
.comment .create-reply .text span {
  margin-top: 5px;
  margin-left: 5px;
}

/* viewing only single comment */
.single-comment-hint {
  text-align: center;
  background-color: #ffffbb;
  padding: 10px;
  color: #22224d;
  border: 1px solid #dddddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
}
.single-comment-hint.small {
  padding: 8px;
  margin-bottom: -10px;
  margin-top: 10px;
  font-size: 12px;
}
.single-comment-hint:hover {
  color: #000;
}

/* edit comment */
.comment .comment-edit-form {
  margin-bottom: 3px;
}
.comment .comment-edit-form textarea {
  padding: 3px;
  font-size: 12px;
}

/* post -> replies */
.comment .comment {
  width: 561px; /* 610 - 49 = 561 */
}
.comment .comment .text {
  width: 498px; /* 561 - 63 = 498 */
}
.comment .comment-hidden-hint {
  margin-left: 49px;
}
.comment .comment .comment {
  width: 512px;
}
.comment .comment .comment .text {
  width: 449px;
}
.comment .comment .comment-hidden-hint {
  margin-left: 49px;
}
.comment .comment .comment .comment {
  width: 463px;
}
.comment .comment .comment .comment .text {
  width: 400px;
}
.comment .comment .comment .comment-hidden-hint {
  margin-left: 49px;
}
.comment .comment .comment .comment .comment {
  width: 414px;
}
.comment .comment .comment .comment .comment .text {
  width: 351px;
}
.comment .comment .comment .comment .comment-hidden-hint {
  margin-left: 49px;
}

/* post -> create reply*/
.comment .create-reply {
  width: 557px;
}
.comment .create-reply .text {
  width: 508px;
}
.comment .create-reply .text textarea {
  width: 492px;
}
.comment .comment .create-reply {
  width: 508px;
}
.comment .comment .create-reply .text {
  width: 459px;
}
.comment .comment .create-reply .text textarea {
  width: 443px;
}
.comment .comment .comment .create-reply {
  width: 459px;
}
.comment .comment .comment .create-reply .text {
  width: 410px;
}
.comment .comment .comment .create-reply .text textarea {
  width: 394px;
}
.comment .comment .comment .comment .create-reply {
  width: 410px;
}
.comment .comment .comment .comment .create-reply .text {
  width: 361px;
}
.comment .comment .comment .comment .create-reply .text textarea {
  width: 345px;
}
.comment .comment .comment .comment .comment .create-reply {
  width: 361px;
}
.comment .comment .comment .comment .comment .create-reply .text {
  width: 312px;
}
.comment .comment .comment .comment .comment .create-reply .text textarea {
  width: 296px;
}

/* infeed-comment -> replies */
.infeed-comment .comment {
  width: 500px; /*610 --> -50 -60*/
}
.infeed-comment .comment .text {
  width: 417px; /* 548 --> -50 -60 -8*/
}
.infeed-comment .comment-hidden-hint {
  margin-left: 0px;
}
.infeed-comment .comment .comment {
  width: 451px;
}
.infeed-comment .comment .comment .text {
  width: 368px;
}
.infeed-comment .comment .comment-hidden-hint {
  margin-left: 49px;
}

/* infeed-comment -> create reply */
.infeed-comment .comment .create-reply {
  width: 451px;
}
.infeed-comment .comment .create-reply .text {
  width: 402px;
}
.infeed-comment .comment .create-reply .text textarea {
  width: 388px;
}
.infeed-comment .comment .comment .create-reply {
  width: 402px;
}
.infeed-comment .comment .comment .create-reply .text {
  width: 353px;
}
.infeed-comment .comment .comment .create-reply .text textarea {
  width: 339px;
}

/* comment-compact (the ones on the sides)*/
.comment-compact {
  width: 280px;
  margin-bottom: -4px;
}
.comment-compact-picture {
  width: 50px;
  float: left;
}
.comment-compact-picture img {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.comment-compact-item {
  width: 220px;
  float: right;
}
.comment-compact-item .comment-compact-info {
  width: 220px;
  font-size: 10px;
  margin-bottom: 1px;
  color: #8c8c8c;
}
.comment-compact-item .comment-compact-info .comment-compact-username {
  color: #3098dc;
  font-weight: bold;
}
.comment-compact-item .comment-compact-content {
  width: 220px;
  color: #222222;
}
.comment-compact-item .comment-compact-content img {
  width: 60px;
  max-height: 60px;
}

/* ************************************************************************************ */
/* LOGIN & SIGNUP
/* ************************************************************************************ */
.login-signup-title {
  font-size: 50px;
  color: #1d1a1a;
  padding-bottom: 5px;
}
.login-signup-description {
  font-size: 18px;
  color: #1d1a1a;
  margin-bottom: 30px;
}
.login-signup-input {
  width: 300px;
}
.login-signup-button {
  margin-top: 3px;
  width: 272px;
}
#login-signup-link {
  color: #1d1a1a;
  font-size: 13px;
}
.login-signup-hint {
  margin-left: 10px;
  margin-top: 11px;
  height: 20px;
  width: 20px;
  margin-right: -30px;
}

/* POPUP */
#signup-login-popup-mask {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.85;
  z-index: 9990;
}
#signup-login-popup {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 9991;
  width: 322px;
  margin-left: -211px;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 50px;
}
#signup-login-popup-close {
  float: right;
  font-size: 20px;
  color: #000;
  margin-top: -30px;
  margin-right: -30px;
}
#signup-login-popup-close:hover {
  opacity: 0.8;
}

/* ************************************************************************************ */
/* MESSAGES
/* ************************************************************************************ */
#create-new-message {
  width: 547px;
  height: 30px;
}
#create-new-message-recipient {
  float: right;
  margin: 0px;
  margin-top: -6px;
  padding: 7px;
  font-size: 14px;
  width: 350px;
}

.message-container {
  width: 530px;
  overflow: hidden;
}
.message-container.incoming {
  float: left;
}
.message-container.outgoing {
  float: right;
}
.message-container .message-avatar {
  width: 40px;
  height: 40px;
}
.message-container .message-avatar img {
  width: 40px;
  height: 40px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.message-container.incoming .message-avatar {
  float: left;
  margin-right: 10px;
}
.message-container.outgoing .message-avatar {
  float: right;
  margin-left: 10px;
}
.message-container .message {
  position: relative;
  padding: 8px;
  font-size: 14px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  width: 454px;
}
.message-container.incoming .message {
  float: left;
  color: #000;
  background-color: #e1e8ed;
}
.message-container.incoming .message:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #e1e8ed;
  display: block;
  width: 0;
  z-index: 1;
  left: -8px;
  top: 12px;
}
.message-container.outgoing .message {
  float: right;
  color: #fff;
  background-color: #3098dc;
}
.message-container.outgoing .message:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent #3098dc;
  display: block;
  width: 0;
  z-index: 1;
  right: -8px;
  top: 12px;
}
.message-container .message-footer {
  font-size: 9px;
  margin-bottom: 10px;
  margin-top: 2px;
}
.message-container.incoming .message-footer {
  float: left;
  margin-left: 50px;
}
.message-container.outgoing .message-footer {
  float: right;
  margin-right: 50px;
}

/* messages overview */
#content .content-side .box .message-partner {
  width: 270px;
  height: 40px;
  margin-left: -14px;
  margin-right: -14px;
  padding: 14px;
}
#content .content-side .box .message-partner:hover {
  background-color: #fafafa;
}
#content .content-side .box .message-partner.active {
  background-color: #f6f6f6;
  border-top: 1px solid #c5c8cb;
  border-bottom: 1px solid #c5c8cb;
}
#content .content-side .box .message-partner .message-partner-avatar {
  float: left;
  width: 40px;
  height: 40px;
}
#content .content-side .box .message-partner .message-partner-avatar img {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
#content .content-side .box .message-partner .message-partner-content {
  float: right;
  width: 220px;
  margin-left: 10px;
}
#content
  .content-side
  .box
  .message-partner
  .message-partner-content
  .message-partner-content-name {
  color: #333;
  font-size: 14px;
}
#content
  .content-side
  .box
  .message-partner
  .message-partner-content
  .message-partner-content-name
  .timeago {
  float: right;
  color: #777;
  font-size: 11px;
  font-weight: normal;
  margin-top: 2px;
}
#content
  .content-side
  .box
  .message-partner
  .message-partner-content
  .message-partner-content-message {
  color: #777;
  margin-top: 6px;
  margin-top: -10px;
  height: 17px;
  width: 220px;
  overflow: hidden;
}

/* ************************************************************************************ */
/* NOTIFICATIONS
/* ************************************************************************************ */
.notification {
  margin-bottom: 10px;
}
.notification .notification-title {
  font-size: 11px;
}
.notification .notification-title .notification-new {
  font-size: 9px;
  padding: 1px;
  padding-right: 3px;
  padding-left: 3px;
  color: #fff;
  background-color: #3098dc;
  border: 1px solid #2b89c6;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  float: left;
  margin-right: 5px;
}

.notification .system-message {
  background-color: #ffffd1;
  padding: 8px;
  color: #22224d;
  border: 1px solid #dddddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-top: 6px;
}
.notification .system-message.bronze {
  border-color: #cc9966;
}
.notification .system-message.silver {
  border-color: #c5c5c5;
}
.notification .system-message.gold {
  border-color: #f7c600;
}
.notification .system-message.legendary {
  border-color: #ff800a;
}

#notifications-loader {
  margin-top: 20px;
  text-align: center;
}

/* ************************************************************************************ */
/* FOOTER
/* ************************************************************************************ */
#footer .block {
  width: 215px;
  float: left;
}
#footer .block .title {
  font-weight: bold;
  color: #363636;
  margin-bottom: 10px;
  font-size: 12px;
}

#footer .block .link {
  margin-top: 3px;
  margin-bottom: 3px;
}

/* ************************************************************************************ */
/* OTHER --> KARMA BADGE
/* ************************************************************************************ */
.karma-badge {
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 3px;
  padding-bottom: 3px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  font-weight: bold;
  font-size: 12px;
  cursor: default;
}
.karma-badge img {
  height: 12px;
  vertical-align: text-top;
  margin-right: 2px;
}

/* ************************************************************************************ */
/* OTHER --> ZOOM
/* ************************************************************************************ */
#zoom-mask {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  z-index: 9990;
  cursor: zoom-out;
}
img#zoom-image {
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 9991;
  cursor: zoom-out;
}

/* ************************************************************************************ */
/* OTHER --> BACK TO TOP BUTTON
/* ************************************************************************************ */
#back-to-top-button {
  z-index: 1000;

  position: fixed;
  right: 20px;
  bottom: 20px;
  overflow: hidden;

  font-size: 13px;
  cursor: pointer;

  background-color: #fff;
  border: 1px solid #c5c8cb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#back-to-top-button:hover {
  opacity: 0.8;
}

/* ************************************************************************************ */
/* OTHER --> TIPTIP
/* ************************************************************************************ */
/* TipTip CSS - Version 1.2 */

#tiptip_holder {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}

#tiptip_holder.tip_top {
  padding-bottom: 5px;
}

#tiptip_holder.tip_bottom {
  padding-top: 5px;
}

#tiptip_holder.tip_right {
  padding-left: 5px;
}

#tiptip_holder.tip_left {
  padding-right: 5px;
}

#tiptip_content {
  font-size: 11px;
  color: #fff;

  text-shadow: 0 0 2px #000;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgb(25, 25, 25);
  background-color: rgba(25, 25, 25, 0.92);
  background-image: -webkit-gradient(
    linear,
    0% 0%,
    0% 100%,
    from(transparent),
    to(#000)
  );
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  box-shadow: 0 0 3px #555;
  -webkit-box-shadow: 0 0 3px #555;
  -moz-box-shadow: 0 0 3px #555;
}

#tiptip_arrow,
#tiptip_arrow_inner {
  position: absolute;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  height: 0;
  width: 0;
}

#tiptip_holder.tip_top #tiptip_arrow {
  border-top-color: #fff;
  border-top-color: rgba(255, 255, 255, 0.35);
}

#tiptip_holder.tip_bottom #tiptip_arrow {
  border-bottom-color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

#tiptip_holder.tip_right #tiptip_arrow {
  border-right-color: #fff;
  border-right-color: rgba(255, 255, 255, 0.35);
}

#tiptip_holder.tip_left #tiptip_arrow {
  border-left-color: #fff;
  border-left-color: rgba(255, 255, 255, 0.35);
}

#tiptip_holder.tip_top #tiptip_arrow_inner {
  margin-top: -7px;
  margin-left: -6px;
  border-top-color: rgb(25, 25, 25);
  border-top-color: rgba(25, 25, 25, 0.92);
}

#tiptip_holder.tip_bottom #tiptip_arrow_inner {
  margin-top: -5px;
  margin-left: -6px;
  border-bottom-color: rgb(25, 25, 25);
  border-bottom-color: rgba(25, 25, 25, 0.92);
}

#tiptip_holder.tip_right #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -5px;
  border-right-color: rgb(25, 25, 25);
  border-right-color: rgba(25, 25, 25, 0.92);
}

#tiptip_holder.tip_left #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -7px;
  border-left-color: rgb(25, 25, 25);
  border-left-color: rgba(25, 25, 25, 0.92);
}

/* Webkit Hacks  */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #tiptip_content {
    padding: 4px 8px 5px 8px;
    background-color: rgba(45, 45, 45, 0.88);
  }
  #tiptip_holder.tip_bottom #tiptip_arrow_inner {
    border-bottom-color: rgba(45, 45, 45, 0.88);
  }
  #tiptip_holder.tip_top #tiptip_arrow_inner {
    border-top-color: rgba(20, 20, 20, 0.92);
  }
}

/* ******************************************************************************************** */
/* OTHER --> POPUP
/* ******************************************************************************************** */
/* Mask for background, by default is not display */
#mask {
  display: none;
  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 999;
}

/* UPLOAD */
.upload-popup {
  /*display:none;*/
  float: left;
  position: fixed;
  top: 10%;
  left: 50%;
  margin-left: -265px;
  z-index: 9999;
  width: 470px;
  border: 1px solid #bbbbbb;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  padding: 29px;
  overflow: hidden;
  color: #222;
  line-height: 1.2;
  font-size: 14px;
}
.upload-popup #close {
  float: right;
  font-size: 20px;
  color: #000;
  margin-top: -10px;
  margin-right: -10px;
}
.upload-popup #close:hover {
  opacity: 0.8;
}
.upload-popup h2 {
  font-size: 30px;
  margin-bottom: 0px;
}
.upload-popup #upload-description {
  margin-top: -4px;
}
.upload-popup #upload-title {
  margin-top: 0px;
  padding: 10px;
  width: 450px;
  margin-bottom: 10px;
}
.upload-popup #upload-url-description {
  margin-bottom: 10px;
  display: none;
}
.upload-popup #upload-url {
  margin-top: 0px;
  padding: 10px;
  width: 450px;
  margin-bottom: 10px;
  display: none;
}
.upload-popup #upload-video {
  width: 470px;
  max-height: 353px;
  margin-left: 2px;
  margin-bottom: 10px;
  display: none;
}
.upload-popup #upload-preview {
  width: 470px;
  max-height: 353px;
  background-color: #f7f7f7;
  margin-left: 2px;
  cursor: pointer;
  margin-bottom: 10px;
}
.upload-popup #upload-preview:hover {
  background-color: #eeeeee;
}
.upload-popup #upload-switch {
  text-align: center;
  color: #444;
}
.upload-popup label {
  cursor: pointer;
}
.upload-popup input[type="checkbox"] {
  margin-top: 6px;
}
.upload-popup .field {
  color: #202020;
  line-height: 2;
}

.upload-popup #upload-status {
  background-color: #e74c3c;
  border: 1px solid #df2f1b;
  padding: 10px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 10px;
  margin-left: 2px;
  margin-right: -4px;
  color: #fff;
  display: none;
}
.upload-popup #upload-status-waiting {
  background-color: #ffffbb;
  border: 1px solid #dddddd;
  padding: 10px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 10px;
  margin-left: 2px;
  margin-right: -4px;
  color: #222;
  display: none;
}

/* REPORT POST */
.report-popup.post {
  /*display:none;*/
  float: left;
  position: fixed;
  top: 10%;
  left: 50%;
  margin-left: -265px;
  z-index: 9999;
  width: 470px;
  border: 1px solid #bbbbbb;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  padding: 29px;
  overflow: hidden;
  color: #222;
}
.report-popup.post #close {
  float: right;
  font-size: 20px;
  color: #000;
  margin-top: -10px;
  margin-right: -10px;
}
.report-popup.post #close:hover {
  opacity: 0.8;
}
.report-popup.post h2 {
  margin-bottom: 5px;
  font-size: 30px;
}
.report-popup.post .title {
  font-weight: bold;
  color: #444444;
  line-height: 1.5;
}
.report-popup.post #repostLink {
  margin-bottom: 0px;
  padding: 8px;
  margin-top: 4px;
  width: 450px;
}
.report-popup.post label {
  cursor: pointer;
}
.report-popup.post input[type="radio"] {
  margin-top: 6px;
}

.report-popup.post .field {
  color: #202020;
  line-height: 2;
}

/* REPORT USER */
.report-popup.user {
  /*display:none;*/
  float: left;
  position: fixed;
  top: 10%;
  left: 50%;
  margin-left: -265px;
  z-index: 9999;
  width: 470px;
  border: 1px solid #bbbbbb;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  padding: 29px;
  overflow: hidden;
  color: #222;
}
.report-popup.user #close {
  float: right;
  font-size: 20px;
  color: #000;
  margin-top: -10px;
  margin-right: -10px;
}
.report-popup.user #close:hover {
  opacity: 0.8;
}
.report-popup.user h2 {
  margin-bottom: 5px;
  font-size: 30px;
}
.report-popup.user .title {
  font-weight: bold;
  color: #444444;
  line-height: 1.5;
}
.report-popup.user label {
  cursor: pointer;
}
.report-popup.user input[type="radio"] {
  margin-top: 6px;
}
.report-popup.user .field {
  color: #202020;
  line-height: 2;
}
.report-popup.user #other-reason {
  margin-bottom: 0px;
  padding: 8px;
  margin-top: 4px;
  width: 450px;
}

/* REPORT COMMENT */
.report-popup.comment {
  /*display:none;*/
  float: left;
  position: fixed;
  top: 10%;
  left: 50%;
  margin-left: -265px;
  z-index: 9999;
  width: 470px;
  border: 1px solid #bbbbbb;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  padding: 29px;
  overflow: hidden;
  color: #222;
}
.report-popup.comment #close {
  float: right;
  font-size: 20px;
  color: #000;
  margin-top: -10px;
  margin-right: -10px;
}
.report-popup.comment #close:hover {
  opacity: 0.8;
}
.report-popup.comment h2 {
  margin-bottom: 5px;
  font-size: 30px;
}
.report-popup.comment .title {
  font-weight: bold;
  color: #444444;
  line-height: 1.5;
}
.report-popup.comment label {
  cursor: pointer;
}
.report-popup.comment input[type="radio"] {
  margin-top: 6px;
}
.report-popup.comment .field {
  color: #202020;
  line-height: 2;
}

/* ******************************************************************************************** */
/* SMART NOTIFICIATION
/* ******************************************************************************************** */
#smartNotificationContainer {
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  z-index: 1001;
}
#smartNotificationContainer .smartNotification {
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  opacity: 0.4;
}
#smartNotificationContainer .smartNotification .smartNotificationClose {
  float: right;
  cursor: pointer;
}
#smartNotificationContainer .smartNotification .smartNotificationClose:hover {
  opacity: 0.7;
}

/* ******************************************************************************************** */
/* BADGE
/* ******************************************************************************************** */
a.badge {
  cursor: pointer;
}
span.badge,
div.badge {
  cursor: default;
}
.badge {
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #fff;
  opacity: 0.9;
}
.badge.small {
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 2px;
  padding-bottom: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.badge.green {
  border-color: #27ae60;
  background-color: #2ece72;
  color: #fff;
}
.badge.red {
  border-color: #e74c3c;
  background-color: #eb6c5d;
  color: #fff;
}
.badge.blue {
  border-color: #2b89c6;
  background-color: #3098dc;
  color: #fff;
}
.badge.bronze {
  border-color: #cc9c6b;
  background-color: #dcbe9d;
  color: #555;
}
.badge.silver {
  border-color: #c5c5c5;
  background-color: #e6e6e6;
  color: #333;
}
.badge.gold {
  border-color: #f7c600;
  background-color: #ffd83a;
  color: #333;
}
.badge.legendary {
  border-color: #ff800a;
  background-color: #ffa14b;
  color: #fff;
  text-shadow: -1px 1px 6px #fff, 1px -1px 6px #fff;
  box-shadow: 0px 1px 6px rgba(252, 145, 47, 0.6) inset,
    0px 0px 12px rgba(252, 145, 47, 0.6);
}

.badge:hover {
  opacity: 1;
}
