
#cart-sidebar {
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	width:400px;
	overflow-x:hidden;
	overflow-y:auto;
	z-index:999;
	background-color:#fff;
	font-size:14px;
	visibility:hidden;
	right:-410px;
	
	-webkit-transition: all 0.2s ease-in-out;
  	-moz-transition: all 0.2s ease-in-out;
  	-o-transition: all 0.2s ease-in-out;
  	transition: all 0.2s ease-in-out;
  
	-webkit-box-shadow: -3px 0px 10px 0px rgba(50, 50, 50, 0.25);
	-moz-box-shadow:    -3px 0px 10px 0px rgba(50, 50, 50, 0.25);
	box-shadow:         -3px 0px 10px 0px rgba(50, 50, 50, 0.25);	
}

#cart-sidebar.active {
	right:0;
	visibility:visible;
}

#cart-sidebar > .messages {
	padding:10px;
	display:none;
}

#cart-sidebar > .messages.active {
	display:block;
}	

#cart-sidebar > .messages > div {
	display:none;	
	padding:15px;
}

#cart-sidebar > .messages > div.active {
	display:block;	
}

#cart-sidebar > .messages > .error {
	background-color:#fcf4f2;
	color:#a51b00;
	border:solid 1px #f9c9bf;
	border-left:5px solid #a51b00;
}

#cart-sidebar > .messages > .success {
	background-color:#f3faef;
	color:#325e1c;
	border:solid 1px #c9e1bd;
	border-left:5px solid #77b259;
}

#cart-sidebar > .top {
	padding:20px 15px;
	border-bottom:solid 1px #e0e0e0;
}

#cart-sidebar > .top > .close {
	display:inline-block;	
	cursor:pointer;	
	padding-right:10px;
}

#cart-sidebar > .top > .close:hover > i {
	color:#413F3F;
}

#cart-sidebar > .top > .close > i {
	font-size:20px;
}

#cart-sidebar > .top > .title {
	font-weight:bold;
	display:inline-block;	
	font-size:16px;
}


#cart-sidebar > .items {
	
}

#cart-sidebar > .items > .no-items {
	text-align:center;
	color:#555555;
	padding:50px 20px;
}

#cart-sidebar > .items > .no-items > a{
	color:#fff;
	border-radius:3px;
	background-color:#47b222;
	display:block;
	text-align:center;
	padding:7px;
	margin-top:30px;
}
	

#cart-sidebar > .items > .item {
	border-bottom:dashed 1px #ebebeb;
	position:relative;
}

#cart-sidebar > .items > .item > .left {
	float:left;
	padding:10px;
	width:25%;
}

#cart-sidebar > .items > .item > .left > .image {
	width:75px;
	height:75px;
	max-width: 100%;
}

#cart-sidebar > .items > .item > .left > .image > img {
	
}


#cart-sidebar > .items > .item > .right {
	float:left;
	width:75%;
	padding:10px;
}


#cart-sidebar > .items > .item > .right > .title {
	width:85%;
	display:inline-block;
	font-weight:bold;
}	

#cart-sidebar > .items > .item > .right > .remove {
	width:13%;
	display:inline-block;
	vertical-align:top;
	padding:0 10px 0px 10px;
	text-align:center;
	cursor:pointer;
}	

#cart-sidebar > .items > .item > .right > .formats {
	
}	

#cart-sidebar > .items > .item > .right > .amount {
	
}	

#cart-sidebar > .items > .item > .right > .amount > span.icons {
	padding-left:10px;
}

#cart-sidebar > .items > .item > .right > .amount > span.icons > i {
	cursor:pointer;
	padding-right:3px;
}

#cart-sidebar > .items > .item > .right > .prices {
	
}	

#cart-sidebar > .items > .item > .right > .prices > .price-old {
	text-decoration: line-through;
	display:inline-block;
	padding-right:5px;
	display:none;
}	

#cart-sidebar > .items > .item > .right > .prices > .price {
	font-weight:bold;
	display:inline-block;
}	


#cart-sidebar > .items > .item > .right > .prices > .discount {
	color:#fff;
	background-color:#e73029;
	border-radius:2px;
	display:inline-block;	
	font-size:10px;
	padding:0px 3px;
	line-height:16px;
	display:none;
}



