/*ROTATING BG */
html {
	margin: 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	transition: 3s;
	scroll-behavior: smooth;
}
/* NAV SLIDEBARS */
[canvas=main-container], [off-canvas] {
	padding: 10px 20px;
}
[class*=js-] {
	cursor: pointer;
}
[canvas], [off-canvas*=push] {
	z-index: 1
}
[off-canvas*=reveal], [off-canvas*=shift] {
	z-index: 0
}
[canvas=main-container], [off-canvas], body, html {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
body, html {
	width: 100%;
	height: 100%;
}
[canvas=main-container] {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	position: relative;
	-webkit-overflow-scrolling: touch
}
[canvas=main-container]:after, [canvas=main-container]:before {
	clear: both;
	content: '';
	display: table
}
[off-canvas] {
	display: none;
	position: fixed;
	overflow: hidden;
	overflow-y: auto;
	background-color: #FAFAFA;
	color: #333;
	-webkit-overflow-scrolling: touch
}
[off-canvas*=right] {
	width: 100%;
	height: 100%;
	top: 0;
	right: 0
}
[off-canvas*=overlay] {
	z-index: 999;
}
[canvas], [off-canvas] {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition: -webkit-transform .5s;
	transition: transform .5s;
	-webkit-backface-visibility: hidden
}
[off-canvas*=shift][off-canvas*=right] {
	-webkit-transform: translate(-0%, 0);
	transform: translate(-0%, 0)
}

@media print {
[canvas] {
	-webkit-transform: translate(0, 0)!important;
	-ms-transform: translate(0, 0)!important;
	transform: translate(0, 0)!important
}
[off-canvas] {
	display: none!important
}
}

/* CORE STYLING */
body {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
[canvas=fixfoot] {
	z-index: 999;
	bottom: 0;
	position: fixed;
	width: 100%;
	box-shadow: 0px 0px 5px #CCC;
	background-color: #FFF;
	padding-top: 10px;
	padding-bottom: 5px;
}
.mobonly {
	display:  none;
}
.nbg {
	background: #FAFAFA !important;
}
.imagebg {
	background-image: url("https://uroutine.s3.eu-central-1.amazonaws.com/bg.jpg");
	background-repeat: no-repeat;
  	background-attachment: fixed;
}
.nav {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 3px;
	height: 100px;
	background-color: #fff;
	z-index: 999;
	position: fixed;
	top: 0;
	box-shadow: 0px 0px 2px #EEE;
}
.navlogged {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 3px;
	height: 60px;
	background-color: #fff;
	z-index: 999;
	position: fixed;
	box-shadow: 0px 0px 2px #DDD;
}
.logo {
	display: inline-block;
	font-size: 0px;
	line-height: normal;
}
.logo img {
	margin-top: 18px;
	height: 40px;
	width: auto;
}
.logologged {
	display: inline-block;
	font-size: 0px;
	line-height: normal;
}
.logologged img {
	margin-top: 6px;
	height: 24px;
	width: auto;
}
.navigation {
	float: right;
	margin-top: 14px;
	vertical-align: top;
	line-height: 40px;
}
.navigationlogged {
	float: right;
	margin-top: 5px;
}
.navitem {
	display: inline-block;
	margin-left: 20px;
	text-transform: capitalize;
}
.navitem a{
	color: #333;
	text-decoration: none;
	padding-bottom: 5px;
	border-bottom: 3px solid #FFF;
}
.navitem a:hover {
	transition: 1s;
	padding-bottom: 5px;
	border-bottom: 3px solid #65CC66;
}
.navitem:last-child {
	margin-right: 0px;
}
.navitemprimary {
	padding: 0px 25px;
	border-radius: 25px;
	border: 1px solid #66CC66;
	margin-top: -4px !important;
	margin-left: 10px !important;
}
.navitemprimary a{
	border-bottom: none !important;
}
.navib img {
	width: 24px;
	height: 24px;
}
.crumb {
	font-size: 12px;
	padding-bottom: 20px;
	text-transform: capitalize;
	color: #555;
	display:  inline-block;
	margin-right: 10px;
	padding-right: 10px;
}
/* Tooltip container */
.navitem {
	display: inline-block;
	position: relative;
	margin: 5px 20px 0px 20px;
	cursor: pointer;
	opacity: 1;
}
.navitem img{
	width: 24px;
	height: auto;
	opacity: 0.6;
}
.navitem img:hover{
	transition: opacity 150ms linear;
	opacity: 1;
}
/* Tooltip text */
.navitem .tooltiptext {
	visibility: hidden;
	width: 80px;
	background-color: #222;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	font-size: 10px;
	font-weight: normal;
	border-radius: 3px;

	/* Position the tooltip text */
	position: absolute;
	z-index: 1;
	top: 125%;
	left: 50%;
	margin-left: -40px;
	/* Fade in tooltip */
	opacity: 0;
	transition: opacity 0.2s;
	text-transform: lowercase;
}

/* Tooltip arrow */
.navitem .tooltiptext::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent #222 transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.navitem:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}
.deskindicator {
	position: absolute;
	bottom: 20px;
	left: 56%;
	color: #FFF;
	background-color: #C50003;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 10px;
	box-shadow: 0px 0px 2px #000;
	text-align: center;
	font-weight: 600;
	border-radius: 50%;
}
.main {
	padding-top: 200px;
	padding-bottom: 250px;
	min-height: 100%;
	margin: 0 auto -250px;
}
.main:after {
	content: "";
	display: block;
}
.mainlogged {
	padding-top: 80px;
	padding-bottom: 100px;
	min-height: 100%;
	margin: 0 auto -40px;
}
.mainlogged:after {
	content: "";
	display: block;
}
.footer, main:after {
	height: 170px;
}
.footer {
	width: 100%;
	box-sizing: border-box;
	padding: 50px;
	height: 250px;
	color: #FFF;
	background-color: #65CC66;
	font-size: 12px;
	text-align: left;
	box-shadow: inset 0 -1px 5px #006400;
}
.footer a {
	color: #FFF;
	text-decoration: none;
}
.footer a:hover {
	color: #FFF;
	text-decoration: underline;
}
.footerlogo {
	width: 200px;
	margin-bottom: 20px;
}
.footersocial {
	width: 28px;
	height: auto;
	display: inline-block;
	margin-top: 10px;
	margin-right: 10px;
}
.footerlogged, mainlogged:after {
	height: 40px;
}
.footerlogged {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	height: 40px;
	background-color: #FFF;
	border-top: 1px solid #EEE;
	font-size: 12px;
	line-height: 20px;
	text-align: left;
}
.footerlogged a {
	color: #666;
	text-decoration: none;
}
.footerlogged a:hover {
	color: #333;
}
.menu img {
	height: 32px;
	width: auto;
	margin-top: 14px;
	margin-left: 32px;
}
.menu img:first-child {
	margin-left: 0px;
}
.onethird {
	width: 32%;
	display: inline-block;
	float: left;
	margin-right: 2%;
}
.onethird:last-child {
	margin-right: 0%;
	float: right;
}
.onethirdtwo {
	width: 32.5%;
	display: inline-block;
	margin-right: 2%;
	margin: 5px auto;
}
.onethirdtwo:last-child {
	margin-right: 0%;
}
.twothirds {
	width: 66%;
	display: inline-block;
	margin: 0px auto;
}
.onehalf {
	width: 49%;
	margin-right: 2%;
	box-sizing: border-box;
	float: left;
}
.onehalf:last-child {
	float: right;
	margin-right: 0;
}
.fixfootset {
	box-sizing: border-box;
	width: calc(100% / 5 - 3px);
	text-align: center;
	display: inline-block;
	border-right: 1px solid #DDD;
	font-size: 10px;
	color: #fff;
	position: relative;
	margin-bottom: 15px;
}
.fixfootset:last-child {
	border-right: none;
}
.fixfootset img {
	margin-top: 2px;
	height: 22px;
}
.fixfootset i{
	font-size: 22px;
	color: #333;
}
.mobindicator {
	position: absolute;
	bottom: 14px;
	left: 56%;
	color: #FFF;
	background-color: #C50003;
	width: 22px;
	height: 22px;
	line-height: 20px;
	font-size: 10px;
	box-shadow: 0px 0px 2px #000;
	text-align: center;
	font-weight: bold;
	border-radius: 50%;
}
.mobmenu {
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	padding: 20px 10px 20px 20px;
	border-bottom: 1px solid #DDD;
}
.mobmenu a {
	color: #333;
	text-decoration: none;
	display: block;
}
.mobmenu .button {
	width: 100% !important;
}
/* PADDING */
.pb5 {
	padding-bottom: 5px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb50 {
	padding-bottom: 50px;
}
.pb100 {
	padding-bottom: 100px;
}
.pt10 {
	padding-top: 10px;
}
.pt20 {
	padding-top: 20px;
}
.pt50 {
	padding-top: 50px;
}
.pt100 {
	padding-top: 100px;
}
.p20 {
	padding: 20px;
}
.pl20 {
	padding-left: 20px;
}
.pr10 {
	padding-right: 10px;
}
.pr20 {
	padding-right: 20px;
}
.pr50 {
	padding-right: 50px;
}
.plr20 {
	padding-left: 20px;
	padding-right: 20px;
}
.mt0 {
	margin-top: 0px !important;
}
.ml0 {
	margin-left: 0px !important;
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mt5 {
	margin-top: 5px;
}
/* BOXES */
.box {
	background: #fff;
	border-radius: 15px;
	border: 1px solid #EEE;
	margin-bottom: 20px;
	box-sizing: border-box;
	padding: 20px;
	font-size: 12px;
}
.boxnp {
	background: #fff;
	border-radius: 15px;
	border: 1px solid #EEE;
	margin-bottom: 20px;
	box-sizing: border-box;
	font-size: 12px;
}
.boxno {
	background: #fff;
    border-radius: 15px;
    border: 3px solid #EEE;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 20px;
    font-size: 12px;
}
.bannerbox {
	background: #fff;
	border-radius: 15px;
	border: 1px solid #EEE;
	margin-bottom: 20px;
	box-sizing: border-box;
	font-size: 12px;
	overflow: hidden;
	height: 200px;
	position: relative;
}
.bannerboxbackground{
	border-radius: 15px;
	position: relative;
	top: 50%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%);
}
.bannerboxcontent {
	position: absolute;
	bottom: 20px;
	left: 20px;
	text-align: left;
	padding: 10px 15px;
	background: rgba(255,255,255,0.9);
	border-radius: 15px;
	max-width: 50%;
}
.bannerboxcontent h4{
	overflow: hidden;
	max-width: 100%;
	text-overflow: ellipsis;overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   line-clamp: 2; 
   -webkit-box-orient: vertical;
	margin-bottom: 5px;
}
.bannerboxprofile {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 5px;
}
.bannerboxaction {
	position: absolute;
	bottom: 20px;
	right: 20px;
	border: 2px solid #FFF;
	box-shadow: 0px 0px 5px 2px #333;
	border-radius: 25px;
}
.boxhead {
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom:  1px solid #EEE;
	font-weight: bold;
	font-size: 12px;
	text-transform: capitalize;
}
.boxnp .boxhead {
	padding: 20px 20px 10px 20px;
}
.boxhead select{
	height: 18px;
	line-height: 18px;
	font-size: 10px;
	padding: 0px 5px;
	margin-bottom: 10px;
	clear: both;
	font-weight: 300;
}
.boxhead a{
	text-decoration: none;
	color: inherit;
}
.boxhead a:hover {
	color: #555;
}
.regbox {
	background: #fff;
	border-radius: 15px;
	border: 1px solid #EEE;
	margin-top: 20px;
	margin-bottom: 20px;
	box-sizing: border-box;
	padding: 30px 30px 10px 30px;
}
.regbox .button-primary{
	height: 50px;
	line-height: 50px;
	border-radius: 25px !important;
}
.regbox input{
	margin-bottom: 20px;
}
.formtip {
	font-size: 12px;
	padding-top: -20px;
	margin-top: -20px;
	font-weight: normal;
}
/* WIDTHS */
.w64 {
	width: 64px;
	height: auto;
}
.w22 {
	width: 22px;
	vertical-align: middle;
}
.w30 {
	width: 30px;
	vertical-align: middle;
}
.w14 {
	width: 14px !important;
	box-shadow: none !important;
	vertical-align: middle;
	height: auto;
	margin-right: 5px;
}
/* ALIGNMENT */
.tc {
	text-align: center;
}
.nmb {
	margin-bottom: 0px !important;
}
/* BGs */
.gbg {
	background: #DDFFDD;
}
.wbg {
	background: #FFF;
}
.obg {
	background: #FFEBC8;
}
.box.obg .boxhead{
	border-bottom: 1px solid #BBB;
}
.rbg {
	background: #FBCFD0;
}
.lgbg {
	background: #F9F9F9;
}
.bb {
	border-bottom: 1px solid #EEE;
}
/* COMMIT */
.commit {
	width: 100%;
	border-radius: 3px;
	padding: 10px;
	margin-bottom: 10px;
  	transition: 1s;
}
.committime {
	width: 60px;
	font-size: 10px;
    padding-top: 1px;
    display: inline-block;
	vertical-align: top;
}
.commit:last-child {
	margin-bottom: 0;
}
.committext {
	font-weight: bold;
	font-size: 14px;
	display: inline-block;
	width: calc(100% - 140px);
	vertical-align: top;
}
.timestamp {
	font-size: 10px;
	line-height: 12px;
	vertical-align: top;
	margin-top: 5px;
	font-weight: normal;
}
.timestamp img{
	width: 12px;
	line-height: 12px;
	margin-right: 2px;
	margin-left: 5px;
	vertical-align: bottom;
}
.timestamp img:first-child{
	margin-left: 0;
}
.commitaction {
	font-size: 0px;
	text-align: right;
	display: inline-block;
	width: 90px;
	line-height: 32px;
}
.commitaction img{
	width: 16px;
	opacity: 0.9;
	vertical-align: middle;
	line-height: 32px;
}
.actionitem {
	display: inline-block;
	position: relative;
	cursor: pointer;
	opacity: 1;
	text-align: center;
	padding-bottom: 5px;
	border: 1px solid #CCC;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	margin-left: 10px;
}
/* Tooltip text */
.actionitem .actionitemtooltip {
	visibility: hidden;
	width: 90px;
	background-color: #222;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	font-size: 10px;
	margin-top: 5px;
	font-weight: normal;
	border-radius: 3px;
	line-height: 18px;

	/* Position the tooltip text */
	position: absolute;
	z-index: 1;
	top: 125%;
	left: 50%;
	margin-left: -25px;
	/* Fade in tooltip */
	opacity: 0;
	transition: opacity 0.2s;
	text-transform: lowercase;
}

/* Tooltip arrow */
.actionitem .actionitemtooltip::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 25px;
	margin-left: 0px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent #222 transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.actionitem:hover .actionitemtooltip {
	visibility: visible;
	opacity: 1;
}
.post {
	width: 100%;
	padding: 20px;
	border-bottom: 1px solid #EEE;
	clear: both;
	cursor: pointer;
	box-sizing: border-box;
}
.post:last-child, .postinside:last-child {
	border-bottom:  none;
}
.post img{
	margin: none !important;
	padding: none !important;
	line-height: 0px;
}
.post:hover,.postinside:hover {
	background: #F2F2F2;
}
.post:first-child:hover{
	border-radius: 15px 15px 0px 0px;
}
.post:last-child:hover{
	border-radius: 0px 0px 15px 15px;
}
.post:only-child:hover{
	border-radius: 15px;
}
.postinside {
	width: 100%;
	padding: 20px 10px;
	border-bottom: 1px solid #EEE;
	clear: both;
}
.postinside .update{
	font-size: 14px;
}
.pp {
	width: 50px;
	float: left;
	margin-right: 10px;
	line-height: 0px;
}
.pp img {
	width: 100%;
	border-radius: 50%;
	border: 1px solid #EEE;
}
.update {
	font-weight: bold;
}
.update a {
	color:  inherit;
}
.updatetimestamp {
	float: right;
	color: #999;
	line-height: 16px;
	font-size: 12px;
}
.updatetimestamp img{
	width: 16px;
	height: auto;
	vertical-align: middle;
}
.updatetimestamp a{
	text-decoration: none;
}
.updateactionstamp {
	float: right;
	color: #777;
	line-height: 32px;
	font-size: 32px;
	font-weight: 300;
}
.updatetime {
	font-weight: normal;
	display: inline-block;
	color: #999;
}
.updatecontent {
	margin-left: 70px;
	font-size: 16px;
}
.updatecontentalt {
	width: 100%;
	font-size: 16px;
}
.inspirationcontent {
	width: 100%;
	font-size: 16px;
}
.updatename {
	font-size: 12px;
	font-weight: bold;
}
.updateactivity {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 16px;
	font-weight: normal;
	color: #999;
	margin-right: 30px;
	margin-top: 10px;
}
.updateactivity i{
	margin-right: 5px;
}
.updateactivity a{
	text-decoration: none;
}
.updateactivityneg a{
	color: #333 !important;
}
.updateactivity img {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.updatestreak {
	float: right;
	text-align: right;
	font-size: 16px;
	line-height: 16px;
	font-weight: bold;
	color: #999;
	margin-left: 30px;
	margin-top: 10px;
}
.updatestreak img {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.updatediscussion {
	font-size: 14px;
	overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
}
/* Tooltip text */
.updateactivity .updateactivitytooltip {
	visibility: hidden;
	width: 70px;
	background-color: #222;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	font-size: 10px;
	font-weight: normal;
	border-radius: 3px;

	/* Position the tooltip text */
	position: absolute;
	z-index: 1;
	top: 125%;
	left: 50%;
	margin-left: -40px;
	margin-top: 10px;
	/* Fade in tooltip */
	opacity: 0;
	transition: opacity 0.2s;
	text-transform: lowercase;
}

/* Tooltip arrow */
.updateactivity .updateactivitytooltip::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent #222 transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.updateactivity:hover .updateactivitytooltip {
	visibility: visible;
	opacity: 1;
}
.updatetarget {
	font-size: 14px;
}
.updatetarget a{
	color: #333;
	text-decoration: none;
	font-weight: bold;
}
.updatetarget a:hover{
	color: #555;
	text-decoration: underline;
	font-weight: bold;
}
.updatetarget img {
	width: 14px;
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.updatecomment {
	font-style: normal;
	font-size: 14px;
}
.updatecomment img {
	width: 100%;
	max-height: 600px;
	height: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	box-shadow: 0px 0px 5px #CCC;
}
.result {
	width: 30px;
	float: right;
	padding: 0px 10px;
	line-height: 10px;
}
.search {
	width: 100%;
	padding: 20px 10px;
	border-bottom: 1px solid #DDD;
	clear: both;
	overflow: hidden;
	box-sizing: border-box;
}
.search .result {
	line-height: 80px !important;
	padding: 0px !important;
}
.inbox .updatecomment {
	overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}
.search:last-child {
	border-bottom:  none;
}
.search:nth-child(even) {
	background: #F9F9F9;
}
.search img{
	margin: none !important;
	padding: none !important;
	line-height: 0px;
}
.search:hover {
	background: #F2F2F2;
}
.search .updatetimestamp {
	line-height: 70px;
	font-size: 30px;
	color: #444;
}
.search .updatecontent {
	line-height: 35px;
}
.search .pp{
	width: 80px;
}
.search .updatecontent{
}
.searchalt {
	width: 100%;
	padding: 10px;
	border-bottom: 1px solid #DDD;
	clear: both;
	overflow: hidden;
}
.searchalt .result {
	line-height: 50px !important;
	padding: 0px !important;
}
.searchalt:last-child {
	border-bottom:  none;
}
.searchalt:nth-child(even) {
	background: #F9F9F9;
}
.searchalt img{
	margin: none !important;
	padding: none !important;
	line-height: 0px;
}
.searchalt:hover {
	background: #F2F2F2;
}
.searchalt .updatetimestamp {
	line-height: 50px;
	font-size: 30px;
	color: #444;
}
.searchalt .updatecontent {
	line-height: 35px;
}
.searchalt .pp{
	width: 50px;
}
.add {
	background-color: #FFF;
	border-radius: 50%;
	font-size: 55px;
	line-height: 0px;
	position: fixed !important;
	bottom: 50px;
	right: 50px;
	z-index: 999;
	margin: 0;
	padding: 0;
	box-shadow: none;
}
.instructions {
	text-align: left;
	font-size: 14px;
	color: #333333;
	line-height: 16px;
	padding: 10px;
}
.instructions h1{
	font-size: 20px;
	font-weight: bold;
}
.noresult {
	text-align: center;
	font-size: 18px;
	color: #333333;
	line-height: 22px;
	padding: 50px;
}
.noresult h1{
	font-size: 28px;
	font-weight: bold;
}
.noresult .t11{
	line-height: 13px;
	font-style:  italic;
}
.noresult input, .noresult select{
	margin-top: 5px;
	margin-bottom: 0px;
}
.noresult i, .noresult svg{
	animation: float 2s ease-in-out infinite;
}
.noani i {
	animation: none;
	padding-right: 5px;
}
.profile {
	display: inline-block;
}
.profile h1{
	font-size: 22px;
	font-weight: bold;
	padding-bottom: 0;
	margin-bottom: 10px;
}
.profile .tg{
	color: #999;
	font-weight: 300;
}
.profile img{
	width: 14px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}
.profilepicture {
	width:  75px;
	height: auto;
	float: right;
}
.profilepicture img{
	width: 75px;
	height: auto;
	border-radius: 50%;
	box-shadow: 0px 1px 2px #999;
}
.profilepictureedit {
	height: auto;
	text-align: center;
	width: 100%;
}
.profilepictureedit img{
	width: 75px;
	height: auto;
	border-radius: 50%;
	box-shadow: 0px 1px 2px #999;
}
.profilebio {
	height: 75px;
}
/* TEXT */
.t11 {
	font-size: 11px;
}
.t14 {
	font-size: 14px;
}
.t30 {
	font-size: 30px;
	text-shadow: 2px 2px #EEE;
}
.ty {
	color: #FFD700;
}
.tg {
	color: #68CD68;
}
.tr {
	color: #B10002;
}
.to {
	color: #D06700;
}
.tb {
	font-weight: bold;
}
.tn {
	font-weight: 400;
}
.nb {
	display: inline-block;
}
.tl {
	text-align: left;
}
.tar {
	text-align: right;
}
.tlg {
	display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
	color: #CCC;
}
.icon {
	width: 24px;
	height:  auto;
}
.t11 img {
	width: 12px;
	height: 12px;
	line-height: 12px;
	display: inline-block;
	opacity: 0.8;
	margin-right: 10px;
	vertical-align: middle;
}
.h70 {
	height: 70px;
	line-height: 20px;
}
/* SPLITTER */
.splitter {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #EEE;
}
.splitter2 {
	margin-top: 20px;
	margin-bottom: 10px;
	border-top: 1px dashed #DDD;
}
/* TABS */
.tabs-menu {
	float: left;
	clear: both;
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.tabs-menutc {
	float: none;
	margin: 0 auto;
	margin-left: 0px;
}
.tabs-menutc i{
	margin-right: 5px;
}
.tabs-menu ul {
	padding: 0;
	margin-left: auto;
	width: 100%;
	list-style-type: none;
}
.tabs-menu li {
	list-style-type: none;
	width: auto;
	float: left;
	display: block;
	padding: 5px 20px;
	color: #777;
	text-align: center;
	font-size: 14px;
	text-align: center;
	list-style-position: inside;
	color: #333333;
	border-radius: 25px;
	border: 1px solid #DDD;
	margin-bottom: 0px;
	margin-right: 1%;
	cursor: pointer;
}
.tabs-menutc li {
	display: inline-block;
	text-align: center;
	float: none;
	margin-bottom: 15px;
}
.tabs-menu li.current {
	position: relative;
	z-index: 5;
	font-weight: 600;
	color: #FFF;
	background-color: #66cc66;
	border-color: #66cc66;
}
.tabs-menu li a {
	text-decoration: none;
	display: block;
}
.tabs-menu .current a {
	color: #FFF;
}
.tab {
	float: left;
	width: auto;
}
.tab-content {
	display: none;
}
.lightboxnone {
	display: none;
}
.lightboxnone textarea {
	height: 74px;
	line-height: 20px;
	margin-bottom: 0px !important;
}
.lightboxnone h3 {
	margin-bottom: 5px;
}
.lightboxnone h3 img{
	width: 26px;
	height: auto;
}
.thread {
	width: 100%;
	height: 70px;
	margin-bottom: 0px;
}
.thread:not(:placeholder-shown){
	height: 150px;
}
.thread:focus {
	height: 150px;
}
.oh {
	overflow: hidden;
}
/* NOTIFICATIONS */
.notification {
	box-sizing: border-box;
	padding: 20px 10px;
	width: 100%;
	overflow: hidden;
	border-bottom: 1px solid #EEE;
}
.notification:nth-child(odd) {
	background: #F9F9F9;
}
.notification:last-child {
	border-bottom: 0px;
}
.notification a{
}
.notification:hover {
	text-decoration: underline;
	background-color: #EFEFEF;
}
.notification .fas, .notification .far {
	color: #000000;
}
.nottype {
	width: 32px;
	margin-right: 2%;
	float: left;
	font-size: 12px;
	color: #525454;
	text-align: center;
}
.nottype i {
	display: block;
	font-size: 14px;
	line-height: 14px;
	margin-bottom: 5px;
}
.nottype img{
	width: 24px;
	display: inline-block;
	height: auto;
	margin-bottom: 5px;
}
.notcontent {
	float: left;
	width: 82%;
}
.nottime {
	float: right;
	width: 10%;
	text-align: right;
	color: #999999;
}
.notpic img{
	width: 55px;
	height: auto;
	border-radius: 50%;
	margin-right: 10px;
	display: inline-block;
}
.nothead {
	font-size: 14px;
}
.notsec {
	font-size: 14px;
	color: #999999;
}
button.rbg {
	background-color: #fff;
}
button.rbg:hover {
	background-color: #FBCFD0;
}
button.gbg {
	background-color: #fff;
}
button.gbg:hover {
	background-color: #CDFFCC;
}
.posthead {
	padding: 10px;
	border-bottom: 1px dashed #CCC;
	background: #FAFAFA;
}



/* NEW CSS */
.article a{
	color: inherit;
	text-decoration: none;
}
.article a:hover{
	color: #65CC66;
	text-decoration: underline;
}
.article img {
	width: 100%;
	border-radius: 5px 5px 0px 0px;
	margin-bottom: 10px;
	opacity: 0.8;
}
.article img:hover {
	opacity: 1;
}
.article-text {
	overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
}
.invite input[type="email"] {
	width: calc(100% - 200px);
	margin: 0;
	border-radius: 25px 0px 0px 25px;
	padding-left: 20px;
}
.invite input[type="submit"] {
	width: 200px;
	margin: 0;
	border-radius: 0px 25px 25px 0px;
	box-shadow: none;
}



.sidenav {
	width: 100%;
	overflow-x: hidden;
}
.sidenav i {
	margin-right: 10px;
}
.sidenav button {
	text-transform: none !important;
	height: auto !important;
	background-color: #fff;
}
/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
	text-decoration: none;
	margin-bottom: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 14px;
	line-height: 30px;
	font-weight: bold;
	border: none;
	color: #333;
	display: block;
	background: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
	outline: none;
	border-radius: 15px;
	padding-left: 10px;
}
/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
	color: #111;
	background-color: #EEE;
}

/* Add an active class to the active dropdown button */
.sidenav .active {
	background-color: #E1E1E1;
	color: #333;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
	display: none;
	padding-left: 35px;
}
.dropdown-container a{
	padding-left: 10px;
}
/* Optional: Style the caret down icon */
.fa-caret-down {
	float: right;
	color: #fff;
}
.toggleinner{
	display: none;
}
.toggleinner strong{
	line-height: 24px !important;
}
.toggle-title {
	cursor: pointer;
	font-weight: bold;
}
.toggle-title-large i, .toggle-title-large svg {
	font-size: 22px;
	line-height: 35px;
}
.stats {
	font-weight: normal;
	display: inline-block;
	color: #555;
}
.stats a {
	color: #555;
	text-decoration: none;
}
.stats a:hover {
	color: #555;
	text-decoration: underline;
}
.stats i {
	text-align: center;
	width: 14px;
	margin-left: 20px;
	margin-right: 5px;
	color: #999;
}
.stats i:first-child {
	margin-left: 0px;
}
.automation {
	height: 40px;
	line-height: 40px;
	font-weight: bold;
}
.automation label {
	display:  inline-block;
	margin-left: 5px;
	font-weight: normal;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(10px);
	}
}
.per {
	border-radius: 30px;
}
.percentage {
	height: 30px;
	background-color: #65CC66;
	vertical-align: middle;
	line-height: 30px;
	padding-left: 10px;
	color: #FFF;
	font-weight: bold;
	border-radius: 30px;
}
.tiltleft {
	transform: rotate(10deg);
}
.tiltright {
	transform: rotate(-10deg);
}
.articlefit {
	border-radius: 20px;
	width: 100%;
	height: 150px;
	object-fit: cover;
}
.articlefit:hover{
	opacity: 0.7;
}
.articlehead {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
   line-clamp: 1; 
   -webkit-box-orient: vertical;
}
.mobside {
	padding-top: 60px;
}
.mobside i{
	margin-right: 20px;
	font-size: 14px;
}
.textblock {
	max-width: 400px;
	display: flex;
	margin: 0 auto;
}
.solutions-img {
	border-radius: 15px;
	width: 100%;
	box-shadow: 0px 0px 5px 0px #CCC;
}
.iconshadow {
	text-shadow: 2px 2px #EEE;
}
.validation-error {
	border: 1px solid #B10002 !important;
}
.fr {
	float: right !important;
}
.about-img {
	border-radius: 15px;
	max-width: 250px;
	float: right;
	box-shadow: 0px 0px 5px 0px #CCC;
	margin-left: 10px;
}
.multiaccount {
	position: absolute;
	left: 130px;
	top: 10px;
	padding-left: 20px;
	border-left: 1px solid #CCC;
	height: 24px;
}
.multiaccounticon {
	color: #333;
	width: 24px;
	height: 24px;
	display: inline-block;
}
.multiaccount img{
	width: 24px;
	height: 24px;
	border-radius: 50%;
	box-shadow: 0px 0px 5px #CCC;
	border: 1px solid #999;
}
.home {
	padding-top: 150px;
	padding-bottom: 100px;
}
.highlighted {
	border: 3px solid #68CD68;
	box-sizing: border-box;
}
.ai button {
	font-size: 12px;
	margin-bottom: 5px;
}
.aiupdateactionstamp i {
	float: right;
	color: #777;
	line-height: 24px;
	font-size: 24px;
	padding-left: 20px;
}
.update i {
	font-size: 14px;
	padding-left: 10px;
}
.dib {
	display: inline-block;
}
.errors {
	display: block;
	clear: both;
	border: 1px #ca4141 solid;
	width: 100%;
	padding: 20px 20px 10px;
	background-color: #ffffff;
}
.errors li {
	color: #ca4141;
}

.form-error {
	color: #ca4141;
}

.cp {
	cursor: pointer;
}

.oh-c999999 { 
	color: #999999; 
	overflow: hidden;
}

.inline-label
{
	display: inline-block;
	font-weight: normal;
	clear: both;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.hidden {
	display: none;
}
.cb {
	clear: both;
}
.cd {
	cursor: default;
}
.bl {
	color: #222;
}
.bl:hover {
	color: #B10002;
}
.handwritten {
	  font-family: "Finger Paint", cursive;
}
.hero {
	margin-top: -20px;
}
.t40 {
  font-size: 40px;
  text-shadow: 1px 1px 2px #FFF;
}
.moblogo {
	width: 100%;
	display: inline-block;
	text-align: center;
}
.moblogo img {
	width: 70%;
	max-width: 400px;
	margin-bottom: 20px;
	text-align: center;
	display: inline-block;
}
.app {
	display: flex;
    flex-direction: column;
    height: 100vh;
}
.apphero {
	max-width: 400px;
}
.appcontainer {
    flex: 1;
    justify-content: center;
    align-items: center;
}
.appbadge {
	width: auto;
	height: 50px;
	margin-right: 5px;
	margin-left: 5px
}
.social {
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
}
.socialogo {
	height: 40px;
	width:  auto;
}
.socialrow {
	border: 0px;
	box-shadow: 0px 2px 5px #EEE;
	border-radius: 20px;
	margin-bottom: 20px;
	border: 1px solid #EEE;
	padding: 10px;
	margin-left: 10px;
	margin-right: 10px;
}
.socialrow a{
	text-decoration: none !important;
	color: #333;
	display: block;
}
.socialrow a:hover{
	text-decoration: none !important;
	color: #777;
}
.socialrowimg {
	width: 32px;
	height: 32px;
	display: inline-block;
}
.socialrowimg img {
	width: 32px;
	height: 32px;
	vertical-align: middle;
	border-radius: 25%;
}
.socialrowtext {
	display: inline-block;
	margin-left: 10px;
	line-height: 32px;
	height: 32px;
	font-weight: bold;
}
.socialarrow {
	float: right;
	line-height: 32px;
	height: 32px;
	margin-right: 10px;
	font-weight: bold;
}