:root {
	
	/* base colors */
	--colorMidBlue: #54556e;
	--colorDarkBlue: #40415a;
	--colorDarkerBlue: #383952;
	--colorMidGrey: #aaaab8;
	--colorMidMonoGrey: #7f7f7f;
	--colorLightGrey: #e3e3e3;
	--colorLtMidGrey: #c8c8d0;	
	--colorMidFadedGrey: rgba(255,255,255,0.7);
	--colorDarkGreyBase: #2f2f32;
	--colorBlueGrey: #808196;
		
	--colorRed: #d55161;
	--colorRedHover: #c14857;
	--colorOrange: #f99a66;
	--colorPurple: #a973a2;
	--colorGreen: #7bc8a4;
	--colorDarkGreen: #2a8b9d;
	--colorTeal: #69c9cd;
	--colorYellow: #e6c653;
	
	--colorBlack: #000;
	--colorBlackMidGrey: #3a3a3a;
	--colorBlackDarkGrey: #202020;
	
	--colorFb: #355ca7;
	--colorTwitter: #00a7ea;
	

	/* light theme */
	--colorDarkGrey: var(--colorDarkGreyBase);
	--colorBg: #fff;
	--colorHeader: var(--colorDarkBlue);
	--colorBoxTitle: var(--colorBlueGrey);
	--colorTextContrast: #fff;
	--colorTextContrastSubtle: #fff;
	--colorBtnContrast: #fff;
	--colorBtnInverse: #fff;
	--colorLink: var(--colorMidBlue);
	--colorUrl: var(--colorMidBlue);
	--colorTermLink: var(--colorMidBlue);
	--colorBgMain: var(--colorMidBlue);
	--colorScoreContainer: var(--colorMidBlue);
	--colorBgSecond: var(--colorDarkBlue);
	--colorBgThird: var(--colorLightGrey);
	--colorBgTabs: #fff;
	--colorTabHighlight: var(--colorMidBlue);
	--colorTabTextHighlight: var(--colorRed);
	--colorIcon: var(--colorLightGrey);
	--colorTabText: var(--colorMidBlue);
	--colorTabTextUnselected: var(--colorMidBlue);
	--colorNewsText: var(--colorMidBlue);
	--colorSortCircle: var(--colorLightGrey);
	--colorSortCircleMiddle: #fff;
	
	--colorTopTabText: #fff;
	--colorBgTopTabs: var(--colorDarkBlue);
	
	--colorLine: var(--colorLightGrey);
	--colorField: #fff;
	--colorFieldFooter: var(--colorMidGrey);
	--colorFieldIcon: var(--colorMidGrey);
	--colorHint: var(--colorMidGrey);
	--colorCommentContainer: var(--colorLightGrey);
	--colorUnselectable: var(--colorLightGrey);
	--colorImgBg: var(--colorLightGrey);
	--colorSubtitle: var(--colorLtMidGrey);
	
	--colorBtnHighlight: var(--colorRed);
	--colorBtnSelectable: var(--colorMidGrey);
	
	--colorBtnText: #fff;
	--colorBtnBgOne: var(--colorRed);
	--colorBtnBgTwo: var(--colorMidBlue);
	--colorBtnBgThree: var(--colorDarkBlue);
	--colorBtnBgFour: var(--colorOrange);
	--colorBtnFb: var(--colorFb);
	--colorBtnTwitter: var(--colorTwitter);
	
	--colorNotif: var(--colorGreen);
	
	--colorModalBg: var(--colorMidBlue);
}

body {
	background-color: var(--colorBg);
	margin: 0;
	padding: 0;
	text-align: center;	
	color: var(--colorDarkGrey);
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 300;
}

h1, h2, h3 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

a {
	text-decoration: none;
	border: 0;
	color: #fff;
	outline: 0;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

a:hover {
	text-decoration: none;
}

img {
	vertical-align: bottom;
	border: 0;
}

input,
textarea,
button {
	border: 0;
	color: #2F2F32;
	font-family:  Roboto, Arial, Helvetica, sans-serif;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
}

input,
textarea {
	font-weight: 300;
}

::-webkit-input-placeholder { /* Chrome */
	color: #aaaab8;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #aaaab8;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #aaaab8;
	opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
	color: #aaaab8;
	opacity: 1;
}

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

.clearfix {
	clear: both;
}

.container {
	left: 0;
	right: 0;
	z-index: 0;
	text-align: center;
	min-width: 870px;
	overflow: hidden;
}

.simple .container {
	left: 0;
	right: 0;
	z-index: 0;
	text-align: center;
	min-width: 320px;
	overflow: hidden;
}

.content-centered {
	margin: 0 auto;
	width: 460px;
	position: relative;
}

.main-cols {
	display: flex;
	justify-content: center;
	margin-top: 84px;
}


/* app btns */

.app-btns {
	width: 265px;
	margin-top: 55px;
}

.btn {
	text-align: center;
	border-radius: 10px;
	border: 0;
	font-size: 16px;
	font-weight: 300;
	text-decoration: none !important;
	display: inline-block;
	cursor: pointer;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
	background-color: transparent;
	border: 1px solid var(--colorBoxTitle);
	color: var(--colorBoxTitle);
	padding: 4px 10px;

}

.btn:hover {
	background-color: #D55161;
	color: #fff;
	border: 1px solid #D55161;
}

.iphone-btn .icon, .android-btn .icon {
	font-size: 38px;
	vertical-align: middle;
}

.iphone-btn, .android-btn {
	width: calc(100% - 2px);
	display: inline-block;
	padding: 10px 0;
	color: #AAAAB8;
	border-color: var(--colorLine);
}

.iphone-btn {
	margin-bottom: 10px;
}

.app-btns.modal-btns {
	width: 366px;
	margin-top: 30px;
}

.modal-btns .iphone-btn,
.modal-btns .android-btn {
	height: 40px;
	line-height: 40px;
	width: 100%;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;	
}

.modal-btn {
	width: 	100%;
	margin-top: 15px;
	border-radius: 10px;
	line-height: 48px;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	font-weight: 500;
	padding: 0;
	text-align: center;
	background-color: #d55161;
	display: inline-block;
	border: 0;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
}

.modal-btn:hover {
	background-color: #c14857;
	border: 0;
}

/* interior */

.interior-centered {
	margin: 0 auto;
	width: 870px;
	position: relative;
}

.interior-content {
	width: 870px;
	min-height: 500px;
	margin-top: 0;
	text-align: left;
	position: relative;
	overflow: hidden;
}

/* simple privacy & TOS pages */

.simple .interior-centered {
	margin: 0 auto;
	width: auto;
	max-width: 660px;
	padding: 8px;
	position: relative;
}

.simple .interior-content {
	width: auto;
	min-height: 200px;
	margin-top: 0;
	text-align: left;
	position: relative;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	color:#2f2f32;
	line-height:22px;
	font-size:16px
}

.simple .content-centered {
	margin: 0 auto;
	width: 300px;
	position: relative;
}

.simple .interior-content h1 {
	margin: 0 0 12px 0;
	font-weight: 500;
	font-size: 24px;
	line-height: 1;
}

.simple .interior-content h2 {
	margin: 14px 0 2px 0;
	font-weight: 500;
	font-size: 20px;
}

.interior-content h3 {
	margin: 14px 0 2px 0;
	font-size: 18px;
}

.bullet-list {
	list-style-type: disc;
	padding-left: 20px;
}

.bullet-list li {
	padding-left: 10px;
	padding-bottom: 4px;
}

.simple .interior-content a {
	color: #d55161;
	text-decoration: none;
	-webkit-transition: color .15s ease-in-out;
	transition: color .15s ease-in-out;
}

.simple .interior-content a:hover {
	color: #c14857;
	text-decoration: underline;
}

.simple .interior-content .btn {
	display:block;
	width:auto;
	height: auto;
	max-width:300px;
	font-weight:500;
	min-height:12px;
	line-height:12px;
	padding:16px 0;
	text-align:center;
	text-decoration:none;
	font-size:16px;
	color:#fff;
	border-radius:10px;
	background-color:#d55161;
	margin-top:25px;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
}

.simple .interior-content .btn:hover {
	background-color:#c14857;
	color:#fff;
}

.simple-header {
	height: 77px;
	margin: 5px 20px 0;
	overflow: hidden;
	text-align: left;
}

.simple-header-logo {
	display: inline-block;
	margin-top: 10px;
}

.simple-header-developer {
	display: inline-block;
	float: right;
}

/* nav bar */

.nav {
	display: flex;
	position: fixed;
	top: 0;
	color: #fff;
	height: 60px;
	align-items: center;
	justify-content: space-between;
	background-color: var(--colorHeader);
	width: calc(100% - 60px);
	padding: 0 30px;
	z-index: 10;
	font-size: 20px;
	-webkit-transition: background-color .5s ease-in-out;
	transition: background-color .5s ease-in-out;
}

.nav-left,
.nav-right {
	display: flex;
	align-items: center;
}

.nav a {
	color: #fff;
	opacity: 0.7;
}

.nav a:hover {
	text-decoration: none;
	opacity: 1;
}

a.nav-logo {
	margin-right: 24px;
	display: flex;
	font-size: 30px;
	line-height: 0;
	margin-top: 1px;
	opacity: 1;
}

.logo-icon {
	position: relative;
	width: 28px;
}

.logo-icon .icon {
	position: absolute;
	top: 0;
	left: 0;
}

.logo-icon .icon-rantsemoticon-emoji1 {
	color: #D55161;
	z-index: 2;
}

.logo-icon .icon-rantsemoticon-base1 {
	color: #F99A66;
}

.nav-logo .icon-rantsemoticon2 {
	opacity: 0;
	-webkit-transition: opacity .5s ease-in-out;
	transition: opacity.5s ease-in-out;
}

.nav.scroll .nav-logo .icon-rantsemoticon2 {
	opacity: 1;
}

.nav.scroll .nav-logo .icon-rantsemoticon-emoji1,
.nav.scroll .nav-logo .icon-rantsemoticon-base1 {
	-webkit-transition: opacity .5s ease-in-out;
	transition: opacity.5s ease-in-out;
	opacity: 0;
}

.nav-list {
	display: flex;
	align-items: center;
}

.nav-list li {
	margin-right: 18px;
}

a.nav-btn {
	color: #fff;
	text-align: center;
	display: inline-block;
	border-radius: 10px;
	border: 1px solid #fff;
	background-color: transparent;
	font-size: 20px;
	font-weight: 300;
	margin-left: 12px;
	opacity: 1;
	font-size: 20px;
	padding: 6px 20px;
}

a.nav-btn:hover {
	color: #fff;
	text-decoration: none;
	background-color: transparent;
}

.nav-btns a {
	opacity: 0.7;
}

.icon-logo-w-icon1 {
	font-size: 34px;
}

.nav-loggedin-icons {
	display: flex;
	align-items: center;
}

a.nav-avatar-circle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	display: block;
	opacity: 0.9;
}