#cart-sidebar > .items > .shipping-cost,
#cart-sidebar > .items > .total-cost  {
	border-bottom:solid 1px #e0e0e0;
	padding:20px 10px;
}

#cart-sidebar > .items > .shipping-cost {
	padding:20px 10px;
}

#cart-sidebar > .items > .total-cost {
	padding:15px 10px;
}

#cart-sidebar > .items > .shipping-cost > .label,
#cart-sidebar > .items > .total-cost > .label  {
	display:inline-block;
	width:50%;
}

#cart-sidebar > .items > .shipping-cost > .label.bold,
#cart-sidebar > .items > .total-cost > .label.bold,
#cart-sidebar > .items > .shipping-cost > .value.bold,
#cart-sidebar > .items > .total-cost > .value.bold  {
	font-weight:bold;
}

#cart-sidebar > .items > .shipping-cost > .value,
#cart-sidebar > .items > .total-cost > .value  {
	display:inline-block;
	width:48%;
	text-align:right;
}
#cart-sidebar > .items > .total-cost > .tax-included {
	font-size:10px;
	text-align:right;	
	font-style:italic;
	color:#848484;
}

#cart-sidebar > .items > .button {
	padding:10px;
}	

#cart-sidebar > .items > .button > a{
	color:#fff;
	border-radius:3px;
	background-color:#47b222;
	display:block;
	font-size:18px;	
	text-align:center;
	padding:10px;
}

#cart-sidebar > .items > .button > a:hover,
#cart-sidebar > .items > .no-items > a:hover {
	background-color:#5FBD3E;	
}


#add-to-cart-format-popup {
	visibility:hidden;
	opacity:0;
	position:relative;
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
  	-o-transition: all 0.3s ease-in-out;
  	transition: all 0.3s ease-in-out;
}

#add-to-cart-format-popup.active {
	opacity:1;
	visibility:visible;
}

#add-to-cart-format-popup > .shadow{
	position:fixed;
	top:0;
	right:0;
	left:0;
	bottom:0;
	background:rgba(0,0,0,0.3);
	z-index:1002;
}

#add-to-cart-format-popup > .content {
	position:fixed;
	z-index:1004;
	top:50%;
	left:50%;
	margin-top:-100px;
	margin-left:-150px;
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
  	-o-transition: all 0.3s ease-in-out;
  	transition: all 0.3s ease-in-out;
}

#add-to-cart-format-popup > .content > div {
	background-color:#fff;
	width:300px;
	min-height:150px;
	border-radius:3px;
	padding:20px;
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
  	-o-transition: all 0.3s ease-in-out;
  	transition: all 0.3s ease-in-out;

}

#add-to-cart-format-popup.active:not(.ready) > .content > div  { 
	background-image:url(/site/media/images/loader-small-black.gif);
	background-position:center center;
	background-repeat:no-repeat;
}

#add-to-cart-format-popup.active.ready > .content {
	margin-left:-225px;	
}
#add-to-cart-format-popup.active.ready > .content > div  { 
	width:450px;
}

#add-to-cart-format-popup > .content > div > .text {
	opacity:0;
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
  	-o-transition: all 0.3s ease-in-out;
  	transition: all 0.3s ease-in-out;
}

#add-to-cart-format-popup.active.ready.show-text > .content > div > .text {
	opacity:1;	
}

#add-to-cart-format-popup > .content > div > .text > .title {
	font-weight:bold;
	font-size:16px;	
	padding-bottom:15px;
}

#add-to-cart-format-popup > .content > div > .text > .option {
	padding-bottom:15px;	
}

#add-to-cart-format-popup > .content > div > .text > .option > span.label {
	display:block;
	padding-bottom:5px;
}

#add-to-cart-format-popup > .content > div > .text > .option > .select{
	position:relative;
}

#add-to-cart-format-popup > .content > div > .text > .buttons {
	
}

#add-to-cart-format-popup > .content > div > .text > .buttons > div:not(.clear) {
	cursor:pointer;
}

#add-to-cart-format-popup > .content > div > .text > .buttons > .close {
	float:left;
	padding:7px 15px 7px 0;
}

