@charset "utf-8";
/* CSS Document */
/* Höhen- und Breitenangaben für "widget" und "widget_container" müssen immer identisch sein */

#widget2, #widget_container2 {
	height: auto; /* Höhe des Widgets */
    border-bottom: 0px solid #fff;
}

/*#widget_container img {
	width: 150px;
}*/

#widget2.ein, #widget_container2 {
	width:100px; /* Breite des Widgets / *1 Wert zwingend identisch mit *2*/
}

#widget_button2.ein {
	right: 100px; /* Breite des Widgets / *2 Wert zwingend identisch mit *1*/
}

#widget2 {
	position: absolute;
	right: 0;
	width: 0;
	overflow: hidden;
}

#widget_container2 { /* Eigentliches Widget */
	position: relative;
	height: 120px;
    padding: 12px 0 0 0;
    background-color: #1c5c91;
    margin-top: 186px;
    margin-left: 0px;
    box-shadow: 8px 0px 9px 0.5px #ccc;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
    z-index: 99000;
} 

#widget_button2 {
	display:inline-block;
    position: absolute;
    width: 50px;
    height: 120px;
    right: 0px;
    padding: 8px 0px 5px 10px;
    box-shadow: 1px 0px 9px 0.5px #ccc;
	border-top-left-radius:10px; 
	border-bottom-left-radius:10px;
	border-left: 1px solid white;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	background:#1c5c91;
    margin-top: 186px;
    z-index: 9999;
	cursor:pointer;
}

#widget2, #widget_button2, #widget_container2 {
	transition: all 0.8s ease;
}
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Tablet*/
@media screen and (max-width: 1250px) {
#widget2, #widget_container2 {
height: 43px; /* Höhe des Widgets */
}
#widget_button2 {}
#widget_container2 {}
}
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Smartphone*/
@media screen and (max-width: 869px) {
#widget2, #widget_container2 {
height: 49px; /* Höhe des Widgets */
}
#widget_button2 {/* Widget-Button */
display:none;
position: absolute;
    width: 53px;
    height: 53px;
    right: 0;
    padding: 8px 0px 0px 4px;
    margin-top: 75px;
    z-index: 99000;
}
#widget_container2 { /* Eigentliches Widget */
margin-top: 83px;
}
}
