/**
 * Styles
 *
 * @author Lex Lexter <hi@leximo.cz>
 * @version 1.0.0
 * @website https://leximo.cz/
 */

@font-face {
  font-family: 'Outfit Fallback';
  size-adjust: 100%;
  src: local('Arial');
}

/*
  Bodies
  ***
*/

body {
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  letter-spacing: -0.43px;
  font: 300 18px 'Outfit', 'Outfit Fallback', Arial, Helvetica, sans-serif;
  color: #282828;
}

/*
  Links
  ***
*/

a {
  color: #282828;
}
a:hover {
  color: #254c23;
}

/*
  Forms
  ***
*/

input, textarea, select, button {
  font: 400 16px 'Outfit', 'Outfit Fallback', Arial, Helvetica, sans-serif;
}

/*
  icon
  ***
*/

.icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background: center center no-repeat;
  text-decoration: none;
  font-size: 0;
  color: #A9ABB2;
}

/*
  button
  ***
*/

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 12px 8px 0 0;
  padding: 11px 20px 11px 20px;
  background-color: #eee;
  border: none;
  border-radius: 24px;
  line-height: 1.5;
  text-decoration: none;
  font-size: 15px;
  color: #282828;
  transition: 150ms linear;
}

/* hover */

button.button:hover, 
a.button:hover {
  background-color: #cecece;
  color: #282828;
}

/*
  - color
  ---
*/

.button--color-primary {
  background-color: #254c23;
  font-weight: 600;
  color: #fff;
}

/* hover */

button.button--color-primary:hover, 
a.button--color-primary:hover {
  background-color: #c7174e;
  color: #fff;;
}

/*
  - size
  ---
*/

.button--size-tiny {
  padding: 4px 6px 4px 6px;
  font-size: 12px;
}
.button--size-small {
  padding: 6px 13px 6px 13px;
  font-size: 14px;
}

/*
  -- steps
  ---
*/

.button---steps {
  position: relative;
}

/*
  Adjust button
  ...
*/

.button---steps .button {
  margin: 0;
}

/*
  - align
*/

.button---steps .button--align-left {
  float: left;
  margin-right: 8px;
}
.button---steps .button--align-right {
  float: right;
  margin-left: 8px;
}

/*
  tag
  ***
*/

.tag {
  display: inline-block;
  vertical-align: middle;
  padding: 6px 10px;
  background-color: #eee;
  border-radius: 24px;
  font-style: normal;
  font-size: 14px;
}

/*
  - light
  ---
*/

.tag--light {
  color: #fff;
}

/*
  - list
  ---
*/

.tag--list {
  font-size: 0;
}

/*
  Adjust tag
  ...
*/

.tag---list .tag {
  margin: 0 6px 0 0;
}

/*
  - align
*/

.tag---list--align-center .tag {
  margin: 0 3px 0 3px;
}

/*
  input
  ***
*/

.input {
  box-sizing: border-box;
  width: 100%;
  padding: 11px 14px 12px 14px;
  border: 1px solid #bdbdbd;
  outline: none;
  border-radius: 4px;
}

/* focus */

.input:focus {
  border-color: #41833e;
}

/*
  input
  ---
*/

.input--size-small {
  padding: 10px 13px 11px 13px;
  font-size: 14px;
}

/*
  [type="checkbox"], [type="radio"]
  ---
*/

.input[type="checkbox"], 
.input[type="radio"] {
  width: auto;
  float: left;
  margin-top: 6px;
}

/*
  input-method
  ***
*/

.input-method {
  position: relative;
  display: block;
  font-size: 16px;
}

/*
  Next SAME
  ---
*/

.input-method + .input-method {
  margin-top: 8px;
}

/*
  title
  ---
*/

.input-method__title {
  margin-left: 4px;
  line-height: 1.6;
  font-weight: 500;
  font-size: 16px;
}

/*
  price
  ---
*/

