@charset "UTF-8";
.grid {
  display: grid;
}
.grid.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid.grid-7 {
  grid-template-columns: repeat(7, 1fr);
}
.grid.grid-8 {
  grid-template-columns: repeat(8, 1fr);
}
.grid.grid-9 {
  grid-template-columns: repeat(9, 1fr);
}
.grid.grid-10 {
  grid-template-columns: repeat(10, 1fr);
}
.grid.grid-11 {
  grid-template-columns: repeat(11, 1fr);
}
.grid.grid-12 {
  grid-template-columns: repeat(12, 1fr);
}
.grid.grid-1-2 {
  grid-template-columns: 1fr 2fr;
}
.grid.grid-1-3 {
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 768px) {
  .grid.grid-1-3 {
    grid-template-columns: 1fr;
  }
}
.grid .col-span-3 {
  grid-column: span 3;
}
.grid .col-span-4 {
  grid-column: span 4;
}
.grid .col-span-6 {
  grid-column: span 6;
}
.grid .col-span-7 {
  grid-column: span 7;
}
.grid .col-span-8 {
  grid-column: span 8;
}
.grid .col-span-9 {
  grid-column: span 9;
}
.grid .col-span-12 {
  grid-column: span 12;
}
.grid .col-span-2-10 {
  grid-column: 2 / span 10;
}
.grid .col-span-3-8 {
  grid-column: 3 / span 8;
}
.grid .col-span-4-6 {
  grid-column: 4 / span 6;
}

