/* Pebweb Modal
--------------------------------------------- */
.pebweb-modal {
    position: fixed;
    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, opacity 0.7s;
}
.pebweb-modal-show{
	right: 0;
	bottom: 0;
	opacity: 1;
	transform: rotateX(0deg);
	z-index: 1000;
	
}
.pebweb-modal-content {
	color: #424242;
	font-size: 2vh;
    max-width: 700px;
    margin: 30px;
    padding: 25px;
    background: #FFF;
	border-radius: 10px;
	z-index: 2;
	transform: rotateX(80deg);
	transition: transform 2.5s;
}
.pebweb-modal-show .pebweb-modal-content{
	transform: rotateX(0deg);
}
.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;
}


/* 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
--------------------------------------------- */
