:root{
    --bar_width: 50px;
    /*--bar_width: 60px;*/
    --hover_color: rgba(0,0,0,0.06);
    --shadow_standard: 0px 0px 0px rgba(0,0,0,0);
    /*--bar_color: hsl(195,100%,15%);
    --center_color: hsl(195,20%,100%);
    --side_color: hsl(195,10%,95%);*/
    --bar_color: hsl(200,0%,20%);
    --center_color: hsl(200,0%,100%);
    --side_color: rgba(0,0,0,0.06);//hsl(200,0%,95%);
	--border_color: rgba(217,217,217,1);//rgba(0,0,0,0.15);
	--left-width: 0px;
	--right-width: 0px;
	--center-width: 100vw;
	--left-origin: 0;
	--right-display: inherit;
}

/*
@font-face{
    font-family: 'Karla';
    font-weight: 400;
    src: url('apis/Karla/Karla-Regular.ttf') format('truetype');
}
*/
@font-face{
    font-family: 'Montserrat';
    font-weight: 400;
    //src: url('apis/Montserrat/Montserrat-Medium.ttf') format('truetype');
    src: url('apis/Montserrat/Montserrat-Regular.ttf') format('truetype');
}

* {
    //font-family: 'Karla', sans-serif;
    font-family: Avenir, 'Montserrat', sans-serif;
	/*font-family: Helvetica,Arial,sans-serif;
    //-webkit-text-size-adjust: none;*/
    -webkit-tap-highlight-color: rgba(0,0,0,0);
	scrollbar-width: thin;
    //scrollbar-width: none;
	//outline: none;
	scrollbar-width: thin;
	scrollbar-color: transparent transparent !important;
}

*:hover{
	transition: scrollbar-color 200ms ease;
	scrollbar-color: rgba(0,0,0,0.2) transparent !important;
}

body{
    width: 100%;
    max-width: 100%;
    height: 100vh;
    //overflow: hidden;
    padding: 0;
    margin: 0;
    -ms-overflow-style: none;
}

div.bar{
    //position: absolute;
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--bar_width);
    background: var(--bar_color);
    color: rgb(255,255,255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    z-index: 4;
    //overflow: hidden;
	overflow: visible;
}

.bar{
    user-select: none;
}

.bar .column_toggle{
    /*font-family: 'Karla', sans-serif;*/
    padding: 0 10px;
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    cursor:pointer;
	//margin-top: -4px;
	height: var(--bar_width);
	display: flex;
	align-items: center;
}

.bar .column_toggle img{
    transition: margin 0.2s ease-in-out;
}
.bar .column_toggle.toggled[id=left_toggle] img{
    margin-left:-45px;
	margin-right: 10px;
}

.bar .column_toggle.toggled[id=right_toggle] img{
    margin-left:10px;
	margin-right: -45px;
}

.bar .title{
    white-space:nowrap;
    font-weight: normal;
    //max-width: calc(100% - 50px);
    //overflow:scroll;
	//scrollbar-width: none;
    font-weight: bold;
}

.bar .icon{
    margin:10px 15px 0 0;
    width: 55px;
    height: 55px;
    border-radius:30px;
}

.bar .symbol_icon{
	height: 66%;
	border-radius: 50%;
}

.bar_title{
	display:flex;
	flex-direction: row;
	height:100%;
	width: fit-content;
	justify-content: space-around;
    max-width: calc(100% - 50px);
    //overflow-x:scroll;
    //overflow-y:clip;
	overflow: visible;
	scrollbar-width: none;
}

.bar_title .bar_icons{
	display: flex;
	//height: 100%;
}

.bar_title .bar_buffer{
	max-width: unset;
}

.bar_title .bar_icons a{
	width:fit-content;
	height: var(--bar_width);
	display: flex;
	align-items: center;
}

.bar_title .bar_icons a[href="/home"] img{
	height:80%;
	margin-left: 0px;
}
.bar_title .bar_icons a img{
	margin-left:8px;
}
/*
.bar_title .bar_icons .explainer a img{
	height:80%;
	//margin-top:10%;
	margin-right:8px;
	border-radius: 50%;
}*/


