@charset "UTF-8";


@font-face {
    font-family: 'BarlowCondensed-Regular';
    src: url('/templates/elektrogeraetedemoankauf/font/BarlowCondensed-Regular.ttf') format('truetype'); 
}

@font-face {
    font-family: 'BarlowCondensed-Bold';
    src: url('/templates/elektrogeraetedemoankauf/font/BarlowCondensed-Bold.ttf') format('truetype'); 
}

.scanner_overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9999;
    background-color: rgba(150, 150, 150, 0.9);
  }

  .scanner_overlay:after {
    content: "";
    display: block;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 997;
    background: rgba(0, 0, 0, 0.6);

  }

  #fe_video {
    position: fixed;
    z-index: 998;
    width: 80%;
    left: 10%;
    top: 20%;
    height: 60vh;
  }

  .scanner_overlay.multi #fe_video {
    height: 30vh !important;
  }

  .scanner_overlay.multi .scanResultFrame {
    height: 30vh;

  }

  .scanner_overlay.multi #ScanResult {
    height: calc(30vh - 2px);
  }

  #sourceSelectPanel {
    left: 10%;
    bottom: 16%;
    position: fixed;
    z-index: 999;
    width: 80%;
  }

  #sourceSelectPanel select {
    height: 40px;
    line-height: 40px;
    width: 100%;
    border-radius: 4px;

  }

  .scannerHeadline {
    position: fixed;
    z-index: 998;
    /*width: 80%;*/
    width: 100%;
    /*left: 10%;*/
    top: 5%;
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    /*padding: 0px 40px;*/
    padding: 0px 20px;
  }

  .scannerClose {
    position: fixed;
    z-index: 999;
    top: 5px;
    right: 5px;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 20px;
    background: #ff0000;
    color: #fff;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    cursor: pointer;
  }

  .scanResultFrame {
    z-index: 999;
    position: fixed;
    bottom: 8%;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 4px;
    width: 80%;
    left: 10%;
    height: 40px;
    line-height: 38px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
  }

  .scanResultFrame i.fa.sec {
    position: absolute;
    left: 10px;
    top: 7px;
    font-size: 24px;
  }

  .scanResultFrame .scanButton {
    position: absolute;
    right: -2px;
    bottom: -2px;
    font-size: 24px;
    height: 40px;
    line-height: 38px;
    width: 40px;
    text-align: center;
    background: #95c11e;
    color: #fff;
    border-radius: 4px;
    border: 0;
  }

  #ScanResult {
    padding: 0px 44px;
    font-size: 24px;
    height: 38px;
    line-height: 38px;
    box-sizing: border-box;
    width: 100%;
    resize: none;
    border: 0;
  }

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'BarlowCondensed-Regular';
	background-color: #eaedf3
}


.header a{
    text-decoration: none;
	text-align: center;
}
.header>a {
	font-size: 30px;
	line-height: 0.8;
	text-align: center;
	height: 100%;
	margin-top: 20px;
	margin-left: 50px;
	font-family: 'BarlowCondensed-Bold' !important;
}
.login-register-button {
	margin-left: 50px;
	margin-top: -10px;
}
.cart-button {
	margin-right: 20px;
	margin-top: -60px;
}
.header ul{
    list-style: none;
}
.header{
    background-color: #fff;
    top: 0;
	height: 80px;
	width: 95%;
	margin: 20px auto;
	border-radius: 18px;
	filter: drop-shadow(3px 3px 4px gray);
}
.logo{
    display: inline-block;
    color: #4e5d80;
    font-size: 25px !important;
    margin-left: 30px !important;
}
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #d9e0e1;
    overflow: hidden;
}
.menu a{
    display: block;
    padding: 30px;
    color: #4e5d80;
	font-family: 'BarlowCondensed-Regular';
}
.menu a:hover{
    background-color: #b1c8cc;
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}

