@charset "UTF-8";
/*
Theme Name: Jani Pellets
Author: Andi Drajan (BWS)
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.header {
  display: flex;
  justify-content: center;
  background: #DADADA;
  padding: 8px 0;
  width: 100vw;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header .container {
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  height: 100%;
}
.header__logo img {
  height: 100%;
}
.header__search {
  width: 350px;
  height: 40px;
  position: relative;
}
.header__search input {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  padding: 0 12px;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}
.header__search input:focus {
  border-color: #006A40;
}
.header__search button {
  cursor: pointer;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 64px;
}
.header__nav__info {
  display: flex;
  align-items: center;
  gap: 64px;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #006A40;
  font-weight: 600;
  line-height: 26px;
}
.header__cart {
  margin-right: 8px;
  position: relative;
}
.header__cart span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B82D31;
  border-radius: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.header__button {
  position: relative;
}
.header__button img {
  transition: all 0.3s;
}
.header__button img:first-child {
  opacity: 1;
}
.header__button img:last-child {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__button[data-open=true] img:first-child {
  opacity: 0;
}
.header__button[data-open=true] img:last-child {
  opacity: 1;
}
.header__menu {
  background: #DADADA;
  overflow: hidden;
  width: 100%;
  max-height: 0;
  position: absolute;
  bottom: 1px;
  transform: translateY(100%);
  transition: all 0.3s;
}
.header__menu[data-open=true] {
  max-height: 160px;
}
.header__menu__content {
  display: flex;
  justify-content: center;
  gap: 64px;
  overflow: hidden;
  padding: 16px;
}
@media only screen and (max-width: 1024px) {
  .header__nav {
    gap: 32px;
  }
  .header__nav__info {
    gap: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    height: 120px;
  }
  .header .container {
    flex-wrap: wrap;
  }
  .header__logo {
    height: 50%;
  }
  .header__search {
    order: 2;
    margin-top: auto;
    width: 100%;
  }
  .header__menu__content {
    flex-direction: column;
    gap: 16px;
  }
}

.footer {
  display: flex;
  justify-content: center;
  gap: 64px;
  background: rgba(218, 218, 218, 0.25);
  padding: 32px 0;
  width: 100%;
}
.footer .container {
  flex-direction: column;
  gap: 64px;
}
.footer__top {
  display: flex;
  gap: 64px;
}
.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 530px;
}
.footer__info__logo {
  width: 150px;
}
.footer__info p {
  font-size: 16px;
  line-height: 26px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  flex-grow: 1;
}
.footer__links__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-grow: 1;
}
.footer__links__col h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
.footer__links__col__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__links a {
  color: inherit;
  text-transform: uppercase;
  text-decoration: none;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 26px;
}
.footer__anpc {
  display: flex;
  flex-direction: column;
}
.footer__anpc img {
  width: 250px;
}
@media only screen and (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__info {
    width: 100%;
  }
  .footer__info__logo {
    width: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__links {
    display: flex;
    flex-direction: column;
  }
}

.front-page__banner {
  display: flex;
  justify-content: center;
  background: #006A40;
  color: #DADADA;
  padding: 16px 0;
  margin-bottom: 32px;
  width: 100%;
}
.front-page__banner .container {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.front-page__banner__headlines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #B82D31;
  border: 1px solid #DADADA;
  border-radius: 0 16px 16px 0;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 16px 32px 16px 16px;
}
.front-page__banner__text {
  line-height: 26px;
  text-align: center;
  max-width: 400px;
}
.front-page__banner img {
  width: 180px;
}
@media only screen and (max-width: 1024px) {
  .front-page__banner__headlines {
    font-size: 16px;
  }
  .front-page__banner img {
    width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .front-page__banner .container {
    flex-direction: column;
    gap: 8px;
  }
  .front-page__banner__headlines {
    border-radius: 0;
    text-align: center;
    padding: 8px;
    width: 100%;
  }
  .front-page__banner__text {
    font-size: 14px;
  }
  .front-page__banner img {
    width: 128px;
  }
}

.notfound-page {
  padding: 120px 0;
}
.notfound-page .container {
  flex-direction: column;
  justify-content: center;
  gap: 64px;
  text-align: center;
}
.notfound-page .container h1 {
  color: #B82D31;
  font-size: 32px;
  text-transform: uppercase;
}
.notfound-page .container p {
  font-size: 18px;
}

.extra-page {
  padding-bottom: 100px;
}
.extra-page .container {
  flex-direction: column;
  gap: 32px;
}
.extra-page h2 {
  color: #006A40;
  font-size: 28px;
  line-height: 44px;
  text-transform: uppercase;
}
.extra-page h2:not(:first-child) {
  margin-top: 64px;
}
.extra-page p, .extra-page li {
  font-size: 18px;
  line-height: 28px;
}
.extra-page ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: disc;
  list-style-position: inside;
}
@media only screen and (max-width: 767px) {
  .extra-page h2 {
    font-size: 22px;
    line-height: 34px;
  }
  .extra-page p, .extra-page li {
    font-size: 16px;
    line-height: 26px;
  }
}

.woocommerce {
  width: 100%;
}
.woocommerce div.product {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 64px;
  font-size: 18px;
  line-height: 28px;
}
.woocommerce div.product div.images {
  margin-bottom: 0;
  width: 480px;
}
.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  width: 100%;
}
.woocommerce div.product div.summary {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 32px;
  margin-bottom: 0;
}
.woocommerce div.product .product_title {
  color: #B82D31;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
}
.woocommerce div.product .product_title + .price {
  display: none;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.woocommerce div.product .woocommerce-product-details__short-description:before, .woocommerce div.product .woocommerce-product-details__short-description:after {
  content: "";
  background: #DADADA;
  width: 100%;
  height: 1px;
}
.woocommerce div.product form.cart {
  margin-bottom: 0;
}
.woocommerce div.product form.cart .variations {
  margin-bottom: 32px;
}
.woocommerce div.product form.cart .variations .label {
  vertical-align: middle;
  text-align: left;
  padding-right: 32px;
}
.woocommerce div.product form.cart .variations .label label {
  font-weight: 500;
  white-space: nowrap;
}
.woocommerce div.product form.cart .variations .label label:after {
  content: ":";
}
.woocommerce div.product form.cart .variations .value {
  width: 100%;
}
.woocommerce div.product form.cart .variations select {
  font-size: inherit;
  padding: 0 16px;
  margin: 0;
  height: 52px;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  flex-grow: 1;
  background: #B82D31;
  text-transform: uppercase;
  transition: all 0.2s;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #d33338;
}
.woocommerce div.product form.cart .reset_variations {
  display: none !important;
}
.woocommerce div.product .woocommerce-variation-price .price {
  color: #006A40;
  font-size: 26px;
}
.woocommerce div.product .woocommerce-variation-price .price:before {
  content: "Preț: ";
  font-weight: 700;
}
.woocommerce div.product .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.woocommerce div.product .woocommerce-variation-add-to-cart:before {
  content: "";
  display: block;
  background: #DADADA;
  margin: 32px 0;
  width: 100%;
  height: 1px;
}
.woocommerce div.product .woocommerce-variation-add-to-cart .quantity input[type=number] {
  width: 84px;
  height: 52px;
}
.woocommerce div.product .woocommerce-variation-add-to-cart .quantity .wp-element-button {
  background: #fff;
  border: 1px solid #000;
  height: 52px;
  transition: all 0.2s;
}
.woocommerce div.product .woocommerce-variation-add-to-cart .quantity .wp-element-button:hover {
  background: rgba(218, 218, 218, 0.3);
}
.woocommerce div.product .product_meta {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .wc-tabs {
  display: none;
}
.woocommerce div.product .panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.woocommerce div.product .panel:before {
  content: "";
  display: block;
  background: #DADADA;
  margin-bottom: 32px;
  width: 100%;
  height: 1px;
}
.woocommerce div.product .panel h2 {
  color: #006A40;
  font-size: 28px;
  line-height: 44px;
}
.woocommerce div.product .panel h2:not(:first-child):before {
  content: "";
  display: block;
  background: #DADADA;
  margin-bottom: 32px;
  width: 100%;
  height: 1px;
}
.woocommerce div.product .upsells {
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  .woocommerce div.product div.images {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce div.product div.images {
    width: 100%;
  }
  .woocommerce div.product .product_title {
    font-size: 28px;
  }
  .woocommerce div.product form.cart .variations .label label {
    white-space: normal;
    line-height: 16px;
  }
  .woocommerce div.product form.cart .variations select {
    width: 100%;
  }
  .woocommerce div.product .woocommerce-variation-add-to-cart .quantity input[type=number] {
    width: 64px;
  }
  .woocommerce div.product .panel h2 {
    font-size: 24px;
    line-height: 36px;
  }
}

.wp-block-woocommerce-cart {
  margin-bottom: 200px;
  width: 100%;
}
.wp-block-woocommerce-cart .wc-block-cart {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 128px;
  width: 100%;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main {
  flex-shrink: 0;
  padding-right: 0;
  width: unset;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar {
  padding-left: 0;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items {
  border-bottom: none !important;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items thead {
  display: none;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items tr:first-child td {
  border-top: none;
  padding-top: 0;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items td {
  padding: 16px 0;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-item__image {
  border-radius: 8px;
  padding-left: 0;
  overflow: hidden;
  width: 100px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  color: #B82D31;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name:hover {
  text-decoration: underline;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
  font-size: 18px;
  font-weight: 500;
  margin-top: 12px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  color: #006A40;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  padding-left: 64px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-wrapper {
  padding-top: 32px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-wrapper:nth-child(2) {
  border-top: none;
  padding-top: 0;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-wrapper:empty {
  padding: 0;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-wrapper .wc-block-components-button {
  background: #006A40;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  transition: all 0.2s;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-wrapper .wc-block-components-button:hover {
  background: #008751;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__totals-title {
  display: none !important;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-item {
  padding: 0 !important;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-item .wc-block-components-totals-item__label {
  color: #B82D31;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-item .wc-block-components-totals-item__description {
  font-size: 16px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-item .wc-block-components-totals-item__description .wc-block-components-shipping-address {
  margin-top: 32px;
  margin-bottom: 8px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-item .wc-block-components-totals-item__description .wc-block-components-totals-shipping__change-address__link {
  color: #006A40;
  font-size: 16px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-item__value {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-item__value .wc-block-components-totals-footer-item-tax-value {
  font-size: 22px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-shipping .wc-block-components-totals-shipping__options {
  margin-top: 32px !important;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-shipping .wc-block-components-totals-shipping__options .wc-block-components-shipping-rates-control__package {
  padding: 0 !important;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-shipping .wc-block-components-totals-shipping__options .wc-block-components-radio-control__label {
  font-size: 16px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-shipping .wc-block-components-totals-shipping__options .wc-block-components-radio-control__description {
  font-size: 16px;
  padding-top: 8px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container {
  background: #B82D31;
  border-radius: 8px;
  height: 52px;
  transition: all 0.2s;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container:hover {
  background: #d33338;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container--sticky {
  display: none;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  height: 100%;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a:focus {
  box-shadow: none !important;
}
.wp-block-woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block {
  display: none !important;
}
.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading {
  font-size: 18px;
}
.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading::before {
  display: none;
}
.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B82D31;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 32px;
  height: 52px;
  transition: all 0.2s;
}
.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block a:hover {
  background: #d33338;
}
@media only screen and (max-width: 1024px) {
  .wp-block-woocommerce-cart .wc-block-cart {
    flex-direction: column;
    gap: 32px;
  }
  .wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar {
    width: unset;
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-item__image {
    width: 80px;
  }
  .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    font-size: 22px;
  }
  .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
    font-size: 20px;
    padding-left: 16px;
  }
  .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container a {
    font-size: 16px;
  }
}

.wp-block-woocommerce-checkout {
  padding-top: 0 !important;
}
.wp-block-woocommerce-checkout a {
  color: #006A40;
}
.wp-block-woocommerce-checkout .wc-block-components-checkout-step__heading {
  margin-bottom: 16px;
}
.wp-block-woocommerce-checkout .wc-block-components-checkout-step__heading h2 {
  color: #B82D31;
  font-size: 22px;
  font-weight: 600;
}
.wp-block-woocommerce-checkout .wc-block-components-checkout-step__description {
  font-size: 16px;
}
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-cart-items-block {
  border-top: 0;
}
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-panel__button {
  cursor: pointer;
  color: #006A40;
  font-size: 20px;
  font-weight: 600;
}
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item .wc-block-components-totals-item__label {
  color: #006A40;
  font-size: 20px;
  font-weight: 600;
}
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item .wc-block-components-totals-item__description {
  font-size: 14px;
  margin-top: 8px;
}
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item .wc-block-components-totals-item__description:empty {
  margin-top: 0;
}
.wp-block-woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button {
  background: #B82D31;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  height: 52px !important;
  min-height: unset !important;
  transition: all 0.2s !important;
}
.wp-block-woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button:hover {
  background: #d33338;
}
@media only screen and (max-width: 1024px) {
  .wp-block-woocommerce-checkout .wc-block-checkout__main.wp-block-woocommerce-checkout-fields-block {
    width: 60%;
  }
  .wp-block-woocommerce-checkout .wc-block-components-sidebar.wp-block-woocommerce-checkout-totals-block {
    width: 40%;
  }
  .wp-block-woocommerce-checkout .wc-block-checkout__actions .wc-block-checkout__actions_row {
    flex-direction: column;
    gap: 16px;
  }
  .wp-block-woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button {
    order: 2;
  }
  .wp-block-woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button {
    display: block !important;
  }
}

.woocommerce-order {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.woocommerce-order p {
  font-size: 18px;
}
.woocommerce-order .woocommerce-thankyou-order-received {
  font-size: 22px;
  text-align: center;
  margin-bottom: 32px;
}
.woocommerce-order .woocommerce-order-overview.order_details {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.woocommerce-order .woocommerce-order-overview.order_details::before, .woocommerce-order .woocommerce-order-overview.order_details::after {
  display: none;
}
.woocommerce-order .woocommerce-order-overview.order_details li {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
  border-right: 1px solid #DADADA;
  color: #B82D31;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.woocommerce-order .woocommerce-order-overview.order_details li strong {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  white-space: wrap;
}
.woocommerce-order .woocommerce-order-details {
  margin-top: 32px;
}
.woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
  color: #B82D31;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table {
  margin-top: 16px;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table a {
  color: #006A40;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table th {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table td {
  font-size: 18px;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns:before, .woocommerce-order .woocommerce-customer-details .woocommerce-columns:after {
  display: none;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column .woocommerce-column__title {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: #B82D31;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column address {
  flex-grow: 1;
  font-size: 18px;
  line-height: 32px;
}
@media only screen and (max-width: 1024px) {
  .woocommerce-order .woocommerce-order-overview.order_details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .woocommerce-order .woocommerce-order-overview.order_details li {
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce-order .woocommerce-order-overview {
    text-align: center;
  }
  .woocommerce-order .woocommerce-order-overview.order_details {
    display: flex;
    flex-direction: column;
  }
  .woocommerce-order .woocommerce-order-overview + p {
    text-align: center;
  }
  .woocommerce-order .woocommerce-order-details h2 {
    text-align: center;
  }
  .woocommerce-order .woocommerce-order-details .woocommerce-table th {
    font-size: 16px;
  }
  .woocommerce-order .woocommerce-order-details .woocommerce-table td, .woocommerce-order .woocommerce-order-details .woocommerce-table p {
    font-size: 14px;
  }
  .woocommerce-order .woocommerce-customer-details .woocommerce-columns {
    display: flex;
    flex-direction: column;
  }
  .woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column .woocommerce-column__title {
    text-align: center;
  }
  .woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column address {
    font-size: 16px;
    line-height: 26px;
  }
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-top: 80px;
  min-height: 100vh;
}
@media only screen and (max-width: 767px) {
  body {
    padding-top: 120px;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.main-title {
  background: #006A40;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 32px 0;
  margin-bottom: 64px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .main-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

.container {
  display: flex;
  padding: 0 32px;
  width: min(1344px, 100%);
}
@media only screen and (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 8px;
  }
}

@media only screen and (min-width: 1024px) {
  .desktop-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 767px) {
  .tablet-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
}