@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400&family=Saira+Condensed:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}
* ::-webkit-scrollbar {
  display: none;
}

html {
  font-family: "Noto Sans", sans-serif;
}

body {
  min-height: 120vh;
}

footer {
  background-color: rgb(0, 0, 0);
  padding: 40px;
  color: #a6a6a6;
}
@media screen and (max-width: 500px) {
  footer {
    padding: 20px;
  }
}
footer .footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  footer .footer-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer-wrapper::after {
    content: "";
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
footer .footer-wrapper .footer-column {
  -ms-flex-preferred-size: 13%;
      flex-basis: 13%;
}
@media screen and (max-width: 1024px) {
  footer .footer-wrapper .footer-column {
    margin-bottom: 20px;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}
@media screen and (max-width: 500px) {
  footer .footer-wrapper .footer-column {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
footer .footer-wrapper .footer-column.first {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
@media screen and (max-width: 1024px) {
  footer .footer-wrapper .footer-column.first {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
  }
}
@media screen and (max-width: 771px) {
  footer .footer-wrapper .footer-column.first {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
footer .footer-wrapper .footer-column.last {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
@media screen and (max-width: 1024px) {
  footer .footer-wrapper .footer-column.last {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media screen and (max-width: 771px) {
  footer .footer-wrapper .footer-column.last {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
footer .footer-wrapper .footer-column img.logo {
  width: 100%;
  max-width: 200px;
}
footer .footer-wrapper .footer-column h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}
footer .footer-wrapper .footer-column p {
  font-size: 14px;
  line-height: 25px;
}
footer .footer-wrapper .footer-column span {
  font-size: 14px;
  line-height: 20px;
}
footer .footer-wrapper .footer-column i {
  color: rgb(60, 100, 173);
  margin-right: 5px;
}
footer .footer-wrapper .footer-column nav ul {
  list-style: none;
}
footer .footer-wrapper .footer-column nav ul li {
  margin-bottom: 5px;
}
footer .footer-wrapper .footer-column nav ul li a {
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  color: #a6a6a6;
}
footer .footer-wrapper .footer-column nav ul li a::before {
  content: "➥";
}
footer .footer-wrapper .footer-column nav ul li a:hover {
  color: rgb(60, 100, 173);
}
footer .footer-wrapper .footer-column .single-information {
  margin-bottom: 5px;
}
footer .footer-wrapper .footer-column .single-information span {
  font-size: 14px;
}
footer .footer-wrapper .footer-column .single-information a {
  text-decoration: none;
  font-size: 14px;
  color: #a6a6a6;
}
footer .footer-wrapper .footer-column .single-information a:hover {
  color: rgb(60, 100, 173);
}

.copyright {
  background-color: black;
  border-top: 1px solid #3e3e3e;
  padding: 10px 40px;
}
@media screen and (max-width: 500px) {
  .copyright {
    padding: 10px 20px;
  }
}
.copyright .copyright-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.copyright .copyright-wrapper p {
  color: #a6a6a6;
  font-size: 13px;
}

div.navbar {
  background-color: white;
  padding: 10px 20px;
}
@media screen and (min-width: 1024px) {
  div.navbar {
    padding: 10px 40px;
  }
  div.navbar.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
  }
}
div.navbar .navbar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
div.navbar .navbar-wrapper .close-menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: none;
  font-size: 20px;
  font-weight: bold;
  background-color: black;
  color: white;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}
div.navbar .navbar-wrapper .close-menu-btn.active {
  display: block;
}
div.navbar .navbar-wrapper .woocommerce-menu {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .woocommerce-menu {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
div.navbar .navbar-wrapper .woocommerce-menu.disabled {
  display: none;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .woocommerce-menu.disabled {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
div.navbar .navbar-wrapper .woocommerce-menu .account-menu ul {
  list-style: none;
}
div.navbar .navbar-wrapper .woocommerce-menu .account-menu ul li {
  border: 2px solid #ededed;
}
div.navbar .navbar-wrapper .woocommerce-menu .account-menu ul li a {
  text-decoration: none;
  display: block;
  padding: 0 20px;
  line-height: 40px;
  cursor: pointer;
  font-size: 16px;
  color: #767676;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .woocommerce-menu .account-menu ul li a {
    padding: 0px 10px;
  }
}
div.navbar .navbar-wrapper .woocommerce-menu .account-menu ul li a:hover {
  color: white;
  background-color: rgb(60, 100, 173);
}
div.navbar .navbar-wrapper .woocommerce-menu .account-menu ul li ul.sub-menu {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  border: 2px solid #ededed;
  background-color: white;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  z-index: 2;
}
div.navbar .navbar-wrapper .woocommerce-menu .account-menu ul li ul.sub-menu.active {
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
div.navbar .navbar-wrapper .woocommerce-menu .account-menu ul li ul.sub-menu li {
  border: none;
}
div.navbar .navbar-wrapper .woocommerce-menu .account-menu ul li ul.sub-menu li a {
  font-size: 14px;
}
div.navbar .navbar-wrapper .woocommerce-menu .show-mini-cart {
  padding: 0px 20px;
  line-height: 40px;
  margin-left: 5px;
  border: none;
  background: #32CD32;
  color: white;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .woocommerce-menu .show-mini-cart {
    padding: 0px 10px;
  }
}
div.navbar .navbar-wrapper .woocommerce-menu .show-mini-cart:hover {
  background: #e9232a;
}
div.navbar .navbar-wrapper .woocommerce-menu .show-mini-cart i {
  font-size: 16px;
}
div.navbar .navbar-wrapper .main-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: white;
  overflow: scroll;
  z-index: 1;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media screen and (min-width: 768px) {
  div.navbar .navbar-wrapper .main-menu {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .main-menu {
    position: static;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
div.navbar .navbar-wrapper .main-menu ul {
  list-style: none;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .main-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
div.navbar .navbar-wrapper .main-menu ul li {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .main-menu ul li {
    margin: 0 2.5px;
  }
}
div.navbar .navbar-wrapper .main-menu ul li:hover {
  background-color: rgb(60, 100, 173);
}
div.navbar .navbar-wrapper .main-menu ul li:hover a {
  color: white;
}
div.navbar .navbar-wrapper .main-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 16px;
  color: black;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .main-menu ul li a {
    padding: 8px 10px;
    position: relative;
  }
  div.navbar .navbar-wrapper .main-menu ul li a i {
    margin-left: 3px;
  }
}
div.navbar .navbar-wrapper .main-menu ul li.current_page_item {
  background-color: rgb(60, 100, 173);
}
div.navbar .navbar-wrapper .main-menu ul li.current_page_item a {
  color: white;
}
div.navbar .navbar-wrapper .main-menu ul li ul.sub-menu {
  background-color: white;
  display: none;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .main-menu ul li ul.sub-menu {
    position: absolute;
    margin-top: 5px;
    max-width: 350px;
  }
}
div.navbar .navbar-wrapper .main-menu ul li ul.sub-menu.active {
  display: block;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
div.navbar .navbar-wrapper .main-menu ul li ul.sub-menu.active li {
  border-bottom: 1px solid rgb(60, 100, 173);
}
div.navbar .navbar-wrapper .main-menu ul li ul.sub-menu.active li:last-child {
  border-bottom: none;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper .main-menu ul li ul.sub-menu.active li {
    margin: 0;
  }
}
div.navbar .navbar-wrapper .main-menu ul li ul.sub-menu.active li a {
  display: block;
  font-weight: normal;
  font-size: 14px;
  padding-left: 25px;
  text-transform: capitalize;
  color: black;
}
div.navbar .navbar-wrapper .main-menu ul li ul.sub-menu.active li a span {
  text-transform: lowercase;
}
div.navbar .navbar-wrapper .main-menu ul li ul.sub-menu.active li:hover {
  background-color: #eee;
}
div.navbar .navbar-wrapper .main-menu.active {
  right: 0;
}
div.navbar .navbar-wrapper div.logo-wrapper {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper div.logo-wrapper {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
div.navbar .navbar-wrapper div.logo-wrapper.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  background-color: white;
  margin: 0;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper div.logo-wrapper.active.active {
    position: unset;
    width: unset;
    padding: unset;
    background-color: unset;
  }
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper div.logo-wrapper .custom-logo-link {
    margin-right: 10px;
  }
}
div.navbar .navbar-wrapper div.logo-wrapper .custom-logo-link img {
  max-width: 220px;
  height: auto;
}
@media screen and (min-width: 1280px) {
  div.navbar .navbar-wrapper div.logo-wrapper .custom-logo-link img {
    max-width: 260px;
  }
}
div.navbar .navbar-wrapper div.logo-wrapper .burger {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  div.navbar .navbar-wrapper div.logo-wrapper .burger {
    display: none;
  }
}
div.navbar .navbar-wrapper div.logo-wrapper .burger:hover {
  color: rgb(60, 100, 173);
}

.mini-cart {
  position: fixed;
  bottom: 0;
  left: -100%;
  width: 100%;
  max-width: 360px;
  background: white;
  z-index: 2;
  height: 100%;
  padding: 20px;
  overflow: scroll;
  border: 2px solid rgb(60, 100, 173);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.mini-cart.is-showing {
  left: 0%;
}
@media screen and (min-width: 768px) {
  .mini-cart {
    height: 80%;
    left: auto;
    right: -100%;
  }
  .mini-cart.is-showing {
    right: 0;
    left: auto;
  }
}
.mini-cart ul {
  list-style: none;
}
.mini-cart ul li {
  margin: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mini-cart ul li .variation {
  display: none;
}
.mini-cart ul li span.quantity {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 5px 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-size: 14px;
}
.mini-cart ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #707070;
  text-decoration: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  -ms-flex-preferred-size: calc(100% - 30px);
      flex-basis: calc(100% - 30px);
  text-align: center;
}
.mini-cart ul li a:hover {
  color: rgb(60, 100, 173);
}
.mini-cart ul li a img {
  max-width: 70px;
  width: 100%;
  height: auto;
  margin-right: 20px;
}
.mini-cart ul li a.remove {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-preferred-size: 30px;
      flex-basis: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 26px;
  background-color: red;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mini-cart ul li a.remove:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}
.mini-cart p.total {
  padding: 10px 0;
  border-top: 2px solid rgb(60, 100, 173);
  border-bottom: 2px solid rgb(60, 100, 173);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
}
.mini-cart .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 5px 0;
}
.mini-cart .buttons a {
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}
.mini-cart .buttons a.wc-forward {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  padding: 10px 0;
  background-color: rgb(60, 100, 173);
  color: white;
}
.mini-cart .buttons a.wc-forward:hover {
  background-color: #32CD32;
}
.mini-cart a.continue-shopping {
  text-decoration: none;
  text-transform: uppercase;
  background-color: black;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding: 10px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}
.mini-cart p.woocommerce-mini-cart__empty-message {
  margin: 10px 0;
}

div.page-header {
  height: 300px;
  position: relative;
  overflow: hidden;
}
div.page-header img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
div.page-header div.text {
  background-color: rgba(0, 0, 0, 0.53);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
div.page-header div.text h1 {
  text-transform: uppercase;
  color: white;
  font-size: 18px;
  margin: 0 10px;
  text-align: center;
  background-color: rgba(60, 100, 173, 0.8);
  padding: 20px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  div.page-header div.text h1 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  div.page-header div.text h1 {
    font-size: 26px;
  }
}

div.breadcrumbs {
  padding-bottom: 20px;
}
div.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 0px;
  list-style-type: none;
}
div.breadcrumbs ol li {
  padding-right: 5px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  div.breadcrumbs ol li {
    font-size: 18px;
  }
}
div.breadcrumbs ol li a {
  text-decoration: none;
  color: rgb(60, 100, 173);
  font-weight: 700;
}
div.breadcrumbs ol li a i {
  padding-right: 3px;
}

div.pagination, ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
  list-style: none;
}
div.pagination a, div.pagination span, ul.page-numbers a, ul.page-numbers span {
  padding: 10px 15px;
  text-align: center;
  border: 1px solid rgb(60, 100, 173);
  font-size: 14px !important;
  text-transform: uppercase;
  color: rgb(60, 100, 173);
  position: relative;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  z-index: 0;
  margin: 3px;
}
div.pagination a:hover:not(span), div.pagination span:hover:not(span), ul.page-numbers a:hover:not(span), ul.page-numbers span:hover:not(span) {
  color: white;
  background-color: rgb(60, 100, 173);
}
div.pagination span, ul.page-numbers span {
  background-color: rgb(60, 100, 173);
  color: white;
}

div.widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 350px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid rgb(60, 100, 173);
  border-radius: 16px;
  padding: 15px;
  list-style-type: none;
}
@media screen and (min-width: 1024px) {
  div.widgets {
    max-width: 300px;
    margin: 15px 0 15px 20px;
  }
}
div.widgets h3, div.widgets h2 {
  padding: 10px 0;
  text-align: left;
  font-size: 15px;
  margin: 0 0 10px 0;
  color: rgb(60, 100, 173);
}
div.widgets .wp-block-search__inside-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0;
}
div.widgets .wp-block-search__inside-wrapper input[type=search] {
  border-left: 1px solid rgb(60, 100, 173);
  border-top: 1px solid rgb(60, 100, 173);
  border-bottom: 1px solid rgb(60, 100, 173);
  border-right: none;
  border-radius: 0;
}
div.widgets .wp-block-search__inside-wrapper button {
  margin: 0;
  background-color: rgb(60, 100, 173);
  color: white;
  padding: 0 10px;
  cursor: pointer;
}
div.widgets ul {
  list-style: none;
}
div.widgets ul li a {
  display: block;
  margin: 5px 0;
  font-size: 14px;
  color: black;
  line-height: 20px;
}
div.widgets ul li a:hover {
  font-weight: bold;
  color: rgb(60, 100, 173);
}
div.widgets .tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
div.widgets .tagcloud a {
  padding: 5px 10px;
  margin: 5px 5px 5px 0;
  border: 1px solid rgb(60, 100, 173);
  color: rgb(60, 100, 173);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
div.widgets .tagcloud a:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}
div.widgets .wp-calendar-table {
  width: 100%;
}
div.widgets .wp-calendar-table caption {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  margin: 5px 0;
}
div.widgets .wp-calendar-table td, div.widgets .wp-calendar-table th {
  text-align: center;
}
div.widgets .wp-calendar-table td a, div.widgets .wp-calendar-table th a {
  display: block;
  background: rgb(60, 100, 173);
  color: white;
  cursor: pointer;
}
div.widgets nav.wp-calendar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px 0;
}
div.widgets nav.wp-calendar-nav span {
  margin: 0 3px;
}
div.widgets nav.wp-calendar-nav span a {
  display: block;
  padding: 3px 5px;
  background-color: rgb(60, 100, 173);
  color: white;
  cursor: pointer;
}

.category-info {
  background: rgb(60, 100, 173);
  border-radius: 16px;
  margin: 15px 0;
  padding: 20px;
  color: white;
}
@media screen and (min-width: 1024px) {
  .category-info {
    margin: 15px 10px;
  }
}
.category-info h2 {
  padding-bottom: 20px;
  border-bottom: 2px solid white;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .category-info h2 {
    font-size: 22px;
  }
}
.category-info p.desc {
  padding-top: 20px;
  font-size: 14px;
}

.comments-title {
  padding: 15px;
  background-color: rgb(60, 100, 173);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-size: 16px;
  color: white;
}
@media screen and (min-width: 768px) {
  .comments-title {
    padding: 15px 40px;
  }
}

.comment-list {
  padding: 15px;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .comment-list {
    padding: 40px;
  }
}
.comment-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}
.comment-list li .comment-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
}
.comment-list li .comment-body p {
  word-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.comment-list li .comment-body .comment-author img {
  border-radius: 50%;
}
.comment-list li .comment-body .comment-meta {
  margin: 5px 0;
}
.comment-list li .comment-body .comment-meta a {
  color: rgb(60, 100, 173);
}

.comment-navigation {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.comment-navigation div {
  margin: 0 5px;
}
.comment-navigation div a {
  color: rgb(60, 100, 173);
  font-size: 15px;
  padding: 5px 10px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.comment-navigation div a:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}

#respond #reply-title {
  padding: 15px;
  background-color: rgb(60, 100, 173);
  font-size: 16px;
  color: white;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #respond #reply-title {
    padding: 15px 40px;
  }
}
#respond form {
  padding: 15px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  #respond form {
    padding: 0 40px;
  }
}
#respond form p {
  margin: 5px 0;
}
#respond form p * {
  margin: 5px 0;
}
#respond form p #comment-error, #respond form p #author-error, #respond form p #email-error {
  color: red;
}
#respond form p textarea {
  width: 100%;
  resize: none;
  border: 1px solid rgb(60, 100, 173);
  outline: none;
}
#respond form p input {
  width: 100%;
  height: 40px;
  border: 1px solid rgb(60, 100, 173);
  outline: none;
}
#respond form p input[type=checkbox] {
  accent-color: rgb(60, 100, 173);
  width: 15px;
  height: auto;
}
#respond form p input[type=submit] {
  width: auto;
  color: rgb(60, 100, 173);
  padding: 0 20px;
  background-color: white;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  cursor: pointer;
  border-radius: 0;
}
#respond form p input[type=submit]:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}

ul.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  ul.products {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
ul.products li.product {
  width: 100%;
  background-color: #eef1f6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
  max-width: 280px;
}
@media screen and (min-width: 768px) {
  ul.products li.product {
    margin: 20px;
  }
}
ul.products li.product a {
  width: 100%;
}
ul.products li.product a img {
  width: 100%;
  height: 100%;
  max-height: 200px;
}
ul.products li.product a h2 {
  color: black;
  font-size: 16px;
  margin-top: 30px;
  min-height: 150px;
}
ul.products li.product a span.onsale {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: red;
  padding: 5px;
  text-transform: uppercase;
  color: white;
  font-size: 14px;
  font-weight: bold;
}
ul.products li.product a span.price {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(50% - 20px);
  padding: 10px 5px;
  text-align: center;
  background-color: rgb(60, 100, 173);
  color: white;
  font-size: 13px;
}
ul.products li.product a span.price::before {
  content: "ab ";
}
ul.products li.product a span.price del bdi {
  display: none;
}
ul.products li.product a:hover > .product-overlay {
  opacity: 0.85;
  -webkit-transform: scale(1);
          transform: scale(1);
}
ul.products li.product a .product-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #272628;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
  z-index: 1;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
ul.products li.product a .product-overlay p {
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  border-top: 3px solid #fefefe;
  border-bottom: 3px solid #fefefe;
  padding: 5px 0;
  text-align: center;
  letter-spacing: 1px;
}
ul.products li.product a .product-overlay svg {
  width: 180px;
  -ms-flex-item-align: center;
      align-self: center;
}
ul.products li.product a.button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: calc(50% - 20px);
  padding: 10px 5px;
  text-align: center;
  background-color: #fc0;
  color: #263238;
  font-size: 13px;
}
ul.products li.product a.button:hover {
  color: red;
}
ul.products li.product a.button::after {
  content: ">";
  font-weight: bold;
  color: red;
}

div.quantity, .woocommerce .button[name=add-to-cart] {
  display: none;
}

.wapf-wrapper {
  border-radius: 4px;
  border: 1px solid #ededed;
  padding: 15px 0px !important;
  margin: 0 0 20px 0 !important;
}

.wapf-field-group .step {
  display: none;
}
.wapf-field-group .step.hidden {
  display: none !important;
}
.wapf-field-group .step:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wapf_step_buttons {
  margin-bottom: 20px;
  overflow: hidden;
}
.wapf_step_buttons button {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #fc0;
  color: #263238;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  background-color: #fc0;
}
.wapf_step_buttons button:hover {
  background-color: #ffb500;
}

.wapf_btn_next {
  float: right !important;
}
.wapf_btn_next.deleted {
  display: none !important;
}

.wapf-progress {
  position: relative;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.wapf-progress:before,
.wapf-progress-bar {
  content: "";
  position: absolute;
  height: 0px;
  width: 100%;
  background: #ededed;
  top: 14px;
  left: 0;
}

.wapf-progress-steps {
  margin-bottom: 30px;
  overflow: hidden;
  counter-reset: step;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wapf-progress-steps div {
  margin: 0 5px 5px 0;
  position: relative;
}
.wapf-progress-steps div:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  display: block;
  font-size: 10px;
  background: #ededed;
}
.wapf-progress-steps div.active:before {
  background: rgb(60, 100, 173);
  color: white;
}

.wapf-progress-bar {
  background: rgb(60, 100, 173);
  width: 0%;
}

.wapf img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.wichtig .wapf-field-input {
  color: red;
}

.wapf-swatch--image.wapf-checked {
  border: 3px solid green !important;
}

.wapf-field-label {
  background-color: black;
  color: white;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.wapf-field-description {
  margin: 10px 0 !important;
  font-size: 15px !important;
}

input.wapf-input, select.wapf-input {
  padding: 5px;
  font-size: 15px;
  border: 1px solid rgb(60, 100, 173);
  outline: none;
  resize: none;
}

.wapf-field-input textarea {
  padding: 5px;
  font-size: 15px;
  border: 1px solid rgb(60, 100, 173);
  outline: none;
  resize: none;
  min-height: 80px;
}

.wapf-color.wapf--circle {
  border: 1px solid black;
}

.wapf-field-container {
  padding: 10px !important;
}
@media screen and (min-width: 768px) {
  .wapf-field-container {
    padding: 20px !important;
  }
}

.sizes-container {
  border: 2px solid rgb(60, 100, 173);
  border-radius: 5px;
}
.sizes-container .sizes {
  background-color: rgb(60, 100, 173);
  color: white;
  text-align: center;
  font-size: 15px;
  position: relative;
}
.sizes-container .sizes i {
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.sizes-container .sizes-row {
  border-bottom: 1px solid lightgray;
}
.sizes-container .sizes-row .wapf-field-label {
  padding: 5px 3px;
}
.sizes-container .sizes-row .wapf-field-label {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
  color: black;
  font-weight: bold;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .sizes-container .sizes-row .wapf-field-label {
    font-size: 15px;
  }
}

.labelhf .wapf-field-description {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.wapf-field-calc {
  display: block !important;
}

.wapf-swatch--text.wapf-checked {
  background-color: rgb(60, 100, 173) !important;
}

.hidden {
  display: none;
}

.conditionals {
  margin: 15px;
  border: 2px solid red;
  border-radius: 20px;
  color: red;
}
@media screen and (min-width: 768px) {
  .conditionals {
    margin: 20 20px;
  }
}
.conditionals strong {
  display: block;
}

.image-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.733);
  margin-top: -1px;
  -webkit-animation: zoom 0.3s ease-in-out;
          animation: zoom 0.3s ease-in-out;
  z-index: 5;
}
.image-modal img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .image-modal img {
    width: 50%;
  }
}

.imgCloseBtn {
  color: rgba(255, 255, 255, 0.87);
  font-size: 25px;
  position: absolute;
  top: 10%;
  right: 10%;
  margin: 20px;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.imgCloseBtn:hover {
  color: rgb(255, 255, 255);
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
main {
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  main {
    padding: 40px;
  }
}
main .main-heading h1 {
  color: rgb(60, 100, 173);
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 34px;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  main .main-heading h1 {
    font-size: 36px;
  }
}
main .main-heading h3 {
  color: rgb(60, 100, 173);
  margin: 20px 0;
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  main .main-heading h3 {
    font-size: 22px;
  }
}
main .main-heading p {
  text-align: justify;
  font-size: 14px;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
  margin: 5px 0;
}
@media screen and (min-width: 1024px) {
  main .main-heading p {
    font-size: 16px;
  }
}
main .three-blocks {
  margin: 50px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main .three-blocks .about {
  background-color: rgb(60, 100, 173);
  padding: 20px;
  text-align: center;
  color: white;
}
main .three-blocks .about h2 {
  margin-bottom: 10px;
}
main .three-blocks div.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  main .three-blocks div.columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main .three-blocks div.columns div.single {
    -ms-flex-preferred-size: calc(50% - 30px);
        flex-basis: calc(50% - 30px);
  }
}
@media screen and (min-width: 1024px) {
  main .three-blocks div.columns {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
main .three-blocks div.columns div.single {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 15px 0;
}
main .three-blocks div.columns div.single:hover {
  background-color: rgb(60, 100, 173);
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  color: white;
}
main .three-blocks div.columns div.single:hover .copy h4 {
  color: white;
  border-color: white;
}
@media screen and (min-width: 768px) {
  main .three-blocks div.columns div.single {
    margin: 15px 30px 15px 0;
  }
}
@media screen and (min-width: 1024px) {
  main .three-blocks div.columns div.single {
    -ms-flex-preferred-size: calc(33.33% - 30px);
        flex-basis: calc(33.33% - 30px);
    margin: 15px 0;
  }
}
main .three-blocks div.columns div.single img {
  max-width: 100%;
}
main .three-blocks div.columns div.single .copy {
  padding: 20px;
}
main .three-blocks div.columns div.single .copy h4 {
  padding-bottom: 10px;
  border-bottom: 2px solid rgb(60, 100, 173);
  font-size: 16px;
  color: rgb(60, 100, 173);
}
main .three-blocks div.columns div.single .copy p {
  padding-top: 10px;
  font-size: 14px;
  text-align: justify;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
}
main .warum_wir {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
}
main .warum_wir .single {
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .warum_wir .single i {
  font-size: 40px;
  color: rgb(60, 100, 173);
}
main .warum_wir .single .copy {
  -ms-flex-preferred-size: calc(100% - 40px - 30px);
      flex-basis: calc(100% - 40px - 30px);
}
main .warum_wir .single .copy h5 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
main .warum_wir .single .copy p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  main .warum_wir {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main .warum_wir .single {
    -ms-flex-preferred-size: calc(50% - 5px);
        flex-basis: calc(50% - 5px);
    margin: 15px 2.5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  main .warum_wir .single {
    -ms-flex-preferred-size: calc(33.33% - 5px);
        flex-basis: calc(33.33% - 5px);
    margin: 15px 2.5px;
  }
}

.blog-posts {
  margin: 50px 0;
}
.blog-posts.blog {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .blog-posts.blog {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.blog-posts h3 {
  color: rgb(60, 100, 173);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .blog-posts h3 {
    font-size: 28px;
    margin-bottom: 50px;
  }
}
.blog-posts .posts-container {
  width: 100%;
}
.blog-posts .posts-container .posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .blog-posts .posts-container .posts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .blog-posts .posts-container .posts.blog {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.blog-posts .posts-container .posts .single-post {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 350px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.blog-posts .posts-container .posts .single-post:hover {
  background-color: rgb(60, 100, 173);
}
.blog-posts .posts-container .posts .single-post:hover .post-text {
  color: white;
}
.blog-posts .posts-container .posts .single-post:hover .post-text .category {
  background-color: white;
  border: 1px solid rgb(60, 100, 173);
  color: rgb(60, 100, 173);
}
.blog-posts .posts-container .posts .single-post:hover .post-text h2 {
  color: white;
}
.blog-posts .posts-container .posts .single-post:hover .info {
  border-color: white;
  color: white;
}
@media screen and (min-width: 768px) {
  .blog-posts .posts-container .posts .single-post {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    margin: 15px 10px;
  }
}
.blog-posts .posts-container .posts .single-post .img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.blog-posts .posts-container .posts .single-post .img img {
  width: 100%;
  min-height: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.blog-posts .posts-container .posts .single-post .post-text {
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.blog-posts .posts-container .posts .single-post .post-text .category {
  background-color: rgb(60, 100, 173);
  cursor: pointer;
  padding: 5px 20px;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}
.blog-posts .posts-container .posts .single-post .post-text h2 {
  font-size: 14px;
  color: rgb(60, 100, 173);
  margin-bottom: 20px;
  min-height: 60px;
}
@media screen and (min-width: 1024px) {
  .blog-posts .posts-container .posts .single-post .post-text h2 {
    font-size: 15px;
  }
}
.blog-posts .posts-container .posts .single-post .post-text .short-description {
  margin: 20px 0 10px 0;
  min-height: 80px;
  text-align: justify;
  word-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  font-size: 13px;
}
.blog-posts .posts-container .posts .single-post .info {
  padding: 15px 0;
  margin: 0 15px;
  border-top: 1px solid rgb(60, 100, 173);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-posts .posts-container .posts .single-post .info img {
  width: 25px;
  height: 25px;
  margin-right: 3px;
}
.blog-posts .posts-container .posts .single-post .info .data {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.home-link {
  position: relative;
  padding: 30px 0;
  margin: 20px 0;
  text-align: center;
}
.home-link::before {
  content: " ";
  display: block;
  background: rgb(60, 100, 173);
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 1;
}
.home-link div.inner {
  display: inline;
  background: white;
  z-index: 2;
  position: relative;
}
.home-link div.inner a {
  border: 2px solid rgb(60, 100, 173);
  z-index: 2;
  position: relative;
  margin: 0 20px;
  padding: 10px 20px;
  color: rgb(60, 100, 173);
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.home-link div.inner a:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}

.one-post {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media screen and (min-width: 768px) {
  .one-post {
    margin: 15px 10px;
    max-width: 1000px;
  }
}
.one-post .img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.one-post .img img {
  width: 100%;
  min-height: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.one-post .post-text {
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .one-post .post-text {
    padding: 40px;
  }
}
.one-post .post-text .category {
  background-color: rgb(60, 100, 173);
  cursor: pointer;
  padding: 5px 20px;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}
.one-post .post-text h2 {
  font-size: 20px;
  color: black;
  margin: 40px 0;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .one-post .post-text h2 {
    font-size: 26px;
  }
}
.one-post .post-text .content {
  font-size: 14px !important;
}
.one-post .post-text .content * {
  margin: 20px 0;
  height: unset;
  min-height: unset;
  font-size: 14pp;
}
@media screen and (min-width: 1024px) {
  .one-post .post-text .content * {
    font-size: 16px;
  }
}
.one-post .post-text .content h2, .one-post .post-text .content h3, .one-post .post-text .content h4, .one-post .post-text .content h5 {
  font-size: 16px;
  color: black;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .one-post .post-text .content h2, .one-post .post-text .content h3, .one-post .post-text .content h4, .one-post .post-text .content h5 {
    font-size: 18px;
  }
}
.one-post .post-text .content a {
  color: black;
  font-weight: bold;
}
.one-post .post-text .content a:hover {
  background-color: rgb(60, 100, 173);
}
@media screen and (min-width: 1024px) {
  .one-post .post-text .content {
    font-size: 15px;
  }
}
.one-post .info {
  padding: 15px 0;
  margin: 0 15px;
  border-bottom: 1px solid rgb(60, 100, 173);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .one-post .info {
    padding: 40px 0;
    margin: 0 40px;
  }
}
.one-post .info img {
  width: 25px;
  height: 25px;
  margin-right: 3px;
}
.one-post .info .data {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.referenzen {
  background-color: rgb(60, 100, 173);
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .referenzen {
    padding: 40px;
  }
}
.referenzen h2 {
  color: white;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  margin: 15px 0 30px 0;
}
.referenzen .refenzes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .referenzen .refenzes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .referenzen .refenzes .single-referenze {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
  }
}
.referenzen .refenzes .single-referenze {
  background-color: white;
  border-radius: 25px;
  padding: 15px;
  margin: 20px 0;
}
.referenzen .refenzes .single-referenze .txt {
  font-size: 14px;
}
.referenzen .refenzes .single-referenze .txt p {
  margin: 15px 0;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
}
.referenzen .refenzes .single-referenze .images {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (min-width: 768px) {
  .referenzen .refenzes .single-referenze .images {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.referenzen .refenzes .single-referenze .images a {
  margin-bottom: 20px;
  margin-right: 20px;
}
.referenzen .refenzes .single-referenze .images a img {
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 124.3px;
  border-radius: 5px;
}
.referenzen .refenzes .single-referenze h3 {
  text-transform: uppercase;
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .referenzen .refenzes .single-referenze h3 {
    text-align: left;
  }
}
.referenzen .loadmore {
  text-align: center;
  margin: 10px 0;
}
.referenzen .loadmore #loadMore {
  border: 1px solid white;
  padding: 10px 20px;
  color: white;
  font-size: 14px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.referenzen .loadmore #loadMore:hover {
  background-color: white;
  color: rgb(60, 100, 173);
}
.referenzen .loadmore #loadMore.noContent {
  color: white !important;
  background-color: transparent;
  border: none;
}

.contact-data h2 {
  color: rgb(60, 100, 173);
  font-size: 22px;
}
@media screen and (min-width: 1024px) {
  .contact-data h2 {
    margin: 40px 0;
    text-align: center;
    font-size: 28px;
  }
}
.contact-data section.data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .contact-data section.data {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contact-data section.data div.dane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0px;
  border-radius: 5px 0px 0px 5px;
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .contact-data section.data div.dane {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
    border: 2px solid rgb(60, 100, 173);
    padding: 10px 20px;
  }
}
.contact-data section.data div.dane div.col {
  padding: 10px 0;
}
.contact-data section.data div.dane div.col a {
  color: #000;
  font-weight: 700;
}
.contact-data section.data div.dane div.col a:hover {
  color: rgb(60, 100, 173);
}
.contact-data section.data div.dane div.col h3 {
  margin-bottom: 10px;
}
.contact-data section.data form {
  background-color: rgb(60, 100, 173);
  padding: 50px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0px 5px 5px 0px;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .contact-data section.data form {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    border: 2px solid rgb(60, 100, 173);
  }
}
.contact-data section.data form * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
}
.contact-data section.data form label {
  color: #fff;
  margin: 5px 0;
  display: inline;
}
.contact-data section.data form label a {
  display: inline;
  color: #28a31d;
  font-weight: bold;
}
.contact-data section.data form input:not(input[type=checkbox]) {
  border: 1px solid #fff;
  height: 40px;
  color: #fff;
  margin: 5px 0;
}
.contact-data section.data form textarea {
  border: 1px solid #fff;
  height: 150px;
  resize: none;
  color: #fff;
  margin: 5px 0;
  width: 100%;
}
.contact-data section.data form input[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 180px;
  font-size: 14px;
  text-transform: uppercase;
}
.contact-data section.data form input[type=submit]:hover {
  background-color: #fff;
  color: rgb(60, 100, 173);
  font-weight: 700;
  cursor: pointer;
}
.contact-data section.data form input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: rgb(60, 100, 173);
  border: 1px solid white;
}

.wpcf7-list-item {
  margin: 0;
}

div.iframe iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.wpcf7-response-output {
  margin: 0 !important;
  color: white;
}

.wpcf7-not-valid-tip {
  color: red;
  padding: 5px 0px;
}

.wpcf7 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.single-page * {
  margin: 5px 0;
  list-style: none;
  text-align: justify;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
}
.single-page strong {
  margin-bottom: 20px;
}

.montageanleitungen {
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .montageanleitungen {
    padding: 40px;
  }
}
.montageanleitungen .montageanleitungen-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.montageanleitungen .montageanleitungen-container .single-montageanleitungen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  width: 135px;
  height: 135px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  font-size: 12px;
  color: black;
  text-align: justify;
  word-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  text-align: center;
  margin: 0 5px 10px 0;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.montageanleitungen .montageanleitungen-container .single-montageanleitungen:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}
@media screen and (min-width: 768px) {
  .montageanleitungen .montageanleitungen-container .single-montageanleitungen {
    width: 150px;
    height: 150px;
    margin: 0 10px 10px 0;
    font-size: 14px;
  }
}
.montageanleitungen .montageanleitungen-container .single-montageanleitungen img {
  width: 40px;
  margin-bottom: 10px;
}

.montagefilme {
  padding: 0 20px 20px 20px;
}
@media screen and (min-width: 1024px) {
  .montagefilme {
    padding: 0 40px 40px 40px;
  }
}
.montagefilme .montagefilme-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.montagefilme .montagefilme-container .single-montagefilme {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  font-size: 14px;
  color: black;
  text-align: justify;
  word-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  text-align: center;
  margin: 25px 0px;
}
@media screen and (min-width: 768px) {
  .montagefilme .montagefilme-container .single-montagefilme {
    width: calc(50% - 10px);
    padding: 25px;
  }
}
.montagefilme .montagefilme-container .single-montagefilme p {
  font-size: 16px;
  margin: 20px 0;
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(60, 100, 173);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .montagefilme .montagefilme-container .single-montagefilme {
    font-size: 14px;
  }
}
.montagefilme .montagefilme-container .single-montagefilme img {
  width: 40px;
  margin-bottom: 10px;
}
.montagefilme .montagefilme-container .single-montagefilme video {
  width: 100%;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

div.error {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
div.error h2 {
  color: #e7ebf2;
  font-size: 60px;
  letter-spacing: 0.1em;
  margin: 0.025em 0;
  text-shadow: 0.05em 0.05em 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  div.error h2 {
    font-size: 120px;
  }
}
div.error h2 span {
  -webkit-animation: spooky 2s alternate infinite linear;
          animation: spooky 2s alternate infinite linear;
  color: rgb(60, 100, 173);
  display: inline-block;
}
div.error h3 {
  color: rgb(60, 100, 173);
  margin-bottom: 0.4em;
}
div.error h3 p {
  color: #ccc;
  margin-top: 0;
}
div.error a {
  border: 1px solid rgb(60, 100, 173);
  color: rgb(60, 100, 173);
  padding: 10px 20px;
  margin-top: 20px;
  font-weight: bold;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
div.error a:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}

@-webkit-keyframes spooky {
  from {
    -webkit-transform: translatey(0.15em) scaley(0.95);
            transform: translatey(0.15em) scaley(0.95);
  }
  to {
    -webkit-transform: translatey(-0.15em);
            transform: translatey(-0.15em);
  }
}

@keyframes spooky {
  from {
    -webkit-transform: translatey(0.15em) scaley(0.95);
            transform: translatey(0.15em) scaley(0.95);
  }
  to {
    -webkit-transform: translatey(-0.15em);
            transform: translatey(-0.15em);
  }
}
.shop-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .shop-page {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.shop-page #primary {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media screen and (min-width: 1024px) {
  .shop-page #primary {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.shop-page main#main {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .shop-page main#main {
    display: block;
    padding: 15px;
  }
  .shop-page main#main p.woocommerce-result-count, .shop-page main#main form.woocommerce-ordering {
    text-align: right;
  }
}
.shop-page main#main select.orderby {
  padding: 10px 20px;
  border: 1px solid rgb(60, 100, 173);
  outline: none;
  margin: 5px 0;
}
.shop-page main#main ul.products {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 1024px) {
  .shop-page main#main ul.products li.product {
    margin: 20px 0 20px 20px;
  }
}
.shop-page main#main .additional-content {
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .shop-page main#main .additional-content {
    padding: 40px;
  }
}
.shop-page main#main .additional-content * {
  margin: 10px 0;
  text-align: justify;
}
.shop-page main#main .additional-content ol {
  list-style-type: "- ";
  padding-left: 10px;
}
.shop-page main#main .additional-content li {
  list-style-type: "- ";
  padding-left: 10px;
}

.wc-block-price-filter__controls input {
  border-color: rgb(60, 100, 173);
  outline: none;
}
.wc-block-price-filter__controls input:focus {
  background-color: rgb(60, 100, 173);
  color: white;
}

.woocommerce-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .woocommerce-breadcrumb {
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.woocommerce-breadcrumb a {
  color: black;
  font-weight: bold;
}
.woocommerce-breadcrumb a:hover {
  color: rgb(60, 100, 173);
}

.product-page #primary main#main {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .product-page #primary main#main .woocommerce-breadcrumb {
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.product-page #primary main#main .woocommerce-notices-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.product-page #primary main#main .woocommerce-notices-wrapper .woocommerce-message {
  padding: 20px;
  background-color: #32CD32;
  color: white;
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .product-page #primary main#main .woocommerce-notices-wrapper .woocommerce-message {
    max-width: 50%;
  }
}
.product-page #primary main#main .woocommerce-notices-wrapper .woocommerce-message a {
  color: white;
  font-weight: bold;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  font-size: 18px;
}
.product-page #primary main#main .woocommerce-notices-wrapper .woocommerce-message a:hover {
  color: rgb(60, 100, 173);
}
.product-page #primary main#main div.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 20px 0 0 0;
}
@media screen and (min-width: 768px) {
  .product-page #primary main#main div.product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.product-page #primary main#main div.product .sticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.product-page #primary main#main div.product .sticky .onsale {
  display: none;
}
.product-page #primary main#main div.product .sticky .woocommerce-product-gallery {
  position: relative;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .product-page #primary main#main div.product .sticky .woocommerce-product-gallery {
    position: sticky;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
.product-page #primary main#main div.product .sticky .woocommerce-product-gallery .show-images {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  background-color: rgb(60, 100, 173);
  padding: 10px;
  color: white;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
}
.product-page #primary main#main div.product .sticky .woocommerce-product-gallery .show-images i {
  background-color: white;
  color: rgb(60, 100, 173);
  padding: 5px;
  margin-right: 5px;
}
.product-page #primary main#main div.product .sticky .woocommerce-product-gallery figure div a img {
  width: 100%;
  height: auto;
}
.product-page #primary main#main div.product .sticky .woocommerce-product-gallery ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 10px 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  height: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.product-page #primary main#main div.product .sticky .woocommerce-product-gallery ol.active {
  height: auto;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.product-page #primary main#main div.product .sticky .woocommerce-product-gallery ol li img {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin: 5px;
}
.product-page #primary main#main div.product .sticky .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.product-page #primary main#main div.product .sticky .summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .product-page #primary main#main div.product .sticky .summary {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 600px;
  }
}
.product-page #primary main#main div.product .sticky .summary h2.product_title {
  background-color: rgb(60, 100, 173);
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  color: white;
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .product-page #primary main#main div.product .sticky .summary h2.product_title {
    margin: 0 0 30px 0;
  }
}
.product-page #primary main#main div.product .sticky .summary p.price {
  color: rgb(60, 100, 173);
  margin-bottom: 10px;
  font-size: 32px;
}
.product-page #primary main#main div.product .sticky .summary p.price del bdi {
  display: none;
}
.product-page #primary main#main div.product .sticky .summary .woocommerce-product-details__short-description {
  font-size: 14px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  text-align: justify;
  margin: 25px 0;
}
.product-page #primary main#main div.product .sticky .summary div.product_meta {
  border-top: 1px solid #aaa;
  font-size: 14px;
  margin-bottom: 25px;
  padding-top: 25px;
}
.product-page #primary main#main div.product .sticky .summary div.product_meta a {
  color: rgb(60, 100, 173);
}
.product-page #primary main#main div.product .sticky .summary div.product_meta * {
  margin: 5px 0;
}
.product-page #primary main#main div.product .sticky .summary form.cart {
  margin-bottom: 25px;
  font-size: 14px;
}
.product-page #primary main#main div.product .sticky .summary form.cart div.quantity {
  display: block;
  font-size: 16px;
}
.product-page #primary main#main div.product .sticky .summary form.cart div.quantity button {
  padding: 5px 10px;
  border: 1px solid rgb(60, 100, 173);
  color: rgb(60, 100, 173);
  font-size: 16px;
  font-weight: bold;
}
.product-page #primary main#main div.product .sticky .summary form.cart div.quantity button:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}
.product-page #primary main#main div.product .sticky .summary form.cart div.quantity input {
  padding: 5px 10px;
  border: 1px solid rgb(60, 100, 173);
  color: rgb(60, 100, 173);
  font-size: 16px;
  font-weight: bold;
  width: 75px;
  text-align: center;
  margin: 0 5px;
}
.product-page #primary main#main div.product .sticky .summary form.cart button {
  margin-top: 10px;
}
.product-page #primary main#main div.product .sticky .summary form.cart button[name=add-to-cart] {
  margin-top: 30px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #fc0;
  color: #263238;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  background-color: #fc0;
}
.product-page #primary main#main div.product .sticky .summary form.cart button[name=add-to-cart]:hover {
  background-color: #ffb500;
}
.product-page #primary main#main div.product .sticky .summary form.cart button[name=wc-quick-buy-now] {
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  display: none;
  cursor: pointer;
  border: 1px solid rgb(60, 100, 173);
  color: white;
  background-color: rgb(60, 100, 173);
  margin-top: 20px;
}
.product-page #primary main#main div.product .sticky .summary form.cart button[name=wc-quick-buy-now]:hover {
  background-color: rgb(60, 100, 173);
}
.product-page #primary main#main div.product .sticky .summary form.cart .cart-info {
  display: none;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .product-page #primary main#main div.product div.woocommerce-tabs {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.product-page #primary main#main div.product div.woocommerce-tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-page #primary main#main div.product div.woocommerce-tabs ul li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.product-page #primary main#main div.product div.woocommerce-tabs ul li a {
  display: block;
  padding: 10px 20px;
  color: black;
  border: 1px solid rgb(60, 100, 173);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
}
.product-page #primary main#main div.product div.woocommerce-tabs ul li a img {
  width: 100%;
  max-width: 480px;
}
.product-page #primary main#main div.product div.woocommerce-tabs ul li a:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}
.product-page #primary main#main div.product div.woocommerce-tabs ul li.active a {
  background-color: rgb(60, 100, 173);
  color: white;
}
.product-page #primary main#main div.product div.woocommerce-tabs .woocommerce-Tabs-panel {
  margin: 20px 0;
  font-size: 14px;
}
.product-page #primary main#main div.product div.woocommerce-tabs .woocommerce-Tabs-panel h2 {
  margin: 5px 0;
  font-size: 16px;
}
.product-page #primary main#main div.product div.woocommerce-tabs .woocommerce-Tabs-panel h2:first-child {
  display: none;
}
.product-page #primary main#main div.product div.woocommerce-tabs .woocommerce-Tabs-panel * {
  margin: 10px 0;
}
.product-page #primary main#main div.product div.woocommerce-tabs .woocommerce-Tabs-panel tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-page #primary main#main div.product div.woocommerce-tabs .woocommerce-Tabs-panel tr td {
  width: 260px;
  margin: 10px;
}
.product-page #primary main#main div.product div.woocommerce-tabs .woocommerce-Tabs-panel tr td img {
  width: 100%;
  height: auto;
}
.product-page #primary main#main div.product div.woocommerce-tabs .woocommerce-Tabs-panel .technische-details td .icon {
  width: 50px;
  height: 50px;
}
.product-page #primary main#main div.product div.woocommerce-tabs .woocommerce-Tabs-panel .technische-details td img {
  width: 100%;
  max-width: 400px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .product-page #primary main#main div.product section.related {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.product-page #primary main#main div.product section.related h2 {
  color: rgb(60, 100, 173);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .product-page #primary main#main div.product section.related h2 {
    font-size: 28px;
    margin-bottom: 50px;
  }
}
.product-page #primary main#main div.product section.related ul h2 {
  color: black;
  font-size: 16px;
  margin-top: 30px;
  min-height: 120px;
}