.post-card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 0px) and (max-width: 599px) {
  .post-card-grid-4 .post-card .post-description {
    display: none;
  }
}
@media (min-width: 0) and (max-width: 767px) {
  .post-card-grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .post-card-grid-4 .post-card:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .post-card-grid-4 .post-card a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "content content image";
    gap: 1rem;
  }
  .post-card-grid-4 .post-card a .post-image {
    grid-area: image;
  }
  .post-card-grid-4 .post-card a .post-details {
    grid-area: content;
    padding-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .post-card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-card-grid-2 {
  grid-template-columns: repeat(12, 1fr);
}
.post-card-grid-2 .section-content-left {
  grid-column: span 7;
}
.post-card-grid-2 .section-content-right {
  grid-column: span 5;
}
@media (min-width: 0) and (max-width: 1023px) {
  .post-card-grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .post-card-grid-2 .section-content-left,
  .post-card-grid-2 .section-content-right {
    grid-column: span 12;
  }
  .post-card-grid-2 .section-content-left .post-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.d-flex {
  display: flex;
}
.d-flex.f-col {
  flex-direction: column;
}
.d-flex.f-row {
  flex-direction: row;
}

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

.justify-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.f-wrap {
  flex-wrap: wrap;
}

.gap {
  gap: 1.5rem;
}
.gap-0 {
  gap: 0;
}
.gap-05 {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-15 {
  gap: 1.5rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-row-0 {
  row-gap: 0;
}
.gap-row-1 {
  row-gap: 1rem;
}

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

@media (min-width: 0) and (max-width: 767px) {
  .grid .col-span-12-sm {
    grid-column: span 12;
  }
  .gap {
    gap: 1rem;
  }
  .grid-1-sm {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid .col-span-12-md {
    grid-column: span 12;
  }
  .grid-1-md {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .gap {
    gap: 1.25rem;
  }
}
.padd-0 {
  padding: 0;
}
.padd-05 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.padd-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.padd-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 1rem;
}
.pt-2 {
  padding-top: 2rem;
}
.pt-3 {
  padding-top: 3rem;
}
.pt-4 {
  padding-top: 4rem;
}
.pt-5 {
  padding-top: 5rem;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 1rem;
}
.pb-2 {
  padding-bottom: 2rem;
}
.pb-3 {
  padding-bottom: 3rem;
}
.pb-4 {
  padding-bottom: 4rem;
}
.pb-5 {
  padding-bottom: 5rem;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}

.container {
  width: calc(100vw - 2rem);
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}
.container.container-1192 {
  max-width: 1192px;
}
.container.container-800 {
  max-width: 800px;
}
.container.container-470 {
  max-width: 470px;
}
.container::before {
  content: none;
}
.container::after {
  content: none;
}

.container-full {
  width: 100%;
  max-width: 100%;
}

.container-dark {
  background: #2d3033;
}
.container-dark .section-header h2,
.container-dark .section-header p {
  color: #fff !important;
}
.container-dark .post-card h3,
.container-dark .post-card p,
.container-dark .post-card .post-info {
  color: #fff !important;
}

.container-green {
  background: #98cca4;
}

.container-light-gray {
  background: #f8f8f8;
}

.container-pd {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .container {
    width: calc(100vw - 4rem);
  }
}
@media (max-width: 1024px) {
  .grid.m-grid-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.m-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.m-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.m-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.m-grid-13 {
    grid-template-columns: 1fr 3fr;
  }
  .f-row.m-f-col {
    flex-direction: column;
    align-items: start;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: #000;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.7rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.125rem;
}

body {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: #6eb981;
}

@media (min-width: 0px) and (max-width: 1023px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.3rem;
  }
  h5 {
    font-size: 1.2rem;
  }
  h6 {
    font-size: 1.1rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: #fff;
}

.site-content {
  padding-top: 1.5rem;
}

.slider-item .image-side {
  height: 600px;
  overflow: hidden;
}
.slider-item .image-side img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.slider-item .content-side {
  background: #000;
  color: #fff !important;
  position: relative;
}
.slider-item .content-side .content-title {
  padding: 4rem 3rem 2rem;
}
.slider-item .content-side .content-title .post-cat {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.slider-item .content-side .content-title h2 {
  color: #fff !important;
  width: 100%;
}
.slider-item .content-side .content-title h2 a {
  color: #fff !important;
}
.slider-item .content-side .content-title h2 a:hover {
  color: #fff !important;
  text-decoration: underline;
}
.slider-item .content-side .content-title p {
  font-size: 1rem;
}
.slider-item:has(.content-side a:hover) .image-side img {
  transform: scale(1.08);
}

.slider-arrows {
  position: absolute;
  bottom: -35px;
  right: 0;
  height: 70px;
  display: flex;
  width: 33.33%;
  z-index: 10;
}
.slider-arrows .slick-nav {
  width: 50%;
  height: 100%;
  position: static;
  border-top: 1px solid #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.slider-arrows .slick-nav i {
  margin: 0 4px;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.slider-arrows .slick-nav.slick-prev:hover {
  opacity: 1;
}
.slider-arrows .slick-nav.slick-prev:hover i {
  transform: translateX(-5px);
}
.slider-arrows .slick-nav.slick-prev::before {
  content: none;
}
.slider-arrows .slick-nav.slick-next {
  border-left: 1px solid #262626;
}
.slider-arrows .slick-nav.slick-next:hover {
  opacity: 1;
}
.slider-arrows .slick-nav.slick-next:hover i {
  transform: translateX(5px);
}
.slider-arrows .slick-nav.slick-next::before {
  content: none;
}
.slider-arrows .slick-nav .arrow-text {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}
.slider-arrows .slick-nav:hover {
  background: #262626;
}

.slick-dots {
  bottom: -50px;
}

.hero {
  position: relative;
  background: #000;
}

.pro .section-header {
  padding: 4rem 3rem;
}
.pro .section-content {
  position: relative;
  padding: 4rem 3rem 8rem;
}
.pro .section-content .pro-arrows {
  width: 100%;
}
.pro .section-content .pro-arrows .slick-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pro .section-content .pro-arrows .slick-nav.slick-next {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.author-slide-item .image {
  width: 6rem;
  min-width: 6rem;
}
.author-slide-item .image img {
  border-radius: 100%;
  border: 2px solid #6eb981;
}
.author-slide-item .content {
  color: #fff;
}
.author-slide-item .content a {
  color: #fff;
}
.author-slide-item .content a i {
  font-size: 1.2rem;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.author-slide-item .content a:hover {
  color: #fff;
  text-decoration: underline;
}
.author-slide-item .content a:hover i {
  transform: translateX(5px);
}
.author-slide-item .content .handle,
.author-slide-item .content .prefix {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #6eb981;
}
.author-slide-item .content .handle {
  margin-bottom: 0.5rem;
}
.author-slide-item .content .handle span {
  font-weight: 700;
  color: #000;
  background: #6eb981;
  padding: 2px 5px;
}
.author-slide-item .content .articles a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.pro-slider-archive .slick-track {
  display: flex !important;
  align-items: stretch;
}
.pro-slider-archive .slick-slide {
  height: auto !important;
}
.pro-slider-archive .author-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  margin: 0 4px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 100%;
}
.pro-slider-archive .content {
  color: #000;
}
.pro-slider-archive .content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.pro-slider-archive .content a {
  color: #000;
  font-size: 1.25rem !important;
}
.pro-slider-archive .content a:hover {
  color: #000;
}
.pro-slider-archive .content p {
  font-size: 1rem;
}

.category-slider .slick-slide {
  margin: 0 4px;
}
.category-slider .slick-list {
  margin: 0 -4px;
}
.category-slider .post-card {
  padding: 0;
}
.category-slider .post-card .post-details {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.75rem;
}
.category-slider .post-card .post-details .post-title {
  font-size: 1rem;
}
.category-slider .post-card .post-details .post-description p {
  font-size: 12px;
}
.category-slider .post-card .post-image {
  aspect-ratio: 16/9;
}

.section-header {
  margin-bottom: 2rem;
}
.section-header p {
  margin-bottom: 0;
  font-size: 1rem;
}

.newsletter .container {
  padding: 1.75rem 1rem;
}
.newsletter .container .privacy-text {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.mailerlite-form {
  text-align: center;
  color: #fff;
}
.mailerlite-form h3 {
  color: #fff;
}
.mailerlite-form .mailerlite-form-inputs {
  display: flex;
  gap: 0.5rem;
}
.mailerlite-form .mailerlite-form-field {
  width: 100%;
}
.mailerlite-form .mailerlite-form-field input {
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 0.125rem;
  line-height: 1.75rem;
}
.mailerlite-form .mailerlite-subscribe-button-container {
  width: 35%;
}
.mailerlite-form .mailerlite-subscribe-submit {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #6eb981;
  border-radius: 0.125rem;
  color: #000 !important;
  background-color: #6eb981;
}
.mailerlite-form .mailerlite-subscribe-submit:hover {
  border: 2px solid #4fab68;
  background-color: #4fab68;
}

.newsletter-light {
  margin-bottom: 6rem;
}
.newsletter-light .mailerlite-form h3,
.newsletter-light .mailerlite-form p {
  color: #000;
}
.newsletter-light .mailerlite-form .mailerlite-subscribe-button-container {
  width: 100%;
}
.newsletter-light .mailerlite-form-inputs {
  display: block;
}
.newsletter-light .mailerlite-form-inputs input {
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0px 0px 0px 16px;
  height: 50px;
  text-align: left;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(148, 149, 150);
}

.archive .more {
  margin-top: 2rem;
  padding: 2rem 0 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.archive aside {
  grid-column: 10/-1;
}

.single .entry-content {
  margin: 0;
  row-gap: 1rem;
}
.single .entry-content .entry-header {
  grid-column: 3 / span 8;
}
.single .entry-content .entry-header .post-cat,
.single .entry-content .entry-header .date {
  color: #6eb981;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.single .entry-content .entry-header .date {
  color: #000;
  margin-bottom: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
}
.single .entry-content .entry-header .entry-title {
  margin-bottom: 1rem;
}
.single .entry-content .entry-header .deck {
  font-size: 1rem;
}
.single .entry-content .entry-header .meta {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.single .entry-content .entry-header .author-image {
  width: 2rem;
}
.single .entry-content .post-image {
  grid-column: span 12;
}
.single .entry-content .post-image img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}
.single .entry-content .post-image .post-image-caption {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}
.single .entry-content .entry-body {
  grid-column: span 12;
}
.single .entry-content .entry-body aside.social-share {
  grid-column: span 1;
}
.single .entry-content .entry-body .content-wrapper {
  grid-column: 3 / span 8;
}
.single .entry-content .entry-footer {
  grid-column: 3 / span 8;
}
.single .entry-content .entry-footer .post-tags {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}
.single .entry-content .entry-footer .post-tags svg {
  margin-top: 3px;
}
.single .entry-content .entry-footer .post-tags .links {
  margin-left: 0.5rem;
}
.single .entry-content .entry-footer .post-tags .links a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}

.subscription-tier__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #a0a5ab;
}
.subscription-tier__footer .info {
  color: #4fab68;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.subscription-tier__footer .sub-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.subscription-tier__footer .sub-option:last-of-type {
  margin-bottom: 1rem;
}
.subscription-tier__footer .sub-option-square {
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  display: inline-block;
  background: #fff;
}
.subscription-tier__footer input[type="radio"]:checked + .sub-option-square {
  background: #000;
}
.subscription-tier__footer .save-percent {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #000;
  background: #98cca4;
  padding: 2px 5px;
}
.subscription-tier__footer .btn {
  width: 100%;
  gap: 4px;
}
.subscription-tier__footer .btn svg path {
  stroke: black;
}

.woocommerce-message {
  padding: 0.75rem 2rem 0.75rem 3rem;
  margin: 1rem 0;
  background-color: #f6f6f6;
}
.woocommerce-message::before {
  top: 0.75rem;
  left: 1rem;
}

.wp-block-cover .wp-block-embed {
  min-height: auto;
}

.wp-block-embed iframe {
  height: auto;
  aspect-ratio: 16/9;
}

.wp-block-columns {
  gap: 1rem;
  margin-bottom: 3rem;
}
.wp-block-columns .wp-block-column {
  padding: 2rem;
  background: #f6f6f6;
}
.wp-block-columns .wp-block-column h3 {
  font-size: 18px;
  margin-bottom: 0.75rem;
}
.wp-block-columns .wp-block-column p {
  font-size: 1rem;
  margin-bottom: 0;
}

.wp-block-media-text {
  margin-bottom: 3rem;
  gap: 2rem;
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}

.wp-block-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #6eb981;
  border-radius: 0.125rem;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
  cursor: pointer;
  color: #000 !important;
  background-color: #6eb981;
}
.wp-block-button__link:hover {
  color: #000 !important;
  background-color: #4fab68;
  border-color: #4fab68;
}

@media (min-width: 0) and (max-width: 599px) {
  .pro-slider .author-slide-item {
    flex-direction: column;
  }
  .pro-slider .author-slide-item .image {
    width: 5rem;
    min-width: 5rem;
  }
  .single .entry-content .entry-header .meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .single .entry-content .entry-header .meta .date {
    border-left: 0;
  }
}
@media (min-width: 0) and (max-width: 767px) {
  .slider-item .image-side {
    height: 400px !important;
  }
  .hero-arrows {
    width: 100% !important;
  }
  .pro-slider .author-slide-item .content .articles a {
    font-size: 1.75rem;
  }
  .mailerlite-form .mailerlite-form-inputs {
    flex-direction: column;
    gap: 0;
  }
  .mailerlite-subscribe-button-container {
    width: 100% !important;
  }
  .single .entry-content .entry-header,
  .single .entry-content .entry-body .content-wrapper,
  .single .entry-content .entry-body aside.social-share,
  .single .entry-content .entry-footer {
    grid-column: span 12;
  }
  .single .entry-content .entry-body aside.social-share {
    order: 2;
  }
}
@media (min-width: 0) and (max-width: 1023px) {
  .hero .content-title {
    padding: 2rem 1.5rem 5rem !important;
  }
  .pro .container {
    width: 100%;
    padding: 0;
  }
  .pro .section-header {
    padding: 2rem !important;
  }
  .pro .section-content {
    padding: 2rem 2rem 6rem !important;
  }
}
.ad {
  padding: 1rem;
  text-align: center;
  background: #f4f4f4;
}

.op-subtle-bg {
  background:
    linear-gradient(rgba(242, 242, 240, 0.7), rgba(242, 242, 240, 0.7)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=2560&q=80")
      center/cover fixed no-repeat;
  margin: 0;
  padding-bottom: 2rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #6eb981;
  border-radius: 0.125rem;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
  cursor: pointer;
}
.btn svg {
  min-width: 20px;
  min-height: 20px;
}
.btn svg path {
  stroke: #6eb981;
}
.btn i {
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.btn:hover i {
  transform: translateX(5px);
}
.btn-md {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

.btn-primary {
  color: #000 !important;
  background-color: #6eb981;
}
.btn-primary:hover {
  color: #000 !important;
  background-color: #4fab68;
  border-color: #4fab68;
}

.btn-line {
  color: #4fab68 !important;
  border-color: rgba(110, 185, 129, 0.7);
  background-color: transparent;
}
.btn-line svg path {
  stroke: #4fab68;
}
.btn-line:hover {
  border-color: #6eb981;
}

.btn-line-dark {
  color: #2d3033 !important;
  border-color: rgba(45, 48, 51, 0.7);
}
.btn-line-dark svg path {
  stroke: #2d3033;
}
.btn-line-dark:hover {
  border-color: #2d3033;
}

.btn-text {
  color: #6eb981;
  border: 0;
  padding: 0 !important;
  background: transparent;
}

.minicart svg path {
  stroke: #fff;
}

.banner {
  padding: 1.5rem;
}
.banner .mag-thumb img {
  aspect-ratio: 1/1;
}
.banner .banner-text {
  padding: 0 1rem;
  font-size: 1rem;
  line-height: 1.4;
}
.banner .btn {
  width: auto;
}
.banner-sm {
  padding: 0.75rem;
}
.banner-sm .mag-thumb img {
  width: 5rem;
  object-fit: cover;
}
.banner-md {
  padding: 1rem;
}
.banner-md .mag-thumb {
  width: 30%;
}
.banner-md .mag-thumb img {
  width: 8.5rem;
}
.banner-md .banner-text {
  width: 40%;
}
.banner-md .banner-text h3 {
  margin-bottom: 0.75rem;
}
.banner-md .banner-btn {
  width: 30%;
}
.banner-aside {
  padding: 1.5rem;
  margin-bottom: 3rem;
}
.banner-aside .mag-thumb {
  width: 163px;
}
.banner-aside .banner-text {
  padding: 0 0 0.5rem;
}
.banner-aside .banner-text h4 {
  margin: 1rem 0 0.5rem;
}
.banner-green {
  background: #e5f3e8;
}
.banner-darkgrey {
  background: #2d3033;
}
.banner-darkgrey .banner-text {
  color: #fff;
}
.banner-black {
  background: #000;
}

@media (min-width: 0) and (max-width: 424px) {
  .banner .mag-thumb {
    width: 25%;
  }
  .banner .banner-text {
    width: 75%;
  }
  .banner .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
  .banner-md .mag-thumb {
    width: 100% !important;
  }
  .banner-md .banner-text {
    width: 100% !important;
    padding: 1rem 0;
  }
  .banner-md .banner-btn {
    margin-top: 0 !important;
  }
  .banner-md .banner-btn .btn {
    margin-top: 0 !important;
  }
  .banner-aside .mag-thumb {
    width: 163px;
  }
  .banner-aside .banner-text,
  .banner-aside .btn {
    width: 100%;
  }
}
@media (min-width: 425px) and (max-width: 767px) {
  .banner .mag-thumb {
    width: 15%;
  }
  .banner .banner-text {
    width: 55%;
  }
  .banner .btn {
    width: 30%;
  }
  .banner-md .btn {
    width: 100%;
  }
  .banner-aside .mag-thumb {
    width: 163px;
  }
  .banner-aside .banner-text,
  .banner-aside .btn {
    width: 100%;
  }
}
@media (min-width: 0) and (max-width: 599px) {
  .banner-md .mag-thumb {
    width: 25%;
  }
  .banner-md .banner-text {
    width: 75%;
  }
  .banner-md .banner-btn {
    width: 100%;
    margin-top: 1rem;
  }
}
.box-shadow {
  width: fit-content;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.5rem;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
}
.box-shadow .mag-thumb img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.post-card {
  padding: 1rem 0;
}
.post-card a {
  color: #000;
  text-decoration: none;
}
.post-card a:hover .post-image img {
  transform: scale(1.08);
}
.post-card a:hover .post-title {
  text-decoration: underline;
}
.post-card .post-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/12;
  overflow: hidden;
}
.post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.post-card .post-details {
  padding-top: 1rem;
  color: #000;
}
.post-card .post-details .post-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem !important;
}
.post-card .post-details .post-description p {
  font-size: 15px;
  margin-bottom: 3px;
}
.post-card .post-details .post-cat,
.post-card .post-details .post-info {
  color: #6eb981;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.post-card .post-details .post-info {
  color: #000;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.post-card.post-card-cover {
  padding: 0;
}
.post-card.post-card-cover .post-image {
  aspect-ratio: 16/11;
  height: 100%;
}
.post-card.post-card-cover .post-details {
  padding: 4rem 3rem;
}
.post-card.post-card-cover .post-details .post-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.post-card.post-card-cover .post-details .post-description p {
  font-size: 1rem;
}
.post-card.post-card-dark {
  background: #000;
}
.post-card.post-card-dark .post-details h3,
.post-card.post-card-dark .post-details p {
  color: #fff;
}
.post-card.post-card-light {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.post-card.post-card-light .post-details h3,
.post-card.post-card-light .post-details p {
  color: #000;
}
.post-card.post-card-lg .post-title {
  font-size: 1.5rem;
}
.post-card.post-card-lg .post-image {
  aspect-ratio: 16/9;
}
.post-card.post-card-md .post-title {
  margin-bottom: 1rem;
}
.post-card.post-card-md-list {
  padding: 1rem 0;
}
.post-card.post-card-md-list a {
  grid-template-areas: "content content image";
}
.post-card.post-card-md-list a .post-image {
  grid-area: image;
  aspect-ratio: 16/12;
}
.post-card.post-card-md-list a .post-details {
  grid-area: content;
  padding-top: 0;
}
.post-card.post-card-md-list:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.post-card.post-card-sm a {
  grid-template-areas: "content content image";
}
.post-card.post-card-sm .post-image {
  grid-area: image;
  aspect-ratio: 1/1;
}
.post-card.post-card-sm .post-details {
  padding-top: 0;
  grid-area: content;
}
.post-card.post-card-sm-desc-none .post-description {
  display: none;
}

.container-dark .post-card-md-list:not(:nth-child(3)) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.container-dark .post-card-md-list:nth-child(3) {
  border-bottom: 0 !important;
}

.cta-card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.cta-card .cta-card-title {
  font-size: 1.125rem;
}

.author {
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
}
.author .author-image-wrapper .author-card {
  position: absolute;
  padding: 1rem;
  background-color: #fff;
  top: 38px;
  left: 0;
  filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 0px 4px);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 16px;
  width: 300px;
  z-index: 99;
  display: none;
}
.author .author-image-wrapper .author-card.active {
  display: flex;
}
.author .author-image-wrapper .author-card .author-card-head {
  padding-bottom: 1rem;
}
.author .author-image-wrapper .author-card .author-card-head .author-image {
  width: 3rem;
}
.author .author-image-wrapper .author-card .author-card-head .author-name-role {
  text-align: left;
}
.author .author-image-wrapper .author-card .author-card-head .author-role {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}
.author .author-image-wrapper .author-card .author-card-bio {
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 2px dotted #d5d7dd;
  border-bottom: 2px dotted #d5d7dd;
}
.author .author-image {
  width: 2.5rem;
  border-radius: 50%;
}
.author .author-name {
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
}
.author .author-name a {
  font-size: 15px;
  color: #000;
  text-decoration: underline;
}
.author .author-social {
  margin-left: 1rem;
}
.author .author-social img {
  opacity: 50%;
}
.author .author-social img:hover {
  opacity: 80%;
}

@media (min-width: 0px) and (max-width: 599px) {
  .post-card-md-list .post-description {
    display: none;
  }
}
@media (min-width: 0) and (max-width: 767px) {
  .post-card.post-card-cover .post-details {
    order: 2;
    padding: 2rem 1.5rem;
  }
  .post-card.post-card-cover .post-image {
    order: 1;
    height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .post-card.post-card-cover .post-details {
    padding: 3rem 2rem;
  }
}
@media (max-width: 1023px) {
  .post-card.post-card-cover .post-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .post-wrapper .post-card-sm {
    border-bottom: 0;
  }
}
.woocommerce-account .site-content {
  background: #f8f8f8;
}
.woocommerce-account header.entry-header {
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: auto;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.woocommerce-account
  .woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link:not(:last-child) {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}
.woocommerce-account
  .woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link
  a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  border-left: 6px solid transparent;
  background: #fff;
}
.woocommerce-account
  .woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link
  a:hover {
  background: rgba(110, 185, 129, 0.1);
}
.woocommerce-account
  .woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link.is-active
  a {
  border-left: 6px solid #6eb981;
  background: rgba(110, 185, 129, 0.2);
}
.woocommerce-account .woocommerce-MyAccount-content {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 0;
  background-color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content a {
  font-weight: 700;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .account-content-header
  .account-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .woocommerce-account
    .woocommerce-MyAccount-content
    .account-content-header
    .account-title {
    flex-direction: column;
  }
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .account-content-header
  .account-title
  h2 {
  font-size: 1.5rem;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .account-content-header
  .account-title
  .date {
  font-size: 1rem;
}
.woocommerce-account .woocommerce-MyAccount-content .account-content-body h2 {
  font-size: 1.3rem;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .account-content-body
  h2
  mark {
  color: #4fab68;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .account-content-body
  .account-details-wrap {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .account-content-body
  .account-details-wrap
  section {
  margin-bottom: 2rem;
}
.woocommerce-account .woocommerce-MyAccount-content .acc-block {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .acc-block
  .acc-block-header {
  padding: 0.5rem 1rem;
  background: rgba(110, 185, 129, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .acc-block
  .acc-block-header
  h3 {
  margin-bottom: 0;
}
.woocommerce-account .woocommerce-MyAccount-content .acc-block .acc-block-body {
  padding: 0.75rem 1rem;
  text-align: left;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .acc-block
  .acc-block-footer {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.woocommerce-account .woocommerce-MyAccount-content .breadcrumbs a {
  color: #000;
  text-decoration: underline;
}
.woocommerce-account .woocommerce-MyAccount-content address {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  padding: 0.5rem 1rem;
}
.woocommerce-account .woocommerce-MyAccount-content table {
  border-radius: 0;
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  width: 100%;
  font-size: 15px;
  margin: 1rem 0;
}
.woocommerce-account .woocommerce-MyAccount-content table thead {
  background: rgba(0, 0, 0, 0.1);
}
.woocommerce-account .woocommerce-MyAccount-content table tbody tr:hover {
  background: rgba(110, 185, 129, 0.1);
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: #4fab68 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: inherit;
  border: 2px solid rgba(110, 185, 129, 0.7);
  border-radius: 0.125rem;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
  cursor: pointer;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:hover {
  border-color: #6eb981;
  background-color: transparent;
}
.woocommerce-account .woocommerce-MyAccount-content td.actions {
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem;
}
.woocommerce-account .woocommerce-MyAccount-content td.actions::before {
  content: none;
}
.woocommerce-account .woocommerce-MyAccount-content td:has(button.btn)::before {
  content: none;
}
.woocommerce-account .woocommerce-MyAccount-content .ywgc-copy-code {
  width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-content .order-filter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 599px) {
  .woocommerce-account .woocommerce-MyAccount-content .order-filter {
    flex-direction: column;
  }
}
.woocommerce-account .woocommerce-MyAccount-content .order-filter .search {
  flex: 1;
}
@media (max-width: 599px) {
  .woocommerce-account .woocommerce-MyAccount-content .order-filter .search {
    width: 100%;
  }
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .order-filter
  .search
  .search-form {
  flex: 1;
  position: relative;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .order-filter
  .search
  .search-form
  .search-field {
  padding: 0.6rem 2rem 0.6rem 1rem;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .order-filter
  .search
  .search-form
  .search-submit {
  position: absolute;
  border: none;
  background-color: transparent;
  right: 16px;
  top: 11px;
}
.woocommerce-account .woocommerce-MyAccount-content .order-filter select {
  padding: 10px 32px 10px 16px !important;
  display: block;
  border-radius: 0;
  font-size: 14px;
  appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat !important;
  background-position: right 0.7rem top 50%;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .contest-info:not(:last-child) {
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.woocommerce-account .woocommerce-MyAccount-content .contest-info-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-content .contest-info-title-s {
  font-size: 0.85rem;
  font-weight: 500;
  width: 100px;
  margin-bottom: 0 !important;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.woocommerce-account .woocommerce-MyAccount-content .contest-info-data p {
  margin-bottom: 0;
}
.woocommerce-account .woocommerce-MyAccount-content .contest-submissions {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.75rem;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  .contest-submissions
  .contest-info-title {
  margin-bottom: 0.5rem;
}
.woocommerce-account .woocommerce-MyAccount-content .wcs-switch-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #6eb981;
  border-radius: 0.125rem;
  transition: all 300ms cubic-bezier(0.45, 0, 0.4, 1);
  cursor: pointer;
}

.acc-block-panel-perks {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}
.acc-block-panel-perks li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}
.acc-block-panel-perks li::before {
  content: "✓ ";
  opacity: 0.6;
}

.acc-block-panel {
  display: flex;
  align-items: stretch;
  margin-top: 0.75rem;
  overflow: hidden;
  border-radius: 2px;
}

.acc-block-panel-img {
  overflow: hidden;
  width: 98px;
}
.acc-block-panel-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.acc-block-panel-img--empty {
  height: 104px;
  background: rgba(0, 0, 0, 0.2)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E")
    center/28px no-repeat;
}
.acc-block-panel-info {
  display: flex;
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}
.acc-block-panel-info::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: var(--cover-bg, transparent) center/cover no-repeat;
  filter: blur(5px);
  z-index: 0;
}
.acc-block-panel-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.acc-block-panel-info-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #fff;
  z-index: 1;
}
.acc-block-panel-info-group .acc-block-panel-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.acc-block-panel-info-group .acc-block-panel-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}
.acc-block-panel-info-group .acc-block-panel-title span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
}
.acc-block-panel-info-group .acc-block-panel-dates {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.acc-block-panel-info-group .acc-block-panel-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.acc-block-panel-info-group .acc-block-panel-cat-img {
  display: block;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.acc-block-panel-badge {
  display: inline-flex;
  align-items: center;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25em 0.65em;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.acc-block-panel-badge--live {
  background: #228f45;
  color: #fff;
  border: 1px solid #98cca4;
}
.acc-block-panel-badge--soon {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
.acc-block-panel-badge--yellow {
  background: #f4b400;
  color: #000;
  border: 1px solid #f4b400;
}

.woocommerce .woocommerce-product-gallery {
  width: 100% !important;
}
.woocommerce .woocommerce-product-gallery img {
  border-radius: 0 !important;
}
.woocommerce
  .virtual.product-type-gift-card
  .woocommerce-product-gallery__wrapper {
  border-radius: 0 !important;
  background: #fff;
}
.woocommerce .summary {
  width: 100% !important;
}

.single-product .product-wrap {
  gap: 3rem;
}
@media (min-width: 0) and (max-width: 767px) {
  .single-product .product-wrap {
    gap: 0;
  }
}

.site-content:has(.sub-page) {
  padding-top: 0;
}
.site-content:has(.sub-page) .breadcrumb-wrapper {
  display: none !important;
}

@keyframes sub-hero-drift {
  from {
    transform: scale(1.03) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1%, -1%);
  }
}
@keyframes sub-mag-reveal {
  0% {
    opacity: 0;
    transform: rotateY(-6deg) scale(0.96);
  }
  8% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
  33% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
  41% {
    opacity: 0;
    transform: rotateY(6deg) scale(0.96);
  }
  100% {
    opacity: 0;
    transform: rotateY(6deg) scale(0.96);
  }
}
@keyframes sub-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.sub-page .btn {
  display: inline-flex;
}
.sub-page .btn svg path {
  stroke: #000;
}
.sub-page .sub-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #111;
  overflow: hidden;
  margin-top: -233px;
  padding-top: 233px;
}
.sub-page .sub-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
  animation: sub-hero-drift 14s ease-in-out infinite alternate;
  will-change: transform;
}
.sub-page .sub-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 12, 16, 0.92) 0%,
    rgba(8, 12, 16, 0.55) 55%,
    transparent 100%
  );
}
.sub-page .sub-hero__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.sub-page .sub-hero__eyebrow {
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #6eb981;
  margin-bottom: 1.25rem;
}
.sub-page .sub-hero__headline {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.sub-page .sub-hero__sub {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 520px;
}
.sub-page .sub-hero__proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
}
.sub-page .sub-hero__avatars {
  display: flex;
}
.sub-page .sub-hero__av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  font-weight: 700;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-left: -8px;
  background: #2d3033;
}
.sub-page .sub-hero__av:first-child {
  margin-left: 0;
  background: #187d3a;
}
.sub-page .sub-hero__av:nth-child(2) {
  background: #43484d;
}
.sub-page .sub-hero__av:nth-child(3) {
  background: #2d3033;
}
.sub-page .sub-hero__stars {
  color: #f4b400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.sub-page .sub-mag {
  perspective: 1100px;
}
.sub-page .sub-mag__stack {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 0.72;
  width: 100%;
}
.sub-page .sub-mag__cover {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.65),
    0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: sub-mag-reveal 12s ease-in-out infinite;
}
.sub-page .sub-mag__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sub-page .sub-mag__cover:nth-child(1) {
  animation-delay: 0s;
}
.sub-page .sub-mag__cover:nth-child(2) {
  animation-delay: 4s;
}
.sub-page .sub-mag__cover:nth-child(3) {
  animation-delay: 8s;
}
.sub-page .sub-mag__pill {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.sub-page .sub-strip {
  background: #111;
  padding: 2rem 0;
  overflow: hidden;
}
.sub-page .sub-strip__track {
  display: flex;
  width: max-content;
  animation: sub-strip-scroll 28s linear infinite;
}
.sub-page .sub-strip__track img {
  height: 120px;
  width: auto;
  display: block;
}
.sub-page .sub-strip:hover .sub-page .sub-strip__track {
  animation-play-state: paused;
}
.sub-page .sub-section {
  padding: 5rem 1.5rem;
}
.sub-page .sub-section--dark {
  background: #f5f5f3;
}
.sub-page .sub-section--white {
  background: #fff;
}
.sub-page .sub-section--black {
  background: #111;
}
.sub-page .sub-wrap {
  max-width: 1120px;
  margin: 0 auto;
}
.sub-page .sub-eyebrow {
  display: block;
  text-align: center;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4fab68;
  margin-bottom: 0.875rem;
}
.sub-page .sub-eyebrow--left {
  text-align: left;
}
.sub-page .sub-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: #111;
  text-align: center;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  line-height: 1.05;
}
.sub-page .sub-title--left {
  text-align: left;
}
.sub-page .sub-subtitle {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1.125rem;
  color: #43484d;
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 580px;
  line-height: 1.6;
}
.sub-page .sub-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
  max-width: 780px;
  margin: 0 auto;
}
.sub-page .sub-card {
  background: #fff;
  border: 2px solid #e0e0de;
  border-radius: 0.5rem;
  overflow: hidden;
  transition:
    box-shadow 300ms cubic-bezier(0.45, 0, 0.4, 1),
    transform 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.sub-page .sub-card:hover {
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.sub-page .sub-card--featured {
  border-color: #6eb981;
}
.sub-page .sub-card__badge {
  background: #6eb981;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  padding: 0.5rem;
  text-transform: uppercase;
}
.sub-page .sub-card__img {
  width: 100%;
  padding: 2rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
}
.sub-page .sub-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}
.sub-page .sub-card:hover .sub-page .sub-card__img img {
  transform: scale(1.04);
}
.sub-page .sub-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.sub-page .sub-card__label {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 0.35rem;
}
.sub-page .sub-card__name {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #111 !important;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem !important;
}
.sub-page .sub-card__desc {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1rem;
  color: #43484d;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.sub-page .sub-card__fine {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  color: #aaa;
  text-align: center;
  margin-top: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sub-page .sub-opts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.sub-page .sub-opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0de;
  border-radius: 0.125rem;
  background: #fafaf8;
  cursor: pointer;
  transition:
    border-color 300ms cubic-bezier(0.45, 0, 0.4, 1),
    background 300ms cubic-bezier(0.45, 0, 0.4, 1);
  width: 100%;
  text-align: left;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.sub-page .sub-opt:hover {
  border-color: #6eb981;
  background: #f5faf7;
}
.sub-page .sub-opt.is-on {
  border-color: #6eb981;
  background: #f0f8f3;
}
.sub-page .sub-opt__lhs {
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sub-page .sub-opt__rhs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sub-page .sub-opt__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
}
.sub-page .sub-opt__period {
  font-size: 0.68rem;
  color: #bbb;
}
.sub-page .sub-opt__save {
  font-size: 0.6rem;
  font-weight: 700;
  background: #e5f3e8;
  border: 1px solid #98cca4;
  color: #187d3a;
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sub-page .sub-cta-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0.125rem;
  padding: 1.1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 300ms cubic-bezier(0.45, 0, 0.4, 1);
  background: #111;
  color: #fff !important;
}
.sub-page .sub-cta-btn:hover {
  background: #4fab68;
  color: #fff !important;
}
.sub-card--featured .sub-page .sub-cta-btn {
  background: #6eb981;
}
.sub-card--featured .sub-page .sub-cta-btn:hover {
  background: #4fab68;
}
.sub-page .sub-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.5rem;
}
.sub-page .sub-feat__img {
  width: 100%;
  aspect-ratio: 1.2;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #eee;
  border-radius: 4px;
}
.sub-page .sub-feat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.sub-page .sub-feat:hover .sub-page .sub-feat__img img {
  transform: scale(1.05);
}
.sub-page .sub-feat__name {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111 !important;
  margin: 0 0 0.5rem !important;
}
.sub-page .sub-feat__text {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1rem;
  color: #43484d;
  line-height: 1.6;
}
.sub-page .sub-quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sub-page .sub-quality__video {
  border-radius: 0.125rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}
.sub-page .sub-quality__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sub-page .sub-quality__lead {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1.125rem;
  color: #43484d;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}
.sub-page .sub-quality__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.75rem;
  background: rgba(110, 185, 129, 0.2);
}
.sub-page .sub-stat__num {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
}
.sub-page .sub-stat__label {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #43484d;
  margin-top: 0.35rem;
}
.sub-page .sub-quality__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.sub-page .sub-quality__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1.125rem;
  color: #444;
  line-height: 1.55;
}
.sub-page .sub-quality__list svg {
  flex-shrink: 0;
  color: #6eb981;
  margin-top: 0.2rem;
}
.sub-page .sub-vol-carousel {
  margin-top: 3.5rem;
}
.sub-page .sub-vol-carousel__nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.sub-page .sub-vol-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0ee;
  border: 1px solid #ddd;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.sub-page .sub-vol-carousel__btn:hover {
  background: #e0e0dc;
}
.sub-page .sub-vol-carousel__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.sub-page .sub-vol-carousel__track-wrap {
  overflow: hidden;
}
.sub-page .sub-volumes {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.sub-page .sub-vol {
  flex-shrink: 0;
  width: calc((min(100%, 1370px) - 2.5rem) / 3);
  min-width: 240px;
  background: #fff;
  border: 2px solid #e8e8e5;
  border-radius: 0.5rem;
}
.sub-page .sub-vol__cover {
  padding: 3rem;
}
.sub-page .sub-vol__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.sub-page .sub-vol:hover .sub-vol__cover img {
  transform: scale(1.04);
}
.sub-page .sub-vol__info {
  padding: 0 1.25rem 1.25rem;
}
.sub-page .sub-vol__title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  text-align: center;
}
.sub-page .sub-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}
.sub-page .sub-review {
  background: #fff;
  padding: 1.75rem;
  border: 2px solid #e8e8e5;
  border-radius: 0.5rem;
}
.sub-page .sub-review__stars {
  color: #f4b400;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.1em;
}
.sub-page .sub-review__q {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1.0625rem;
  color: #444;
  line-height: 1.75;
  margin: 0 0 1.25rem;
  font-style: italic;
}
.sub-page .sub-review__name {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111;
  display: block;
}
.sub-page .sub-review__role {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.68rem;
  color: #bbb;
  letter-spacing: 0.04em;
}
.sub-page .sub-faq {
  max-width: 720px;
  margin: 3.5rem auto 0;
}
.sub-page .sub-faq__row {
  border-bottom: 2px solid #111;
}
.sub-page .sub-faq__row:first-child {
  border-top: 2px solid #111;
}
.sub-page .sub-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.375rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  text-align: left;
  cursor: pointer;
}
.sub-page .sub-faq__q svg {
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.sub-page .sub-faq__row.open .sub-page .sub-faq__q svg {
  transform: rotate(180deg);
}
.sub-page .sub-faq__a {
  display: none;
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1.125rem;
  color: #43484d;
  line-height: 1.7;
  padding-bottom: 1.5rem;
}
.sub-page .sub-faq__row.open .sub-page .sub-faq__a {
  display: block;
}
.sub-page .sub-btm {
  position: relative;
  overflow: hidden;
  background: #111;
  padding: 6rem 1.5rem;
  text-align: center;
}
.sub-page .sub-btm::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--btm-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.sub-page .sub-btm__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.sub-page .sub-btm__h {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 2rem;
  line-height: 1;
}
.sub-page .sub-btm__p {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2.75rem;
  line-height: 1.6;
}
.sub-page .sub-btm__btn {
  display: inline-block;
  background: #6eb981;
  color: #fff !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 1.1rem 3rem;
  border-radius: 0.125rem;
  text-decoration: none !important;
  transition: background 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
.sub-page .sub-btm__btn:hover {
  background: #4fab68;
  color: #fff !important;
  text-decoration: none !important;
}
.sub-page .sub-btm__fine {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .sub-page .sub-hero__inner {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem 5rem;
  }
  .sub-page .sub-hero__content {
    text-align: center;
  }
  .sub-page .sub-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .sub-page .sub-hero__cta {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .sub-page .sub-hero__proof {
    justify-content: center;
  }
  .sub-page .sub-mag {
    max-width: 260px;
    margin: 0 auto;
  }
  .sub-page .sub-plans {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .sub-page .sub-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-page .sub-quality {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sub-page .sub-quality .sub-quality__copy {
    text-align: center;
  }
  .sub-page .sub-quality .sub-quality__copy .sub-eyebrow--left,
  .sub-page .sub-quality .sub-quality__copy .sub-title--left {
    text-align: center;
  }
  .sub-page .sub-vol {
    width: calc((100vw - 7rem) / 2);
    min-width: 200px;
  }
  .sub-page .sub-reviews {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 2rem auto 0;
  }
}
@media (max-width: 599px) {
  .sub-page .sub-vol {
    width: calc(100vw - 6rem);
    min-width: 0;
  }
  .sub-page .sub-section {
    padding: 3rem 1rem;
  }
  .sub-page .sub-hero__inner {
    padding: 3rem 1rem 4rem;
  }
  .sub-page .sub-btm {
    padding: 4rem 1rem;
  }
  .sub-page .sub-features-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 2rem auto 0;
  }
  .sub-page .sub-quality__lead,
  .sub-page .sub-review__q,
  .sub-page .sub-vol__desc,
  .sub-page .sub-feat__text {
    text-align: left;
  }
}

.login-card {
  background-color: #eee;
  padding: 0;
}
.login-card form.register,
.login-card form.login {
  padding: 2rem;
  margin: 0;
}
.login-card form.register {
  padding-bottom: 0;
}
.login-card .nav-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  list-style-type: none;
  padding: 0;
  text-align: center;
}
.login-card .nav-tabs li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
  display: block;
  padding: 1rem 0;
  opacity: 0.5;
  border-top: 4px solid transparent;
  background: #fff;
}
.login-card .nav-tabs li a.active {
  opacity: 1;
  border-top: 4px solid #000;
}
.login-card .nav-tabs li:first-of-type a.active {
  background-color: #eee;
}
.login-card .nav-tabs li:last-of-type a.active {
  background-color: #eee;
}
.login-card .tab-pane {
  display: none;
}
.login-card .tab-pane.active {
  display: block;
}
.login-card .tab-pane .row {
  padding: 0;
}
.login-card .tab-pane button.btn svg path {
  stroke: #000;
}
.login-card .form-group {
  margin-bottom: 1rem;
}
.login-card .form-group.form-group--password-options {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
}
.login-card .form-check {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.login-card input {
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  color: #000;
  width: 100%;
}
.login-card input[type="checkbox"] {
  display: none;
  width: auto;
}
.login-card input[type="checkbox"] + label {
  display: inline-block;
  position: relative;
  min-width: 21px;
  width: 21px;
  height: 21px;
  margin-top: 3px;
  cursor: pointer;
  user-select: none;
}
.login-card input[type="checkbox"] + label::before,
.login-card input[type="radio"] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  background: #fff;
}
.login-card input[type="checkbox"]:checked + label:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.6673 3.5L5.25065 9.91667L2.33398 7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}
.login-card input[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  display: block;
  width: 14px;
  height: 14px;
}
.login-card button {
  font-size: 17px;
  padding: 1rem;
  width: 100%;
}
.login-card button svg path {
  stroke: #fff;
}
.login-card select,
.login-card .input-text {
  padding: 1rem !important;
  line-height: 22px !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.login-card p.form-row {
  margin: 0 !important;
}
.login-card {
  /* Only affect your newsletter checkbox block */
}
.login-card .jt-ml-optin {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 4rem;
}
.login-card .jt-ml-optin .form-check-input {
  margin-top: 0.25rem;
  flex: 0 0 auto;
}
.login-card .jt-ml-optin .form-check-label {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 30px;
  margin: 0;
  line-height: 1.35;
}
.login-card .jt-ml-optin .form-check-label::before {
  margin-right: 10px;
}

.woocommerce form.register,
.woocommerce form.login {
  border: none;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  position: relative;
}

.woocommerce form .show-password-input::before,
.woocommerce-page form .show-password-input::before {
  position: absolute;
  right: 0;
  top: -40px;
}

.odp-signin-wrap {
  background: #f6f7f8;
  min-height: calc(100vh - 200px);
  padding: 3rem 1rem 4rem;
}

.login-card .col-well-a {
  display: none;
}

.container-470 {
  max-width: 470px;
}

.login-notice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.login-notice--error {
  background: #fff2f2;
  border-bottom: 1px solid #ffcccc;
  color: #c0392b;
}

.form-group--names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-group--names {
    grid-template-columns: 1fr;
  }
}

.form-group--pw-wrap {
  position: relative;
}
.form-group--pw-wrap input {
  padding-right: 2.75rem !important;
}
.form-group--pw-wrap .pw-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  color: #999;
  width: auto;
}
.form-group--pw-wrap .pw-toggle:hover {
  color: #555;
}
.form-group--pw-wrap .pw-toggle svg path {
  stroke: currentColor;
}

.register-intro {
  font-size: 0.875rem;
  color: #666;
  margin: 2rem 2rem 0;
  line-height: 1.5;
}

.register-pw-hint {
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 1rem;
}

.register-terms {
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  padding: 0 2rem 2rem;
  line-height: 1.5;
}
.register-terms a {
  color: #4fab68;
}

.contest-archive .breadcrumb-wrapper,
.post-type-archive-contest .breadcrumb-wrapper {
  display: none !important;
}

.ca-archive-hero {
  background-color: #fff;
  background-image: url("../img/contest-achive-cover.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #ebebeb;
  margin-top: -233px;
  padding: calc(233px + 4rem) 2rem 4rem;
  position: relative;
}
.ca-archive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(255, 255, 255, 0.8) 90%
  );
  pointer-events: none;
}
.ca-archive-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
}
.ca-archive-hero__inner > p:not([class]),
.ca-archive-hero__inner > p[style] {
  display: none !important;
}
.ca-archive-hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 1rem;
}
.ca-archive-hero__title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: #2d3033;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}
.ca-archive-hero__desc {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  max-width: 420px;
  margin: 0;
}
.ca-archive-hero__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #060a0e;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.ca-archive-hero__card:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}
.ca-archive-hero__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  animation: ca-drift 18s ease-in-out infinite alternate;
  transition: transform 0.4s;
}
.ca-archive-hero__card:hover .ca-archive-hero__card-bg {
  transform: scale(1.04);
}
.ca-archive-hero__card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 7, 11, 0.97) 0%,
    rgba(4, 7, 11, 0.5) 50%,
    rgba(4, 7, 11, 0.08) 100%
  );
}
.ca-archive-hero__card-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.ca-archive-hero__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #2a9d4e;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.ca-archive-hero__card-badge::before {
  content: "●";
  font-size: 0.75rem;
  animation: ca-pulse 1.5s ease-in-out infinite;
}
.ca-archive-hero__card-logo img {
  max-height: 60px;
  width: auto;
  margin-bottom: 0.875rem;
  display: block;
}
.ca-archive-hero__card-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 0.875rem;
}
.ca-archive-hero__card-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ca-archive-hero__card-stat-num {
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #f4b400;
  line-height: 1;
}
.ca-archive-hero__card-stat-label {
  display: block;
  font-size: 0.6875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ca-archive-hero__card-deadline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 1.25rem;
}
.ca-archive-hero__card-enter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #6eb981;
  color: #000 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.125rem;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.ca-archive-hero__card-enter:hover {
  background: rgb(79.4418604651, 164.5581395349, 101.0046511628);
}

@keyframes ca-drift {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.08) translate(-1%, -1%);
  }
}
@keyframes ca-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.ca-promo {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid #ebebeb;
}
.ca-promo__text {
  max-width: 680px;
  margin: 0 auto;
  font-family: "Lora", Georgia, sans-serif;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.85;
  color: #2d3033;
  font-style: italic;
}

.ca-divider {
  background: #fff;
  padding: 3.5rem 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
}
.ca-divider h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: #2d3033;
  margin: 0 0 0.5rem;
}
.ca-divider p {
  font-size: 1rem;
  color: #a0a5ab;
  font-family: "Lora", Georgia, sans-serif;
  margin: 0;
}

.ca-archive {
  background: #fff;
  padding: 2rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ca-year {
  margin-bottom: 3.5rem;
}
.ca-year__heading {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ebebeb;
}

.ca-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ca-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid #e8e8e5;
  background: #fff;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
}
.ca-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.ca-card--active {
  border-color: #6eb981;
}
.ca-card__img {
  width: 100%;
  aspect-ratio: 1.6;
  overflow: hidden;
  background: #111;
  position: relative;
}
.ca-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.ca-card:hover .ca-card__img img {
  transform: scale(1.04);
}
.ca-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
}
.ca-card__overlay-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 220px;
}
.ca-card__overlay-logo img {
  width: 100%;
  height: auto;
}
.ca-card__winner-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #f4b400;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.ca-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ca-card__title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2d3033;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  text-decoration: none;
}
.ca-card__desc {
  font-size: 0.9rem;
  color: #a0a5ab;
  line-height: 1.55;
  font-family: "Lora", Georgia, sans-serif;
  margin: 0 0 1.1rem;
  flex: 1;
}
.ca-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #6eb981;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-decoration: none;
  transition: gap 0.15s;
}
.ca-card__cta--enter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #6eb981;
  color: #fff !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 0.125rem;
  text-decoration: none !important;
  transition: background 0.15s;
}
.ca-card__cta--enter:hover {
  background: rgb(79.4418604651, 164.5581395349, 101.0046511628);
}
.ca-card:hover .ca-card__cta {
  gap: 0.6rem;
}