.hamb-line {
    background: #354f52;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} 

.hamb-line::before,
.hamb-line::after{
    background: #4e5d80;
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 7px !important;
}
.hamb-line::after{
    top: -7px !important;
}

.side-menu {
    display: none;
}
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
    }
    .hamb{
        display: none;
    }
	.footer-top {
		display: flex;
	}
	.footer-top p {
		margin: 20px 0px;
	}
	.footer-top-contact>p{
		margin: 20px 0px;
	}
	.footer-top>div {
		margin: 10px auto 10px auto !important;
	}
	.footer-top>div:nth-child(1) {
		margin: auto !important;
	}
	.nav-label {
		width: 12% !important;
	}
	.navigation-row-input>nav>ul {
		display: flex !important;
	}
	.navigation-row-input>nav>ul>li {
		text-align: center;
	}
	.navigation-row-input>nav>ul>li>a {
		line-height: 3 !important;
		text-align: center;
		padding: 0px 15px;
	}
	.navigation-row {
		display: flex;
		margin: 0 !important;
	}
	.nav-label + input:checked {
	background-color: #354f52 !important;
	}
	.home-search-box {
	}
	.search-block {
		width: 100% !important;
	}
	.search-block h1 {
		font-family: 'BarlowCondensed-Bold';
	}
	.search-instructions {
		width: 100% !important;
	}
	.search-instructions>input, .search-instructions>label {
		display: none !important;
	}
	.instructions-boxes {
		display: flex !important;
		margin-top: 20px;
	}
	.instructions-boxes>div:nth-child(1) {
		padding-top: 20px !important;
		width: 30%;
		border-top-left-radius: 13px;
		border-bottom-left-radius: 13px;
	}
	.instructions-boxes>div:nth-child(2) {
		padding-top: 20px !important;
		width: 30%;
	}
	.instructions-boxes>div:nth-child(3) {
		padding-top: 20px !important;
		width: 30%;
		border-bottom-left-radius: 0px !important;
		border-top-right-radius: 13px;
	}
	.example-gadgets {
		display: flex;
		margin-top: 0px !important;
	}
	.example-gadgets>div {
		width: 30%;
		margin-top: 0px;
	}
	.example-box-phone img {
		margin-top: 80px;
	}
	.example-box-tablet img {
		margin-top: 80px;
	}
	.example-box-laptop img {
		margin-top: 70px;
	}
	.main {
		display: flex;
	}
	.side-navigation {
		width: 20%;
	}
	.main-content {
		width: 80%;
		padding-top: 20px!important
	}
	.navigation-row2>label {
		width: 100%;
		display: none;
	}
	.navigation-row-input2 {
		display: block !important;
		width: 100%;
		background-color: #fff !important;
		filter: drop-shadow(3px 3px 4px gray);
	}
	.nav-label + input + div {
		display: block !important;
		width: 100% !important;
	}
	.nav-label {
		display: none !important;
	}
	.navigation-row {
		width: 100% !important;
		filter: drop-shadow(3px 3px 4px gray);
	}
	.navigation-row-input>nav>ul>li {
		margin: auto;
	}
}


main {
	width: 95%;
	margin: auto;
}



.navigation-row {
	border-radius: 13px;
	width: 90%;
	margin: auto;
}
.navigation-row>label {
	color: #fff;
	background-color:  #a0b9ff;
	padding: 4px 10px 10px 10px;
	border-radius: 13px;
}
.navigation-row>label>span {
	font-size: 25px;
	color: #fff;
}
.nav-label{
  	cursor: pointer;
 	display: block;
	width: 25%;
	text-align: center;
	font-weight: 500;
	filter: drop-shadow(3px 3px 4px gray);
	margin-bottom: 20px;
}
.nav-label + input{
  	display: none; 
}
.nav-label + input + div{
  	display: none;
	width: 100%;
	font-weight: 500;
	border-bottom-right-radius: 13px;
	border-top-right-radius: 13px;
	border-bottom-left-radius: 13px;
	border-top-left-radius: 13px;
}
.nav-label + input:checked + div{
  	display:block;
	background-color: #a0b9ff;
}
.navigation-row-input {
	background-color: #a0b9ff;
}
.navigation-row-input>nav>ul {
	list-style: none;
}
.navigation-row-input>nav>ul>li>a {
	text-decoration: none;
	line-height: 5;
	color: #fff;
	margin-left: 40px;
	font-family: 'BarlowCondensed-Bold';
}