@keyframes icon-pop-in{
	0% {
		opacity: 0;
		width: 0;
		height: 0;
		margin-top: 25px;
	}
	100% {
		opacity: 1;
		width: 41px;
		margin-top:0;
		height: var(--bar_width);
	}
}

@keyframes icon-pop-out{
	0% {
		opacity: 1;
		width: 41px;
		margin-top:0;
		height: var(--bar_width);
	}
	100% {
		opacity: 0;
		width: 0;
		height: 0;
		margin-top: 25px;
	}
}


.column{
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
	//transition: width 100ms ease-in-out;
	//transition: left 100ms ease-in-out;
	//transition: max-width 1000ms ease-in-out;
	transition: left 0.3s ease, width 0.3s ease;
}

.column.margin_top{
    /*position: absolute;*/
    min-height: auto;
    top: 0;
	overflow: overlay;
    //overflow: auto;
    margin-top: var(--bar_width);
    height: calc(100dvh - var(--bar_width));
	padding-bottom: calc(100vh - 100dvh);
}

.column.left{
	//position: absolute;
	position: fixed;
    left: var(--left-origin);
    max-width: var(--left-width);
    width: 100%;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    background: var(--side_color);
    z-index: 3;
}

.column.center{
	//margin-left:calc(var(--left-origin) + var(--left-width));
	position: fixed;
    left: calc(var(--left-origin) + var(--left-width));
    width: var(--center-width);
    background: var(--center_color);
    z-index: 0;
}

.column.right{
	//position: absolute;
	position: fixed;
    left: calc(var(--left-origin) + var(--left-width) + var(--center-width));
    max-width: var(--right-width);
    width: 100%;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    background: var(--side_color);
    z-index: 3;
}

.footer{
    width: calc(100% - 30px);
    flex-wrap: wrap;
    display: flex;
    font-size: 15px;
    padding: 5px 15px 10px 15px;
    color: rgb(100,100,100);
}

.footer a{
    margin: 0;
    padding: 5px 5px 0px 5px;
    max-width: fit-content;
    width: auto;
}
.footer div{
    margin: 0;
    padding: 5px 5px 0px 5px;
    max-width: fit-content;
}

.tile.user{
	display: flex;
	align-items: center;
    margin: 0;
    padding: 10px 10px 10px 10px;
    width: calc(100% - 20px);
    user-select: none;
}

.tile.active{
    background: rgba(0,0,0,0.1);
}

.tile.active.hover:hover{
    background: rgba(0,0,0,0.16);
}

.tile.centered.comment_creator{
	padding-top: 15px;
	padding-bottom: 10px;
}

.tile.centered.comment_creator:hover{
    background: var(--hover_color);
}

.tile.group{
	display: flex;
	align-items: center;
    margin: 0;
    padding: 10px 10px 10px 10px;
    width: calc(100% - 20px);
    user-select: none;
}

.centered{
    margin: 5px 15px 5px 15px;
    padding: 20px 0px 20px 0px;
    width: calc(100% - 30px);
    max-width:600px;
}

.centered.hline{
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 10px;
    //border-width:0px 0px 1px 0px;
    //border-style:solid;
    //border-color: var(--border_color);
}


.centered.hline::after{
	content: "";
	position: absolute;
	//bottom: 0;
	//left: 0;
	justify-self: anchor-center;
    margin: 0px 0px;
    width: calc(100% - 30px);
	max-width: 600px;//640px;
	height: 1px;
	//background: var(--border_color);
	border-bottom: solid 1px var(--border_color);
	/*background: linear-gradient(
		to right,
		transparent 0px,
		var(--border_color) 20px,
		var(--border_color) calc(100% - 20px),
		transparent 100%);*/
}

.centered.icon{
    max-height: 300px;
    margin: 0;
    width: 100%;
    z-index: 0;
    /*z-index: -1;*/
    padding: 0;
}
.centered.icon .icon{
    max-height: 300px;
    min-height: 100%;
    width: 100%;
    border-radius: 0%;
    padding: 0;
    object-fit:cover;
    z-index: -2;
    box-shadow: var(--shadow_standard);
}

.centered .description{
    padding:0;
    width:100%;
    text-align:justify;
	font-size: 15px;
}