.ca-empty {
  text-align: center;
  color: #a0a5ab;
  padding: 3rem 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
}

.ca-plain-header {
  background: #fff;
  padding: 4rem 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .ca-archive-hero {
    padding-top: calc(233px + 2.5rem);
    padding-bottom: 3rem;
  }
  .ca-archive-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ca-archive-hero__card {
    min-height: 320px;
  }
  .ca-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .ca-grid {
    grid-template-columns: 1fr;
  }
  .ca-archive,
  .ca-divider {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.single-contest .breadcrumb-wrapper {
  display: none !important;
}

.cp-hero,
.cw-hero {
  margin-top: -201px;
  position: relative;
  z-index: 0;
}

.cp-hero,
.cw-hero {
  position: relative;
  min-height: 80vh;
  margin-top: -233px;
  padding-top: 233px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #060a0e;
}
.cp-hero__bg,
.cw-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.52;
  animation: ca-drift 18s ease-in-out infinite alternate;
}
.cp-hero__grad,
.cw-hero__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 7, 11, 0.96) 0%,
    rgba(4, 7, 11, 0.55) 40%,
    rgba(4, 7, 11, 0.15) 100%
  );
}
.cp-hero__inner,
.cw-hero__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
}
.cp-hero__inner > div > p:not([class]),
.cp-hero__inner > div > p[style],
.cw-hero__inner > div > p:not([class]),
.cw-hero__inner > div > p[style] {
  display: none !important;
}
.cp-hero__logo,
.cw-hero__logo {
  margin-bottom: 1.25rem;
}
.cp-hero__logo img,
.cw-hero__logo img {
  max-height: 80px;
  width: auto;
}
.cp-hero__title,
.cw-hero__title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.08 !important;
  margin: 0 0 1rem !important;
}
.cp-hero__deck,
.cw-hero__deck {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0 0 1.75rem;
  max-width: 540px;
  font-family: "Lora", Georgia, sans-serif;
}
.cp-hero__prize-pill,
.cw-hero__prize-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 1.75rem;
}
.cp-hero__prize-pill strong,
.cw-hero__prize-pill strong {
  color: #f4b400;
  font-size: 1rem;
}
.cp-hero__ctas,
.cw-hero__ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  align-items: center;
}

