/*
Theme Name: Kilo Child
Template: kilo
Author: Salsita s.r.o.
Author URI: http://salsitasoft.com/
Version: 1.0.1605859579
Updated: 2020-11-20 09:06:19

*/

:root {
  --breakpoint-desktop: 1272px;
  --breakpoint-mobile: 600px;
  --page-padding: 32px;
  --menu-and-cart-buttons-position: max(var(--page-padding), calc(50vw - (var(--breakpoint-desktop) / 2) - 80px));
}

body {
  cursor: default;
}

.ui-page {
  max-width: calc(var(--page-padding) + var(--breakpoint-desktop) + var(--page-padding));
  margin: 0 auto;
  padding: 0 var(--page-padding);
  box-sizing: border-box;
}

/* logo */
#logo {
  width: 80px;
  height: 80px;
  margin-left: -40px;
}

#logo img {
  width: 74%;
  height: auto;
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
}


/* hero image - sider */
.master-slider-parent > .master-slider,
.product-wrap {
  padding: 0;
  margin: 72px 0 !important;
  width: 100% !important;
}

.ms-view,
.ms-slide,
#product-slider {
  height: calc(100vh - 72px - 120px) !important;
}

#product-slider li {
  width: calc(100% + 32px);
}


/* product tiles / related product tiles */
.product__wrap,
#cat_products .products {
  padding: 72px 16px 16px;
  gap: 16px !important;
  /* grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); */
  grid-column: span 6;
}

.product__wrap {
  padding: 16px;
}

@media screen and (min-width: 1200px) {
  #cat_products .products,
  .product__wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 1800px) {
  #cat_products .products,
  .product__wrap {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* product tile hover effect */
.product {
  position: relative;
}

.product a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.product .overlay {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 20px;
  overflow: hidden;
  color: #fff;
  background: rgba(33,33,33,.85);
  opacity: 0;
  transition: opacity 0.4s 0.04s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  font-family: 'GT-Walsheim', 'futura`-pt', helvetica, arial, 'sans-serif';
  font-weight: bold;
}

.product:hover .overlay {
  opacity: 1;
}

.product .overlay .name {
  font-size: 30px;
}

#related-products .product .overlay .name {
  font-size: 24px;
}

.product .overlay .description {
  margin-top: 10px;
  font-family: 'GT-Walsheim', 'futura`-pt', helvetica, arial, 'sans-serif';
}

.product .overlay .price {
  font-size: 22px;
  margin-top: 30px;
  display: block !important;
}

#related-products .product .overlay .price {
  font-size: 16px;
  margin-top: 15px;
}

.product .customizable-label {
  pointer-events: none;
  position: absolute;
  right: 20px;
  bottom: 15px;
  font-size: 14px;
  line-height: 32px;
  color: transparent;
  transition: color 0.4s ease-out;
  font-family: 'GT-Walsheim', 'futura`-pt', helvetica, arial, 'sans-serif';
}

.product .customizable-label svg {
  vertical-align: top;
  margin-left: 5px;
  color: rgba(0,0,0,.6);
  transition: color 0.6s ease-out;
}

.product:hover .customizable-label,
.product:hover .customizable-label svg {
  color: #fff;
}

@media screen and (max-width: 600px) {
  .product .overlay .name,
  #related-products .product .overlay .name {
    font-size: 18px;
  }

  .product .overlay .price,
  #related-products .product .overlay .price {
    font-size: 14px;
    margin-top: 15px;
  }

  .product .customizable-label {
    display: none;
  }
}


/* basket icon */
.cart-contents {
  width: 40px;
  height: 40px;
  top: 16px;
  right: 32px;
  background-color: rgba(255,255,255,.8);
  background-image: url('img/cart.svg');
}

.cart-contents-count {
  top: -3px;
  right: -3px;
}


