@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900|Rubik:300,400,500,700,900');

ul
{
	list-style: none;
	margin-bottom: 0px;
}

.button
{
	display: inline-block;
	background: #0e8ce4;
	border-radius: 5px;
	height: 48px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.button a
{
	display: block;
	font-size: 18px;
	font-weight: 400;
	line-height: 48px;
	color: #FFFFFF;
	padding-left: 35px;
	padding-right: 35px;
}

.button:hover
{
	opacity: 0.8;
}

.parallax-window
{
    min-height: 400px;
    background: transparent;
}

.card-container {
	border: solid 1px #e8e8e8;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
	padding: 5px 15px;
}

.cart-section
{
	width: 100%;
	padding-top: 93px;
	padding-bottom: 111px;
}

.cart-title
{
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 44px;
}

.cart-item
{
	width: 100%;
	padding: 15px;
	padding-right: 46px;
}

.cart-item-image
{
	width: 133px;
	height: 133px;
	float: left;
}

.cart-item-image img
{
	max-width: 115px;
	object-fit: cover;
    height: 100%;
}

.cart-item-info
{
	width: calc(100% - 133px);
	float: left;
	padding-top: 18px;
	display: flex!important;
    flex-direction: row!important;
    justify-content: space-between!important;
}

.cart-item-name
{
	margin-left: 7.53%;
}

.cart-item-title
{
	font-size: 14px;
	font-weight: 400;
	color: rgba(0,0,0,0.5);
}

.cart-item-text
{
	font-size: 18px;
	margin-top: 35px;
}

.cart-item-text span
{
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 11px;
	-webkit-transform: translateY(4px);
	-moz-transform: translateY(4px);
	-ms-transform: translateY(4px);
	-o-transform: translateY(4px);
	transform: translateY(4px);
}

.cart-item-price
{
	text-align: right;
}

.cart-item-total
{
	text-align: right;
}

.order-total
{
	width: 100%;
	height: 60px;
	margin-top: 30px;
	border: solid 1px #e8e8e8;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
	padding-right: 46px;
	padding-left: 15px;
}

.order-total-title
{
	display: inline-block;
	font-size: 14px;
	color: rgba(0,0,0,0.5);
	line-height: 60px;
}

.order-total-amount
{
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	margin-left: 26px;
	line-height: 60px;
}

.cart-buttons
{
	text-align: right;
}

.cart-container {
	padding-top: 75px;
}

.cart-button-clear
{
	display: inline-block;
    border: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    color: rgba(0,0,0,0.5);
    background: #FFFFFF;
    border: solid 1px #b2b2b2;
    padding-left: 35px;
    padding-right: 35px;
    outline: none;
    cursor: pointer;
    margin-right: 26px;
}

.cart-button-clear:hover
{
	border-color: #0e8ce4;
	color: #0e8ce4;
}

.cart-button-checkout
{
	display: inline-block;
    border: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    color: #FFFFFF;
    padding-left: 35px;
    padding-right: 35px;
    outline: none;
    cursor: pointer;
    vertical-align: top;
}

.cart-remove-button {
	height: 30px;
	width: 30px;
	background: white;
    border: 1px solid lightgray;
    color: darkred;
}

.product-quantity
{
	width: 122px;
	height: 40px;
	border: solid 1px #e5e5e5;
	border-radius: 5px;
	overflow: hidden;
	padding-left: 25px;
	float: left;
	margin-right: 30px;
}

.product-quantity span
{
	display: block;
	height: 40px;
	font-size: 16px;
	font-weight: 300;
	color: rgba(0,0,0,0.5);
	line-height: 50px;
	float: left;
}

.product-quantity input
{
	display: block;
	/* width: 30px; */
	height: 40px;
	border: none;
	outline: none;
	font-size: 16px;
	font-weight: 300;
	color: rgba(0,0,0,0.5);
	text-align: left;
	padding-left: 9px;
	line-height: 40px;
	float: left;
}

.quantity-buttons
{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 29px;
	border-left: solid 1px #e5e5e5;
}

.quantity-inc, 
.quantity-dec
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 50%;
	cursor: pointer;
}

.quantity-control i
{
	font-size: 11px;
	color: rgba(0,0,0,0.3);
	pointer-events: none;
}

.quantity-control:active
{
	border: solid 1px rgba(14, 140, 228, 0.2);
}

.quantity-inc
{
	padding-bottom: 2px;
	justify-content: flex-end;
	border-top-right-radius: 5px;
}

.quantity-dec
{
	padding-top: 2px;
	justify-content: flex-start;
	border-bottom-right-radius: 5px;
}

.shipping-container {
	border-top: solid 1px #e8e8e8;
	width: 100%;
	padding: 20px 30px;
	margin-top: 25px;
}

.shipping-row {
	margin: 10px 0;
	width: 100%;
	padding: 0;
	display: table;
}


.col2 {
	display: table;
	width: 47%;
	float: left;
}
  
.col2:nth-child(2) {
	float: right;
	display: table;
}