.tile.centered{
    margin: 10px 0px 0px 0px;
    padding: 15px 15px 10px 15px;
    z-index:1;
	//overflow: unset;
	border-radius: clamp(0px, var(--center-width) - 640px, 15px);
	overflow: clip;
	scroll-margin-top: 55px;
}

.white_background .tile.centered{
	border-radius: 0px;
}

.tile .icon{
    cursor: pointer;
    width: 70px;
    height: 70px;
    margin: 0px;
    border-radius: 35px;
    object-fit:cover;
    box-shadow: var(--shadow_standard);
    float: left;
}

img{
    box-shadow: var(--shadow_standard);
	border-radius: 10px;
}

.tile .title{
	overflow-x:scroll;
	scrollbar-width: none;
	min-height: 24.5px;
    margin:0;
    font-size:18px;
    font-weight:bold;
	text-wrap: nowrap;
	width: fit-content;
}

.tile .textcontainer .body{
    text-align: left;
	text-wrap: nowrap;
	min-height: 18.5px;
}

.tile .body{
    margin:0;
    font-size: 15px;
    /*font-style:italic;*/
    color:grey;
    text-align: justify;
}

.tile .textcontainer .body a{
	font-style: normal;
}

.description{
	font-size: 15px;
}

li{
	font-size: 15px;
}

.tile .body a{
    display: contents;
    width: fit-content;
    font-style:italic;
    
}
.description a{
    display: contents;
    max-width: fit-content;
    font-style:italic;
}

.timestamp{
    width: auto;
    margin-bottom:4px;
    font-size:12px;
    color:grey;
	display: flex;
}


.time_convert{
	padding-left: 3px;
}

.choices_list{
	//border-style: solid;
	//border-width: 0 0 0 2px;
	margin-top:5px;
	//margin-bottom:10px;
}

.choice_description{
	overflow: clip;
	max-height: 0px;
	transition: max-height 0.2s ease-in-out;
}

.center_section{
	width:100%;
	height:fit-content;
	display:flex;
	flex-direction:column;
	align-items:center;
	background:rgb(255,255,255);
	z-index:1
}

.centered.category{
	position: sticky;
	top: 0px;
	margin: 0;
	//padding: 10px 0px;
	padding: 10px 15px;
	height: calc(var(--bar_width) - 20px);
	min-height: calc(var(--bar_width) - 20px);
	overflow-x: scroll;
	background: rgba(255,255,255,0.85);
	z-index:3;
    font-size: 32px;
    font-weight: bold;
    cursor: default;
	display: flex;
	justify-content: center;
	width: calc(100% - 30px);
	max-width: 100%;
	scrollbar-width: none;
	backdrop-filter: blur(10px);
}

.centered.category::-webkit-scrollbar{
	display: none;
}

.centered.category .container{
	margin: 0;
	//padding: 0px 15px;
	white-space: nowrap;
	padding: 0;
	height: 100%;
	//background: rgb(255,255,255);
	z-index:2;
    font-size: 32px;
    font-weight: bold;
    //padding-bottom: 0;
    cursor: default;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 600px;
	width: 100%;
}


.tile.centered .title{
    font-size:22px;
    margin-bottom:8px;
    border-color:grey;
	text-wrap: initial;
	width: 100%;
}

.tile.centered .body{
    /*font-style: normal;*/
    color: black;
}

.tile .textcontainer{
    width: calc(100% - 80px);
    margin-top: 0px;
    margin-left: 10px;
    float:left;
}

.poll.tile.centered{
	max-width: 630px;
	padding: 15px 0 0 0;
	width: 100%;
	margin-top: 10px;
}

.tile.centered.hover:hover{
	box-shadow: 0 0 3px rgba(0,0,0,0.2);
	transition: box-shadow 200ms ease;
}

.no_scrollbar{
	scrollbar-width: none;
}
.no_scrollbar::-webkit-scrollbar{
	display: none;
}

.tile .timestamp{
	scrollbar-width: none;
	overflow-x: scroll;
}
.tile .timestamp::-webkit-scrollbar{
	display: none;
}

.tile .textcontainer a{
	scrollbar-width: none;
	overflow: scroll;
	font-size: 15px;
}

.tile .textcontainer{
	scrollbar-width: none;
	overflow: scroll;
}

