/*
    BASE STYLE SHEET
    Author: Magic Five
*/
body, .content-wrapper {
  overflow-x: hidden;
}
.logo {
	max-height: 30px;
}
.footer-logo {
	max-width: 100px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
main {
  min-height: calc(100vh - 56px - 208px);
} 
.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #444;
  transform: rotate(0deg) translate(0px, 0px);
  transition: ease all .2s;
}

.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 4px;
}

.icon-bar:nth-child(2) {
  /* width: 16px; */
  transition: ease all .2s;
}

.navbar-toggler:hover>.icon-bar:nth-child(2) {
  width: 22px;
  transition: ease all .2s;
}

.navbar-toggler:active>.icon-bar:nth-child(2) {
  width: 22px;
  transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
  transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  transition: ease all .2s;
}

@media only screen and (max-width: 980px) {
	.navbar-toggler {
		display: block;
		padding: 7px;
		float: right;
	  top: 10px;
	  position: relative;
	  right: 10px;
	}
	.navbar-toggler .navbar-toggler-icon {
		width: 20px;
	    height: 2px;
	    background-color: #585858;
	    position: relative;
	    display: block;
	    margin-bottom: 3px;
   	}
	.navbar-toggler .navbar-toggler-icon:last-child {
		margin-bottom: 0;
	}
} 


.search-toggle {
  padding-top: 0.7rem;
}
.search-toggle:before {
  content: '';
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: block;
  border: 2px solid #bfbfbf;
}
.search-toggle:after {
  content: '';
  background-color: #bfbfbf;
  width: 7px;
  height: 2px;
  transform: rotate(45deg);
  display: block;
  position: relative;
  margin-top: -1px;
  margin-left: 11px;
}

.search-wrapper {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 1000;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
  transition: all 0.6s cubic-bezier(0.61, 1, 0.88, 1);
}

.search-wrapper.show {
  top: 0;
}
.search-wrapper a.search-hide {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 15px;
  height: 15px;
}
.search-wrapper a.search-hide:before,
.search-wrapper a.search-hide:after {
  content: '';
  width: 2px;
  height: 15px;
  background-color: #de3a3a;
  position: absolute;
  display: block;
  left: 6px;
}
.search-wrapper a.search-hide:before {
  transform: rotate(45deg);
}
.search-wrapper a.search-hide:after {
  transform: rotate(-45deg);
}
.search-wrapper #search,
.search-wrapper #search:focus {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #eaeaea;
  box-shadow: none;
}
.search-wrapper .search-results {
  width: 50%;
  margin: 0 auto;
  text-align: left;
}
.search-wrapper .search-results ul {
  list-style-type: none;
  padding: 0;
}
.search-wrapper .search-results ul li:first-child {
  padding-top: 10px;
}
.search-wrapper .search-results ul li {
  padding: 5px 0;
}
.search-wrapper .search-results ul li img {
  width: 80px;
  margin-right: 10px;
}
.search-wrapper .search-results ul li.message {
  text-align: center;
  font-size: 12px;
  color: #a2a2a2;
}


.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  margin: 10px auto;
  font-size: 3px;
  position: relative;
  display: inline-flex;
  top: 0;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.1);
  border-right: 1.1em solid rgba(0, 0, 0, 0.1);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.11);
  border-left: 1.1em solid #bdbdbd;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



#cart-message-box,
#fav-message-box {
  position: fixed;
  top: 164px;
  right: 30px;
  z-index: 5000;
  padding: 16px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.4;
  color: #424242;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  width: 260px;
  animation: 
}

.card-message-box-inner {
  position: relative;
}

.cart-message-box-close {
  position: absolute;
  top: -28px;
  right: -22px;
  color: red !important;
}

.cart-message-box-close:hover {
  opacity: 0.7;
}

.cart-message-box-buttons a {
  display: inline-block;
  position: relative;
  padding: 0 30px 0 0;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.4px;
  text-decoration: none !important;
}

.cart-message-box-buttons a:first-of-type {
  margin-right: 1em;
}

.cart-message-box-buttons a:after {
  content: '';
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg fill='%23000000' width='800px' height='800px' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.707,17.707a1,1,0,0,1-1.414-1.414L19.586,13H2a1,1,0,0,1,0-2H19.586L16.293,7.707a1,1,0,0,1,1.414-1.414l5,5a1,1,0,0,1,0,1.414Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  width: 15px;
  height: 20px;
  position: absolute;
  right: 8px;
  top: 0px;
}

