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

a {
  transition: 0.5s;
  text-decoration: none;
}

ul {
  padding-left: 40px;
}
ul li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

input, textarea {
  color: #888;
}
input::placeholder, textarea::placeholder {
  font-size: 1rem;
  color: #888;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", serif;
  line-height: 1.2;
  font-weight: 500;
}

body {
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #252525;
  position: relative;
}
body.open:before {
  opacity: 1;
  visibility: visible;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

main {
  overflow: hidden;
}

.global-hero {
  display: flex;
  flex-wrap: wrap;
}
.global-hero__left {
  width: 100%;
  background-color: #1D467C;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .global-hero__left {
    width: 60%;
  }
}
.global-hero__left--inner {
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
}
@media (min-width: 768px) {
  .global-hero__left--inner {
    padding: 64px 24px;
  }
}
.global-hero__left--inner h1 {
  color: #FFF;
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
@media (min-width: 768px) {
  .global-hero__left--inner h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
.global-hero__left--inner p {
  color: #FFF;
  margin: 24px 0 0 0;
}
.global-hero__right {
  width: 100%;
}
@media (min-width: 768px) {
  .global-hero__right {
    width: 40%;
  }
}
.global-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  max-height: 250px;
}
@media (min-width: 768px) {
  .global-hero__right img {
    max-height: 100%;
  }
}

.woocommerce-info {
  border-color: #1D467C;
}
.woocommerce-info::before {
  color: #1D467C;
}
.woocommerce-info a {
  color: #1D467C;
}

.header__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner--left svg {
  max-width: 240px;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.header__inner--right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__inner--right .menu-main-container {
  display: none;
}
@media (min-width: 768px) {
  .header__inner--right .menu-main-container {
    display: block;
  }
}
.header__inner--right ul.menu {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
}
.header__inner--right ul.menu > li {
  margin-left: 24px;
  position: relative;
  z-index: 10;
}
.header__inner--right ul.menu > li:nth-child(3) > a, .header__inner--right ul.menu > li:nth-child(4) > a {
  background-color: #1D467C;
  color: #FFF;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 32px;
  text-align: center;
}
.header__inner--right ul.menu > li:nth-child(3) > a:hover, .header__inner--right ul.menu > li:nth-child(3) > a:focus, .header__inner--right ul.menu > li:nth-child(4) > a:hover, .header__inner--right ul.menu > li:nth-child(4) > a:focus {
  background-color: #69BFAD;
  color: #FFF;
}
.header__inner--right ul.menu > li a {
  color: #1D467C;
  font-weight: 600;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
.header__inner--right ul.menu > li a:hover, .header__inner--right ul.menu > li a:focus {
  color: #69BFAD;
}
.header__inner--right ul.menu > li.current-page-item a {
  color: #69BFAD;
}
.header__inner--right ul.menu > li:hover .sub-menu, .header__inner--right ul.menu > li:focus .sub-menu {
  display: block;
}
.header__inner--right ul.menu > li .sub-menu {
  background-color: #FFF;
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  padding: 24px 12px 12px 12px;
  flex-wrap: wrap;
  display: none;
  list-style: none;
}
.header__inner--right ul.menu > li .sub-menu li {
  width: 100%;
}
.header__inner--right ul.menu > li .sub-menu li a {
  font-size: 1.125rem;
  padding: 6px 12px;
  display: inline-block;
  width: 100%;
  font-size: clamp(0.875rem, 0.7742rem + 0.2101vw, 1rem);
}
.header__inner--right .hamburger {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .header__inner--right .hamburger {
    display: none;
  }
}
.header__inner--right .hamburger svg {
  height: 32px;
  width: auto;
  fill: #1D467C;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 400px;
  width: 100%;
  background-color: #FFF;
  height: 100%;
  z-index: 10000000;
  overflow: scroll;
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
  transition: 0.5s;
  transform: translateX(-400px);
}
.mobile-menu.open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #ddd;
}
.mobile-menu__top svg {
  vertical-align: middle;
}
.mobile-menu__top .left svg {
  width: 200px;
  height: auto;
}
.mobile-menu__top .right svg {
  width: 24px;
  height: auto;
  fill: #333;
}
.mobile-menu__items {
  border-bottom: 1px solid #ddd;
  padding: 0 24px 24px 24px;
}
.mobile-menu__items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu__items ul li {
  margin-top: 24px;
}
.mobile-menu__items ul li a {
  color: #333;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
.mobile-menu__items ul li.menu-item-has-children > a {
  display: none;
}
@media (min-width: 768px) {
  .mobile-menu__items ul li.menu-item-has-children > a {
    display: block;
  }
}
.mobile-menu__items ul li.current-menu-item a {
  color: #000;
}
.mobile-menu__actions {
  border-bottom: 1px solid #ddd;
  padding: 24px;
}
.mobile-menu__actions .actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mobile-menu__actions .actions__item {
  margin-right: 12px;
}
.mobile-menu__actions .actions__item:last-child {
  margin-right: 0;
}
.mobile-menu__actions .actions__item a {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #000;
  align-items: center;
  justify-content: center;
}
.mobile-menu__actions .actions__item a:hover, .mobile-menu__actions .actions__item a:focus {
  background: #000;
}
.mobile-menu__actions .actions__item a:hover svg path, .mobile-menu__actions .actions__item a:focus svg path {
  fill: #FFF;
}
.mobile-menu__actions .actions__item a svg path {
  fill: #000;
}

.footer__top {
  background-color: #142C4C;
}
.footer__top--inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer__top--inner {
    flex-wrap: nowrap;
  }
}
.footer__top--inner .logo, .footer__top--inner .info {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__top--inner .logo, .footer__top--inner .info {
    width: auto;
  }
}
.footer__top--inner .logo svg {
  max-width: 240px;
  width: 100%;
  height: auto;
}
.footer__top--inner .info {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .footer__top--inner .info {
    margin-left: 48px;
    margin-top: 0;
    display: flex;
  }
}
.footer__top--inner .info p {
  color: #FFF;
  font-weight: 500;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .footer__top--inner .info p {
    margin-left: 24px;
    margin-top: 0;
  }
}
.footer__top--inner .info p:first-child {
  margin-left: 0;
  margin-top: 0;
}
.footer__top--inner .info p a {
  color: #FFF;
}
.footer__bottom {
  background-color: #1D467C;
}
.footer__bottom--inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer__bottom--inner {
    flex-wrap: nowrap;
  }
}
.footer__bottom--inner .copyright, .footer__bottom--inner .docs {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__bottom--inner .copyright, .footer__bottom--inner .docs {
    width: auto;
  }
}
.footer__bottom--inner .copyright {
  order: 2;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .footer__bottom--inner .copyright {
    order: 1;
    margin-top: 0;
  }
}
.footer__bottom--inner .copyright p {
  color: #FFF;
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
}
.footer__bottom--inner .docs {
  order: 1;
}
@media (min-width: 768px) {
  .footer__bottom--inner .docs {
    order: 2;
    margin-left: 24px;
  }
}
.footer__bottom--inner .docs ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.footer__bottom--inner .docs ul li:last-child a {
  margin-right: 0;
  padding-right: 0;
}
.footer__bottom--inner .docs ul li:last-child a:before {
  display: none;
}
.footer__bottom--inner .docs ul li a {
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
  color: #FFF;
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
}
.footer__bottom--inner .docs ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #FFF;
}

