/**
 * Woo Styles
 *
 * @package woocommerce/
 * @version 1.0
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(#fff, bottomright, 3deg, topleft, 3deg);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* Pretty radio and checkboxes
* Usage: @include mixins.pretty-checkradio(label);
* Source: https://stackoverflow.com/questions/12743837/can-i-use-variables-for-selectors
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/**

 * CSS3 Animations
 *
*/
/**
 * Fade
*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 0;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 0;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0.2;
    transform: translate3d(8%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-8%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes progress-bar {
  0% {
    width: 0;
  }
}
@-webkit-keyframes avbGradient {
  0% {
    background-position: 10% 0%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 10% 0%;
  }
}
@keyframes avbGradient {
  0% {
    background-position: 10% 0%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 10% 0%;
  }
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--fl1-tertiary), 0.7);
  }
  30% {
    transform: scale(1.05);
    box-shadow: 0 0 0 30px rgba(var(--fl1-tertiary), 0);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--fl1-tertiary), 0);
  }
}
.pulse {
  animation: pulse 3s infinite;
}
.pulse:hover {
  animation: none;
}

.is-loading, .fl1-wc-product.skeleton .fl1-wc-product-info .woocommerce-Price-amount, .fl1-wc-product.skeleton .fl1-wc-product-info h3, .fl1-wc-product.skeleton figure {
  height: 100%;
  width: 100%;
  background: linear-gradient(-90deg, rgb(246.2571428571, 247.2857142857, 252.9428571429) 0%, #eef0fb 50%, rgb(246.2571428571, 247.2857142857, 252.9428571429) 100%);
  background-size: 400% 400%;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -135% 0%;
  }
}

/**
 * Woo Notices
 *
 * @package woocommerce/
 * @version 1.0
*/
.woocommerce-NoticeGroup {
  flex: 1 0 100%;
}

.woocommerce-message,
.woocommerce-Message,
.woocommerce-info,
ul.woocommerce-error li {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 16px;
  margin-bottom: 24px;
  background: #fff;
  color: var(--fl1-text);
  border-radius: var(--fl1-radius-md);
  font-size: 14px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 700px) {
  .woocommerce-message,
  .woocommerce-Message,
  .woocommerce-info,
  ul.woocommerce-error li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.woocommerce-message:before,
.woocommerce-Message:before,
.woocommerce-info:before,
ul.woocommerce-error li:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f05a";
  color: var(--fl1-primary);
  font-size: 24px;
  display: block;
  margin-right: 8px;
}
.woocommerce-message a,
.woocommerce-Message a,
.woocommerce-info a,
ul.woocommerce-error li a {
  color: var(--fl1-primary);
  font-weight: 600;
  display: inline-block;
  margin: 0 4px;
}
.woocommerce-message .button,
.woocommerce-Message .button,
.woocommerce-info .button,
ul.woocommerce-error li .button {
  order: 2;
  margin-left: auto;
  min-width: auto;
  text-align: center;
  background: var(--fl1-primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 700px) {
  .woocommerce-message .button,
  .woocommerce-Message .button,
  .woocommerce-info .button,
  ul.woocommerce-error li .button {
    margin-left: 0;
  }
}
.woocommerce-message .restore-item,
.woocommerce-Message .restore-item,
.woocommerce-info .restore-item,
ul.woocommerce-error li .restore-item {
  margin-left: 5px;
  color: var(--fl1-primary);
  text-decoration: underline;
}
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-Message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart ul.woocommerce-error li {
  margin: 0 0 20px;
}

.woocommerce-message:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f058";
  color: var(--fl1-success);
}

ul.woocommerce-error {
  width: 100%;
}
ul.woocommerce-error li:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f06a";
  color: tomato;
  margin-top: -2px;
}

/**
 * Woo Single Product
 *
 * @package woocommerce/
 * @version 1.0
*/
table.shop_table {
  width: 100%;
}
@media (max-width: 700px) {
  table.shop_table thead {
    display: none;
  }
}
table.shop_table thead tr th {
  font-size: 16px;
  font-weight: 700;
  color: var(--fl1-text);
  padding: 0 10px;
  text-align: left;
  vertical-align: middle;
}
table.shop_table tbody tr {
  width: 100%;
}
@media (max-width: 700px) {
  table.shop_table tbody tr {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
  }
}
table.shop_table tbody tr td {
  padding: 8px;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}
@media (max-width: 700px) {
  table.shop_table tbody tr td {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    padding: 0 12px 12px;
  }
  table.shop_table tbody tr td:before {
    display: block;
    content: attr(data-title);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
}
table.shop_table tbody tr td a {
  color: #002444;
  font-weight: 600;
}
table.shop_table tbody tr td strong {
  font-weight: 700;
}
table.shop_table tbody tr td strong.highlight {
  color: rgb(108.7179487179, 116.9230769231, 131.2820512821);
}
table.shop_table tbody tr td small {
  font-size: 12px;
}
table.shop_table tbody .wc__cart__product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
}
table.shop_table tbody .wc__cart__product .woocommerce-Price-amount {
  color: var(--fl1-text);
  font-weight: 700;
  font-size: 22px;
}
table.shop_table tbody .wc__cart__product--item {
  display: flex;
  align-items: center;
}
table.shop_table tbody .wc__cart__product--img {
  width: 80px;
  margin-right: 20px;
}
table.shop_table tbody .wc__cart__product--img img {
  border-radius: 8px;
}
table.shop_table tbody .wc__cart__product--price {
  display: flex;
  align-items: center;
}
table.shop_table tbody .wc__cart__product--price .cart-qty {
  max-width: 50px;
  margin-right: 20px;
}
@media (max-width: 700px) {
  table.shop_table tbody .wc__cart__product--price .cart-qty {
    max-width: 100px;
  }
}
table.shop_table tbody .wc__cart__product--price .cart-qty input[type=number] {
  font-family: var(--fl1-primary-font);
  border: none;
  padding: 10px 0 10px 10px;
  width: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--fl1-text);
  width: 100%;
  border-bottom: 1px var(--fl1-text) solid;
  text-align: center;
}
table.shop_table tbody .wc__cart__product--meta {
  margin: 10px 0;
}
table.shop_table tbody .wc__cart__product--meta ul {
  font-size: 14px;
}
table.shop_table tbody .wc__cart__product--meta ul li {
  display: flex;
  align-items: center;
  padding: 3px 0;
}
table.shop_table tbody .wc__cart__product--meta ul li strong {
  font-weight: 700;
  min-width: 120px;
}
table.shop_table tbody .wc__cart__product--meta ul li span {
  font-weight: 500;
}

.woocommerce-orders-table {
  background: #fff;
  border-radius: var(--fl1-radius-md);
  padding: 32px;
}

.fl1-wc-products .section-title {
  font-size: var(--fl1-font-size-2xl);
  margin-bottom: var(--fl1-spacing-md);
}
.fl1-wc-products .section-title.hide-main-products {
  display: none;
}
.fl1-wc-products {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: var(--fl1-spacing-xl) 0;
}
.fl1-wc-products.max__width {
  margin: var(--fl1-spacing-xl) auto;
}
.fl1-wc-products.category {
  flex-direction: column;
}
.fl1-wc-products.category .description {
  margin-bottom: var(--fl1-spacing-xl);
}
.fl1-wc-products.category .description h1 {
  font-size: var(--fl1-font-size-3xl);
  font-weight: 400;
  color: var(--fl1-text-dark);
  margin-bottom: var(--fl1-spacing-sm);
  text-align: center;
}
.fl1-wc-products.category .description p {
  font-size: var(--fl1-font-size-sm);
  font-weight: 400;
  color: var(--fl1-text);
  text-align: center;
}
@media (max-width: 900px) {
  .fl1-wc-products {
    flex-direction: column;
  }
}
.fl1-wc-products-filters--mobile {
  display: none;
  width: 100%;
  margin-bottom: var(--fl1-spacing-sm);
}
@media (max-width: 900px) {
  .fl1-wc-products-filters--mobile {
    display: block;
  }
}
.fl1-wc-products-wrap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.fl1-wc-products-wrap.hide-main-products {
  display: none;
}
.fl1-wc-products-wrap.col {
  padding-left: var(--fl1-spacing-md);
}
@media (max-width: 900px) {
  .fl1-wc-products-wrap.col {
    padding-left: 0;
  }
}
.fl1-wc-products .fl1-wc-products-filters {
  padding-right: var(--fl1-spacing-xs);
}
.fl1-wc-products .fl1-wc-products-filters #fl1_wc_product_filters {
  padding: var(--fl1-spacing-xs);
  border-radius: var(--fl1-radius-md);
  box-shadow: var(--fl1-box-shadow);
}
@media (max-width: 900px) {
  .fl1-wc-products .fl1-wc-products-filters {
    display: none;
  }
}
.fl1-wc-products .fl1-wc-products-filters--mobile-header {
  position: relative;
  display: none;
}
@media (max-width: 900px) {
  .fl1-wc-products .fl1-wc-products-filters--mobile-header {
    display: block;
  }
}
.fl1-wc-products .fl1-wc-products-filters--mobile-header h4 {
  font-size: var(--fl1-font-sm);
  font-weight: 700;
  color: var(--fl1-text);
  margin-bottom: var(--fl1-spacing-xs);
}
.fl1-wc-products .fl1-wc-products-filters--mobile-header .fl1-wc-products-filters--mobile-close {
  position: absolute;
  top: -8px;
  right: 0;
  font-size: var(--fl1-font-md);
  color: var(--fl1-primary);
  cursor: pointer;
  font-size: var(--fl1-spacing-lg);
}
.fl1-wc-products .fl1-wc-products-filters article:not(:last-child) {
  margin-bottom: var(--fl1-spacing-sm);
}
.fl1-wc-products .fl1-wc-products-filters article input[type=text] {
  width: 100%;
  padding: var(--fl1-spacing-xs) var(--fl1-spacing-sm);
  border: 1px solid var(--fl1-border);
  border-radius: var(--fl1-radius-sm);
  font-size: var(--fl1-font-size-xs);
  color: var(--fl1-text);
  background: var(--fl1-lightgrey);
}
.fl1-wc-products .fl1-wc-products-filters article h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fl1-font-md);
  font-weight: 700;
  color: var(--fl1-text-dark);
  cursor: pointer;
}
.fl1-wc-products .fl1-wc-products-filters article h3 i {
  color: var(--fl1-primary);
}
.fl1-wc-products .fl1-wc-products-filters article ul {
  display: none;
  margin-top: 16px;
  padding-right: 8px;
}
.fl1-wc-products .fl1-wc-products-filters article ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=checkbox],
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=radio] {
  display: none;
  width: auto;
}
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=checkbox] + label,
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=radio] + label {
  color: var(--fl1-text);
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
}
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=checkbox] + label:before,
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=radio] + label:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 19px;
  color: var(--fl1-primary);
  content: "\f111";
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=checkbox] + label a,
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=radio] + label a {
  color: var(--fl1-primary);
}
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=checkbox]:checked + label,
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=radio]:checked + label {
  font-weight: 600;
  background: transparent;
  color: var(--fl1-primary);
}
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=checkbox]:checked + label:before,
.fl1-wc-products .fl1-wc-products-filters article ul li input[type=radio]:checked + label:before {
  content: "\f058";
  font-weight: bold;
  color: var(--fl1-secondary);
}
.fl1-wc-products .fl1-wc-products-filters article ul li label {
  font-size: var(--fl1-font-xs);
}
.fl1-wc-products .fl1-wc-products-filters article.expand ul {
  display: block;
}
.fl1-wc-products .fl1-wc-products-filters article.solid {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: var(--fl1-radius-md);
  margin-bottom: var(--fl1-spacing-md);
  padding: var(--fl1-spacing-md);
}
.fl1-wc-products .fl1-wc-products-filters .buttons {
  display: flex;
  flex-flow: column wrap;
  gap: var(--fl1-spacing-xs);
}
.fl1-wc-products .fl1-wc-products-filters .buttons button[type=submit],
.fl1-wc-products .fl1-wc-products-filters .buttons .clear-filters {
  width: 100%;
  justify-content: center;
  gap: var(--fl1-spacing-xs);
}
.fl1-wc-products .fl1-wc-products-filters.mobile-pop {
  display: block;
  position: fixed;
  z-index: 10;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: var(--fl1-spacing-md);
  overflow-y: auto;
  height: 100vh;
}

.fl1-wc-product {
  width: 33.3333333333%;
  display: flex;
}
@media (max-width: 900px) {
  .fl1-wc-product {
    width: 50%;
  }
}
@media (max-width: 650px) {
  .fl1-wc-product {
    width: 100%;
  }
}
.fl1-wc-product-pad {
  flex: 1;
  margin: var(--fl1-spacing-2xs);
  border-radius: var(--fl1-radius-lg);
  display: flex;
  background: var(--fl1-white);
  flex-direction: column;
}
.fl1-wc-product figure {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--fl1-radius-lg) var(--fl1-radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.fl1-wc-product figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fl1-wc-product figure a {
  display: block;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.fl1-wc-product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--fl1-spacing-sm);
  gap: var(--fl1-spacing-xs);
}
.fl1-wc-product-info h3 a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  font-size: var(--fl1-font-size-sm);
  font-weight: 400;
  color: var(--fl1-text-dark);
  text-decoration: none !important;
  cursor: pointer;
}
.fl1-wc-product-info h3 a i {
  font-size: var(--fl1-font-size-xs);
  background: var(--fl1-white);
  color: var(--fl1-primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}
.fl1-wc-product-info--meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--fl1-spacing-xs);
}
.fl1-wc-product-info--meta .woocommerce-Price-amount {
  font-size: var(--fl1-font-sm);
  color: var(--fl1-primary);
  font-weight: 700;
  margin-left: auto;
}
.fl1-wc-product-info--meta span.badge {
  background: var(--fl1-tertiary);
  color: var(--fl1-white);
  font-weight: 700;
  padding: 4px 16px 4px 12px;
  border-radius: var(--fl1-radius-md);
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 4px;
  font-size: var(--fl1-font-2xs);
}
.fl1-wc-product.skeleton figure {
  height: 250px;
}
.fl1-wc-product.skeleton .fl1-wc-product-info h3 {
  height: 16px;
  width: 75%;
  border-radius: var(--fl1-radius-md);
}
.fl1-wc-product.skeleton .fl1-wc-product-info h3 a {
  text-decoration: none !important;
}
.fl1-wc-product.skeleton .fl1-wc-product-info .woocommerce-Price-amount {
  display: block;
  height: 16px;
  width: 20%;
  border-radius: var(--fl1-radius-md);
}