.cp-btn--enter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #6eb981;
  color: #000 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 0.125rem;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background 0.15s;
  letter-spacing: 0.02em;
}
.cp-btn--enter:hover {
  background: rgb(79.4418604651, 164.5581395349, 101.0046511628);
}
.cp-btn--enter svg path {
  stroke: #000 !important;
}

.cp-btn--rules {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
}
.cp-btn--rules:hover {
  color: rgba(255, 255, 255, 0.8);
}

.cp-submission-count {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.cp-countdown {
  text-align: center;
  min-width: 200px;
}
.cp-countdown__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.875rem;
}
.cp-countdown__dials {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.cp-countdown__deadline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-top: 0.75rem;
}
.cp-countdown__deadline strong {
  color: rgb(255, 255, 255);
}

.cp-dial {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.875rem 0.75rem;
  min-width: 64px;
  text-align: center;
}
.cp-dial__num {
  font-family: "Lora", Georgia, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.cp-dial__unit {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  display: block;
  margin-top: 0.2rem;
}

.cp-sponsors {
  background: #f7f7f5;
  border-bottom: 1px solid #eee;
  padding: 1.25rem 2rem;
}
.cp-sponsors__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cp-sponsors__inner img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.cp-sponsors__inner a:hover img,
.cp-sponsors__inner img:hover {
  opacity: 1;
}
.cp-sponsors__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  flex-shrink: 0;
}

.cp-section {
  padding: 3rem 1.5rem;
}
.cp-section--grey {
  background: #f5f5f3;
}
.cp-section--white {
  background: #fff;
}
.cp-section--dark {
  background: #1a1a1a;
}

.cp-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.cp-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6eb981;
  margin-bottom: 0.75rem;
  text-align: center;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.cp-section-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  color: #2d3033 !important;
  text-align: center !important;
  margin: 0 0 0.75rem !important;
}
.cp-section-title--white {
  color: #fff !important;
}

.cp-section-sub p {
  font-size: 1.0625rem;
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 560px;
  line-height: 1.65;
  font-family: "Lora", Georgia, sans-serif;
}

.cp-prizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cp-prize {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1.5px solid #c8c8c8;
  background: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
}
.cp-prize:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.cp-prize--grand {
  border-color: #f4b400;
}
.cp-prize__medal {
  padding: 0.6rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.cp-prize--grand .cp-prize__medal {
  background: #f4b400;
  color: #2d3033;
}
.cp-prize--second .cp-prize__medal {
  background: #8e8e8e;
  color: #fff;
}
.cp-prize--third .cp-prize__medal {
  background: #c97c45;
  color: #fff;
}
.cp-prize__body {
  padding: 1.5rem;
}
.cp-prize__cash {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3033;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.cp-prize--grand .cp-prize__cash {
  font-size: 3.25rem;
}
.cp-prize__arv {
  display: inline-block;
  margin: 0.35rem 0 1rem;
  font-size: 0.6875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #6eb981;
  color: #fff;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
}
.cp-prize__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cp-prize__items ul {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cp-prize__items li {
  font-size: 1rem;
  font-family: "Lora", Georgia, sans-serif;
  line-height: 1.45;
}
.cp-prize__items li::before {
  content: "✓";
  color: #6eb981;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  margin-right: 0.6rem;
}
.cp-prize__pub {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f8f8f6;
  border-radius: 7px;
  font-size: 0.875rem;
  color: #000;
  font-weight: 600;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.cp-extra-content--has-image {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.cp-extra-content--has-image .cp-eyebrow,
.cp-extra-content--has-image .cp-section-title,
.cp-extra-content--has-image .cp-section-sub p {
  text-align: left;
}
.cp-extra-content--has-image .cp-section-sub p {
  margin-left: 0;
}
.cp-extra-content__text {
  flex: 1;
}
.cp-extra-content__text .cp-section-title {
  text-align: left !important;
}
.cp-extra-content__image {
  flex: 1;
}
.cp-extra-content__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.cp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.cp-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.7% + 1rem);
  right: calc(16.7% + 1rem);
  height: 2px;
  background: #e8e8e5;
  z-index: 0;
}

.cp-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cp-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #6eb981;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(74, 158, 106, 0.3);
}
.cp-step__title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3033;
  margin: 0 0 0.5rem;
}
.cp-step__desc {
  font-size: 1rem;
  line-height: 1.65;
  font-family: "Lora", Georgia, sans-serif;
}

.cp-entry-section {
  background: #f5f5f3;
  padding: 4rem 1.5rem;
  scroll-margin-top: 80px;
}

.cp-entry-inner {
  max-width: 780px;
  margin: 0 auto;
}

.cp-closed-notice {
  text-align: center;
  color: #a0a5ab;
  font-family: "Lora", Georgia, sans-serif;
  font-size: 1rem;
}

.cp-inline-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.cp-inline-tile {
  position: relative;
  border: 2px solid #e8e8e5;
  border-radius: 10px;
  background: #fff;
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  user-select: none;
}
.cp-inline-tile:hover {
  border-color: #6eb981;
  box-shadow: 0 4px 16px rgba(74, 158, 106, 0.15);
}
.cp-inline-tile.is-sel {
  border-color: #6eb981;
  background: #f0faf5;
  box-shadow: 0 4px 16px rgba(74, 158, 106, 0.2);
}

.cp-inline-saving {
  position: absolute;
  top: -10px;
  right: 8px;
  background: #6eb981;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.18rem 0.45rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.cp-inline-cnt {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2d3033;
  line-height: 1;
  display: block;
}

.cp-inline-lbl {
  font-size: 0.75rem;
  color: #a0a5ab;
  display: block;
  margin: 0.1rem 0 0.6rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.cp-inline-price {
  font-size: 1rem;
  font-weight: 700;
  color: #2d3033;
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.cp-inline-per {
  font-size: 0.75rem;
  color: #a0a5ab;
  display: block;
  margin-top: 0.1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

#cp-inline-go {
  display: none;
  width: 100%;
  margin-top: 1.25rem;
  justify-content: center;
}
#cp-inline-go.vis {
  display: flex;
}

.cp-inline-submit-bar {
  background: #f0f9f4;
  border: 1px solid #b9e2ca;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.cp-inline-submit-bar p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: #2d6a4a;
}

.cp-buy-more-note {
  margin: 0.6rem 0 0;
  font-size: 0.8125rem;
  color: #a0a5ab;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.cp-inline-login-note {
  background: #f5f5f3;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #555;
  font-family: "Lora", Georgia, sans-serif;
  text-align: center;
}

.cp-social-proof {
  text-align: center;
  margin: 2rem auto;
}
.cp-social-proof__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 158, 106, 0.1);
  border: 1px solid rgba(74, 158, 106, 0.25);
  border-radius: 30px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  color: #444;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.cp-social-proof__pill strong {
  color: #6eb981;
}

