.cm-product-template b,
.cm-product-template strong {
  font-weight: normal;
  font-family: var(--bold-font);
}

.cm-product-template .product-header {
  position: relative;
}

.cm-product-template .product-header .product-info {
  position: absolute;
  max-width: 350px;
  width: 100%;
  top: 0;
  right: 0;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 32px;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .cm-product-template .product-header .product-info {
    position: relative;
    box-shadow: none;
    border-radius: 0 0 0 0;
    max-width: unset;
    padding: 2rem 0;
  }
}

.cm-product-template .product-header .product-info img {
  width: 100%;
}

.cm-product-template .product-header .product-info p {
  text-align: center;
}

.cm-product-template .product-header .product-info .price {
  font-family: var(--bold-font);
}

.cm-product-template .product-header .product-info .check {
  display: block;
  width: 20px;
  height: 16px;
  -webkit-mask: url(../../images/icons/learn-check.svg) no-repeat 50% 50%;
  mask: url(../../images/icons/learn-check.svg) no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--dark-purple);
}

.cm-product-template .product-header .product-info .button {
  margin-bottom: 0;
}

.cm-product-template .product-header .hero {
  position: relative;
  background-color: var(--light-neutral);
  max-width: calc(100% - 390px);
}

.cm-product-template .product-header .hero h1 {
  max-width: 992px;
}

.cm-product-template .product-header .hero p {
  max-width: 768px;
}

.cm-product-template .product-header .hero:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: -100%;
  z-index: -1;
  background-color: var(--light-neutral);
}

.cm-product-template .product-header .hero:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: -100%;
  z-index: -1;
  background-color: var(--light-neutral);
}

.cm-product-template .tags-container,
.cm-product-template .perfect-container {
  display: flex;
  column-gap: 32px;
  row-gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - 390px);
}

.cm-product-template .tags-container {
  position: relative;
}

.cm-product-template .tags-container:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 200vw;
  bottom: 0;
  left: -50%;
  z-index: -1;
  background-color: var(--light-neutral);
}

@media screen and (max-width: 992px) {
  .cm-product-template .product-header .hero {
    max-width: unset;
  }

  .cm-product-template .tags-container,
  .cm-product-template .perfect-container {
    flex-direction: column;
    column-gap: 32px;
    row-gap: 16px;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: unset;
  }
}

.cm-product-template .perfect-container .perfect-header {
  margin-bottom: 0;
}

.cm-product-template .perfect-container .perfect-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  color: var(--white);
  background-color: var(--dark-purple);
  padding-right: 2px;
  margin: 0 32px;
}

.cm-product-template .tags-container .tag {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  color: var(--black);
  background-color: var(--bright-blue);
  padding-right: 2px;
  margin: 0 32px;
}