.navigation-row2 {
	border-radius: 15px;
	margin-top: 20px;
	width: 90%;
	margin: 20px auto 0px auto;
}
.navigation-row2>label {
	color: #4e5d80;
	background-color:  #fff;
	padding: 4px 10px 10px 10px;
	border-radius: 13px;
	filter: drop-shadow(3px 3px 4px gray);
}
.navigation-row2>label>span {
	font-size: 25px;
	color: #4e5d80;
}
.nav-label2{
  	cursor: pointer;
 	display: block;
	width: 25%;
	text-align: center;
	font-weight: 500;
}
.nav-label2 + input{
  	display: none; 
}
.nav-label2 + input + div{
  	display: none;
	width: 100%;
	font-weight: 500;
	border-bottom-right-radius: 13px;
	border-top-right-radius: 13px;
	border-bottom-left-radius: 13px;
	border-top-left-radius: 13px;
	color: #4e5d80
}
.nav-label2 + input:checked + div{
  	display:block;
	background-color: #fff;
	margin-top: 20px;
}
.navigation-row-input2 {
	background-color: #a0b9ff;
}
.navigation-row-input2>nav>ul {
	list-style: none;
}
.navigation-row-input2>nav>ul>li>a {
	text-decoration: none;
	line-height: 5;
	color: #4e5d80;
	font-weight: 400;
	padding: 30px 100px 30px 40px;
}
.navigation-row-input2>nav>ul>li:hover {
	background-color: #DBE3FC;
	border-radius: 13px;
	cursor: pointer;
}








