

/*-------------------------*/ 
/*	warenkorb meldung
/*-------------------------*/


#wkmel-overlay {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2008;
overflow: hidden;
position: fixed;
background-color: rgb(24, 31, 36);
visibility: hidden;
opacity: 0;
transition: visibility 0s linear 600ms, opacity 200ms;
}

#wkmel-overlay.m-fadeIn {
visibility: visible;
opacity: 0.95;
transition: visibility 0s linear 0s, opacity 200ms;
}


#wkmel-content {
background-color: rgba(144, 211, 5, 0.05);
/*background-color: #283037;*/
padding: 55px;
position:fixed;
left:50%;
top:50%;
transform: translate(-50%, -50%) ;
z-index: 2009;
overflow: hidden;
border-radius: 5px;
text-align: center;
max-width: 680px;
visibility: hidden;
opacity: 0;
transition: visibility 0s linear 200ms, opacity 200ms;
}

#wkmel-content.m-fadeIn {
visibility: visible;
opacity: 1;
transition: visibility 0s linear 0s, opacity 200ms;
}

#wkmel-content p {
color: rgba(144, 211, 5, 1);
/*color: rgb(131, 162, 179);*/
font-size: 22px;
margin: 0;
}

#wkmel-content p span {
display: block;
color: rgba(144, 211, 5, 1);
/*color: rgb(131, 162, 179);*/
}

#wkmel-content .wkmel-buttons {
display: flex;
align-items: center;
margin-top: 41px;
justify-content: center;
}

#wkmel-content .wkmel-buttons div {
background-color: rgba(144, 211, 5, 0.8);

/*background-color: rgba(131, 161, 179, 0.71);*/
padding: 13px 17px;
font-size: 17px;
margin-right: 2px;
margin-left: 2px;
color: #181f25;
cursor: pointer;
}

#wkmel-content .wkmel-buttons div:first-of-type {
border-top-left-radius: 50px;
border-bottom-left-radius: 50px;
padding-left: 30px;
}

#wkmel-content .wkmel-buttons div:last-of-type {
border-top-right-radius: 50px;
border-bottom-right-radius: 50px;
padding-right: 30px;
}

#wkmel-content .wkmel-buttons div:hover {
background-color: rgba(144, 211, 5, 0.6);
/*background-color: rgba(131, 161, 179, 0.9);*/
}




/*div#spr-content {
overflow: hidden;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1001;
background-color: rgba(24, 31, 36, 0);
width: 100%;
height: 100%;
}

div#spr-content.m-fadeOut {
visibility: hidden;
opacity: 0;
transition: visibility 0s linear 300ms, opacity 200ms;
}

div#spr-content.m-fadeIn {
visibility: visible;
opacity: 1;
transition: visibility 0s linear 0s, opacity 200ms;
}*/



/*div#spr-content.m-fadeOut {
visibility: hidden;
opacity: 0;
transition: visibility 0s linear 300ms, opacity 200ms;
}

div#spr-content.m-fadeIn {
visibility: visible;
opacity: 1;
transition: visibility 0s linear 0s, opacity 200ms;
}*/