.cm-product-template .perfect-container .perfect-item:before {
  position: absolute;
  content: "";
  display: block;
  width: 32px;
  height: 28px;
  background-image: url(../../images/icons/perfect-item-left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: -32px;
}

.cm-product-template .perfect-container .perfect-item:after {
  position: absolute;
  content: "";
  display: block;
  width: 27px;
  height: 28px;
  background-image: url(../../images/icons/perfect-item-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  right: -26px;
}

.cm-product-template .tags-container .tag:before {
  position: absolute;
  content: "";
  display: block;
  width: 32px;
  height: 28px;
  background-image: url(../../images/icons/tag-item-left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: -32px;
}

.cm-product-template .tags-container .tag:after {
  position: absolute;
  content: "";
  display: block;
  width: 27px;
  height: 28px;
  background-image: url(../../images/icons/tag-item-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: -26px;
}

.cm-product-template .learn-container,
.cm-product-template .info-container {
  max-width: calc(100% - 350px);
}

.cm-product-template .learn-container .learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
}

@media screen and (max-width: 992px) {
  .cm-product-template .learn-container,
  .cm-product-template .info-container {
    max-width: unset;
  }

  .cm-product-template .learn-container .learn-grid {
    grid-template-columns: 1fr;
  }
}

.cm-product-template .learn-container .learn-grid li {
  position: relative;
  margin-left: 0.5rem;
}

.cm-product-template .learn-container .learn-grid li::marker {
  display: none;
}

.cm-product-template .learn-container .learn-grid li::before {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  top: 9px;
  left: -9px;
  background-image: url(../../images/icons/learn-check.svg);
  background-repeat: no-repeat;
}

.cm-product-template .table-compare-container {
  overflow-y: auto;
}

.cm-product-template .table-compare {
  margin-bottom: 20px;
  width: 100%;
  max-width: 1024px;
  border-radius: 8px;
  background-color: var(--light-neutral);
}

.cm-product-template .table-compare tr {
  border-bottom: 1px solid var(--dark-neutral);
}

.cm-product-template .table-compare tr:last-child {
  border-color: none;
}

.cm-product-template .table-compare td {
  padding: 10px;
  min-width: 150px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .cm-product-template .table-compare td {
    padding: 20px;
  }
}

.cm-product-template .table-compare .left {
  text-align: left;
}

.cm-product-template .table-compare img {
  width: 24px;
  margin: 0 auto;
}

.cm-product-template .cm-related-products .product-process-container {
  overflow: auto;
}

.cm-product-template .cm-related-products .product-process {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem 0;
  margin-bottom: 2rem;
  min-width: 992px;
}

.cm-product-template .cm-related-products .process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.cm-product-template .cm-related-products .process-1,
.cm-product-template .cm-related-products .process-2,
.cm-product-template .cm-related-products .process-3 {
  background-repeat: no-repeat;
  background-size: contain;
}

.cm-product-template .cm-related-products .process-1 {
  width: 50px;
  height: 50px;
}

.cm-product-template .cm-related-products .process-2 {
  width: 60px;
  height: 60px;
}

.cm-product-template .cm-related-products .process-3 {
  width: 50px;
  height: 50px;
}

.cm-product-template .cm-related-products .process-arrow {
  display: block;
  width: 20px;
  height: 16px;
  -webkit-mask: url(../../images/icons/arrow.svg) no-repeat 50% 50%;
  mask: url(../../images/icons/arrow.svg) no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--dark-purple);
}

.cm-product-template .cm-related-products .process p {
  font-weight: 600;
}

.cm-product-template .cm-related-products .selected-process {
  background-color: var(--white);
  padding: 1rem 0.5rem 0;
  border-radius: 50px 50px 0 0;
}

.cm-product-template .cm-related-products .selected-process p {
  color: var(--dark-purple);
}

.cm-product-template .cm-related-products .backend-options,
.cm-product-template .cm-related-products .book-now p,
.cm-product-template .cm-related-products .coming-soon {
  text-align: center;
}

@media screen and (max-width: 992px) {
  .cm-product-template .cm-related-products .backend-options,
  .cm-product-template .cm-related-products .book-now p,
  .cm-product-template .cm-related-products .coming-soon {
    text-align: left;
  }
}

.cm-product-template .cm-related-products .page-products-list {
  overflow: auto;
}

.cm-product-template .cm-related-products .table-products-list {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-bottom: 2rem;
  min-width: 992px;
}

.cm-product-template .cm-related-products tr:nth-child(odd) {
  background-color: var(--medium-neutral);
}

.cm-product-template .cm-related-products tr:nth-child(even) {
  background-color: var(--light-neutral);
}

.cm-product-template .cm-related-products .table-products-list tr th {
  background-color: var(--dark-purple);
  color: var(--white);
}

.cm-product-template .cm-related-products .table-products-list tr th,
.cm-product-template .cm-related-products .table-products-list tr td {
  padding: 1rem 0.5rem;
  text-align: center;
}

.product-list-accordion-toggle.collapsed
  .product-list-accordion-toggle-collapsed,
.product-list-accordion-toggle:not(.collapsed)
  .product-list-accordion-toggle-expanded {
  display: block;
  cursor: pointer;
}

.cm-product-template .product-list-accordion-toggle-collapsed,
.cm-product-template .product-list-accordion-toggle-expanded {
  display: none;
}

.cm-product-template .cm-related-products .table-products-list .orderbutton {
  margin: 0 auto;
}

.cm-product-template .share {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 2px solid var(--light-neutral);
  border-bottom: 2px solid var(--light-neutral);
}

.cm-product-template .share > h3 {
  margin-bottom: 0;
}