.home-search-box {
	padding: 40px;
	color: #a0b9ff;
}
.search-block p {
	font-size: 13px;
}
.home-search-input {
	padding-bottom: 5px;
	margin: 20px 0px;
	display: flex;
}
.home-search-input>input {
	border: none;
	font-size: 16px;
	font-weight: 300;
	width: 100%;
	padding: 15px;
	font-family: 'BarlowCondensed-Regular';
	color: #a0b9ff;
	border-radius: 12px;
	filter: drop-shadow(3px 3px 4px gray);
	background-image: url("/templates/elektrogeraetedemoankauf/images/searchbar_background_lavender.png");
	background-repeat: no-repeat;
	background-size: 9%;
	background-position: right;
	margin-left: -30px;
}
.home-search-input img {
	width: 14%;
	z-index: 99;
	filter: drop-shadow(1px 1px 70px);
}
.home-search-input>input:placeholder {
	color: #a0b9ff;
}
.barcode-and-more {
	margin: 30px 0px
}
.search-barcode {
	margin-bottom: 10px;
	border: none;
}
.search-barcode>p {
	color: #fff;
	text-decoration: none;
	background-color: #a0b9ff;
	padding: 15px 40px;
	font-weight: 600;
	border-radius: 12px;
	filter: drop-shadow(3px 3px 4px gray);
	border: none;
}
.search-barcode>p:hover {
	background-color: #849CE1;
}
.search-more-articles>a {
	color: #fff;
	text-decoration: none;
	background-color: #a0b9ff;
	padding: 10px 40px;
	font-weight: 600;
	border-radius: 12px;
	filter: drop-shadow(3px 3px 4px gray);
	border: none;
}
.search-more-articles>a:hover {
	cursor: pointer;
}
.collapse{
  	cursor: pointer;
 	display: block;
	padding: 10px;
	margin-top: 30px;
	background-color: #fff;
	border-radius: 12px;
	filter: drop-shadow(3px 3px 4px gray) !important;
	width: 100%;
}
.collapse>span {
	float: right
}
.collapse + input{
  	display: none; 
}
.collapse + input + div{
  	display:none;
}
.collapse + input:checked + div{
  	display:block;
	margin-top: -30px;
}
.instructions-boxes>div {
	background-color: #fff;
	padding: 10px 20px 20px 20px;
	color: #4e5d80;
	line-height: 1.5;
	width: 96.9%
}
.instructions-boxes>div:nth-child(1) {
	padding-top: 50px;
}
.instructions-boxes>div:nth-child(3) {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
.instructions-boxes>div>p {
	font-size: 15px;
}

.start-information-text {
	padding: 0px 40px;
}
.start-information-text h2 {
	color: #a0b9ff;
	font-size: 30px;
	font-weight: 800;
}
.start-information-text p {
	color: #4e5d80;
	font-weight: 400;
}



.example-gadgets {
	margin: auto; 
	background-color: #eaedf3; 
	padding: 140px 20px 20px 20px;
}
.example-box-phone {
	width: 90%; 
	height: 150px;
	margin: 40px auto; 
	border-radius: 10px; 
	background-color: #fff;
	filter: drop-shadow(3px 3px 4px gray); 
	text-align: center;
}
.example-box-phone img {
	display: block; 
	width: 25%; 
	margin-left: auto; 
	margin-right: auto; 
	right: 0; 
	left: 0; 
	position: absolute; 
	top: -170px;
}
.example-box-phone a {
	background-color: #a0b9ff; 
	border-radius: 10px; 
	padding: 10px 30px;
	color: #fff; 
	font-family: 'BarlowCondensed-Regular';
	text-decoration: none; 
	font-weight: 500; 
	font-size: 18px; 
	right: 0; 
	left: 0; 
	position: absolute; 
	bottom: 0; 
	width: 30%; 
	margin: auto; 
	margin-bottom: 15px;
}
.example-box-tablet {
	width: 90%; 
	height: 150px;
	margin: 190px auto 40px auto; 
	border-radius: 10px; 
	background-color: #fff;
	filter: drop-shadow(3px 3px 4px gray); 
	text-align: center;
}
.example-box-tablet img {
	display: block; 
	width: 35%; 
	margin-left: auto; 
	margin-right: auto;  
	right: 0; 
	left: 0; 
	position: absolute; 
	top: -130px;
}
.example-box-tablet a {
	background-color: #a0b9ff; 
	border-radius: 10px; 
	padding: 10px 30px; 
	color: #fff; 
	font-family: 'BarlowCondensed-Regular';
	text-decoration: none; 
	font-weight: 500; 
	font-size: 18px; 
	right: 0; 
	left: 0; 
	position: absolute; 
	bottom: 0; 
	width: 30%; 
	margin: auto; 
	margin-bottom: 15px;
}
.example-box-laptop {
	width: 90%; 
	height: 150px;
	margin: 170px auto 20px auto; 
	border-radius: 10px; 
	background-color: #fff;
	filter: drop-shadow(3px 3px 4px gray); 
	text-align: center;
}
.example-box-laptop img {
	display: block; 
	width: 50%; 
	margin-left: auto; 
	margin-right: auto;  
	right: 0; 
	left: 0; 
	position: absolute; 
	top: -150px;
}
.example-box-laptop a {
	background-color: #a0b9ff; 
	border-radius: 10px; 
	padding: 10px 30px; 
	color: #fff; 
	font-family: 'BarlowCondensed-Regular';
	text-decoration: none; 
	font-weight: 500; 
	font-size: 18px; 
	right: 0; 
	left: 0; 
	position: absolute; 
	bottom: 0; 
	width: 30%; 
	margin: auto; 
	margin-bottom: 15px;
}












.footer {
	background-color: #4e5d80;
	color: #fff;
	padding: 20px;
}
.footer-top {
	margin-bottom: 40px
}
.footer-top p {
	margin: 20px 0px;
}
.footer-top-contact>p{
		margin: 20px 0px;
	}
.footer-top-logo h3 {
	text-align: center;
	margin-bottom: 20px;
	line-height: 1;
	font-size: 28px;
	font-family: 'BarlowCondensed-Bold';
}
.footer-top img {
	width: 100%;
	margin-bottom: 20px;
}
.footer-top>div {
	width: 200px;
	margin: auto;
}
.footer-top h4 {
	font-size: 20px;
	margin-top: 30px;
}
.footer-top a {
	display: block;
	text-decoration: none;
	color: #fff;
	margin: 20px 0px;
}
.footer-top a:hover {
	text-decoration: underline;
}
.footer-top {
	list-style: none !important;
}
.footer-top p {
	margin: 20px 0px;
}
.footer-bottom {
	border-top: solid 2px;
	padding-top: 20px;
	padding-left: 10px;
	font-size: 12px;
	text-align: center;
}




div#rightC {
	background-color: #fff !important;
	border-radius: 15px;
	padding: 30px;
	filter: drop-shadow(3px 3px 4px gray);
	margin-bottom: 40px;
	color: #4e5d80;
	width: 80%;
}

div#rightC h1 {
	margin-bottom: 10px;
	color: #4e5d80;
}

.esearch {
	margin-top: 20px;
}