.cp-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-top: 3rem;
}
.cp-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background: #222;
  cursor: default;
}
.cp-gallery__item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.cp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}
.cp-gallery__item:hover img {
  transform: scale(1.06);
}
.cp-gallery__item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.875rem 0.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
  font-size: 0.8125rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  opacity: 0;
  transition: opacity 0.25s;
}
.cp-gallery__item:hover .cp-gallery__item__caption {
  opacity: 1;
}

.cp-faq {
  max-width: 720px;
  margin: 2rem auto 0;
}
.cp-faq__row {
  border-bottom: 1px solid #ebebeb;
}
.cp-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3033;
}
.cp-faq__q svg {
  flex-shrink: 0;
  color: #bbb;
  transition: transform 0.2s;
}
.cp-faq__row.cp-open .cp-faq__q svg {
  transform: rotate(180deg);
}
.cp-faq__a {
  display: none;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  padding-bottom: 1.25rem;
  font-family: "Lora", Georgia, sans-serif;
}
.cp-faq__row.cp-open .cp-faq__a {
  display: block;
}

.cp-rules-box {
  margin-top: 3rem;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8e8e5;
  max-height: 500px;
  overflow-y: scroll;
}
.cp-rules-box h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #2d3033;
}
.cp-rules-box div {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  font-family: "Lora", Georgia, sans-serif;
}

.cp-footer-cta {
  background: #111;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cp-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cp-footer-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.cp-footer-cta__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.cp-footer-cta__h {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: clamp(1.75rem, 3vw, 2.375rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 0.875rem !important;
}
.cp-footer-cta__p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 2rem;
  line-height: 1.65;
  font-family: "Lora", Georgia, sans-serif;
}

@media (max-width: 960px) {
  .ca-hero__inner,
  .cp-hero__inner,
  .cw-hero__inner {
    padding: 3rem 1rem 4rem !important;
  }
  .cp-hero__inner {
    grid-template-columns: 1fr;
  }
  .cp-countdown {
    margin-top: 2rem;
  }
  .cp-prizes {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 2rem auto 0;
  }
  .cp-steps {
    grid-template-columns: 1fr;
  }
  .cp-steps::before {
    display: none;
  }
  .cp-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .cp-gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .cp-extra-content .cp-section-title {
    text-align: center !important;
  }
  .cp-extra-content--has-image {
    flex-direction: column;
  }
  .cp-extra-content--has-image .cp-extra-content__image {
    order: 2;
  }
  .cp-extra-content--has-image .cp-extra-content__text {
    order: 1;
  }
  .cp-extra-content--has-image .cp-eyebrow,
  .cp-extra-content--has-image .cp-section-title,
  .cp-extra-content--has-image .cp-section-sub p {
    text-align: center;
  }
  .cp-extra-content--has-image .cp-section-sub p {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .cp-section {
    padding: 3rem 1rem;
  }
  .cp-inline-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cw-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #060a0e;
}
.cw-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.cw-hero__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 7, 11, 0.95) 0%,
    rgba(4, 7, 11, 0.45) 50%,
    rgba(4, 7, 11, 0.15) 100%
  );
}
.cw-hero__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem 3.5rem;
}
.cw-hero__eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4b400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 1rem;
}
.cw-hero__logo img {
  max-height: 70px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}
.cw-hero__title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: clamp(2.125rem, 4vw, 3.125rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 0.5rem !important;
  line-height: 1.1 !important;
}
.cw-hero__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: "Lora", Georgia, sans-serif;
}
.cw-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.15s;
}
.cw-hero__back svg {
  flex-shrink: 0;
}
.cw-hero__back:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.cw-winners {
  background: #0e0e0e;
}

.cw-winner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.cw-winner:last-child {
  border-bottom: none;
}
.cw-winner .cw-winner__img-wrap:hover img {
  transform: scale(1.03);
}
.cw-winner--grand {
  background: #060a0e;
}
.cw-winner--grand .cw-winner__img-wrap {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cw-winner--grand .cw-winner__img-wrap img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  transition: transform 0.6s;
}
.cw-winner--grand .cw-winner__img-wrap.is-portrait img {
  width: auto;
  max-width: 100%;
  max-height: 90vh;
}
.cw-winner--grand .cw-winner__caption {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding: 2.5rem 2rem 4rem;
  background: #060a0e;
  text-align: center;
}
.cw-winner--grand .cw-winner__medal {
  background: #f4b400;
  color: #2d3033;
}
.cw-winner--grand .cw-winner__prize-cash {
  color: #f4b400;
}
.cw-winner--second,
.cw-winner--third {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.cw-winner--second .cw-winner__img-wrap,
.cw-winner--third .cw-winner__img-wrap {
  overflow: hidden;
  background: #060a0e;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.cw-winner--second .cw-winner__img-wrap img,
.cw-winner--third .cw-winner__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.cw-winner--second .cw-winner__img-wrap.is-portrait img,
.cw-winner--third .cw-winner__img-wrap.is-portrait img {
  object-fit: contain;
}
.cw-winner--second .cw-winner__medal {
  background: rgba(185, 185, 185, 0.15);
  color: #c0c0c0;
  border: 1px solid rgba(185, 185, 185, 0.3);
}
.cw-winner--third .cw-winner__medal {
  background: rgba(205, 127, 50, 0.15);
  color: #c97c45;
  border: 1px solid rgba(205, 127, 50, 0.3);
}
.cw-winner--second .cw-winner__prize-cash,
.cw-winner--third .cw-winner__prize-cash {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f4b400;
  margin-bottom: 0.75rem;
}
.cw-winner__caption {
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3rem;
}
.cw-winner__medal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.cw-winner__prize-cash {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cw-winner__photo-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin: 0 0 0.5rem !important;
}
.cw-winner__photographer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 1.5rem;
}
.cw-winner__photographer strong {
  color: rgba(255, 255, 255, 0.8) !important;
}
.cw-winner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.75;
  font-family: "Lora", Georgia, sans-serif;
  margin: 0;
}
.cw-winner__gear {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}
.cw-winner__gear strong {
  color: rgba(255, 255, 255, 0.6) !important;
}

.cw-notable {
  background: #111;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.cw-notable__head {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.cw-notable__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4b400;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 0.5rem;
}
.cw-notable__title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 !important;
}
.cw-notable__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cw-notable__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.cw-notable__btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.cw-notable__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.cw-notable__track-wrap {
  overflow: hidden;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cw-notable__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.cw-notable__card {
  flex-shrink: 0;
  width: calc((min(100vw, 1200px) - 4rem - 2.5rem) / 3);
  min-width: 200px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: default;
}
.cw-notable__card:hover .cw-notable__card-img img {
  transform: scale(1.06);
}
.cw-notable__card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.cw-notable__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}
.cw-notable__card-info {
  padding: 0.75rem 0.875rem 0.875rem;
}
.cw-notable__card-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 0.25rem;
}
.cw-notable__card-photographer {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin: 0;
}
.cw-notable__card-gear {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}
.cw-notable__card-gear strong {
  color: rgba(255, 255, 255, 0.6) !important;
}

.cw-footer {
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3rem 2rem;
  text-align: center;
}
.cw-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45) !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-decoration: none;
  transition: color 0.15s;
}
.cw-footer__link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.cp-child-back {
  text-align: center;
  padding: 2rem 0;
}

@media (max-width: 860px) {
  .cw-winner--second,
  .cw-winner--third {
    grid-template-columns: 1fr;
  }
  .cw-winner--grand .cw-winner__caption {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cw-winner__caption {
    padding: 2rem 1.25rem;
  }
}
@media (max-width: 768px) {
  .cw-notable__track-wrap {
    max-width: none;
  }
  .cw-notable__card {
    width: calc((100vw - 4rem - 1.25rem) / 2);
    min-width: 160px;
  }
  .cw-notable__head {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .cw-notable__track-wrap {
    padding: 0 1rem;
  }
  .cw-notable__card {
    width: calc(100vw - 2rem);
    min-width: 0;
  }
}
.cps-wrap {
  max-width: 680px;
  margin: 2rem auto;
  padding: 0 1.25rem;
}

.cps-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--op-gray, #666);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.cps-back:hover {
  color: var(--op-dark-gray, #333);
}

.cps-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.cps-header__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--op-gray, #888);
  margin-bottom: 0.25rem;
}

.cps-header__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.cps-header__deadline {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--op-gray, #777);
}

.cps-entries-badge {
  flex-shrink: 0;
  text-align: center;
  background: var(--op-green-50, #f0faf4);
  border-radius: 8px;
  padding: 0.75rem 1.1rem;
  line-height: 1.2;
}

.cps-entries-badge__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--op-green-400, #3a8f5e);
  line-height: 1;
}

.cps-entries-badge__of,
.cps-entries-badge__label {
  display: block;
  font-size: 0.72rem;
  color: var(--op-gray, #777);
}

.cps-form-wrap {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.25rem;
}

.cps-message {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  background: #f8f8f8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 1rem;
}
.cps-message a {
  color: var(--op-green-400, #3a8f5e);
  font-weight: 600;
}

.cps-message--warn {
  background: #fff8e6;
  border: 1px solid #f0c040;
}
.cps-message--warn svg {
  color: #c98a00;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 520px) {
  .cps-header {
    flex-direction: column;
  }
  .cps-entries-badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
  }
  .cps-entries-badge__num {
    font-size: 1.2rem;
  }
  .cps-entries-badge__of,
  .cps-entries-badge__label {
    display: inline;
    font-size: 0.8rem;
  }
}
.opc-wrap {
  max-width: 580px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.opc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f0f7f3;
  margin: 0 auto 2rem;
}

.opc-heading {
  font-family: "Lora", Georgia, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #000;
  text-align: center;
  margin: 0 0 0.625rem;
  line-height: 1.2;
}

.opc-subhead {
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.opc-steps {
  background: #fff;
  border: 1px solid #e8e8e6;
  border-radius: 12px;
  padding: 1.375rem 1.5rem;
  margin-bottom: 1.25rem;
}
.opc-steps__label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #555;
  margin-bottom: 1rem;
}
.opc-steps a {
  text-decoration: underline;
  font-weight: 700;
  color: #4fab68;
}
.opc-steps a:hover {
  color: #6eb981;
}

.opc-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f5f3;
}
.opc-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.opc-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2d3033;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.opc-step__body {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}
.opc-step__body strong {
  display: block;
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.opc-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.opc-ctas svg path {
  stroke: #000;
}

.opc-cta-primary {
  background: #2d3033;
  color: #fff;
  padding: 0.875rem 1.625rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition:
    background 300ms cubic-bezier(0.45, 0, 0.4, 1),
    transform 300ms cubic-bezier(0.45, 0, 0.4, 1);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
}
.opc-cta-primary:hover {
  background: #43484d;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.opc-cta-outline {
  background: transparent;
  color: #555;
  padding: 0.875rem 1.625rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1.5px solid #e8e8e6;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition:
    border-color 300ms cubic-bezier(0.45, 0, 0.4, 1),
    color 300ms cubic-bezier(0.45, 0, 0.4, 1),
    transform 300ms cubic-bezier(0.45, 0, 0.4, 1);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.opc-cta-outline:hover {
  border-color: #a0a5ab;
  color: #000;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .opc-wrap {
    padding: 2rem 1rem;
  }
  .opc-ctas {
    flex-direction: column;
  }
  .opc-cta-primary,
  .opc-cta-outline {
    justify-content: center;
  }
}
#odp-entry-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99998;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#odp-entry-overlay.is-open {
  display: flex;
}

#odp-entry-modal {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.odp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--op-gray);
  line-height: 1;
  z-index: 10;
}
.odp-modal-close:hover {
  color: var(--op-dark-gray);
}
.odp-modal-close svg {
  display: block;
  width: 20px;
  height: 20px;
}

.odp-step {
  display: none;
  padding: 1.5rem 2rem 2rem;
}
.odp-step.is-active {
  display: block;
}

#odp-step-2 {
  padding: 1rem;
}

.odp-step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--op-dark-gray);
  margin: 0 0 0.35rem;
  padding-right: 2rem;
}

.odp-step-subtitle {
  font-size: 0.9rem;
  color: var(--op-light-gray);
  margin: 0 0 1.5rem;
}

.odp-entry-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.odp-entry-option {
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 1rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
  position: relative;
  background: #fff;
}
.odp-entry-option:hover {
  border-color: var(--op-green-300);
}
.odp-entry-option.is-selected {
  border-color: var(--op-green-400);
  background: var(--op-green-50);
}
.odp-entry-option.is-selected .entry-count,
.odp-entry-option.is-selected .entry-label {
  color: var(--op-dark-gray);
}
.odp-entry-option.has-saving .entry-saving {
  display: block;
}
.odp-entry-option .entry-count {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--op-dark-gray);
  line-height: 1;
}
.odp-entry-option .entry-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--op-light-gray);
  margin: 0.2rem 0 0.5rem;
}
.odp-entry-option .entry-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--op-green-400);
}
.odp-entry-option .entry-per {
  display: block;
  font-size: 0.7rem;
  color: var(--op-light-gray);
}
.odp-entry-option .entry-saving {
  display: none;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--op-green-400);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.odp-deadline-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--op-gray);
  background: #f8f8f8;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}
.odp-deadline-notice svg {
  flex-shrink: 0;
  color: var(--op-green-400);
}

.odp-later-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--op-gray);
  background: var(--op-green-50);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--op-green-300);
}
.odp-later-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--op-green-400);
}

.odp-order-summary {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.odp-order-summary-label {
  font-size: 0.85rem;
  color: var(--op-gray);
}
.odp-order-summary-label strong {
  display: block;
  font-size: 1rem;
  color: var(--op-dark-gray);
}

.odp-order-summary-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--op-dark-gray);
}

.odp-checkout-recap {
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--op-gray);
}
.odp-checkout-recap__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.odp-checkout-recap__left svg {
  flex-shrink: 0;
  color: var(--op-green-400);
}
.odp-checkout-recap__sep {
  color: #ccc;
}
.odp-checkout-recap__price {
  font-weight: 700;
  color: var(--op-dark-gray);
}

.odp-checkout-pay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem 0;
}
.odp-checkout-pay-header .odp-step-title {
  margin: 0;
  padding-right: 0;
}