.cms-message {
  font-size: 12px;
  color: orangered;
}


/* PRODUCTS */
.product-variations {
  list-style-type: none;
  padding: 0;
  display: flex;
}
.product-variations li {
  display: flex;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #ddd;
  margin-right: .2rem;
}
.product-variations li:last-of-type {
  margin-right: 0;
}
.product-variations li.selected a {
  background-color: #ddd;
}
.product-variations li a {
  padding: .3rem .5rem;
  color: #000;
}
/* PRODUCTS */



/* FICKLE */
.module-fickle {
  position: relative;
}

.fickle-has-background-image {
  padding: 30px;
}

.module-fickle-basic .fickle-image {
  margin-bottom: 1em;
}

.fickle-image img {
  max-height: 350px;
}

.module-fickle-basic .fickle-icon {
  margin-bottom: 1em;
}

.fickle-icon i {
  font-size: 30px;
}

.fickle-item a {
  transition: .3s;
}

.fickle-item a:hover {
  text-decoration: none;
}

.module-fickle-inline .fickle-image,
.module-fickle-inline .fickle-icon,
.module-fickle-inline .fickle-title {
  display: inline-block;
  vertical-align: middle;
}

.module-fickle-inline .fickle-image,
.module-fickle-inline .fickle-icon {
  margin-right: 15px;
}

.module-fickle-inline .fickle-image img {
  max-height: 150px;
}
.module-fickle-inline .fickle-subtitle {
  margin-top: 1em;
}
/* FICKLE */
.cookie-consent-popup {
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
}

.cookie-consent-popup.open {
    display: block;
    opacity: 1;
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
}

.cookie-consent-controls {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
}

.cookie-consent-controls.open {
    max-height: 600px;
}

.cookie-consent-details {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
}

.cookie-consent-details.open {
    max-height: 600px;
}

@keyframes show {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes hide {
    from {opacity: 1;}
    to {opacity: 0;}
}

.cookie-consent-popup {
    background: #eee;
    padding: 2rem;
    text-align: center;
}

.cookie-consent-controls {
    padding-top: 1rem;
}
.cookie-consent-details {
    margin-top: 1rem;
}

.cookie-consent-details.open {
    max-height: 600px;
}

.cookie-consent-top-wrapper .btn {
    margin-right: 1rem;
}

.cookie-consent-popup .btn {
    min-width: 150px;
}

.cookie-consent-popup input[type="checkbox"]:before,
.cookie-consent-popup input[type="checkbox"]:after {
    content:'';
    position: absolute;
    width: 2px;
    background: #000;
    transition: .1s;
    opacity: 0;
}

.cookie-consent-popup input[type="checkbox"]:before {
    height: 4px;
    transform: rotate(-35deg);
    right: 13px;
    bottom: 7px;
}
.cookie-consent-popup input[type="checkbox"]:after {
    height: 12px;
    transform: rotate(35deg);
    right: 8px;
    top: 6px;
}

.cookie-consent-popup input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border: 1px solid;
    border-radius: 4px;
    position: relative;
}
.cookie-consent-popup input[type="checkbox"]:checked:before,
.cookie-consent-popup input[type="checkbox"]:checked:after{
    opacity: 1;
}
.cookie-consent-popup .form-check-input,
.cookie-consent-popup .form-check-label {
    cursor: pointer;
    vertical-align: middle;
    transition: .2s;
    opacity: 0.8;
}

.cookie-consent-popup .form-check-input:hover,
.cookie-consent-popup .form-check-label:hover {
    opacity: 1;
}

.btn.cookie-consent-save {
    margin-top: 1rem;
}
.cookie-consent-details label {
    font-weight: 600;
}
.col-cookie-consent {
    padding-left: 15px;
    padding-right: 15px;
}
.cookie-details-item {
    background: #fff;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    padding: 15px;
}
.cookie-consent-popup .row {
    justify-content: center;
}
.cookie-consent-accept-all {
  background-color: #000;
  border-color: #000;
}
.cookie-consent-accept-all:hover {
  background-color: #333;
  border-color: #333;
}