.esearch>form {
	padding-bottom: 5px;
	width: 95%;
	margin: 0px auto 20px auto;
	position: relative;
}

.esearch>form>input {
	border: none;
	font-size: 16px;
	font-weight: 300;
	width: 100%;
	padding: 15px 60px 15px 15px;
	font-family: 'BarlowCondensed-Regular';
	color: #a0b9ff;
	border-radius: 12px;
	filter: drop-shadow(3px 3px 4px gray);
	background-image: url("/templates/elektrogeraetedemoankauf/images/searchbar_background_lavender.png");
	background-repeat: no-repeat;
	background-size: 9%;
	background-position: right;
	box-sizing: border-box;
}

.esearch img {
	width: 30px;
	z-index: 99;
	filter: drop-shadow(1px 1px 70px);
	position: absolute;
	right: 55px;
	top: 10px;
}

.esearch>input>input:placeholder {
	color: #a0b9ff;
}

#leftC {
	width: 20% !important;
	margin-right: 30px;
	margin-bottom: 20px;
}

#navstart {
	display: block !important;
	width: 100%;
	background-color: #fff !important;
	filter: drop-shadow(3px 3px 4px gray);
	border-radius: 15px;
}

#navstart ul {
	list-style: none;
}

#navstart a {
	text-decoration: none;
	line-height: 5;
	color: #4e5d80;
	padding: 30px 100px 30px 40px;
}

#navstart li:hover {
	background-color: #DBE3FC;
	border-radius: 15px;
	cursor: pointer;
}

.more {
	color: #fff;
	text-decoration: none;
	background-color: #a0b9ff;
	padding: 10px 40px;
	font-weight: 600;
	border-radius: 12px;
	filter: drop-shadow(3px 3px 4px gray);
	border: none;
	margin-left: 40px;
}

.start {
	margin-top: 50px;
}

#ContactForm fieldset {
	border: none;
}

#ContactForm fieldset>label {
	display: block;
}

#ContactForm select {
	padding: 10px;
	margin: 5px 0px 10px 0px;
	width: 20%;
	border: none;
	filter: drop-shadow(3px 3px 4px gray);
	border-radius: 10px;
}

#ContactForm input {
	padding: 10px;
	margin: 5px 0px 10px 0px;
	width: 50%;
	border-radius: 10px;
	border: none;
	filter: drop-shadow(3px 3px 4px gray);
}

#comment {
	width: 30%;
	height: 100px;
	border: none;
	filter: drop-shadow(3px 3px 4px gray);
	border-radius: 10px;
}

.next {
	color: #fff;
	padding: 10px 40px;
	border: none;
	border-radius: 10px;
	background-color: #a0b9ff;
	font-family: 'BarlowCondensed-Bold';
	font-size: 15px;
	margin-top: 10px;
	text-decoration: none;
	float: right;
}

.prod {
	display: flex;
	background-color: #fff;
	filter: drop-shadow(3px 3px 4px gray);
	margin: 20px 0px;
	border-radius: 15px;
}

.prod img {
	width: 70%;
	margin: 20px;
}

.trash {
	color: #4e5d80;
	padding: 15px;
	height: 30px;
}

.right {
	display: flex;
	align-items: baseline;
}

.amazon .pic {
	width: 25%;
	text-align: center;
}

.condition {
	list-style: none;
	line-height: 1.5;
}

.name a {
	font-size: 20px;
	font-family: 'BarlowCondensed-Bold';
	color: #4e5d80;
	text-decoration: none;
}

.name {
	margin: 20px 0px 20px 50px;
}

.voucher fieldset{
	border: none;
	margin-bottom: 10px;
}

.voucher input {
	display: block;
	padding: 5px;
	width: 40%;
	margin: 10px 0px;
}

.voucher {
	margin-bottom: 50px;
}

.voucher a {
	background-color: #DBE3FC;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	color: #4e5d80;
}

.buttons {
	margin-top: 30px;
	padding: 30px 0px;
}

.back {
	background-color: #DBE3FC;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	color: #4e5d80;
	margin-left: 10px;
	float: left;
}

.cost {
	margin: 20px 0px;
}

.costs {
	font-size: 18px;
}

.dt {
	font-family: 'BarlowCondensed-Bold';
}