.nav-avatar-circle img {
	width: 100%;
}

a.nav-notif-icon {
	position: relative;
	margin-right: 20px;
	margin-left: 10px;
	display: flex;
	align-items: center;
	opacity: 1;
}

a.nav-notif-icon .icon {
	opacity: 0.7;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

a.nav-notif-icon:hover .icon {
	opacity: 1;
}

.nav-notif-icon .notif-badge {
	position: absolute;
	top: -7px;
	right: -14px;
	width: 22px;
	height: 22px;
	line-height: 23px;
	border: 2px solid #40415A;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.nav-notif-icon .notif-badge.notif-scrolled {
	border-color: #40415A !important;
}

.nav-notif-icon .icon {
	font-size: 32px;
}

a.nav-more-icon {
	margin-right: 10px;
	margin-left: 10px;
	opacity: 1;
}

a.nav-more-icon .icon {
	opacity: 0.7;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

a.nav-more-icon:hover .icon {
	opacity: 1;
}

.nav-more-icon .icon {
	font-size: 30px;
}

/* side boxes */

.side-box {
	margin-bottom: 30px;
}

.box-title-row {
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
}

.box-title {
	font-size: 20px;
	font-family: Comfortaa;
	font-weight: bold;
	color: var(--colorBoxTitle);
}

.box-title-row a {
	color: #AAAAB8;
}

.box-title-row a:hover {
	color: #D55161;
}

.box-content {
	font-size: 16px;
	line-height: 1.3;
}

.box-avatar {
	display: flex;
}

a.box-job .subscribe-text {
	color: var(--colorDarkGrey);
}

.box-job {
	display: block;
	margin-bottom: 15px;
}

a.box-job:hover .btn {
	background-color: #D55161;
	color: #fff;
	border: 1px solid #D55161;
}

/* subscribe module */
.subscribe-text {
	margin-bottom: 10px;
}

/* weekly module */

.box-weekly-link {

}

.box-weekly-link:hover .box-weekly-subtitle {
	color: #D55161;
}

.box-weekly-title {
	margin-bottom: 8px;
	color: var(--colorDarkGrey);
}

.box-weekly-subtitle {
	font-size: 14px;
	font-weight: 500;
	color: #AAAAB8;
}


/* similar devs module */

.box-similar-devs li{
	margin-top: 12px;
	display: flex;
}

.box-similar-devs li:first-child {
	margin-top: 0;
}

/* related rants module */
.box-related-rants li {
	margin-top: 18px;
	clear: both;
}

.box-related-rants li:first-child {
	margin-top: 0;
}

.box-related-rants .user-circle {
	width: 32px;
	height: 32px;
}

.box-related-rants .user-info-text {
	margin-left: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 40px);
}

.box-related-rants .user-name {
	font-size: 16px;
}

.box-weekly-rants li {
	border-top: 1px solid var(--colorLine);
}

.box-weekly-rants li:first-child {
	margin-top: 10px;
}

.box-weekly-rants .related-rant-text {
	margin: 10px 0;
}

.related-rant-text {
	color: var(--colorDarkGrey);
	margin-top: 7px;
}

.related-rant-text img {
	max-width: 80px;
	max-height:120px;
	float: right; 
	margin-left: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
}

.related-rant-commments {
	font-size: 14px;
	color: #aaaab8;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.related-rant-commments .icon {
	
}

.related-rant-count {
	margin-left: 4px;
}


/* base layout */

.body-col1,
.body-col3 {
	width: 260px;
	min-width: 260px;
	margin-left: 40px;
	margin-right: 40px;
	text-align: left;
	overflow: hidden;
}

.body-col2 {
	width: 100%;
	max-width: 660px;
	margin: 0 0 20px;
	text-align: left;
	position: relative;
}

.body-col1 {
	order: 1;
}

.body-col2 {
	order: 2;
}

.body-col3 {
	order: 3;
}

.page-feed {
	margin-bottom: 110px;
}

.details-page {
	margin-bottom: 89px;
}

.rantlist-bg {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	overflow: hidden;
	display: block;
}

.gif-tag {
	position: absolute;
	top: 7px;
	left: 7px;
	padding: 2px 6px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	background-color: #a973a2;
	border-radius: 5px;
}

.profile-page .rantlist-bg {
	min-height: 460px;
}

.box-ico-container {
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	float: left;
}

.rantlist li.feed-prev-more {
	background-color: #aaaab8;
	border-top: 0;
	padding: 12px 15px !important;
	margin-top: 40px;
	justify-content: space-between;
	
}

.rantlist .feed-prev-more:hover {
	background-color: #aaaab8;
	cursor: default;
}

.rantlist .feed-prev-more a {
	height: 44px;
	line-height: 44px;
}

.rantlist .feed-prev-more a:hover {
	color: #e0e0ed;
}

.rantlist .feed-prev-more-link {
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	font-weight: bold;
	font-family: Comfortaa;
}

.rantlist .feed-prev-more .icon {
	display: inline-block;
	margin: 0 8px;
	font-size: 24px;
}

.feed-prev,
.feed-more {
	display: flex;
	align-items: center;
}

.feed-prev {
	float: left;
}

.feed-more {
	float: right;
	text-align: right;
}

/* devrant new */

.plusone, .minusone {
	width: 32px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	color: #fff;
	border-radius: 50%;
	display: inline-block;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-details {
	margin: 110px 0 68px;
	max-width: 835px;
	min-height: 386px;
	display: flex;
	align-items: center;
}

.post-details .plusone,
.post-details .minusone {
	width: 48px;
	height: 48px;
	text-align: center;
	line-height: 48px;
}

.post-details .plusone .icon,
.post-details .minusone .icon {
	font-size: 18px;
}

.post-details .votecount {
	font-size: 16px;
	color: #fff;
	width: 48px;
	margin: 6px 0 5px;
}

.post-details .rantlist-vote-col {
	width: 48px;
	margin-right: 25px;
}

.btn-vote-circle {
	background-color: rgba(170,170,184,0.2);
	cursor: pointer;
}

.body-col2 .rantlist-vote-col .btn-vote-circle {
	background-color: rgba(170,170,184, 0.6);
	cursor: pointer;
}

.body-col2 .rantlist-vote-col.vote-state-upvoted .plusone {
	background-color: #d55161;
}

.body-col2 .rantlist-vote-col.vote-state-downvoted .minusone {
	background-color: #d55161;
}

.body-col2 .rantlist li:hover .rantlist-vote-col.vote-state-unvoted .btn-vote-circle {
	background-color: rgba(170,170,184,1);
}

.body-col2 .rantlist li:hover .rantlist-vote-col.vote-state-upvoted .minusone.btn-vote-circle,
.body-col2 .rantlist li:hover .rantlist-vote-col.vote-state-downvoted .plusone.btn-vote-circle {
	background-color: rgba(170,170,184,1);
}

.body-col2 .rantlist-vote-col.vote-state-novote .btn-vote-circle {
	background-color: rgba(170,170,184,0.2);
	cursor: default;
}

.post-details .rantlist-vote-col .btn-vote-circle {
	background-color: rgba(255,255,255,0.2);
}

.post-details .rantlist-vote-col.vote-state-unvoted .btn-vote-circle {
	background-color: rgba(255,255,255,0.2);
}

.body-col2 .rantlist li .rantlist-vote-col.vote-state-unvoted .btn-vote-circle:hover {
	background-color: #D55161;
	cursor: pointer;
}

.post-details .rantlist-vote-col.vote-state-novote .btn-vote-circle .icon {
	opacity: 0.6;
}

.rantlist li:hover .rantlist-vote-col.vote-state-novote .btn-vote-circle {
	background-color: rgba(170,170,184,0.2);
	cursor: default;
}


.plusone span, .minusone span {
	color: #fff;
	font-size: 13px;
}

.votecount {
	margin: 3px 0 3px;
	font-size: 14px;
	color: #aaaab8;
	text-align: center;
}

.rantlist li {
	padding: 16px 20px 0 16px;
	border-radius: 10px;
	position: relative;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
	display: flex;
}

.rantlist li:first-child {
	padding-top: 16px;
}

.rantlist li.reply-row:first-child {
	padding-top: 0;
}

.rantlist-content-col {
	min-height: 86px;
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: left;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--colorLine);
}

.post-details .rantlist-content-col {
	min-height: 86px;
	position: relative;
	z-index: 2;
	width: calc(100% - 73px);
	text-align: left;
	padding-bottom: 0;
	border: none;
}

.rantlist li:first-child .rantlist-content-col {
	border-top: none;
}

.rantlist li:last-child {
	padding-bottom: 15px;
}

.rantlist li:hover {
	cursor: pointer;
}

.rantlist-vote-col {
	float: left;
	width: 35px;
	margin-right: 13px;
	vertical-align: middle;
	position: relative;
	text-align: center;
	font-weight: 500;
	z-index: 2;
}



.rantlist-title {
	font-size: 20px;
	line-height: 1.3;
	color: var(--colorDarkGrey);
	min-height: 29px;
	margin: 0;
	padding: 0;
}

.rantlist-content,
.rantlist-content-tag,
.collab-summary {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
}

.rantlist-content {
	color: #fff;
	font-size: 26px;
	line-height: 1.4;
}

.rantlist-content a {
	color: #54556e;
}

.rantlist-content a:hover {
	color: #54556e;
	text-decoration: underline;
}

.rantlist-title-text {
	float: left;
}

.rantlist-title-text,
.rantlist-content,
.collab-summary {
	width: 100%;
	word-wrap:break-word;
}

.rantlist-tags-row {
	color: #aaaab8;
	padding-top: 8px;
	cursor: default;
	position: relative;
}

.rantlist-tags {
	padding-top: 8px;
	margin-right: 8px;
	overflow: hidden;
	font-size: 12px;
	color: #aaaab8;
	z-index: 2;
	max-width: calc(100% - 80px);
	float: left;
	display: flex;
	flex-wrap: wrap;
}

.side-box .rantlist-tags {
	max-width: 100%;
}

.rantlist-tags a {
	color: #AAAAB8;
	font-size: 14px;
	padding: 5px 7px;
	border-radius: 5px;
	border: 1px solid var(--colorLine);
	font-weight: 500;
	margin-top: 4px;
	margin-right: 4px;
	line-height: 1.1;
	display: inline-block;
}

.rantlist-tags a:hover {
	color: #d55161;
	border-color: #d55161;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
	cursor: pointer;
}

.post-details .rantlist-tags {
	float: none;
	width: auto;
}

.post-details .rantlist-tags a {
	color: #fff;
	font-size: 20px;
	padding: 5px 10px;
	border-radius: 10px;
	font-weight: 300;
	background-color: rgba(255,255,255,0.2);
	margin-top: 6px;
	margin-right: 6px;
	line-height: 1.1;
	display: inline-block;
	border: none;
}

.post-details .rantlist-tags a:hover {
	color: #fff;
	background-color: rgba(255,255,255,0.3);
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
	cursor: pointer;
}

.box-content-tags {
	margin-top: -4px;
	width: 100%;
}

.rantlist-bglink {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.bglink-tags {
	z-index: -1;
}

.bglink-username {
	height: 50px;
}

.rantlist-comments,
.rantlist-footer-link {
	float: right;
	overflow: hidden;
	font-size: 14px;
	text-align: right;
	font-weight: 500;
	display: block;
	color: #aaaab8;
	padding-top: 8px;
	margin-top: 13px;
	z-index: 2;
	display: flex;
	align-items: center;
}

.rantlist-comment-delete.rantlist-footer-link {
	padding-right: 5px;
}

.commment-num {
	padding-left: 4px;
}

.rantlist-comment-edit.rantlist-footer-link {
	width: 42px;
}

.rantlist-footer-link {
	margin-top: 6px;
}

.reply-row .rantlist-footer-link {
	margin-top: 0;
	padding-top: 2px;
}

.post-details .rantlist-footer-link {
	float: none;
	width: auto;
	font-size: 20px;
	font-weight: 300;
	color: #fff;
	padding: 0;
	margin-top: 0;
}

.rantlist li:hover .rantlist-comments,
.rantlist-footer-link:hover {
	color: #d55161;
	-webkit-transition: color .15s ease-in-out;
	transition: color .15s ease-in-out;
	cursor: pointer;
}

.post-details .rantlist-footer-link:hover {
	color: #fff;
}

.rantlist-reply {
	float: left;
	text-align: left;
}

.addrant-btn {
	position: fixed;
	bottom: 20px;
	left: 50%;
	margin-left: -35px;
	border-radius: 35px;
	height: 70px;
	width: 70px;
	line-height: 70px;
	font-size: 36px;
	color: #fff;
	text-align: center;
	background-color: #d55161;
	display: block;
	z-index: 10;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rant-btm-btns {
	position: fixed;
	bottom: 20px;
	text-align: center;
	display: block;
	z-index: 10;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
	display: flex;
}

.addcomment-btn {
	border-radius: 10px;
	height: 48px;
	width: 340px;
	line-height: 48px;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	background-color: #d55161;
	display: inline-block;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
}

.addrant-btn:hover,
.addcomment-btn:hover {
	background-color: #c14857;
}



/* btn complementary colors */

.bg-c-e6c653,
.post-details .rantlist-vote-col.vote-state-upvoted .plusone.bg-c-e6c653,
.post-details .rantlist-vote-col.vote-state-downvoted .minusone.bg-c-e6c653 {
	background-color: #a973a2; /* purple */
}

.bg-c-e6c653:hover {
	background-color: #986191;
}

.post-details .btn-vote-circle.bg-c-e6c653:hover {
	background-color: #a973a2;
}

.bg-c-f99a66,
.post-details .rantlist-vote-col.vote-state-upvoted .plusone.bg-c-f99a66,
.post-details .rantlist-vote-col.vote-state-downvoted .minusone.bg-c-f99a66 {
	background-color: #d55161; /* red */
}

.bg-c-f99a66:hover {
	background-color: #c14857;
}

.post-details .btn-vote-circle.bg-c-f99a66:hover {
	background-color: #d55161;
}

.bg-c-d55161,
.post-details .rantlist-vote-col.vote-state-upvoted .plusone.bg-c-d55161,
.post-details .rantlist-vote-col.vote-state-downvoted .minusone.bg-c-d55161 {
	background-color: #f99a66; /* orange */
}

.bg-c-d55161:hover {
	background-color: #e68854;
}

.post-details .btn-vote-circle.bg-c-d55161:hover {
	background-color: #f99a66;
}


.bg-c-a973a2,
.post-details .rantlist-vote-col.vote-state-upvoted .plusone.bg-c-a973a2,
.post-details .rantlist-vote-col.vote-state-downvoted .minusone.bg-c-a973a2 {
	background-color: #f99a66; /* orange */
}

.bg-c-a973a2:hover {
	background-color: #e68854;
}

.post-details .btn-vote-circle.bg-c-a973a2:hover {
	background-color: #f99a66;
}


.bg-c-7bc8a4,
.post-details .rantlist-vote-col.vote-state-upvoted .plusone.bg-c-7bc8a4,
.post-details .rantlist-vote-col.vote-state-downvoted .minusone.bg-c-7bc8a4 {
	background-color: #a973a2; /* purple */
}

.bg-c-7bc8a4:hover {
	background-color: #986191;
}

.post-details .btn-vote-circle.bg-c-7bc8a4:hover {
	background-color: #a973a2;
}


.bg-c-2a8b9d,
.post-details .rantlist-vote-col.vote-state-upvoted .plusone.bg-c-2a8b9d,
.post-details .rantlist-vote-col.vote-state-downvoted .minusone.bg-c-2a8b9d {
	background-color: #7bc8a4; /* green */
}

.bg-c-2a8b9d:hover {
	background-color: #5daf89;
}

.post-details .btn-vote-circle.bg-c-2a8b9d:hover {
	background-color: #7bc8a4;
}


.bg-c-69c9cd,
.post-details .rantlist-vote-col.vote-state-upvoted .plusone.bg-c-69c9cd,
.post-details .rantlist-vote-col.vote-state-downvoted .minusone.bg-c-69c9cd {
	background-color: #e6c653; /* yellow */
}

.bg-c-69c9cd:hover {
	background-color: #d9ba49;
}

.post-details .btn-vote-circle.bg-c-69c9cd:hover {
	background-color: #ecd276;
}

.bg-c-bluegreen {
	background-color: #2a8b9d;
}

.bg-c-bluegreen:hover {
	background-color: #1e7787;
}

.post-details .rantlist-vote-col.vote-state-novote .btn-vote-circle {
	background-color: rgba(255,255,255,0.2);
	cursor: default;
}


.rant-image {
	width: 100%;
	display: block;
	margin-top: 16px;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.rant-image img {
	width: 100%;
	display: block;
}

.details-image {
	max-height: none;
	border-radius: 10px;
	margin-top: 24px;
}

.bluegrey-bg {
	height: 485px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: #54556e;
}



/* modals */

.modal-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(66,67,92,0.92);
	display: block;
	z-index: 19;
	display: none;
}

.modal-x {
	position: fixed;
	top: 14px;
	right: 14px;
	color: #fff;
	font-size: 32px;
	z-index: 22;
	width: 54px;
	height: 54px;
	line-height: 54px;
	border-radius: 30px;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
	display: none;
	background-color: #5c5c78;
	align-items: center;
	justify-content: center;
}

.modal-x:hover {
	background-color: #c14857;
}

.modal-title {
	margin-top: 50px;
	font-family: Comfortaa;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
}

.modal-screens {
	width: 284px;
	margin-right: 40px;
	float: left;
}

.modal-text-col {
	width: 366px;
	float: left;
}

.box-footer {
	margin-top: 40px;
}

.footer-text {
	margin-top: 22px;
	color: #AAAAB8;
	font-size: 16px;
	line-height: 1.3;
}

.footer-text-links {
	margin-top: 15px;
}

.footer-text a {
	color: #AAAAB8;
	text-decoration: none;
}

.footer-text a:hover {
	color: #AAAAB8;
	text-decoration: underline;
}

.footer-text-cols {
	display: flex;
	justify-content: space-between;
}

.footer-text-col {
	width: 45%;
	font-size: 16px;
}

.footer-text-col li {
	margin-bottom: 3px;
}

.footer-text-col li:first-child {
	font-weight: 500;
	margin-bottom: 6px;
}

.app-text {
	font-weight: 500;
	font-size: 13px;
	margin-top: 10px;
	color: #c1c1ca;
	text-align: center;
}

.post-details .rantlist-tags {
	max-width: calc(100% - 116px);
}

.reply-row .rantlist-content-col {
	width: 100%;
}

.reply-row .rantlist-tags {
	width: 263px;
}

.reply-row .rantlist-title {
	margin-top: 8px;
	word-wrap:break-word;
}

.reply-row .rantlist-title a {
	color: var(--colorLink) !important;
}

.reply-row .rantlist-title a:hover {
	color: #D55161 !important;
}

.rantlist li.post-details:hover {
	cursor: pointer;
}

.rantlist li.reply-row:hover {
	cursor: default;
}

.reply-bar {
	width: 5px;
	background-color: #e3e3e3;
	height: 100%;
	border-radius: 3px;
	display: inline-block;
	position: absolute;
	left: -71px;
}

.username-row {
	margin-bottom: 6px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}

.reply-row .username-row {
	display: flex;
	justify-content: space-between;
}

.username-details {
	font-weight: 500;
	color: #54556e;
	font-size: 14px;
	float: left;
	-webkit-transition: color .15s ease-in-out;
	transition: color .15s ease-in-out;
}

.username-details:hover {
	color: #d55161;
}

.username-details:hover .profile-score {
	background-color: #d55161;
}

.username-details span {
	background-color: #54556e;
	color: #fff;
	font-weight: 500;
	font-size: 12px;
	padding: 2px 4px;
	border-radius: 4px;
	display: inline-block;
	margin-left: 7px;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
}

.timestamp {
	float: right;
	width: 35px;
	text-align: right;
	color: #aaaab8;
	font-weight: 500;
	font-size: 14px;
}

.username-row .timestamp {
	margin-top: 8px;
}

.back-bar {
	height: 40px;
	background-color: #aaaab8;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 40px;
	padding-left: 20px;
	display: block;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
}

.back-bar:hover {
	background-color: #d55161;
}

.back-bar .icon {
	padding-right: 5px;
	font-size: 22px;
	display: inline-block;
}

.back-text {
	display: inline-block;
	vertical-align: top;
}

/* search */

.search-bar {
	text-align: left;
	position: relative;
	height: 40px;
}

.search-bar .search-input {
	background-color: var(--colorField);
	border-radius: 10px;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	padding: 0 34px 0 12px;
	width: 40px;
	display: inline-block;
	vertical-align: top;
	outline: 0;
	overflow: hidden;
	opacity: 0;
	color: var(--colorDarkGrey);
}

.search-bar .nav-search-icon {
	color: #fff;
	opacity: 0.7;
	font-size: 34px;
	top: 2px;
	right: 8px;
	position: absolute;
	text-align: center;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.search-bar .nav-search-icon:hover {
	opacity: 1;
	cursor: pointer;
}

.search-bar .nav-search-icon-input {
	color: #aaaab8;
	opacity: 0.7;
}

.search-bar .search-btn-icon {
	color: #fff;
	font-size: 24px;
}

.search-bar .search-btn {
	background-color: transparent;
	height: 40px;
	width: 40px;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
}

.search-bar .search-btn:hover {
	background-color: #c14857;
}

.search-base-list a {
	display: block;
	border-top: 2px solid var(--colorLine);
	background-color: #fff;
	padding: 8px 20px;
	vertical-align: middle;
	height: 32px;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
}

.search-base-list a:first-child {
	border-top: 0;
}

.search-base-list a:hover {
	background-color: #f5f5f5;
	cursor: pointer;
}

.search-base-list .icon-search2 {
	color: #e3e3e3;
	font-size: 36px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	display: inline-block;
}

.search-popular {
	color: #54556e;
	font-size: 14px;
	font-weight: 500;
	height: 32px;
	line-height: 32px;
	display: inline-block;
	vertical-align: top;
	margin-left: 10px;
}

.search-bar .clear-search {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #aaaab8;
	left: 202px;
	top: 12px;
	line-height: 20px;
	font-size: 14px;
	color: #fff;
	position: absolute;
	text-align: center;
	cursor: pointer;
	display: none;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
}

.search-bar .clear-search:hover {
	background-color: #d55161;
}

.search-bar-content {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.search-nav-link {
	position: absolute;
	top: 8px;
	left: 0;
	opacity: 0.7;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.search-nav-link:hover {
	opacity: 1;
	cursor: pointer;
}

/* notif page */

.notif-list {
	margin: 0;
	padding: 0;
}

.notif-list li {
	display: flex;
}

.notif-list a {
	background-color: transparent;
	vertical-align: middle;
	position: relative;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
	display: flex;
	align-items: center;
	border-radius: 10px;
}

.notif-list a.notif-username {
	vertical-align: baseline;
	position: relative;
	display: inline;
	border-radius: 0;
	color: var(--colorHint);
}

.notif-list .notif-new a.notif-username {
	color: var(--colorLink);
}

.notif-list a.notif-username:hover {
	text-decoration: underline;	
}

.notif-avatar-link {
	padding: 0 12px 0 18px;
}

.notif-link {
	width: calc(100% - 50px);
	padding: 0 20px 0 0;
	color: var(--colorHint);
}

.notif-list a:hover {
	cursor: pointer;
}

.notif-link:hover .notif-body-text,
.notif-link:hover .notif-time,
.notif-link:hover a.notif-username {
	color: #D55161;
}

.notif-list .icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	width: 24px;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--colorLtMidGrey);
	position: absolute;
	top: 0;
	right: -3px;
	border: 2px solid var(--colorBg);
}

.notif-list .icon {
	color: #fff;
	font-size: 18px;
}

.notif-list .icon-upvote1 {
	font-size: 11px;
}

.notif-body {
	font-size: 20px;
	width: 100%;
	vertical-align: top;
	margin-left: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 64px;
	border-top: 1px solid var(--colorLine);
	-webkit-transition: color .15s ease-in-out;
	transition: color .15s ease-in-out;
}

.notif-username {
	font-weight: 500;
}

.notif-list .notif-new .icon-container {
	background-color: #7bc8a4;
}

.notif-list .notif-new .notif-link {
	color: var(--colorNewsText);
}


.notif-list li:first-child .notif-body {
	border-top: 0;
}

.menu-notif.notif-2digits {
	font-size: 14px;
}

.top-bar-notif.notif-2digits {
	font-size: 12px;
}

.notif-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
}

.notif-avatar img {
	width: 100%;
}

.notif-time {
	font-weight: 500;
	font-size: 14px;
	color: #AAAAB8;
}

/* notif sidebar */

.sidebar .notif-avatar-link {
	padding-left: 0;
}

.sidebar .notif-body {
	font-size: 16px;
	min-height: 44px;
	padding: 10px 0;
}

.sidebar .notif-time {
	display: none;
}

.sidebar .notif-link {
	width: 100%;
	padding: 0;
}

/* subscribed grid */

.subscribed-grid {
	display: flex;
	flex-wrap: wrap;
}

.subscribed-grid li {
	margin-right: 10px;
	margin-bottom: 10px;
}

/* reset password */

.reset-form {
	margin-top: 15px;
}

.reset-password input,
.reset-password-confirm input  {
	width: 280px;
	border: 2px solid #C1C1CA;
	padding: 10px 8px;
	font-size: 16px;
	border-radius: 10px;
	margin-bottom: 10px;
}

.reset-password.form-error .error-text,
.reset-password-confirm.form-error .error-text
{
	display: block;
}

.reset-password.form-error input,
.reset-password-confirm.form-error input  {
	border: 2px solid #d55161;
}

.signup-email-password-field.form-error .error-text {
	margin-bottom: 0;
}

.simple .interior-content .forgot-email-btn {
	margin-top: 10px;
	width: 300px;
}


/* email beta form */

.email-label {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	height: 22px;
	margin-top: -4px;
	text-align: center;
}

.modal-app {
	display: none;
}

.modal-app .email-label {
	font-size: 18px;
	height: 28px;
	margin-top: -8px;
}

.landing .email-label {
	margin-top: -6px;
}

/* sticker page */
.sticker-list {
	margin-top: 7px;
}

.sticker-list li {
	margin-bottom: 9px;
}

.sticker-col1 {
	float: left;
	width: 50%;
}

.sticker-col2 {
	margin-left: 5%;
	width: 45%;
	float: left;
}

.sticker-row2 {
	margin-top: 30px;
}

.mobile-install-banner {
	display: none;
}

.hide {
	display: none;
}

.bar-btm-guy {
	display: none;
}

.rant-top-bar {
	height: 44px;
	background-color: #40415a;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	line-height: 44px;
	display: block;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	overflow: hidden;
}

.rant-top-bar .btn {
	background-color: #d55161;
	border-radius: 10px;
	font-size: 16px;
	height: 30px;
	line-height: 30px;
	width: 40px;
	display: inline-block;
	vertical-align: top;
	margin: 7px 3px 0;
	padding: 0 5px;
	cursor: pointer;
}

.rant-top-bar .btn.btn-notif-clear {
	visibility: hidden;
}

.btn.btn-notif {
	padding-top: 5px;
	padding-bottom: 3px;
	display: inline-block;
	align-items: center;
}

.rant-top-bar .btn:hover {
	background-color: #c14857;
}

.top-bar-back {
	font-size: 14px;
	font-weight: 500;
	float: left;
	width: 50%;
	min-height: 40px;
	display: block;
}

.devrant-logo {
	font-size: 24px;
	font-weight: 500;
	float: left;
	width: 50%;
	min-height: 40px;
	display: block;
}

.devrant-logo .icon {
	display: none;
}

.back-search {
	width: 108px;
}

.top-bar-back .icon {
	font-size: 24px;
	margin: 0 8px 0 20px;
	display: inline-block;
}

.top-bar-back a:hover,
.feed-top-icons a:hover
{
	color: #c6c7d9;
}

.btn-back {
	vertical-align: top;
	display: inline-block;
}

.share-icons {
	display: flex;
}

.feed-top-icons {
	float: right;
	text-align: right;
	margin-right: 20px;
	height: 44px;
}

.feed-top-icons a {
	font-size: 30px;
	margin-left: 10px;
	display: inline-block;
}

.feed-top-icons.menu-icon {
	float: left;
	text-align: left;
	margin-left: 10px;
}

.filter-top-bar {
	height: 0;
	background-color: #aaaab8;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 44px;
	display: block;
	overflow: hidden;
	text-align: center;
}

.filter-top-bar form {
	display: inline-block;
}

.filter-top-bar input {
	margin-left: 8px;
	cursor: pointer;
}

.filter-top-bar label {
	cursor: pointer;
}

.filter-top-bar label:hover,
.filter-top-bar input:hover + label {
	color: #e7e7ee;
}

.top-tab-bar {
	height: 44px;
	background-color: #fff;
	border-bottom: 2px solid var(--colorLine);
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 44px;
	display: block;
	overflow: hidden;
	text-align: center;
	width: 100%;
}

.top-tab {
	float: left;
	height: 40px;
	line-height: 40px;
	border-bottom: 4px solid transparent;
	font-weight: 500;
	font-size: 16px;
	transition: all .15s ease-in-out;
	width: 25%;
	color: #54556e;
}

.top-tab.selected {
	border-bottom: 4px solid #54556e;
}

.top-tab:hover {
	color: #d55161;
	border-bottom: 4px solid #d55161;
}

.news-bar {
	position: relative;
	border-bottom: 1px solid var(--colorLine);
	font-size: 14px;
	display: block;
	overflow: hidden;
	text-align: left;
	width: calc(100% - 38px);
	margin: 0 20px 18px 18px;
}

.rantlist li.weekly-bar {
	border-bottom: 0;
	width: auto;
	padding: 0;
}

.weekly-bar {
	width: 100%;
	margin-bottom: 18px;
	font-size: 14px;
	text-align: left;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.news-bar {
	min-height: 84px;
}

.news-guy {
	position: absolute;
	bottom: 0;
	right: 15px;
	width: 105px;
}

.news-close {
	position: absolute;
	top: 0;
	right: 0;
	color: #aaaab8;
	font-size: 24px;
}

.news-close:hover {
	color: #d55161;
}

.news-content {
	width: calc(100% - 139px);
	padding: 0 20px 16px 0;
	display: block;
}

.weekly-content {
	width: 100%;
	padding-bottom: 12px;
	display: block;
}

.rantlist li.weekly-bar:hover {
	background-color: #fff;
}

.news-content:hover .news-title {
	color: #d55161;
}


.weekly-content:hover .news-title {
	opacity: 0.7;
}

.news-title {
	font-size: 20px;
	font-family: Comfortaa;
	font-weight: bold;
	color: var(--colorBoxTitle);
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.weekly-content .news-title {
	font-size: 20px;
	color: #fff;
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-weight: 500;
}

.news-body {
	font-size: 18px;
	color: var(--colorDarkGrey);
	margin-top: 4px;
}

.news-cta {
	color: #aaaab8;
	font-size: 14px;
	font-weight: 500;
	margin-top: 10px;
}

.weekly-content .news-cta {
	color: #fff;
	opacity: 0.7;
}

.share-icons a {
	display: inline-block;
	margin-right: 6px;
	height: 48px;
	width: 48px;
	font-size: 28px;
	border-radius: 10px;
	text-align: center;
	overflow: hidden;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.share-icons a span {
	display: inline-block;
	vertical-align: middle;
}

.twitter-share {
	background-color: #00a7ea;
}

.twitter-share:hover {
	background-color: #1196de;
}

.fb-share {
	background-color: #355ca7;
	margin-right: 7px;
}

.fb-share:hover {
	background-color: #364e84;
}

.share-text {
	font-size: 14px;
	font-weight: 500;
	padding-left: 5px;
}

/* profile */

.profile-bar {
	float: left;
	width: calc(100% - 152px);
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-left: 18px;
}

.notif-bar {
	width: calc(100% - 160px);
}

.title-bar {
	float: left;
	width: 110px;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-left: calc(50% - 120px);
}

.back-profile {
	width: 60px;
}

.username-profile {
	font-family: Comfortaa;
	font-weight: 500;
	font-size: 26px;
}

.profile-detail-col1 {
	font-size: 14px;
	color: #aaaab8;
	font-weight: 500;
	margin-bottom: 2px;
}

.profile-detail-col2 {
	margin-bottom: 12px;;
}

.profile-detail-col2 a {
	color: var(--colorLink);
}

.profile-detail-col2 a:hover {
	color: var(--colorBtnHighlight);
}

.profile-join-date {
	color: #aaaab8;
	font-size: 14px;
	font-weight: 500;
}

.profile-tabs {	
	padding: 0 20px 12px 18px;
	display: flex;
}

.tabs {
	text-align: left;
	color: #40415a;
	cursor: pointer;
	margin-right: 30px;
}

.tab-line {
	width: 100%;
	height: 2px;
	background-color: transparent;
	border-radius: 2px;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
}

.tab-count {
	font-size: 16px;
	margin-top: 4px;
	color: var(--colorBoxTitle);
	-webkit-transition: color .15s ease-in-out;
	transition: color .15s ease-in-out;
}

.tab-label {
	font-size: 20px;
	margin-top: 9px;
	font-family: Comfortaa;
	font-weight: bold;
	color: var(--colorBoxTitle);
	-webkit-transition: color .15s ease-in-out;
	transition: color .15s ease-in-out;
}

.tabs.highlight .tab-line {
	background-color: var(--colorLink);
}

.tabs.highlight .tab-count,
.tabs.highlight .tab-label {
	color: var(--colorLink);
}

.tabs:hover .tab-line {
	background-color: #d55161;
}

.tabs:hover .tab-count,
.tabs:hover .tab-label {
	color: #d55161;
}


/* signup modal */

.content-centered-container {
	height: 100%;
	width: 100%;
	position: relative;
	/*overflow-y: hidden;*/
	position: absolute;
}

.content-centered-modal {
	width: 432px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	z-index: 21;
	color: #fff;
	font-size: 18px;
}

.signup-login-forms a {
	color: #fff;
}

.signup-login-forms a:hover {
	color: #fff;
	text-decoration: underline;
}

.content-centered-modal .btn:hover {
	color: #fff;
}

.overlay {
	width: 100%;
	background-color: #000;
	opacity: 0.8;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	display: none;
}

.signup-title {
	font-family: Comfortaa;
	font-size: 42px;
	margin-bottom: 8px;
	font-weight: bold;
	line-height: 1.2;
}

.signup-subtitle {
	font-size: 18px;
	margin-bottom: 22px;
	color: #babacc;
}

.signup-fb-btn {
	background-color: #3b5b9a;
}

.signup-fb-btn .icon {
	font-size: 40px;
	width: 55px;
	height: 70px;
	line-height: 70px;
	display: inline-block;
	margin-left: -15px;
}

.btn-text {
	display: inline-block;
	vertical-align: top;
	height: 70px;
	line-height: 70px;
}

.signup-fb-btn:hover {
	background-color: #274683;
}

.signup-email-title {
	font-size: 22px;
	margin-top: 10px;
	margin-bottom: 14px;
}

.signup-login-forms input {
	height: 34px;
	line-height: 34px;
	padding: 5px 20px 5px 55px;
	border-radius: 10px;
	border: 2px solid #fff;
	background-color: #fff;
	width: 354px;
	font-size: 18px;
}

.signup-login-forms textarea {
	height: 80px;
	line-height: 1.3;
	padding: 10px 14px 10px 55px;
	border-radius: 10px;
	border: 2px solid #fff;
	background-color: #fff;
	width: 360px;
	font-size: 18px;
	vertical-align: top;
	margin-bottom: 10px;
}

.post-rant-form textarea,
.post-comment-form textarea,
.edit-rant-form textarea,
.edit-comment-form textarea{
	height: 200px;
	line-height: 1.3;
	padding: 10px 14px 10px 14px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border: 2px solid #fff;
	background-color: #fff;
	width: 400px;
	font-size: 18px;
	vertical-align: top;
	margin-bottom: 0;
}

.post-rant-bottom {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #aaaab8;
	color: #fff;
	padding: 8px 14px;
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: 500;
}

.post-rant-bottom .post-count {
	display: inline-block;
	text-align: left;
	float: left;
}

.post-rant-bottom .rant-attached {
	display: inline-block;
	float: right;
	text-align: right;
}

.rant-attached .icon {
	margin-right: 6px;
	font-size: 16px;
	display: inline-block;
	vertical-align: top;
}

.rant-attached .attach-text {
	display: inline-block;
}

.rant-attached:hover .attach-text {
	text-decoration: underline;
}

.signup-fields {
	position: relative;
}

.signup-email-field input {
	margin-bottom: 10px;
}

.signup-email-field {
	clear: both;
}

.form-error input {
	border: 2px solid #d55161;
	margin-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.form-error textarea {
	border: 2px solid #d55161;
	margin-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.post-rant-form .error-text,
.post-comment-form .error-text,
.edit-rant-form .error-text,
.edit-comment-form .error-text{
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	margin-bottom: 0;
}

.form-error .form-error-alert,
.form-error .error-text {
	display: block;
}

.form-error-alert {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	font-size: 13px;
	font-weight: 500;
	background-color: #d55161;
	border-radius: 50%;
	z-index: 24;
	border: 2px solid #fff;
	display: none;
}

.error-text {
	font-size: 12px;
	text-align: left;
	padding: 4px 12px 4px;
	background-color: #d55161;
	margin-bottom: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	display: none;
}

.type-btn {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.type-btn:first-child {
	margin-top: 15px;
}

.type-btn-icon {	
	margin-left: 6px;
	height: 48px;
	width: 48px;
	text-align: center;
	line-height: 48px;
	color: #aaaab8;
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.type-btn-text {
	margin-left: 3px;
}

.type-rant {
	height: 200px;
	flex-direction: column;
}

.type-rant .type-btn-icon {
	font-size: 100px;
	height: auto;
	width: auto;
	margin-top: 37px;
}

.rant-type-select-container {
	display: flex;
	justify-content: center;
}

.rant-type-select {
	display: flex;
	align-items: center;
	-webkit-transition: color .15s ease-in-out;
	transition: color .15s ease-in-out;
}

.signup-login-forms a.rant-type-select:hover {
	text-decoration: none;
	color: #babacc;
}

.rant-type-select span {
	padding-right: 10px;	
}

.forgot-email-btn {
	margin-top: 5px;
}

.signup-fields .form-icon {
	position: absolute;
	top: 0;
	left: 6px;
	height: 48px;
	width: 48px;
	text-align: center;
	line-height: 48px;
	color: #aaaab8;
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-char-count {
	position: absolute;
	bottom: 13px;
	left: 14px;
	text-align: left;
	color: #aaaab8;
	font-size: 12px;
}

.login-form .signup-email-container,
.forgot-form .signup-email-container {
	display: block;
}

.signup-login-link-container {
	margin-top: 40px;
	margin-bottom: 10px;
	color: #babacc;
}

.login-signup-link-container,
.forgot-signup-link-container {
	margin-top: 30px;
	color: #babacc;
}

.forgot-signup-link-container a,
.login-signup-link-container a {
	color: #babacc;
}

.signup-skip {
	margin-top: 20px;
}

.signup-login-link,
.modal-alert-btn {
	background-color: #5c5c78;
	width: 100%;
}

.signup-login-link:hover {
	background-color: #c14857;
}

.btn-red {
	background-color: #d55161;
	color: #fff;
	border: 0;
}

.btn-red:hover {
	color: #fff;
	background-color: #c14857;
}

.menu-modal-list li a {
	min-height: 48px;
	line-height: 48px;
	font-size: 22px;
	font-weight: 500;
	display: block;
	border-radius: 10px;
}

.menu-modal-list li a:hover {
	text-decoration: none;
	background-color: #c14857;
}

.menu-modal-list .icon {
	font-size: 32px;
	color: #babacc;
	line-height: 48px;
	vertical-align: middle;
	margin-right: 10px;
}

.menu-modal-list li a:hover .icon {
	color: #fff;
}

.menu-modal-list .icon-bell1 {
	position: relative;
}

.downvote-list li {
	margin-bottom: 8px;
}

.downvote-list li a {
	background-color: #40415A;
}

.notif-badge {
	width: 25px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	background-color: #7bc8a4;
	margin-left: 8px;
	border-radius: 12px;
	display: inline-block;
	text-align: center;
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
	opacity: 1;
}

.top-bar-notif {
	display: block;
	position: absolute;
	top: 2px;
	right: -12px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 14px;
	border: 2px solid #40415a;
}

.rant-top-bar .menu-icon {
	position: relative;
}

.rant-top-bar .menu-icon a:hover .notif-badge {
	background-color: #62b38d;
}

.state-logged-in .menu-modal .menu-option-log-in {
	display: none;
}

.state-logged-out .menu-modal .menu-option-log-out {
	display: none;
}

.state-logged-out .menu-modal .menu-option-profile {
	display: none;
}

.state-logged-out .menu-modal .menu-option-settings {
	display: none;
}

.list-login {
	margin: 10px 0 20px;
}

.menu-modal .menu-logo {
	text-align: center;
	font-size: 42px;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
}

.menu-modal .menu-logo:hover {
	text-decoration: none;
}

.grey-btns {
	margin-top: 15px;
}

.grey-btns a {
	background-color: #5c5c78;
	margin-bottom: 10px;
}

/* outline color btn
.signup-skip-btn:hover {
	border: solid 2px #e00b38;
	color: #e00b38 !important;
}
*/

.no-link {
	text-decoration: none !important;
	color: #fff !important;
	cursor: default !important;
}

.no-link:hover {
	text-decoration: none !important;
	color: #fff !important;
	cursor: default !important;
}

.reset-form-body .container {
	width: 400px;
	overflow: hidden;
}

.modal-base {
	top: 150px;
	width: 432px;
	display: none;
	position: fixed;
}

.reset-form,
.reset-form .signup-email-container {
	display: block;
}

.reset-form {
	margin-top: 110px;;
}

.reset-form .signup-title {
	line-height: 50px;
	margin-bottom: 12px;
}

.alert-modal .signup-title {
	margin-bottom: 15px;
}

.post-rant-form .signup-title,
.post-comment-form .signup-title,
.edit-rant-form .signup-title,
.edit-comment-form .signup-title{
	margin-bottom: 13px;
}

.reset-logo {
	text-align: center;
	font-size: 110px;
}

.signup-form {
	top: 150px;
}

.details-form {
	top: 150px;
}

.signup-tos-print {
	font-size: 14px;
	color: #babacc;
	margin-top: 12px;
	line-height: 1.3;
}

.signup-tos-print a {
	color: #babacc;
	text-decoration: underline;
}

.signup-tos-print a:hover {
	color: #fff;
}

.save-login-container {
	font-size: 18px;
	margin-top: 12px;
	display: block;
	color: #babacc;
}

.save-login-container label {
	cursor: pointer;
}

.save-login-container label span {
	-webkit-transition: color .15s ease-in-out;
	transition: color .15s ease-in-out;
}

.save-login-container label:hover span {
	color: #fff;
}

input.save-login-input {
	height: auto;
	line-height: 1.2;
	width: auto;
	cursor: pointer;
}

.stickers-img {
	margin-bottom: 30px;
	display: block;
}

.stickers-img img {
	width: 80%;
}

.btn-loader {
	background-image: url(/static/devrant/img/pink-dots-animation1.gif);
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #c14857;
	background-size: 53px 13px;
	color: transparent;
}

.btn-loader:hover {
	background-color: #c14857;
	color: transparent !important;
}

.product-list {
	width: calc(100% + 10px);
	overflow: hidden;
	margin-left: -10px;
}

.product-list li {
	width: calc(33.333333333% - 10px);
	position: relative;
	float: left;
	margin-left: 10px;
	margin-bottom: 10px;
}

.product-list li:hover {
	opacity: 0.9;
}

.product-list li img {
	width: 100%;
}

.product-list li span {
	position: absolute;
	bottom: 5px;
	right: 5px;
	border-radius: 5px;
	padding: 3px 5px;
	background-color: #d55161;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
}

.stack-list {
	width: calc(100% + 10px);
	overflow: hidden;
	margin-left: -10px;
}

.stack-list li {
	width: calc(33.333333333% - 10px);
	position: relative;
	float: left;
	margin-left: 10px;
	text-align: center;
}

.stack-description {
	margin-top: 5px;
	min-height: 90px;
}

.stack-list li img {
	width: 100%;
	border-radius: 5px;
}

.stack-list a.stack-link {
	text-decoration: none;
	color: #2f2f32;
	height: 100%:
	width: 100%;
}

.stack-list a.stack-link:hover {
	text-decoration: none;
}

.profile-avatar-container {
	background-image: url(/static/devrant/img/profile-banner-bg1b.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 290px;
	width: 100%;
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
}

.profile-avatar-circle {
	width: 260px;
	height: 260px;
	border-radius: 50%;
	overflow: hidden;
	background-color: transparent;
	display: block;
	top: 15px;
	left: calc(50% - 130px);
	position: absolute;
	z-index: 2;
}

.avatar-blank {
	background-image: url(/static/devrant/img/profile-circle-dots1.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	width: 400px;
	height: 400px;
	display: inline-block;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.avatar-blank:hover {
	opacity: 0.8;
}

.avatar-blank.avatar-locked:hover {
	opacity: 1;
}

.avatar-blank .avatar-blank-text {
	display: block;
	text-align: center;
	margin: 0 auto;
	font-family: Comfortaa;
	font-weight: 500;
	color: #fff;
	font-size: 24px;
	margin-top: calc(50% - 50px);
}

.avatar-blank-howto {
	font-size: 16px;
	line-height: 1.3;
	color: #fff;
	width: 70%;
	margin: 10px auto;
}

.avatar-btn,
.avatar-btn:hover {
	margin-top: 5px;
	border: solid 1px #fff;
	color: #fff;
	background-color: transparent;
}

.username-row .profile-avatar-circle {
	width: 50px;
	height: 50px;
	margin-right: 10px;
	border-radius: 50%;
	overflow: hidden;
	background-color: #54556E;
	display: inline-block;
	top: auto;
	left: auto;
	position: relative;
	z-index: 1;
	float: left;
}

.profile-avatar-circle img {
	width: 100%;
}

.avatar-edit .circledots {
	position: absolute;
	top: 14px;
	z-index: 2;
	opacity: 0;
	width: 530px;
	transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out;
}

.avatar-edit:hover .circledots {
	opacity: 0.2;
}

.profile-avatar-overlay {
	width: 100%;
	height: 100%;
	opacity: 0.66;
	background-color: #54556E;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 0;
}

.collab-subtitle {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 3px;
	margin-top: 20px;
}

.collab-content {
	font-size: 26px;
	color: #fff;
}

.collab-content a:hover {
	text-decoration: underline;
}

.blog-title {
	color: #54556e;
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 4px;
}

.blog-subtitle {
	color: #aaaab8;
	font-size: 12px;
	font-weight: 500;
}

.blog-container {
	background-color: #fff;
	padding: 12px 20px;
	font-size: 14px;
	line-height: 1.3;
}

.blog-container a {
	color: #54556e;
}

.blog-container a:hover {
	color: #c14857;
}

.blog-footer {
	color: #54556e;
	margin-top: 20px;
	padding-top: 16px;
	padding-bottom: 6px;
	border-top: 2px solid var(--colorLine);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
}


/* center col top bar */

.top-bar-container {
	display: flex;
	justify-content: space-between;
	padding: 0 20px 8px 18px;
}

.top-bar-title {
	font-size: 20px;
	font-family: Comfortaa;
	font-weight: bold;
	color: var(--colorBoxTitle);
}

.top-bar-title-container {
	display: flex;
}

/* type filter dropdown */

.top-bar-type-position {
	position: relative;
}

.type-active.top-bar-types {
	width: 185px;
	background-color: var(--colorBg);
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
	overflow: hidden;
	margin-left: -5px;
	margin-top: -11px;
	z-index: 5;
	position: absolute;
}

.type-top-row {
	display: flex;	
	margin: 12px 12px 0;
}

.type-label {
	font-size: 14px;
	background-color: var(--colorFieldIcon);
	color: #fff;
	border-radius: 5px;
	height: 19px;
	font-weight: 500;
	padding: 0 6px;
	display: flex;
	align-items: center;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.type-label-base {
	margin: 1px 0 0 7px;
}

.type-label:hover {
	background-color: var(--colorBtnHighlight);
	cursor: pointer;
}

.type-active .type-top-row:hover .type-label {
	background-color: var(--colorBtnHighlight);
	cursor: pointer;
}

.type-active .type-top-row:hover .type-label-name {
	color: var(--colorBtnHighlight);
	cursor: pointer;
}

.type-label-name {
	font-size: 14px;
	margin-left: 7px;
	color: var(--colorHint);
	font-weight: 500;
	height: 19px;
	display: flex;
	align-items: center;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.type-dropdown {
	padding: 4px 12px 4px;
}

.type-dropdown li {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--colorLine);
	padding: 7px 0;
	cursor: pointer;
}

.type-dropdown li:first-child {
	border-top: 0;
}

.type-button {
		background-color: var(--colorBtnSelectable);
		cursor: pointer;
		text-align: center;
		color: #fff;
		font-weight: 500;
		padding: 8px;
		-webkit-transition: all .15s ease-in-out;
		transition: all .15s ease-in-out;
}

.type-button:hover {
		background-color: var(--colorBtnBgOne);
}

.type-changed.type-button {
		background-color: var(--colorBtnBgOne);
}

.type-changed.type-button:hover {
		background-color: var(--colorRedHover);
}

.type-dropdown-check {
	width: 16px;
	height: 16px;
	border-radius: 5px;
	text-align: center;
	justify-content: center;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 14px;
	background-color: var(--colorBtnBgOne);
	border: 2px solid var(--colorBtnBgOne);
}

.type-dropdown li.type-dropdown-unchecked {
	color: var(--colorHint);
}

.type-dropdown li.type-dropdown-unchecked .type-dropdown-check {
	background-color: transparent;
	border: 2px solid var(--colorLine);	
}

.type-dropdown li.type-dropdown-unchecked .icon {
	display: none;
}

.type-dropdown li:hover .type-downdown-label {
	color: var(--colorBtnBgOne);
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.type-dropdown .type-dropdown-check:hover {
	border-color: var(--colorRedHover);
	background-color: var(--colorRedHover);
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.type-dropdown li.type-dropdown-unchecked:hover .type-dropdown-check {
	border-color: var(--colorBtnBgOne);
	background-color: transparent;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.type-active {
	display: none;
}


.search-title {
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.top-bar-filters {
	display: flex;
}


.top-bar-filters a {
	color: #AAAAB8;
	padding-left: 9px;
}

.top-bar-filters a:hover {
	color: #d55161;
}

.top-bar-filters .selected {
	font-weight: 500;
}

.top-bar-times {
	border-left: 1px solid #E3E3E3;
	margin-left: 10px;
}

/* profile page */

.main-cols-profile,
.main-cols-rant {
	margin-top: 30px;
}

.main-cols-profile .body-col2 {
	margin-top: -11px;
}

.nav.scroll {
	background-color: transparent;
}

.profile-banner {
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 564px;
	position: relative;
}

.profile-avatar-bg {

}

.profile-username-container {
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 34px;
	width: 100%;
}

.profile-username-centered {
	color: #fff;
	text-align: left;
	width: 1260px;
	margin-left: 50px;
	margin-right: 50px;
}

.profile-avatar-bg img {
	width: 530px;
}

.profile-username {
	font-family: Comfortaa;
	font-size: 48px;
	margin-bottom: 6px;
}

.profile-score {
	font-size: 20px;
	padding: 5px 10px;
	border-radius: 10px;
	background-color: rgba(255,255,255,0.2);
	display: inline-block;
}

/* rant banner */

.rant-banner {
	display: flex;
	justify-content: center;
	min-height: 564px;
	position: relative;
}

.post-details-container {
	max-width: 1340px;
	display: flex;
	margin-left: 40px;
}

.rant-detail-avatar {
	width: 466px;
	margin-left: 3%;
	margin-top: 55px;
}

.rant-detail-avatar img {
	width: 100%;
}

.rant-tag-row {
	margin-top: 24px;
	display: flex;
	justify-content: space-between;
}

.rant-extras {
	display: flex;
	font-size: 20px;
	margin-top: 14px;
}

.rant-top-info {
	color: #fff;
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 9px;
}

.rant-top-type {
	opacity: 1;
	text-transform: uppercase;
}

.rant-username {
	font-size: 28px;
	font-family: Comfortaa;
	font-weight: bold;
	opacity: 1;
}

.rant-top-info a:hover {
	opacity: 0.7;
}

.rantlist-delete,
.rant-btn-favorite,
.rantlist-edit {
	opacity: 0.7;
}

.post-details .rantlist-edit.rantlist-footer-link {
	padding-left: 15px;
}

.rant-timestamp {
	margin-left: 20px;
	font-size: 20px;
	color: #fff;
	opacity: 0.7;
	font-weight: 300;
	margin-top: 8px;
}

.rant-extras a {
	display: inline-block;
	white-space: nowrap;
}

.rant-extras a:hover {
	opacity: 1;
}

.post-details .rantlist-content a,
.collab-content a {
	color: #fff !important;
	opacity: 0.7;
}

.post-details .rantlist-content a:hover,
.collab-content a:hover {
	color: #fff !important;
	opacity: 0.7;
	text-decoration: underline;
}

.post-details-text {
	display: flex;
}

/* user info */

.user-info {
	display: flex;
}

.user-info:hover .user-name {
	color: #D55161;
}

.user-info:hover .user-score {
	background-color: #D55161;
}

.rantlist-content-col .user-info {
	width: auto;
	z-index: 2;
}

.user-circle {
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 50%;
}

.user-circle img {
	width: 100%;
}

.user-info-text {
	margin-left: 10px;
}

.user-extras {
	display: flex;
}

.user-name {
	font-size: 20px;
	font-weight: 500;
	color: var(--colorLink);
	margin-top: -1px;
	margin-bottom: 2px;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.user-score {
	color: #fff;
	font-size: 14px;
	padding: 0 6px;
	font-weight: 500;
	background-color: #54556E;
	border-radius: 5px;
	display: flex;
	align-items: center;
	height: 19px;
	overflow: hidden;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.user-dpp {
	padding: 0 5px;
	margin-left: 4px;
	font-size: 11px;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

.box-related-rants a:hover .related-rant-commments {
	color: #D55161;
}

.box-related-rants .user-info:hover .user-name {
	color: var(--colorLink);
}

.top-bar-notif {
	display: none;
}

.meetup-container {
	margin-top: 10px;
}

.btn-signup,
.btn-subscribe,
.btn-notif {
	padding: 5px 18px 3px;
}

.box-duck {
	padding-left: 8px;
	float: right;
}

.box-duck img {
	width: 80px;
}

/* notif tabs */

.notifs-tabs {
	display: flex;
}

.notif-types {
	display: flex;
	margin-left: 16px;	
	margin-top: 2px;
	flex-wrap: wrap;
}

.notif-types a {
	padding-right: 10px;
	color: var(--colorTabTextUnselected);
	white-space: nowrap;
}


/* Carbon styles */
#carbonads {
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  
  #carbonads {
	display: flex;
	max-width: 260px;
	margin-bottom: 22px;
  }
  
  #carbonads a {
	color: var(--colorDarkGrey);
	text-decoration: none;
  }

  .carbon-wrap {	  
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
  }

  .carbon-wrap:hover {
	opacity: 0.8;
  }
  
  #carbonads a:hover {
	color: inherit;
  }
  
  #carbonads span {
	position: relative;
	display: block;
	overflow: hidden;
  }
  
  #carbonads .carbon-wrap {
	display: flex;
  }
  
  .carbon-img {
	display: block;
	margin: 0;
	line-height: 1;	
  }
  
  .carbon-img img {
	display: block;
	border: 1px solid var(--colorLine);
  }
  
  .carbon-text {
	font-size: 12px;
	padding: 5px 10px;
	line-height: 1.6;
	text-align: left;
  }
  
  #carbonads .carbon-poweredby {
	display: inline-block;
	padding: 8px 0 0;	
	text-align: left;
	font-size: 11px;
	line-height: 1;
	color: var(--colorHint)
  }

  #carbonads .carbon-poweredby:hover {
	color: var(--colorHint);
	text-decoration: underline;
  }

  .pipeless-banner-container {
	border-radius: 10px;
	overflow: hidden;
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px solid var(--colorLine);
  }

  .pipeless-banner-container:hover {
	border: 1px solid var(--colorBoxTitle);
  }

  .pipeless-banner {
	  width: 100%;
  }

  .mobile-box {
	padding: 16px 16px 48px 16px;
	margin-bottom: 20px;	
	border-bottom: 1px solid var(--colorLine);
  }

  .mobile-box .pipeless-banner-container {
	border: none;
  }

@media screen and (min-width: 1360px) {
	.notif-types a {
		padding-right: 16px;
	}
}

.notif-types a:hover {
	color: var(--colorBtnBgOne);
}

.notif-types a:last-child {
	padding-right: 0;
}

.notif-new-dot {
	display: none;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: var(--colorNotif);
	margin-right: 4px;
	margin-bottom: 3px;
}

.notif-new {
	display: inline-block;
}

a.notif-selected {
	color: var(--colorTabText);
	font-weight: 500;
}

a.notif-selected:hover {
	color: var(--colorTabText);
}




@media screen and (max-width: 1200px) {

	.main-cols {
		display: block;
	}

	.body-col1 {
		float: left;
	}
	
	.body-col2 {
		float: right;
		width: calc(100% - 350px);
		max-width: 100%;
		margin-right: 10px;
	}
	
	.body-col3 {
		float: left;
	}
	
	.rant-btm-btns {
		left: calc(50% - 224px);
	}
	
	.avatar-blank {
		width: 330px;
		height: 330px;
	}	
	
	.top-bar-filters a {
		padding-left: 7px;
	}

}

@media screen and (max-width: 880px) {

	.nav-top-rants {
		display: none;
	}
	
	.top-bar-times a span {
		display: none;
	}
	
	.title-condense {
		display: none;
	}

}

@media screen and (max-width: 760px) {

	/* nav bar */

	.nav {
		width: calc(100% - 32px);
		padding: 0 16px;
	}

	.nav-btns a {
		opacity: 1;
	}

	a.nav-btn {
		font-size: 16px;
		padding: 6px 18px;
	}


	/* general */
	
	.news-bar {	
		margin-top: 14px;	
	}
	
	.main-cols {
		margin-top: 60px;
	}

	.narrow-hide {
		display: none;
	}

	.sticker-col1 {
		float: none;
		width: 100%;
	}

	.sticker-col2 {
		margin-top: 12px;
		margin-left: 5%;
		width: 90%;
		float: none;
	}

	.bluegrey-bg {
		display: none;
	}

	.container {
		min-width: 320px;
	}

	.modal-content {
		width: 100%;
		margin-top: 90px;
	}

	.modal-screens {
		display: none;
		width: 70%;
		margin: 0
		float: none;
		position: fixed;
		bottom: -200px;
	}

	.modal-title {
		width: 100%;
		font-size: 28px;
	}

	.app-btns.modal-btns {
		width: 100%;
	}

	.modal-text-col {
		width: 80%;
		margin-left: 10%;
	}

	.mobile-install-banner {
		display: flex;
		justify-content: center;
		height: 38px;
		width: 100%;
		position: fixed;
		bottom: 8px;
		z-index: 8;
	}

	.mobile-install-banner a {
		width: auto;
		background-color: #C14857;
		border-radius: 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
		height: 38px;
		font-size: 16px;
		white-space: nowrap;
		padding: 0 16px;
		border: none;
		margin: 0 3px;
	}
	
	.mobile-install-banner a .icon {
		font-size: 22px;
		padding-right: 8px;
	}

	.iphone-btn, .android-btn {
		display: flex;
	}

	.interior-content {
		width: 100%;
		min-height: 100px;
	}

	.interior-centered {
		width: 100%;
	}

	.body-col1 {
		display: none;
	}

	.body-col2 {
		width: 100%;
		min-height: 100px;
		background-color: var(--colorBg);
		margin: 0;
		text-align: left;
		border-radius: 0;
		overflow: hidden;
		float: left;
		padding-bottom: 46px;
	}

	.rantlist-content-col {
		width: calc(100% - 50px);
	}

	.rantlist-title-text,
	.rantlist-content,
	.collab-summary {
		width: 100%;
		word-wrap:break-word;
	}

	.reply-row .rantlist-content-col {
		width: 100%;
	}

	.reply-row .rantlist-title {
		width: 100%;
		word-wrap:break-word;
	}

	.details-page {
		background-image: none;
	}

	body.landing-rant {
		background: url(/static/devrant/img/detailed-bg1.png) top left repeat;
	}

	.rant-top-bar {
		background-color: #54556E;
		height: 50px;
		line-height: 50px;
		position: fixed;
		top: 0;
		z-index: 8;
		width: 100%;
		padding: 0;
		border-radius: 0;
		overflow: hidden;
	}

	.devrant-logo {
		font-size: 24px;
		float: left;
		width: 50%;
		height: 50px;
		line-height: 50px;
	}

	.rant-top-bar .devrant-logo .icon {
		padding-left: 20px;
		display: block;
		height: 50px;
		line-height: 50px;
	}

	.share-icons {
		float: right;
		text-align: right;
		margin-top: 5px;
	}

	.share-icons a {
		display: inline-block;
		margin-left: 5px;
		width: 50px;
		height: 40px;
		line-height: 40px;
		padding: 0;
		font-size: 28px;
	}

	.share-text {
		display: none;
	}

	.rantlist {
		padding-top: 16px;
	}

	.rantlist-bg {
		width: auto;
		min-height: auto;
		border-radius: 0;
	}

	.addcomment-btn {
		bottom: 92px;
		width: 90%;
		left: 0;
		margin-left: 5%;
		z-index: 8;
	}

	.addrant-btn {
		bottom: 95px;
		left: calc(50% - 35px);
		margin: 0 auto;
	}

	.profile-avatar-container {
		margin-top: 50px;
		height: 240px;
	}

	.profile-avatar-circle {
		width: 210px;
		height: 210px;
		left: calc(50% - 105px);
	}

	.page-feed .rantlist {
		padding-top: 0;
	}

	.profile-page .rantlist {
		padding-top: 0;
	}

	.profile-score {
		font-size: 16px;
	}

	.username-profile {
		font-size: 22px;
	}

	.rant-top-bar .btn {
		margin-top: 9px;
	}

	.search-bar {
		margin-left: calc(50% - 160px);
		margin-top: 2px;
	}

	.search-bar .search-input {
		width: 140px;
	}

	.filter-top-bar {
		margin-top: 50px;
	}

	.content-centered-modal {
		width: auto;
		margin: 0;
	}

	.modal-base {
		width: 90%;
		margin: 0 5%;
	}

	.signup-title {
		font-size: 32px;
	}

	.install-modal .signup-title {
		font-size: 32px;
		margin-bottom: 18px;
	}

	.signup-login-forms input {
		width: calc(100% - 80px);
	}

	input.save-login-input {
		width: auto;
	}

	.modal-btn {
		width: 100%;
	}

	.signup-login-forms textarea {
		width: calc(100% - 73px);
	}

	.signup-login-forms textarea {
		height: 58px;
	}

	.post-rant-form textarea,
	.post-comment-form textarea,
	.edit-rant-form textarea,
	.edit-comment-form textarea,{
		width: calc(100% - 32px);
	}

	.stickers-img img {
		width: 70%;
	}

	.search-bar .clear-search {
		left: 157px;
	}

	.top-bar-notif {
		border: 2px solid #54556E;
	}

	.notif-list {
		margin-top: 50px;
	}

	.open-btn {
		width: 100%;
		display: block;
		height: 60px;
		line-height: 60px;
	}

	.product-list li {
		width: calc(50% - 10px);
	}

	.stack-list li {
		width: calc(50% - 10px);
	}

	.title-bar {
		display: none;
	}

	.blog-container {
		margin-top: 50px;
	}
	
	.profile-avatar-bg img {
		width: 100%;
	}
	
	.profile-username {
		font-size: 36px;
	}
	
	.user-name {
		font-size: 18px;
	}
	
	.profile-username-centered {
		width: calc(100% - 16px);
		margin-left: 16px;
		overflow: hidden;
	}
	
	.nav-right {
		display: none;
	}
	
	.profile-banner {
		height: auto;
		padding-top: 10px;
		padding-bottom: 90px;
	}
	
	.profile-username-container {
		bottom: 22px;
	}
	
	.main-cols-profile .body-col2 {
		margin-top: 0;
	}
	
	.main-cols-profile,
	.main-cols-rant {
		margin-top: 0;
	}
	
	.rantlist li {
		border-radius: 0;
		padding: 0 16px 16px 10px;
	}
	
	.post-details-container {
		width: 100%;
		margin-left: 0;
		flex-wrap: wrap;
	}
	
	.rantlist-content {
		font-size: 16px;
	}
	
	.rantlist-title {
		font-size: 16px;
	}
	
	.post-details-text {
		width: 100%;
	}
	
	.post-details {
		width: calc(100% - 26px);
		margin: 70px 16px 20px 10px;
		min-height: auto;
	}
	
	.rant-detail-avatar {
		width: 100%;
		margin: -20px 0 20px;
		display: none;
	}
	
	.top-bar-container {
		display: none;
	}
	
	.post-details .rantlist-tags {
		margin-bottom: 24px;
	}
	
	.post-details .rantlist-tags a {
		font-size: 14px;
	}
	
	.post-details .user-info {
		margin-bottom: 10px;
	}
	
	.post-details .user-info .user-name {
		color: #fff;
	}
	
	.post-details .user-info .user-score,
	.post-details .user-info .user-dpp {
		background-color: rgba(255,255,255,0.2) !important;
	}
	
	.rant-timestamp {
		font-size: 14px;
		margin-top: 5px;
	}
	
	.post-details .rantlist-footer-link {
		font-size: 14px;
		margin-top: 5px;
	}	
	
	.rant-tag-row {
		margin-top: 0;
	}
	
	.post-details .rantlist-vote-col {
		width: 42px;
		margin-right: 13px;
	}
	
	.post-details .plusone,
	.post-details .minusone {
		width: 32px;
		height: 32px;
		line-height: 32px;
	}
	
	.post-details .plusone .icon,
	.post-details .minusone .icon {
		font-size: 13px;
	}
	
	.post-details .votecount {
		margin: 3px 0 3px -9px;
		width: auto;
		font-size: 14px;
	}
	
	.post-details .rantlist-content-col {
		width: calc(100% - 55px);
	}
	
	.profile-tabs {
		padding: 20px 16px 12px;
	}
	
	.tab-label {
		font-size: 18px;
	}
	
	.profile-details-mobile {
		padding: 16px;
	}
	
	.profile-detail-col2 {
		font-size: 16px;
	}
	
	.body-col3 {
		display: none;
	}
	
	.rant-btm-btns {
		display: none;
	}
	
	.rant-username {
		font-size: 20px;
	}
	
	.avatar-blank {
		width: 280px;
		height: 280px;
		margin: 38px 0 15px;
	}
	
	.rant-banner {
		min-height: 222px;
	}

}