#add-to-cart-format-popup > .content > div > .text > .buttons > .add-to-cart {
	width:150px;
    float: right;
    text-align: center;
	
}

#add-to-cart-format-popup > .content > div > .text > .buttons > .add-to-cart > a,
#add-to-cart-format-popup > .content > div > .text > .buttons > .add-to-cart > div.loading {
	padding:7px 15px;
	background-color: #e1e1e1;
	width:100%;
	display:block;
}

#add-to-cart-format-popup > .content > div > .text > .buttons > .add-to-cart > .loading.active ~ a {
    display: none;
}

#add-to-cart-format-popup > .content > div > .text > .buttons > .add-to-cart > div.loading {
	display:none;
}

#add-to-cart-format-popup > .content > div > .text > .buttons > .add-to-cart > div.loading.active {
	display:block;	
}

.article.catalogus.in-het-kort .interpretatie {
	margin-top: 40px;
	clear: both;
}
.article.catalogus.in-het-kort .interpretatie >.title,
.article.catalogus.in-het-kort .faq >.title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}


/* A */
@media (max-device-width:1023px) and (orientation:landscape)
{
	.article.item-catalogus-detail > .margin > .padding > .product-content > .margin > .padding > .article-info > .add-to-cart-wrap,
	.article.item-catalogus-detail > .margin > .padding > .product-content > .margin > .padding > .article-info > .price-wrap{
		width: 100%;
	}
}

/* B*/
@media (max-width: 1000px),(max-device-width:1000px) and (orientation:portrait),(max-device-width:767px) and (orientation:landscape)
{
	.article.item-catalogus-detail > .margin > .padding > .product-content > .margin > .padding > .article-info > .sub-articles-wrap,
	.article.item-catalogus-detail > .margin > .padding > .product-content > .margin > .padding > .article-info > .add-to-cart-wrap,
	.article.item-catalogus-detail > .margin > .padding > .product-content > .margin > .padding > .article-info > .price-wrap {
		width: 100%;
	}
}

/* C */
@media (max-width:767px),(max-device-width:767px) and (orientation:portrait),(max-device-width:499px) and  (orientation:landscape)
{	
	.article.item-catalogus-detail > .margin > .padding > .product-content > .margin > .padding > .article-info > .sub-articles-wrap {
		width: 50%;
	}
	
	.article.item-catalogus-detail > .margin > .padding > .product-content > .margin > .padding > .article-info > .add-to-cart-wrap {
		width: 80%;
	}
	
}

/* D */
@media (max-width:499px),(max-device-width:499px) and (orientation:portrait)
{
	#cart-sidebar {
		width: 350px;
	}
	
	#cart-sidebar > .items > .item > .left {
		width: 20%;
	}
	
	#cart-sidebar > .items > .item > .right {
		width: 80%;
	}
	
	#add-to-cart-format-popup.active.ready > .content > div {
		width: 350px;
	}
	
	#add-to-cart-format-popup.active.ready > .content {
		margin-left: -175px;
	}
	
	#cart-sidebar > .items > .button > a {
		font-size: 15px;
	}
	
	.article.item-catalogus-detail > .margin > .padding > .product-content > .margin > .padding > .article-info > .add-to-cart-wrap,
	.article.item-catalogus-detail > .margin > .padding > .product-content > .margin > .padding > .article-info > .sub-articles-wrap {
		width: 100%;
	}

}


/* D small iphones */
@media (max-width:410px),(max-device-width:410px) and (orientation:portrait)
{
	#cart-sidebar {
		width: 275px;
	}
	
	#cart-sidebar > .items > .item > .left {
		width: 25%;
	}
	
	#cart-sidebar > .items > .item > .right {
		width: 75%;
	}
	
	#add-to-cart-format-popup.active.ready > .content {
		margin-left: -150px;
	}
	
	#add-to-cart-format-popup.active.ready > .content > div {
		width: 300px;
	}
	
	#cart-sidebar > .items > .item > .right > .title {
		width: 80%;
	}
	
	#cart-sidebar > .items > .item > .right > .remove {
		width: 17%;
	}
}