/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(#fff, bottomright, 3deg, topleft, 3deg);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* Pretty radio and checkboxes
* Usage: @include mixins.pretty-checkradio(label);
* Source: https://stackoverflow.com/questions/12743837/can-i-use-variables-for-selectors
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
body.single-product header.header .header__main {
  padding: 16px 0;
}

.wc-single-product {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  gap: var(--fl1-spacing-xl);
  padding: var(--fl1-spacing-xl) 20px;
  border-bottom: 1px solid var(--fl1-border);
}
.wc-single-product--left {
  flex: 1;
  max-width: 40%;
}
.wc-single-product--right {
  flex: 1;
}
.wc-single-product--nav {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  flex-flow: column wrap;
  gap: var(--fl1-spacing-xs);
  margin-bottom: var(--fl1-spacing-md);
}
.wc-single-product--nav a {
  display: flex;
  align-self: center;
  align-items: baseline;
  gap: var(--fl1-spacing-xs);
  color: var(--fl1-primary-light);
  font-size: var(--fl1-font-size-md);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wc-single-product--nav a:hover {
  transition: all 0.3s ease;
  color: var(--fl1-primary);
}
.wc-single-product--nav .addthis_toolbox {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.wc-single-product--nav .addthis_toolbox a {
  margin: 0 3px;
}
.wc-single-product--nav .addthis_toolbox a i {
  font-size: 14px;
}
.wc-single-product--header {
  margin-bottom: var(--fl1-spacing-md);
}
.wc-single-product--header h1 {
  font-size: var(--fl1-font-size-3xl);
  font-weight: 500;
  color: var(--fl1-text-dark);
  line-height: 1.2;
}
.wc-single-product--header p {
  font-size: var(--fl1-font-size-lg);
  color: var(--fl1-text);
  line-height: 1.5;
}
.wc-single-product--gallery {
  background: var(--fl1-white);
  border-radius: var(--fl1-radius-xl);
  padding: var(--fl1-spacing-md);
  box-shadow: var(--fl1-box-shadow);
  max-height: max-content;
  margin: -10px;
}
@media (max-width: 800px) {
  .wc-single-product--gallery {
    width: 100%;
    padding: 20px;
  }
  .wc-single-product--gallery:before {
    display: block;
    content: attr(data-title);
    font-size: 41px;
    font-weight: 600;
    color: var(--fl1-text);
    line-height: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 800px) {
  .wc-single-product--gallery {
    padding: 10px;
  }
}
.wc-single-product--gallery .main .slick-prev {
  left: -20px;
}
.wc-single-product--gallery .main .slick-next {
  right: -20px;
}
.wc-single-product--gallery .main figure img {
  object-fit: contain;
  width: 100%;
  height: auto;
}
@media (max-width: 800px) {
  .wc-single-product--gallery .main figure {
    min-height: 450px;
  }
}
@media (max-width: 700px) {
  .wc-single-product--gallery .main figure {
    min-height: 350px;
  }
}
@media (max-width: 650px) {
  .wc-single-product--gallery .main figure {
    min-height: 250px;
  }
}
.wc-single-product--gallery .nav {
  margin-top: var(--fl1-spacing-md);
}
.wc-single-product--gallery .nav figure img {
  border-radius: var(--fl1-radius-sm);
  width: auto;
  display: block;
  max-height: 100px;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wc-single-product--gallery .nav figure img:hover {
  transition: all 0.3s ease;
  opacity: 0.8;
}
.wc-single-product--buy {
  margin-bottom: var(--fl1-spacing-xl);
}
.wc-single-product--buy .button {
  max-width: max-content;
}
.wc-single-product--buy .quote__buttons {
  display: flex;
  gap: var(--fl1-spacing-md);
}
.wc-single-product--downloads {
  margin-bottom: var(--fl1-spacing-sm);
}
.wc-single-product--downloads h2 {
  font-size: var(--fl1-font-size-xl);
  font-weight: 500;
  color: var(--fl1-text-dark);
  margin-bottom: var(--fl1-spacing-sm);
}
.wc-single-product--downloads ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  gap: var(--fl1-spacing-sm);
}
.wc-single-product--downloads li a {
  display: flex;
  align-items: center;
  gap: var(--fl1-spacing-sm);
  color: var(--fl1-text-dark);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wc-single-product--downloads li a:hover {
  color: var(--fl1-primary);
  text-decoration: underline;
  transition: all 0.3s ease;
}
.wc-single-product--downloads li a i {
  font-size: var(--fl1-font-size-md);
  color: var(--fl1-primary);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--fl1-white);
  border-radius: 50%;
  padding: 4px;
  box-shadow: var(--fl1-box-shadow-subtle);
}
.wc-single-product--downloads li a .wc-single-product--downloads-list-meta {
  display: flex;
  flex-flow: column wrap;
}
.wc-single-product--downloads li a .wc-single-product--downloads-list-meta span {
  text-transform: uppercase;
}
.wc-single-product--downloads li a .wc-single-product--downloads-list-meta span.size {
  font-size: var(--fl1-font-size-2xs);
  color: var(--fl1-text);
}
.wc-single-product--features {
  border-radius: var(--fl1-radius-md);
  padding: var(--fl1-spacing-lg) var(--fl1-spacing-xl);
  background: rgb(83.3572815534, 199.4111650485, 225.7427184466);
  margin: var(--fl1-spacing-lg) 0 0;
}
.wc-single-product--features article {
  padding: var(--fl1-spacing-s) 0;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.wc-single-product--features article strong {
  font-weight: 700;
  display: block;
  max-width: 240px;
  width: 100%;
  padding-right: var(--fl1-spacing-lg);
}
.wc-single-product--features article span {
  display: block;
  flex: 1;
}
.wc-single-product--ad {
  width: 50%;
  padding: 0 0 var(--fl1-spacing-xl) var(--fl1-spacing-xl);
  min-width: 335px;
}
@media (max-width: 1024px) {
  .wc-single-product--ad {
    width: 100%;
    padding: 20px;
    border: none;
    border-top: 1px #bfc3ca solid;
  }
}
@media (max-width: 650px) {
  .wc-single-product--ad {
    padding: 10px;
  }
}
.wc-single-product--ad header h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--fl1-text);
  line-height: 44px;
}
@media (max-width: 650px) {
  .wc-single-product--ad header h1 {
    font-size: 18px;
    line-height: 26px;
  }
}
.wc-single-product--ad header .wc-single-product--price {
  margin-top: 16px;
}
.wc-single-product--ad header .wc-single-product--price .woocommerce-Price-amount {
  font-size: 24px;
  color: var(--fl1-primary);
}
.wc-single-product h6 {
  font-size: 24px;
  font-weight: 700;
  color: var(--fl1-text);
  margin-bottom: var(--fl1-spacing-m);
}
.wc-single-product--categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fl1-spacing-s);
}
.wc-single-product--categories a {
  display: block;
  font-size: 11px;
  color: var(--fl1-white);
  font-weight: 600;
  background: var(--fl1-gradient-primary);
  border-radius: var(--fl1-radius-xl);
  text-align: center;
  padding: 4px var(--fl1-radius-md);
  transform: scale(1);
  transition: all 0.3s ease;
}
.wc-single-product--categories a:hover {
  color: var(--fl1-white);
  transition: all 0.3s ease;
  transform: scale(1.03);
}
.wc-single-product--message {
  margin: var(--fl1-spacing-m) 0;
  padding: var(--fl1-spacing-lg);
  border-radius: var(--fl1-border-radius-s);
  background: rgba(217, 241, 255, 0.9);
}
.wc-single-product--message h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fl1-text);
  margin-bottom: 8px;
}
.wc-single-product--message p {
  font-size: 12px;
  line-height: 1.5;
}
.wc-single-product--message p a {
  color: var(--fl1-secondary);
  font-weight: 600;
}
.wc-single-product--content {
  margin-bottom: var(--fl1-spacing-xl);
}
.wc-single-product--content p {
  font-size: 18px;
  line-height: 1.6;
}
.wc-single-product--content p:first-of-type strong {
  line-height: 1.5;
  font-size: 24px;
  color: var(--fl1-primary);
}
.wc-single-product--content p {
  margin-bottom: var(--fl1-spacing-md);
}
.wc-single-product--content p a {
  color: var(--fl1-primary);
  font-weight: 600;
}
.wc-single-product--content ul, .wc-single-product--content ol {
  padding-left: var(--fl1-spacing-xl);
  margin-bottom: var(--fl1-spacing-lg);
}
.wc-single-product--content ul li, .wc-single-product--content ol li {
  font-size: 18px;
  line-height: 1.5;
}
.wc-single-product--content ul li {
  list-style-type: disc;
}
.wc-single-product--content ol li {
  list-style-type: decimal;
}
.wc-single-product--content .fc_accordion {
  background: #fff;
  border-radius: var(--fl1-radius-md);
}
.wc-single-product--content .fc_accordion .accordion__wrap {
  border-bottom-color: var(--fl1-primary-light);
}
.wc-single-product--content .fc_accordion .accordion__wrap:last-of-type {
  border-bottom: none;
}
.wc-single-product--content .fc_accordion .accordion__wrap h3.toggle {
  font-size: 18px;
  line-height: normal;
}
.wc-single-product--content .fc_accordion .accordion__wrap .accordion__bg {
  border-radius: var(--fl1-radius-md);
}
.wc-single-product--content .fc_accordion .accordion__wrap ol.thinkific-course-lessons {
  margin: 0;
}
.wc-single-product--content .fc_accordion .accordion__wrap ol.thinkific-course-lessons li {
  font-size: 16px;
  line-height: 1.5;
  padding: 4px;
}
.wc-single-product--content .fc_accordion .accordion__wrap ol.thinkific-course-lessons li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--fl1-text);
  font-weight: 500;
  border-radius: var(--fl1-border-radius-s);
}
.wc-single-product--content .fc_accordion .accordion__wrap ol.thinkific-course-lessons li a:hover {
  background: var(--fl1-primary-light);
  color: var(--fl1-primary);
}
.wc-single-product--content .fc_accordion .accordion__wrap ol.thinkific-course-lessons li figure {
  background: var(--fl1-primary);
  border-radius: var(--fl1-border-radius-s);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 8px 4px;
}
.wc-single-product--quote {
  margin-top: var(--fl1-spacing-xl);
}
.wc-single-product .wc-single-float {
  display: none;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 10px;
  z-index: 999;
  box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .wc-single-product .wc-single-float {
    display: flex;
  }
}
.wc-single-product .wc-single-float-price {
  font-size: 23px;
  font-weight: 700;
}
.wc-single-product .wc-single-float-price del span {
  text-decoration: line-through;
  font-size: 16px;
  color: rgb(0, 111.1, 202);
  font-weight: normal;
}
.wc-single-product .wc-single-float-price ins {
  text-decoration: none;
}
.wc-single-product .wc-single-float-price span {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: var(--fl1-text);
  display: block;
}
.wc-single-product .wc-single-float-price span span {
  display: inline;
}
.wc-single-product .wc-single-float-button {
  margin-left: 20px;
}
.wc-single-product .wc-single-float-button a {
  font-family: "Poppins", sans-serif;
  background: #CAD507;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-left: auto;
  min-width: 200px;
  text-align: center;
  text-transform: none;
}
@media (max-width: 550px) {
  .wc-single-product .wc-single-float-button a {
    margin: 20px auto 0;
    min-width: 100%;
  }
}
.wc-single-product .wc-single-float-button a:hover {
  background: rgb(216.0481818182, 227.8131818182, 7.4868181818);
  transition: all 0.4s ease;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

body.single-product .wc-single-product--quote, body.tax-product_cat .wc-single-product--quote {
  background: var(--fl1-secondary);
  padding: var(--fl1-spacing-2xl);
  border-radius: var(--fl1-radius-md);
}
body.single-product .wc-single-product--quote-intro, body.tax-product_cat .wc-single-product--quote-intro {
  text-align: center;
  margin-bottom: var(--fl1-spacing-xl);
  color: #fff;
  font-size: var(--fl1-font-size-lg);
  line-height: 1.6;
}
body.single-product .wc-single-product--quote-intro p, body.tax-product_cat .wc-single-product--quote-intro p {
  font-size: var(--fl1-font-size-lg);
  color: var(--fl1-white);
}
body.single-product .wc-single-product--quote-intro a, body.tax-product_cat .wc-single-product--quote-intro a {
  color: var(--fl1-primary-light);
  text-decoration: none;
  font-weight: 600;
}
body.single-product .wc-single-product--quote-intro a:hover, body.tax-product_cat .wc-single-product--quote-intro a:hover {
  text-decoration: underline;
}
body.single-product .wc-single-product--quote-wrapper, body.tax-product_cat .wc-single-product--quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fl1-spacing-xl);
}
@media (max-width: 1024px) {
  body.single-product .wc-single-product--quote-wrapper, body.tax-product_cat .wc-single-product--quote-wrapper {
    grid-template-columns: 1fr;
  }
}
body.single-product .wc-single-product--quote-form .gform_wrapper, body.tax-product_cat .wc-single-product--quote-form .gform_wrapper {
  background: transparent;
}
body.single-product .wc-single-product--quote-form .gform_heading h2.gform_title, body.tax-product_cat .wc-single-product--quote-form .gform_heading h2.gform_title {
  display: none;
}
body.single-product .wc-single-product--quote-form .gform_heading p.gform_description, body.tax-product_cat .wc-single-product--quote-form .gform_heading p.gform_description {
  color: #fff;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_label,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form legend.gfield_label, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_label,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form legend.gfield_label {
  color: #fff !important;
  font-weight: 500;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gform-field-label--type-sub,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form label.gform-field-label--type-sub, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gform-field-label--type-sub,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form label.gform-field-label--type-sub {
  display: none;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gform-field-label,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form label, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gform-field-label,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form label {
  color: #fff !important;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_description,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form #gfield_description_2_3,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form div.gfield_description, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_description,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form #gfield_description_2_3,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form div.gfield_description {
  display: none !important;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_required,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_required_text,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form span.gfield_required, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_required,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_required_text,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form span.gfield_required {
  color: #fff !important;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .ginput_counter,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .charleft, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .ginput_counter,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .charleft {
  color: #fff !important;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .validation_message, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .validation_message {
  color: #fff !important;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form p, body.single-product .wc-single-product--quote-form .gform-theme--foundation form span, body.single-product .wc-single-product--quote-form .gform-theme--foundation form div, body.single-product .wc-single-product--quote-form .gform-theme--foundation form label, body.single-product .wc-single-product--quote-form .gform-theme--foundation form legend, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form p, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form span, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form div, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form label, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form legend {
  color: #fff !important;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form input[type=text],
body.single-product .wc-single-product--quote-form .gform-theme--foundation form input[type=email],
body.single-product .wc-single-product--quote-form .gform-theme--foundation form input[type=tel],
body.single-product .wc-single-product--quote-form .gform-theme--foundation form textarea,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form select, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form input[type=text],
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form input[type=email],
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form input[type=tel],
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form textarea,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form select {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--fl1-text-dark) !important;
  padding: 4px 16px !important;
  border-radius: 8px;
  font-size: 16px;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form input[type=text]::placeholder,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form input[type=email]::placeholder,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form input[type=tel]::placeholder,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form textarea::placeholder,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form select::placeholder, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form input[type=text]::placeholder,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form input[type=email]::placeholder,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form input[type=tel]::placeholder,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form textarea::placeholder,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form select::placeholder {
  color: #999 !important;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form input[type=text]:focus,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form input[type=email]:focus,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form input[type=tel]:focus,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form textarea:focus,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form select:focus, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form input[type=text]:focus,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form input[type=email]:focus,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form input[type=tel]:focus,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form textarea:focus,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form select:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gform_button, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gform_button {
  background: var(--fl1-primary-light) !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 32px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: var(--fl1-spacing-md);
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gform_button:hover, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gform_button:hover {
  background: var(--fl1-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .ginput_counter,
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .charleft, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .ginput_counter,
body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .charleft {
  color: #fff !important;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .validation_message, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .validation_message {
  color: #fff !important;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .screen-reader-text, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .screen-reader-text {
  color: #fff;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .ginput_container_consent label, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .ginput_container_consent label {
  color: #fff !important;
  font-size: 14px;
  line-height: 1.5;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .ginput_container_consent label:before, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .ginput_container_consent label:before {
  color: #fff !important;
  border: 2px solid #fff;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .ginput_container_consent input[type=checkbox]:checked + label:before, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .ginput_container_consent input[type=checkbox]:checked + label:before {
  background: #FF6B35;
  border-color: #FF6B35;
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .gfield_consent_description, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .gfield_consent_description {
  color: #fff !important;
  font-size: 14px;
  padding-left: 30px;
  margin-top: 8px;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .gfield_consent_description a, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .gfield_consent_description a {
  color: #FF6B35;
  text-decoration: underline;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .gfield_consent_description a:hover, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_consent .gfield_consent_description a:hover {
  color: #E55A2B;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_checkbox .gchoice label, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_checkbox .gchoice label {
  color: #fff !important;
  font-size: 14px;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_checkbox .gchoice label:before, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_checkbox .gchoice label:before {
  color: #fff !important;
  border: 2px solid #fff;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
body.single-product .wc-single-product--quote-form .gform-theme--foundation form .gfield_checkbox .gchoice input[type=checkbox]:checked + label:before, body.tax-product_cat .wc-single-product--quote-form .gform-theme--foundation form .gfield_checkbox .gchoice input[type=checkbox]:checked + label:before {
  background: #FF6B35;
  border-color: #FF6B35;
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}
body.single-product .wc-single-product--quote-benefits, body.tax-product_cat .wc-single-product--quote-benefits {
  display: flex;
  align-items: center;
  padding: var(--fl1-spacing-lg) 0;
}
body.single-product .wc-single-product--quote-benefits ul, body.tax-product_cat .wc-single-product--quote-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
body.single-product .wc-single-product--quote-benefits li, body.tax-product_cat .wc-single-product--quote-benefits li {
  display: flex;
  align-items: center;
  gap: var(--fl1-spacing-md);
  margin-bottom: var(--fl1-spacing-2xl);
  color: #fff;
  font-weight: 600;
  font-size: var(--fl1-font-size-md);
}
body.single-product .wc-single-product--quote-benefits li:last-child, body.tax-product_cat .wc-single-product--quote-benefits li:last-child {
  margin-bottom: 0;
}
body.single-product .wc-single-product--quote-benefits li i, body.tax-product_cat .wc-single-product--quote-benefits li i {
  font-size: 40px;
  color: var(--fl1-primary-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.single-product .wc-single-product--quote-benefits li span, body.tax-product_cat .wc-single-product--quote-benefits li span {
  line-height: 1.4;
}

/**
 * Woo Cart
 *
 * @package woocommerce/
 * @version 1.0
*/
body.woocommerce-cart .wc__wrapper {
  padding: 24px 20px;
}
body.woocommerce-cart .woocommerce {
  margin: 20px 0;
}
body.woocommerce-cart .woocommerce .wc-cart-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form {
  width: 63%;
  padding: 32px;
  background: var(--fl1-white);
  border-radius: 16px;
}
@media (max-width: 1024px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form {
    width: 100%;
    padding: 10px;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table thead th {
  padding: 10px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table thead th.product-subtotal {
  text-align: right;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td {
  vertical-align: middle;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-remove {
  width: 20px;
  font-size: 35px;
  vertical-align: middle;
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-remove {
    width: 30px;
    font-size: 25px;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-remove a {
  font-size: 25px;
  color: rgb(163.1025641026, 168.8461538462, 178.8974358974);
  font-weight: 200;
  height: auto;
  display: block;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-remove a:hover {
  color: tomato;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-thumbnail {
  width: 12%;
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-thumbnail {
    width: 30%;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-name {
    flex: 3 0 70%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-name:before {
    display: block;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-name a {
  font-family: var(--fl1-primary-font);
  font-size: 17px;
  color: var(--fl1-text);
  font-weight: 700;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-name a:hover {
  color: #002444;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-name dl.variation {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 13px;
  margin-top: 10px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-name dl.variation dt {
  flex: 1 0 50%;
  font-weight: 700;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-name dl.variation dd {
  flex: 1 0 50%;
  margin-bottom: 10px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-quantity {
  max-width: 120px;
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-quantity {
    max-width: 100%;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-quantity .quantity {
  display: flex;
  justify-content: flex-end;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-quantity .quantity label {
  display: none;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-quantity .quantity input[type=number] {
  border: none;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  color: var(--fl1-text);
  width: 60px;
  background: #eef0fb;
  border-radius: 8px;
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-quantity .quantity input[type=number] {
    width: 65px;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-price {
  color: var(--fl1-text);
  max-width: 135px;
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-price {
    padding-top: 10px;
    font-weight: 500;
    max-width: 100%;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-price .subscription-details {
  display: block;
  font-size: 12px;
  color: var(--fl1-text);
  margin-top: 5px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-subtotal {
  font-size: 18px;
  text-align: right;
  font-weight: 600;
  max-width: 150px;
  color: var(--fl1-text);
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-subtotal {
    max-width: 100%;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.product-subtotal .subscription-price .subscription-details {
  display: block;
  font-size: 12px;
  color: var(--fl1-text);
  margin-top: 5px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions {
  padding: 10px 0;
}
@media (max-width: 550px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions {
    width: 100%;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions .coupon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 0 16px;
  width: 100%;
  border-top: 1px var(--fl1-lightgrey) solid;
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions .coupon {
    flex-wrap: wrap;
    padding: 10px 0;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions .coupon label {
  font-size: 13px;
  font-weight: 700;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions .coupon input[type=text] {
  border: none;
  padding: 12px 16px;
  width: auto;
  font-size: 12px;
  color: var(--fl1-text);
  margin: 0 10px 0 5px;
  font-family: var(--fl1-primary-font);
  background: var(--fl1-lightgrey);
  border-radius: 8px;
}
@media (max-width: 550px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions .coupon input[type=text] {
    flex: 1 0 auto;
    margin-right: 0;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions button,
body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions input[type=submit] {
  font-size: 14px;
  padding: 10px 23px;
  display: block;
  cursor: pointer;
  border: none;
  background: var(--fl1-primary);
  color: var(--fl1-white);
  font-family: var(--fl1-primary-font);
  transition: all 0.4s ease;
  margin-left: auto;
}
@media (max-width: 550px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions button,
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table td.actions input[type=submit] {
    flex: 1 0 100%;
    margin: 10px 0 0;
  }
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table .product-price,
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table .product-quantity,
  body.woocommerce-cart .woocommerce .woocommerce-cart-form table.shop_table .product-subtotal {
    flex: 1 0 100%;
  }
}
body.woocommerce-cart .woocommerce .cart-collaterals {
  width: 35%;
  padding: 32px;
  background: var(--fl1-white);
  border-radius: 16px;
}
@media (max-width: 1024px) {
  body.woocommerce-cart .woocommerce .cart-collaterals {
    width: 100%;
    padding: 10px;
    border: none;
  }
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
  position: sticky;
  top: 20px;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 20px;
  color: var(--fl1-text);
  font-weight: 700;
  margin-bottom: 20px;
  padding: 6px 10px 10px;
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr {
    padding: 0;
  }
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr th {
  width: 40%;
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  font-weight: 600;
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr th {
    border: none;
  }
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr td {
  width: 60%;
  text-align: right;
}
@media (max-width: 700px) {
  body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr td {
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
  }
  body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr td:before {
    display: none;
  }
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr td span.amount {
  color: var(--fl1-text);
  font-weight: 600;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr.cart-subtotal.recurring-total td {
  font-size: 14px;
  color: var(--fl1-text);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr.cart-subtotal.recurring-total td span.amount {
  font-size: 16px;
  color: var(--fl1-text);
  font-weight: 600;
  display: block;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr.shipping .woocommerce-shipping-destination {
  font-size: 12px;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr.recurring-totals th {
  color: #002444;
  font-weight: 700;
  font-size: 18px;
  padding-top: 20px;
  border-bottom: none;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr.order-total strong {
  font-size: 24px;
  font-weight: 600;
  color: var(--fl1-text);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr.order-total span.amount {
  color: var(--fl1-text);
  font-weight: 700;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr.order-total.recurring-total td {
  font-size: 14px;
  color: var(--fl1-text);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tbody tr.order-total.recurring-total td strong {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--fl1-text);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  margin: 20px 0;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .button {
  font-family: var(--fl1-primary-font);
  background: var(--fl1-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 20px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-left: auto;
  width: 100%;
  display: block;
  text-align: center;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc__continue__shopping {
  margin: 0 0 10px;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc__continue__shopping a {
  font-size: 16px;
  padding: 15px 20px;
  display: block;
  cursor: pointer;
  background: var(--fl1-lightgrey);
  color: var(--fl1-text);
  border: none;
  font-family: var(--fl1-primary-font);
  transition: all 0.4s ease;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc__continue__shopping a:hover {
  background: rgb(217.3571428571, 221.7857142857, 246.1428571429);
  transition: all 0.4s ease;
}
@media (max-width: 550px) {
  body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc__continue__shopping a {
    flex: 1 0 100%;
    margin-top: 0;
  }
}
body.woocommerce-cart .woocommerce .wc__empty__basket {
  flex: 1 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--fl1-white);
  padding: 24px;
  border-radius: var(--fl1-radius-md);
  margin: 24px 0 0;
}
@media (max-width: 900px) {
  body.woocommerce-cart .woocommerce .wc__empty__basket {
    flex-direction: column;
  }
}
body.woocommerce-cart .woocommerce .wc__empty__basket .message {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  body.woocommerce-cart .woocommerce .wc__empty__basket .message {
    flex-direction: column;
  }
}
body.woocommerce-cart .woocommerce .wc__empty__basket .message figure {
  margin-right: 10px;
}
@media (max-width: 900px) {
  body.woocommerce-cart .woocommerce .wc__empty__basket .message figure {
    margin: 0 0 10px;
  }
}
body.woocommerce-cart .woocommerce .wc__empty__basket .message figure i {
  font-size: 21px;
  color: #002444;
}
body.woocommerce-cart .woocommerce .wc__empty__basket .message p {
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--fl1-text);
}
body.woocommerce-cart .woocommerce .wc__empty__basket--buttons {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  body.woocommerce-cart .woocommerce .wc__empty__basket--buttons {
    margin-top: 20px;
  }
}
body.woocommerce-cart .woocommerce .wc__empty__basket--buttons a,
body.woocommerce-cart .woocommerce .wc__empty__basket--buttons button {
  margin-left: 10px;
}
body.woocommerce-cart .woocommerce p.return-to-shop {
  flex: 1 0 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
body.woocommerce-cart .woocommerce p.return-to-shop .wc-backward {
  font-size: 14px;
  font-weight: 800;
  padding: 10px 23px;
  display: block;
  text-transform: uppercase;
  cursor: pointer;
  background: #003764;
  color: #fff;
  transition: all 0.4s ease;
  text-align: center;
}
body.woocommerce-cart .woocommerce p.return-to-shop .wc-backward:hover {
  background: rgb(0, 49.39, 89.8);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 550px) {
  body.woocommerce-cart .woocommerce p.return-to-shop .wc-backward {
    flex: 1 0 100%;
    margin-top: 10px;
  }
}
body.woocommerce-cart .woocommerce p.cart-empty {
  display: none;
}

/**
 * WooCommerce Login/Register
 *
 * @package woocommerce/
 * @version 1.0
*/
.wc__login__register {
  display: flex;
  min-height: 100%;
  position: relative;
}
.wc__login__register .wc__login__register--back {
  position: absolute;
  top: 15px;
  right: 20px;
}
.wc__login__register .wc__login__register--back a {
  display: flex;
}
.wc__login__register .wc__login__register--back a i {
  font-size: 30px;
  color: var(--fl1-primary);
}
.wc__login__register .wc__login__register--banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(73, 38, 4, 0.5);
  z-index: 1;
}
.wc__login__register .wc__login__register--banner {
  width: 40%;
  position: relative;
  background: #CAD507;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 0 80px 0;
  background: url("../img/wc-my-account.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .wc__login__register .wc__login__register--banner {
    padding: 0 20px 0;
  }
}
@media (max-width: 900px) {
  .wc__login__register .wc__login__register--banner {
    display: none;
  }
}
.wc__login__register .wc__login__register--banner h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  margin-top: -200px;
  position: relative;
  z-index: 2;
}
.wc__login__register .wc__login__register--banner ul {
  position: relative;
  z-index: 2;
}
.wc__login__register .wc__login__register--banner ul li {
  font-size: 16px;
  color: #fff;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.wc__login__register .wc__login__register--banner ul li i {
  color: #fff;
  margin-right: 10px;
}
.wc__login__register .wc__login__register--form {
  width: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 150px;
  background: #fff;
}
.wc__login__register .wc__login__register--form-content {
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .wc__login__register .wc__login__register--form {
    padding-top: 80px;
  }
}
@media (max-width: 900px) {
  .wc__login__register .wc__login__register--form {
    width: 100%;
    padding: 80px 20px 0;
  }
}
.wc__login__register .wc__login__register--form .woocommerce-notices-wrapper {
  flex: 0 auto;
}
.wc__login__register .wc__login__register--form ul.woocommerce-message, .wc__login__register .wc__login__register--form ul.woocommerce-error {
  flex: 0 auto;
  margin: 0;
}
.wc__login__register .wc__login__register--form ul.woocommerce-message {
  margin-bottom: 20px;
}
.wc__login__register .wc__login__register--form figure {
  max-width: 120px;
  margin-bottom: 20px;
}
.wc__login__register .wc__login__register--form .wc__is__user {
  padding: 0 0 40px;
  text-align: center;
  max-width: 450px;
}
.wc__login__register .wc__login__register--form .wc__is__user h2 {
  font-size: 28px;
  color: #002444;
  margin-bottom: 20px;
}
.wc__login__register .wc__login__register--form .wc__is__user p {
  font-size: 14px;
  line-height: 20px;
}
.wc__login__register .wc__login__register--form .wc__is__user a {
  color: #002444;
  font-weight: 700;
  text-decoration: underline;
}
.wc__login__register .wc__login__register--form .wc__is__user a:hover {
  color: #4FC6E1;
}
.wc__login__register .wc__login__register--form form {
  width: 100%;
}
.wc__login__register .wc__login__register--form form.register .wc__form__row.flex {
  display: flex;
  justify-content: space-between;
}
.wc__login__register .wc__login__register--form form.register .wc__form__row.flex .wc__form__field {
  width: 48%;
}
.wc__login__register .wc__login__register--form form .wc__form__row {
  padding-bottom: 20px;
}
.wc__login__register .wc__login__register--form form .wc__form__row:last-child {
  padding-bottom: 0;
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field {
  display: flex;
  flex-direction: column;
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field label span.required {
  color: tomato;
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field input[type=text],
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field input[type=email],
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field input[type=password] {
  font-family: "Poppins", sans-serif;
  color: var(--fl1-text);
  font-size: 16px;
  padding: 20px;
  border: none;
  background: var(--fl1-lightgrey);
  border-radius: 8px;
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field input[type=text]:focus,
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field input[type=email]:focus,
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field input[type=password]:focus {
  outline: none;
  box-shadow: 0 0 5px var(--fl1-secondary);
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field.wc__forgot__password {
  align-items: flex-end;
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field.wc__forgot__password a {
  font-size: 12px;
  color: #002444;
  text-decoration: underline;
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field.wc__forgot__password a:hover {
  color: #4FC6E1;
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field.wc__magic__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--fl1-border);
  gap: var(--fl1-spacing-xs);
  padding: var(--fl1-spacing-xs) 0;
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field.wc__magic__link p {
  font-size: 12px;
  color: var(--fl1-text);
  margin-top: var(--fl1-spacing-m);
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field.wc__magic__link span.or {
  background: #fff;
  display: inline-block;
  padding: 0 16px;
  margin: -8px 0 var(--fl1-spacing-m);
  color: var(--fl1-text);
}
.wc__login__register .wc__login__register--form form .wc__form__row .wc__form__field.submit {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.wc__login__register .wc__login__register--form form .wc__remember__me {
  display: flex;
  align-items: center;
}
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=checkbox],
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=radio] {
  display: none;
  width: auto;
}
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=checkbox] + label,
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=radio] + label {
  color: var(--fl1-text);
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
}
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=checkbox] + label:before,
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=radio] + label:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 19px;
  color: var(--fl1-primary);
  content: "\f111";
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=checkbox] + label a,
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=radio] + label a {
  color: var(--fl1-primary);
}
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=checkbox]:checked + label,
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=radio]:checked + label {
  font-weight: 600;
  background: transparent;
  color: var(--fl1-primary);
}
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=checkbox]:checked + label:before,
.wc__login__register .wc__login__register--form form .wc__remember__me input[type=radio]:checked + label:before {
  content: "\f058";
  font-weight: bold;
  color: var(--fl1-secondary);
}
.wc__login__register .wc__login__register--form form .wc-social-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px #eef0fb solid;
}
.wc__login__register .wc__login__register--form form .wc-social-login a {
  margin-top: 20px;
}
.wc__login__register .wc__login__register--form form .woocommerce-password-strength {
  margin: 10px 0 0;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}
.wc__login__register .wc__login__register--form form .woocommerce-password-strength.bad, .wc__login__register .wc__login__register--form form .woocommerce-password-strength.short {
  background: #fde9e5;
  color: tomato;
}
.wc__login__register .wc__login__register--form form .woocommerce-password-strength.good {
  background: #fdf0e1;
  color: #f98806;
}
.wc__login__register .wc__login__register--form form .woocommerce-password-strength.strong {
  background: #f0fde1;
  color: #61b105;
}
.wc__login__register .wc__login__register--form form .woocommerce-password-hint {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 13px;
  margin-top: 10px;
  padding: 20px;
  display: flex;
  border: 1px #eef0fb solid;
}
.wc__login__register .wc__login__register--form form .woocommerce-password-hint:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f0eb";
  font-size: 22px;
  color: #002444;
  margin-right: 10px;
}
.wc__login__register .wc__login__register--form form .woocommerce-privacy-policy-text {
  font-size: 14px;
  line-height: 20px;
}
.wc__login__register .wc__login__register--form form .woocommerce-privacy-policy-text a {
  color: var(--fl1-primary);
}
.wc__login__register .wc__login__register--form form .woocommerce-privacy-policy-text {
  margin-bottom: 16px;
}
.wc__login__register .wc__login__register--form #magic-login-shortcode {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  gap: var(--fl1-spacing-sm);
}
.wc__login__register .wc__login__register--form #magic-login-shortcode p.message {
  padding: var(--fl1-spacing-lg);
  border-radius: var(--fl1-border-radius-sm);
  background: rgba(217, 241, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  border: none;
  margin-top: 0;
}
.wc__login__register .wc__login__register--form #magic-login-shortcode p.message.magic_login_block_login_success {
  color: var(--fl1-text);
}
.wc__login__register .wc__login__register--form #magic-login-shortcode form {
  display: flex;
  flex-direction: column;
  gap: var(--fl1-spacing-sm);
}
.wc__login__register .wc__login__register--form #magic-login-shortcode form label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.wc__login__register .wc__login__register--form #magic-login-shortcode form input[type=text] {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 20px;
  border: none;
  background: var(--fl1-primary-light);
  border-radius: 8px;
}
.wc__login__register .wc__login__register--form #magic-login-shortcode form input[type=text]:focus {
  outline: none;
  box-shadow: 0 0 5px var(--fl1-secondary);
}
.wc__login__register .wc__login__register--form #magic-login-shortcode form input[type=submit] {
  background: var(--fl1-primary);
  color: #fff;
  padding: 16px 24px;
  font-size: 16px;
  margin-top: var(--fl1-spacing-m);
}
.wc__login__register .wc__login__register--form .wc__login__register--footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: auto;
  padding: 20px 0 60px;
}
.wc__login__register .wc__login__register--form .wc__login__register--footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.wc__login__register .wc__login__register--form .wc__login__register--footer ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 0 10px;
}
@media (max-width: 1024px) {
  .wc__login__register .wc__login__register--form .wc__login__register--footer ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px;
  }
  .wc__login__register .wc__login__register--form .wc__login__register--footer ul li:first-child {
    flex: 1 0 100%;
  }
  .wc__login__register .wc__login__register--form .wc__login__register--footer ul li:nth-child(2) {
    flex: 1 0 100%;
  }
}
.wc__login__register .wc__login__register--form .wc__login__register--footer ul li i {
  margin-right: 5px;
}
.wc__login__register .wc__login__register--form .wc__login__register--footer ul li.secure {
  color: #64c82d;
}
.wc__login__register .wc__login__register--form .wc__login__register--footer ul li.social {
  padding: 0 2px;
  font-size: 16px;
}
.wc__login__register .wc__login__register--form .wc__login__register--footer ul li.social a {
  color: #003764;
}
.wc__login__register .wc__login__register--form .wc__login__register--footer ul li.social:first-of-type {
  font-size: 14px;
}

/**
 * Woo My Account
 *
 * @package woocommerce/
 * @version 1.0
*/
body.woocommerce-account header.header .header__main {
  align-items: center;
  padding: 10px 0 10px 20px;
}
body.woocommerce-account header.header .header__main--right {
  top: auto;
  align-items: center;
}
body.woocommerce-account header.header .logo {
  width: 175px;
}
body.woocommerce-account section.avb .avb-banners .avb-banner {
  min-height: 180px;
}
body.woocommerce-account .woocommerce {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 60px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  body.woocommerce-account .woocommerce {
    flex-direction: column;
    padding: 10px 20px;
  }
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation {
  width: 300px;
}
@media (max-width: 1024px) {
  body.woocommerce-account nav.woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: 20px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1024px) {
  body.woocommerce-account nav.woocommerce-MyAccount-navigation ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li {
    flex: 1 0 auto;
    border-bottom: none;
  }
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--myreferrals {
  display: none;
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 20px;
  color: var(--fl1-primary);
  display: flex;
  align-items: center;
  border-left: 1px transparent solid;
  font-size: 15px;
  font-weight: 700;
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a:before {
  font-family: "Font Awesome 6 Pro";
  font-size: 22px;
  margin-right: 10px;
  font-weight: 300;
  width: 26px;
  text-align: center;
}
@media (max-width: 1024px) {
  body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
  }
  body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a:before {
    display: block;
    margin-right: 0;
  }
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li:hover a {
  color: #002444;
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #002444;
  background: #fff;
  border-radius: var(--fl1-radius-xl);
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--book {
  background: #CAD507;
  border-bottom: none;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--book {
    margin-bottom: 0;
  }
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--book a {
  justify-content: center;
  color: #fff;
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--book:hover a {
  background: rgb(225.4136363636, 237.6886363636, 7.8113636364);
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before {
  content: "\f0db";
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before {
  content: "\f7eb";
  font-size: 20px;
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--subscriptions a:before {
  content: "\f2f9";
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before {
  content: "\f09d";
  font-size: 19px;
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before {
  content: "\f103";
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before {
  content: "\f3c5";
  font-size: 21px;
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before {
  content: "\f007";
  font-size: 21px;
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
  content: "\f08b";
  font-size: 21px;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1 0 auto;
  width: calc(100% - 300px);
  padding: 0 0 0 40px;
}
@media (max-width: 1024px) {
  body.woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    padding-left: 0;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content .my-account-orders__section_heading {
  margin-bottom: 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content #message.updated {
  display: flex;
  align-items: center;
  padding: 9px 10px 7px;
  flex: 1 0 100%;
  background: #eef0fb;
  color: #003764;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 700px) {
  body.woocommerce-account .woocommerce-MyAccount-content #message.updated {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content #message.updated:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f05a";
  color: #002444;
  font-size: 23px;
  display: block;
  margin-right: 10px;
}
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: 22px;
  color: #003764;
  margin-bottom: 20px;
  font-weight: 700;
}
body.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type {
  margin-bottom: 20px;
  padding: 20px;
  background: var(--fl1-white);
  font-size: 15px;
  line-height: 26px;
  border-radius: var(--fl1-radius-md);
}
body.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type mark {
  background: none;
  font-weight: 700;
  color: #003764;
}
body.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type strong {
  font-weight: 600;
  color: #003764;
}
body.woocommerce-account .woocommerce-MyAccount-content > p a {
  color: #4FC6E1;
  font-weight: 600;
}
body.woocommerce-account .woocommerce-MyAccount-content .button {
  color: #002444;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile {
  padding: 15px 0 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px rgb(23.5, 150.825, 255) solid;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__icon {
  background: #4FC6E1;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-right: 20px;
  overflow: hidden;
  text-align: center;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__icon i {
  font-size: 52px;
  color: rgb(0, 12.925, 23.5);
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__user__meta h3 {
  font-size: 22px;
  color: #003764;
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: mamabpapabearear) {
  body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__user__meta h3 {
    font-size: 18px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__user__meta h3 figure {
  border-radius: 3px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: rgb(108.7179487179, 116.9230769231, 131.2820512821);
  padding: 2px 6px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  border: 1px #bfc3ca solid;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__user__meta h3 figure i {
  font-size: 18px;
  color: #4FC6E1;
  margin-right: 5px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__actions a {
  display: flex;
  align-items: center;
  color: #003764;
  font-size: 13px;
  font-weight: 600;
  margin-left: 20px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__actions a {
    font-size: 15px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__actions a i {
  font-size: 15px;
  margin-right: 5px;
  color: #002444;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__my__account__profile .wc__my__account__actions a:hover {
  color: #002444;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: flex;
  padding: 20px 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
  padding-right: 40px;
  width: 50%;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address header {
  display: flex;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address header h3 {
  font-size: 19px;
  font-weight: 700;
  color: #003764;
  margin-bottom: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address header a.edit {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  background: #002444;
  border-radius: var(--fl1-radius-sm);
  font-weight: 700;
  padding: 4px 10px 4px;
  margin-left: 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address address {
  line-height: 22px;
  font-size: 15px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc-social-login-profile a.js-show-available-providers {
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  background: #d93f97;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm div.clear,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper div.clear {
  display: none;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p {
  width: 100%;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row {
  width: 50%;
  padding-right: 20px;
  margin-bottom: 20px;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row {
    width: 100%;
    padding-right: 0;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row label,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--fl1-primary);
  padding-bottom: 5px;
  align-self: flex-start;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row label.required,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row label.required {
  color: tomato;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row input[type=text],
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row input[type=email],
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row input[type=tel],
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row input[type=password],
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row input[type=text],
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row input[type=email],
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row input[type=tel],
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row input[type=password] {
  border: none;
  padding: 15px;
  width: 100%;
  font-family: var(--fl1-primary-font);
  font-size: 16px;
  color: #003764;
  background: #fff;
  border-radius: var(--fl1-radius-sm);
}
@media (max-width: 1024px) {
  body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row input[type=text],
  body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row input[type=email],
  body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row input[type=tel],
  body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row input[type=password],
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row input[type=text],
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row input[type=email],
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row input[type=tel],
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row input[type=password] {
    width: 100%;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p.form-row span em,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row span em {
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p input[type=checkbox],
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p input[type=checkbox] {
  appearance: checkbox;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm p:not(.form-row),
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p:not(.form-row) {
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
  padding-bottom: 40px;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper fieldset {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset legend,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper fieldset legend {
  flex: 1 0 100%;
  font-size: 22px;
  font-weight: 700;
  color: #4FC6E1;
  margin-bottom: 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset p:first-of-type.form-row,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper fieldset p:first-of-type.form-row {
  margin-bottom: 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset p.form-row,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper fieldset p.form-row {
  width: 100%;
}
body.woocommerce-account .woocommerce-MyAccount-content button[type=submit],
body.woocommerce-account .woocommerce-MyAccount-content input[type=submit] {
  font-family: var(--fl1-primary-font);
  font-size: 15px;
  font-weight: 800;
  padding: 16px 25px 12px;
  display: block;
  cursor: pointer;
  margin-top: 10px;
  background: #002444;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
body.woocommerce-account .woocommerce-MyAccount-content button[type=submit]:hover,
body.woocommerce-account .woocommerce-MyAccount-content input[type=submit]:hover {
  background: #002444;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields #billing_address_2_field:before {
  content: "Address 2";
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 5px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields p:not(.form-row) {
  display: flex;
  justify-content: flex-end;
  margin: 0 20px 0;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
  width: 100%;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead tr th {
  padding: 10px;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead tr th.woocommerce-orders-table__header-order-actions {
  text-align: right;
}
@media (max-width: 1024px) {
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td {
    flex-direction: column;
    align-items: flex-start;
  }
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td:before {
    margin-bottom: 5px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td i {
  font-size: 12px;
  color: #002444;
  display: inline-block;
  margin: 0 5px 9px 0;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td span.status-label {
  display: inline-block;
  padding: 4px 13px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin: 3px 0;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td span.status-label.completed {
  border: 1px solid var(--fl1-success);
  color: var(--fl1-success);
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td span.status-label.on-hold {
  border: 1px solid rgb(48.3417721519, 122.6582278481, 117.6075949367);
  color: rgb(48.3417721519, 122.6582278481, 117.6075949367);
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td span.status-label.failed {
  border: 1px solid tomato;
  color: tomato;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td .button {
  font-family: var(--fl1-primary-font);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 25px;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  color: #003764;
  transition: all 0.3s ease;
  background: #002444;
  color: #fff;
}
@media (max-width: 1024px) {
  body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr td .button {
    margin: 10px 0 0;
    border-left: none;
    min-width: 100px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr .woocommerce-orders-table__cell-order-actions {
  text-align: right;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tfoot tr th,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tfoot tr td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px rgb(225.6142857143, 229.0714285714, 248.0857142857) solid;
}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tfoot tr th span.woocommerce-Price-amount,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tfoot tr td span.woocommerce-Price-amount {
  font-size: 22px;
  font-weight: 700;
  color: #002444;
}
body.woocommerce-account .woocommerce-MyAccount-content table.order_details, body.woocommerce-account .woocommerce-MyAccount-content table.subscription_details, body.woocommerce-account .woocommerce-MyAccount-content table.account-payment-methods-table {
  margin-bottom: 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content table.account-payment-methods-table + a {
  font-family: var(--fl1-primary-font);
  font-size: 16px;
  font-weight: 800;
  padding: 10px 23px;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
  background: #002444;
  color: #fff;
  border: none;
}
body.woocommerce-account .woocommerce-MyAccount-content table.account-payment-methods-table + a:hover {
  background: rgb(0, 49.5, 93.5);
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods {
  padding: 20px 20px 1px 20px;
  border: 1px rgb(23.5, 150.825, 255) solid;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li {
  margin-bottom: 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li label {
  font-size: 16px;
  font-weight: 700;
  color: #003764;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li label i {
  display: none;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li label[for=payment_method_realex_redirect] img {
  display: none;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li label[for=payment_method_stripe] {
  padding-left: 0 !important;
  display: flex !important;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li label[for=payment_method_stripe] img {
  display: none;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li label[for=wc-stripe-update-subs-payment-method-card] {
  display: flex !important;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li p {
  font-size: 14px;
  line-height: 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=checkbox],
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=radio] {
  display: none;
  width: auto;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=checkbox] + label,
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=radio] + label {
  color: var(--fl1-text);
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=checkbox] + label:before,
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=radio] + label:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 19px;
  color: var(--fl1-primary);
  content: "\f111";
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=checkbox] + label a,
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=radio] + label a {
  color: var(--fl1-primary);
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=checkbox]:checked + label,
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=radio]:checked + label {
  font-weight: 600;
  background: transparent;
  color: var(--fl1-primary);
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=checkbox]:checked + label:before,
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li input[type=radio]:checked + label:before {
  content: "\f058";
  font-weight: bold;
  color: var(--fl1-secondary);
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li ul.wc-saved-payment-methods {
  padding: 10px 0 0 10px;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li ul.wc-saved-payment-methods li {
  margin-bottom: 10px;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li ul.wc-saved-payment-methods li label {
  font-size: 14px;
  margin-bottom: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li ul.wc-saved-payment-methods li label.wc-stripe-new-payment-method {
  display: flex !important;
}
body.woocommerce-account .woocommerce-MyAccount-content #add_payment_method ul.woocommerce-PaymentMethods li.payment_method_ppec_paypal label img {
  display: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 40px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article {
  width: 50%;
  flex: 1 0 420px;
}
@media (max-width: 1024px) {
  body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article {
    margin-bottom: 20px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner {
  border: 1px rgb(23.5, 150.825, 255) solid;
  padding: 30px;
  color: #003764;
  margin: 10px;
  display: block;
  height: 100%;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner h4 {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner h4 i {
  font-size: 20px;
  margin-right: 10px;
  color: #002444;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner ul {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px rgb(23.5, 150.825, 255) solid;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner ul:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner ul li {
  display: flex;
  font-size: 14px;
  margin-bottom: 10px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner ul li strong {
  font-weight: 700;
  min-width: 120px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 19px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner table.credits-table thead th {
  font-size: 13px;
}
@media (max-width: 700px) {
  body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner table.credits-table thead th {
    padding: 0 0 10px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner table.credits-table thead th.credits {
  width: 60px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner table.credits-table thead th.expiry {
  width: 100px;
  min-width: 100px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner table.credits-table tbody td {
  font-size: 13px;
}
@media (max-width: 700px) {
  body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner table.credits-table tbody td {
    padding: 0 0 10px;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner table.credits-table tbody td.credits {
  width: 60px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner table.credits-table tbody td.expiry {
  width: 100px;
  min-width: 100px;
}
body.woocommerce-account .woocommerce-MyAccount-content .wc__dashboard article .wc__dashboard__item-inner:hover {
  background: #55BCB5;
  border: 1px #55BCB5 solid;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message {
  margin: 0 0 20px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message:before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message:before {
  content: "\f05a";
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination {
  padding: 20px 10px 0;
  display: flex;
  justify-content: flex-end;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button {
  background: #bfc3ca;
  color: #003764;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  margin-left: 4px;
  font-size: 13px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button:hover {
  background: rgb(185.4205128205, 189.7692307692, 197.3794871795);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/**
 * Woo Single Product
 *
 * @package woocommerce/
 * @version 1.0
*/
.woocommerce-order {
  background: #fff;
  border-radius: var(--fl1-radius-md);
  padding: 48px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.09);
}
.woocommerce-order h1 {
  font-size: 35px;
  font-weight: 700;
  color: #003764;
  margin-bottom: 20px;
}
.woocommerce-order h2 {
  font-size: 21px;
  font-weight: 700;
  color: #003764;
  margin-bottom: 20px;
}
.woocommerce-order p {
  font-size: 16px;
  line-height: 24px;
  color: var(--fl1-text);
  margin-bottom: 20px;
}
.woocommerce-order p.woocommerce-thankyou-order-received {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}
@media (max-width: 550px) {
  .woocommerce-order p.woocommerce-thankyou-order-received {
    text-align: center;
    font-size: 28px;
  }
}
.woocommerce-order p a {
  color: #002444;
  font-weight: 600;
}
.woocommerce-order p strong {
  font-weight: 700;
}
.woocommerce-order ul.woocommerce-thankyou-order-details {
  display: flex;
  flex-wrap: wrap;
  border-radius: var(--fl1-radius-md);
  background: var(--fl1-blue-highlight);
  padding: 32px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .woocommerce-order ul.woocommerce-thankyou-order-details {
    padding: 10px;
  }
}
.woocommerce-order ul.woocommerce-thankyou-order-details li {
  padding: 10px;
  width: 33.3333333333%;
  font-size: 18px;
  font-weight: 700;
  color: #003764;
}
@media (max-width: 1024px) {
  .woocommerce-order ul.woocommerce-thankyou-order-details li {
    width: 50%;
  }
}
@media (max-width: 550px) {
  .woocommerce-order ul.woocommerce-thankyou-order-details li {
    width: 100%;
  }
}
.woocommerce-order ul.woocommerce-thankyou-order-details li strong {
  font-weight: 500;
  display: block;
  text-transform: none;
  color: var(--fl1-text);
  margin-top: 5px;
}
.woocommerce-order ul.woocommerce-thankyou-order-details li.total, .woocommerce-order ul.woocommerce-thankyou-order-details li.method {
  display: none;
}

.woocommerce-order-pay,
.woocommerce-order-details {
  background: #fff;
  border-radius: var(--fl1-radius-md);
  padding: 32px;
  margin: 16px 0;
}
.woocommerce-order-pay h2,
.woocommerce-order-details h2 {
  font-size: 25px;
  font-weight: 700;
  color: #003764;
  margin-bottom: 20px;
}
.woocommerce-order-pay table.shop_table,
.woocommerce-order-details table.shop_table {
  width: 100%;
}
.woocommerce-order-pay table.shop_table.woocommerce-table--order-details,
.woocommerce-order-details table.shop_table.woocommerce-table--order-details {
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .woocommerce-order-pay table.shop_table .product-total,
  .woocommerce-order-details table.shop_table .product-total {
    width: 100%;
  }
}
.woocommerce-order-pay table.shop_table thead tr th,
.woocommerce-order-details table.shop_table thead tr th {
  padding: 10px;
  font-size: 16px;
}
.woocommerce-order-pay table.shop_table thead tr th.product-total,
.woocommerce-order-details table.shop_table thead tr th.product-total {
  text-align: right;
}
.woocommerce-order-pay table.shop_table tbody tr,
.woocommerce-order-details table.shop_table tbody tr {
  width: 100%;
}
@media (max-width: 700px) {
  .woocommerce-order-pay table.shop_table tbody tr,
  .woocommerce-order-details table.shop_table tbody tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px #bfc3ca solid;
    padding: 10px 0;
  }
}
.woocommerce-order-pay table.shop_table tbody tr td,
.woocommerce-order-details table.shop_table tbody tr td {
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px #bfc3ca solid;
  min-width: 200px;
}
@media (max-width: 700px) {
  .woocommerce-order-pay table.shop_table tbody tr td,
  .woocommerce-order-details table.shop_table tbody tr td {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    padding: 0 10px 10px;
  }
  .woocommerce-order-pay table.shop_table tbody tr td:before,
  .woocommerce-order-details table.shop_table tbody tr td:before {
    display: block;
    content: attr(data-title);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }
}
.woocommerce-order-pay table.shop_table tbody tr td.product-name,
.woocommerce-order-details table.shop_table tbody tr td.product-name {
  font-weight: 700;
  color: #002444;
}
.woocommerce-order-pay table.shop_table tbody tr td.product-total,
.woocommerce-order-details table.shop_table tbody tr td.product-total {
  text-align: right;
  color: var(--fl1-text);
  font-weight: 700;
}
.woocommerce-order-pay table.shop_table tbody tr td a,
.woocommerce-order-details table.shop_table tbody tr td a {
  color: #002444;
  font-weight: 600;
}
.woocommerce-order-pay table.shop_table tbody tr td ul.wc-item-meta,
.woocommerce-order-details table.shop_table tbody tr td ul.wc-item-meta {
  display: flex;
  font-size: 14px;
  margin-top: 10px;
  flex-direction: column;
}
.woocommerce-order-pay table.shop_table tbody tr td ul.wc-item-meta li,
.woocommerce-order-details table.shop_table tbody tr td ul.wc-item-meta li {
  padding-bottom: 10px;
}
.woocommerce-order-pay table.shop_table tbody tr td ul.wc-item-meta li strong,
.woocommerce-order-details table.shop_table tbody tr td ul.wc-item-meta li strong {
  font-weight: 700;
}
.woocommerce-order-pay table.shop_table tbody tr td ul.wc-item-meta li p,
.woocommerce-order-details table.shop_table tbody tr td ul.wc-item-meta li p {
  font-size: 14px;
  color: #003764;
}
.woocommerce-order-pay table.shop_table tbody tr td .wc-pdf-product-vouchers-order-item-voucher,
.woocommerce-order-details table.shop_table tbody tr td .wc-pdf-product-vouchers-order-item-voucher {
  background: #eef0fb;
  border-radius: 3px;
  padding: 15px 20px;
  margin: 20px 0 20px;
  line-height: 35px;
}
.woocommerce-order-pay table.shop_table tbody tr td .wc-pdf-product-vouchers-order-item-voucher a,
.woocommerce-order-details table.shop_table tbody tr td .wc-pdf-product-vouchers-order-item-voucher a {
  display: inline-block;
  padding: 5px 10px 6px;
  background: #4FC6E1;
  color: #fff;
  font-weight: 700;
  border-radius: 3px;
  line-height: normal;
}
.woocommerce-order-pay table.shop_table tbody tr td .wc-pdf-product-vouchers-order-item-voucher a:hover,
.woocommerce-order-details table.shop_table tbody tr td .wc-pdf-product-vouchers-order-item-voucher a:hover {
  background: #002444;
}
.woocommerce-order-pay table.shop_table tfoot tr,
.woocommerce-order-details table.shop_table tfoot tr {
  border-bottom: 1px #bfc3ca solid;
}
@media (max-width: 700px) {
  .woocommerce-order-pay table.shop_table tfoot tr,
  .woocommerce-order-details table.shop_table tfoot tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px #bfc3ca solid;
    padding: 10px 0;
  }
}
.woocommerce-order-pay table.shop_table tfoot tr th,
.woocommerce-order-details table.shop_table tfoot tr th {
  text-align: left;
  padding: 10px;
  vertical-align: middle;
}
.woocommerce-order-pay table.shop_table tfoot tr td,
.woocommerce-order-details table.shop_table tfoot tr td {
  text-align: right;
  padding: 10px;
  vertical-align: middle;
}
.woocommerce-order-pay table.shop_table tfoot tr:last-child,
.woocommerce-order-details table.shop_table tfoot tr:last-child {
  font-weight: 700;
  border-top: 3px #bfc3ca solid;
  border-bottom: 3px #bfc3ca solid;
}
.woocommerce-order-pay table.shop_table tfoot tr:last-child td,
.woocommerce-order-details table.shop_table tfoot tr:last-child td {
  font-size: 32px;
  color: var(--fl1-text);
}
.woocommerce-order-pay p.order-again,
.woocommerce-order-details p.order-again {
  display: none;
}
.woocommerce-order-pay .wc__cf__shipping,
.woocommerce-order-details .wc__cf__shipping {
  padding: 20px 0 0;
}
.woocommerce-order-pay .wc__cf__shipping h3,
.woocommerce-order-details .wc__cf__shipping h3 {
  font-size: 24px;
  font-weight: 700;
  color: #002444;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.woocommerce-order-pay .wc__cf__shipping p,
.woocommerce-order-details .wc__cf__shipping p {
  line-height: 25px;
  font-size: 14px;
  color: #003764;
}
.woocommerce-order-pay .wc__cf__shipping p br,
.woocommerce-order-details .wc__cf__shipping p br {
  display: none;
}
.woocommerce-order-pay .wc__cf__shipping p strong,
.woocommerce-order-details .wc__cf__shipping p strong {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #003764;
  margin-bottom: 15px;
  display: block;
}
.woocommerce-order-pay #order_review,
.woocommerce-order-details #order_review {
  width: 100%;
  padding-top: 40px;
}
.woocommerce-order-pay #order_review #payment button#place_order,
.woocommerce-order-details #order_review #payment button#place_order {
  background: #CAD507;
  margin: 20px 0;
  color: #fff;
  font-size: 17px;
  margin-left: auto;
}

.woocommerce-customer-details {
  background: #fff;
  border-radius: var(--fl1-radius-md);
  padding: 32px;
}
.woocommerce-customer-details h2 {
  font-size: 25px;
  font-weight: 700;
  color: #003764;
  margin-bottom: 20px;
}
.woocommerce-customer-details .woocommerce-columns {
  display: flex;
}
@media (max-width: 550px) {
  .woocommerce-customer-details .woocommerce-columns {
    flex-direction: column;
  }
}
.woocommerce-customer-details .woocommerce-columns .woocommerce-column {
  padding-right: 100px;
  width: 50%;
}
@media (max-width: 550px) {
  .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
    width: 100%;
  }
}
.woocommerce-customer-details address {
  line-height: 22px;
}
.woocommerce-customer-details address p {
  font-size: 16px;
  color: #003764;
}
.woocommerce-customer-details address p:first-of-type {
  margin-top: 10px;
}
.woocommerce-customer-details address p:first-of-type.woocommerce-customer-details--phone {
  margin-bottom: 0;
}

.apm__patient__details h3 {
  font-size: 25px;
  font-weight: 700;
  color: #003764;
  margin-bottom: 20px;
}
.apm__patient__details p {
  line-height: 25px;
  font-size: 14px;
  color: #003764;
  margin-bottom: 2px;
}
.apm__patient__details p strong {
  font-weight: 700;
}

.wc__refer__friend h2 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 20px;
}
.wc__refer__friend p {
  line-height: 25px;
  font-size: 14px;
  color: #003764;
}
.wc__refer__friend .gens-raf-message {
  border-left: none;
  background: #4FC6E1;
  font-size: 14px;
}
.wc__refer__friend .gens-raf-message .gens-ctc {
  padding: 5px 10px;
  background: #002444;
  font-weight: 700;
  color: #fff;
}
.wc__refer__friend #gens-referral_share__email input[type=submit] {
  padding: 10px 30px;
  background: #002444 !important;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border-radius: 0;
}

/**
 * Woo Checkout
 *
 * @package woocommerce/
 * @version 1.0
*/
body.woocommerce-checkout {
  background: url(../../../img/background.jpg);
}
body.woocommerce-checkout header.header {
  position: relative;
}
body.woocommerce-checkout header.header .header__main {
  padding: 16px 0;
}
body.woocommerce-checkout header.header .header__main .max__width {
  max-width: 960px;
}
body.woocommerce-checkout header.header .header__main .burger__menu {
  display: none;
}
@media (max-width: 800px) {
  body.woocommerce-checkout header.header .header__main .wc__header__cart {
    margin: 0 15px 0 10px;
  }
}
body.woocommerce-checkout .wc__wrapper {
  max-width: 960px;
}
@media (max-width: 800px) {
  body.woocommerce-checkout .wc__wrapper {
    padding: 0 20px;
  }
}
body.woocommerce-checkout .woocommerce-error {
  padding: 0;
  margin: 0;
}
body.woocommerce-checkout .woocommerce {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  body.woocommerce-checkout .woocommerce {
    flex-direction: column;
  }
}
body.woocommerce-checkout .woocommerce .woocommerce-form-login-toggle {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.09);
  background: #fff;
  border-radius: var(--fl1-radius-md);
  flex: 0 1 100%;
}
@media (max-width: 1024px) {
  body.woocommerce-checkout .woocommerce .woocommerce-form-login-toggle {
    flex: 1 0 auto;
  }
}
body.woocommerce-checkout .woocommerce .woocommerce-form-login-toggle .woocommerce-info {
  margin-bottom: 0;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login {
  margin-top: 8px;
  background: #fff;
  padding: 32px;
  border-radius: var(--fl1-radius-md);
  display: flex;
  flex-wrap: wrap;
  border: none;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.09);
}
@media (max-width: 1024px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-form-login {
    margin: 10px 10px 0;
  }
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-form-login {
    flex-direction: column;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p {
  font-size: 14px;
  line-height: 25px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p:first-of-type {
  flex: 1 0 100%;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 15px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row {
  width: 50%;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row {
    width: 100%;
    padding-right: 0;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  color: #003764;
  padding-bottom: 5px;
  align-self: flex-start;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row label.woocommerce-form__label-for-checkbox {
  display: none;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row label .required {
  color: tomato;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row input[type=text],
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row input[type=password],
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row select {
  border: none;
  padding: 15px 10px;
  width: auto;
  font-size: 16px;
  font-weight: 400;
  color: #003764;
  width: 100%;
  border-bottom: 1px #003764 solid;
  border-radius: none;
}
@media (max-width: 550px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row input[type=text],
  body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row input[type=password],
  body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row select {
    width: 90%;
  }
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row input[type=text],
  body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row input[type=password],
  body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row select {
    width: 100%;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row button,
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row input[type=submit] {
  font-family: var(--fl1-primary-font);
  background: #002444;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  padding: 13px 40px 11px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row button:hover,
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row input[type=submit]:hover {
  background: rgb(0, 44.1, 83.3);
  transition: all 0.4s ease;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row.form-row-first, body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.form-row.form-row-last {
  flex-direction: column;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.lost_password {
  display: flex;
  align-items: center;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login p.lost_password a {
  color: #002444;
}
body.woocommerce-checkout .woocommerce form.woocommerce-form-login div.clear {
  display: none;
}
body.woocommerce-checkout .woocommerce .woocommerce-form-coupon-toggle {
  width: 100%;
  margin: 24px 0;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.09);
  background: #fff;
  border-radius: var(--fl1-radius-md);
}
body.woocommerce-checkout .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
  margin-bottom: 0;
}
body.woocommerce-checkout .woocommerce form.checkout_coupon {
  display: flex;
  align-items: center;
  flex: 0 1 100%;
  margin: -20px 0 20px;
  padding: 32px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.09);
  background: #fff;
  border-radius: var(--fl1-radius-md);
  flex-wrap: wrap;
  border-top: none;
}
@media (max-width: 650px) {
  body.woocommerce-checkout .woocommerce form.checkout_coupon {
    flex-direction: column;
    align-items: flex-start;
  }
}
body.woocommerce-checkout .woocommerce form.checkout_coupon div.clear {
  display: none;
}
body.woocommerce-checkout .woocommerce form.checkout_coupon p {
  font-size: 14px;
  color: #003764;
  margin-right: 10px;
}
@media (max-width: 550px) {
  body.woocommerce-checkout .woocommerce form.checkout_coupon p {
    margin-right: 0;
  }
}
body.woocommerce-checkout .woocommerce form.checkout_coupon p:first-of-type {
  flex: 1 0 100%;
  margin-bottom: 15px;
  font-weight: 600;
}
body.woocommerce-checkout .woocommerce form.checkout_coupon input[type=text] {
  border: none;
  padding: 12px 16px;
  width: auto;
  font-size: 12px;
  color: var(--fl1-text);
  margin: 0 10px 0 5px;
  font-family: var(--fl1-primary-font);
  background: var(--fl1-lightgrey);
  border-radius: var(--fl1-border-radius-s);
}
@media (max-width: 550px) {
  body.woocommerce-checkout .woocommerce form.checkout_coupon input[type=text] {
    width: 90%;
  }
}
body.woocommerce-checkout .woocommerce form.checkout_coupon button,
body.woocommerce-checkout .woocommerce form.checkout_coupon input[type=submit] {
  font-family: var(--fl1-primary-font);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 23px;
  display: block;
  cursor: pointer;
  background: #002444;
  color: #fff;
  border: none;
}
@media (max-width: 550px) {
  body.woocommerce-checkout .woocommerce form.checkout_coupon button,
  body.woocommerce-checkout .woocommerce form.checkout_coupon input[type=submit] {
    margin-top: 10px;
  }
}
body.woocommerce-checkout .woocommerce form.checkout_coupon button:hover,
body.woocommerce-checkout .woocommerce form.checkout_coupon input[type=submit]:hover {
  background: #002444;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout h3#order_review_heading {
  display: none;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout h3#ship-to-different-address {
  flex: 1 0 100%;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details {
  width: 100%;
  background: #fff;
  border-radius: var(--fl1-radius-md);
  padding: 32px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.09);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 {
  font-size: 24px;
  color: var(--fl1-text);
  font-weight: 700;
  margin: 0 8px 24px;
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 {
    margin: 0 0 20px;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=checkbox],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=radio] {
  display: none;
  width: auto;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=checkbox] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=radio] + span {
  color: var(--fl1-text);
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=checkbox] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=radio] + span:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 19px;
  color: var(--fl1-primary);
  content: "\f111";
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=checkbox] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=radio] + span a {
  color: var(--fl1-primary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=checkbox]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=radio]:checked + span {
  font-weight: 600;
  background: transparent;
  color: var(--fl1-primary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=checkbox]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details h3 input[type=radio]:checked + span:before {
  content: "\f058";
  font-weight: bold;
  color: var(--fl1-secondary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields {
    flex-direction: column;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p {
  flex: 1 0 100%;
  padding: 0 8px 24px;
  line-height: 25px;
  font-size: 14px;
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p {
    padding: 0 0 20px;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_first_name_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_first_name_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_last_name_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_last_name_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_company_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_company_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_country_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_country_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_address_1_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_address_1_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_address_2_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_address_2_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_phone_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_phone_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_email_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_email_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#account_username_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#account_password_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_first_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_first_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_last_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_last_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_company_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_company_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_country_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_country_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_address_1_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_address_1_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_address_2_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_address_2_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_phone_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_phone_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_email_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_email_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#account_username_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#account_password_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_first_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_first_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_last_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_last_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_company_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_company_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_country_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_country_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_address_1_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_address_1_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_address_2_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_address_2_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_phone_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_phone_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_email_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_email_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#account_username_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#account_password_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_first_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_first_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_last_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_last_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_company_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_company_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_country_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_country_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_address_1_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_address_1_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_address_2_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_address_2_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_phone_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_phone_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_email_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_email_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#account_username_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#account_password_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_first_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_first_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_last_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_last_name_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_company_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_company_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_country_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_country_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_address_1_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_address_1_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_address_2_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_address_2_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_phone_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_phone_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_email_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_email_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#account_username_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#account_password_field {
  flex: 1 0 50%;
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_first_name_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_first_name_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_last_name_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_last_name_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_company_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_company_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_country_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_country_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_address_1_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_address_1_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_address_2_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_address_2_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_phone_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_phone_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_email_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_email_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#account_username_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#account_password_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_first_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_first_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_last_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_last_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_company_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_company_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_country_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_country_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_address_1_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_address_1_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_address_2_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_address_2_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_phone_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_phone_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_email_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_email_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#account_username_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#account_password_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_first_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_first_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_last_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_last_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_company_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_company_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_country_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_country_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_address_1_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_address_1_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_address_2_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_address_2_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_phone_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_phone_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_email_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_email_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#account_username_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#account_password_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_first_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_first_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_last_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_last_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_company_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_company_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_country_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_country_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_address_1_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_address_1_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_address_2_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_address_2_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_phone_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_phone_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_email_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_email_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#account_username_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#account_password_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_first_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_first_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_last_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_last_name_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_company_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_company_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_country_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_country_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_address_1_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_address_1_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_address_2_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_address_2_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_phone_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_phone_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_email_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_email_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#account_username_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#account_password_field {
    width: 100%;
    flex: 1 0 auto;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_city_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_city_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_state_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_state_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_postcode_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_postcode_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_city_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_city_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_state_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_state_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_postcode_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_postcode_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_city_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_city_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_state_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_state_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_postcode_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_postcode_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_city_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_city_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_state_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_state_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_postcode_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_postcode_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_city_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_city_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_state_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_state_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_postcode_field,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_postcode_field {
  flex: 1 0 50%;
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_city_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_city_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_state_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_state_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_postcode_field, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_postcode_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_city_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_city_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_state_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_state_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_postcode_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_postcode_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_city_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_city_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_state_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_state_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_postcode_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_postcode_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_city_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_city_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_state_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_state_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_postcode_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_postcode_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_city_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_city_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_state_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_state_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_postcode_field,
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_postcode_field {
    width: 100%;
    flex: 1 0 auto;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_address_2_field:before, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_address_2_field:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_address_2_field:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_address_2_field:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_address_2_field:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_address_2_field:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_address_2_field:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_address_2_field:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_address_2_field:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_address_2_field:before {
  content: "Address 2";
  display: block;
  color: #003764;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 5px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#billing_address_2_field label, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p#shipping_address_2_field label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#billing_address_2_field label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p#shipping_address_2_field label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#billing_address_2_field label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p#shipping_address_2_field label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#billing_address_2_field label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p#shipping_address_2_field label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#billing_address_2_field label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p#shipping_address_2_field label {
  display: none;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #003764;
  padding-bottom: 5px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label small,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label small,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label small,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label small,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label small {
  text-transform: none;
  font-weight: 400;
  margin: 5px 0;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label abbr.required,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label abbr.required,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label abbr.required,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label abbr.required,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label abbr.required {
  color: tomato;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=checkbox],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=radio],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=checkbox],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=radio],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=checkbox],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=radio],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=checkbox],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=radio],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=checkbox],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=radio] {
  display: none;
  width: auto;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=checkbox] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=radio] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=checkbox] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=radio] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=checkbox] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=radio] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=checkbox] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=radio] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=checkbox] + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=radio] + span {
  color: var(--fl1-text);
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=checkbox] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=radio] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=checkbox] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=radio] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=checkbox] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=radio] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=checkbox] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=radio] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=checkbox] + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=radio] + span:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 19px;
  color: var(--fl1-primary);
  content: "\f111";
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=checkbox] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=radio] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=checkbox] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=radio] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=checkbox] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=radio] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=checkbox] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=radio] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=checkbox] + span a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=radio] + span a {
  color: var(--fl1-primary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=checkbox]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=radio]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=checkbox]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=radio]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=checkbox]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=radio]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=checkbox]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=radio]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=checkbox]:checked + span,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=radio]:checked + span {
  font-weight: 600;
  background: transparent;
  color: var(--fl1-primary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=checkbox]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p label input[type=radio]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=checkbox]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p label input[type=radio]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=checkbox]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p label input[type=radio]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=checkbox]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p label input[type=radio]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=checkbox]:checked + span:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p label input[type=radio]:checked + span:before {
  content: "\f058";
  font-weight: bold;
  color: var(--fl1-secondary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p span.description,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p span.description,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p span.description,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p span.description,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p span.description {
  padding-top: 10px;
  font-size: 12px;
  line-height: 17px;
  display: block;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p input[type=text],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p input[type=tel],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p input[type=email],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p input[type=password],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p input[type=number],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p select,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p textarea,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p input[type=text],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p input[type=tel],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p input[type=email],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p input[type=password],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p input[type=number],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p select,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p textarea,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p input[type=text],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p input[type=tel],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p input[type=email],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p input[type=password],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p input[type=number],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p select,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p textarea,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p input[type=text],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p input[type=tel],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p input[type=email],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p input[type=password],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p input[type=number],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p select,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p textarea,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p input[type=text],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p input[type=tel],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p input[type=email],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p input[type=password],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p input[type=number],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p select,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p textarea {
  border: none;
  padding: 16px;
  width: auto;
  font-size: 16px;
  font-weight: 500;
  color: #003764;
  width: 100%;
  font-family: var(--fl1-primary-font);
  background: var(--fl1-lightgrey);
  border-radius: var(--fl1-radius-sm);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p select,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p select,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p select,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p select,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p select {
  font-family: var(--fl1-primary-font);
  appearance: none;
  border-radius: var(--fl1-radius-sm);
  background-image: url("modules/woocommerce/img/select-arrow-down.png");
  background-size: 25px;
  background-position: center right;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 500;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p textarea,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p textarea,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p textarea,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p textarea,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p textarea {
  height: 220px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p ::-webkit-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p ::-moz-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p :-ms-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p :-moz-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p ::-webkit-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p ::-moz-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p :-ms-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p :-moz-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p ::-webkit-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p ::-moz-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p :-ms-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p :-moz-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p ::-webkit-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p ::-moz-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p :-ms-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p :-moz-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p ::-webkit-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p ::-moz-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p :-ms-input-placeholder,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p :-moz-placeholder {
  color: var(--fl1-text);
  opacity: 0.7;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p .woocommerce-password-strength,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p .woocommerce-password-strength,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p .woocommerce-password-strength,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p .woocommerce-password-strength,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p .woocommerce-password-strength {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p .woocommerce-password-strength.bad, body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p .woocommerce-password-strength.short,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p .woocommerce-password-strength.bad,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p .woocommerce-password-strength.short,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p .woocommerce-password-strength.bad,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p .woocommerce-password-strength.short,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p .woocommerce-password-strength.bad,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p .woocommerce-password-strength.short,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p .woocommerce-password-strength.bad,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p .woocommerce-password-strength.short {
  background: #fde9e5;
  color: tomato;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p .woocommerce-password-strength.good,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p .woocommerce-password-strength.good,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p .woocommerce-password-strength.good,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p .woocommerce-password-strength.good,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p .woocommerce-password-strength.good {
  background: #fdf0e1;
  color: #f98806;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p .woocommerce-password-strength.strong,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p .woocommerce-password-strength.strong,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p .woocommerce-password-strength.strong,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p .woocommerce-password-strength.strong,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p .woocommerce-password-strength.strong {
  background: #f0fde1;
  color: #61b105;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p .woocommerce-password-hint,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p .woocommerce-password-hint,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p .woocommerce-password-hint,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p .woocommerce-password-hint,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p .woocommerce-password-hint {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 13px;
  margin-top: 10px;
  padding: 20px;
  display: flex;
  border: 1px #bfc3ca solid;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper p .woocommerce-password-hint:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-shipping-fields__field-wrapper p .woocommerce-password-hint:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper p .woocommerce-password-hint:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .wc__checkout__field__row p .woocommerce-password-hint:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p .woocommerce-password-hint:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f0eb";
  font-size: 22px;
  color: #002444;
  margin-right: 10px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper {
  padding-bottom: 0;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields {
  margin: 0 8px 32px;
  border: none;
  background: var(--fl1-blue-highlight);
  padding: 32px;
  border-radius: var(--fl1-radius-md);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields:before {
  content: "Create an account";
  display: block;
  font-size: 22px;
  color: var(--fl1-primary);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--fl1-primary-font);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p {
  padding: 0 0 0 10px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields p:first-child {
  padding: 0 10px 0 0;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields div.create-account {
  width: 100%;
  display: flex;
  padding-top: 10px;
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields div.create-account {
    flex-direction: column;
  }
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields div.create-account p {
    flex: 1 0 auto;
    padding: 0 0 10px;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields div.create-account label {
  color: var(--fl1-primary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout #customer_details .woocommerce-account-fields div.create-account input {
  background: var(--fl1-white);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order {
  width: 100%;
  background: #fff;
  padding: 32px;
  border-radius: var(--fl1-radius-md);
  margin-top: 24px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.09);
}
@media (max-width: 1024px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order {
    width: 100%;
    padding: 30px 10px;
    margin-top: 0;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order:before {
  content: "Double check your order";
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--fl1-text);
  margin-bottom: 24px;
  padding-left: 10px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .card-storage-message {
  display: flex;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  background: #4FC6E1;
  margin: 20px 0;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .card-storage-message i {
  font-size: 20px;
  margin-right: 10px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter {
  display: flex;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  background: #55BCB5;
  margin: 20px 0;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=checkbox],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=radio] {
  display: none;
  width: auto;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=checkbox] + label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=radio] + label {
  color: var(--fl1-text);
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=checkbox] + label:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=radio] + label:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 19px;
  color: var(--fl1-primary);
  content: "\f0c8";
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=checkbox] + label a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=radio] + label a {
  color: var(--fl1-primary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=checkbox]:checked + label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=radio]:checked + label {
  font-weight: 600;
  background: transparent;
  color: var(--fl1-primary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=checkbox]:checked + label:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter input[type=radio]:checked + label:before {
  content: "\f14a";
  font-weight: bold;
  color: var(--fl1-secondary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .mailchimp-newsletter label {
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order #apm_additional_info {
  padding: 20px;
  background: #55BCB5;
  margin-top: 10px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order #apm_additional_info h3 {
  font-size: 17px;
  color: #003764;
  font-weight: 700;
  margin: 0 0 10px;
  display: block;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order #apm_additional_info p {
  font-size: 14px;
  line-height: 19px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table thead tr th {
  padding: 10px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table thead tr th.product-total {
  text-align: right;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody {
  border-bottom: 1px #002444 solid;
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr {
    display: table-row;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td {
  width: 50%;
}
@media (max-width: 700px) {
  body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td {
    display: table-cell;
    padding: 10px;
  }
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td .amount {
  color: #003764;
  font-weight: 600;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-name {
  text-align: left;
  font-weight: 600;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-name .wc__product__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-name .wc__product__name strong {
  color: #002444;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-name dl.variation {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 13px;
  margin-top: 10px;
  color: #003764;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-name dl.variation dt {
  flex: 1 0 50%;
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-name dl.variation dd {
  flex: 1 0 50%;
  margin-bottom: 10px;
  font-weight: 500;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-total {
  text-align: right;
  vertical-align: top;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-total .subscription-price span.amount {
  font-size: 16px;
  color: #003764;
  font-weight: 600;
  display: block;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-total .subscription-price .subscription-details {
  display: block;
  font-size: 12px;
  color: #003764;
  margin-top: 5px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tbody tr td.product-total .subscription-price .subscription-details span.amount {
  font-size: 12px;
  color: #003764;
  font-weight: normal;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr {
  border-bottom: 1px #bfc3ca solid;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr th {
  text-align: left;
  padding: 10px;
  font-size: 14px;
  vertical-align: middle;
  width: 50%;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr td {
  text-align: right;
  padding: 10px;
  vertical-align: middle;
  width: 50%;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr td .amount {
  color: #003764;
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.cart-discount .woocommerce-remove-coupon {
  color: #002444;
  font-weight: 700;
  font-size: 13px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.recurring-totals {
  border-bottom: none;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.recurring-totals th {
  color: #002444;
  font-weight: 700;
  font-size: 20px;
  padding-top: 20px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total {
  font-weight: 700;
  color: #003764;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total td {
  font-size: 30px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total td strong {
  display: block;
  font-size: 30px;
  color: #003764;
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total td strong .amount {
  color: #003764;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total td small {
  font-size: 12px;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total.recurring-total td {
  font-size: 14px;
  color: #003764;
  font-weight: normal;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.order-total.recurring-total td strong {
  display: block;
  font-size: 30px;
  color: #003764;
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul {
  display: flex;
  flex-direction: column;
  gap: var(--fl1-spacing-xs);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=checkbox],
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=radio] {
  display: none;
  width: auto;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=checkbox] + label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=radio] + label {
  color: var(--fl1-text);
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=checkbox] + label:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=radio] + label:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 19px;
  color: var(--fl1-primary);
  content: "\f0c8";
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=checkbox] + label a,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=radio] + label a {
  color: var(--fl1-primary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=checkbox]:checked + label,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=radio]:checked + label {
  font-weight: 600;
  background: transparent;
  color: var(--fl1-primary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=checkbox]:checked + label:before,
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot .woocommerce-shipping-methods ul li input[type=radio]:checked + label:before {
  content: "\f14a";
  font-weight: bold;
  color: var(--fl1-secondary);
}
body.woocommerce-checkout .woocommerce form.woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-checkout-payment {
  padding: 24px 0 0;
}
body.woocommerce-checkout.woocommerce-order-pay .order_details {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 40px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 40px auto 0;
}
body.woocommerce-checkout.woocommerce-order-pay .order_details:before {
  content: "Confirm and place order";
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #003764;
  margin-bottom: 20px;
  flex: 1 0 100%;
}
body.woocommerce-checkout.woocommerce-order-pay .order_details li {
  padding: 20px 0;
  width: 50%;
  font-size: 18px;
  font-weight: 700;
  color: #002444;
}
@media (max-width: 1024px) {
  body.woocommerce-checkout.woocommerce-order-pay .order_details li {
    padding: 10px;
  }
}
@media (max-width: 1024px) {
  body.woocommerce-checkout.woocommerce-order-pay .order_details li {
    width: 50%;
  }
}
@media (max-width: 550px) {
  body.woocommerce-checkout.woocommerce-order-pay .order_details li {
    width: 100%;
  }
}
body.woocommerce-checkout.woocommerce-order-pay .order_details li strong {
  font-size: 24px;
  font-weight: 400;
  display: block;
  text-transform: none;
  color: #003764;
  margin-top: 5px;
}
@media (max-width: 550px) {
  body.woocommerce-checkout.woocommerce-order-pay .order_details li strong {
    font-size: 20px;
  }
}
body.woocommerce-checkout.woocommerce-order-pay form.woocommerce-checkout {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
body.woocommerce-checkout.woocommerce-order-pay form.woocommerce-checkout button {
  font-family: var(--fl1-primary-font);
  background: #002444;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  padding: 20px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-left: auto;
  width: 100%;
  text-align: center;
}
body.woocommerce-checkout.woocommerce-order-pay form.woocommerce-checkout button:hover {
  background: rgb(107.2183673469, 209.1367346939, 51.1632653061);
  transition: all 0.4s ease;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}
body.woocommerce-checkout .wc__thankyou__ads {
  width: 100%;
  max-width: 960px;
  margin: 20px auto 0;
  padding: 0 10px;
}
body.woocommerce-checkout .footer__checkout {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: auto;
  padding: 24px 0 84px;
  width: 100%;
}
@media (max-width: 1024px) {
  body.woocommerce-checkout .footer__checkout {
    padding-bottom: 50px;
  }
}
body.woocommerce-checkout .footer__checkout ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 550px) {
  body.woocommerce-checkout .footer__checkout ul {
    flex-direction: column;
  }
}
body.woocommerce-checkout .footer__checkout ul li {
  display: flex;
  align-items: center;
  font-size: 12px;
  padding: 0 10px;
}
@media (max-width: 550px) {
  body.woocommerce-checkout .footer__checkout ul li {
    padding-bottom: 10px;
  }
}
body.woocommerce-checkout .footer__checkout ul li i {
  margin-right: 5px;
}
body.woocommerce-checkout .footer__checkout ul li.secure {
  color: #64c82d;
}
body.woocommerce-checkout .footer__checkout ul li.social {
  padding: 0 2px;
  font-size: 16px;
}
body.woocommerce-checkout .footer__checkout ul li.social a {
  color: #003764;
}
body.woocommerce-checkout .footer__checkout ul li.social:first-of-type {
  font-size: 14px;
}
body.woocommerce-checkout ul.wc_payment_methods {
  padding: 20px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: var(--fl1-radius-md);
}
body.woocommerce-checkout ul.wc_payment_methods li {
  margin-bottom: 20px;
}
body.woocommerce-checkout ul.wc_payment_methods li:last-of-type {
  margin-bottom: 0;
}
body.woocommerce-checkout ul.wc_payment_methods li label {
  font-size: 18px;
  font-weight: 700;
  color: #003764;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body.woocommerce-checkout ul.wc_payment_methods li label i {
  display: none;
}
body.woocommerce-checkout ul.wc_payment_methods li label[for=payment_method_realex_redirect] img {
  display: none;
}
body.woocommerce-checkout ul.wc_payment_methods li label[for=payment_method_stripe] {
  padding-left: 0 !important;
  display: flex !important;
}
body.woocommerce-checkout ul.wc_payment_methods li label[for=payment_method_stripe] img {
  display: none;
}
body.woocommerce-checkout ul.wc_payment_methods li label[for=wc-stripe-update-subs-payment-method-card] {
  display: flex !important;
}
body.woocommerce-checkout ul.wc_payment_methods li p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
body.woocommerce-checkout ul.wc_payment_methods li p:last-of-type {
  margin-bottom: 0;
}
body.woocommerce-checkout ul.wc_payment_methods li input[type=checkbox],
body.woocommerce-checkout ul.wc_payment_methods li input[type=radio] {
  display: none;
  width: auto;
}
body.woocommerce-checkout ul.wc_payment_methods li input[type=checkbox] + label,
body.woocommerce-checkout ul.wc_payment_methods li input[type=radio] + label {
  color: var(--fl1-text);
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
}
body.woocommerce-checkout ul.wc_payment_methods li input[type=checkbox] + label:before,
body.woocommerce-checkout ul.wc_payment_methods li input[type=radio] + label:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 19px;
  color: var(--fl1-primary);
  content: "\f0c8";
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
body.woocommerce-checkout ul.wc_payment_methods li input[type=checkbox] + label a,
body.woocommerce-checkout ul.wc_payment_methods li input[type=radio] + label a {
  color: var(--fl1-primary);
}
body.woocommerce-checkout ul.wc_payment_methods li input[type=checkbox]:checked + label,
body.woocommerce-checkout ul.wc_payment_methods li input[type=radio]:checked + label {
  font-weight: 600;
  background: transparent;
  color: var(--fl1-primary);
}
body.woocommerce-checkout ul.wc_payment_methods li input[type=checkbox]:checked + label:before,
body.woocommerce-checkout ul.wc_payment_methods li input[type=radio]:checked + label:before {
  content: "\f14a";
  font-weight: bold;
  color: var(--fl1-secondary);
}
body.woocommerce-checkout ul.wc_payment_methods li label {
  color: #003764;
  display: flex;
  align-items: center;
}
body.woocommerce-checkout ul.wc_payment_methods li ul.wc-saved-payment-methods {
  padding: 10px 0 0 10px;
}
body.woocommerce-checkout ul.wc_payment_methods li ul.wc-saved-payment-methods li {
  margin-bottom: 10px;
}
body.woocommerce-checkout ul.wc_payment_methods li ul.wc-saved-payment-methods li label {
  font-size: 14px;
  margin-bottom: 0;
  display: flex !important;
  align-items: center;
}
body.woocommerce-checkout ul.wc_payment_methods li ul.wc-saved-payment-methods li label.wc-stripe-new-payment-method {
  display: flex !important;
}
body.woocommerce-checkout ul.wc_payment_methods li.payment_method_ppec_paypal label img {
  display: none;
}
body.woocommerce-checkout ul.wc_payment_methods li.payment_method_gocardless label {
  display: flex;
  align-items: center;
}
body.woocommerce-checkout ul.wc_payment_methods li.payment_method_gocardless label img {
  width: 50px;
  margin-left: auto;
}
body.woocommerce-checkout ul.wc_payment_methods li.payment_method_gocardless div.payment_box p:last-of-type {
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  border-radius: 3px;
}
body.woocommerce-checkout ul.wc_payment_methods li.payment_method_gocardless div.payment_box p:last-of-type label {
  display: flex !important;
}
body.woocommerce-checkout .woocommerce-SavedPaymentMethods-saveNew {
  padding: 10px;
  background: #55BCB5;
  display: none !important;
}
body.woocommerce-checkout .woocommerce-SavedPaymentMethods-saveNew label {
  display: flex !important;
  font-size: 13px !important;
  margin-bottom: 0 !important;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  background: var(--fl1-blue-highlight);
  border-radius: var(--fl1-radius-md);
  padding: 24px;
  margin: 24px 0;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper p {
  font-size: 14px;
  line-height: 20px;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper p a {
  color: var(--fl1-text);
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper p label:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 23px;
  color: #002444;
  content: "\f0c8";
  letter-spacing: 10px;
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  width: auto;
  padding: inherit;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper p label input[type=checkbox] {
  display: none;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper p.woocommerce-validated label:before {
  content: "\f14a";
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper label {
  color: #003764;
  display: flex;
  cursor: pointer;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper label input[type=checkbox] {
  appearance: checkbox;
  font-size: 16px;
  margin-right: 5px;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper label input[type=radio] {
  appearance: radio;
  font-size: 16px;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper label a {
  color: #002444;
}
body.woocommerce-checkout .place-order button,
body.woocommerce-checkout .place-order input[type=submit] {
  font-family: var(--fl1-primary-font);
  background: var(--fl1-primary);
  color: var(--fl1-white);
  font-size: 24px;
  font-weight: 800;
  padding: 24px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-left: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}
body.woocommerce-checkout .wc__checkout__cards {
  margin: 20px auto 0;
  max-width: 520px;
  width: 100%;
}
body.woocommerce-checkout .woocommerce-order-pay,
body.woocommerce-checkout .woocommerce-order-details {
  margin: 0;
  padding: 24px 0 0;
}
body.woocommerce-checkout .woocommerce-customer-details {
  padding: 0;
}

#wc-stripe-cc-form {
  padding: 10px 0 0;
}
#wc-stripe-cc-form .form-row {
  margin-bottom: 20px;
}
#wc-stripe-cc-form .form-row.form-row-last {
  margin-bottom: 0;
}
#wc-stripe-cc-form .form-row label {
  font-size: 15px;
  color: #003764;
}
#wc-stripe-cc-form .form-row .required {
  color: tomato;
}
#wc-stripe-cc-form .form-row .wc-stripe-elements-field {
  border: none;
  padding: 15px;
  border-bottom: 1px #003764 solid;
}
#wc-stripe-cc-form .stripe-source-errors .woocommerce-error li {
  margin: 10px 0 0;
}

/**
 * Woo Lost Password
 *
 * @package woocommerce/
 * @version 1.0
*/
body.woocommerce-lost-password form.woocommerce-ResetPassword p {
  margin-bottom: 20px;
}
body.woocommerce-lost-password form.woocommerce-ResetPassword p label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #003764;
  text-transform: uppercase;
  padding-bottom: 5px;
}
body.woocommerce-lost-password form.woocommerce-ResetPassword p input[type=text] {
  border: none;
  padding: 15px 10px;
  width: auto;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 83.05, 151);
  background: #eef0fb;
  width: 100%;
}
body.woocommerce-lost-password form.woocommerce-ResetPassword p input[type=submit] {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 23px;
  display: block;
  text-transform: uppercase;
  cursor: pointer;
}
body.woocommerce-lost-password form.woocommerce-ResetPassword p input[type=submit]:hover {
  background: rgb(100.786407767, 205.0558252427, 228.713592233);
}

/**
 * Woo Loop
 *
 * @package woocommerce/
 * @version 1.0
*/
.wc__products.wc__products__list article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
@media (max-width: 700px) {
  .wc__products.wc__products__list article {
    flex-direction: column;
  }
}
.wc__products.wc__products__list article .wc__product__img {
  width: 35%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
  background-color: #eef0fb;
}
@media (max-width: 700px) {
  .wc__products.wc__products__list article .wc__product__img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.wc__products.wc__products__list article .wc__product__img:hover {
  opacity: 0.7;
}
.wc__products.wc__products__list article .wc__product__content {
  width: 65%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  .wc__products.wc__products__list article .wc__product__content {
    width: 100%;
    padding: 0;
  }
}
.wc__products.wc__products__list article .wc__product__content h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.wc__products.wc__products__list article .wc__product__content h2 a {
  color: #003764;
}
.wc__products.wc__products__list article .wc__product__content h3 {
  font-size: 36px;
  color: #003764;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.wc__products.wc__products__list article .wc__product__content h3 small {
  font-size: 22px;
  font-weight: 400;
  color: #bfc3ca;
}
.wc__products.wc__products__list article .wc__product__content .wc__product__meta {
  margin: 20px 0;
  border-top: 1px rgb(217.3571428571, 221.7857142857, 246.1428571429) solid;
  border-bottom: 1px rgb(217.3571428571, 221.7857142857, 246.1428571429) solid;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wc__products.wc__products__list article .wc__product__content .wc__product__meta .wc__meta__data {
  width: 33.3333333333%;
  flex: 1 0 auto;
  padding-bottom: 10px;
}
@media (max-width: 900px) {
  .wc__products.wc__products__list article .wc__product__content .wc__product__meta .wc__meta__data {
    width: 50%;
  }
}
.wc__products.wc__products__list article .wc__product__content .wc__product__meta .wc__meta__data h4 {
  font-size: 14px;
  font-weight: 700;
  color: #003764;
  text-transform: uppercase;
}
.wc__products.wc__products__list article .wc__product__content .wc__product__meta .wc__meta__data p {
  font-size: 16px;
  font-weight: 400;
  color: #bfc3ca;
  padding-top: 4px;
}
.wc__products.wc__products__list article .wc__product__content .wc__product__meta .wc__meta__data p a {
  color: #bfc3ca;
}
.wc__products.wc__products__list article .wc__product__content .wc__product__meta .wc__meta__data p a:hover {
  color: #002444;
}
.wc__products.wc__products__list article .wc__product__content a.button {
  align-self: flex-end;
}
.wc__products.wc__products__grid {
  display: flex;
  flex-wrap: wrap;
}
.wc__products.wc__products__grid article {
  width: 25%;
  flex: 1 0 325px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 550px) {
  .wc__products.wc__products__grid article {
    flex: 1 0 100%;
  }
}
.wc__products.wc__products__grid article .product__inner {
  margin: 20px 10px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wc__products.wc__products__grid article .product__inner a {
  display: block;
}
.wc__products.wc__products__grid article .product__inner a figure.wc__product__img {
  opacity: 1;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  height: 220px;
}
.wc__products.wc__products__grid article .product__inner a figure.wc__product__img img {
  max-height: 100%;
  width: auto;
}
.wc__products.wc__products__grid article .product__inner a:hover figure.wc__product__img {
  opacity: 0.7;
  transition: all 0.4s ease;
}
.wc__products.wc__products__grid article .product__inner .wc__content__content {
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 2;
}
.wc__products.wc__products__grid article .product__inner .wc__content__content h2 {
  font-size: 15px;
  color: var(--fl1-text);
  margin-bottom: 5px;
  line-height: normal;
  font-weight: 600;
}
.wc__products.wc__products__grid article .product__inner .wc__content__content span.woocommerce-Price-amount {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 20px;
}
.wc__products.wc__products__grid article .product__inner .wc__content__content h3 {
  font-size: 13px;
  color: #003764;
  margin-bottom: 0;
  line-height: normal;
}
.wc__products.wc__products__grid article .product__inner .wc__content__content p {
  font-size: 13px;
  color: #003764;
  line-height: 23px;
  margin-bottom: 30px;
}
.wc__products.wc__products__grid article .product__inner .wc__content__content a {
  font-size: 13px;
  display: block;
  border: 2px #CAD507 solid;
  color: #003764;
  padding: 10px 20px;
  text-transform: uppercase;
  margin: auto 0 0;
  font-weight: 700;
  align-self: center;
}

.wc__products__not__found {
  text-align: center;
}
.wc__products__not__found figure {
  max-width: 150px;
  margin: 0 auto 40px;
}
.wc__products__not__found h2 {
  font-size: 22px;
  text-transform: uppercase;
  color: #003764;
  margin-bottom: 20px;
}
.wc__products__not__found p {
  font-size: 16px;
  color: #003764;
  margin-bottom: 20px;
}
.wc__products__not__found p a,
.wc__products__not__found p span {
  color: #003764;
  font-weight: 600;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 !important;
}
.products .product {
  padding: var(--fl1-spacing-md);
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--fl1-radius-md);
}
@media (max-width: 650px) {
  .products .product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.products .product .woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
}
.products .product a img {
  border-radius: 20px;
}
@media (max-width: 650px) {
  .products .product a img {
    max-height: 300px;
    width: auto;
  }
}
.products .product .woocommerce-loop-product__title {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #002444;
}
.products .product .price {
  color: #002444;
  font-weight: bold;
  font-size: var(--fl1-font-md);
}
.products .product a.button {
  margin-top: var(--fl1-spacing-sm);
}

.wc-single-product--add-to-cart {
  padding: 20px 0 0;
}
.wc-single-product--add-to-cart .wc-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--fl1-spacing-sm);
}
.wc-single-product--add-to-cart .wc-simple h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fl1-text);
}
.wc-single-product--add-to-cart .wc-simple .wc-simple-qty input {
  background: var(--fl1-white);
  border: 1px var(--fl1-border) solid;
  font-size: 16px;
  color: var(--fl1-text);
  padding: 10px;
  width: 60px;
  border: none;
  border-radius: 3px;
  text-align: center;
}
.wc-single-product--add-to-cart .wc-variable {
  width: 100%;
}
.wc-single-product--add-to-cart .wc-variable h4 {
  font-size: 20px;
  color: #002444;
  margin-bottom: 5px;
  font-weight: 700;
  font-family: var(--fl1-primary-font);
}
.wc-single-product--add-to-cart .wc-variable p {
  font-size: 14px;
  color: #003764;
  margin-bottom: 30px;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation {
  padding-bottom: var(--fl1-spacing-2xs);
  margin-bottom: var(--fl1-spacing-2xs);
}
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=checkbox],
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=radio] {
  display: none;
  width: auto;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=checkbox] + label,
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=radio] + label {
  color: var(--fl1-text);
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.25rem;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=checkbox] + label:before,
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=radio] + label:before {
  font-family: "Font Awesome 6 Pro";
  display: block;
  font-weight: normal;
  font-size: 19px;
  color: var(--fl1-primary);
  content: "\f111";
  border: none;
  border-radius: 0;
  box-sizing: inherit;
  cursor: pointer;
  height: auto;
  line-height: auto;
  text-align: inherit;
  text-indent: 0;
  vertical-align: inherit;
  width: auto;
  padding: inherit;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=checkbox] + label a,
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=radio] + label a {
  color: var(--fl1-primary);
}
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=checkbox]:checked + label,
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=radio]:checked + label {
  font-weight: 600;
  background: transparent;
  color: var(--fl1-primary);
}
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=checkbox]:checked + label:before,
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=radio]:checked + label:before {
  content: "\f058";
  font-weight: bold;
  color: var(--fl1-secondary);
}
.wc-single-product--add-to-cart .wc-variable .wc-variation input[type=checkbox]:checked + label:before {
  color: var(--fl1-success);
}
.wc-single-product--add-to-cart .wc-variable .wc-variation label {
  display: flex;
  font-weight: 600;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation label .wc-variation--meta {
  display: flex;
  flex: 1;
  justify-content: space-between;
  width: 100%;
  padding-right: 20px;
  color: var(--fl1-text);
}
.wc-single-product--add-to-cart .wc-variable .wc-variation label .wc-variation--meta h5 {
  font-family: var(--fl1-primary-font);
}
.wc-single-product--add-to-cart .wc-variable .wc-variation label .wc-variation--meta span.price {
  display: block;
  font-weight: 700;
  color: #4FC6E1;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation label .wc-variation--meta span.subscription-details {
  font-weight: 400;
  color: #003764;
  font-size: 12px;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation label .wc-variation--meta span.variation-description {
  font-weight: 400;
  color: #003764;
  font-size: 12px;
  display: block;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation label .wc-variation--quantity {
  display: flex;
  align-items: center;
  gap: var(--fl1-spacing-xs);
}
.wc-single-product--add-to-cart .wc-variable .wc-variation label .wc-variation--quantity input {
  background: #fff;
  font-size: 16px;
  color: var(--fl1-text);
  padding: 10px;
  width: 60px;
  border: none;
  border-radius: 3px;
  text-align: center;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation.wc-out-of-stock label {
  opacity: 0.2;
  pointer-events: none;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation.terms {
  background: #eef0fb;
  border-radius: 3px;
  padding: 20px;
}
.wc-single-product--add-to-cart .wc-variable .wc-variation.terms a {
  font-weight: 700;
  color: #002444;
  border-bottom: 1px #002444 dashed;
}
.wc-single-product--add-to-cart .woocommerce-variation-add-to-cart {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 550px) {
  .wc-single-product--add-to-cart .woocommerce-variation-add-to-cart {
    margin-left: 0;
    margin-top: 20px;
  }
}
.wc-single-product--add-to-cart .single_variation_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px rgb(217.3571428571, 221.7857142857, 246.1428571429) solid;
  padding-top: 20px;
}
@media (max-width: 550px) {
  .wc-single-product--add-to-cart .single_variation_wrap {
    flex-direction: column;
  }
}
.wc-single-product--add-to-cart .single_variation_wrap .woocommerce-variation {
  flex: 1;
}
.wc-single-product--add-to-cart .wc-add-to-cart--button {
  display: flex;
  align-items: center;
  gap: var(--fl1-spacing-sm);
  width: 100%;
}
@media (max-width: 550px) {
  .wc-single-product--add-to-cart .wc-add-to-cart--button {
    flex-direction: column;
    align-items: center;
  }
}
.wc-single-product--add-to-cart .wc-add-to-cart--button .wc-simple-qty input {
  background: var(--fl1-white);
  border: 1px var(--fl1-border) solid;
  font-size: 16px;
  color: var(--fl1-text-dark);
  padding: 10px;
  width: 60px;
  border: none;
  border-radius: 3px;
  text-align: center;
}
.wc-single-product--add-to-cart .wc-add-to-cart--button .wc-single-product--price .woocommerce-Price-amount {
  font-size: 24px;
  color: var(--fl1-primary);
}
.wc-single-product--add-to-cart .wc-add-to-cart--button .wc-add-to-wishlist {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--fl1-text-dark);
}
.wc-single-product--add-to-cart .wc-add-to-cart--button .wc-add-to-wishlist i {
  font-size: 16px;
  color: #002444;
  margin-right: 8px;
}
.wc-single-product--add-to-cart .wc-add-to-cart--button .wc-add-to-wishlist:hover i {
  animation: pulse 1s infinite;
}
.wc-single-product--add-to-cart .wc-continue {
  display: flex;
  justify-content: space-between;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  max-height: 0;
}
.wc-single-product--add-to-cart .wc-continue.on {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
  padding: 20px 0 0;
  max-height: 60px;
}
.wc-single-product--add-to-cart .wc-continue a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 23px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  min-width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.wc-single-product--add-to-cart .wc-continue a i {
  margin-right: 7px;
}
.wc-single-product--add-to-cart .wc-continue a.view-cart {
  color: var(--fl1-primary);
  border: 1px var(--fl1-primary) solid;
}
.wc-single-product--add-to-cart .wc-continue a.go-to-checkout {
  background: var(--fl1-primary);
  color: #fff;
}
.wc-single-product--add-to-cart .wc-continue a.go-to-checkout:hover {
  background: var(--fl1-primary-light);
}
.wc-single-product--add-to-cart.variations_form {
  flex-direction: column;
  width: 100%;
}
.wc-single-product--add-to-cart.variations_form table.variations {
  width: 100%;
}
.wc-single-product--add-to-cart.variations_form table.variations tbody tr td {
  padding: 10px;
}
.wc-single-product--add-to-cart.variations_form table.variations tbody tr td.label {
  font-size: 14px;
  font-weight: 700;
  color: #003764;
  text-transform: uppercase;
}
.wc-single-product--add-to-cart.variations_form table.variations tbody tr td.value select {
  border: none;
  padding: 15px 10px;
  width: auto;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  width: 100%;
  font-weight: 400;
  color: rgb(0, 83.05, 151);
  background: #eef0fb;
  width: 100%;
  appearance: none;
  border-radius: 0;
  background-image: url("modules/woocommerce/img/select-arrow-down.png");
  background-size: 25px;
  background-position: center right;
  background-repeat: no-repeat;
}
.wc-single-product--add-to-cart.variations_form table.variations tbody tr td.value a.reset_variations {
  display: block;
  padding: 5px 10px;
  background-color: tomato;
  border-radius: 3px;
  color: #fff;
  float: right;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
}
.wc-single-product--add-to-cart.variations_form table.variations tbody tr td.value a.reset_variations:hover {
  background-color: rgb(255, 120.6195652174, 96.5);
}
.wc-single-product--add-to-cart .wc-add-to-cart--form {
  flex-direction: column;
  width: 100%;
}
.wc-single-product--add-to-cart .wc-add-to-cart--form p {
  margin-bottom: var(--fl1-spacing-md);
}
.wc-single-product--add-to-cart .wc-add-to-cart--form p:last-of-type {
  margin-bottom: 0;
}
.wc-single-product--add-to-cart .wc-add-to-cart-notice {
  display: none;
  padding: 12px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  border: 1px transparent solid;
}
.wc-single-product--add-to-cart .wc-add-to-cart-notice.display {
  display: block;
  animation: fadeInUp 0.3s ease-in;
}
.wc-single-product--add-to-cart .wc-add-to-cart-notice.has-errors {
  display: block;
  border: 1px rgb(255, 207.097826087, 198.5) solid;
  color: tomato;
}
.wc-single-product--add-to-cart .wc-add-to-cart-notice.success {
  display: block;
  border: 1px rgb(173.6224489796, 229.7448979592, 142.7551020408) solid;
  color: #64c82d;
}

.wc__wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.wc__wrapper .woocommerce-ordering {
  margin: 10px 0 20px;
}
.wc__wrapper .woocommerce-ordering select {
  padding: 5px;
}
.wc__wrapper .woocommerce-pagination {
  margin: 20px 0;
}
.wc__wrapper .woocommerce-pagination .page-numbers {
  display: flex;
}
.wc__wrapper .woocommerce-pagination .page-numbers li {
  padding-right: 10px;
}
.wc__wrapper .woocommerce-pagination .page-numbers li a {
  color: #002444;
}
