.watch-variants-section {
  display: flex;
  margin-top: 35px;
}
.watch-variants-section .watch-variants-heading {
  flex: 0 0 50%;
  max-width: 50%;
}
.watch-variants-section .watch-variants-heading h3 {
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--f-main-bold);
  padding-top: 6px;
  font-size: 16px;
  line-height: 19.2px;
  border-top: 1px solid #9e9e9e;
  border-top-color: rgb(158, 158, 158);
  padding-left: 10px;
}
.watch-variants-section .variants-wrapper {
  flex: 0 0 auto;
  width: calc(50% - 5px);
  margin-left: 5px;
  display: flex;
  gap: 6px;
  overflow: hidden;
}
@media (max-width: 769px) {
  .watch-variants-section {
    flex-direction: column;
  }
  .watch-variants-section .watch-variants-heading,
  .watch-variants-section .variants-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: initial;
  }
}
.watch-variants-section .variant {
  flex: 0 0 auto;
  width: calc(33.3333% - 4px);
  max-width: calc(33.3333% - 4px);
  font-size: 12px;
  line-height: 14.4px;
}
.watch-variants-section .variant .img-holder {
  background: #F1F1F1;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 0.8;
  position: relative;
}
.watch-variants-section .variant .img-holder .picture {
  width: 100%;
  height: 100%;
}
.watch-variants-section .variant .img-holder img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.watch-variants-section .variant .name {
  margin-top: 6px;
  font-weight: 600;
  font-family: var(--f-main-bold);
  text-transform: uppercase;
}
.watch-variants-section .variant .price {
  margin-top: 6px;
  font-weight: 400;
  font-family: var(--f-main-regular);
}
.watch-variants-section .slick-track .variant {
  width: auto;
  margin-right: 6px;
}
.watch-variants-section .slick-arrow {
  width: 25px;
  height: 40px;
  transform: translateY(-100%);
}
.watch-variants-section .slick-arrow::before, .watch-variants-section .slick-arrow::after {
  width: max(1.1458333vw, 16px);
}

@media only screen and (max-width: 769px) {
  .pdetail {
    margin-top: 45px;
  }
}
.pdetail .pdetail-left,
.pdetail .pdetail-right {
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pdetail .pdetail-left .mdm-content__desc,
.pdetail .pdetail-left .mdm-content__holder .btn,
.pdetail .pdetail-right .mdm-content__desc,
.pdetail .pdetail-right .mdm-content__holder .btn {
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pdetail .pdetail-left .mdm-content__holder .btn,
.pdetail .pdetail-right .mdm-content__holder .btn {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--f-main-regular);
  line-height: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.18);
  padding: 21px 36px 21px 27px;
  position: absolute;
  top: calc(50% + 15px);
  left: 80px;
  transform: translateY(-50%);
  /*@media screen and (max-width: 1200px) {
  	top: calc(72% + 15px);
  }*/
  display: none !important;
}
.pdetail .pdetail-left .mdm-content__holder .btn i,
.pdetail .pdetail-right .mdm-content__holder .btn i {
  margin: 0;
}