header {
	color: #333;
	font-size: 1.7em;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.area {
	color:#333;
	width: 100%;
	margin: 40px 0;
}

.shipping-label {
	line-height: 35px;
	display: table-header-group;
	font-size: 1.05em;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
  }
  
  .shipping-input {
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
    border: solid 1px #e5e5e5;
	border-radius: 5px;
	background: transparent;
	color: #333;
	display: table-row-group;
	transition: all 0.3s ease;
	font-size: 1.05em;
  }
  
  .shipping-input:focus {
	outline: none !important;
	border-color: #3c70b7;
  }
  
  .shipping-input:focus + label {
	color: #3c70b7;
  }

  .ckeckarea input[type="checkbox"] {
	display: none;
  }
  
  .ckeckarea label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 30px;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
	font-weight: normal;
  }
  
  .ckeckarea label::before,
  .ckeckarea label::after {
	position: absolute;
	content: '';
	-webkit-transition: all .2s;
	transition: all .2s;
  }
  
  .ckeckarea label::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: transparent;
	border-radius: 3px;
  }
  
  .ckeckarea label::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #69B692;
	border-bottom: 2px solid #69B692;
	-webkit-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
  }
  
  .ckeckarea label:hover::before {
	border-color: #3c70b7;
  }

  .ckeckarea label:before {
    border: solid 1px #333;
  }
  
  .ckeckarea input[type="checkbox"]:checked + label::before {
	border: 1px solid #3c70b7;
  }
  
  .ckeckarea input[type="checkbox"]:checked + label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
  }
  
  .ckeckarea input[type="checkbox"]:checked ~ label {
	color: #69B692;
  }

  .rules-container {
	  margin-top: 25px;
	  text-align: right;
  }
  
.rule-text {
	display: block;
	position: relative;
	padding-left: 14px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: left;
	border: solid 1px #e8e8e8;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
    text-align: left;
    padding: 25px;
}

.rule-text input {
	position: absolute;
  	opacity: 0;
 	cursor: pointer;
  	height: 0;
  	width: 0;
}

.checkmark {
    height: 17px;
    display: inline-block;
    width: 17px;
	background-color: #eee;
	margin-right: 10px;
}

.rule-text:hover input ~ .checkmark {
	background-color: #ccc;
}

.rule-text input:checked ~ .checkmark {
	background-color: #2196F3;
}

.checkmark:after {
	content: "";
	display: none;
}

.rule-text input:checked ~ .checkmark:after {
	display: block;
}

.rule-text .checkmark:after {
	left: 5px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 6px;
	margin-top: 1px;
}

.warning-text {
	padding: 15px;
    text-align: right;
    background: #f2f2f2;
}

.stripe-checkout {
	display: inline-block;
    border: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    color: #FFFFFF;
    padding-left: 35px;
    padding-right: 35px;
    outline: none;
    cursor: pointer;
	vertical-align: top;
	margin: 5px 10px 10px;
	background: #3c70b7;
}

.loader {
	width: 180px;
    text-align: center;
  }
  
  .loader-wheel {
	animation: spin 1s infinite linear;
	border: 2px solid #3c70b7;
	border-left: 4px solid #3c70b7;
	border-radius: 50%;
	height: 50px;
	margin-bottom: 10px;
	width: 50px;
	margin: auto;
  }
  
  .loader-text {
	color: #333;
	margin-top: 10px;
	font-family: arial, sans-serif;
  }
  
  .loader-text:after {
	content: 'Loading';
	animation: load 2s linear infinite;
  }
  
  @keyframes spin {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
  
  @keyframes load {
	0% {
	  content: 'Warte auf Bestätigung';
	}
	33% {
	  content: 'Warte auf Bestätigung.';
	}
	67% {
	  content: 'Warte auf Bestätigung..';
	}
	100% {
	  content: 'Warte auf Bestätigung...';
	}
  }


  /* Style the tab */
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: white;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	height: 57px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
	background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
	background-color: #D5D5D5;;
  }
  
  /* Style the tab content */
  .tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
  }

  .tabimage {
	width: 80px;
    max-width: 80px;
  }

  #country::before {
	display: inline-flex;
	content: '';
	width: 21px;
	height: 15px;
	background: url(../img/svg/flags.svg);
	background-position: -1000px -1000px;
	background-repeat: no-repeat;
	margin-right: 10px;
  }

  .country-select {
	width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px !important;
    border: solid 1px #e5e5e5 !important;
    border-radius: 5px !important;
    background: transparent !important;
    color: #333 !important;
    display: inline-flex !important;
    transition: all 0.3s ease !important;
    font-size: 1.05em !important;
    font-weight: 400 !important;
  }

  #country.AT::before {
	background-position: -165px -10px;
  }

  #country.DE::before {
	background-position: -165px -35px;
  }

  #country.IT::before {
	background-position: -72px -85px;
  }

  .visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .element-errors {
    display: none;
    padding-left: 20px;
    color: #e25950;
    opacity: 0;
    transform: translateY(10px);
    transition-property: opacity, transform;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    background: url(../img/svg/error.svg) center left no-repeat;
	background-size: 15px 15px;
	width: 100%;
    margin-left: 15px;
}
  