.odp-payment-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.odp-payment-icons__ssl {
  font-size: 0.72rem;
  color: #aaa;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

#odp-step-2 #odp-checkout-container {
  padding: 1rem 2rem 0;
}

.odp-checkout-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.875rem 2rem 0;
  font-size: 0.75rem;
  color: var(--op-gray);
  border-top: 1px solid #eee;
  margin-top: 1rem;
}
.odp-checkout-guarantee svg {
  flex-shrink: 0;
  color: var(--op-green-400);
}

#odp-checkout-container .woocommerce {
  padding: 0;
}
#odp-checkout-container .woocommerce-checkout h3,
#odp-checkout-container .woocommerce-checkout h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--op-dark-gray);
  margin-bottom: 1rem;
}
#odp-checkout-container .woocommerce-checkout .form-row {
  margin-bottom: 0.75rem;
}
#odp-checkout-container .woocommerce-checkout input,
#odp-checkout-container .woocommerce-checkout select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  width: 100%;
}
#odp-checkout-container .woocommerce-checkout input:focus,
#odp-checkout-container .woocommerce-checkout select:focus {
  border-color: var(--op-green-400);
  outline: none;
  box-shadow: 0 0 0 2px var(--op-green-50);
}
#odp-checkout-container .woocommerce-checkout .checkout-cart-edit-section,
#odp-checkout-container .woocommerce-checkout #order_review_heading,
#odp-checkout-container .woocommerce-checkout .g-row {
  display: block !important;
}
#odp-checkout-container .woocommerce-checkout .g-row {
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
}
#odp-checkout-container .dsm-card {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

.odp-checkout-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  gap: 1rem;
  color: var(--op-gray);
  font-size: 0.9rem;
}

.odp-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--op-green-100);
  border-top-color: var(--op-green-400);
  border-radius: 50%;
  animation: odp-spin 0.7s linear infinite;
}

@keyframes odp-spin {
  to {
    transform: rotate(360deg);
  }
}
.odp-success-header {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
}

.odp-success-icon {
  width: 64px;
  height: 64px;
  background: var(--op-green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.odp-success-icon svg {
  color: var(--op-green-400);
}

.odp-success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--op-dark-gray);
  margin: 0 0 0.35rem;
}

.odp-success-subtitle {
  font-size: 0.9rem;
  color: var(--op-gray);
  margin: 0;
}

.odp-success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem 2rem 2rem;
}

.odp-action-card {
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.25rem;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
  text-align: center;
  background: #fff;
  text-decoration: none;
  display: block;
}
.odp-action-card:hover {
  border-color: var(--op-green-300);
  background: var(--op-green-50);
  text-decoration: none;
}
.odp-action-card.is-primary {
  border-color: var(--op-green-400);
  background: var(--op-green-400);
  color: #fff;
}
.odp-action-card.is-primary:hover {
  background: var(--op-green-300);
  border-color: var(--op-green-300);
  color: #fff !important;
}
.odp-action-card.is-secondary .odp-action-card-title {
  color: var(--op-dark-gray);
}
.odp-action-card.is-secondary .odp-action-card-desc {
  color: var(--op-gray);
  opacity: 1;
}

.odp-action-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.odp-action-card-title {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
  color: inherit;
}

.odp-action-card-desc {
  font-size: 0.85rem;
  line-height: 1.4;
  color: inherit;
  opacity: 0.8;
}

.odp-submission-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem 0;
  margin-bottom: 1rem;
}

.odp-submission-back {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--op-gray);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  text-decoration: none;
}
.odp-submission-back:hover {
  color: var(--op-dark-gray);
}

#odp-gform-container {
  padding: 0 2rem 2rem;
}

.odp-submission-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--op-green-50);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--op-gray);
}
.odp-submission-counter strong {
  color: var(--op-green-400);
}

.odp-inline-submit-wrap {
  margin: 1rem 0;
}

.odp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  text-decoration: none;
  line-height: 1;
}

.odp-btn-primary {
  background: var(--op-green-400);
  border-color: var(--op-green-400);
  color: #fff;
}
.odp-btn-primary:hover {
  background: var(--op-green-300);
  border-color: var(--op-green-300);
  color: #fff;
}
.odp-btn-primary:disabled {
  background: var(--op-green-100);
  border-color: var(--op-green-100);
  cursor: not-allowed;
}

.odp-btn-outline {
  background: transparent;
  border-color: #ddd;
  color: var(--op-gray);
}
.odp-btn-outline:hover {
  border-color: var(--op-gray);
  color: var(--op-dark-gray);
}

.odp-btn-full {
  width: 100%;
}

.odp-error-msg {
  background: #fff2f2;
  border: 1px solid #ffcccc;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #c0392b;
  margin-bottom: 1rem;
  display: none;
}
.odp-error-msg.is-visible {
  display: block;
}

@media (max-width: 600px) {
  #odp-entry-modal {
    max-height: 95vh;
  }
  .odp-step {
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .odp-entry-options {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }
  .odp-success-actions {
    grid-template-columns: 1fr;
    padding: 1.25rem 1.25rem 1.5rem;
  }
  #odp-gform-container {
    padding: 0 1.25rem 1.5rem;
  }
  .odp-submission-header {
    padding: 1.25rem 1.25rem 0;
  }
  .odp-checkout-recap {
    padding: 0.75rem 1.25rem;
  }
  .odp-checkout-pay-header {
    padding: 1.25rem 1.25rem 0;
  }
  #odp-step-2 #odp-checkout-container {
    padding: 1rem 1.25rem 0;
  }
  .odp-checkout-guarantee {
    padding: 0.875rem 1.25rem 0;
  }
}
.odp-sub-checkout-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
}

.odp-social-proof-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #43484d;
}
.odp-social-proof-strip__avatars {
  display: flex;
  margin-right: 0.25rem;
}
.odp-social-proof-strip__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.odp-social-proof-strip__stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 0.875rem;
}

.odp-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #6eb981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin-right: -6px;
  border: 2px solid #fff;
  flex-shrink: 0;
}
.odp-avatar:last-child {
  margin-right: 6px;
}

.odp-urgency-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: rgb(82.7627906977, 171.4372093023, 105.2269767442);
  background: rgba(110, 185, 129, 0.09);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1px solid #6eb981;
  margin-bottom: 0.875rem;
}
.odp-urgency-timer__time {
  font-weight: 700;
  min-width: 3ch;
}

.odp-sub-plan-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid rgba(67, 72, 77, 0.2);
  border-radius: 0.125rem;
  padding: 0.875rem 1rem;
  margin-bottom: 0.625rem;
}
.odp-sub-plan-bar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.odp-sub-plan-bar__icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(67, 72, 77, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.odp-sub-plan-bar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.odp-sub-plan-bar__icon svg {
  opacity: 0.35;
  color: #43484d;
}
.odp-sub-plan-bar__details {
  min-width: 0;
  overflow: hidden;
}
.odp-sub-plan-bar__right {
  text-align: right;
  flex-shrink: 0;
}
.odp-sub-plan-bar__name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #2d3033;
  overflow: hidden;
  text-overflow: ellipsis;
}
.odp-sub-plan-bar__billing {
  display: block;
  font-size: 0.75rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: rgba(0, 0, 0, 0.3);
  margin-top: 0.125rem;
}
.odp-sub-plan-bar__price {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #2d3033;
  white-space: nowrap;
}
.odp-sub-plan-bar__change {
  display: block;
  font-size: 0.875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #6eb981;
  text-decoration: none;
  margin-top: 0.2rem;
  white-space: nowrap;
}
.odp-sub-plan-bar__change:hover {
  text-decoration: underline;
}

.odp-plan-switcher {
  background: #f9f8f6;
  border: 1px solid rgba(67, 72, 77, 0.15);
  border-radius: 0.125rem;
  padding: 1rem 1.125rem 1.25rem;
  margin-bottom: 0.75rem;
}
.odp-plan-switcher p.odp-sub-card__title {
  font-size: 1rem;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(67, 72, 77, 0.12);
}

.odp-plan-group + .odp-plan-group {
  margin-top: 1.125rem;
  padding-top: 1.125rem;
  border-top: 1px solid rgba(67, 72, 77, 0.14);
}
.odp-plan-group__name {
  font-size: 0.75rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #43484d;
  margin-bottom: 0.625rem;
}
.odp-plan-group__options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.odp-plan-option {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.75rem 0.875rem;
  border: 1.5px solid rgba(67, 72, 77, 0.18);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
  position: relative;
}
.odp-plan-option:hover:not(.is-current) {
  border-color: rgba(110, 185, 129, 0.55);
  background: rgba(110, 185, 129, 0.03);
}
.odp-plan-option.is-current {
  border: 2px solid #6eb981;
  background: rgba(110, 185, 129, 0.06);
}
.odp-plan-option__duration {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #2d3033;
}
.odp-plan-option__price {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #2d3033;
  margin-top: 0.2rem;
}
.odp-plan-option__period {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #43484d;
}
.odp-plan-option__badge {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #6eb981;
  color: #fff;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
}
.odp-plan-option__current {
  position: absolute;
  top: 0.5rem;
  right: 0.625rem;
  font-size: 0.6875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6eb981;
}

.odp-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 0;
}
.odp-progress__step {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.35;
  transition: opacity 0.2s;
}
.odp-progress__step.is-active,
.odp-progress__step.is-done {
  opacity: 1;
}
.odp-progress__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8e8e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
}
.is-active .odp-progress__dot {
  background: #2d3033;
  color: #fff;
}
.is-done .odp-progress__dot {
  background: #6eb981;
  color: #fff;
}
.odp-progress__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #888;
  white-space: nowrap;
}
.is-active .odp-progress__label,
.is-done .odp-progress__label {
  color: #2d3033;
}
.odp-progress__line {
  flex: 1;
  height: 1px;
  background: #e0e0de;
  min-width: 20px;
  max-width: 40px;
  margin: 0 0.25rem;
}

.odp-sub-trust-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
  padding: 0.625rem 0;
  margin-bottom: 0.875rem;
  border-top: 1px solid rgba(67, 72, 77, 0.1);
  border-bottom: 1px solid rgba(67, 72, 77, 0.1);
}

.odp-sub-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #43484d;
}

.odp-checkout-cols {
  display: grid;
  grid-template-columns: 1fr 360px;
  column-gap: 1.75rem;
  align-items: start;
}
@media (max-width: 859px) {
  .odp-checkout-cols {
    display: block;
  }
  .odp-checkout-cols .odp-checkout-col-right {
    position: static !important;
  }
}

.odp-sub-card {
  background: #fff;
  border: 1px solid rgba(67, 72, 77, 0.15);
  border-radius: 0.125rem;
  padding: 1.25rem;
  margin-bottom: 1.125rem;
}
.odp-sub-card__title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #2d3033;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(67, 72, 77, 0.1);
  line-height: 1.3;
}

.odp-sub-checkout-wrap .form-row {
  margin-bottom: 0.875rem;
}
.odp-sub-checkout-wrap .form-row label {
  font-size: 0.9375rem !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-weight: 600 !important;
  color: #2d3033 !important;
  display: block;
  margin-bottom: 0.35rem;
}
.odp-sub-checkout-wrap .form-row input.input-text,
.odp-sub-checkout-wrap .form-row textarea {
  font-size: 1rem !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  padding: 0.65rem 0.875rem !important;
  border: 1px solid rgba(67, 72, 77, 0.25) !important;
  border-radius: 6px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  color: #2d3033 !important;
  background: #fff !important;
  transition: border-color 0.15s;
}
.odp-sub-checkout-wrap .form-row input.input-text:focus,
.odp-sub-checkout-wrap .form-row textarea:focus {
  outline: none !important;
  border-color: #6eb981 !important;
  box-shadow: 0 0 0 3px rgba(110, 185, 129, 0.12) !important;
}
.odp-sub-checkout-wrap .form-row select {
  font-size: 1rem !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  padding: 0.65rem 0.875rem !important;
  border: 1px solid rgba(67, 72, 77, 0.25) !important;
  border-radius: 6px !important;
  color: #2d3033 !important;
}
.odp-sub-checkout-wrap .form-row.odp-field-valid input.input-text {
  border-color: #6eb981 !important;
}
.odp-sub-checkout-wrap .form-row.odp-field-error input.input-text {
  border-color: #c0392b !important;
  background: #fff6f5 !important;
}
.odp-sub-checkout-wrap #payment {
  background: transparent;
  border: none;
  padding: 0;
}
.odp-sub-checkout-wrap #payment .wc_payment_methods {
  list-style: none;
  padding: 0 !important;
  margin: 0 0 1rem;
}
.odp-sub-checkout-wrap #payment .wc_payment_methods li {
  font-size: 0.9375rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.odp-sub-checkout-wrap #payment #place_order {
  width: 100%;
  font-size: 1.0625rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  background: #2d3033;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.odp-sub-checkout-wrap #payment #place_order:hover {
  background: rgb(68.90625, 73.5, 78.09375);
}

.odp-sub-payment-icons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}

.odp-pre-submit-guarantee {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #43484d;
  padding-top: 0.875rem;
  margin-top: 0.875rem;
  border-top: 1px solid rgba(67, 72, 77, 0.1);
}
.odp-pre-submit-guarantee svg {
  flex-shrink: 0;
  color: #6eb981;
  margin-top: 1px;
}

.odp-sub-checkout-wrap .woocommerce-privacy-policy-text {
  font-size: 0.8125rem;
  color: #43484d;
  line-height: 1.55;
  margin-bottom: 0.875rem;
}
.odp-sub-checkout-wrap .woocommerce-privacy-policy-text a {
  color: #6eb981;
}
.odp-sub-checkout-wrap .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 1rem;
}
.odp-sub-checkout-wrap
  .woocommerce-terms-and-conditions-wrapper
  .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}
.odp-sub-checkout-wrap
  .woocommerce-terms-and-conditions-wrapper
  .woocommerce-form__input-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
}
.odp-sub-checkout-wrap .woocommerce-terms-and-conditions-wrapper a {
  color: #6eb981;
}

.odp-express-pay-wrapper {
  margin-bottom: 0.75rem;
}

.odp-express-pay-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem 0 1rem;
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.8125rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.odp-express-pay-divider::before,
.odp-express-pay-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.odp-sub-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.odp-sub-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #2d3033;
  line-height: 1.4;
}
.odp-sub-benefits li svg {
  flex-shrink: 0;
  color: #6eb981;
  margin-top: 2px;
}

.odp-sub-coupon-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #43484d;
  text-decoration: none;
}
.odp-sub-coupon-toggle svg {
  flex-shrink: 0;
}
.odp-sub-coupon-toggle:hover {
  color: #6eb981;
}

