/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 @import '../../admin/vendor/foundation/css/foundation.css';

*,*:focus,*:hover{
    outline:none;
}

ul,
li,
ul ul {
	list-style-type: none;
	padding:0;
	margin:0;
}

:focus {
   outline-color: transparent;
}

#wpadminbar {
	display: none;
}

.cell {
	position: relative;
}

/* hide the add to cart buttons on the product page 
.single-product div.product form.cart {
 	display:none;
}*/

.woodmart-sticky-btn-cart .price,
.woodmart-sticky-btn-cart .cart {
	display: none !important;
}

/* frontend styles */

.dark {
	color:#fcfcfc;
}

.light {
	color:#222222;
}

.epc-button {
	display: block;
	position: relative;
	width: auto;
	padding:10px 25px;
	background:#ccc;
	text-align: center;
	cursor: pointer;
	transition: all .2s ease;
}

.epc-button:hover {
	background: #c0c0c0;
}

.epc-configurator-modal-wrapper {
	background: rgba(0,0,0,.75);
	position: fixed;
	width:100vw;
	height: 100vh;
	z-index: 9999;
	top:0;
	left:0;
	bottom:0;
	right:0;
}

.epc-configurator-modal-content {
	background:#ffffff;
	/*width:calc(100% - 80px);*/
	width:100%;
	/*max-width:1280px;*/
	/*height:calc(100vh - 80px);*/
	height:100vh;
	/*border-radius:25px;*/
	position: relative;
	margin:0 auto;
	/*top:100px;*/
	/*padding: 40px;*/
	overflow-y: scroll;
	overflow-x:hidden;
}

.epc-configurator-wrapper .button {
	display: inline-flex;
	flex:1;
	border: 2px solid rgba(255,255,255,0);
}

.epc-configurator-wrapper .button.selected {
	border: 2px solid #333333;
}

.show {
	display: inline-block !important;
}

.hide {
	display: none !important;
}

.epc-desktop {
	display: block;
}

.epc-tablet {
	display: none;
}

.epc-mobile {
	display: none;
}

.epc-configurator-wrapper {
	width:100%;
	height: 100vh;
	background: #f0f0f0;
	color:#3a3a3a !important;
}

.epc-image-wrapper {
	position: relative;
	width:100%;
	max-width: 1000px;
	margin:0 auto;
	display: block;
}

.epc-image-wrapper img {
	position: absolute;
	height:100vh;
}

.epc-choice-wrapper {
	position: relative;
	background:#fff;
	width:100%;
	height:100vh;
	padding: 40px;
	overflow-y: scroll; 
}

.epc-choice-wrapper::-webkit-scrollbar-thumb,
.epc-choice-wrapper::-webkit-scrollbar-thumb {
	background-color: #c9c9c9;
	border: 5px solid transparent;
	border-radius: 8px;
	background-clip: padding-box; 
}

.epc-choice-wrapper::-webkit-scrollbar,
.epc-choice-wrapper::-webkit-scrollbar {
  	width: 16px;
}

.epc-choice-wrapper h2 {
	font-weight:bold;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.epc-choice-wrapper .epc-subline {
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
	margin-bottom:40px;
}

.epc-choice-wrapper .epc-description {
	color:#b0b0b0;
	font-size: 16px;
	margin-bottom:40px;
}

.epc-choice-wrapper .epc-choices {
	margin-bottom:50px;
}

.epc-choice-wrapper .epc-choices .epc-layers-item {
	margin-bottom: 60px;
}

.epc-choice-wrapper .epc-choices .epc-layers-item .epc-options-list {
	
}

.epc-choice-wrapper .epc-choices .epc-options-item {
	display: block;
    width: 100%;
    min-height:50px;
}

.epc-choice-wrapper .epc-choices .epc-option-color-field {
	width: 30px;
    height: 30px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 15px;
    margin-right: 18px;
    border: 2px solid #ffffff;
    display: flex;
    text-align: center;
    padding: 7px 10px;
    font-size: 9px;
    text-transform: uppercase;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    float:left;
}

.epc-choice-wrapper .epc-choices .epc-option-color-field.selected {
	border: 2px solid #333333;
}

.epc-choice-wrapper .epc-add-to-cart-wrapper {
	position: relative;
	bottom: 0;
	height:50px;
}

.epc-choice-wrapper .epc-add-to-cart-wrapper .epc-price,
.epc-choice-wrapper .epc-add-to-cart-wrapper .epc-add-to-cart {
	width:50%;
	position: absolute;
}

.epc-choice-wrapper .epc-add-to-cart-wrapper .epc-price {
	left:0;
	font-size:30px;
	font-weight: bold;
	text-align: center;
}

.epc-choice-wrapper .epc-add-to-cart-wrapper .epc-add-to-cart {
	right: 0;
}

.epc-choice-wrapper .epc-add-to-cart-wrapper .epc-add-to-cart .button-cart {
	width:200px;
	height:50px;
	padding:10px 20px;
}

.button {
	background: #ccc;
	color: #2a2a2a;
	font-weight: bold;
}

.button.extra-price,
.button.no-extra-price {
	background:#f0f0f0;
	color:#2a2a2a;
	margin-right: 20px;
	margin-top:20px;
	border-radius:50px;
	position: relative;
}

.close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 25px;
	height: 25px;
	opacity: 0.3;
	z-index: 100;
}

