﻿.wa-float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.wa-menonitapp{
	margin-top:16px;
}

div.loginbox {
	background: url('../images/sprites/textbox.png');
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: 0;
	width: 225px;
	height: 330px;
	position: absolute;
	top: 45px;
	right: 12px;
	text-align:center;
	padding: 90px 20px;
}
div.loginbox .row{
	margin: 0;
}
div.loginbox .col-xs-6{
	padding: 5px;
}
div.loginbox .btn{
	padding: 6px 0;
	font-size: 0.9em;
}

div.userbox {
	width: 300px;
	height: 180px;
	position: absolute;
	top: 56px;
	right: 7px;
	text-align:center;
	padding: 90px 20px;
}
div.userbox p{
	overflow-wrap: break-word;
	white-space:nowrap;
	overflow:hidden;
}
div.userbox .col-xs-5 {
	height:90px;
	vertical-align: middle;
}
div.userbox img {
	padding: 0 10px;
	position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	max-width:100%;
	max-height:100%;
}
div.userbox ul {
	list-style-type: disc;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 0;
	-webkit-margin-end: 0;
	-webkit-padding-start: 0;
	padding-left: 0;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
}
div.userbox ul>li {
	margin-bottom: 2px;
}
div.userbox ul>li>a {
	color: black !important;
}
div.userbox.tri{
	padding:15px;
	margin:1em 0 3em;
	border:5px solid #ccc;
	color:#333;
	background:#fff;
	/* css3 */
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}
div.userbox.tri:before {
	content:"";
	position:absolute;
	bottom:-20px; /* value = - border-top-width - border-bottom-width */
	left:40px; /* controls horizontal position */
	border-width:20px 20px 0;
	border-style:solid;
	border-color:#ccc transparent;
	/* reduce the damage in FF3.0 */
	display:block;
	width:0;
}
div.userbox.tri:after {
	content:"";
	position:absolute;
	bottom:-13px; /* value = - border-top-width - border-bottom-width */
	left:47px; /* value = (:before left) + (:before border-left) - (:after border-left) */
	border-width:13px 13px 0;
	border-style:solid;
	border-color:#fff transparent;
	/* reduce the damage in FF3.0 */
	display:block;
	width:0;
}
div.userbox.tri.over:before {
  top:-20px; /* value = - border-top-width - border-bottom-width */
  bottom:auto;
  left:auto;
  right:20px; /* controls horizontal position */
  border-width:0 20px 20px;
}

/* creates the smaller  triangle */
div.userbox.tri.over:after {
  top:-13px; /* value = - border-top-width - border-bottom-width */
  bottom:auto;
  left:auto;
  right:26px; /* value = (:before right) + (:before border-right) - (:after border-right) */
  border-width:0 13px 13px;
}

.shown {
	-webkit-animation: fadein 0.4s;
	-moz-animation: fadein 0.4s;
	-ms-animation: fadein 0.4s;
	-o-animation: fadein 0.4s;
	animation: fadein 0.4s;
}
.not-shown {
	-webkit-animation: fadeout 0.4s;
	-moz-animation: fadeout 0.4s;
	-ms-animation: fadeout 0.4s;
	-o-animation: fadeout 0.4s;
	animation: fadeout 0.4s;
	-webkit-transition: visibility 0s,0.4s ease-out;
	-moz-transition: visibility 0s,0.4s ease-out;
	-ms-transition: visibility 0s,0.4s ease-out;
	-o-transition: visibility 0s,0.4s ease-out;
	transition: visibility 0s,0.4s ease-out;
	visibility: hidden;
}

@keyframes fadein {
    from { 
		opacity: 0;
	}
    to   { 
		opacity: 1; 
	}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { 
		opacity: 0;
	}
    to   { 
		opacity: 1; 
	}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { 
		opacity: 0;
	}
    to   { 
		opacity: 1; 
	}
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { 
		opacity: 0;
	}
    to   { 
		opacity: 1; 
	}
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { 
		opacity: 0;
	}
    to   { 
		opacity: 1; 
	}
}

@keyframes fadeout {
    from { 
		opacity: 1;
	}
    to   { 
		opacity: 0; 
	}
}

/* Firefox < 16 */
@-moz-keyframes fadeout {
    from { 
		opacity: 1;
	}
    to   { 
		opacity: 0; 
	}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
    from { 
		opacity: 1;
	}
    to   { 
		opacity: 0; 
	}
}
/* Internet Explorer */
@-ms-keyframes fadeout {
    from { 
		opacity: 1;
	}
    to   { 
		opacity: 0; 
	}
}

/* Opera < 12.1 */
@-o-keyframes fadeout {
    from { 
		opacity: 1;
	}
    to   { 
		opacity: 0; 
	}
}