.odp-sub-coupon-row {
  display: none;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.odp-sub-coupon-row.is-open {
  display: flex;
}
.odp-sub-coupon-row input[type="text"] {
  flex: 1;
  font-size: 0.9375rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding: 0.575rem 0.75rem;
  border: 1px solid rgba(67, 72, 77, 0.25);
  border-radius: 6px;
  color: #2d3033;
}
.odp-sub-coupon-row input[type="text"]:focus {
  outline: none;
  border-color: #6eb981;
}
.odp-sub-coupon-row button {
  font-size: 0.9375rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
  padding: 0.575rem 1rem;
  background: #2d3033;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.odp-sub-renews-note {
  font-size: 0.8125rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: rgba(67, 72, 77, 0.65);
  text-align: center;
  margin: 1rem 0 0;
  line-height: 1.65;
}
.odp-sub-renews-note a {
  color: #6eb981;
  text-decoration: none;
}
.odp-sub-renews-note a:hover {
  text-decoration: underline;
}

.odp-exit-intent {
  position: fixed;
  inset: 0;
  z-index: 99999;
}
.odp-exit-intent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.odp-exit-intent__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  z-index: 1;
}
.odp-exit-intent__close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #43484d;
  padding: 0.25rem;
  border-radius: 4px;
  line-height: 1;
}
.odp-exit-intent__close:hover {
  background: rgba(67, 72, 77, 0.1);
}
.odp-exit-intent__icon {
  margin-bottom: 0.75rem;
  color: #6eb981;
}
.odp-exit-intent__title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3033;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.odp-exit-intent__body {
  font-size: 0.9375rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #43484d;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.odp-exit-intent__guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #6eb981;
  margin-bottom: 1.25rem;
}
.odp-exit-intent__cta {
  display: block;
  width: 100%;
  padding: 0.875rem;
  background: #2d3033;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 0.75rem;
  transition: background 0.15s;
}
.odp-exit-intent__cta:hover {
  background: rgb(68.90625, 73.5, 78.09375);
}
.odp-exit-intent__dismiss {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: rgba(67, 72, 77, 0.55);
  cursor: pointer;
  text-decoration: underline;
}
.odp-exit-intent__dismiss:hover {
  color: #43484d;
}

body.odp-checkout-minimal-header {
  background: #f2f2f0 !important;
  margin: 0;
}
body.odp-checkout-minimal-header .breadcrumb-wrapper,
body.odp-checkout-minimal-header #masthead,
body.odp-checkout-minimal-header .site-header {
  display: none !important;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message {
  display: none !important;
}
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout #woocommerce-additional-fields__field-wrapper,
body.woocommerce-checkout .odp-checkout-fields,
body.woocommerce-checkout [id^="woocommerce-additional"] {
  display: none !important;
}

.odp-sub-checkout-wrap .woocommerce-billing-fields > h3,
.odp-sub-checkout-wrap .woocommerce-billing-fields__field-wrapper > h3,
.odp-sub-checkout-wrap h3.woocommerce-column__title {
  display: none !important;
}
.odp-sub-checkout-wrap .woocommerce-checkout-review-order-table {
  display: none !important;
}
.odp-sub-checkout-wrap
  .odp-order-summary-card
  .woocommerce-checkout-review-order-table {
  display: table !important;
}
.odp-sub-checkout-wrap .checkout_coupon,
.odp-sub-checkout-wrap .woocommerce-form-coupon-toggle {
  display: none !important;
}

.odp-order-summary-card .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
}
.odp-order-summary-card .woocommerce-checkout-review-order-table thead {
  display: none;
}
.odp-order-summary-card .woocommerce-checkout-review-order-table th,
.odp-order-summary-card .woocommerce-checkout-review-order-table td {
  padding: 0.625rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  vertical-align: top;
  text-align: left;
}
.odp-order-summary-card .woocommerce-checkout-review-order-table td {
  text-align: right;
}
.odp-order-summary-card .woocommerce-checkout-review-order-table .cart_item td,
.odp-order-summary-card .woocommerce-checkout-review-order-table .cart_item th {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.odp-order-summary-card
  .woocommerce-checkout-review-order-table
  .cart_item
  .product-name {
  color: #2d3033;
  font-size: 0.9375rem;
  text-align: left;
}
.odp-order-summary-card
  .woocommerce-checkout-review-order-table
  .cart_item
  .product-total {
  color: #2d3033;
  font-size: 0.9375rem;
  white-space: nowrap;
}
.odp-order-summary-card .woocommerce-checkout-review-order-table tfoot tr th {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #43484d;
}
.odp-order-summary-card .woocommerce-checkout-review-order-table tfoot tr td {
  font-size: 0.875rem;
  color: #2d3033;
}
.odp-order-summary-card
  .woocommerce-checkout-review-order-table
  .order-total
  th,
.odp-order-summary-card
  .woocommerce-checkout-review-order-table
  .order-total
  td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.odp-order-summary-card
  .woocommerce-checkout-review-order-table
  .order-total
  td {
  font-weight: 700;
  font-size: 1rem;
}
.odp-order-summary-card
  .woocommerce-checkout-review-order-table
  .recurring-totals
  th {
  padding-top: 1rem;
  color: #43484d;
}
.odp-order-summary-card
  .woocommerce-checkout-review-order-table
  .woocommerce-Price-amount {
  white-space: nowrap;
}
.odp-order-summary-card #place_order {
  display: none !important;
}
.odp-order-summary-card .woocommerce-terms-and-conditions-wrapper {
  display: none !important;
}

.woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
}

.odp-checkout-header {
  background: #1a1a1a;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.odp-checkout-header__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.odp-checkout-header__logo {
  display: block;
  line-height: 0;
}
.odp-checkout-header__logo img {
  display: block;
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.odp-checkout-header__secure {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.odp-checkout-header__secure svg {
  color: #6fbf8c;
}

.odp-sub-checkout-inner {
  max-width: 520px;
  margin: 0 auto;
}

.odp-sub-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}
.odp-sub-brand__name {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3033;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}
.odp-sub-brand__tagline {
  font-size: 0.7rem;
  color: #999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  display: block;
}

.odp-sub-plan-bar__change svg {
  transition: transform 0.18s;
}

.odp-sub-checkout-wrap .select2-container {
  width: 100% !important;
  display: block;
  font-size: 14px !important;
}
.odp-sub-checkout-wrap .select2-container .select2-selection--single {
  height: 40px !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 36px 0 12px !important;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  box-sizing: border-box !important;
  font-size: 14px !important;
}
.odp-sub-checkout-wrap .select2-container--open .select2-selection--single,
.odp-sub-checkout-wrap .select2-container--focus .select2-selection--single {
  border-color: #4a9e6a !important;
  box-shadow: 0 0 0 3px rgba(74, 158, 106, 0.1) !important;
  outline: none !important;
}
.odp-sub-checkout-wrap
  .select2-container--open
  .select2-selection__arrow::after {
  transform: rotate(180deg);
}
.odp-sub-checkout-wrap .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
  padding: 0 !important;
  font-size: 14px !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #2d3033 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  max-width: 100% !important;
}
.odp-sub-checkout-wrap .select2-selection__placeholder {
  color: #999 !important;
  font-size: 14px !important;
  font-style: normal !important;
}
.odp-sub-checkout-wrap .select2-selection__arrow {
  position: absolute !important;
  top: 0 !important;
  right: 4px !important;
  height: 40px !important;
  width: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.odp-sub-checkout-wrap .select2-selection__arrow b {
  display: none !important;
}
.odp-sub-checkout-wrap .select2-selection__arrow::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  transition: transform 0.15s ease;
}

.select2-dropdown {
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  overflow: hidden;
  font-size: 14px !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}

.select2-search--dropdown {
  padding: 6px 8px !important;
}
.select2-search--dropdown .select2-search__field {
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  padding: 6px 10px !important;
  font-size: 13px !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field:focus {
  border-color: #4a9e6a !important;
  box-shadow: 0 0 0 2px rgba(74, 158, 106, 0.1) !important;
}

.select2-results__option {
  font-size: 13px !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  padding: 7px 12px !important;
  color: #333 !important;
  line-height: 1.4 !important;
}
.select2-results__option--highlighted[aria-selected] {
  background: #f0f7f3 !important;
  color: #1a1a1a !important;
}
.select2-results__option[aria-selected="true"] {
  background: #e6f2eb !important;
  color: #3d7a52 !important;
  font-weight: 600 !important;
}

.odp-sub-checkout-wrap .form-row-first,
.odp-sub-checkout-wrap .form-row-last {
  width: calc(50% - 0.3rem) !important;
  float: left !important;
  clear: none !important;
  margin-bottom: 0.6rem !important;
}
.odp-sub-checkout-wrap .form-row-first {
  margin-right: 0.6rem !important;
}
.odp-sub-checkout-wrap .form-row-first + .form-row-last + .form-row,
.odp-sub-checkout-wrap .form-row-wide {
  clear: both !important;
}
.odp-sub-checkout-wrap .woocommerce-billing-fields__field-wrapper::after,
.odp-sub-checkout-wrap .woocommerce-shipping-fields__field-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.odp-sub-checkout-wrap #billing_company_field,
.odp-sub-checkout-wrap #billing_phone_field,
.odp-sub-checkout-wrap #order_comments_field,
.odp-sub-checkout-wrap #ship-to-different-address {
  display: none !important;
}
.odp-sub-checkout-wrap:not(.needs-address) #billing_address_1_field,
.odp-sub-checkout-wrap:not(.needs-address) #billing_address_2_field,
.odp-sub-checkout-wrap:not(.needs-address) #billing_city_field,
.odp-sub-checkout-wrap:not(.needs-address) #billing_state_field,
.odp-sub-checkout-wrap:not(.needs-address) #billing_postcode_field,
.odp-sub-checkout-wrap:not(.needs-address) #billing_country_field {
  display: none !important;
}
.odp-sub-checkout-wrap.needs-address #billing_address_1_field,
.odp-sub-checkout-wrap.needs-address #billing_address_2_field,
.odp-sub-checkout-wrap.needs-address #billing_city_field,
.odp-sub-checkout-wrap.needs-address #billing_state_field,
.odp-sub-checkout-wrap.needs-address #billing_postcode_field,
.odp-sub-checkout-wrap.needs-address #billing_country_field {
  display: block !important;
}

.odp-sub-checkout-wrap #payment .payment_methods li {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  margin-bottom: 0.4rem;
  background: #fafafa;
  transition: border-color 0.15s;
}
.odp-sub-checkout-wrap
  #payment
  .payment_methods
  li.wc_payment_method
  input[type="radio"] {
  margin-right: 0.5rem;
  accent-color: #4a9e6a;
}
.odp-sub-checkout-wrap #payment .payment_box {
  background: #f8f8f6;
  border-radius: 6px;
  padding: 0.875rem;
  margin-top: 0.5rem;
  border: 1px solid #eee;
}
.odp-sub-checkout-wrap #payment #place_order:disabled {
  background: #aaa !important;
  cursor: not-allowed !important;
}
.odp-sub-checkout-wrap
  #payment
  ul.woocommerce-SavedPaymentMethods[data-count="0"] {
  display: none !important;
}

#wc-stripe-express-checkout-button-separator,
body.woocommerce-checkout
  #payment
  .payment_method_stripe
  .wc-stripe-elements-form
  > p:first-child,
body.woocommerce-checkout #payment .wc-stripe-request-button-separator {
  display: none !important;
}

#wc-stripe-link-authentication-element,
.wc-stripe-link-authentication-element,
[id*="stripe-link-authentication"],
[class*="stripe-link-authentication"] {
  display: none !important;
}

#odp-express-pay:not(:has(> *)) {
  display: none;
}
#odp-express-pay > #wc-stripe-express-checkout-element {
  margin-bottom: 0.75rem;
}

.odp-sub-thankyou {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}
.odp-sub-thankyou__icon {
  width: 72px;
  height: 72px;
  background: #f0f7f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #4a9e6a;
}
.odp-sub-thankyou__heading {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3033;
  margin: 0 0 0.5rem;
}
.odp-sub-thankyou__subhead {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 2rem;
}
.odp-sub-thankyou__steps {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid #e8e8e6;
  text-align: left;
}
.odp-sub-thankyou__steps h3 {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin: 0 0 1rem;
}
.odp-sub-thankyou__step {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f5f5f3;
}
.odp-sub-thankyou__step:last-child {
  border-bottom: none;
}
.odp-sub-thankyou__step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2d3033;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.odp-sub-thankyou__step-text {
  font-size: 0.825rem;
  color: #666;
  line-height: 1.5;
}
.odp-sub-thankyou__step-text strong {
  display: block;
  color: #2d3033;
  font-size: 0.875rem;
  margin-bottom: 0.15rem;
}
.odp-sub-thankyou__ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.odp-sub-thankyou__ctas .odp-btn-primary {
  background: #2d3033;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s;
}
.odp-sub-thankyou__ctas .odp-btn-primary:hover {
  background: rgb(68.90625, 73.5, 78.09375);
  color: #fff;
  text-decoration: none;
}
.odp-sub-thankyou__ctas .odp-btn-outline {
  background: transparent;
  color: #666;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: border-color 0.15s;
}
.odp-sub-thankyou__ctas .odp-btn-outline:hover {
  border-color: #999;
  color: #2d3033;
  text-decoration: none;
}

fieldset:not(#wc-stripe-upe-form) {
  border: 0;
  padding: 0;
}

@media (min-width: 860px) {
  .odp-sub-checkout-inner {
    max-width: 960px !important;
    margin: 0 auto !important;
  }
  .odp-checkout-col-right {
    position: sticky;
    top: 80px;
  }
  .odp-sub-renews-note {
    text-align: left;
  }
}
@media (max-width: 520px) {
  .odp-checkout-header__inner {
    padding: 0.65rem 1rem;
  }
  .odp-sub-plan-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
  }
  .odp-sub-plan-bar > div:last-child {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .odp-sub-plan-bar__change {
    text-align: left;
    margin-top: 0;
  }
  .odp-progress__label {
    font-size: 0.6rem;
  }
  .odp-progress__line {
    min-width: 12px;
    max-width: 24px;
  }
  .odp-sub-trust-bar {
    gap: 0.65rem;
  }
  .odp-sub-trust-item {
    font-size: 0.68rem;
  }
  .odp-sub-checkout-wrap .form-row-first,
  .odp-sub-checkout-wrap .form-row-last {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
  }
  .odp-plan-option {
    min-width: 80px;
    padding: 0.5rem 0.6rem;
  }
  .odp-plan-option__price {
    font-size: 0.875rem;
  }
  .odp-sub-card {
    padding: 0.875rem 1rem;
  }
  .odp-sub-checkout-wrap #place_order {
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
  }
  .odp-pre-submit-guarantee {
    font-size: 0.68rem;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .odp-social-proof-strip {
    padding: 0.5rem 0.875rem;
  }
  .odp-exit-intent__box {
    padding: 1.5rem 1.25rem;
  }
  .odp-exit-intent__title {
    font-size: 1.1rem;
  }
  .odp-sub-thankyou__ctas {
    flex-direction: column;
  }
}
.odp-checkout-variant-b body,
.odp-checkout-variant-b .odp-sub-checkout-wrap {
  background: #fff !important;
}
.odp-checkout-variant-b .odp-checkout-header {
  background: #3d7a52 !important;
  border-bottom: none !important;
}
.odp-checkout-variant-b .odp-checkout-header__logo img {
  filter: brightness(0) invert(1) !important;
}
.odp-checkout-variant-b .odp-checkout-header__secure {
  color: rgba(255, 255, 255, 0.75) !important;
}
.odp-checkout-variant-b .odp-checkout-header__secure svg {
  color: #a8d5b5 !important;
}
.odp-checkout-variant-b .odp-sub-checkout-inner {
  max-width: 480px !important;
}
.odp-checkout-variant-b .odp-sub-plan-bar {
  background: #f5faf7 !important;
  border: 1px solid #c8e6d0 !important;
  border-left: 4px solid #3d7a52 !important;
  border-radius: 6px !important;
}
.odp-checkout-variant-b .odp-sub-plan-bar__icon {
  background: #3d7a52 !important;
  color: #fff !important;
}
.odp-checkout-variant-b .odp-sub-plan-bar__change {
  color: #3d7a52 !important;
}
.odp-checkout-variant-b .odp-sub-trust-item svg {
  color: #3d7a52 !important;
}
.odp-checkout-variant-b .odp-sub-card {
  background: #fff !important;
  border: 1px solid #e8e8e6 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}
.odp-checkout-variant-b .odp-sub-checkout-wrap .form-row input.input-text:focus,
.odp-checkout-variant-b .odp-sub-checkout-wrap .form-row select:focus {
  border-color: #3d7a52 !important;
  box-shadow: 0 0 0 3px rgba(61, 122, 82, 0.12) !important;
}
.odp-checkout-variant-b .odp-sub-checkout-wrap #place_order {
  background: #3d7a52 !important;
  font-size: 1rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}