.total {
	font-size: 20px;
	font-family: 'BarlowCondensed-Bold';
}

#LoginForm fieldset {
	border: none;
}

#LoginForm fieldset>label {
	display: block;
}

#LoginForm fieldset>input {
	border: none;
	filter: drop-shadow(3px 3px 4px gray);
	padding: 10px;
	border-radius: 10px;
	width: 50%;
	margin: 10px 0px 20px 0px;
	font-family: 'BarlowCondensed-Regular';
}

#LoginForm fieldset>select {
	border: none;
	filter: drop-shadow(3px 3px 4px gray);
	padding: 10px;
	border-radius: 10px;
	width: 30%;
	margin: 10px 0px 20px 0px;
	font-family: 'BarlowCondensed-Regular';
}

#LoginForm h2 {
	margin: 30px 0px 20px 0px;
	font-family: 'BarlowCondensed-Bold';
}


.cart-empty {
	margin-bottom: 20px;
}

.cart-emty {
	margin-bottom: 20px;
}

.menge input {
	border: none;
	width: 20px;
	filter: drop-shadow(3px 3px 4px gray);
	padding: 10px;
	border-radius: 10px;
	margin: 20px 0px;
}

.price {
	width: 80px;
	margin: 10px 0px;
}

.allprice {
	width: 80px;
	margin: 20px;
	font-family: 'BarlowCondensed-Bold';
}

.amazon {
	display: flex;
	filter: drop-shadow(3px 3px 4px gray);
	background-color: #fff;
	border-radius: 15px;
	margin: 30px 0px;
	padding: 20px 20px 40px 20px;
	height: 270px;
	align-items: center;
}

.amazon img {
	max-height: 250px;
}

.amazon dt {
	line-height: 2;
}

a.cart.button {
	background-color: #a0b9ff;
	color: #fff;
	text-decoration: none;
	padding: 10px 40px;
	font-family: 'BarlowCondensed-Bold';
	border-radius: 10px;
	font-size: 18px;
}

a.cart.button:hover {
	background-color: #7591E0;
}

.facts {
	margin-bottom: 25px;
}

.pages {
	display: flex;
}

#ProductListNavi {
	padding: 0px 5px;
}

#pic-src ul {
	list-style: none;
}

.ContentImprint dt {
	line-height: 2;
	font-family: 'BarlowCondensed-Bold';
}

.ContentImprint h2 {
	margin: 20px 0px 10px 0px;
}

.ContentImprint dd {
	line-height: 2;
}

.pic img {
	max-width: 100%;
}

.product {
	display: flex;
}


.description li {
	list-style: none;
}

.data {
	width: 70%;
	padding-left: 40px;
}

.facts dt, .category {
	line-height: 2;
	font-family: 'BarlowCondensed-Bold';
}

.facts dd {
	line-height: 2;
}

.rating li {
	line-height: 2;
	list-style: none;
}

.headl {
	font-family: 'BarlowCondensed-Bold';
	margin: 30px 0px 10px 0px;
}

.choices div:nth-last-child(1) {
	margin-left: 20px;
}

#menge input {
	border: solid 2px #a0b9ff;
	padding: 10px;
	margin: 20px 0px;
	width: 50px;
	border-radius: 10px;
	color: #4e5d80;
	font-family: 'BarlowCondensed-Bold';
}

.price-product {
	font-family: 'BarlowCondensed-Bold';
	font-size: 25px;
}

.controls {
	margin-bottom: 30px;
}

.col-xs-12 {
	line-height: 2;
}

#cart fieldset {
	border: none;
	margin-bottom: 10px;
}

#cart label {
	display: block;
	margin: 20px 0px 10px 0px;
}

#cart input {
	border: none;
	filter: drop-shadow(3px 3px 4px gray);
	padding: 10px;
	border-radius: 10px;
	width: 50%;
	font-family: 'BarlowCondensed-Regular';
}

#cart select {
	border: none;
	filter: drop-shadow(3px 3px 4px gray);
	padding: 10px;
	border-radius: 10px;
	width: 30%;
	font-family: 'BarlowCondensed-Regular';
}

.box h2 {
	margin-top: 40px;
}

.pwvergessen {
	text-decoration: none;
	color: #a0b9ff;
}

#payment li {
	list-style: none;
	line-height: 1.5;
}

