#menu-cart{
  width: 30px;
  height: 30px;
  transition: 0.2s;
  display: inline-block;
  padding: 0;
}

.bigger{
  background-size: 50px 50px !important;
  width: 50px !important;
  height: 50px !important;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.confirmation-text{
  display: inline;
}
.confirmation-animation{
  display: inline;
}

.simple-product{
  display: flex;
  align-items: center;
  padding: 5px;
  border: 1px solid #eeeeee;
  overflow: hidden;  
}
@media (max-width : 530px) {
  .simple-product{
    flex-direction: column;
  }   
}

.sp-info{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex-grow: 1;
}

.simple-product .sp-image{
  cursor: zoom-in;
  transition: 0.3s;
  margin-right: 10px;
  min-width: 150px;
  height: 150px;
}

.simple-product .sp-title{
  font-weight: bold;
  width: 100%;
}



.simple-product a:hover{
  cursor: pointer;
}

.sp-quantity-cart{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}


.simple-product .sp-quantity{
  width: calc(100% - 40px);
}

.simple-product .sp-quantity-cart a{
  width: 30px;
  height: 30px;
  background-image: url('img/cart_icon_add.svg');
  background-size: 30px 30px;
  flex-shrink: 0;
  display: block;
  margin-left: 10px;
}

.sp-price{
  font-weight: bold; 
}

.sp-no-display{
  display: none;
}

.sp-spec-line-name, .sp-spec-line-value{
  display: inline-block;
}

.sp-specs-title{
  font-weight: bold;
}

.simple-product .sp-image:hover{
  opacity: 0.7;  
}


.sp-modal{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.sp-modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}


/* Add Animation - Zoom in the Modal */
.sp-modal-content{
  animation-name: zoom;
  animation-duration: 0.6s;
}


@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}


/* The Close Button */
.sp-modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.sp-modal-close:hover,
.sp-modal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .sp-modal-content {
    width: 100%;
  }
}


.cart-list{
  width: 100%;
}


.cart-list-item .cli-description{
  flex-grow: 1;
  margin-right: 5px;
  text-align: left;
}


.cart-list-item{
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid black;
  padding: 5px;
}

.cart-list-item .cli-2nd-line{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width : 530px) {
  .cart-list-item .cli-2nd-line{
    flex-direction: column;
    align-items: flex-start; 
  }   
}

.cart-list-item .cli-2nd-line .cli-quantity{
  width: 100px;
  margin-right: 50px;
  height: 45px;
  background-color: transparent;
}

.coupon-item{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 5px;
}

.cli-delete{
  margin-right: 50px;
  flex-grow: 1;
  flex-shrink: 0;
}

.cli-price{
  align-self: flex-end;
  flex-shrink: 0;
}

.cli-img{
  width: 100px;
  height: 100px;
  margin-right: 50px;
}

.bottom-line{
  width: 100%;
  border-bottom: 1px solid;
  margin-top: 25px;
}

#checkout-form{
  text-align: right;
  position: relative;
  margin-top: 25px;
}


#checkout-form input, #checkout-form select{
	display: block;
	margin-top: 5px;
	width: 100%;
	color: #000;
	font-weight: normal;
}

#checkout-form select{
  height: 48px;
  font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  border: 0.1rem solid #dcd7ca;
}

#checkout-form button {
  margin-top: 5px;
}

#checkout-form button:hover{
  cursor: pointer;
}

#checkout-form button:disabled{
  cursor: auto;
  opacity: 0.5;
}

#checkout-form button:disabled:active{
  border: 1px solid rgb(187, 187, 187);
}

.total-price{
  font-weight: bold;
}

.vat-included{
  font-size: 12px;
}

.radio-container{
  margin-left: auto;
  display: flex;
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
  width: 200px;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid #EFEFEF;
}

.radio-container input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark{
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #000;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 5px;
}

.radio-container:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color: #000;
}


.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}


/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

#payment-form {
  background-color: #fff;
  width: 600px;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 16px;
  padding-bottom: 16px;
}

#payment-form #card-element{
  width: 100%;
  border: 1px solid #e3e8ee;
  height: 36px;
  padding: 10px;
}


#payment-form #submit{
  color: #fff;
  background-color: rgb(85, 108, 214);
  margin-top: 16px;
  border: 0;
  display: block;
  width: 100%;
}
#payment-form #submit:hover{
  cursor: pointer;
}

.home-link{
  display: block;

}

.coupon{
  display: flex;
  margin-top: 25px;
  align-content: center;
  border: 1px solid #000;
}

@media (max-width : 530px) {
  .coupon{
    flex-direction: column;
    align-items: flex-end;
  }
}



.coupon #txt-coupon-code, .coupon .btn-coupon{
  margin: 10px;
  width: auto;
}

.btn-coupon{
  width: 200px;
  vertical-align: middle;
}

.coupon-item{
  font-weight: bold;
}

.coupon-item .coupon-description, .coupon-item .coupon-amount{
  display: inline-block;
}

.coupon-item .coupon-description{
  margin-right: 50px;
}

.checkout-bc{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

#error-result-msg{
  color: red;
}

#s-countries{
  
}

.bc-icon{
  background-image: url('img/BC_logo.png');
  height: 64px;
  width: 91px;
  display: inline-block;
}

.mc-icon{
  background-image: url('img/Mastercard-logo.png');
  width: 78px;
  height: 64px;
  display: inline-block;
}

.visa-icon{
  background-image: url('img/Visa-logo.png');
  width: 78px;
  height: 64px;
  display: inline-block;
}

.id-icon{
  background-image: url('img/iDEAL-logo.png');
  width: 64px;
  height: 64px;
  display: inline-block;
}
