/* Pebweb Modal
--------------------------------------------- */
.pebweb-modal {
	position: fixed !important;
	top: 0;
	right: 100%;
	bottom: 100%;
	left: 0;
	overflow: hidden;
	background: rgba(50, 50, 50, .6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: right 0.7s, bottom 0.7s, transform 0.7s, opacity 1s;
}
.pebweb-modal-show{
	right: 0;
	bottom: 0;
	z-index: 1000;
	pointer-events: auto;
	opacity: 1;
}
.pebweb-modal:not(.pebweb-modal-show) {
	pointer-events: none;
	opacity: 0;
}
.pebweb-modal-content {
	color: #424242;
	font-size: 1.2em;
	max-width: 700px;
	margin: 30px;
	padding: 25px;
	background: #FFF;
	border-radius: 10px;
	z-index: 2;
	opacity: 0;
	transform: rotateX(80deg);
	transition: transform 2.5s, opacity 2s;
	overflow-y: auto;
}
.pebweb-modal-show .pebweb-modal-content{
	transform: rotateX(0deg);
	opacity: 1;
}
.pebweb-modal-header{
	position: relative;
	text-align: center;
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 10px;
	/*padding-right: 40px;*/
}
.pebweb-modal-close {
	position: absolute;
	top: -21px;
	right: -20px;
	border: none;
	border-radius: 7px;
	background: none;
	font-size: 40px;
	line-height: 0.6;
	padding: 2px 2px 3px;
	cursor: pointer;
	color: #888;
	transition: color 0.3s ease;
}
button.pebweb-modal-close:hover {
	color: #FFF;
	background: #bdbdbd;
}
button.pebweb-modal-close:focus {
    outline: none;
}


/*  Login- und Registrier-Form (im Modal)
--------------------------------------------- */
.pebweb-authform {
  text-align: left;
	min-width: 300px;
}

.pebweb-authform-logo img {
	display: block;
	margin: 0 auto 1rem;
	max-width: 230px;
}

.pebweb-authform label {
	font-weight: 500;
	font-size: 85%;
}

.pebweb-authform input.input {
	width: 100%;
	padding: 0.6rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	line-height: 1;
}

.pebweb-authform .button-primary {
	display: block;
	width: 100%;
	padding: 0.6rem 1rem;
	margin-top: 0.5rem;
	text-align: center;
}

.pebweb-authform .pebweb-lostpass {
	text-align: center;
	margin-top: 0.8rem;
	font-size: 0.75em;
}


/* Login-Register Links
--------------------------------------------- */
.pebweb-toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #323232;
	color: #fff;
	padding: 12px 20px;
	border-radius: 6px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease;
	z-index: 9999;
	font-size: 15px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.pebweb-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Begrüssung nach Registrierung und autologin
--------------------------------------------- */
