.m_mainVerticalSlider {
  margin: 30px 40px;
}
.m_slide__list {
  padding: 0 5px;
  display: flex;
  justify-content: unset;
  max-width: unset;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 15px;
  list-style-type: none;
}

li.m_mainVerticalSlide a {
  text-decoration: none;
  color: unset;
} 
.m_mainVerticalSlide {
  position: relative;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: rgb(35 35 35 / 30%) 1px 1px 5px 1px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  flex-shrink: 0;
  width: 20%;
}
.m_productPrice {
  margin: 0;
}
/* .m_mainVerticalSlide:not(:last-child) {
  margin-right: 20px;
} */
.m_verticalSlideVideoWrapper {
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.m_verticalSlideVideoWrapper video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.m_verticalSlideVideoWrapper .m_videoImage {
  transform: translate3d(0px, 0px, 0px);
  position: absolute;
  bottom: -22px;
  width: 44px;
  height: 44px;
  box-shadow: rgb(0 0 0 / 25%) 1px 1px 2px 0px;
  overflow: hidden;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.m_verticalSlideVideoWrapper .m_videoImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  background-color: black;
}
.m_verticalSlideInfoWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center; 
}
.m_productTitle {
  margin-top: 30px;
  margin-bottom: 2px;
}
.m_productPrice {
  margin-bottom: 10px !important;
}
.m_productCTA {
  margin: 0 20px 10px;
  border-radius: 4px;
  padding: 5px;
  text-align: center;
  font-size: 13px;
  display: block;
}
.m_soldOut {
  pointer-events: none;
  opacity: 0.5;
}
.m_productPrice {
  width: 80%;
  display: -webkit-box;
  height: auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: normal;
  color: rgb(35, 35, 35);
  text-align: center;
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0 10px;
}
.m_productTitle {
  display: block;
  height: auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: normal;
  color: rgb(35, 35, 35);
  text-align: center;
  overflow: hidden;
  width: 100%;
  padding: 0 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.m_soundIcons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.m_soundIcon {
  width: 30px;
  height: 30px;
  background: #000000ab;
  padding: 5px;
  border-radius: 50%;
  display: none;
}
.m_soundIcon.m_unmuteIcon {
  display: none;
}
.m_sectionHeading {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.m_slide__list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  margin-left: 0.5rem;
  display: none;
}
.m_basic_pvf_wrapper_main {
  position: relative;
}
.m_basic_pvf_navigator_btn {
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}
#m_basic_pvf_navigator_btn_left {
  left: -50px;
}
#m_basic_pvf_navigator_btn_right {
  right: -50px;
}
.m_basic_pvf_navigator svg {
  cursor: pointer;
}
.m_slide__list::-webkit-scrollbar-track {
  background: transparent;
  border: 1px solid #dfdfdf;
}
.m_slide__list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10rem;
}
.m_slide__list::-webkit-scrollbar-corner {
  display: none;
}
.m_slide__list::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.merox-loader {
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid black;
  width: 17px;
  height: 17px;
  display: block;
  text-align: center;
  margin: 2px auto;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
.m_our_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background: linear-gradient(-225deg, #ffffffc3 25px, transparent 0);
  color: white;
  overflow: hidden;
}
.m_pvf_overlay {
  display: block !important;
  position: absolute;
  height: 100%;
  bottom: 0;
  background: rgb(0 0 0 / 14%);
  color: white;
  width: 100%;
  transition: .5s ease;
  text-align: center;
  opacity: 1;
}
.m_collectionTitle {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: end;
  justify-content: center;
  width: 85%;
  font-size: 14px;
  margin: 0 auto;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: normal;
  border: 1px solid white;
  padding: 10px;
  text-align: center;
  color: white !important;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.soundIconsFixed {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: block;
  width: 25px;
  height: 25px;
}
.m_soundIconFixed {
  width: 25px;
  height: 25px;
  background: #000000ab;
  padding: 4px;
  display: block;
  border-radius: 50%;
}
.m_soundIconFixed.m_unmuteIcon {
  display: none;
} 
@media (max-width: 768px) {
  .m_mainVerticalSlider {
    margin: 20px;
  }
  /* .m_mainVerticalSlide {
    margin: 5px !important;
  } */
  .m_prodInfo {
    width: 70%;
    line-height: 19px;
    height: 56px;
    padding: 0;
  }
  .m_productCTA {
    font-size: 11px;
  }
  .m_slide__list::-webkit-scrollbar {
    display: none;
  } 
  .centralizedSliderMobile {
    justify-content: center;
  }
  #m_basic_pvf_navigator_btn_left {
    left: -33px;
    width: 35px;
    height: 35px;
  }   
  #m_basic_pvf_navigator_btn_right {
    right: -35px;
    width: 35px;
    height: 35px;
  }   
}

@media (min-width: 767px) {
  .centralizedSliderDesktop {
    justify-content: center;
  }
}