.pdetail .pdetail-left .mdm-content__holder .btn {
  border: 1px solid #FFF;
  color: var(--btnSimpleText);
  background-color: var(--btnSimpleBg);
  /*@media screen and (min-width: 1960px) {
  	font-size: 22px;
  }*/
}
@media (hover: hover) {
  .pdetail .pdetail-left .mdm-content__holder .btn:hover {
    color: var(--btnSimpleTextHover);
    background-color: var(--btnSimpleBgHover);
    border: 1px solid #FFF;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.pdetail .pdetail-left .mdm-content__holder .btn:active {
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #FFF;
  box-shadow: 4px 6px 12px 0 rgba(0, 0, 0, 0.18);
}

.pdetail .pdetail-right .mdm-content__holder .btn {
  border: 1px solid #000;
}
@media (hover: hover) {
  .pdetail .pdetail-right .mdm-content__holder .btn:hover {
    color: var(--btnSimpleTextHover);
    background-color: var(--btnSimpleBgHover);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.pdetail .pdetail-right .mdm-content__holder .btn:active {
  background-color: transparent !important;
  color: #000 !important;
  border: 1px solid #000;
  box-shadow: 4px 6px 12px 0 rgba(0, 0, 0, 0.18);
}

.pdetail.is-reversed .pdetail-left {
  order: 2;
}

.pdetail.is-reversed .pdetail-right {
  order: 1;
}

.pdetail-left {
  width: 50%;
}

@media only screen and (max-width: 769px) {
  .pdetail-left {
    display: none;
  }
}
.pdetail-left .pdetail-intro {
  position: sticky;
  top: 0;
}

.pdetail-left .pdetail-intro .mdm-bg__holder {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.pdetail-left .pdetail-intro .mdm-bg__holder picture,
.pdetail-left .pdetail-intro .mdm-bg__holder img {
  height: 100%;
  object-fit: cover;
}

.pdetail-left .pdetail-intro .mdm-bg__holder.video {
  position: relative;
  overflow: hidden;
  min-width: 100vw;
  transform: translateX(-25%);
}

.pdetail-left .pdetail-intro .mdm-bg__holder.video video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25%;
}

.pdetail-right {
  width: 50%;
}

@media only screen and (max-width: 769px) {
  .pdetail-right {
    width: 100%;
  }
}
.pdetail-right .split-inner {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 769px) {
  .pdetail-right .mdm-content__holder {
    display: none;
  }
}
.pdetail-right .mdm-bg__holder {
  position: relative;
  width: 100%;
}

.pdetail-right .mdm-bg__holder picture,
.pdetail-right .mdm-bg__holder img {
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.pdetail-right .pdetail-intro {
  height: 100vh;
  width: 100%;
}

@media only screen and (max-width: 769px) {
  .pdetail-right .pdetail-intro {
    height: 100vw;
    order: 2;
    position: relative;
    border-top: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    padding-top: 0;
    background: transparent !important;
    display: block;
  }
}
@media only screen and (max-width: 769px) {
  .pdetail-right .pdetail-intro .mdm-img__holder {
    background-color: #f1f1f1 !important;
  }
}
@media only screen and (max-width: 769px) {
  .pdetail-right .pdetail-intro .mdm-img__holder::before {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(/wp-content/themes/mdm/images/crosshair-mobile.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    right: 20px;
    pointer-events: none;
  }
}
.pdetail-intro {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 769px) {
  .pdetail-intro {
    height: 100vw;
  }
}
.pdetail-intro .back-button {
  color: #808080 !important;
  position: sticky;
  align-self: flex-start;
  margin-left: 10px;
  top: 10vh;
  margin-bottom: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--f-main-medium);
}
.pdetail-intro .back-button::before {
  display: none;
}
.pdetail-intro .back-button svg {
  margin-right: 6px;
  flex: 0 0 auto;
  width: 0.5em;
  height: 1em;
  object-position: center;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 769px) {
  .pdetail-intro .back-button {
    display: none;
  }
}

.pdetail .product-wishlist, .pdetail .breadcrumbs {
  padding: 10px;
  height: 20vh;
  display: block;
  z-index: 11;
  position: relative;
  max-height: 120px;
}
.pdetail .product-wishlist .title, .pdetail .breadcrumbs .title {
  display: inline;
  white-space: nowrap;
}
.pdetail .product-wishlist .subtitle, .pdetail .breadcrumbs .subtitle {
  display: inline;
}
.pdetail .product-wishlist .yith-wcwl-add-to-wishlist {
  margin: 0;
}
.pdetail .product-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .yith-wcwl-icon {
  margin-right: 4px;
}
.pdetail .product-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > *:not(a:first-child) {
  display: none;
}
.pdetail .product-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a {
  opacity: 1 !important;
}
.pdetail .product-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .blockUI {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden;
}
.pdetail .product-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-add-button:hover > a {
  color: #9e9e9e;
}
@media only screen and (min-width: 770px) {
  .pdetail .product-wishlist {
    width: 50%;
  }
  .pdetail .breadcrumbs {
    width: calc(50% - 5px);
  }
  .pdetail .breadcrumbs, .pdetail .breadcrumbs > *, .pdetail .breadcrumbs > * > * {
    display: inline;
  }
}

@media only screen and (max-width: 769px) {
  .pdetail .product-wishlist {
    order: 0;
  }
  .pdetail .breadcrumbs {
    justify-content: end;
    order: 1;
    margin-left: auto;
  }
  .pdetail .product-wishlist,
  .pdetail .breadcrumbs {
    display: flex;
    max-height: none;
    height: auto;
    width: 100%;
    padding: 24px 10px;
  }
  .pdetail .breadcrumbs .subtitle,
  .pdetail .breadcrumbs .title {
    width: auto;
    hyphens: auto;
  }
  .pdetail .breadcrumbs .title {
    max-width: 50%;
    min-width: min-content;
  }
  .pdetail .breadcrumbs .subtitle {
    position: relative;
    padding: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
}
.pdetail .breadcrumbs h1 {
  font-size: inherit;
}

.pdetail-info {
  position: relative;
}

@media only screen and (max-width: 769px) {
  .pdetail-info {
    order: 3;
    padding: var(--side-padding);
  }
}
.pdetail-info .sticky-holder {
  width: 100%;
  margin-left: auto;
}

.pdetail-info .sticky-holder.sticky {
  position: sticky;
  top: 50px;
  right: 0;
  width: 66.667%;
  z-index: 10;
}

.prod-sticky-story,
.prod-sticky-title,
.prod-sticky-price {
  display: flex;
  align-items: center;
  border-top: 1px solid #9e9e9e;
  border-bottom: 1px solid #9e9e9e;
}

.sticky-wishlist-icon {
  width: 68px;
  flex: 0 0 auto;
  border: 1px solid var(--stickyColor) !important;
}
.sticky-wishlist-icon .yith-wcwl-add-to-wishlist {
  margin: 0;
  display: flex;
  height: 100%;
}
.sticky-wishlist-icon .yith-wcwl-add-button {
  min-width: 0;
}
.sticky-wishlist-icon .yith-wcwl-add-button, .sticky-wishlist-icon .yith-wcwl-add-button a {
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky-wishlist-icon .yith-wcwl-add-button a {
  padding: 22px 24px;
  height: 100%;
}
.sticky-wishlist-icon .yith-wcwl-add-button a .delete_item svg, .sticky-wishlist-icon .yith-wcwl-add-button a.add_to_wishlist svg {
  margin: 6px !important;
}
.sticky-wishlist-icon .yith-wcwl-add-button a svg {
  stroke: var(--stickyColorBg, #9E9E9E);
}
.sticky-wishlist-icon .yith-wcwl-add-button a.delete_item svg {
  fill: var(--stickyColorBg, #9E9E9E);
}
.sticky-wishlist-icon .yith-wcwl-add-button i {
  margin: 0;
  color: #9E9E9E;
  font-size: 18px;
  line-height: 20px;
}
.sticky-wishlist-icon .yith-wcwl-add-button i.fa-heart {
  color: var(--stickyColor);
}
.sticky-wishlist-icon .yith-wcwl-add-button span {
  display: none;
}

.product-share-icon {
  width: 68px;
  flex: 0 0 auto;
  border: 1px solid #000;
  border-left: 0;
  position: relative;
}
.product-share-icon .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.product-share-icon .icon-wrapper svg {
  width: 22px;
  height: 22px;
}
.product-share-icon .icon-wrapper:hover {
  cursor: pointer;
}
.product-share-icon .share-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #000;
  padding: 9px;
  min-width: 135px;
  opacity: 0;
  visibility: hidden;
}
.product-share-icon .share-options .share-option {
  display: flex;
  gap: 9px;
  padding: 3px 0;
  align-items: center;
}
.product-share-icon .share-options .share-option span.share-icon {
  display: inline-flex;
  min-width: 20px;
}
.product-share-icon .share-options .share-option .share-link {
  color: #FFF;
  text-transform: none;
  font-size: 14px;
}
.product-share-icon:hover .share-options {
  opacity: 1;
  visibility: visible;
}

.prod-sticky-story svg {
  height: 100%;
  width: 7px;
  margin-right: 0.5em;
  margin-bottom: 0.17em;
}

.prod-sticky-price,
.prod-sticky-story {
  flex: 1 1 0;
  text-align: center;
  justify-content: center;
  border: 1px solid #9e9e9e;
}

.prod-sticky-price.special-availability {
  display: none;
}

.prod-sticky-title {
  flex: 2 1 0;
  text-align: center;
  justify-content: center;
}
.no-action + .prod-sticky-title {
  flex: 3 1 0;
}

.prod-sticky-add-to-cart {
  color: var(--stickyColor);
  vertical-align: middle;
  flex: 0 0 auto;
  width: calc(33.33333% - 68px);
}
.prod-sticky-add-to-cart.special-availability {
  flex: 1 0 auto;
  pointer-events: none;
  user-select: none;
  text-align: center;
}
@media (max-width: 769px) {
  .prod-sticky-add-to-cart.special-availability {
    flex: 2 1 0;
  }
}

.prod-sticky-story:hover {
  background-color: var(--stickyColorBg);
  color: var(--stickyColor, #fff);
  border-color: var(--stickyColorBg);
}
.prod-sticky-story.no-action {
  pointer-events: none;
  cursor: default;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  border: 0 solid;
}

.pdetail-info .sticky-holder.sticky-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none !important;
}

@keyframes shake {
  0% {
    margin-left: 0rem;
  }
  25% {
    margin-left: 0.5rem;
  }
  75% {
    margin-left: -0.5rem;
  }
  100% {
    margin-left: 0rem;
  }
}
.pdetail-info__cta {
  position: sticky;
  width: 100%;
  top: calc(100% - 90px);
  background-color: #fff;
}
.pdetail-info__cta .inner-holder {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  text-transform: uppercase;
  min-height: 50px;
  position: relative;
}
.pdetail-info__cta .inner-holder .sold-out-form {
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  align-items: stretch;
}
.pdetail-info__cta .inner-holder .sold-out-form.active {
  display: flex;
  z-index: 1;
}
.pdetail-info__cta .inner-holder .sold-out-form .waiting-list-text {
  opacity: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-left: 1px solid var(--stickyColorBg) !important;
  padding: 12px 24px;
  border-top: 1px solid var(--stickyColorBg) !important;
  border-bottom: 1px solid var(--stickyColorBg) !important;
}
@media (max-width: 769px) {
  .pdetail-info__cta .inner-holder .sold-out-form .waiting-list-text {
    display: none;
  }
}
.pdetail-info__cta .inner-holder .sold-out-form .waiting-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 33.33333%;
  flex: 1 0 auto;
}
@media (max-width: 1400px) {
  .pdetail-info__cta .inner-holder .sold-out-form .waiting-list {
    width: 50%;
  }
}
@media (min-width: 1921px) {
  .pdetail-info__cta .inner-holder .sold-out-form .waiting-list {
    flex: 0 0 auto;
  }
}
.pdetail-info__cta .inner-holder .sold-out-form .wl-form-element {
  display: flex;
  position: relative;
  border-top: 1px solid var(--stickyColorBg) !important;
  border-left: 1px solid var(--stickyColorBg) !important;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid var(--stickyColorBg) !important;
  flex: 1 1 auto;
  background-color: var(--stickyColorBg);
  align-items: center;
}
.pdetail-info__cta .inner-holder .sold-out-form .wl-form-element input {
  font-size: inherit;
  width: calc(100% - 33.6px);
  margin-left: 17.3px;
  border: none;
  padding: 6px 12px;
  line-height: 2em;
  transition: height 0.2s, font-size 0.2s;
}
.pdetail-info__cta .inner-holder .sold-out-form .wl-form-element input:not(:placeholder-shown) + label, .pdetail-info__cta .inner-holder .sold-out-form .wl-form-element input:focus + label {
  top: calc(50% - 25px);
  height: 1em;
  font-size: 0.65em;
}
.pdetail-info__cta .inner-holder .sold-out-form .wl-form-element input.error {
  animation: shake 0.2s ease-in-out 0s 2;
}
@media screen and (min-width: 1921px) {
  .pdetail-info__cta .inner-holder .sold-out-form .wl-form-element input {
    line-height: 1.2em;
    padding: 8px 12px 4px;
  }
  .pdetail-info__cta .inner-holder .sold-out-form .wl-form-element input:not(:placeholder-shown) + label, .pdetail-info__cta .inner-holder .sold-out-form .wl-form-element input:focus + label {
    top: calc(50% - 23px);
    font-size: 0.6em;
  }
}
.pdetail-info__cta .inner-holder .sold-out-form .wl-form-element label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  pointer-events: none;
}
.pdetail-info__cta .inner-holder .sold-out-form .wl-submit {
  aspect-ratio: 1;
  color: #fff;
  background-color: var(--stickyColorBg);
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--stickyColorBg) !important;
  border-top: 1px solid var(--stickyColorBg) !important;
}
.pdetail-info__cta .inner-holder .sold-out-form .wl-submit svg {
  height: 30px;
  width: 30px;
}
.pdetail-info__cta .inner-holder .sold-out-form .wl-submit:hover {
  color: var(--stickyColorBg);
  background-color: #fff;
}
.pdetail-info__cta .inner-holder.category-banner {
  background-color: transparent;
  padding: 0px;
  min-height: unset;
  text-transform: none;
}
.pdetail-info__cta .inner-holder.category-banner p {
  padding: 10px;
  width: 100%;
}
.pdetail-info__cta .inner-holder.category-banner p:first-child {
  background-color: #000;
  text-align: left;
}
.pdetail-info__cta .inner-holder.category-banner p:last-child {
  color: #000;
  border: 1px solid #000;
  border-bottom: 0px;
  background-color: #fff;
}

@media screen and (max-width: 769px) {
  .prod-sticky-title {
    display: none;
  }
  .prod-sticky-price {
    padding: 25px calc(16px - 1em) 24px 16px;
    width: auto;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .pdetail-info .sticky-holder {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    margin-left: 0;
    z-index: 10;
    padding: 0;
    width: 100%;
  }
  .prod-sticky-price,
  .prod-sticky-story,
  .prod-sticky-add-to-cart {
    flex: 1 1 0;
    width: auto;
  }
  .no-action + .prod-sticky-title + .prod-sticky-price {
    flex: 2 1 0;
    width: auto;
  }
  .pdetail-info__cta {
    width: 100%;
    max-width: 100%;
  }
  .pdetail-info__cta .inner-holder {
    justify-content: flex-start;
    text-align: center;
  }
  .pdetail-info__cta .inner-holder.category-banner {
    display: block;
  }
  .pdetail-info__cta .inner-holder.category-banner p {
    padding: 5px;
    text-align: center !important;
    border: 0px;
  }
}
.pdetail-info__cta .inner-holder .btn {
  white-space: nowrap;
}

.pdetail-info__cta .inner-holder p {
  padding: 0 7px;
}

.pdetail-info__cta .inner-holder p.price {
  text-align: right;
  width: 90px;
  white-space: nowrap;
}
@media screen and (max-width: 769px) {
  .pdetail-info__cta .inner-holder p.price {
    width: 80px;
    padding: 0;
    text-align: center;
  }
}
.pdetail-info__cta .inner-holder p.price .price-inner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  text-align: center;
}

p.price .price-inner-wrapper > span {
  white-space: nowrap;
}
p.price .price-inner-wrapper .has-sale {
  font-size: 0.9em;
  opacity: 0.5;
  line-height: 1;
  margin-top: -0.15em;
  padding-left: 0.25em;
  pointer-events: none;
}
p.price .price-inner-wrapper .has-sale, p.price .price-inner-wrapper .has-sale > span {
  text-decoration: line-through;
}

.pdetail-info__cta .inner-holder .btn {
  font-size: 14px;
  padding: 12px;
}

@media only screen and (max-width: 769px) {
  .pdetail-info__cta .inner-holder .btn {
    width: auto;
    white-space: nowrap;
  }
}
.pdetail-info {
  width: 100%;
}
.pdetail-info .watch-content {
  width: 100%;
  padding-top: 72px;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content {
    padding-top: 0;
    padding-bottom: 140px;
  }
}
.pdetail-info .watch-content__item:not(:last-child) {
  margin-bottom: 48px;
}

.pdetail-info .watch-content__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__detail {
    display: block;
  }
}
.pdetail-info .watch-content__detail .image-holder {
  cursor: url(/wp-content/themes/mdm/images/crosshair-light.png) 30 30, auto;
  position: relative;
  width: calc(50% - 5px);
  padding-top: calc(50% + 2px);
  border-top: 1px solid #9e9e9e;
}
.pdetail-info .watch-content__detail .image-holder.slick-slide {
  padding-top: 0;
  height: 500px;
  max-height: 90vh;
  width: auto;
  flex-grow: 1;
}
.pdetail-info .watch-content__detail .slikz-wrapper {
  position: relative;
  height: 500px;
  max-height: min(90vh, 100vh - 60px);
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon {
  position: absolute;
  top: 6px;
  right: 0;
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-to-wishlist {
  margin: 0;
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button, .pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button a {
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button a {
  padding: 9px;
  margin: 0;
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button a svg {
  stroke: var(--stickyColorBg, #9E9E9E);
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button a svg, .pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button a svg.yith-wcwl-icon-svg {
  margin: 0;
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button a.delete_item svg {
  fill: var(--stickyColorBg, #9E9E9E);
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button i {
  margin: 0;
  color: var(--stickyColorBg, #9E9E9E);
  width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 20px;
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button i.fa-heart {
  color: var(--stickyColor);
}
.pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon .yith-wcwl-add-button span {
  display: none;
}
@media screen and (max-width: 769px) {
  .pdetail-info .watch-content__detail .slikz-wrapper .main-wishlist-icon {
    display: none;
  }
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__detail .image-holder {
    width: 100%;
    cursor: pointer;
  }
}
.pdetail-info .watch-content__detail .image-holder .inner-holder {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 6px;
  margin-bottom: 6px;
  width: 100%;
  height: calc(100% - 6px);
  background-color: #f1f1f1;
  font-size: 0;
}
.pdetail-info .watch-content__detail .image-holder .inner-holder img {
  max-width: 90%;
  max-height: 80%;
}
.pdetail-info .watch-content__detail .image-holder .inner-holder picture {
  height: 100%;
  width: 100%;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdetail-info .watch-content__detail .image-holder .inner-holder picture img {
  max-width: 100%;
  max-height: 100%;
}

.pdetail-info .watch-content__detail .detail-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid #9e9e9e;
  width: 100%;
  max-width: 100%;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__detail .detail-holder {
    width: 100%;
    border-top: none;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .pdetail-info .watch-content__detail .detail-holder .specification, .pdetail-info .watch-content__detail .detail-holder .description {
    width: 100%;
  }
  .pdetail-info .watch-content__detail .detail-holder .story-link, .pdetail-info .watch-content__detail .detail-holder .share-wrapper {
    width: 50%;
  }
}
.pdetail-info .watch-content__detail .detail-holder .specification {
  margin-top: 72px;
}

.pdetail-info .watch-content__detail .detail-holder .specification li {
  padding: 6px 0 3px 0;
  border-top: 1px solid #9e9e9e;
}

.pdetail-info .watch-content__gallery {
  display: flex;
  justify-content: space-between;
}

.pdetail-info .watch-content__gallery .img-holder__item a {
  cursor: url(/wp-content/themes/mdm/images/crosshair-light.png) 30 30, auto;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__gallery .img-holder__item a {
    cursor: auto;
  }
}
.pdetail-info .watch-content__gallery .img-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: flex-start;
  width: calc(50% - 5px);
  cursor: url(/wp-content/themes/mdm/images/crosshair-light.png) 30 30, auto;
}
.pdetail-info .watch-content__gallery .img-holder .img-holder__item {
  width: 100%;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__gallery .img-holder {
    width: 100%;
    cursor: auto;
  }
  .pdetail-info .watch-content__gallery .img-holder .img-holder__item {
    height: 0;
    padding-top: 100%;
  }
}
.pdetail-info .watch-content__gallery .img-holder__item-wrapper {
  position: relative;
  width: calc(50% - 5px);
  padding-top: calc(50% - 5px);
  border-top: 1px solid #9e9e9e;
}

.pdetail-info .watch-content__gallery .img-holder__item .inner-holder {
  position: absolute;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
}

.pdetail-info .watch-content__gallery .img-holder__item .inner-holder picture,
.pdetail-info .watch-content__gallery .img-holder__item .inner-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.pdetail-info .watch-content__gallery .img-holder__item .inner-holder .img-idx {
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 13px;
}

.pdetail-info .watch-content__gallery .img-holder .img-description {
  display: none;
  padding-bottom: 32px;
  position: relative;
}

.pdetail-info .watch-content__gallery .img-holder .img-description .description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.pdetail-info .watch-content__gallery .img-holder .img-description.shown .description {
  -webkit-line-clamp: initial;
  line-clamp: initial;
}

.pdetail-info .watch-content__gallery .img-holder .img-description .description-arrow {
  position: absolute;
  padding: 0;
  right: 15px;
  bottom: 10px;
  box-sizing: border-box;
  height: 13px;
  width: 13px;
  border-style: solid;
  border-color: #9e9e9e;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  transition: transform 150ms ease-in-out;
  transform-origin: center;
  cursor: pointer;
}

@media only screen and (min-width: 770px) {
  .pdetail-info .watch-content__gallery .img-holder .img-description .description-arrow:hover {
    transform: rotate(45deg) scale(1.2);
  }
}
.pdetail-info .watch-content__gallery .img-holder .img-description .description-title {
  text-transform: uppercase;
  margin-bottom: 5px;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__gallery .img-holder .img-description {
    display: block;
  }
}
.pdetail-info .watch-content__gallery .content-holder {
  width: calc(50% - 5px);
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__gallery .content-holder {
    display: none;
  }
}
.pdetail-info .watch-content__gallery .content-holder__item {
  padding-bottom: 20px;
}

.pdetail-info .watch-content__gallery .content-holder__item:not(:first-child) {
  margin-top: 12px;
}

.pdetail-info .watch-content__gallery .content-holder__item .inner-holder {
  display: flex;
  position: relative;
  border-top: 1px solid #9e9e9e;
  padding-top: 6px;
  justify-content: space-between;
}

.pdetail-info .watch-content__gallery .content-holder__item .inner-holder .txt-idx {
  width: calc(25% - 5px);
  font-size: 13px;
}

.pdetail-info .watch-content__gallery .content-holder__item .inner-holder .description {
  width: calc(75% - 5px);
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease-in-out;
  padding-right: 20px;
}

.pdetail-info .watch-content__gallery .content-holder__item .inner-holder .description-title {
  text-transform: uppercase;
  margin-bottom: 5px;
}

.pdetail-info .watch-content__gallery .content-holder__item .inner-holder .description-arrow {
  position: absolute;
  padding: 4px;
  right: 15px;
  bottom: -20px;
  box-sizing: border-box;
  height: 4px;
  width: 4px;
  border-style: solid;
  border-color: #9e9e9e;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  transition: transform 150ms ease-in-out;
  cursor: pointer;
  transform-origin: bottom;
  overflow: visible;
}
.pdetail-info .watch-content__gallery .content-holder__item .inner-holder .description-arrow::before {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: calc(50% - 13px);
  left: calc(50% + 2px);
  transform: translate(-50%) rotate(-45deg);
  transform-origin: center;
}

.pdetail-info .watch-content__gallery .content-holder__item .inner-holder .description-arrow:hover {
  transform: rotate(45deg) scale(1.2);
}

.pdetail-info .watch-content__gallery .content-holder__item.shown .inner-holder .description {
  -webkit-line-clamp: initial;
  line-clamp: initial;
}

.pdetail-info .watch-content__gallery .content-holder__item.shown .description-arrow {
  transform: rotate(225deg) !important;
  right: 7px;
}

.pdetail-info .watch-content__image .caption-holder {
  display: flex;
  justify-content: space-between;
  width: calc(50% - 5px);
  padding: 10px 0;
  border-top: 1px solid #9e9e9e;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__image .caption-holder {
    width: 100%;
    border-top: none;
  }
}
.pdetail-info .watch-content__image .caption-holder .img-idx {
  width: calc(25% - 5px);
}

.pdetail-info .watch-content__image .caption-holder .caption {
  width: calc(75% - 5px);
}

.pdetail-info .watch-content__image .img-holder picture,
.pdetail-info .watch-content__image .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdetail-info .watch-content__image.ordinary {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__image.ordinary {
    display: block;
  }
}
.pdetail-info .watch-content__image.ordinary .img-holder {
  width: calc(50% - 5px);
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__image.ordinary .img-holder {
    width: 100%;
  }
}
.pdetail-info .watch-content__image.ordinary .img-holder picture,
.pdetail-info .watch-content__image.ordinary .img-holder img {
  border: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdetail-info .watch-content__image.f-image {
  margin-right: -20px;
  margin-left: -10px;
}
@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__image.f-image {
    margin-right: -10px;
    margin-left: -10px;
  }
}

.pdetail-info .watch-content__image.f-image .img-holder {
  width: 100%;
  border-top: 1px solid #9e9e9e;
}
.pdetail-info .watch-content__image.f-image .img-holder picture,
.pdetail-info .watch-content__image.f-image .img-holder img {
  width: 100%;
}

.pdetail-info .watch-content__image.f-image .caption-holder {
  border-top: none;
}

.pdetail-info .watch-content__imgtxt {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__imgtxt {
    display: block;
  }
}
.pdetail-info .watch-content__imgtxt.reversed .img-holder {
  order: 1;
}

.pdetail-info .watch-content__imgtxt .img-holder {
  width: calc(50% - 5px);
  font-size: 0;
  padding-top: 6px;
  border-top: 1px solid #9e9e9e;
}

.watch-content__imgtxt:last-child .img-holder {
  border-bottom: 1px solid #9e9e9e;
}

.watch-content__imgtxt:last-child .txt-holder {
  border-bottom: 1px solid #9e9e9e;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__imgtxt .img-holder {
    width: 100%;
    border: none;
    padding-top: 0;
  }
}
.pdetail-info .watch-content__imgtxt .img-holder picture,
.pdetail-info .watch-content__imgtxt .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdetail-info .watch-content__imgtxt .txt-holder {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: calc(50% - 5px);
  padding: 6px 0;
  font-size: 14px;
  border-top: 1px solid #9e9e9e;
}

.pdetail-info .watch-content__imgtxt .txt-holder .title {
  margin-right: 10px;
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__imgtxt .txt-holder {
    width: 100%;
  }
}
.pdetail-info .watch-content__imgtxt .txt-holder .text {
  width: 100%;
}

.pdetail-info .watch-content__imgtxt .txt-holder.show-idx .img-idx {
  width: calc(25% - 5px);
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__imgtxt .txt-holder.show-idx .img-idx {
    width: 20px;
  }
}
.pdetail-info .watch-content__imgtxt .txt-holder.show-idx .text {
  width: calc(75% - 5px);
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__imgtxt .txt-holder.show-idx .text {
    width: calc(100% - 20px);
  }
}
.pdetail-info .watch-content__video .video-holder {
  font-size: 0;
  position: relative;
  padding-top: 56.25%;
  width: 100%;
}

.pdetail-info .watch-content__video .video-holder video {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
}

.pdetail-info .watch-content__video .video-holder iframe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdetail-info .watch-content__video .caption-holder {
  padding: 10px 0;
  width: calc(50% - 5px);
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__video .caption-holder {
    width: calc(100% - 20px);
  }
}
.pdetail-info .watch-content__video .caption-holder.show-idx {
  display: flex;
  justify-content: space-between;
  max-width: 640px;
}

.pdetail-info .watch-content__video .caption-holder.show-idx .img-idx {
  width: calc(25% - 5px);
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__video .caption-holder.show-idx .img-idx {
    width: 20px;
  }
}
.pdetail-info .watch-content__video .caption-holder.show-idx .caption {
  width: calc(75% - 5px);
}

@media only screen and (max-width: 769px) {
  .pdetail-info .watch-content__video .caption-holder.show-idx .caption {
    width: calc(100% - 20px);
  }
}
.buy-section-intro .btn-disabled {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--f-main-regular);
  line-height: 20px !important;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.18);
  padding: 44px 30px 38px 24px !important;
  border: 1px solid #000;
  color: #000 !important;
}
@media (hover: hover) {
  .buy-section-intro .btn-disabled:hover {
    background-color: #000 !important;
    color: #fff !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.buy-section-intro .btn-disabled:active {
  background-color: transparent !important;
  color: #000 !important;
  border: 1px solid #000;
  box-shadow: 4px 6px 12px 0 rgba(0, 0, 0, 0.18);
}
.buy-section-intro .btn-disabled i {
  margin: 0;
}
.buy-section-intro .price {
  margin-top: 10px;
  text-align: left;
}

.buynow {
  padding: 6px 10px;
}

.image-desktop > picture, .image-desktop > picture img,
.image-desktop > img,
.image-desktop > img img {
  height: 50vh;
  float: right;
  margin-right: 10vw;
  object-fit: contain;
}
@media only screen and (max-width: 991px) {
  .image-desktop > picture, .image-desktop > picture img,
  .image-desktop > img,
  .image-desktop > img img {
    margin-right: 7vw;
  }
}

.specs {
  display: flex;
  flex-direction: row-reverse;
}

.specification {
  flex: 1 1 auto;
  text-align: left;
  margin-left: 10px;
}

.description-top {
  display: flex;
}

.description-top > h2 {
  flex: 0 0 32%;
}

.description-top > a {
  flex: 0 0 68%;
  display: flex;
  flex-direction: column-reverse;
}

/* ExtraProductOptions */
.tc-extra-product-options {
  visibility: visible;
}

.cpf-type-select,
.cpf-type-textfield,
.cpf-type-product {
  padding: 0 15px 15px 0 !important;
  max-width: 90% !important;
  margin: auto !important;
}

.cpf-type-select > div > div > div,
.cpf-type-textfield > div > div > div {
  padding: 0 !important;
}

h3.tc-cell {
  flex: 0 0 25% !important;
  -ms-flex: 0 0 25% !important;
  border-top: 1px solid black;
  padding: 15px;
  font-size: 14px;
  font-family: var(--f-main-regular);
  text-transform: uppercase;
  padding-top: 6px !important;
}

@media only screen and (max-width: 769px) {
  h3.tc-cell {
    flex: 0 0 35% !important;
  }
}
.tm-tooltip {
  display: none;
}

.cpf-type-select select,
.cpf-type-textfield input {
  padding: 6px 15px 15px 5px;
  border: none;
  border-top: 1px solid black;
  background: none;
}

.tc-epo-element-product-holder > label.tm-epo-field-label > span.tc-label-wrap {
  display: none !important;
}

.tm-extra-product-options ul.tmcp-elements li.tmcp-field-wrap {
  padding: 0 !important;
}

.product-container-custom {
  border-top: 1px solid black;
  background-color: #f1f1f1;
  min-height: 400px;
  padding: 5px;
}

.item-info-custom {
  text-align: left;
  /*  max-height: 50px; */
  font-size: 16px;
}

.item-info-custom .name {
  font-weight: 700;
  font-family: var(--f-main-bold);
}

.item-info-custom .price {
  color: #9e9e9e;
  font-weight: 400;
  font-family: var(--f-main-regular);
}

.product-container-custom picture,
.product-container-custom img {
  max-height: 300px;
  width: auto !important;
}

.product-actions {
  display: flex;
}

.watch-specs {
  flex: 0 0 40%;
  max-width: 40%;
}

.buyprod {
  flex: 0 0 60%;
  max-width: calc(50% - 5px);
  margin-left: 5px;
}

.watch-specs h3,
.watch-content-section h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--f-main-regular);
  padding-top: 6px;
  font-size: 14px;
  line-height: 17px;
  border-top: 1px solid #9e9e9e;
  margin-top: 15px;
  padding-left: 10px;
}

.watch-content-section h3 {
  max-width: 50%;
}

.tm-extra-product-options .cpf-type-product-thumbnail ul.tmcp-ul-wrap.tm-element-ul-product {
  flex-wrap: nowrap;
  overflow: hidden;
}

.tc-epo-element-product-thumbnail {
  float: left;
  display: flex;
}

#tm-extra-product-options .tc-price-wrap {
  font-size: 12px;
  color: #bfbfbf;
  padding-left: 7.5px;
}

#tm-extra-product-options .gravur-field-ul .tc-price-wrap {
  position: absolute;
  right: 0;
  top: 0;
  justify-content: end;
}

.quantity {
  display: none;
}

.tm-extra-product-options-totals {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#tm-epo-totals {
  margin-left: 27px;
}

.custom-add button.single_add_to_cart_button {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--f-main-regular);
  line-height: 20px !important;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.18);
  padding: 21px 36px 21px 27px !important;
  border: 1px solid #000;
  background-color: var(--btnSimpleBg) !important;
  color: var(--btnSimpleText) !important;
}
@media (hover: hover) {
  .custom-add button.single_add_to_cart_button:hover {
    background-color: var(--btnSimpleBgHover) !important;
    color: var(--btnSimpleTextHover) !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.custom-add button.single_add_to_cart_button:active {
  background-color: transparent !important;
  color: #000 !important;
  border: 1px solid #000;
  box-shadow: 4px 6px 12px 0 rgba(0, 0, 0, 0.18);
}
.custom-add button.single_add_to_cart_button i {
  margin: 0;
}

.extra {
  margin-bottom: 20px;
}

.tm-options-totals,
.tm-final-totals {
  font-size: 14px;
}

.tm-extra-product-options-totals .price.amount.options,
.tm-extra-product-options-totals .price.amount.fees,
.tm-extra-product-options-totals .price.amount.subscription-fee {
  font-size: 12px;
}

.tm-extra-product-options-totals .amount.final {
  font-size: 12px;
}

.single-product .mobile-slikz .slick-list {
  width: calc(100% - 64px);
  margin-left: 32px;
  margin-right: 32px;
}
.single-product .slick-track {
  display: flex;
  align-items: stretch;
  min-width: 100%;
}
.single-product .slick-slide {
  float: none;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .single-product .slick-slide {
    min-height: 100% !important;
    height: auto !important;
  }
  .single-product .slick-slide .inner-holder,
  .single-product .slick-slide img,
  .single-product .slick-slide picture {
    height: 100%;
  }
  .single-product .slick-slide picture,
  .single-product .slick-slide img {
    object-fit: contain;
  }
}

.pdetail-info__cta .inner-holder .secondary_button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--stickyColorBg) !important;
  border-top: 1px solid var(--stickyColorBg) !important;
  border-bottom: 1px solid var(--stickyColorBg) !important;
  padding: 16px 25px !important;
}
.pdetail-info__cta .inner-holder .secondary_button.out-of-stock {
  flex-direction: column;
  gap: 0.5em;
}
.pdetail-info__cta .inner-holder .secondary_button.out-of-stock.wishlist-success {
  background-color: #3F7D20 !important;
  border-color: #3F7D20 !important;
}
.pdetail-info__cta .inner-holder .secondary_button.out-of-stock.wishlist-success + .sold-out-form + .sticky-wishlist-icon {
  border-left-color: #3F7D20 !important;
}
.pdetail-info__cta .inner-holder .secondary_button.out-of-stock .button-inner-text {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1920px) {
  .pdetail-info__cta .inner-holder .secondary_button.out-of-stock .button-inner-text {
    max-width: 220px;
  }
}
@media screen and (min-width: 1921px) {
  .pdetail-info__cta .inner-holder .secondary_button.out-of-stock .button-inner-text {
    max-width: 300px;
  }
}
@media screen and (min-width: 2600px) {
  .pdetail-info__cta .inner-holder .secondary_button.out-of-stock .button-inner-text {
    max-width: initial;
  }
}
@media screen and (max-width: 769px) {
  .pdetail-info__cta .inner-holder .secondary_button {
    padding: 25px 16px !important;
  }
}

.cpf-type-select select {
  background: url("/wp-content/themes/mdm/library/images/arrow-down.png") no-repeat 100% 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-size: 15.56px auto;
}

.single-product .fancybox-navigation .fancybox-button {
  cursor: default;
}
.single-product .fancybox-navigation .slick-prev {
  left: 0;
  padding-left: 20px;
}
.single-product .fancybox-navigation .slick-prev::before, .single-product .fancybox-navigation .slick-prev::after {
  left: 10px;
}
.single-product .fancybox-navigation .slick-next {
  right: 0;
  padding-right: 20px;
}
.single-product .fancybox-navigation .slick-next::before, .single-product .fancybox-navigation .slick-next::after {
  right: 10px;
}
.single-product .fancybox-slide {
  cursor: none;
}
.single-product .fancybox-content {
  /* override fancybox css added by js */
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}
.single-product .fancybox-content picture,
.single-product .fancybox-content img {
  object-fit: contain;
  width: calc(100% - 80px);
  height: calc(100% - 60px);
  left: 40px;
  top: 30px;
}
@media only screen and (min-width: 770px) {
  .single-product .fancybox-content picture,
  .single-product .fancybox-content img {
    width: calc(100% - 120px);
    height: calc(100% - 90px);
    left: 60px;
    top: 45px;
  }
}
@media only screen and (min-width: 1100px) {
  .single-product .fancybox-content picture,
  .single-product .fancybox-content img {
    width: calc(100% - 160px);
    height: calc(100% - 120px);
    left: 80px;
    top: 60px;
  }
}
.single-product .fancybox-content .soldier-wrapper {
  position: static;
  width: 100%;
}
.single-product .fancybox-content.soldier {
  overflow: scroll;
}
.single-product .fancybox-content.soldier picture,
.single-product .fancybox-content.soldier img {
  max-width: 100vw;
  height: auto;
  max-height: 186vh;
  position: static;
  transform: none;
  margin-left: 40px;
}
@media only screen and (min-width: 770px) {
  .single-product .fancybox-content.soldier picture,
  .single-product .fancybox-content.soldier img {
    margin-left: 60px;
  }
}
@media only screen and (min-width: 1100px) {
  .single-product .fancybox-content.soldier picture,
  .single-product .fancybox-content.soldier img {
    margin-left: 80px;
  }
}
@media only screen and (max-width: 769px) {
  .single-product .fancybox-content.soldier {
    overflow: hidden;
  }
  .single-product .fancybox-content.soldier .soldier-wrapper {
    display: none;
    position: relative;
    width: 140%;
    left: -20%;
    top: 0;
    height: 100%;
    max-width: initial;
    max-height: initial;
  }
  .single-product .fancybox-content.soldier .soldier-wrapper picture,
  .single-product .fancybox-content.soldier .soldier-wrapper img {
    width: 100%;
    max-width: initial;
    margin: 0;
    height: 100%;
    object-fit: contain;
  }
  .single-product .fancybox-content.soldier .soldier-wrapper:last-of-type {
    display: block;
  }
}
.single-product .fancybox-navigation .fancybox-button::before, .single-product .fancybox-navigation .fancybox-button::after {
  z-index: 4;
}
.single-product .fancybox-navigation .inner-button {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
}

.tm-extra-product-options .tc-row {
  margin-left: 0;
  margin-right: 0;
}
.tm-extra-product-options .tc-row .cpf-type-select,
.tm-extra-product-options .tc-row .cpf-type-textfield,
.tm-extra-product-options .tc-row .cpf-type-product {
  padding: 0 0 15px 0 !important;
  max-width: initial !important;
}
.tm-extra-product-options > .tc-row {
  margin-left: 5px;
}
.tm-extra-product-options .tc-cell {
  padding: 0;
}

.tc-price-wrap {
  padding-left: 5px;
}

.pdetail-info .watch-content__gallery .content-holder__item .inner-holder .description-arrow:hover {
  transform: rotate(45deg) scale(1);
}

.single-product select,
.single-product input {
  font-size: 14px;
}

.product-actions {
  margin-top: 35px;
}

.tc-chars {
  font-size: 13.33px;
}

@media only screen and (max-width: 767px) {
  #watchspecs {
    margin-bottom: 10px;
  }
  .cpf-type-select select,
  .cpf-type-textfield input {
    padding: 7.5px;
  }
  h3.tc-cell {
    padding: 5.5px !important;
  }
  .watch-content__item.watch-content__detail {
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 10px;
  }
}
.tm-epo-field-label select {
  padding-top: 6px;
}

.story-link, .story-link a {
  gap: 6px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-family: var(--f-main-medium);
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #9E9E9E;
}

@media only screen and (min-width: 770px) {
  .story-link {
    display: none;
  }
}
.share-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
}
@media screen and (min-width: 770px) {
  .share-wrapper {
    margin-bottom: -12px;
  }
}
.share-wrapper .share-buttons {
  display: flex;
  align-items: stretch;
  gap: 12px;
  justify-content: flex-end;
}
.share-wrapper .share-b {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #000;
  font-size: 11px;
  padding: 0.5em 0 0;
}

@media only screen and (min-width: 1921px) {
  .pdetail-info__cta .inner-holder {
    font-size: 18px;
  }
  .watch-specs h3,
  .watch-content-section h3 {
    font-size: 18px;
  }
  .pdetail-info .watch-content__imgtxt .txt-holder {
    font-size: 16px;
  }
}
#yith-wcwl-popup-message {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.fancybox-infobar {
  top: auto;
  bottom: 0;
}

.fancybox-stage .fancybox-content {
  transform-origin: center center;
  transition: width 0.3s linear, height 0.3s linear;
}
.fancybox-stage.zoomed-in .fancybox-slide {
  overflow: scroll;
}
.fancybox-stage.zoomed-in .fancybox-content {
  width: calc(100% * var(--zoom-factor)) !important;
  height: calc(100% * var(--zoom-factor)) !important;
}
.fancybox-stage.zoomed-in img.fancybox-image {
  max-height: initial;
}

.zoom-buttons {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: calc(100vw - 61px);
  top: 20px;
  gap: 20px;
}
.zoom-buttons span {
  display: block;
  width: 41px;
  height: 41px;
  position: relative;
}
.zoom-buttons span::before {
  display: block;
  content: "";
  position: absolute;
  left: 5px;
  top: 20px;
  height: 1px;
  width: 31px;
  background: #000;
}
.zoom-buttons .zoom-in::after {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: 20px;
  width: 1px;
  height: 31px;
  background: #000;
}

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