.odp-checkout-variant-b .odp-sub-checkout-wrap #place_order:hover {
  background: #2d5e3e !important;
}
.odp-checkout-variant-b .odp-sub-coupon-toggle {
  color: #3d7a52 !important;
}
.odp-checkout-variant-b .odp-sub-coupon-row input:focus {
  border-color: #3d7a52 !important;
}
.odp-checkout-variant-b .odp-sub-coupon-row button {
  background: #3d7a52 !important;
}
.odp-checkout-variant-b .odp-sub-coupon-row button:hover {
  background: #2d5e3e !important;
}
.odp-checkout-variant-b .odp-sub-benefits li svg {
  color: #3d7a52 !important;
}
.odp-checkout-variant-b .odp-sub-renews-note a {
  color: #3d7a52 !important;
}
.odp-checkout-variant-b
  .odp-sub-checkout-wrap
  #payment
  .payment_methods
  li.wc_payment_method
  input[type="radio"] {
  accent-color: #3d7a52 !important;
}

.odp-sub-checkout-wrap
  .woocommerce-terms-and-conditions-wrapper
  .input-checkbox {
  margin: 6px 6px 0 0 !important;
}

body.odp-thankyou-page #masthead,
body.odp-thankyou-page .breadcrumb-wrapper,
body.odp-thankyou-page .site-header,
body.odp-thankyou-page .site-footer,
body.odp-thankyou-page footer.entry-footer {
  display: none !important;
}
body.odp-thankyou-page #wc-stripe-link-authentication-element,
body.odp-thankyou-page .wc-stripe-link-authentication-element,
body.odp-thankyou-page [id*="stripe-link-authentication"],
body.odp-thankyou-page [class*="stripe-link-authentication"],
body.odp-thankyou-page #wc-stripe-express-checkout-element,
body.odp-thankyou-page .wc-stripe-request-button-separator,
body.odp-thankyou-page #payment,
body.odp-thankyou-page .woocommerce-order-pay {
  display: none !important;
}

.odp-ty-header {
  background: #2d3033;
  position: sticky;
  top: 0;
  z-index: 100;
}
.odp-ty-header__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.odp-ty-header__secure {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.03em;
}
.odp-ty-header__secure svg {
  color: #6eb981;
}

.odp-ty-wrap,
.odp-thankyou-page .woocommerce-order-details,
.odp-thankyou-page .woocommerce-customer-details {
  max-width: 580px;
  margin: 0 auto;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.odp-ty-wrap {
  padding: 3rem 1.25rem 1rem;
}

.odp-ty-celebrate {
  display: block;
  margin: 0 auto 2.25rem;
  overflow: visible;
}
.odp-ty-celebrate .ty-ring {
  transform-box: fill-box;
  transform-origin: center;
}
.odp-ty-celebrate .ty-ring-a {
  animation: ty-ring 0.75s ease-out 0.05s forwards;
}
.odp-ty-celebrate .ty-ring-b {
  animation: ty-ring 0.75s ease-out 0.24s forwards;
}
.odp-ty-celebrate .ty-bg {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  animation: ty-bg-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s forwards;
  filter: drop-shadow(0 4px 14px rgba(79, 171, 104, 0.28));
}
.odp-ty-celebrate .ty-check {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: ty-draw 0.45s ease-out 0.3s forwards;
}
.odp-ty-celebrate .ty-dot {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}
.odp-ty-celebrate .ty-d1 {
  animation: ty-spark 0.65s ease-out 0.1s forwards;
}
.odp-ty-celebrate .ty-d2 {
  animation: ty-spark 0.65s ease-out 0.14s forwards;
}
.odp-ty-celebrate .ty-d3 {
  animation: ty-spark 0.65s ease-out 0.11s forwards;
}
.odp-ty-celebrate .ty-d4 {
  animation: ty-spark 0.65s ease-out 0.16s forwards;
}
.odp-ty-celebrate .ty-d5 {
  animation: ty-spark 0.65s ease-out 0.12s forwards;
}
.odp-ty-celebrate .ty-d6 {
  animation: ty-spark 0.65s ease-out 0.15s forwards;
}
.odp-ty-celebrate .ty-d7 {
  animation: ty-spark 0.65s ease-out 0.09s forwards;
}
.odp-ty-celebrate .ty-d8 {
  animation: ty-spark 0.65s ease-out 0.13s forwards;
}

@keyframes ty-ring {
  0% {
    transform: scale(0.55);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}
@keyframes ty-bg-pop {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ty-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ty-spark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  35% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.odp-ty-heading {
  font-family: "Lora", Georgia, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #000;
  text-align: center;
  margin: 0 0 0.625rem;
  line-height: 1.2;
}

.odp-ty-subhead {
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

body.odp-thankyou-page .woocommerce-order-details,
body.odp-thankyou-page .woocommerce-customer-details,
.odp-ty-steps,
.odp-ty-order {
  background: #fff;
  border: 1px solid #e8e8e6;
  border-radius: 12px;
  padding: 1.375rem 1.5rem;
  margin-bottom: 1.25rem;
}

body.odp-thankyou-page .woocommerce-order-details__title,
body.odp-thankyou-page .woocommerce-customer-details__title,
.odp-ty-steps__label,
.odp-ty-order__label,
.odp-thankyou-page .woocommerce-order-details h2,
.odp-thankyou-page .woocommerce-customer-details h2 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #555;
  margin-bottom: 1rem;
}

.odp-ty-order__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f5f5f3;
  font-size: 0.875rem;
  color: #666;
}
.odp-ty-order__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.odp-ty-order__row span:last-child {
  font-weight: 700;
  color: #000;
}

.odp-ty-steps a {
  text-decoration: underline;
  font-weight: 700;
}
.odp-ty-steps a:visited {
  color: #6eb981;
}
.odp-ty-steps a:hover {
  color: #6eb981;
}

.odp-ty-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f5f3;
}
.odp-ty-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.odp-ty-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2d3033;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.odp-ty-step__body {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}
.odp-ty-step__body strong {
  display: block;
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.odp-ty-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.25rem;
}
.odp-ty-ctas .btn-primary svg path {
  stroke: #000;
}

.odp-ty-cta-primary {
  background: #2d3033;
  color: #fff;
  padding: 0.875rem 1.625rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition:
    background 300ms cubic-bezier(0.45, 0, 0.4, 1),
    transform 300ms cubic-bezier(0.45, 0, 0.4, 1);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
}
.odp-ty-cta-primary:hover {
  background: #43484d;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.odp-ty-cta-outline {
  background: transparent;
  color: #555;
  padding: 0.875rem 1.625rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1.5px solid #e8e8e6;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition:
    border-color 300ms cubic-bezier(0.45, 0, 0.4, 1),
    color 300ms cubic-bezier(0.45, 0, 0.4, 1),
    transform 300ms cubic-bezier(0.45, 0, 0.4, 1);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.odp-ty-cta-outline:hover {
  border-color: #a0a5ab;
  color: #000;
  text-decoration: none;
  transform: translateY(-1px);
}

.odp-ty-renews {
  font-size: 0.72rem;
  color: #bbb;
  text-align: center;
  margin-top: 1.75rem;
  line-height: 1.6;
}
.odp-ty-renews a {
  color: #4fab68;
  text-decoration: none;
}
.odp-ty-renews a:hover {
  text-decoration: underline;
}

body.odp-thankyou-page .woocommerce-order-details,
body.odp-thankyou-page .woocommerce-customer-details {
  margin-top: 1.25rem;
  padding: 2rem 1.25rem;
}
body.odp-thankyou-page .woocommerce-order-details__title,
body.odp-thankyou-page .woocommerce-customer-details__title {
  margin-bottom: 1rem;
}
body.odp-thankyou-page .woocommerce-customer-details address {
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}
body.odp-thankyou-page .woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
body.odp-thankyou-page .woocommerce-table--order-details thead tr {
  border-bottom: 2px solid #f5f5f3;
}
body.odp-thankyou-page .woocommerce-table--order-details thead tr th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #bbb;
  padding: 0 0 0.625rem;
  text-align: left;
}
body.odp-thankyou-page
  .woocommerce-table--order-details
  thead
  tr
  th:last-child {
  text-align: right;
}
body.odp-thankyou-page .woocommerce-table--order-details tbody tr {
  border-bottom: 1px solid #f5f5f3;
}
body.odp-thankyou-page .woocommerce-table--order-details tbody tr td {
  padding: 0.75rem 0;
  color: #666;
  vertical-align: top;
}
body.odp-thankyou-page
  .woocommerce-table--order-details
  tbody
  tr
  td:last-child {
  text-align: right;
  font-weight: 700;
  color: #000;
}
body.odp-thankyou-page
  .woocommerce-table--order-details
  tbody
  tr
  td
  .woocommerce-Price-amount {
  font-weight: 700;
}
body.odp-thankyou-page .woocommerce-table--order-details tfoot tr th,
body.odp-thankyou-page .woocommerce-table--order-details tfoot tr td {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #f5f5f3;
  color: #666;
}
body.odp-thankyou-page .woocommerce-table--order-details tfoot tr td {
  text-align: right;
}
body.odp-thankyou-page .woocommerce-table--order-details tfoot tr:last-child th,
body.odp-thankyou-page
  .woocommerce-table--order-details
  tfoot
  tr:last-child
  td {
  border-bottom: none;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  padding-bottom: 0;
}
body.odp-thankyou-page .woocommerce-columns--addresses {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
body.odp-thankyou-page .woocommerce-columns--addresses .woocommerce-column {
  flex: 1 1 180px;
}
body.odp-thankyou-page .woocommerce-columns--addresses h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #bbb;
  margin: 0 0 0.625rem;
}
body.odp-thankyou-page .woocommerce-columns--addresses address {
  font-style: normal;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
}

body.odp-thankyou-page .woocommerce-order-details--subscriptions {
  max-width: 580px;
  margin: 0 auto 1.25rem;
  padding: 1.375rem 1.5rem;
  background: #fff;
  border: 1px solid #e8e8e6;
  border-radius: 12px;
}
body.odp-thankyou-page .woocommerce-order-details--subscriptions h2 {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bbb;
  margin: 0 0 1rem;
}
body.odp-thankyou-page .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
body.odp-thankyou-page .woocommerce-orders-table thead th {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bbb;
  padding: 0 0.75rem 0.625rem 0;
  text-align: left;
  border-bottom: 1px solid #f5f5f3;
  white-space: nowrap;
}
body.odp-thankyou-page .woocommerce-orders-table thead th:last-child {
  padding-right: 0;
  text-align: right;
}
body.odp-thankyou-page .woocommerce-orders-table tbody tr {
  border-bottom: 1px solid #f5f5f3;
}
body.odp-thankyou-page .woocommerce-orders-table tbody tr:last-child {
  border-bottom: none;
}
body.odp-thankyou-page .woocommerce-orders-table tbody td {
  padding: 0.75rem 0.75rem 0.75rem 0;
  color: #666;
  vertical-align: middle;
}
body.odp-thankyou-page .woocommerce-orders-table tbody td:last-child {
  padding-right: 0;
  text-align: right;
}
body.odp-thankyou-page
  .woocommerce-orders-table
  tbody
  td.woocommerce-orders-table__cell-subscription-id
  a {
  color: #2a9d4e;
  font-weight: 700;
  text-decoration: none;
}
body.odp-thankyou-page
  .woocommerce-orders-table
  tbody
  td.woocommerce-orders-table__cell-subscription-id
  a:hover {
  text-decoration: underline;
}
body.odp-thankyou-page
  .woocommerce-orders-table
  tbody
  td.woocommerce-orders-table__cell-status {
  font-size: 0.75rem;
  font-weight: 600;
}
body.odp-thankyou-page
  .woocommerce-orders-table
  tbody
  td.woocommerce-orders-table__cell-status::before {
  content: attr(data-title) " ";
  display: none;
}
body.odp-thankyou-page
  .woocommerce-orders-table
  .woocommerce-orders-table__row--status-active
  td.woocommerce-orders-table__cell-status {
  color: #228f45;
}
body.odp-thankyou-page
  .woocommerce-orders-table
  .woocommerce-orders-table__row--status-active
  td.woocommerce-orders-table__cell-status::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4fab68;
  margin-left: 0.35rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
body.odp-thankyou-page
  .woocommerce-orders-table
  .woocommerce-orders-table__cell-actions
  a {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid #e8e8e6;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition:
    border-color 300ms cubic-bezier(0.45, 0, 0.4, 1),
    color 300ms cubic-bezier(0.45, 0, 0.4, 1);
}
body.odp-thankyou-page
  .woocommerce-orders-table
  .woocommerce-orders-table__cell-actions
  a:hover {
  border-color: #a0a5ab;
  color: #000;
}
@media (max-width: 480px) {
  body.odp-thankyou-page .woocommerce-orders-table thead {
    display: none;
  }
  body.odp-thankyou-page .woocommerce-orders-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f3;
  }
  body.odp-thankyou-page .woocommerce-orders-table tbody td::before {
    content: attr(data-title);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #bbb;
  }
  body.odp-thankyou-page .woocommerce-orders-table tbody td:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .odp-ty-wrap {
    padding: 2rem 1rem 4rem;
  }
  .odp-ty-ctas {
    flex-direction: column;
  }
  .odp-ty-cta-primary,
  .odp-ty-cta-outline {
    justify-content: center;
  }
  .odp-thankyou-page .woocommerce-order-details,
  .odp-thankyou-page .woocommerce-customer-details {
    padding: 2rem 1rem;
  }
}

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