#add-to-cart-format-popup {
	visibility:hidden;
	opacity:0;
	position:relative;
  	transition: 0.3s linear;
	transition-property: opacity, visibility;
}

#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;
  	transition: width 0.3s linear;
	transition-property: width, height, margin;
}

#add-to-cart-format-popup > .content > div {
	background-color:#fff;
	width:300px;
	min-height:150px;
	border-radius:3px;
	padding:20px;
	background-position:center center;
	background-repeat:no-repeat;
  	transition: width 0.3s linear;
}

#add-to-cart-format-popup.active:not(.ready) > .content > div  { 
	background-image:url(/site/media/images/loader-small-black.gif);
}

#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;
  	transition: opacity 0.3s linear;
}

#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;	
}



/*
* styling the checkbox animation
*/

.review-succes .icon {
    border: 4px solid #808080;
    border-radius: 50%;
    box-sizing: content-box;
    height: 80px;
    margin: 20px auto 30px auto;
    padding: 0;
    position: relative;
    width: 80px;
}

.review-succes .icon.success {
    border-color: #a5dc86;
	display:block;
}

.review-succes .icon.success::before, 
.review-succes .icon.success::after {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    content: "";
    height: 120px;
    position: absolute;
    transform: rotate(45deg);
    width: 60px;
}

.review-succes .icon.success::before {
    border-radius: 120px 0 0 120px;
    left: -33px;
    top: -7px;
    transform: rotate(-45deg);
    transform-origin: 60px 60px 0;
}

.review-succes .icon.success::after {
    border-radius: 0 120px 120px 0;
    left: 30px;
    top: -11px;
    transform: rotate(-45deg);
    transform-origin: 0 60px 0;
}

.icon.success.animate::after {
    animation: 4.25s ease-in 0s normal none 1 running rotatePlaceholder;
}

.review-succes .icon.success .placeholder {
    border: 4px solid rgba(165, 220, 134, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
    height: 80px;
    left: -4px;
    position: absolute;
    top: -4px;
    width: 80px;
    z-index: 2;
}

.review-succes .icon.success .fix {
    background-color: #fff;
    height: 90px;
    left: 28px;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 8px;
    z-index: 1;
}

.review-succes .icon.success .line {
    background-color: #a5dc86;
    border-radius: 2px;
    display: block;
    height: 5px;
    position: absolute;
    z-index: 2;
}

.review-succes .icon.success .line.tip {
    left: 14px;
    top: 46px;
    transform: rotate(45deg);
    width: 25px;
}

.review-succes .icon.success .line.long {
    right: 8px;
    top: 38px;
    transform: rotate(-45deg);
    width: 47px;
}

.review-success-tip {
    animation: 0.75s ease 0s normal none 1 running animate-success-tip;
}

.review-success-long {
    animation: 0.75s ease 0s normal none 1 running animate-success-long;
}

.review-succes .icon.success.animate::after {
    animation: 4.25s ease-in 0s normal none 1 running rotatePlaceholder;
}	


.review-succes-shadow {
	background:rgba(0,0,0,0.7);
	position:fixed;
	z-index:50000;
	top:0;
	left:0;
	right:0;
	bottom:0;
}

.review-succes {
	background-color:#fff;
	position:fixed;
	z-index:50001;
	border-radius:5px;
	top:100px;
	padding:20px;
	width:700px;
	left:50%;
	margin-left:-400px;
}

.review-succes > .text {  
	margin:0 auto;
	width:80%;
	color:#575757;
}

.review-succes > .close-button {  
	float:right;
	padding:6px 15px;
	margin-top:30px;
	border-radius:3px;
	background-color:#198EC7;
	color:#fff;
	cursor:pointer;
}

.review-succes > .close-button:hover {
	background-color:#39A7DC;
}

.catalogus-favorite-login-popup {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
}
.catalogus-favorite-login-popup .content {
	background-color: #ffffff;
	text-align: center;
	position: relative;
	padding: 30px;
}
.catalogus-favorite-login-popup .content button {
	color: #ffffff;
	padding: 2px;
	margin: 0;
	position: absolute;
	bottom: calc(100% + 10px);
	right: 0;
	background: none;
	border: none;
	line-height: 20px;
	font-size: 14px;
	outline: none;
}
.catalogus-favorite-login-popup .content button::after {
	content: "\f00d";
	font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	vertical-align: middle;
	margin-left: 5px;
	font-size: 20px;
	transform: rotate(0deg);
	transition: transform 300ms;
	display: inline-block;
}
.catalogus-favorite-login-popup .content button:hover::after {
	transform: rotate(180deg);
}
.catalogus-favorite-login-popup .content a[rel="button"] {
	background-color: #747574;
	padding: 10px 20px;
	transition: background-color 0.2s ease-in-out;
	margin-top: 30px;
	display: inline-block;
}
.catalogus-favorite-login-popup .content a[rel="button"]:focus {
	background-color: #525252;
	color: #cccccc;
}
.catalogus-favorite-login-popup .content a[rel="button"]:hover {
	background-color: #525252;
}

@keyframes animate-success-tip {
	0% {
		left: 1px;
		top: 19px;
		width: 0;
	}
	54% {
		left: 1px;
		top: 19px;
		width: 0;
	}
	70% {
		left: -8px;
		top: 37px;
		width: 50px;
	}
	84% {
		left: 21px;
		top: 48px;
		width: 17px;
	}
	100% {
		left: 14px;
		top: 45px;
		width: 25px;
	}
}

@keyframes animate-success-long {
	0% {
		right: 46px;
		top: 54px;
		width: 0;
	}
	65% {
		right: 46px;
		top: 54px;
		width: 0;
	}
	84% {
		right: 0;
		top: 35px;
		width: 55px;
	}
	100% {
		right: 8px;
		top: 38px;
		width: 47px;
	}
}

@keyframes rotatePlaceholder {
	0% {
		transform: rotate(-45deg);
	}
	5% {
		transform: rotate(-45deg);
	}
	12% {
		transform: rotate(-405deg);
	}
	100% {
		transform: rotate(-405deg);
	}
}


/* A */
@media (max-width: 1024px)
{
}

/* B*/
@media (max-width: 991px)
{
}

/* C */
@media (max-width: 767px)
{
}

/* D */
@media (max-width: 479px)
{
}