.tile .tags{
    display:flex;
    flex-wrap: wrap;
}

.tile .tags .tag{
    width: auto;
    margin: 0 10px 0px 0;
    font-size:12px;
    font-style:normal;
    color:grey;
}

.rarr{ 
	/* right arrow */
	//margin-top:-4px;
	background-image: url('icons/symbols/right_arrow.png');
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
	width: 20px;
	height: 30px;
}
/*.rarr::after{
	font-size: 27px;
	content: "\2192";
}*/

.home_plus_button{
	position:fixed;
	width:50px;
	height:50px;
	border-radius:15px;
	color:rgb(255,255,255);
	background:var(--bar_color);
	//right: calc(30px + var(--right-width));
	left: calc(var(--left-width) + var(--left-origin) + var(--center-width) - 80px);
	bottom: 30px;
	z-index:5;
	text-align:center;
	//box-shadow: 0px 0px 5px rgb(0,0,0,0.5);
	box-shadow: 0px 2px 5px rgb(0,0,0,0.5);
	vertical-align:middle;
	font-size:40px;
	font-weight:bold;
	cursor:pointer;
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	transition: box-shadow 100ms ease-in-out, left 0.3s ease;
}

.home_plus_button div{
	width:100%;
	height:100%;
	background-size:80%;
	background-position:center;
	background-repeat:no-repeat;
}

.home_plus_button:hover{
	//box-shadow: 0px 0px 5px rgb(0,0,0,0.9);
	box-shadow: 0px 3px 7.5px rgb(0,0,0,0.6);
}

#column_right .home_plus_button{
	//right: 30px;
	left: calc(var(--left-width) + var(--left-origin) + var(--center-width) + var(--right-width) - 80px);
	//display: var(--right-display);
}

#filter_bar{
	transition: transform 0.3s ease;
}
.up_hidden{
	transform: translateY(-58px);
}


.icon_button{
    float: right;
    //margin-right: 5px;
	width: 40px;
	min-width: 40px;
	height: 40px;
	border-radius: 8px;
	//border-radius: 50%;
	text-align: center;
    cursor: pointer;
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center center;
}

.icon_button .comment{
	background-image: url('icons/symbols/comment.png');
	background-position-x:4px;
	background-position-y:4px;
	background-size:33px;
	text-align:center;
	padding-top:11px;
	color:black;
	font-weight:bold
	
}

.icon_button .share{
	background-image: url('icons/share_small.png');
	background-position-x:7px;
}
.icon_button .reply{
	background-image: url('icons/symbols/reply.png');
	background-position-x:7px;
}

.plus{
    float: right;
    //margin-right: 5px;
	width: 40px;
	height: 40px;
	//border-radius: 20px;
	border-radius: 5px;
	text-align: center;
    cursor: pointer;
	background-image: url('icons/symbols/plus.png');
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
}
/*.plus::after{
    content: "+";
}*/

.small_markdown p{
	//margin: 4px 0 4px 0;
}

.small_markdown h1{
	font-size: 22px;
}
.small_markdown h2{
	font-size: 20px;
}
.small_markdown h3, h4, h5, h6{
	font-size: 18px;
}

h1, h2, h3, h4, h5, h6, p{
	margin: 0;
	padding: 4px 0 4px 0;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
	overflow-x: scroll;
	scrollbar-width: none;
}

p{
	font-size: 15px;
}

div[name=collapsable] div{
	transition: max-height 0.2s ease-in-out;
}

.collapseButton{
	bottom: 0;
	position: relative;
	padding: 3px;
	margin: 5px 0px 7px 0px;
	text-align: center;
	align-content: center;
	cursor: pointer;
	border-radius: 5px;
	//margin: 0px 0px 7px 0px;
	//border-radius: 0 0 10px 10px;
	/*background: rgba(0,0,0,0.17);*/
	//background: var(--hover_color);
}

/* TODO: move this to input_style.css */
.editor-toolbar:before{
	margin-bottom: 4px;
}
.editor-toolbar:after{
	margin-top: 4px;
}

.editor-toolbar{
	padding: 0 5px;
}

.editor-toolbar button{
	margin: 0 2px;
	width: 30px;
	height: 30px
}