body.page-template-home .hero {
  min-height: 525px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
}
body.page-template-home .hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
body.page-template-home .hero__inner--content {
  max-width: 620px;
  width: 100%;
}
body.page-template-home .hero__inner--content h1 {
  font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  color: #FFF;
  font-weight: 600;
}
body.page-template-home .hero__inner--content p {
  color: #FFF;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
  margin: 12px 0 0 0;
}
body.page-template-home .hero__inner--content .buttons {
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .hero__inner--content .buttons .button {
  margin-top: 12px;
  margin-right: 12px;
}
body.page-template-home .hero__inner--content .buttons .button:last-child {
  margin-right: 0;
}
body.page-template-home .hero__inner--content .buttons .button:nth-child(2) a {
  background-color: transparent;
  border-color: #FFF;
}
body.page-template-home .hero__inner--content .buttons .button a {
  background-color: #1D467C;
  color: #FFF;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 32px;
  border: 1px solid #1D467C;
}
body.page-template-home .hero__inner--content .buttons .button a:hover, body.page-template-home .hero__inner--content .buttons .button a:focus {
  background-color: #69BFAD;
  border-color: #69BFAD;
}
body.page-template-home .steps {
  background-color: #1D467C;
}
body.page-template-home .steps__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
body.page-template-home .steps__inner h2 {
  text-align: center;
  color: #FFF;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.page-template-home .steps__inner--items {
  display: grid;
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  grid-template-columns: 1fr;
  row-gap: 48px;
  column-gap: 48px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-home .steps__inner--items {
    grid-template-columns: 1fr 1fr;
  }
}
body.page-template-home .steps__inner--items .step {
  width: 100%;
}
body.page-template-home .steps__inner--items .step h3 {
  color: #69BFAD;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-home .steps__inner--items .step ul {
  padding-left: 20px;
}
body.page-template-home .steps__inner--items .step ul li {
  margin-top: 12px;
  color: #FFF;
}
body.page-template-home .about {
  background-color: #E5E8DD;
}
body.page-template-home .about__inner {
  padding: 64px 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 10;
}
body.page-template-home .about__inner--content {
  position: relative;
  z-index: 10;
  max-width: 720px;
  width: 100%;
}
body.page-template-home .about__inner--content h2 {
  color: #1D467C;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
body.page-template-home .about__inner--content p {
  margin: 24px 0 0 0;
}
body.page-template-home .about__inner--vector {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .about__inner--vector {
    width: calc(100% - 820px);
  }
}
body.page-template-home .about__inner--vector .inner {
  position: absolute;
  bottom: -64px;
  right: -24px;
  width: 250px;
}
@media (min-width: 768px) {
  body.page-template-home .about__inner--vector .inner {
    top: 50%;
    bottom: unset;
    width: 487px;
    right: 48px;
    transform: translateY(-50%);
  }
}
body.page-template-home .about__inner--vector .inner svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

body.page-template-default .content__inner {
  max-width: 740px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
body.page-template-default .content__inner.normal-page table {
  border-spacing: 8px;
  margin-left: -8px;
  border-collapse: separate !important;
  max-width: 600px;
}
body.page-template-default .content__inner.normal-page table tbody tr td {
  padding: 8px 12px;
  color: #FFF;
}
@media (min-width: 768px) {
  body.page-template-default .content__inner.normal-page table tbody tr td {
    padding: 16px 24px;
  }
}
body.page-template-default .content__inner.normal-page table tbody tr td:first-child {
  width: 70% !important;
  background-color: #69C0AD;
}
body.page-template-default .content__inner.normal-page table tbody tr td:nth-child(2) {
  width: 30% !important;
  background-color: #1D467C;
  text-align: center;
}
body.page-template-default .content__inner.normal-page h1, body.page-template-default .content__inner.normal-page h2, body.page-template-default .content__inner.normal-page h3, body.page-template-default .content__inner.normal-page h4, body.page-template-default .content__inner.normal-page p, body.page-template-default .content__inner.normal-page ul, body.page-template-default .content__inner.normal-page ol {
  margin: 24px 0 0 0;
}
body.page-template-default .content__inner.normal-page h1:first-child, body.page-template-default .content__inner.normal-page h2:first-child, body.page-template-default .content__inner.normal-page h3:first-child, body.page-template-default .content__inner.normal-page h4:first-child, body.page-template-default .content__inner.normal-page p:first-child, body.page-template-default .content__inner.normal-page ul:first-child, body.page-template-default .content__inner.normal-page ol:first-child {
  margin-top: 0;
}
body.page-template-default .content__inner.normal-page p {
  line-height: 2;
}
body.page-template-default .content__inner.normal-page h1 {
  font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
}
body.page-template-default .content__inner.normal-page h2 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
body.page-template-default .content__inner.normal-page h3 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-default .content__inner.normal-page h4 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.page-template-default .content__inner.normal-page a {
  color: #252525;
  text-decoration: underline;
}
body.page-template-default .content__inner.normal-page img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
body.page-template-default .content__inner.normal-page ul, body.page-template-default .content__inner.normal-page ol {
  padding-left: 40px;
}
body.page-template-default .content__inner.normal-page ul li, body.page-template-default .content__inner.normal-page ol li {
  line-height: 2;
}

body.page-template-faq .items {
  max-width: 1024px;
  padding: 64px 24px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-faq .items__faq {
  width: 100%;
  margin-top: 24px;
}
body.page-template-faq .items__faq:first-child {
  margin-top: 0;
}
body.page-template-faq .items__faq.open .items__faq--question .icon svg {
  transform: rotate(90deg);
}
body.page-template-faq .items__faq.open .items__faq--answer {
  display: block;
}
body.page-template-faq .items__faq--question {
  background-color: #69BFAD;
  display: flex;
  flex-wrap: wrap;
  padding: 16px 24px;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  body.page-template-faq .items__faq--question {
    padding: 16px 32px;
  }
}
body.page-template-faq .items__faq--question .text {
  width: calc(100% - 32px);
  padding-right: 24px;
}
body.page-template-faq .items__faq--question .text p {
  color: #FFF;
}
body.page-template-faq .items__faq--question .icon {
  width: 32px;
}
body.page-template-faq .items__faq--question .icon svg {
  transition: 0.5s;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
body.page-template-faq .items__faq--answer {
  padding-top: 24px;
  display: none;
}

body.woocommerce-checkout .woocommerce-message {
  display: none !important;
}
body.woocommerce-checkout .woocommerce-form-login button[type=submit] {
  background-color: #1D467C;
  color: #FFF;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 32px;
  text-align: center;
  transition: 0.5s;
  border: none;
}
body.woocommerce-checkout .woocommerce-form-login button[type=submit]:hover, body.woocommerce-checkout .woocommerce-form-login button[type=submit]:focus {
  background-color: #69BFAD;
  color: #FFF;
}
body.woocommerce-checkout .woocommerce-form-login a {
  color: #1D467C;
}
body.woocommerce-checkout .col2-set .form-row {
  margin: 0;
  padding: 0;
}
body.woocommerce-checkout .col2-set .col-1, body.woocommerce-checkout .col2-set .col-2 {
  width: 100%;
  padding: 0;
}
body.woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields .button, body.woocommerce-checkout .col2-set .col-2 .woocommerce-billing-fields .button {
  margin-bottom: 12px;
}
body.woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields .button a, body.woocommerce-checkout .col2-set .col-2 .woocommerce-billing-fields .button a {
  background-color: #1D467C;
  color: #FFF;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 32px;
  text-align: center;
  font-size: 0.875rem;
}
body.woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields .button a:hover, body.woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields .button a:focus, body.woocommerce-checkout .col2-set .col-2 .woocommerce-billing-fields .button a:hover, body.woocommerce-checkout .col2-set .col-2 .woocommerce-billing-fields .button a:focus {
  background-color: #69BFAD;
  color: #FFF;
}
body.woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper, body.woocommerce-checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
  column-gap: 12px;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper, body.woocommerce-checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
body.woocommerce-checkout .col2-set .col-1 .form-row, body.woocommerce-checkout .col2-set .col-2 .form-row {
  float: none;
  width: 100%;
}
body.woocommerce-checkout .col2-set .col-1 .form-row .checkout-inline-error-message, body.woocommerce-checkout .col2-set .col-2 .form-row .checkout-inline-error-message {
  margin-top: 0;
}
body.woocommerce-checkout .col2-set .col-2 {
  margin-top: 24px;
}
body.woocommerce-checkout .col2-set .col-2 h3 {
  display: none;
}
body.woocommerce-checkout h3#order_review_heading {
  display: none;
}
body.woocommerce-checkout #order_review table {
  display: none;
}
body.woocommerce-checkout #order_review #payment {
  background-color: transparent;
  margin-top: 12px;
}
body.woocommerce-checkout #order_review #payment .place-order {
  padding: 0;
}
body.woocommerce-checkout #order_review #payment .place-order button {
  float: left;
  margin-top: 12px;
  border-radius: 32px;
  padding: 12px 32px;
  text-align: center;
  background-color: #1D467C;
}