.input-method__price {
  float: right;
  line-height: 1.6;
}

/*
  excerpt
  ---
*/

.input-method__excerpt {
  display: block;
  margin-left: 25px;
  font-size: 15px;
  line-height: 1.6;
  font-style: normal;
  font-size: 13px;
}

/*
  field
  ***
*/

.field {
  margin-bottom: 16px;
}

/*
  label
  ---
*/

.field__label {
  display: block;
  margin-bottom: 6px;
  line-height: 1.6;
  font-weight: 500;
  font-size: 16px;
}

/*
  STRONG
  ...
*/

.field__label strong {
  color: #d41616;
}

/*
  - contain-checkbox
  ...
*/

.field--contain-checkbox .field__label {
  margin: 0 0 0 24px;
  font-weight: 400;
}

/*
  error
  ---
*/

.field__error {
  display: block;
  margin-top: 6px;
  line-height: 1.6;
  font-weight: 500;
  font-size: 14px;
}

/*
  Icon
  ...
*/

.field__error:before {
  content: '\292B';
  position: relative;
  top: -1px;
  margin-right: 3px;
  font-weight: 700;
  color: #D51616;
}

/*
  - contain
  ...
*/

.field--contain-radios .field__error {
  margin-left: 24px;
}

/*
  excerpt
  ---
*/

.field__excerpt {
  display: block;
  margin-top: 6px;
  line-height: 1.6;
  font-style: italic;
  font-size: 14px;
}

/*
  flash
  ***
*/

.flash {
  position: relative;
  padding: 12px 16px 12px 32px;
  border: 1px solid #eee;
  line-height: 1.6;
  font-size: 16px;
}

/*
  icon
  ---
*/

.flash__icon {
  position: absolute;
  left: 12px;
  top: 15px;
  font-style: normal;
  font-size: 105%;
}

/*
  - type
  ...
*/

.flash--type-success .flash__icon {
  top: 16px;
  color: #66bd20;
}
.flash--type-error .flash__icon {
  font-weight: 700;
  color: #d32323;
}

/*
  BOLD
  ---
*/

.flash b {
  font-weight: 500;
  font-size: 105%;
}

/*
  SMALL
  ---
*/

.flash small {
  display: block;
  line-height: inherit;
  font-size: 95%;
}

/*
  form
  ***
*/

.form {
  position: relative;
}

/*
  section
  ---
*/

.form__section {
  box-sizing: border-box;
  margin-bottom: 24px;
  padding: 32px 32px 16px 32px;
  border: 1px dashed #eee;
}

@media only screen and (min-width: 751px) {

  /*
    - align
    ...
  */

  .form__section--align-left {
    width: calc(50% - 12px);
    float: left;
  }
  .form__section--align-right {
    width: calc(50% - 12px);
    float: right;
  }

}

/*
  title
  ...
*/

.form__section__title {
  padding: 10px 14px 12px 14px;
  background-color: #fcfcfc;
  border: 1px dashed #eee;
  font-weight: 600;
  font-size: 17px;
}

/*
  form-coupon
  ***
*/

.form-coupon {
  position: relative;
}

/*
  Adjust field
  ---
*/

.form-coupon .field {
  margin: 0;
}
.form-coupon .field__label {
  display: none;
}

/*
  field
  ---
*/

.form-coupon__field {
  position: relative;
}

/*
  Adjust button
  ...
*/

.form-coupon__field .button {
  position: absolute;
  right: 6px;
  top: 6px;
  margin: 0;
  border-radius: 4px;
}

/*
  data
  ---
*/

.form-coupon__data {
  background-color: #f5f5f5;
  margin: 12px 0 0 0;
  padding: 8px 16px 10px 16px;
  border-radius: 4px;
  font-size: 15px;
}

/*
  Adjust button
  ...
*/

.form-coupon__data .button {
  margin: 0;
}

/*
  title
  ...
*/

.form-coupon__data__title {
  margin-right: 6px;
}