button .fa{
	font-size:16px;
	color: rgb(50,50,50);
}

button i{
	font-size: 17;
	border-width: 0;
}

.arrow{
	position: relative;
	width: 18px;
	height: 28px;
	display: inline-block;
	transition: transform 0.2s ease;
}
.arrow.left.leftsmall {
	transform: scale(0.5);
}
.arrow.right.rightsmall {
	transform: scale(0.5);
}
.arrow.leftinstant.leftsmall {
	transform: scale(0.5);
}
.arrow.rightinstant.rightsmall {
	transform: scale(0.5);
}
.arrow .line{
	position: absolute;
	width: 18px;
	height: 4px;
	margin-top: -2px;
	background: white;
	top: 50%;
	left: 0;
	transform-origin: center;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
/* arrow start */
.arrow.leftinstant .linedown {
	transform: translateY(5px) rotate(45deg);
}
.arrow.leftinstant .lineup {
	transform: translateY(-5px) rotate(135deg);
}

.arrow.rightinstant .linedown {
	transform: translateY(5px) rotate(135deg);
}
.arrow.rightinstant .lineup {
	transform: translateY(-5px) rotate(45deg);
}
/* arrow animation */
.arrow.right .linedown{
	animation: linedownAnim 0.2s linear forwards;
}
.arrow.right .lineup{
	animation: lineupAnim 0.2s linear forwards;
}
.arrow.left .linedown{
	animation: linedownAnim 0.2s linear forwards reverse;
}
.arrow.left .lineup{
	animation: lineupAnim 0.2s linear forwards reverse;
}
@keyframes linedownAnim{
	0% {
		transform: translateY(5px) rotate(45deg);
	}
	50% {
		transform: translateY(7px) rotate(90deg);
		width: 14px;
	}
	100% {
		transform: translateY(5px) rotate(135deg);
	}
}
@keyframes lineupAnim{
	0% {
		transform: translateY(-5px) rotate(135deg);
	}
	50% {
		transform: translateY(-7px) rotate(90deg);
		width: 14px;
	}
	100% {
		transform: translateY(-5px) rotate(45deg);
	}
}


i{
	border: solid white;
	display: inline-block;
	border-width: 0 4px 4px 0;
	padding: 5px;
	//margin: 0 2px 2px 0;
}

.rangle {
	border-width: 0 5px 5px 0;
	padding: 7px;
	transform: translateX(-3px) translateY(-3px) rotate(-45deg);
	-webkit-transform: translateX(-3px) translateY(-3px) rotate(-45deg);
}
.langle {
	border-width: 0 5px 5px 0;
	padding: 7px;
	transform: translateX(3px) translateY(-3px) rotate(135deg);
	-webkit-transform: translateX(3px) translateY(-3px) rotate(135deg);
}
.uangle {
	border: solid black;
	border-width: 0 3px 3px 0;
	transform: translateY(5px) rotate(-135deg);
	-webkit-transform: translateY(5px) rotate(-135deg);
}
.dangle {
	border: solid black;
	border-width: 0 3px 3px 0;
	transform: translateY(-2px) rotate(45deg);
	-webkit-transform: translateY(-2px) rotate(45deg);
}

.scroll_shadow{
    //box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	//border-bottom: solid 1px rgba(100,100,100,0.2);
}

.scroll_shadow::after{
	content: "";
	position: absolute;
	bottom: 0;
	//left: 0;
    margin: 0px 15px;
    width: calc(100% - 30px);
	max-width: 600px;//640px;
	height: 1px;
	//background: var(--border_color);
	border-bottom: solid 1px var(--border_color);
	/*background: linear-gradient(
		to right,
		transparent 0px,
		var(--border_color) 20px,
		var(--border_color) calc(100% - 20px),
		transparent 100%);*/
}



.option{
    width: calc(100% - 40px);
    padding: 10px 10px 10px 10px;
    text-align: left;
    font-size: 15px;
    color: rgb(100,100,100);
    user-select: none;
	display: flex;
	align-items: center;
	border-radius: 15px;
	margin: 0 10px;
}

.option.hline{
    padding: 0;
    margin: 2px 10px 0 10px;
    border-width:0px 0px 1px 0px;
    border-style:solid;
    border-color: var(--border_color);
}

.option img{
	width: 35px;
	height: 35px;
	border-radius: 50%;
	margin-right:10px;
	//-webkit-filter: grayscale(100%);
	//filter: grayscale(100%);
}
.option img.symbol_icon{
	width: 29px;
	height: 29px;
	padding: 3px;
	opacity: 0.5;
	border-radius: 0%;
	margin-right:10px;
}

.white_background{
	background: rgb(255,255,255);
}

.hover img.symbol_icon{
	opacity: 0.5;
}
.option:hover img.symbol_icon{
	opacity: 1;
}
.option:hover img{
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.option_category{
    font-size:15px;
    /*font-style:italic;*/
    color: rgb(100,100,100);
    font-weight: bold;
    margin: 0 10px 0 20px;
    width:calc(100% - 30px);
    padding: 15px 0 3px 0;
}linear-gradient(
		to right,
		transparent,
		#999,
		transparent)

.no_polls{
    text-align: center;
    /*font-style: italic;*/
    width: 100%;
	margin: 10px 0px 10px 0px;
}

.hover{
	overflow:scroll;
	scrollbar-width: none;
	transition: background-color 100ms ease-in-out;
}
a:hover{
	color: rgb(0,0,0);
}
.hover:hover{
    background: var(--hover_color);
	transition: background 150ms ease-in-out;
	color: rgb(0,0,0);
}
.hover .hover:hover img.symbol_icon{
	opacity: 1;
}
.hover2:hover{
	color: rgb(0,0,0);
}
.hover2:hover img.symbol_icon{
	opacity: 1;
}
input[type="button"].inactive.hover:hover{
    background: var(--hover_color);
	cursor: pointer;
	color: rgb(0,0,0);
}
input[type="button"].active.hover:hover{
    background: var(--hover_color);
	cursor: pointer;
	color: rgb(0,0,0);
}

input[type="text"]#member_search{
	width:calc(100% - 36px);
	margin: 15px 10px 15px 10px;
}

@media (hover:hover){
::-webkit-scrollbar {
	background-color: rgba(0,0,0,0);
	width: 5px;
	height: 5px;
}
::-webkit-scrollbar-thumb {
	background: var(--hover_color);
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(0,0,0,0.12);
}
}

.noscrollbar::-webkit-scrollbar {
    display: none;
}

.hover::-webkit-scrollbar {
    display: none;
}

.title::-webkit-scrollbar {
    display: none;
}

.tile .textcontainer a::-webkit-scrollbar {
    display: none;
}

.tile .textcontainer::-webkit-scrollbar {
    display: none;
}

a {
    color: inherit;
    text-decoration: inherit;
    width:100%;
    display: block;
}

a:hover{
    //text-decoration: underline;
}

hr{
	border-style: solid;
	border-color: var(--border_color);
	border-top: hidden;
}




.bubble {
    position: absolute;
	bottom: calc(100vh - 100dvh + 121px);
    background: #ffffff;
    color: #000000;
    font-size: 15px;
	font-weight: bold;
    /* line-height: 28px; */
    text-align: center;
    align-content: center;
    width: fit-content;
    height: fit-content;
    border-radius: 21px;
    padding: 10px;
    border: #000000 solid 2.5px;
}

.bubble:before {
    content: '';
    position: absolute;
    width: 0;
    z-index: 0;
    border-style: solid;
    border-width: 1px 29px 29px 0px;
    border-color: transparent #000000 transparent transparent;
    bottom: -31px;
    right: 35px;
    margin-left: -18px;
    display: block;
}

.bubble:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-width: 0px 26px 26px 0px;
    border-color: transparent #ffffff transparent transparent;
    bottom: -25.5px;
    right: 37.5px;
    margin-left: -18px;
}

.bubble.top:before {
    border-width: 1px 0px 29px 29px;
    border-color: transparent transparent #000000 transparent;
    top: -31px;
    right: 25px;
	bottom: auto;
    margin-left: -18px;
}

.bubble.top:after {
    width: 0;
    border-style: solid;
    border-width: 0px 0px 26px 26px;
    border-color: transparent transparent #ffffff transparent;
    top: -24px;
    right: 27.5px;
	bottom: auto;
    margin-left: -18px;
}