/* hamburger menu */
.hamburger {
  width: 40px;
  height: 40px;
  top: 16px;
  left: 32px;
  background-color: rgba(255,255,255,.8);
  background-image: url('data:image/svg+xml;utf8,<svg width="22" height="2" viewBox="0 0 22 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L21 1" stroke="black" stroke-width="2" stroke-linecap="square"/></svg>');
  background-size: 20px 2px;
  background-position: center center;
  transition: background 0s 0.25s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  top: calc(50% - 8px);
  left: calc(50% - 10px);
  background: #000;
  margin-top: -1px;
  transition: transform 0.25s, top 0.25s 0.25s;
}

.hamburger::after {
  top: calc(50% + 8px);
}

body.open-navigation .hamburger {
  background-size: 0px 2px;
}

body.open-navigation .hamburger::before,
body.open-navigation .hamburger::after {
  top: 50%;
  transform: rotate(45deg);
  transition: top 0.25s, transform 0.25s 0.25s;
}

body.open-navigation .hamburger::after {
  transform: rotate(-45deg);
}


/* menu page */
#navigation .container {
  padding-left: 20px;
  padding-right: 20px;
}


/* store page */
.text-content-wrap {
  border-style: solid;
  border-color: transparent;
  border-width: 0 40px;
  background-color: transparent;
}

.text-content-wrap #text-content {
  padding: 16px 0 100px;
}


/* store notice */
p.woocommerce-store-notice {
  text-align: right;
  width: auto;
  background: transparent;
  padding: 0;
  left: calc(50% + 60px);
  right: 100px;
  top: 36px;
  transform: translateY(-50%);
  line-height: 18px;
  max-height: 54px;
  overflow: hidden;
  color: #000;
  box-shadow: none;
  transition: opacity 0.2s;
}

p.woocommerce-store-notice a {
  color: #000;
}

body.open-navigation p.woocommerce-store-notice {
  opacity: 0;
}

.woocommerce-store-notice__dismiss-link {
  display: none;
}

@media screen and (max-width: 700px) {
  p.woocommerce-store-notice {
    display: none !important;
  }
}


/* buttons */
.button-outlined,
#product-information #buy-button,
.shipping-calculator-button {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid #000;
  border-radius: 0px;
  color: #000;
  text-decoration: none;
  line-height: 50px;
  padding-left: 33px;
  padding-right: 33px;
  font-weight: bold;
  font-family: 'GT-Walsheim', 'futura`-pt', helvetica, arial, 'sans-serif';
  cursor: pointer;
  user-select: none;
}

#product-information #buy-button {
  background: #000;
  color: #fff;
}

.button-outlined:hover,
#product-information #buy-button:hover,
.shipping-calculator-button:hover {
  background: #333;
  color: #fff;
}

.shipping-calculator-button {
  line-height: 40px;
  padding: 0 33px;
}


/* selectbox */

.select2-selection .select2-selection__rendered,
.select2-selection .select2-selection__arrow {
  margin-top: 8px;
  text-align: left;
  color: black !important;
}

.select2-dropdown {
  border: 1px solid black !important;
  border-radius: 0 !important;
  margin: 1px 0 !important;
}



/* cart and checkout */
.cart .actions .coupon {
  display: flex;
}

.cart .actions .ui-btn {
  font-size: 0;
}

.cart .button,
.cart-collaterals .button {
  border-radius: 0 !important;
}

.shipping-calculator-button {
  margin: 16px 0 !important;
}

.cart .input-text,
.cart-collaterals .input-text,
.cart-collaterals .select2-selection,
.checkout .input-text:not(.ui-textinput-autogrow),
.checkout .select2-selection {
  border: 1px solid black !important;
  height: 43px !important;
  box-sizing: border-box !important;
  font-size: 16px !important;
  color: black !important;
  border-radius: 0 !important;
  font-family: 'GT-Walsheim', 'futura`-pt', helvetica, arial, 'sans-serif' !important;
}

.checkout .ui-textinput-autogrow {
  resize: vertical;
  max-height: 80vh;
}

.woocommerce .product-name .variation,
.woocommerce .product-name .variation p {
  font-size: 14px !important;
  color: #515151 !important;
  text-align: left !important;
  line-height: 130% !important;
}

.woocommerce .product-name .variation p {
  display: inline !important;
}

.woocommerce .product-name .variation dt.variation-configuration {
  display: none !important;
}