/*
  item
  ...
*/

.form-coupon__data__item {
  margin-right: 6px;
}

/*
  form-cart
  ***
*/

.form-cart {
  position: relative;
}

/*
  - layout
  ---
*/

.--layout-cart .form-cart {
  margin-top: 24px;
}

/*
  Adjust button---steps
  ---
*/

.form-cart .button---steps {
  margin-top: 24px;
}

/*
  scroll
  ---
*/

.form-cart__scroll {
  overflow-x: auto;
  overflow-y: hidden;
}

/*
  table
  ---
*/

.form-cart__table {
  min-width: 650px;
  margin: 0;
  font-size: 16px;
}

/*
  CELLS
  ...
*/

.form-cart__table th, 
.form-cart__table td {
  vertical-align: middle;
}

/*
  Adjust button
  ...
*/

.form-cart__table .button {
  margin: 0;
}

/*
  IMG
  ...
*/

.form-cart__table img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

/*
  nav-sub
  ***
*/

.nav-sub {
  position: relative;
}

/*
  title
  ---
*/

.nav-sub__title {
  margin: 0 42px 12px 0;
  text-align: right;
}

/*
  list
  ---
*/

.nav-sub__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
.nav-sub__list > li {
  margin: 0;
  padding: 0;
}
.nav-sub__list > li > a {
  display: block;
  padding: 4px 42px 4px 0;
  border-right: 3px solid transparent;
  line-height: 1.6;
  font-size: 17px;
}

/* hover */

.nav-sub__list > li:hover > a {
  border-color: #282828;
}

/* - active */

.nav-sub__list > li.--active > a {
  border-color: #282828;
}

/*
  nav-pagination
  ***
*/

.nav-pagination {
  text-align: center;
  font-size: 0;
}

/*
  Adjust button
  ---
*/

.nav-pagination .button {
  margin: 0 12px;
}

/*
  SPAN
  ...
*/

.nav-pagination span.button {
  opacity: 0.5;
  cursor: not-allowed;
}

/*
  item
  ---
*/

.nav-pagination__item {
  min-width: 14px;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 8px;
  margin: 0 6px;
  background-color: #eee;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
}

/* hover */

.nav-pagination__item:hover {
  background-color: #cecece
}

/* - active */

.nav-pagination__item.--active {
  background-color: #cecece
}

/*
  head
  ***
*/

.head {
  position: relative;
  font-size: 20px;
}

/*
  Adjust tag---list
  ---
*/

.head .tag---list {
  margin-top: 16px;
}


/*
  title
  ---
*/

.head__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.head__excerpt {
  margin: 12px 0 0 0;
  line-height: 1.8;
}

/*
  item-product
  ***
*/

.item-product__inset {
  position: relative;
  text-align: center;
  font-size: 16px;
}

/*
  Adjust button
  ---
*/

.item-product .button {
  margin: 16px 0 0 0;
}

/*
  Adjust tag---list
  ---
*/

.item-product .tag---list {
  position: absolute;
  left: 0;
  top: -12px;
  right: 0;
}

/*
  Adjust price
  ---
*/

.item-product .price {
  margin: 12px 0 0 0;
}

/*
  Adjust list-variants
  ---
*/

.item-product .list-variants {
  margin: 12px 0 0 0;
}

/*
  image
  ---
*/

.item-product__image, 
.item-product__image img {
  display: block;
}
.item-product__image {
  max-width: 300px;
  max-height: 180px;
  overflow: hidden;
  margin: 0 auto;
  background: center center no-repeat;
  background-size: cover;
  border-radius: 24px;
}
.item-product__image img {
  width: 100%;
  opacity: 0;
}

/*
  content
  ---
*/

.item-product__content {
  max-width: 300px;
  margin: 18px auto 0 auto;
  padding: 0 16px;
}

/*
  title
  ---
*/

.item-product__title {
  margin: 0;
}

/*
  excerpt
  ---
*/

.item-product__excerpt {
  margin: 10px 0 0 0;
}

/*
  list
  ***
*/

.list, 
.list__inset {
  position: relative;
}
.list__inset {
  list-style: none;
  margin: 0 -12px -42px -12px;
  font-size: 0;
}

/*
  item
  ---
*/

.list__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 42px 0;
}
.list__item__inset {
  margin: 0 12px;
}

/*
  foot
  ---
*/

.list__foot {
  margin: 26px 0 0 0;
}

/*
  site-wrap
  ***
*/

.site-wrap {
  margin: 0 auto;
  padding: 0 24px;
}

/*
  site-head
  ***
*/

.site-head {
  position: relative;
  z-index: 75;
  padding-top: 54px;
  border-bottom: 1px solid #eee;
}

/*
  Adjust burger
  ---
*/

.site-head .burger {
  float: right;
  display: none;
  margin-top: 12px;
}

/*
  logo
  ---
*/

.site-head__logo {
  transform: rotate(0.03deg);
  float: left;
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0;
}

@media only screen and (min-width: 1201px) {

  /*
    nav
    ---
  */

  .site-head__nav {
    margin-right: 260px;
    margin-top: 24px;
  }

  /*
    list
    ...
  */

  .site-head__nav__list {
    margin: 0 0 -2px 0;
    padding: 0;
    list-style: none;
  }
  .site-head__nav__list > li {
    display: inline-block;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 0;
  }
  .site-head__nav__list > li > a {
    display: block;
    margin-right: 24px;
    padding: 16px 0 24px 0;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
  }

  /* hover */

  .site-head__nav__list > li:hover > a {
    border-color: #282828;
  }

  /* - active */

  .site-head__nav__list > li.--active > a {
    border-color: #282828;
  }

  /*
    - mobile
    ...
  */

  .site-head__nav__list > li.--mobile {
    display: none;
  }

}

/*
  functions
  ---
*/

.site-head__functions {
  position: absolute;
  right: 0;
  bottom: -2px;
  font-size: 0;
}

/*
  item
  ...
*/

.site-head__functions__item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 16px;
}

/*
  Adjust label
*/

.site-head__functions__item .tag {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}

/*
  title
*/

.site-head__functions__item__title {
  display: block;
  padding: 16px 0 24px 0;
  text-transform: uppercase;
  font-size: 15px;
}

/*
  site-flashes
  ***
*/

.site-flashes {
  clear: both;
}

/*
  Adjust flash
  ---
*/

.site-flashes .flash {
  margin: -1px 0 0 0;
}

/*
  site-side
  ***
*/

.site-side {
  width: 320px;
  position: relative;
  z-index: 50;
  float: left;
  padding: 36px 0 0 0;
}

/*
  Line
  ---
*/

.site-side:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #eee;
}

/*
  Adjust nav-sub
  ---
*/

.site-side .nav-sub {
  margin: 0 -1px 32px 0;
}

/*
  site-content
  ***
*/

.site-content {
  position: relative;
  z-index: 25;
  margin-left: 320px;
}
.site-content__inset {
  overflow: hidden;
  padding: 36px 0 36px 42px;
}

/*
  - wide
  ---
*/

.site-content--wide {
  max-width: 940px;
  margin: 0 auto;
}

@media only screen and (min-width: 1201px) {

  .site-content--wide .site-content__inset {
    padding: 64px 0 48px 0;
  }

}

/*
  Line
  ---
*/

.site-content:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: -1px;
  top: 0;
  background-color: #eee;
}

/*
  - wide
  ---
*/

.site-content--wide:before {
  display: none;
}

/*
  site-mail
  ***
*/

.site-main {
  position: relative;
}

/*
  content
  ---
*/

.site-main__content {
  margin-top: 54px;
}

