* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.bannerify__button {
  padding: 8px 16px 10px 16px;
  font-size: 18px;
  background-color: #334fb4;
  outline: 0;
  border: 0;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
}

.bannrify_warning_message {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}

.modal {
  position: fixed;
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100%;
  left: 0;
  transform: scale(0);
  z-index: 999;
  justify-content: center;
  background-color: #000c;
  right: 0;
  top: 0;
  bottom: 0;
}

.modal--is-active {
  transform: scale(1);
}

.modal-background {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
}

.modal-layout {
  padding: 0;
  border-radius: 3px;
  font-weight: 300;
}

.modal-layout-inner {
  width: 100%;
  height: 100%;
}

.modal-body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
}

.modal-body-left {
  flex: 1;
  height: 100%;
}

.modal-body-left img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

#modal-container .modal-background .modal-body-left img {
  position: relative;
}

.modal-body-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  height: 100%;
  width: 100%;
  position: relative;
}

.bannerify__button_small_size {
  padding: 4px 8px 5px 8px;
  font-size: 14px;
  border-radius: 6px;
}

@media only screen and (max-width: 1180px) {
  .bannerify__button {
    padding: 6px 12px 6px 12px;
    font-size: 14px;
  }

  .bannerify__button_small_size {
    padding: 4px 8px 5px 8px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 800px) {
  .modal-body {
    flex-direction: column;
  }

  .modal-body {
    position: relative;
  }

  .bannerify__button {
    padding: 4px 8px 5px 8px;
    font-size: 14px;
    border-radius: 6px;
  }

  .bannerify__button_small_size {
    padding: 4px 8px 5px 8px;
    font-size: 12px;
  }
}

/* announcement Banner */

.modal-body-right-content {
  padding: 32px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-body-subtitle {
  font-size: 28px;
  font-weight: 800;
  padding-bottom: 8px;
}

.modal-body-description {
  font-size: 18px;
  margin-bottom: 4px;
}

.banner-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  cursor: pointer;
}

.banner-close .icon-close {
  width: 38px;
  height: 20px;
  transition: 0.5s;
}

.banner-close .icon-close:hover {
  color: #ec1010;
}

.no-scroll {
  overflow: hidden;
}

.announcement_banner_button {
  margin-top: 24px;
}

/* animation */

/* Fade In: */
.fade-in {
  opacity: 0;
  animation: fade-in-animation 1s ease-in forwards;
}

@keyframes fade-in-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Slide In from the top: */
.slide-in-top {
  opacity: 0;
  transform: translateY(-100%);
  animation: slide-in-top-animation 1s ease-in forwards;
}

@keyframes slide-in-top-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In from the top: */
.slide-in-bottom {
  opacity: 0;
  transform: translateY(200%);
  animation: slide-in-bottom-animation 1s ease-in forwards;
}

@keyframes slide-in-bottom-animation {
  0% {
    opacity: 0;
    transform: translateY(200%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In from the left: */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100%);
  animation: slide-in-left-animation 1s ease-in forwards;
}

@keyframes slide-in-left-animation {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from the right: */
.slide-in-right {
  opacity: 0;
  transform: translateX(200%);
  animation: slide-in-right-animation 1s ease-in forwards;
}

@keyframes slide-in-right-animation {
  0% {
    opacity: 0;
    transform: translateX(200%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media only screen and (max-width: 1180px) {
  .modal-body-right-content {
    padding: 12px;
    height: 100%;
    width: 100%;
  }

  .modal-body-subtitle {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 4px;
  }

  .modal-body-description {
    font-size: 14px;
  }
}

@media only screen and (max-width: 800px) {
  .modal-body-right-content {
    padding: 24px 32px;
  }

  .modal-body-subtitle {
    font-weight: bold;
    font-size: 28px;
    padding-bottom: 16px;
    line-height: 1.2;
  }

  .modal-body-description {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
  }
}

/* announcement Banner */

/* newsletter Banner */
.newsletter__bannerify {
  margin: 0 30px;
}

.newsletter__bannerify_spaceing {
  margin: 0 42px;
}

.newsletter__bannerify_content {
  margin-bottom: 32px;
}

.newsletter__bannerify_content_title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 14px;
  line-height: 1.2;
}

.newsletter__bannerify_content_title_small {
  font-size: 24px;
}

.newsletter__bannerify_content_description {
  font-size: 18px;
  line-height: 1.3;
}

.newsletter__bannerify .newsletter_input {
  -webkit-appearance: none;
  margin: 0;
  min-width: 0;
  border: 1px solid #000000;
  box-shadow: inset 0 0 0 1px #ccc;
  max-width: 100%;
  padding: 8px 10px;
  letter-spacing: 0;
  border-radius: 0;
  font-size: 16px;
  height: 40px;
  width: 300px;
  border-radius: 8px;
}

.newsletter_input:focus {
  outline: none;
}

.bannerify__newsletter_form {
  width: 100%;
}

.bannerify__form_content {
  width: 100%;
  display: flex;
  gap: 10px;
}

.bannerify__form_content_small {
  flex-direction: column;
}

.newsletter_input_small {
  width: 100% !important;
}

.bannerify__newsletter_form_error {
  display: block;
  color: red;
  font-size: 14px;
  margin-top: 8px;
}

.bannerify__newsletter_form_success {
  display: block;
  color: #3a837e;
  font-size: 14px;
  margin-top: 8px;
}

@media only screen and (max-width: 1180px) {
  .newsletter__bannerify {
    margin: 0 16px;
  }

  .newsletter__bannerify_content {
    margin-bottom: 18px;
  }

  .newsletter__bannerify_content_title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .newsletter__bannerify_content_description {
    font-size: 14px;
    line-height: 1.2;
  }

  .newsletter__bannerify .newsletter_input {
    font-size: 14px;
    height: 40px;
    width: 230px;
  }

  .newsletter__bannerify .newsletter_button {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
  }

  .newsletter_submit_button {
    padding: 8px 16px 10px 16px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 800px) {
  .newsletter__bannerify_mobile_body {
    position: absolute !important;
    top: 0;
    left: 0;
    transform: translateX(0);
    height: 100% !important;
    width: 100% !important;
    opacity: 0.8;
  }

  .newsletter__bannerify_spaceing {
    margin: 0 24px;
  }

  .newsletter__bannerify_content_title {
    font-size: 24px;
    font-weight: bold;
  }

  .bannerify__form_content {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .newsletter__bannerify .newsletter_input {
    width: 100%;
  }
}

/* Product new arrival */

.product__new_arrival_banner {
  width: 100%;
  height: 100%;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bannerify__product_image_container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.bannerify__product_image {
  height: 200px;
  width: 200px;
}

.bannerify__product_image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bannerify_product_title {
  font-weight: bold;
  font-size: 24px;
}

.bannerify_in_stock {
  font-weight: bold;
  font-size: 16px;
  color: #459a4e;
}

.bannerify_out_of_stock {
  font-weight: bold;
  font-size: 16px;
  color: #a30505;
}

.bannerify_price__regular {
  font-size: 32px;
  font-weight: bold;
}

.bannerify_compare_price_item {
  font-size: 16px;
  margin-right: 3px;
}

.hidden {
  display: none;
}

.bannerify_product_variant {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bannerify_product_variant_item {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.bannerify_product_variant_item_list {
  display: flex;
  gap: 8px;
  flex-flow: wrap;
}

.bannerify_product_variant_item_list_item {
  border: 1px solid #dceafe;
  padding: 1px 6px;
  line-height: 1.2;
  border-radius: 6px;
  background: #dceafe;
  color: #145ec7;
}

.bannerify_product_banner_button {
  margin-top: 24px;
}

.bannerify__product_samll_image {
  height: 120px;
  width: 120px;
}

.bannerify__product_samll_title {
  font-size: 18px;
}

.bannerify_price__regular_small {
  font-size: 20px;
}

.product__new_arrival_banner_small {
  padding: 10px 16px !important;
}

.bannerify__product_image_container_samll {
  margin-bottom: 10px;
}

.bannerify_product_variant_item_list_item_small {
  font-size: 12px;
  line-height: 1;
  padding: 2px 4px;
}

@media only screen and (max-width: 1180px) {
  .bannerify__product_image {
    height: 120px;
    width: 120px;
  }

  .bannerify_product_title {
    font-size: 16px;
  }

  .bannerify_in_stock,
  .bannerify_out_of_stock {
    font-size: 12px;
  }

  .bannerify_price__regular {
    font-size: 14px;
  }

  .bannerify_compare_price_item {
    font-size: 12px;
  }

  .bannerify_product_variant_item_list_item {
    line-height: 1.2;
    font-size: 10px;
  }

  .bannerify__product_samll_image {
    height: 80px;
    width: 80px;
  }

  .bannerify__product_samll_title {
    font-size: 12px;
  }

  .bannerify_price__regular_small {
    font-size: 12px;
  }

  .bannerify_product_banner_button {
    margin-top: 10px;
  }

  .bannerify_product_variant {
    gap: 4px;
    margin-top: 6px;
  }

  .bannerify_compare_price {
    line-height: 1.3;
  }
}

@media only screen and (max-width: 800px) {
  .bannerify__product_image {
    height: 130px;
    width: 130px;
  }

  .bannerify_product_title {
    font-size: 20px;
  }
  .bannerify_in_stock,
  .bannerify_out_of_stock {
    font-size: 14px;
  }

  .bannerify_price__regular {
    font-size: 20px;
  }

  .bannerify_product_variant_item {
    font-size: 14px;
  }

  .bannerify_product_variant_item_list_item {
    line-height: 1.2;
  }

  .bannerify__product_samll_image {
    height: 100px;
    width: 100px;
  }

  .bannerify__product_samll_title {
    font-size: 16px;
  }

  .bannerify_price__regular_small {
    font-size: 16px;
  }

  .bannerify_compare_price {
    line-height: 1.5;
  }

  .bannerify_product_banner_button {
    margin-top: 12px;
  }
}

/* promotional video */

.promotional_video_section {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promotional_video_option {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.promotional_video_option video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotional_video_caption {
  z-index: 99;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.promotional_video_caption_title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
}

.promotional_video_caption_description {
  font-size: 64px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.3;
}

.video_selection_bannerify {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 30px;
  font-size: 32px;
  font-weight: bold;
}

.promotional_video_caption_button {
  margin-top: 18px;
}

@media only screen and (max-width: 800px) {
  .promotional_video_caption_title {
    font-size: 14px;
  }

  .promotional_video_caption_description {
    font-size: 32px;
  }
}

/* Slider for collections */

.app_banner_slider {
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  transition: 0.5s;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.app_banner_slider::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.app_banner_slider {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.mouse_down {
  cursor: grabbing;
}

.app_banner_slider.dragging * {
  cursor: grabbing;
  user-select: none;
  pointer-events: none !important;
}

.app_banner_grabbing {
  z-index: 9999;
}

.app_grid-4 {
  --visible-cols: 4;
}

.app_grid-5 {
  --visible-cols: 5;
}

.app_grid-6 {
  --visible-cols: 6;
}

.app_grid-7 {
  --visible-cols: 7;
}

.app_grid {
  --col-gap: 24px;
  --col-size: calc(
    (110% - var(--col-gap) * (var(--visible-cols) - 1)) / var(--visible-cols)
  );
  display: grid;
  grid-gap: var(--col-gap);
}

.app_grid-slider {
  grid-auto-flow: column;
  grid-template-columns: var(--col-size);
  grid-auto-columns: var(--col-size);
  position: relative;
  cursor: grab;
}

.app_showcase_banner {
  width: 100%;
}

.collections_showcase_banner {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  padding: 30px;
}

.collections_showcase_slider-viewport {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 42px;
  overflow: hidden;
}

.collections_showcase_card {
  width: 100%;
  display: flex;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  scroll-snap-align: start;
}

.collections_showcase_slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}

.collections_showcase_slide .collections_showcase_image {
  height: 0;
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
}

.collections_showcase_slide .collections_showcase_image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.collections_showcase_slide .collections-title {
  flex: 1;
  height: 30%;
}

.collections_showcase_heading {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.collections_showcase_heading_small {
  font-size: 24px;
}

.collections_showcase_content {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.collections_showcase_title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

@media only screen and (max-width: 1180px) {
  .app_grid {
    --col-gap: 12px;
  }

  .app_grid-4 {
    --visible-cols: 3;
  }

  .app_grid-5 {
    --visible-cols: 4;
  }

  .app_grid-6 {
    --visible-cols: 5;
  }

  .app_grid-7 {
    --visible-cols: 6;
  }

  .collections_showcase_heading {
    font-size: 28px;
  }

  .collections_showcase_heading_small {
    font-size: 20px;
  }

  .collections_showcase_title {
    font-size: 12px;
  }

  .collections_showcase_slider-viewport {
    gap: 28px;
  }

  .collections_showcase_slider-viewport_small {
    gap: 10px;
  }
}

@media only screen and (max-width: 800px) {
  .app_grid-4 {
    --visible-cols: 2;
  }

  .app_grid-5 {
    --visible-cols: 2;
  }

  .app_grid-6 {
    --visible-cols: 2;
  }

  .app_grid-7 {
    --visible-cols: 2;
  }

  .collections_showcase_heading {
    font-size: 20px;
  }

  .collections_showcase_title {
    font-size: 14px;
  }

  .collections_showcase_slider-viewport {
    gap: 24px;
  }
}