.fieldset textarea {
    border: none;
    background-color: #fff;
    padding: 20px;
    width: 40%;
    height: 100px;
    border-radius: 10px;
    filter: drop-shadow(3px 3px 4px gray);
    margin-top: 10px;
    font-family: 'BarlowCondensed-Regular';
    font-size: 15px;
}

.agb>p>input {
	width: 20px !important;
	filter: none;
	margin-top: 10px;
}

.stan-controls {
	display: flex;
}

.stan-controls li {
	background-color: #a0b9ff;
	list-style: none;
	padding: 10px 20px;
	margin-bottom: 20px;
}

.stan-controls a {
	color: #fff;
	text-decoration: none;
	padding: 10px;
}

.stan-controls li:nth-of-type(1) {
	border-top-left-radius: 13px;
	border-bottom-left-radius: 13px;
}

.stan-controls li:nth-of-type(3) {
	border-top-right-radius: 13px;
	border-bottom-right-radius: 13px;
}

.orders {
	width: 60%;
	border-spacing: 0px 10px !important;
}

.orders tr {
	background-color: #fff;
	filter: drop-shadow(3px 3px 4px gray);
}

.orders td:nth-of-type(1) {
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	padding: 0px 10px;
}

.last>a {
	background-color: #a0b9ff;
	color: #fff;
	text-decoration: none;
	padding: 10px 30px;
	border-radius: 13px;
}

.orders td:nth-of-type(3) {
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	text-align: center;
}

.orders tr:nth-of-type(1) {
	background: none;
	filter: none;
}

.prod>.right>.name {
	width: 200px;
}

#ProductListNavi a.active {
    font-family: 'BarlowCondensed-Bold';
}
#ProductListNavi a {
    color: #fff;
    text-decoration: none;
    background-color: #a0b9ff;
    width: 10px !important;
    height: 10px;
    padding: 10px;
    border-radius: 10px;
}

.input-error {
	border: solid 1.5px red !important;
}

.prval {
    margin-bottom: 20px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-family: 'BarlowCondensed-Bold';
}

.error-box li {
    list-style: none;
}
.error-box {
    background-color: #fff;
    width: 30%;
    margin: auto;
    border-radius: 15px;
    padding: 30px 0px;
    filter: drop-shadow(3px 3px 4px #808080);
    margin-top: 50px;
    position: fixed;
    z-index: 99;
    left: 50%;
    margin-left: -15%;
    top: 200px;
    text-align: center;
    font-family: 'BarlowCondensed-Bold';
    line-height: 1.5;
    font-size: 20px;
	color: #4e5d80;
}

.group:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
}

#LoginForm .next, #ContactForm .next{
	float: none;
}

.orders td a {
    color: #a0b9ff;
}

.orders .last a {
    color: #fff;
}

#cart .prod .pic img {
	max-height: 200px;
	width: fit-content;
}

#cart .prod .pic img {
    max-height: 200px;
    width: fit-content;
}

#cart .image {
    text-align: center;
}

.pw-vergessen-form .next {
    float: none;
    margin: 0 !important;
}

button {
	cursor: pointer;
}

.pw-aendern-form .next {
    float: none;
}

.stan-controls li.active {
    font-family: 'BarlowCondensed-Bold';
}

.stan-controls li:hover {
    cursor: pointer;
    color: #4e5d80;
}
.stan-controls li {
    color: #fff;
    border-radius: 20px !important;
    margin-right: 20px;
    margin-bottom: 0;
}

.cart-abschluss {
    width: 40%;
    text-align: center;
    margin: auto;
}

.choices label {
    display: block;
}

.beschreibung h2 {
    font-size: 16px;
}

.description li {
    margin: 0 !important;
    font-size: 20px;
    font-family: 'BarlowCondensed-Bold';
}

#wkhint {
    box-sizing: border-box;
    top: 100px;
    width: 50%;
    position: fixed;
    z-index: 9999 !important;
    background-color: #fff;
    text-align: center;
    filter: drop-shadow(3px 3px 4px gray);
    left: 50%;
    margin-left: -25%;
    padding: 30px 30px 0px 30px;
    border-radius: 15px;
}

#cart .prod .pic {
    width: 15%;
}

#cart .prod .right {
    width: 70%;
}