#tab-technische-details > * > img {
  width: 100%;
  max-width: 480px;
}

.single-page .woocommerce * {
  margin: 0;
}
.single-page .woocommerce .woocommerce-notices-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.single-page .woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  padding: 20px;
  margin-bottom: 10px;
  background-color: #32CD32;
  color: white;
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .single-page .woocommerce .woocommerce-notices-wrapper .woocommerce-message {
    max-width: 50%;
  }
}
.single-page .woocommerce .woocommerce-notices-wrapper .woocommerce-message a {
  color: white;
  font-weight: bold;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  font-size: 18px;
}
.single-page .woocommerce .woocommerce-notices-wrapper .woocommerce-message a:hover {
  color: rgb(60, 100, 173);
}
.single-page .woocommerce button[name=update_cart] {
  padding: 10px 20px;
  background-color: black;
  color: white;
  font-size: 15px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.single-page .woocommerce button[name=update_cart]:hover {
  background-color: rgb(60, 100, 173);
}
.single-page .woocommerce .weiter {
  border: 1px solid black;
  padding: 10px 0;
  text-align: center;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart {
  border: 1px solid rgb(60, 100, 173);
  padding: 10px;
  border-radius: 10px;
  width: 100%;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart thead {
  display: none;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(60, 100, 173);
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 5px 10px 0;
}
@media screen and (min-width: 1024px) {
  .single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-remove {
  -ms-flex-preferred-size: 30px;
      flex-basis: 30px;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-remove a {
  text-align: center;
  line-height: 30px;
  background-color: red;
  color: white;
  border-radius: 50%;
  display: block;
  width: 30px;
  height: 30px;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-thumbnail {
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-thumbnail a img {
  width: 100px;
  height: auto;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-price {
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-quantity {
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-quantity div.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-quantity div.quantity button {
  padding: 5px 10px;
  border: 1px solid rgb(60, 100, 173);
  color: rgb(60, 100, 173);
  font-size: 16px;
  font-weight: bold;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-quantity div.quantity button:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-quantity div.quantity input {
  padding: 5px 10px;
  border: 1px solid rgb(60, 100, 173);
  color: rgb(60, 100, 173);
  font-size: 16px;
  font-weight: bold;
  width: 75px;
  text-align: center;
  margin: 0 5px;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-subtotal {
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name {
    -ms-flex-preferred-size: min-content;
        flex-basis: min-content;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name a:nth-child(1) {
  color: black;
  font-weight: bold;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name a:nth-child(2) {
  color: white;
  font-size: 14px;
  font-weight: bold;
  background-color: black;
  padding: 5px 10px;
  width: 100%;
  max-width: 150px;
  text-align: center;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name .variation {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin: 20px 0;
  font-size: 13px;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name .variation .wapf-pricing-hint {
  display: none;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name .variation dt {
  font-weight: bold;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name .variation dt.variation-Na {
  opacity: 0;
}
.single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name .variation dd {
  margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  .single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name .variation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .single-page .woocommerce form.woocommerce-cart-form table.shop_table_responsive.cart tr td.product-name .variation * {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.single-page .woocommerce .cart-collaterals {
  margin: 30px 0;
  border: 1px solid rgb(60, 100, 173);
  border-radius: 10px;
  max-width: 600px;
}
.single-page .woocommerce .cart-collaterals h2 {
  font-size: 15px;
  background-color: rgb(60, 100, 173);
  color: white;
  padding: 5px 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .single-page .woocommerce .cart-collaterals h2 {
    padding: 10px 10px;
    font-size: 16px;
  }
}
.single-page .woocommerce .cart-collaterals table {
  padding: 5px 10px;
  font-size: 14px;
  border-bottom: 1px solid rgb(60, 100, 173);
  width: 100%;
}
.single-page .woocommerce .cart-collaterals table tr {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-page .woocommerce .cart-collaterals table tr td:nth-child(1) {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
.single-page .woocommerce .cart-collaterals table tr td:nth-child(2) {
  -ms-flex-preferred-size: calc(70% - 10px);
      flex-basis: calc(70% - 10px);
  text-align: right;
}
.single-page .woocommerce .cart-collaterals table tr td:nth-child(2) * {
  text-align: right;
}
.single-page .woocommerce .cart-collaterals .wc-proceed-to-checkout {
  padding: 5px 0;
  margin: 10px 0;
}
.single-page .woocommerce .cart-collaterals .wc-proceed-to-checkout .ppcp-messages {
  margin: 10px;
}
.single-page .woocommerce .cart-collaterals .wc-proceed-to-checkout a {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #fc0;
  color: #263238;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  background-color: #fc0;
  margin: 10px;
}
.single-page .woocommerce .cart-collaterals .wc-proceed-to-checkout a:hover {
  background-color: #ffb500;
}
.single-page .return-to-shop a {
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid #fc0;
  color: #263238;
  background-color: #fc0;
}
.single-page .return-to-shop a:hover {
  background-color: #ffb500;
}
.single-page .cart-empty {
  margin: 20px 0;
}

.woocommerce form[name=checkout] {
  border: 1px solid rgb(60, 100, 173);
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
}
.woocommerce form[name=checkout] .woocommerce-account-fields {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .woocommerce form[name=checkout] .woocommerce-account-fields {
    padding: 20px;
  }
}
.woocommerce form[name=checkout] table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce form[name=checkout] table thead, .woocommerce form[name=checkout] table tbody, .woocommerce form[name=checkout] table tfoot {
  width: 100%;
}
.woocommerce form[name=checkout] table thead tr, .woocommerce form[name=checkout] table tbody tr, .woocommerce form[name=checkout] table tfoot tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.woocommerce form[name=checkout] table thead tr.order-total td, .woocommerce form[name=checkout] table tbody tr.order-total td, .woocommerce form[name=checkout] table tfoot tr.order-total td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.woocommerce form[name=checkout] table thead tr .product-total, .woocommerce form[name=checkout] table tbody tr .product-total, .woocommerce form[name=checkout] table tfoot tr .product-total {
  display: none;
}
.woocommerce form[name=checkout] table thead tr td, .woocommerce form[name=checkout] table tbody tr td, .woocommerce form[name=checkout] table tfoot tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 5px 10px 0;
}
@media screen and (min-width: 1024px) {
  .woocommerce form[name=checkout] table thead tr td, .woocommerce form[name=checkout] table tbody tr td, .woocommerce form[name=checkout] table tfoot tr td {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .woocommerce form[name=checkout] table thead tr td.product-name, .woocommerce form[name=checkout] table tbody tr td.product-name, .woocommerce form[name=checkout] table tfoot tr td.product-name {
    position: relative;
  }
  .woocommerce form[name=checkout] table thead tr td.product-name strong, .woocommerce form[name=checkout] table tbody tr td.product-name strong, .woocommerce form[name=checkout] table tfoot tr td.product-name strong {
    position: absolute;
    top: 0;
    left: 52%;
  }
}
.woocommerce form[name=checkout] table thead tr td .variation, .woocommerce form[name=checkout] table tbody tr td .variation, .woocommerce form[name=checkout] table tfoot tr td .variation {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin: 20px 0;
  font-size: 13px;
}
.woocommerce form[name=checkout] table thead tr td .variation .wapf-pricing-hint, .woocommerce form[name=checkout] table tbody tr td .variation .wapf-pricing-hint, .woocommerce form[name=checkout] table tfoot tr td .variation .wapf-pricing-hint {
  display: none;
}
.woocommerce form[name=checkout] table thead tr td .variation dt, .woocommerce form[name=checkout] table tbody tr td .variation dt, .woocommerce form[name=checkout] table tfoot tr td .variation dt {
  font-weight: bold;
}
.woocommerce form[name=checkout] table thead tr td .variation dt.variation-Na, .woocommerce form[name=checkout] table tbody tr td .variation dt.variation-Na, .woocommerce form[name=checkout] table tfoot tr td .variation dt.variation-Na {
  opacity: 0;
}
.woocommerce form[name=checkout] table thead tr td .variation dd, .woocommerce form[name=checkout] table tbody tr td .variation dd, .woocommerce form[name=checkout] table tfoot tr td .variation dd {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .woocommerce form[name=checkout] table thead tr td .variation, .woocommerce form[name=checkout] table tbody tr td .variation, .woocommerce form[name=checkout] table tfoot tr td .variation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .woocommerce form[name=checkout] table thead tr td .variation *, .woocommerce form[name=checkout] table tbody tr td .variation *, .woocommerce form[name=checkout] table tfoot tr td .variation * {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.woocommerce form[name=checkout] table thead tr {
  padding: 10px 0;
}
.woocommerce form[name=checkout] table tbody, .woocommerce form[name=checkout] table thead, .woocommerce form[name=checkout] table tfoot {
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(60, 100, 173);
}
.woocommerce form[name=checkout] .woocommerce-error {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .woocommerce form[name=checkout] .woocommerce-error {
    padding: 20px;
  }
}
.woocommerce form[name=checkout] .woocommerce-error li strong {
  color: red;
}
.woocommerce form[name=checkout] * {
  text-align: left;
  -webkit-hyphens: unset;
      -ms-hyphens: unset;
          hyphens: unset;
  word-wrap: normal;
}
.woocommerce form[name=checkout] h3 {
  font-size: 15px;
  background-color: rgb(60, 100, 173);
  color: white;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .woocommerce form[name=checkout] h3 {
    padding: 20px;
    font-size: 16px;
  }
}
.woocommerce form[name=checkout] .woocommerce-billing-fields, .woocommerce form[name=checkout] .woocommerce-shipping-fields, .woocommerce form[name=checkout] .woocommerce-additional-fields, .woocommerce form[name=checkout] .woocommerce-checkout-review-order {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .woocommerce form[name=checkout] .woocommerce-billing-fields, .woocommerce form[name=checkout] .woocommerce-shipping-fields, .woocommerce form[name=checkout] .woocommerce-additional-fields, .woocommerce form[name=checkout] .woocommerce-checkout-review-order {
    padding: 20px;
  }
}
.woocommerce form[name=checkout] .woocommerce-billing-fields p.form-row, .woocommerce form[name=checkout] .woocommerce-shipping-fields p.form-row, .woocommerce form[name=checkout] .woocommerce-additional-fields p.form-row, .woocommerce form[name=checkout] .woocommerce-checkout-review-order p.form-row {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields p.form-row *, .woocommerce form[name=checkout] .woocommerce-shipping-fields p.form-row *, .woocommerce form[name=checkout] .woocommerce-additional-fields p.form-row *, .woocommerce form[name=checkout] .woocommerce-checkout-review-order p.form-row * {
  width: 100%;
  resize: none;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields p.form-row label, .woocommerce form[name=checkout] .woocommerce-shipping-fields p.form-row label, .woocommerce form[name=checkout] .woocommerce-additional-fields p.form-row label, .woocommerce form[name=checkout] .woocommerce-checkout-review-order p.form-row label {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: bold;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields p.form-row label.screen-reader-text, .woocommerce form[name=checkout] .woocommerce-shipping-fields p.form-row label.screen-reader-text, .woocommerce form[name=checkout] .woocommerce-additional-fields p.form-row label.screen-reader-text, .woocommerce form[name=checkout] .woocommerce-checkout-review-order p.form-row label.screen-reader-text {
  display: none !important;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields p.form-row input, .woocommerce form[name=checkout] .woocommerce-billing-fields p.form-row select, .woocommerce form[name=checkout] .woocommerce-shipping-fields p.form-row input, .woocommerce form[name=checkout] .woocommerce-shipping-fields p.form-row select, .woocommerce form[name=checkout] .woocommerce-additional-fields p.form-row input, .woocommerce form[name=checkout] .woocommerce-additional-fields p.form-row select, .woocommerce form[name=checkout] .woocommerce-checkout-review-order p.form-row input, .woocommerce form[name=checkout] .woocommerce-checkout-review-order p.form-row select {
  min-height: 40px;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields p.form-row textarea, .woocommerce form[name=checkout] .woocommerce-shipping-fields p.form-row textarea, .woocommerce form[name=checkout] .woocommerce-additional-fields p.form-row textarea, .woocommerce form[name=checkout] .woocommerce-checkout-review-order p.form-row textarea {
  min-height: 120px;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields p.form-row b[role=presentation], .woocommerce form[name=checkout] .woocommerce-shipping-fields p.form-row b[role=presentation], .woocommerce form[name=checkout] .woocommerce-additional-fields p.form-row b[role=presentation], .woocommerce form[name=checkout] .woocommerce-checkout-review-order p.form-row b[role=presentation] {
  display: none !important;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields #payment, .woocommerce form[name=checkout] .woocommerce-shipping-fields #payment, .woocommerce form[name=checkout] .woocommerce-additional-fields #payment, .woocommerce form[name=checkout] .woocommerce-checkout-review-order #payment {
  margin: 20px 0;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields #payment .woocommerce-privacy-policy-text, .woocommerce form[name=checkout] .woocommerce-shipping-fields #payment .woocommerce-privacy-policy-text, .woocommerce form[name=checkout] .woocommerce-additional-fields #payment .woocommerce-privacy-policy-text, .woocommerce form[name=checkout] .woocommerce-checkout-review-order #payment .woocommerce-privacy-policy-text {
  font-size: 12px;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields #payment .checkbox, .woocommerce form[name=checkout] .woocommerce-shipping-fields #payment .checkbox, .woocommerce form[name=checkout] .woocommerce-additional-fields #payment .checkbox, .woocommerce form[name=checkout] .woocommerce-checkout-review-order #payment .checkbox {
  display: inline;
  font-size: 13px;
  font-weight: normal;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields #payment .checkbox #privacy_policy, .woocommerce form[name=checkout] .woocommerce-billing-fields #payment .checkbox #privacy_policy2, .woocommerce form[name=checkout] .woocommerce-shipping-fields #payment .checkbox #privacy_policy, .woocommerce form[name=checkout] .woocommerce-shipping-fields #payment .checkbox #privacy_policy2, .woocommerce form[name=checkout] .woocommerce-additional-fields #payment .checkbox #privacy_policy, .woocommerce form[name=checkout] .woocommerce-additional-fields #payment .checkbox #privacy_policy2, .woocommerce form[name=checkout] .woocommerce-checkout-review-order #payment .checkbox #privacy_policy, .woocommerce form[name=checkout] .woocommerce-checkout-review-order #payment .checkbox #privacy_policy2 {
  width: 12px;
  min-height: 12px;
  height: 12px;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields #payment #place_order, .woocommerce form[name=checkout] .woocommerce-shipping-fields #payment #place_order, .woocommerce form[name=checkout] .woocommerce-additional-fields #payment #place_order, .woocommerce form[name=checkout] .woocommerce-checkout-review-order #payment #place_order {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #fc0;
  color: #263238;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  background-color: #fc0;
  margin: 10px 0;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields #payment #place_order:hover, .woocommerce form[name=checkout] .woocommerce-shipping-fields #payment #place_order:hover, .woocommerce form[name=checkout] .woocommerce-additional-fields #payment #place_order:hover, .woocommerce form[name=checkout] .woocommerce-checkout-review-order #payment #place_order:hover {
  background-color: #ffb500;
}
.woocommerce form[name=checkout] .woocommerce-billing-fields #payment ul li, .woocommerce form[name=checkout] .woocommerce-shipping-fields #payment ul li, .woocommerce form[name=checkout] .woocommerce-additional-fields #payment ul li, .woocommerce form[name=checkout] .woocommerce-checkout-review-order #payment ul li {
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .woocommerce #customer_details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .woocommerce #customer_details * {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
  .woocommerce #order_review * {
    max-width: 1024px;
  }
}

.woocommerce * {
  text-align: left;
  -webkit-hyphens: unset;
      -ms-hyphens: unset;
          hyphens: unset;
  word-wrap: normal;
}
.woocommerce .woocommerce-thankyou-order-received {
  margin: 10px 0;
}
.woocommerce .woocommerce-thankyou-order-details li {
  margin: 5px 0;
}
.woocommerce .woocommerce-bacs-bank-details h2 {
  font-size: 18px;
  text-align: left;
}
.woocommerce section.woocommerce-order-details {
  margin: 30px 0;
}
.woocommerce section.woocommerce-order-details h2 {
  font-size: 15px;
  background-color: rgb(60, 100, 173);
  color: white;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .woocommerce section.woocommerce-order-details h2 {
    padding: 20px;
    font-size: 16px;
  }
}
.woocommerce section.woocommerce-order-details table.order_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce section.woocommerce-order-details table.order_details thead, .woocommerce section.woocommerce-order-details table.order_details tbody, .woocommerce section.woocommerce-order-details table.order_details tfoot {
  width: 100%;
}
.woocommerce section.woocommerce-order-details table.order_details thead tr, .woocommerce section.woocommerce-order-details table.order_details tbody tr, .woocommerce section.woocommerce-order-details table.order_details tfoot tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.woocommerce section.woocommerce-order-details table.order_details thead tr .product-total, .woocommerce section.woocommerce-order-details table.order_details tbody tr .product-total, .woocommerce section.woocommerce-order-details table.order_details tfoot tr .product-total {
  display: none;
}
.woocommerce section.woocommerce-order-details table.order_details thead tr td, .woocommerce section.woocommerce-order-details table.order_details tbody tr td, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 5px 10px 0;
}
.woocommerce section.woocommerce-order-details table.order_details thead tr td a, .woocommerce section.woocommerce-order-details table.order_details tbody tr td a, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td a {
  color: rgb(60, 100, 173);
}
@media screen and (min-width: 1024px) {
  .woocommerce section.woocommerce-order-details table.order_details thead tr td, .woocommerce section.woocommerce-order-details table.order_details tbody tr td, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .woocommerce section.woocommerce-order-details table.order_details thead tr td.product-name, .woocommerce section.woocommerce-order-details table.order_details tbody tr td.product-name, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td.product-name {
    position: relative;
  }
  .woocommerce section.woocommerce-order-details table.order_details thead tr td.product-name strong.product-quantity, .woocommerce section.woocommerce-order-details table.order_details tbody tr td.product-name strong.product-quantity, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td.product-name strong.product-quantity {
    position: absolute;
    top: 0;
    left: 52%;
  }
}
.woocommerce section.woocommerce-order-details table.order_details thead tr td .wc-item-meta, .woocommerce section.woocommerce-order-details table.order_details tbody tr td .wc-item-meta, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td .wc-item-meta {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin: 20px 0;
  font-size: 13px;
}
.woocommerce section.woocommerce-order-details table.order_details thead tr td .wc-item-meta .wapf-pricing-hint, .woocommerce section.woocommerce-order-details table.order_details tbody tr td .wc-item-meta .wapf-pricing-hint, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td .wc-item-meta .wapf-pricing-hint {
  display: none;
}
.woocommerce section.woocommerce-order-details table.order_details thead tr td .wc-item-meta dt, .woocommerce section.woocommerce-order-details table.order_details tbody tr td .wc-item-meta dt, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td .wc-item-meta dt {
  font-weight: bold;
}
.woocommerce section.woocommerce-order-details table.order_details thead tr td .wc-item-meta dt.variation-Na, .woocommerce section.woocommerce-order-details table.order_details tbody tr td .wc-item-meta dt.variation-Na, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td .wc-item-meta dt.variation-Na {
  opacity: 0;
}
.woocommerce section.woocommerce-order-details table.order_details thead tr td .wc-item-meta dd, .woocommerce section.woocommerce-order-details table.order_details tbody tr td .wc-item-meta dd, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td .wc-item-meta dd {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .woocommerce section.woocommerce-order-details table.order_details thead tr td .wc-item-meta, .woocommerce section.woocommerce-order-details table.order_details tbody tr td .wc-item-meta, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td .wc-item-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .woocommerce section.woocommerce-order-details table.order_details thead tr td .wc-item-meta *, .woocommerce section.woocommerce-order-details table.order_details tbody tr td .wc-item-meta *, .woocommerce section.woocommerce-order-details table.order_details tfoot tr td .wc-item-meta * {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.woocommerce section.woocommerce-order-details table.order_details thead tr {
  padding: 10px 0;
}
.woocommerce section.woocommerce-order-details table.order_details tbody, .woocommerce section.woocommerce-order-details table.order_details thead, .woocommerce section.woocommerce-order-details table.order_details tfoot {
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(60, 100, 173);
}
.woocommerce .woocommerce-column {
  margin: 20px 0;
}
.woocommerce .woocommerce-column h2 {
  font-size: 15px;
  background-color: rgb(60, 100, 173);
  color: white;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .woocommerce .woocommerce-column h2 {
    padding: 20px;
    font-size: 16px;
  }
}

.woocommerce {
  position: relative;
  overflow: scroll;
  min-height: 500px;
}
.woocommerce .woocommerce-error {
  color: red;
  margin-bottom: 10px;
}
.woocommerce h2 {
  text-align: center;
  color: rgb(60, 100, 173);
}
.woocommerce .woocommerce-form-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  border: 1px solid rgb(60, 100, 173);
  margin: 10px auto;
  font-size: 14px;
  max-width: 300px;
  width: 100%;
}
.woocommerce .woocommerce-form-login p {
  margin: 5px 0;
}
.woocommerce .woocommerce-form-login input#username, .woocommerce .woocommerce-form-login input#password, .woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  display: block;
  margin: 5px 0;
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  outline: none;
  font-size: 15px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  background-color: black;
  color: white;
  text-transform: uppercase;
  border: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover {
  background-color: rgb(60, 100, 173);
}
.woocommerce .woocommerce-form-login a {
  color: rgb(60, 100, 173);
}
.woocommerce .woocommerce-form-login a:hover {
  font-weight: bold;
}
.woocommerce .lost_reset_password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce .lost_reset_password input {
  display: block;
  margin: 5px 0;
  width: 100%;
  max-width: 400px;
  padding: 10px 20px;
  outline: none;
  font-size: 15px;
}
.woocommerce .lost_reset_password button {
  background-color: black;
  color: white;
  text-transform: uppercase;
  border: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  padding: 10px 20px;
  text-align: center;
}
.woocommerce .lost_reset_password button:hover {
  background-color: rgb(60, 100, 173);
}
.woocommerce .lost_reset_password label {
  display: block;
  margin: 10px 0;
}
.woocommerce nav.woocommerce-MyAccount-navigation {
  margin-bottom: 20px;
  width: 100%;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .woocommerce nav.woocommerce-MyAccount-navigation {
    position: sticky;
    top: 0;
  }
}
.woocommerce nav.woocommerce-MyAccount-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 20px;
  border: 1px solid rgb(60, 100, 173);
  font-size: 14px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  color: rgb(60, 100, 173);
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: rgb(60, 100, 173);
  color: white;
}
.woocommerce div.woocommerce-MyAccount-content {
  font-size: 14px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .woocommerce div.woocommerce-MyAccount-content {
    position: absolute;
    width: calc(100% - 200px - 20px);
    top: 0;
    right: 0;
  }
}
.woocommerce div.woocommerce-MyAccount-content table.account-orders-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .woocommerce div.woocommerce-MyAccount-content table.account-orders-table {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.woocommerce div.woocommerce-MyAccount-content table.account-orders-table thead {
  display: none;
}
@media screen and (min-width: 768px) {
  .woocommerce div.woocommerce-MyAccount-content table.account-orders-table thead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .woocommerce div.woocommerce-MyAccount-content table.account-orders-table thead tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.woocommerce div.woocommerce-MyAccount-content table.account-orders-table tbody {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .woocommerce div.woocommerce-MyAccount-content table.account-orders-table tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.woocommerce div.woocommerce-MyAccount-content table.account-orders-table tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid rgb(60, 100, 173);
}
@media screen and (min-width: 768px) {
  .woocommerce div.woocommerce-MyAccount-content table.account-orders-table tbody tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.woocommerce div.woocommerce-MyAccount-content table.account-orders-table tbody tr td, .woocommerce div.woocommerce-MyAccount-content table.account-orders-table tbody tr th {
  min-height: 40px;
  margin: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.woocommerce div.woocommerce-MyAccount-content table.account-orders-table tbody tr td {
  text-align: left;
}
.woocommerce div.woocommerce-MyAccount-content table.account-orders-table tbody tr td a {
  color: rgb(60, 100, 173);
}
.woocommerce div.woocommerce-MyAccount-content table.account-orders-table tbody tr td a:hover {
  font-weight: bold;
}
.woocommerce div.woocommerce-MyAccount-content div.woocommerce-Addresses div {
  margin: 20px 0;
}
.woocommerce div.woocommerce-MyAccount-content div.woocommerce-Addresses div div.woocommerce-Address header a {
  color: rgb(60, 100, 173);
  margin: 5px 0;
}
.woocommerce form.edit-account p, .woocommerce div.woocommerce-address-fields__field-wrapper p {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce form.edit-account label, .woocommerce div.woocommerce-address-fields__field-wrapper label {
  margin-bottom: 5px;
}
.woocommerce form.edit-account input, .woocommerce form.edit-account select, .woocommerce div.woocommerce-address-fields__field-wrapper input, .woocommerce div.woocommerce-address-fields__field-wrapper select {
  min-height: 40px;
  width: 100%;
}
.woocommerce form.edit-account textarea, .woocommerce div.woocommerce-address-fields__field-wrapper textarea {
  min-height: 120px;
}
.woocommerce form.edit-account fieldset, .woocommerce div.woocommerce-address-fields__field-wrapper fieldset {
  border-color: rgb(60, 100, 173);
  padding: 10px;
}
.woocommerce form.edit-account span, .woocommerce div.woocommerce-address-fields__field-wrapper span {
  display: block;
}
.woocommerce form.edit-account button[name=save_account_details], .woocommerce div.woocommerce-address-fields__field-wrapper button[name=save_account_details] {
  padding: 10px 20px;
  background-color: black;
  color: white;
  font-size: 15px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  margin: 10px 0;
  outline: none;
  border: none;
  max-width: 250px;
  text-align: center;
}
.woocommerce form.edit-account button[name=save_account_details]:hover, .woocommerce div.woocommerce-address-fields__field-wrapper button[name=save_account_details]:hover {
  background-color: rgb(60, 100, 173);
}
.woocommerce button[name=save_address] {
  padding: 10px 20px;
  background-color: black;
  color: white;
  font-size: 15px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  margin: 10px 0;
  outline: none;
  border: none;
}
.woocommerce button[name=save_address]:hover {
  background-color: rgb(60, 100, 173);
}

div.wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

div.container {
  max-width: 1440px;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */