/**
 * Config
 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/**
 * Typoghtapy
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0a0a0a;
  transition: 0.3s;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: "Noto Sans SC", sans-serif;
}

.h1-heading,
.h2-heading,
.h3-heading,
.h4-heading,
.h5-heading,
.h6-heading {
  font-family: "Noto Sans SC", sans-serif;
}

.h1-heading {
  font-family: "Gilda Display", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 0.91667;
  color: #fffefc;
  text-transform: none;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .h1-heading {
    font-size: 40px;
    line-height: 1.1;
  }
}

.h2-heading {
  font-family: "Gilda Display", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.11111;
  color: #181818;
  margin-top: 120px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .h2-heading {
    font-size: 30px;
    margin-top: 60px;
    margin-bottom: 20px;
  }
}

.h3-heading {
  font-size: 2rem;
  line-height: 1.125;
  margin: 0 0 32px;
}
@media (max-width: 850px) {
  .h3-heading {
    font-size: 1.5rem;
  }
}

.h4-heading {
  font-size: 1.5rem;
  line-height: 1.16;
  margin: 0 0 8px;
}

.h5-heading {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.h6-heading {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0 0 8px;
}

button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.text {
  line-height: 1.4;
  color: #0a0a0a;
}
.text:last-of-type {
  margin-bottom: 0;
}

.center-text {
  text-align: center;
}

.small-text {
  font-size: 0.875rem;
  color: #9ba4a9;
}

.red {
  color: #c00d0d;
}

.link {
  padding: 0;
  font-size: inherit;
  color: #c00d0d;
}

.button-black {
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
}
.button-black:hover {
  color: #c00d0d;
  border: 1px solid #c00d0d;
}
.button-black-fill {
  background-color: #0a0a0a;
  color: white;
  border: 1px solid #0a0a0a;
}
.button-black-fill:hover {
  background-color: #3b3b3b;
}
.button-add-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 12px 24px;
}
.button-add-cart:after {
  content: "";
  background-image: url(../img/icons/cart.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 21px;
  height: 19px;
  display: inline-block;
  margin-left: 12px;
}
@media (max-width: 850px) {
  .button-add-cart {
    padding: 12px;
  }
}

.arrow-link {
  color: #c00d0d;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
.arrow-link:after {
  content: "";
  background-image: url(../img/icons/red-right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 14px;
  display: inline-block;
  margin: 0 0 -1px 6px;
}
.arrow-link-reverse:before {
  content: "";
  background-image: url(../img/icons/red-right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 14px;
  display: inline-block;
  margin: 0 6px -1px 0;
  transform: rotate(180deg);
}
.arrow-link-reverse:after {
  display: none;
}

.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 28px 0;
}
@media (max-width: 850px) {
  .breadcrumbs {
    margin: 16px 0;
  }
}
.breadcrumbs-item a {
  color: #0a0a0a;
  text-decoration: none;
  font-size: 14px;
}
.breadcrumbs-item:last-of-type a {
  color: #9ba4a9;
}
.breadcrumbs-item + .breadcrumbs-item:before {
  content: "";
  display: inline-block;
  background-image: url(../img/icons/arrow-breadcrumbs.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 5px;
  height: 8px;
  margin: 0 20px;
}
@media (max-width: 850px) {
  .breadcrumbs-item + .breadcrumbs-item:before {
    margin: 0 10px;
  }
}
@media (max-width: 850px) {
  .breadcrumbs-item:not(:first-of-type), .breadcrumbs-item:not(:last-of-type) {
    display: none;
  }
  .breadcrumbs-item:last-of-type {
    display: inline-block;
  }
  .breadcrumbs-item:last-of-type:before {
    transform: rotate(180deg);
  }
  .breadcrumbs-item + .breadcrumbs-item:before {
    margin-left: 0;
  }
}

/**
 * Styling
 */
.login {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: black;
}
.login #login {
  margin: 0;
  padding: 0;
}
.login form {
  border: none;
}
.login h1 a {
  background-position: center;
  background-size: contain;
  width: 100%;
}
.login #nav a,
.login #backtoblog a {
  color: white;
  transition: all 0.25s;
}
.login #nav a:focus, .login #nav a:hover,
.login #backtoblog a:focus,
.login #backtoblog a:hover {
  box-shadow: none;
}
.login .wp-pwd .button.wp-hide-pw {
  width: 42px;
  height: 42px;
}
.login .wp-pwd input.password-input {
  padding-right: 42px;
}