.close:hover {
	opacity: 1;
}

.close:before, .close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 26px;
	width: 1px;
	background-color: #2a2a2a;
}

.close:before {
	transform: rotate(45deg);
}

.close:after {
	transform: rotate(-45deg);
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.slick-slider .slick-list {
	overflow:visible;
}

@media only screen and (min-width:1024px){
	.epc-option-slider-button-wrapper {
		display: inline-flex;
	}

	.button.extra-price, .button.no-extra-price {
		min-width:200px;
		min-height: 65px;
	}

	.halsumfang {
		margin-top:30px;
	}
}

@media only screen and (max-width: 768px) {
	.epc-image-wrapper {
		height:50vh;
	}

	.epc-image-wrapper img {
		height:auto;
	}

	.epc-choice-wrapper {
		padding: 20px 0;
		height:50vh;
	}

	.epc-choice-wrapper h2 {
		text-align: center;
	}

	.epc-choice-wrapper .epc-subline {
		text-transform: uppercase;
		font-size: 14px;
		text-align: center;
	}

	.epc-choice-wrapper .epc-description {
		display:none;
	}

	.epc-choice-wrapper .epc-choices {
		overflow-y: scroll;
		margin:0;
	}

	.epc-choice-wrapper .epc-choices .epc-layers-item {
		text-align: center;
	}

	.epc-choice-wrapper .epc-add-to-cart-wrapper {
		/*height:0;*/
	}

	.epc-choice-wrapper .epc-add-to-cart-wrapper .epc-price {
		margin:0 auto;
		padding:7px;
		left:0;
		right:0;
		font-size: 12px;
		font-weight: bold;
		text-align: center;
		top:20px;
		width:25%;
		background:#ccc;
		border-radius: 50px;
		color:#2a2a2a;
		position: fixed;
	}

	.epc-choice-wrapper .epc-add-to-cart-wrapper .epc-add-to-cart {
		width:100%;
		right: 0;
		bottom:0;
		height:82px;
		position: fixed;
		background:#fff;
		text-align: center;
		-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
		-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
		box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	}

	.button.button-cart {
		position: fixed;
		left:20px;
		right: 20px;
		bottom:20px;
	}
}

@media only screen and (max-width: 1024px) {
	.epc-configurator-wrapper strong {
		font-size:20px;
	}

	.epc-choice-wrapper .epc-add-to-cart-wrapper .epc-add-to-cart .button-cart {
		width:90%;
		height:45px;
		margin:0 auto;
	}

	.button.extra-price,
	.button.no-extra-price {
		width:90%;
	}
}

@media only screen and (max-height: 640px) {
	.epc-image-wrapper img {
		height:55vh;
		margin: 0 auto;
	    left: 0;
	    right: 0;
	}
}

@media only screen and (max-width: 768px) and (max-height: 1024px) {
	.epc-image-wrapper img {
		height:55vh;
		margin: 0 auto;
	    left: 0;
	    right: 0;
	}
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
	.epc-choice-wrapper h2 {
		font-size:24px;
	}
}

@media only screen and (max-width: 360px) {

	.epc-image-wrapper {
		height:40vh;
	}

	.epc-image-wrapper img {
		height:40vh;
	}
}

/* CSS LOADER ANIMATION */

@-webkit-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loading-spinner {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate-forever;
  -moz-animation-name: rotate-forever;
  animation-name: rotate-forever;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
  height: 20px;
  width: 20px;
  border: 2px solid #ffffff;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  margin: -10px 0 -10px -10px;
}