@media only screen and (min-width: 601px) {

/*
  - col
  ...
*/

.site-main__content__col--align-left {
  width: 50%;
  float: left;
}
.site-main__content__col--align-right {
  width: calc(50% - 42px);
  float: right;
}

}

/*
  site-foot
  ***
*/

.site-foot {
  padding: 26px 0;
  border-top: 1px solid #eee;
  font-size: 15px;
}

/*
  excerpt
  ---
*/

.site-foot__excerpt {
  margin: 0;
  text-align: center;
}

@media only screen and (min-width: 551px) {

  /*
    - align
    ...
  */

  .site-foot__excerpt--align-left {
    float: left;
  }
  .site-foot__excerpt--align-right {
    float: right;
  }

}

/*
  gallery-showcase
  ***
*/

.gallery-showcase {
  position: relative;
  font-size: 0;
}

/*
  scroll
  ---
*/

.gallery-showcase__scroll {
  overflow-y: hidden;
  overflow-x: auto;
  margin-top: 12px;
  padding-bottom: 12px;
  white-space: nowrap;
  scrollbar-width: thin;
}

/*
  LINK
  ...
*/

.gallery-showcase__scroll a {
  width: 33.33%;
  width: calc(33.33% - 8px);
  display: inline-block;
  margin-right: 12px;
}
.gallery-showcase__scroll a:last-child {
  margin-right: 0;
}

/*
  IMG
*/

.gallery-showcase__scroll a img {
  width: 100%;
  display: block;
}

/*
  form-add
  ***
*/

.form-add {
  position: relative;
}

/*
  Adjust button
  ---
*/

.form-add .button {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
}

/*
  Adjust input
  ---
*/

.form-add .input {
  width: calc(100% - 120px);
  border-radius: 24px;
  text-align: center;
  font-weight: 700;
}

/*
  price
  ***
*/

.price {
  margin: 0;
  font-size: 18px;
}

/*
  - size
  ---
*/

.price--size-large {
  font-size: 22px;
}

/*
  SMALL
  ---
*/

.price small {
  opacity: 0.5;
}

/*
  list-variants
  ***
*/

.list-variants {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  font-size: 0;
}

/*
  item
  ---
*/

.list-variants__item {
  display: inline-block;
  margin: 0 -12px 0 0;
  text-decoration: none;
}
.list-variants__item:last-child {
  margin-right: 0;
}

/*
  list-parameters
  ***
*/

.list-parameters {
  margin: 0;
  list-style: none;
}

/*
  item
  ---
*/

.list-parameters__item {
  margin: 0 0 12px 0;
  line-height: 1;
  font-size: 0;
}
.list-parameters__item:last-child {
  margin-bottom: 0;
}

/*
  title
  ---
*/

.list-parameters__item__title {
  width: 60px;
  display: inline-block;
  margin-right: 8px;
  text-align: right;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.5;
}

/*
  value
  ---
*/

.list-parameters__item__value {
  font-weight: 600;
  font-size: 20px;
}

/*
  note
  ---
*/

.list-parameters__item__note {
  display: block;
  margin: 8px 0 0 68px;
  font-size: 14px;
}

/*
  layout-01
  ***
*/

.layout-01 .list-parameters {
  margin-top: 24px;
}
.layout-01 .list-variants {
  margin-top: 24px;
}
.layout-01 .form-add {
  margin-top: 24px;
}

/*
  tabs
  ***
*/

.tabs {
  position: relative;
}

/*
  nav
  ---
*/

.tabs__nav {
  margin: 0;
  border-bottom: 1px solid #eee;
  line-height: 1;
  font-size: 0;
}

/*
  link
  ---
*/

.tabs__nav__link {
  position: relative;
  bottom: -1px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 12px;
  padding: 13px 20px;
  border: 1px solid #eee;
  border-radius: 12px 12px 0 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
}

/* - active */

.tabs__nav__link.--active {
  border-bottom-color: #fff;
}


/*
  content
  ---
*/

.tabs__content {
  margin-top: 24px;
}