body.woocommerce-account .content__inner {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid #ebebeb;
}
body.woocommerce-account .content__inner .woocommerce {
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 {
  width: 100%;
  float: none;
  max-width: 100%;
  flex: none;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 h2, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 h2 {
  text-align: center;
  margin: 0 0 50px 0;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form {
  background-color: #FFF;
  margin: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap {
    float: left;
    width: 50%;
  }
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap a {
  color: #000;
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password a:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap a:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password a:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap a:focus {
  text-decoration: none;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.login-account-wrap a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.login-account-wrap a {
  color: #000;
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.login-account-wrap a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.login-account-wrap a:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.login-account-wrap a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.login-account-wrap a:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password {
    padding-right: 7.5px;
  }
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap {
    padding-left: 7.5px;
  }
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p {
  margin-bottom: 15px;
  padding: 0;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p button[type=submit], body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p button[type=submit] {
  width: 100%;
  float: none;
  max-width: 100%;
  margin-right: 0;
  color: #FFF;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 0;
  background-color: #142C4C;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p button[type=submit]:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p button[type=submit]:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p button[type=submit]:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p button[type=submit]:focus {
  background-color: #1D467C;
  text-decoration: none;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p a {
  color: #000;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p label, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p label {
  display: block;
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p span.password-input, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p span.password-input {
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p span.password-input .show-password-input, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p span.password-input .show-password-input {
  top: 1em !important;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 {
  display: none;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form {
  padding-bottom: 0;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form span.password-input {
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form span.password-input .show-password-input {
  top: 1em !important;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation {
  background-color: #FFF;
  padding: 25px;
  margin-bottom: 25px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 15px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #1D467C;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li a:hover, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li a:focus {
  color: #1D467C;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content {
  background-color: #FFF;
  padding: 25px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content h2, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content h3 {
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 10px 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table {
  border: none;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table thead th {
  padding: 10px 0;
  font-weight: 600;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr td {
  padding: 10px 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr th {
  padding: 10px 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr th.woocommerce-orders-table__cell-order-number a {
  color: #142C4C;
  font-weight: 700;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
  margin: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content p.form-row {
  padding: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .button {
  background-color: #1D467C;
  color: #FFF;
  border-radius: 2px;
  font-weight: 600;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
  margin-top: 15px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .edit {
  background-color: #1D467C;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 10px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
  font-style: normal;
  line-height: 1.5;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .order-information, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-information, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-address {
  margin-bottom: 25px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .order-information ul, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-information ul, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-address ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .order-information ul li, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-information ul li, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-address ul li {
  margin-bottom: 5px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals {
  margin-top: 25px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li:last-child .left {
  font-size: 18px;
  font-weight: 700;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .left {
  width: 125px;
  margin-right: 10px;
}
@media (min-width: 375px) {
  body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .left {
    width: 175px;
    margin-right: 15px;
  }
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .left span {
  display: block;
  font-size: 12px;
  font-weight: 300;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .right {
  width: 80px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item {
  padding: 10px 0;
  border-top: 1px solid #5C5C5C;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-items: center;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item:first-child {
  border-top: none;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__image {
  width: 80px;
  height: auto;
  position: relative;
  z-index: 10;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__image .count {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #142C4C;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 14px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__image img {
  object-fit: contain;
  object-position: center center;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data {
  width: calc(100% - 80px);
  padding-left: 20px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .title a {
  margin: 0;
  font-size: 15px;
  color: #142C4C;
  font-weight: 500;
  line-height: 1.5;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .sale-price p {
  font-size: 16px;
  color: #142C4C;
  font-weight: 500;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .normal-price {
  margin-left: 10px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .normal-price p {
  color: #000;
  font-weight: 400;
  font-size: 13px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity {
  width: calc(100% - 80px);
  padding-left: 20px;
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity {
    padding-left: 0;
    margin: 0;
    width: 120px;
  }
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper {
  height: 42px;
  display: flex;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .minus, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .plus {
  height: 100%;
  width: 42px;
  border: 1px solid #5C5C5C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity {
  width: 62px;
  height: 100%;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  border-top: 1px solid #5C5C5C;
  border-bottom: 1px solid #5C5C5C;
  text-align: center;
  -moz-appearance: textfield;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input:focus {
  outline: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input::-webkit-outer-spin-button, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
}

/*# sourceMappingURL=app.css.map */
