/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
            .color_blue{color:#00AFEF;}
            .en_page{
                direction: ltr;
            }
            .fa_page{
                direction: rtl;
            }
            .w200 {
               width:200px;
            }
            .w400 {
               width:400px;
            }
            .w600 {
               width:600px;
            }
            .w800 {
               width:800px;
            }
            .w1000 {
               width:1000px;
            }
            .w1200 {
               width:1200px;
            }
            .dtcd {
                display:table-cell;
                padding:10px;
                text-align: justify;
            }
            .pdig {
                line-height: 1.75;
            }
            .imgdi{
                width:100%;
                height:100%;
            }
            .gerd{
                border-radius: 50%;
            }
            .diul{
                 padding:20px;
            }
            #description_5 .ti_ma_h{
                width:1200px;
                text-align: center;
                margin: auto;
                padding: 0 10px;
                font-size:20px;
                line-height: 32px;
                color: ;
                background-color: ;
            }
            #description_5 .ti_ma_h a{color: ;}
            .pborder{
                border-left-width:4px;
                border-left-style: solid;
                border-left-color: ;
                padding-left:25px;
                font-weight: 600;
            }
            .pborder_title{
                line-height: 1.42857143;
                padding-right: 25px;
                font-size:1em;
            }
            .p_text_pic{
                width:100%;
                border-radius: 3px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                -webkit-transition: box-shadow 300ms 0s ease;
                -moz-transition: box-shadow 300ms 0s ease;
                -ms-transition: box-shadow 300ms 0s ease;
                -o-transition: box-shadow 300ms 0s ease;
                transition: box-shadow 300ms 0s ease;
                display:table;
                table-layout: fixed;
                }
            .p_text_pic:hover{
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            }
            .pl_text_pic{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                padding: 14px 28px;
                /*background-color: #f4f4f4;*/
                text-align: center;
            }
            .pl_text_pic2{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                background-color: #f4f4f4;
                text-align: center;
            }
            .pr_text_pic{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 20px 65px 15px 20px;
                overflow: hidden;
            }
            .pr_text_pic2{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 10px 20px;
                overflow: hidden;
            }

        
             .pr_text_pic:before{
                position: absolute;
                display: block;
                top: 24px;
                right: 4%;
                background-image:url(https://lupinusnails.ca/files/main/module/description/img/quote.png);
                content:"";
                background-size: contain;
                width: 26px;
                height: 26px;
                background-repeat: no-repeat;

             }
             .imgtext{
                width:100%;
                /*height:120px;*/
                border-radius:50%;
             }
             .imgtext2{
                width:100%;
             }
             .video_tag{width:100%;}

        
                #description_5 .container_box_3{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                    .dLineH{line-height:2em;}
                
                #description_5 .font_title_box_0{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_0 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_0  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_0 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_0 a{
                    color:;
                }
                .sidebar_box_0 a:hover{
                    color:;
                }
                .sidebar_box_0 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
            #description_5 .public_center{
                border-spacing:16px;
            }
        #description_5{
                  padding-top:64px;
                }#description_5{
                        font-size:16px;
                }#description_5 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_5 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_5 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_5 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_5 .color_title{/*range title asli module*/
                            color: ;
                                }#description_5 .color_text{/*range text haye module  */
                            color:;
                                }#description_5 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_5 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_5 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_5 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#description_5 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_5 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_5 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#description_5 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }.module[data-id_page='459']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}.module[data-id_page='459']:hover{;}.module[data-id_page='459']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='459'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='459']  
                
                .module[data-id_page='459'] .new_admin_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                .module[data-id_page='459'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='459']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #layout_box_25.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:top;background-attachment:scroll;grid-column-start:1;grid-column-end:3;grid-row-start:1;grid-row-end:3;padding-top:494px;padding-bottom:64px;padding-right:48px;padding-left:48px;border-style:none;}#layout_box_25:hover{}#layout_box_25 .new_layout_description{color:#ffffff;font-weight:300;font-size:16px;line-height:32px;text-align:left;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_15:hover .new_layout_description{}#layout_box_25 .new_layout_title{color:#ffffff90;font-weight:bold;font-size:25px;text-align:left;}#layout_box_25:hover .new_layout_title{}
                #layout_box_25 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_25 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_15 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_25:hover .background-img{
                        filter:brightness(0.4);
                    }
                
                #layout_box_25 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Glitter/1655974734_Glitter.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_25 .new_layout_layer{padding-top:64px;padding-bottom:64px;padding-right:64px;padding-left:64px;}#layout_box_25:hover .new_layout_layer{} 
                
                #layout_box_25 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_25 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_25:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_25 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_25:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_25 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_25.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_24.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:top;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:1;grid-row-end:2;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_24:hover{}#layout_box_24 .new_layout_description{color:#fff;font-weight:300;font-size:14px;line-height:26px;text-align:center;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_14:hover .new_layout_description{}#layout_box_24 .new_layout_title{color:#ffffff;font-weight:bold;font-size:22px;text-align:center;}#layout_box_14:hover .new_layout_title{}
                #layout_box_24 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_24 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_14 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_24:hover .background-img{
                        filter:brightness(0.4);
                    }
                
                #layout_box_24 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/1655974107_Canada nails.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_24 .new_layout_layer{padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:8px;}#layout_box_24:hover .new_layout_layer{} 
                
                #layout_box_24 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 800ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_24 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_24:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_24 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_24:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_24 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_24.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_23.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:1;grid-row-end:2;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_23:hover{}#layout_box_23 .new_layout_description{color:#ffffff;font-weight:300;font-size:14px;line-height:28px;text-align:center;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_13:hover .new_layout_description{}#layout_box_23 .new_layout_title{color:#ffffff;font-weight:bold;font-size:20px;text-align:center;}#layout_box_13:hover .new_layout_title{}
                #layout_box_23 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_23 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_13 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_23:hover .background-img{
                        filter:brightness(0.4);
                    }
                
                #layout_box_23 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Summer/1655723436_Summer Nail.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_23 .new_layout_layer{padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:8px;}#layout_box_23:hover .new_layout_layer{} 
                
                #layout_box_23 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 800ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_23 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_23:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_23 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_23:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_23 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_23.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_22.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:2;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:8px;border-style:none;}#layout_box_22:hover{}#layout_box_22 .new_layout_description{color:#ffffff;font-weight:300;font-size:14px;line-height:28px;text-align:center;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_12:hover .new_layout_description{}#layout_box_22 .new_layout_title{color:#ffffff;font-weight:bold;font-size:22px;text-align:center;}#layout_box_12:hover .new_layout_title{}
                #layout_box_22 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_22 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_12 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_22:hover .background-img{
                        filter:brightness(0.4);
                    }
                
                #layout_box_22 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/1656156019_eometric nails.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_22 .new_layout_layer{padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:8px;}#layout_box_22:hover .new_layout_layer{} 
                
                #layout_box_22 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 800ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_22 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_22:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_22 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_22:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_22 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_22.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_21.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:2;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_21:hover{}#layout_box_21 .new_layout_description{color:#ffffff;font-weight:300;font-size:14px;line-height:28px;text-align:center;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_11:hover .new_layout_description{}#layout_box_21 .new_layout_title{color:#ffffff;font-weight:bold;font-size:20px;text-align:center;}#layout_box_11:hover .new_layout_title{}
                #layout_box_21 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_21 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_11 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_21:hover .background-img{
                        filter:brightness(0.4);
                    }
                
                #layout_box_21 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Branded/1656078427_randed nails 2.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_21 .new_layout_layer{padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:8px;}#layout_box_21:hover .new_layout_layer{} 
                
                #layout_box_21 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 800ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_21 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_21:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_21 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_21:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_21 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_21.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_20.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:3;grid-row-end:4;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_20:hover{}#layout_box_20 .new_layout_description{color:#ffffff;font-weight:300;font-size:14px;line-height:28px;text-align:center;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_10:hover .new_layout_description{}#layout_box_20 .new_layout_title{color:#ffffff;font-weight:bold;font-size:22px;text-align:center;}#layout_box_10:hover .new_layout_title{}
                #layout_box_20 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_20 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_10 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_20:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_20 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Stonenail/1655724132_Stone nail.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_20 .new_layout_layer{padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:8px;}#layout_box_10:hover .new_layout_layer{} 
                
                #layout_box_20 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 1000ms ease-out;
                    background-color:rgba(135,81,43,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_20 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_20:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(135,81,43,.8);
                }
            
                #layout_box_20 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_20:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_20 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_20.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_19.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:3;grid-row-end:4;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_19:hover{}#layout_box_19 .new_layout_description{color:#ffffff;font-weight:300;font-size:14px;line-height:28px;text-align:center;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_9:hover .new_layout_description{}#layout_box_19 .new_layout_title{color:#ffffff;font-weight:bold;font-size:22px;text-align:center;}#layout_box_9:hover .new_layout_title{}
                #layout_box_19 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_19 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_9 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_19:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_19 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Minimal/1655721478_Minimal.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_19 .new_layout_layer{padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:8px;}#layout_box_9:hover .new_layout_layer{} 
                
                #layout_box_19 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 1000ms ease-out;
                    background-color:rgba(92,219,211,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_19 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_19:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(92,219,211,.8);
                }
            
                #layout_box_19 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_19:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_19 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_19.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_18.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:5;grid-row-start:3;grid-row-end:5;padding-top:400px;padding-bottom:64px;padding-right:48px;padding-left:48px;border-style:none;}#layout_box_18:hover{}#layout_box_18 .new_layout_description{color:#ffffff;font-weight:300;font-size:16px;line-height:32px;text-align:left;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_8:hover .new_layout_description{}#layout_box_18 .new_layout_title{color:#ffffff90;font-weight:bold;font-size:25px;text-align:left;}#layout_box_18:hover .new_layout_title{}
                #layout_box_18 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_18 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_8 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_18:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_18 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/French/1655724982_French.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_18 .new_layout_layer{padding-top:64px;padding-bottom:64px;padding-right:64px;padding-left:64px;}#layout_box_8:hover .new_layout_layer{} 
                
                #layout_box_18 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 800ms ease-out;
                    background-color:rgba(97,71,0,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_18 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_18:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(97,71,0,.55);
                }
            
                #layout_box_18 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_18:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_18 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_18.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_17.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:4;grid-row-end:5;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_17:hover{}#layout_box_17 .new_layout_description{color:#ffffff;font-weight:300;font-size:14px;line-height:28px;text-align:center;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_7:hover .new_layout_description{}#layout_box_17 .new_layout_title{color:#ffffff;font-weight:bold;font-size:22px;text-align:center;}#layout_box_7:hover .new_layout_title{}
                #layout_box_17 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_17 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_7 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_17:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_17 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Star/1655726701_star.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_17 .new_layout_layer{padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:8px;}#layout_box_7:hover .new_layout_layer{} 
                
                #layout_box_17 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 800ms ease-out;
                    background-color:rgba(255,255,184,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_17 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_17:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(255,255,184,.8);
                }
            
                #layout_box_17 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_17:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_17 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_17.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_16.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:4;grid-row-end:5;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_16:hover{}#layout_box_16 .new_layout_description{color:#ffffff;font-weight:300;font-size:14px;line-height:28px;text-align:center;padding-top:8px;border-style:solid;border-color:#555;}#layout_box_6:hover .new_layout_description{}#layout_box_16 .new_layout_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:center;}#layout_box_16:hover .new_layout_title{}
                #layout_box_16 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_16 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_6 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_16:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_16 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Animalnailprint/1655724072_animal nail.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_16 .new_layout_layer{padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:8px;}#layout_box_6:hover .new_layout_layer{} 
                
                #layout_box_16 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 800ms ease-out;
                    background-color:rgba(24,26,25,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
                #layout_box_16 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_16:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(24,26,25,.8);
                }
            
                #layout_box_16 .new_layout_box{
                    visibility:visible;
                }
                #layout_box_16:hover .new_layout_box{
                    visibility:hidden;
                }
            
            #layout_box_16 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_16.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_4 .new_layout_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:48px;}.module[data-id_page='459']:hover .new_layout_title_main{}
                #module_new_layout_4 .new_layout_title_main h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #module_new_layout_4 .new_layout_box_main{display:grid;width:1200px;height:1500px;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(4,1fr);column-gap:32px;row-gap:32px;visibility:visible;padding-top:40px;padding-bottom:64px;padding-right:32px;padding-left:32px;border-style:none;}.module[data-id_page='459']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_4{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_4 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_4 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_4 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_4 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_4 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='451']{;background-color:#fab2a6;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}.module[data-id_page='451']:hover{;}.module[data-id_page='451']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='451'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='451']  
                
                .module[data-id_page='451'] .new_admin_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                .module[data-id_page='451'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='451']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_284 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_284 .content_str{
				width:100%;
			}
            #module_new_medical_284 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_284 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_284 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_284 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_284 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_284 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_284 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_284 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_284 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_284 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_284 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_284 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_284 a{
                color:#00AFEF!important;
            }
            #module_new_medical_284 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_284 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_284 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_862 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_862 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_862 .background-img{
                border-radius:;
            }
        #medical_box_862 .new_medical_button{color:#fff;background-color:#500241;font-weight:300;font-size:15px;width:270px;height:50px;line-height:50px;text-align:center;margin-top:32px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#fff;box-shadow:0px 0px 0px 0px ;}#medical_box_431 .new_medical_button:hover{border-color:#fff !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_862 .new_medical_title{color:#000;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_431:hover .new_medical_title{}
                #medical_box_862 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_862 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_58:hover .new_medical_icon{}#medical_box_862.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:80px;padding-left:80px;border-style:none;}#medical_box_431:hover{}#medical_box_862 .new_medical_description{color:#5c2952;font-weight:300;font-size:16px;line-height:32px;text-align:center;padding-top:32px;border-style:solid;border-color:#555;}#medical_box_431:hover .new_medical_description{}
                   #medical_box_862  
                
                #medical_box_862 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_862 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_862:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_862 .mode1-size_862{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_862 .new_medical_box > div{
                width:100%;
            }
             #medical_box_862 > div{
               height:100%;
            }
            #medical_box_862 .mode2-size_862{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_862 .mode3-size_862{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_862 .mode4-size_862{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_862 .mode5-size_862{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_862 .mode6-size_862{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_862 .mode7-size_862{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_862 .mode7-size_862 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_862 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_862 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_862{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_862 span:hover{
                color:!important;
            }
            .custom2_862{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_862 span:hover{
                color:;
            }
            #medical_box_862 .mode-btn1_862{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_862 .mode-btn1_862 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_862 .mode-btn2_862{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_862 .mode-btn2_862 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_862 .div-btn-title_main_862{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_862 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_862 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_284 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:128px;padding-bottom:128px;padding-right:192px;padding-left:192px;border-style:none;}.module[data-id_page='451']:hover .new_medical_box_main{}
            #module_new_medical_284 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_284 .new_medical_module{
                    width:816px;
                    position:relative;
                    overflow:hidden;
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_284 .medical_box_main_animation_trigger{
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_284 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_284 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_284 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_284 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_284 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_284 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_284 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_284 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_284{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_284 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_284 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_284 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_284 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_284 .swiper-container{
                width:1200px;
            }
            #module_new_medical_284 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_284 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_284 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_284 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_289 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_289 .content_str{
				width:100%;
			}
            #module_new_medical_289 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_289 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_289 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_289 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_289 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_289 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_289 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_289 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_289 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_289 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_289 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_289 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_289 a{
                color:#00AFEF!important;
            }
            #module_new_medical_289 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_289 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_289 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_913 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655721396_Round nail 2.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_913 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_913 .background-img{
                border-radius:;
            }
        
            #medical_box_913 .new_medical_icon{
                
            }
        #medical_box_913 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_913 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_913 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_913:hover .new_medical_icon{}#medical_box_913 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_913  
                
                #medical_box_913 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_913 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_913:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_913 .mode1-size_913{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_913 .new_medical_box > div{
                width:100%;
            }
             #medical_box_913 > div{
               height:100%;
            }
            #medical_box_913 .mode2-size_913{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_913 .mode3-size_913{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_913 .mode4-size_913{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_913 .mode5-size_913{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_913 .mode6-size_913{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_913 .mode7-size_913{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_913 .mode7-size_913 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_913 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_913 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_913{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_913 span:hover{
                color:!important;
            }
            .custom2_913{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_913 span:hover{
                color:;
            }
            #medical_box_913 .mode-btn1_913{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_913 .mode-btn1_913 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_913 .mode-btn2_913{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_913 .mode-btn2_913 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_913 .div-btn-title_main_913{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_913 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_913 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_912 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655721853_Square nail 2.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_912 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_912 .background-img{
                border-radius:;
            }
        
            #medical_box_912 .new_medical_icon{
                
            }
        #medical_box_912 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_912 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_912 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_912:hover .new_medical_icon{}#medical_box_912 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_912  
                
                #medical_box_912 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_912 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_912:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_912 .mode1-size_912{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_912 .new_medical_box > div{
                width:100%;
            }
             #medical_box_912 > div{
               height:100%;
            }
            #medical_box_912 .mode2-size_912{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_912 .mode3-size_912{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_912 .mode4-size_912{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_912 .mode5-size_912{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_912 .mode6-size_912{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_912 .mode7-size_912{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_912 .mode7-size_912 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_912 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_912 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_912{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_912 span:hover{
                color:!important;
            }
            .custom2_912{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_912 span:hover{
                color:;
            }
            #medical_box_912 .mode-btn1_912{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_912 .mode-btn1_912 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_912 .mode-btn2_912{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_912 .mode-btn2_912 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_912 .div-btn-title_main_912{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_912 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_912 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_911 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655723658_Rounded Square.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_911 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_911 .background-img{
                border-radius:;
            }
        
            #medical_box_911 .new_medical_icon{
                
            }
        #medical_box_911 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_911 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_911 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_911:hover .new_medical_icon{}#medical_box_911 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_911  
                
                #medical_box_911 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_911 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_911:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_911 .mode1-size_911{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_911 .new_medical_box > div{
                width:100%;
            }
             #medical_box_911 > div{
               height:100%;
            }
            #medical_box_911 .mode2-size_911{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_911 .mode3-size_911{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_911 .mode4-size_911{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_911 .mode5-size_911{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_911 .mode6-size_911{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_911 .mode7-size_911{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_911 .mode7-size_911 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_911 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_911 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_911{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_911 span:hover{
                color:!important;
            }
            .custom2_911{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_911 span:hover{
                color:;
            }
            #medical_box_911 .mode-btn1_911{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_911 .mode-btn1_911 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_911 .mode-btn2_911{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_911 .mode-btn2_911 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_911 .div-btn-title_main_911{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_911 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_911 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_910 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655721087_Oval.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_910 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_910 .background-img{
                border-radius:;
            }
        
            #medical_box_910 .new_medical_icon{
                
            }
        #medical_box_910 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_910 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_910 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_910:hover .new_medical_icon{}#medical_box_910 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_910  
                
                #medical_box_910 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_910 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_910:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_910 .mode1-size_910{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_910 .new_medical_box > div{
                width:100%;
            }
             #medical_box_910 > div{
               height:100%;
            }
            #medical_box_910 .mode2-size_910{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_910 .mode3-size_910{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_910 .mode4-size_910{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_910 .mode5-size_910{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_910 .mode6-size_910{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_910 .mode7-size_910{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_910 .mode7-size_910 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_910 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_910 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_910{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_910 span:hover{
                color:!important;
            }
            .custom2_910{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_910 span:hover{
                color:;
            }
            #medical_box_910 .mode-btn1_910{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_910 .mode-btn1_910 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_910 .mode-btn2_910{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_910 .mode-btn2_910 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_910 .div-btn-title_main_910{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_910 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_910 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_909 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655722046_Squoval nail.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_909 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_909 .background-img{
                border-radius:;
            }
        
            #medical_box_909 .new_medical_icon{
                
            }
        #medical_box_909 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_909 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_909 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_909:hover .new_medical_icon{}#medical_box_909 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_909  
                
                #medical_box_909 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_909 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_909:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_909 .mode1-size_909{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_909 .new_medical_box > div{
                width:100%;
            }
             #medical_box_909 > div{
               height:100%;
            }
            #medical_box_909 .mode2-size_909{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_909 .mode3-size_909{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_909 .mode4-size_909{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_909 .mode5-size_909{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_909 .mode6-size_909{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_909 .mode7-size_909{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_909 .mode7-size_909 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_909 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_909 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_909{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_909 span:hover{
                color:!important;
            }
            .custom2_909{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_909 span:hover{
                color:;
            }
            #medical_box_909 .mode-btn1_909{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_909 .mode-btn1_909 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_909 .mode-btn2_909{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_909 .mode-btn2_909 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_909 .div-btn-title_main_909{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_909 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_909 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_908 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655720879_Ballerina.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_908 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_908 .background-img{
                border-radius:;
            }
        
            #medical_box_908 .new_medical_icon{
                
            }
        #medical_box_908 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_908 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_908 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_908:hover .new_medical_icon{}#medical_box_908 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_908  
                
                #medical_box_908 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_908 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_908:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_908 .mode1-size_908{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_908 .new_medical_box > div{
                width:100%;
            }
             #medical_box_908 > div{
               height:100%;
            }
            #medical_box_908 .mode2-size_908{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_908 .mode3-size_908{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_908 .mode4-size_908{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_908 .mode5-size_908{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_908 .mode6-size_908{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_908 .mode7-size_908{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_908 .mode7-size_908 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_908 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_908 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_908{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_908 span:hover{
                color:!important;
            }
            .custom2_908{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_908 span:hover{
                color:;
            }
            #medical_box_908 .mode-btn1_908{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_908 .mode-btn1_908 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_908 .mode-btn2_908{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_908 .mode-btn2_908 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_908 .div-btn-title_main_908{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_908 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_908 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_907 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655720581_Almond nail.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_907 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_907 .background-img{
                border-radius:;
            }
        
            #medical_box_907 .new_medical_icon{
                
            }
        #medical_box_907 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_907 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_907 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_907:hover .new_medical_icon{}#medical_box_907.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_907:hover{}#medical_box_907 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_907  
                
                #medical_box_907 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_907 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_907:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_907 .mode1-size_907{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_907 .new_medical_box > div{
                width:100%;
            }
             #medical_box_907 > div{
               height:100%;
            }
            #medical_box_907 .mode2-size_907{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_907 .mode3-size_907{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_907 .mode4-size_907{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_907 .mode5-size_907{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_907 .mode6-size_907{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_907 .mode7-size_907{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_907 .mode7-size_907 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_907 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_907 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_907{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_907 span:hover{
                color:!important;
            }
            .custom2_907{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_907 span:hover{
                color:;
            }
            #medical_box_907 .mode-btn1_907{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_907 .mode-btn1_907 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_907 .mode-btn2_907{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_907 .mode-btn2_907 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_907 .div-btn-title_main_907{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_907 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_907 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_906 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655812371_iletto nails 2.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_906 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_906 .background-img{
                border-radius:;
            }
        
            #medical_box_906 .new_medical_icon{
                
            }
        #medical_box_906 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_906 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_906 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_906:hover .new_medical_icon{}#medical_box_906 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_906  
                
                #medical_box_906 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_906 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_906:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_906 .mode1-size_906{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_906 .new_medical_box > div{
                width:100%;
            }
             #medical_box_906 > div{
               height:100%;
            }
            #medical_box_906 .mode2-size_906{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_906 .mode3-size_906{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_906 .mode4-size_906{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_906 .mode5-size_906{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_906 .mode6-size_906{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_906 .mode7-size_906{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_906 .mode7-size_906 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_906 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_906 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_906{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_906 span:hover{
                color:!important;
            }
            .custom2_906{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_906 span:hover{
                color:;
            }
            #medical_box_906 .mode-btn1_906{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_906 .mode-btn1_906 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_906 .mode-btn2_906{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_906 .mode-btn2_906 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_906 .div-btn-title_main_906{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_906 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_906 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_905 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655811721_Lipstick nails.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_905 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_905 .background-img{
                border-radius:;
            }
        
            #medical_box_905 .new_medical_icon{
                
            }
        #medical_box_905 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_905 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_905 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_905:hover .new_medical_icon{}#medical_box_905 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_905  
                
                #medical_box_905 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_905 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_905:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_905 .mode1-size_905{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_905 .new_medical_box > div{
                width:100%;
            }
             #medical_box_905 > div{
               height:100%;
            }
            #medical_box_905 .mode2-size_905{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_905 .mode3-size_905{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_905 .mode4-size_905{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_905 .mode5-size_905{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_905 .mode6-size_905{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_905 .mode7-size_905{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_905 .mode7-size_905 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_905 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_905 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_905{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_905 span:hover{
                color:!important;
            }
            .custom2_905{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_905 span:hover{
                color:;
            }
            #medical_box_905 .mode-btn1_905{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_905 .mode-btn1_905 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_905 .mode-btn2_905{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_905 .mode-btn2_905 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_905 .div-btn-title_main_905{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_905 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_905 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_904 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/Design/Shape/1655970531_Flare nail.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_904 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_904 .background-img{
                border-radius:;
            }
        
            #medical_box_904 .new_medical_icon{
                
            }
        #medical_box_904 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_904 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_904 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_904:hover .new_medical_icon{}#medical_box_904 .new_medical_description{color:#595959;font-weight:300;font-size:14px;line-height:28px;text-align:left;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_903:hover .new_medical_description{}
                   #medical_box_904  
                
                #medical_box_904 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_904 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_904:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_904 .mode1-size_904{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_904 .new_medical_box > div{
                width:100%;
            }
             #medical_box_904 > div{
               height:100%;
            }
            #medical_box_904 .mode2-size_904{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_904 .mode3-size_904{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_904 .mode4-size_904{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_904 .mode5-size_904{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_904 .mode6-size_904{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_904 .mode7-size_904{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_904 .mode7-size_904 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_904 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_904 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_904{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_904 span:hover{
                color:!important;
            }
            .custom2_904{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_904 span:hover{
                color:;
            }
            #medical_box_904 .mode-btn1_904{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_904 .mode-btn1_904 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_904 .mode-btn2_904{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_904 .mode-btn2_904 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_904 .div-btn-title_main_904{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_904 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_904 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_289 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:32px;}.module[data-id_page='461']:hover .new_medical_title_main{}#module_new_medical_289 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='461']:hover .new_medical_box_main{}
            #module_new_medical_289 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_289 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_289 .new_medical_description p{
                    height:250px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_289 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_289 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_289 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_289 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_289 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_289 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_289 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_289 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_289 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_289 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_289 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_289 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_289 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_289 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_289 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_289 .new_medical_description{ 
                    height:250px;
                    overflow: auto;
                }
                #module_new_medical_289 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_289 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_289 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_289 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_289 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_289 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_289{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_289 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_289 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_289 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_289 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_289 .swiper-container{
                width:1200px;
            }
            #module_new_medical_289 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_289 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_289 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_289 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='464']{;background-size:cover;background-repeat:no-repeat;background-position:top;background-attachment:fixed;width:100%;max-width:100%;border-style:none;}.module[data-id_page='464']:hover{;}.module[data-id_page='464']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='464'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='464']:hover .background-img{
                        filter:blur(5px);
                    }
                
                .module[data-id_page='464'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:blur(5px);
                }
            
                   .module[data-id_page='464']  
                
                .module[data-id_page='464'] .new_admin_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                .module[data-id_page='464'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='464']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='464']{
                               background-image:url("https://lupinusnails.ca/files/module/1655550536_ev-slide-03-img.jpg");
                           }
                       
            #module_new_medical_292 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_292 .content_str{
				width:100%;
			}
            #module_new_medical_292 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_292 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_292 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_292 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_292 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_292 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_292 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_292 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_292 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_292 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_292 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_292 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_292 a{
                color:#00AFEF!important;
            }
            #module_new_medical_292 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_292 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_292 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_927 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_927 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_927 .background-img{
                border-radius:;
            }
        #medical_box_927 .new_medical_title{color:#ffffff99;font-weight:bold;font-size:40px;text-align:left;line-height:56px;}#medical_box_914:hover .new_medical_title{}
                #medical_box_927 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_927 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_58:hover .new_medical_icon{}#medical_box_927 .new_medical_description{color:#ffffff;font-weight:300;font-size:16px;line-height:30px;text-align:left;padding-top:32px;border-style:solid;border-color:#555;}#medical_box_914:hover .new_medical_description{}
                   #medical_box_927  
                
                #medical_box_927 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_927 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_927:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_927 .mode1-size_927{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_927 .new_medical_box > div{
                width:100%;
            }
             #medical_box_927 > div{
               height:100%;
            }
            #medical_box_927 .mode2-size_927{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_927 .mode3-size_927{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_927 .mode4-size_927{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_927 .mode5-size_927{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_927 .mode6-size_927{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_927 .mode7-size_927{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_927 .mode7-size_927 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_927 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_927 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_927{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_927 span:hover{
                color:!important;
            }
            .custom2_927{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_927 span:hover{
                color:;
            }
            #medical_box_927 .mode-btn1_927{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_927 .mode-btn1_927 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_927 .mode-btn2_927{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_927 .mode-btn2_927 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_927 .div-btn-title_main_927{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_927 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_927 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_292 .new_medical_title_main{color:#5c2952;font-weight:bold;justify-content:center;text-align:center;}.module[data-id_page='22']:hover .new_medical_title_main{}#module_new_medical_292 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:128px;padding-bottom:64px;border-style:none;}.module[data-id_page='464']:hover .new_medical_box_main{}
            #module_new_medical_292 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_292 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_292 .medical_box_main_animation_trigger{
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_292 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_292 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_292 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_292 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_292 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_292 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_292 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_292 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_292{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_292 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_292 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_292 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_292 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_292 .swiper-container{
                width:1200px;
            }
            #module_new_medical_292 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_292 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_292 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_292 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='465']{;background-size:cover;background-repeat:no-repeat;background-position:top;background-attachment:fixed;width:100%;max-width:100%;border-style:none;}.module[data-id_page='465']:hover{;}.module[data-id_page='465']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='465'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='465']:hover .background-img{
                        filter:blur(5px);
                    }
                
                .module[data-id_page='465'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:blur(5px);
                }
            
                   .module[data-id_page='465']  
                
                .module[data-id_page='465'] .new_admin_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                .module[data-id_page='465'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='465']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='465']{
                               background-image:url("https://lupinusnails.ca/files/module/1655550536_ev-slide-03-img.jpg");
                           }
                       
            #module_new_medical_293 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_293 .content_str{
				width:100%;
			}
            #module_new_medical_293 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_293 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_293 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_293 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_293 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_293 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_293 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_293 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_293 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_293 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_293 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_293 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_293 a{
                color:#00AFEF!important;
            }
            #module_new_medical_293 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_293 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_293 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_938 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655551851_w Project (45).webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_938 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_938 .background-img{
                border-radius:;
            }
        
            #medical_box_938 .new_medical_icon{
                
            }
        #medical_box_938 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_938 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_938 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_925:hover .new_medical_icon{}#medical_box_938.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_938:hover{}
                   #medical_box_938  
                
                #medical_box_938 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_938 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_938:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_938 .mode1-size_938{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_938 .new_medical_box > div{
                width:100%;
            }
             #medical_box_938 > div{
               height:100%;
            }
            #medical_box_938 .mode2-size_938{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_938 .mode3-size_938{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_938 .mode4-size_938{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_938 .mode5-size_938{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_938 .mode6-size_938{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_938 .mode7-size_938{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_938 .mode7-size_938 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_938 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_938 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_938{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_938 span:hover{
                color:!important;
            }
            .custom2_938{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_938 span:hover{
                color:;
            }
            #medical_box_938 .mode-btn1_938{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_938 .mode-btn1_938 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_938 .mode-btn2_938{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_938 .mode-btn2_938 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_938 .div-btn-title_main_938{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_938 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_938 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_937 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552466_2.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_937 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_937 .background-img{
                border-radius:;
            }
        
            #medical_box_937 .new_medical_icon{
                
            }
        #medical_box_937 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_937 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_937 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_924:hover .new_medical_icon{}#medical_box_937.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_937:hover{}
                   #medical_box_937  
                
                #medical_box_937 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_937 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_937:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_937 .mode1-size_937{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_937 .new_medical_box > div{
                width:100%;
            }
             #medical_box_937 > div{
               height:100%;
            }
            #medical_box_937 .mode2-size_937{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_937 .mode3-size_937{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_937 .mode4-size_937{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_937 .mode5-size_937{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_937 .mode6-size_937{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_937 .mode7-size_937{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_937 .mode7-size_937 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_937 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_937 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_937{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_937 span:hover{
                color:!important;
            }
            .custom2_937{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_937 span:hover{
                color:;
            }
            #medical_box_937 .mode-btn1_937{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_937 .mode-btn1_937 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_937 .mode-btn2_937{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_937 .mode-btn2_937 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_937 .div-btn-title_main_937{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_937 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_937 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_936 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552465_3.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_936 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_936 .background-img{
                border-radius:;
            }
        
            #medical_box_936 .new_medical_icon{
                
            }
        #medical_box_936 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_936 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_936 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_923:hover .new_medical_icon{}#medical_box_936.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_936:hover{}
                   #medical_box_936  
                
                #medical_box_936 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_936 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_936:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_936 .mode1-size_936{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_936 .new_medical_box > div{
                width:100%;
            }
             #medical_box_936 > div{
               height:100%;
            }
            #medical_box_936 .mode2-size_936{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_936 .mode3-size_936{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_936 .mode4-size_936{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_936 .mode5-size_936{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_936 .mode6-size_936{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_936 .mode7-size_936{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_936 .mode7-size_936 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_936 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_936 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_936{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_936 span:hover{
                color:!important;
            }
            .custom2_936{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_936 span:hover{
                color:;
            }
            #medical_box_936 .mode-btn1_936{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_936 .mode-btn1_936 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_936 .mode-btn2_936{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_936 .mode-btn2_936 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_936 .div-btn-title_main_936{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_936 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_936 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_935 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552465_4.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_935 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_935 .background-img{
                border-radius:;
            }
        
            #medical_box_935 .new_medical_icon{
                
            }
        #medical_box_935 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_935 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_935 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_922:hover .new_medical_icon{}#medical_box_935.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_935:hover{}
                   #medical_box_935  
                
                #medical_box_935 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_935 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_935:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_935 .mode1-size_935{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_935 .new_medical_box > div{
                width:100%;
            }
             #medical_box_935 > div{
               height:100%;
            }
            #medical_box_935 .mode2-size_935{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_935 .mode3-size_935{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_935 .mode4-size_935{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_935 .mode5-size_935{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_935 .mode6-size_935{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_935 .mode7-size_935{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_935 .mode7-size_935 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_935 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_935 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_935{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_935 span:hover{
                color:!important;
            }
            .custom2_935{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_935 span:hover{
                color:;
            }
            #medical_box_935 .mode-btn1_935{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_935 .mode-btn1_935 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_935 .mode-btn2_935{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_935 .mode-btn2_935 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_935 .div-btn-title_main_935{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_935 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_935 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_934 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552465_5.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_934 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_934 .background-img{
                border-radius:;
            }
        
            #medical_box_934 .new_medical_icon{
                
            }
        #medical_box_934 .new_medical_title{color:#ffffff;font-weight:bold;font-size:16px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_921:hover .new_medical_title{}
                #medical_box_934 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_934 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_921:hover .new_medical_icon{}#medical_box_934.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_934:hover{}
                   #medical_box_934  
                
                #medical_box_934 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_934 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_934:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_934 .mode1-size_934{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_934 .new_medical_box > div{
                width:100%;
            }
             #medical_box_934 > div{
               height:100%;
            }
            #medical_box_934 .mode2-size_934{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_934 .mode3-size_934{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_934 .mode4-size_934{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_934 .mode5-size_934{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_934 .mode6-size_934{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_934 .mode7-size_934{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_934 .mode7-size_934 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_934 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_934 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_934{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_934 span:hover{
                color:!important;
            }
            .custom2_934{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_934 span:hover{
                color:;
            }
            #medical_box_934 .mode-btn1_934{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_934 .mode-btn1_934 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_934 .mode-btn2_934{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_934 .mode-btn2_934 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_934 .div-btn-title_main_934{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_934 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_934 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_933 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552465_6.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_933 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_933 .background-img{
                border-radius:;
            }
        
            #medical_box_933 .new_medical_icon{
                
            }
        #medical_box_933 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_933 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_933 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_920:hover .new_medical_icon{}#medical_box_933.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_933:hover{}
                   #medical_box_933  
                
                #medical_box_933 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_933 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_933:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_933 .mode1-size_933{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_933 .new_medical_box > div{
                width:100%;
            }
             #medical_box_933 > div{
               height:100%;
            }
            #medical_box_933 .mode2-size_933{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_933 .mode3-size_933{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_933 .mode4-size_933{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_933 .mode5-size_933{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_933 .mode6-size_933{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_933 .mode7-size_933{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_933 .mode7-size_933 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_933 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_933 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_933{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_933 span:hover{
                color:!important;
            }
            .custom2_933{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_933 span:hover{
                color:;
            }
            #medical_box_933 .mode-btn1_933{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_933 .mode-btn1_933 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_933 .mode-btn2_933{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_933 .mode-btn2_933 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_933 .div-btn-title_main_933{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_933 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_933 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_932 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552465_7.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_932 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_932 .background-img{
                border-radius:;
            }
        
            #medical_box_932 .new_medical_icon{
                
            }
        #medical_box_932 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_932 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_932 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_919:hover .new_medical_icon{}#medical_box_932.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_932:hover{}
                   #medical_box_932  
                
                #medical_box_932 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_932 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_932:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_932 .mode1-size_932{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_932 .new_medical_box > div{
                width:100%;
            }
             #medical_box_932 > div{
               height:100%;
            }
            #medical_box_932 .mode2-size_932{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_932 .mode3-size_932{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_932 .mode4-size_932{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_932 .mode5-size_932{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_932 .mode6-size_932{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_932 .mode7-size_932{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_932 .mode7-size_932 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_932 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_932 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_932{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_932 span:hover{
                color:!important;
            }
            .custom2_932{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_932 span:hover{
                color:;
            }
            #medical_box_932 .mode-btn1_932{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_932 .mode-btn1_932 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_932 .mode-btn2_932{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_932 .mode-btn2_932 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_932 .div-btn-title_main_932{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_932 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_932 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_931 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552465_8.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_931 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_931 .background-img{
                border-radius:;
            }
        
            #medical_box_931 .new_medical_icon{
                
            }
        #medical_box_931 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_931 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_931 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_918:hover .new_medical_icon{}#medical_box_931.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_931:hover{}
                   #medical_box_931  
                
                #medical_box_931 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_931 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_931:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_931 .mode1-size_931{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_931 .new_medical_box > div{
                width:100%;
            }
             #medical_box_931 > div{
               height:100%;
            }
            #medical_box_931 .mode2-size_931{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_931 .mode3-size_931{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_931 .mode4-size_931{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_931 .mode5-size_931{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_931 .mode6-size_931{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_931 .mode7-size_931{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_931 .mode7-size_931 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_931 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_931 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_931{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_931 span:hover{
                color:!important;
            }
            .custom2_931{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_931 span:hover{
                color:;
            }
            #medical_box_931 .mode-btn1_931{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_931 .mode-btn1_931 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_931 .mode-btn2_931{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_931 .mode-btn2_931 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_931 .div-btn-title_main_931{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_931 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_931 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_930 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552465_9.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_930 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_930 .background-img{
                border-radius:;
            }
        
            #medical_box_930 .new_medical_icon{
                
            }
        #medical_box_930 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_930 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_930 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_917:hover .new_medical_icon{}#medical_box_930.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_930:hover{}
                   #medical_box_930  
                
                #medical_box_930 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_930 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_930:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_930 .mode1-size_930{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_930 .new_medical_box > div{
                width:100%;
            }
             #medical_box_930 > div{
               height:100%;
            }
            #medical_box_930 .mode2-size_930{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_930 .mode3-size_930{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_930 .mode4-size_930{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_930 .mode5-size_930{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_930 .mode6-size_930{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_930 .mode7-size_930{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_930 .mode7-size_930 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_930 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_930 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_930{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_930 span:hover{
                color:!important;
            }
            .custom2_930{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_930 span:hover{
                color:;
            }
            #medical_box_930 .mode-btn1_930{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_930 .mode-btn1_930 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_930 .mode-btn2_930{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_930 .mode-btn2_930 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_930 .div-btn-title_main_930{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_930 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_930 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_929 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552465_10.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_929 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_929 .background-img{
                border-radius:;
            }
        
            #medical_box_929 .new_medical_icon{
                
            }
        #medical_box_929 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_929 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_929 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_916:hover .new_medical_icon{}#medical_box_929.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_929:hover{}
                   #medical_box_929  
                
                #medical_box_929 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_929 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_929:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_929 .mode1-size_929{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_929 .new_medical_box > div{
                width:100%;
            }
             #medical_box_929 > div{
               height:100%;
            }
            #medical_box_929 .mode2-size_929{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_929 .mode3-size_929{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_929 .mode4-size_929{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_929 .mode5-size_929{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_929 .mode6-size_929{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_929 .mode7-size_929{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_929 .mode7-size_929 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_929 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_929 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_929{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_929 span:hover{
                color:!important;
            }
            .custom2_929{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_929 span:hover{
                color:;
            }
            #medical_box_929 .mode-btn1_929{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_929 .mode-btn1_929 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_929 .mode-btn2_929{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_929 .mode-btn2_929 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_929 .div-btn-title_main_929{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_929 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_929 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_928 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655552465_11.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_928 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_928 .background-img{
                border-radius:;
            }
        
            #medical_box_928 .new_medical_icon{
                
            }
        #medical_box_928 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_928 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_928 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_915:hover .new_medical_icon{}#medical_box_928.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:8px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_928:hover{}
                   #medical_box_928  
                
                #medical_box_928 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_928 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_928:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_928 .mode1-size_928{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_928 .new_medical_box > div{
                width:100%;
            }
             #medical_box_928 > div{
               height:100%;
            }
            #medical_box_928 .mode2-size_928{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_928 .mode3-size_928{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_928 .mode4-size_928{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_928 .mode5-size_928{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_928 .mode6-size_928{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_928 .mode7-size_928{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_928 .mode7-size_928 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_928 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_928 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_928{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_928 span:hover{
                color:!important;
            }
            .custom2_928{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_928 span:hover{
                color:;
            }
            #medical_box_928 .mode-btn1_928{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_928 .mode-btn1_928 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_928 .mode-btn2_928{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_928 .mode-btn2_928 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_928 .div-btn-title_main_928{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_928 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_928 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_939 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/module/1655553122_w Project (46).webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_939 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_939 .background-img{
                border-radius:;
            }
        
            #medical_box_939 .new_medical_icon{
                
            }
        #medical_box_939 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:left;margin-top:16px;line-height:32px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_939 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_939 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:17%;height:64px;margin-right:8px;border-style:none;border-color:#000;}#medical_box_926:hover .new_medical_icon{}#medical_box_939.new_medical_module{background-color:#5c2952;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#d9d9d9;}#medical_box_939:hover{}
                   #medical_box_939  
                
                #medical_box_939 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_939 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_939:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_939 .mode1-size_939{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_939 .new_medical_box > div{
                width:100%;
            }
             #medical_box_939 > div{
               height:100%;
            }
            #medical_box_939 .mode2-size_939{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_939 .mode3-size_939{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_939 .mode4-size_939{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_939 .mode5-size_939{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_939 .mode6-size_939{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_939 .mode7-size_939{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_939 .mode7-size_939 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_939 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_939 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_939{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_939 span:hover{
                color:!important;
            }
            .custom2_939{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_939 span:hover{
                color:;
            }
            #medical_box_939 .mode-btn1_939{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_939 .mode-btn1_939 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_939 .mode-btn2_939{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_939 .mode-btn2_939 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_939 .div-btn-title_main_939{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_939 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_939 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_293 .new_medical_title_main{color:#ffffff;font-weight:bold;font-size:24px;justify-content:flex-start;text-align:left;line-height:32px;}.module[data-id_page='465']:hover .new_medical_title_main{}#module_new_medical_293 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='465']:hover .new_medical_box_main{}
            #module_new_medical_293 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_293 .new_medical_module{
                    width:400px;
                    position:relative;
                    overflow:hidden;
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_293 .medical_box_main_animation_trigger{
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_293 .new_medical_module:nth-child(3n){
                    margin-right:0;
                }
                #module_new_medical_293 .medical_box_main_animation_trigger:nth-child(3n){
                    margin-right:0;
                }
                #module_new_medical_293 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_293 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_293 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_293 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_293 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_293 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_293{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_293 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_293 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_293 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_293 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_293 .swiper-container{
                width:1200px;
            }
            #module_new_medical_293 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_293 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_293 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_293 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_295 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_295 .content_str{
				width:100%;
			}
            #module_new_medical_295 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_295 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_295 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_295 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_295 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_295 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_295 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_295 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_295 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_295 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_295 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_295 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_295 a{
                color:#00AFEF!important;
            }
            #module_new_medical_295 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_295 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_295 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_959 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_959 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_959 .background-img{
                border-radius:;
            }
        #medical_box_959 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_959 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_959 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_959.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_959:hover{}#medical_box_959 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_959:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_959 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_959  
                
                #medical_box_959 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_959 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_959:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_959.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/1655805069_Half moon.webp");
                }
            
            #medical_box_959 .mode1-size_959{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_959 .new_medical_box > div{
                width:100%;
            }
             #medical_box_959 > div{
               height:100%;
            }
            #medical_box_959 .mode2-size_959{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_959 .mode3-size_959{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_959 .mode4-size_959{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_959 .mode5-size_959{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_959 .mode6-size_959{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_959 .mode7-size_959{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_959 .mode7-size_959 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_959 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_959 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_959{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_959 span:hover{
                color:!important;
            }
            .custom2_959{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_959 span:hover{
                color:;
            }
            #medical_box_959 .mode-btn1_959{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_959 .mode-btn1_959 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_959 .mode-btn2_959{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_959 .mode-btn2_959 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_959 .div-btn-title_main_959{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_959 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_959 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_958 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_958 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_958 .background-img{
                border-radius:;
            }
        #medical_box_958 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_958 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_958 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_958.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_958:hover{}#medical_box_958 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_958:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_958 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_958  
                
                #medical_box_958 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_958 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_958:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_958.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Minimal/1655729602_Minimal nail.webp");
                }
            
            #medical_box_958 .mode1-size_958{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_958 .new_medical_box > div{
                width:100%;
            }
             #medical_box_958 > div{
               height:100%;
            }
            #medical_box_958 .mode2-size_958{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_958 .mode3-size_958{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_958 .mode4-size_958{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_958 .mode5-size_958{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_958 .mode6-size_958{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_958 .mode7-size_958{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_958 .mode7-size_958 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_958 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_958 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_958{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_958 span:hover{
                color:!important;
            }
            .custom2_958{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_958 span:hover{
                color:;
            }
            #medical_box_958 .mode-btn1_958{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_958 .mode-btn1_958 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_958 .mode-btn2_958{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_958 .mode-btn2_958 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_958 .div-btn-title_main_958{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_958 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_958 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_957 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_957 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_957 .background-img{
                border-radius:;
            }
        #medical_box_957 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:30px;text-align:center;line-height:48px;}#medical_box_947:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_957 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_957 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_957.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:8px;padding-left:8px;border-style:none;}#medical_box_957:hover{}#medical_box_957 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_957:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_957 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_957  
                
                #medical_box_957 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_957 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_957:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_957.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Summer/1656078028_Summer Pink.webp");
                }
            
            #medical_box_957 .mode1-size_957{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_957 .new_medical_box > div{
                width:100%;
            }
             #medical_box_957 > div{
               height:100%;
            }
            #medical_box_957 .mode2-size_957{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_957 .mode3-size_957{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_957 .mode4-size_957{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_957 .mode5-size_957{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_957 .mode6-size_957{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_957 .mode7-size_957{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_957 .mode7-size_957 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_957 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_957 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_957{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_957 span:hover{
                color:!important;
            }
            .custom2_957{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_957 span:hover{
                color:;
            }
            #medical_box_957 .mode-btn1_957{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_957 .mode-btn1_957 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_957 .mode-btn2_957{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_957 .mode-btn2_957 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_957 .div-btn-title_main_957{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_957 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_957 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_956 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_956 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_956 .background-img{
                border-radius:;
            }
        #medical_box_956 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_956 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_956 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_956.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:8px;padding-left:8px;border-style:none;}#medical_box_956:hover{}#medical_box_956 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_956:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_956 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_956  
                
                #medical_box_956 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_956 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_956:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_956.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/French/1655730962_Modern French.webp");
                }
            
            #medical_box_956 .mode1-size_956{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_956 .new_medical_box > div{
                width:100%;
            }
             #medical_box_956 > div{
               height:100%;
            }
            #medical_box_956 .mode2-size_956{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_956 .mode3-size_956{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_956 .mode4-size_956{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_956 .mode5-size_956{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_956 .mode6-size_956{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_956 .mode7-size_956{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_956 .mode7-size_956 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_956 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_956 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_956{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_956 span:hover{
                color:!important;
            }
            .custom2_956{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_956 span:hover{
                color:;
            }
            #medical_box_956 .mode-btn1_956{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_956 .mode-btn1_956 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_956 .mode-btn2_956{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_956 .mode-btn2_956 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_956 .div-btn-title_main_956{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_956 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_956 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_955 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_955 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_955 .background-img{
                border-radius:;
            }
        #medical_box_955 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_955 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_955 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_955.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:8px;padding-left:8px;border-style:none;}#medical_box_955:hover{}#medical_box_955 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_955:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_955 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_955  
                
                #medical_box_955 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_955 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_955:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_955.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/chrome/1656079664_Gold chrome.jpg");
                }
            
            #medical_box_955 .mode1-size_955{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_955 .new_medical_box > div{
                width:100%;
            }
             #medical_box_955 > div{
               height:100%;
            }
            #medical_box_955 .mode2-size_955{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_955 .mode3-size_955{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_955 .mode4-size_955{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_955 .mode5-size_955{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_955 .mode6-size_955{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_955 .mode7-size_955{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_955 .mode7-size_955 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_955 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_955 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_955{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_955 span:hover{
                color:!important;
            }
            .custom2_955{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_955 span:hover{
                color:;
            }
            #medical_box_955 .mode-btn1_955{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_955 .mode-btn1_955 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_955 .mode-btn2_955{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_955 .mode-btn2_955 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_955 .div-btn-title_main_955{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_955 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_955 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_954 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_954 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_954 .background-img{
                border-radius:;
            }
        #medical_box_954 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_954 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_954 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_954.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:8px;padding-left:8px;border-style:none;}#medical_box_954:hover{}#medical_box_954 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_954:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_954 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_954  
                
                #medical_box_954 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_954 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_954:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_954.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/1655816130_Matcha blended.webp");
                }
            
            #medical_box_954 .mode1-size_954{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_954 .new_medical_box > div{
                width:100%;
            }
             #medical_box_954 > div{
               height:100%;
            }
            #medical_box_954 .mode2-size_954{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_954 .mode3-size_954{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_954 .mode4-size_954{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_954 .mode5-size_954{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_954 .mode6-size_954{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_954 .mode7-size_954{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_954 .mode7-size_954 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_954 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_954 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_954{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_954 span:hover{
                color:!important;
            }
            .custom2_954{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_954 span:hover{
                color:;
            }
            #medical_box_954 .mode-btn1_954{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_954 .mode-btn1_954 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_954 .mode-btn2_954{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_954 .mode-btn2_954 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_954 .div-btn-title_main_954{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_954 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_954 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_953 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_953 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_953 .background-img{
                border-radius:;
            }
        #medical_box_953 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_953 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_953 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_953.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_953:hover{}#medical_box_953 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_953:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_953 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_953  
                
                #medical_box_953 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_953 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_953:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_953.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Glassnail/1655734778_glass nail.webp");
                }
            
            #medical_box_953 .mode1-size_953{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_953 .new_medical_box > div{
                width:100%;
            }
             #medical_box_953 > div{
               height:100%;
            }
            #medical_box_953 .mode2-size_953{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_953 .mode3-size_953{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_953 .mode4-size_953{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_953 .mode5-size_953{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_953 .mode6-size_953{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_953 .mode7-size_953{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_953 .mode7-size_953 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_953 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_953 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_953{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_953 span:hover{
                color:!important;
            }
            .custom2_953{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_953 span:hover{
                color:;
            }
            #medical_box_953 .mode-btn1_953{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_953 .mode-btn1_953 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_953 .mode-btn2_953{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_953 .mode-btn2_953 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_953 .div-btn-title_main_953{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_953 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_953 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_952 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_952 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_952 .background-img{
                border-radius:;
            }
        #medical_box_952 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_952 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_952 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_952.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_952:hover{}#medical_box_952 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_952:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_952 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_952  
                
                #medical_box_952 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_952 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_952:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_952.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Animalnailprint/1655732307_Animal print 3.webp");
                }
            
            #medical_box_952 .mode1-size_952{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_952 .new_medical_box > div{
                width:100%;
            }
             #medical_box_952 > div{
               height:100%;
            }
            #medical_box_952 .mode2-size_952{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_952 .mode3-size_952{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_952 .mode4-size_952{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_952 .mode5-size_952{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_952 .mode6-size_952{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_952 .mode7-size_952{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_952 .mode7-size_952 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_952 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_952 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_952{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_952 span:hover{
                color:!important;
            }
            .custom2_952{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_952 span:hover{
                color:;
            }
            #medical_box_952 .mode-btn1_952{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_952 .mode-btn1_952 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_952 .mode-btn2_952{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_952 .mode-btn2_952 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_952 .div-btn-title_main_952{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_952 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_952 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_951 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_951 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_951 .background-img{
                border-radius:;
            }
        #medical_box_951 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_951 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_951 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_951:hover .new_medical_icon{}#medical_box_951.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_951:hover{}#medical_box_951 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_951:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_951 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_951  
                
                #medical_box_951 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_951 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_951:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_951.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Marble/1655710992_Marble nails.webp");
                }
            
            #medical_box_951 .mode1-size_951{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_951 .new_medical_box > div{
                width:100%;
            }
             #medical_box_951 > div{
               height:100%;
            }
            #medical_box_951 .mode2-size_951{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_951 .mode3-size_951{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_951 .mode4-size_951{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_951 .mode5-size_951{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_951 .mode6-size_951{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_951 .mode7-size_951{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_951 .mode7-size_951 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_951 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_951 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_951{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_951 span:hover{
                color:!important;
            }
            .custom2_951{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_951 span:hover{
                color:;
            }
            #medical_box_951 .mode-btn1_951{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_951 .mode-btn1_951 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_951 .mode-btn2_951{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_951 .mode-btn2_951 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_951 .div-btn-title_main_951{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_951 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_951 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_950 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_950 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_950 .background-img{
                border-radius:;
            }
        #medical_box_950 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:32px;text-align:center;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_950 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_950 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_950.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:395px;padding-top:320px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_950:hover{}#medical_box_950 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                    #medical_box_950:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_950 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_950  
                
                #medical_box_950 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_950 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_950:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_950.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/1655733125_Muted Nails.webp");
                }
            
            #medical_box_950 .mode1-size_950{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_950 .new_medical_box > div{
                width:100%;
            }
             #medical_box_950 > div{
               height:100%;
            }
            #medical_box_950 .mode2-size_950{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_950 .mode3-size_950{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_950 .mode4-size_950{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_950 .mode5-size_950{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_950 .mode6-size_950{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_950 .mode7-size_950{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_950 .mode7-size_950 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_950 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_950 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_950{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_950 span:hover{
                color:!important;
            }
            .custom2_950{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_950 span:hover{
                color:;
            }
            #medical_box_950 .mode-btn1_950{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_950 .mode-btn1_950 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_950 .mode-btn2_950{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_950 .mode-btn2_950 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_950 .div-btn-title_main_950{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_950 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_950 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_295 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:80px;line-height:32px;}.module[data-id_page='467']:hover .new_medical_title_main{}#module_new_medical_295 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='467']:hover .new_medical_box_main{}
            #module_new_medical_295 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_295 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_295 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_295 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_295 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_295 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_295 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_295 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_295 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_295 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_295 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_295 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_295 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_295 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_295 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_295 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_295 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_295 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_295 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_295 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_295 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_295 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_295 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_295 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_295 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_295{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_295 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_295 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_295 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_295 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_295 .swiper-container{
                width:1200px;
            }
            #module_new_medical_295 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_295 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_295 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_295 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='470']{;background-size:cover;background-repeat:no-repeat;background-position:top;background-attachment:fixed;width:100%;max-width:100%;border-style:none;}.module[data-id_page='470']:hover{;}.module[data-id_page='470']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='470'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='470']:hover .background-img{
                        filter:blur(5px);
                    }
                
                .module[data-id_page='470'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:blur(5px);
                }
            
                   .module[data-id_page='470']  
                
                .module[data-id_page='470'] .new_admin_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                .module[data-id_page='470'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='470']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='470']{
                               background-image:url("https://lupinusnails.ca/files/module/1655550536_ev-slide-03-img.jpg");
                           }
                       
            #module_new_medical_298 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_298 .content_str{
				width:100%;
			}
            #module_new_medical_298 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_298 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_298 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_298 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_298 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_298 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_298 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_298 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_298 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_298 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_298 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_298 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_298 a{
                color:#00AFEF!important;
            }
            #module_new_medical_298 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_298 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_298 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_980 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_980 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_980 .background-img{
                border-radius:;
            }
        #medical_box_980 .new_medical_title{color:#ffffff99;font-weight:bold;font-size:40px;text-align:left;line-height:56px;}#medical_box_914:hover .new_medical_title{}
                #medical_box_980 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_980 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_58:hover .new_medical_icon{}#medical_box_980 .new_medical_description{color:#ffffff;font-weight:300;font-size:16px;line-height:30px;text-align:left;padding-top:32px;border-style:solid;border-color:#555;}#medical_box_914:hover .new_medical_description{}
                   #medical_box_980  
                
                #medical_box_980 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_980 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_980:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_980 .mode1-size_980{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_980 .new_medical_box > div{
                width:100%;
            }
             #medical_box_980 > div{
               height:100%;
            }
            #medical_box_980 .mode2-size_980{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_980 .mode3-size_980{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_980 .mode4-size_980{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_980 .mode5-size_980{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_980 .mode6-size_980{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_980 .mode7-size_980{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_980 .mode7-size_980 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_980 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_980 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_980{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_980 span:hover{
                color:!important;
            }
            .custom2_980{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_980 span:hover{
                color:;
            }
            #medical_box_980 .mode-btn1_980{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_980 .mode-btn1_980 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_980 .mode-btn2_980{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_980 .mode-btn2_980 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_980 .div-btn-title_main_980{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_980 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_980 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_298 .new_medical_title_main{color:#5c2952;font-weight:bold;justify-content:center;text-align:center;}.module[data-id_page='22']:hover .new_medical_title_main{}#module_new_medical_298 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:80px;padding-bottom:80px;border-style:none;}.module[data-id_page='470']:hover .new_medical_box_main{}
            #module_new_medical_298 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_298 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_298 .medical_box_main_animation_trigger{
                    margin-right:px;
                    margin-bottom:px;
                }
                #module_new_medical_298 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_298 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_298 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_298 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_298 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_298 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_298 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_298 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_298{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_298 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_298 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_298 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_298 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_298 .swiper-container{
                width:1200px;
            }
            #module_new_medical_298 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_298 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_298 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_298 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_297 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_297 .content_str{
				width:100%;
			}
            #module_new_medical_297 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_297 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_297 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_297 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_297 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_297 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_297 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_297 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_297 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_297 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_297 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_297 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_297 a{
                color:#00AFEF!important;
            }
            #module_new_medical_297 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_297 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_297 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_979 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_979 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_979 .background-img{
                border-radius:;
            }
        #medical_box_979 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_979 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_979 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_979.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_979:hover{}#medical_box_979 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_979:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_979 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_979  
                
                #medical_box_979 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_979 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_979:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_979.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Accessories/1655817749_hinestone nail.webp");
                }
            
            #medical_box_979 .mode1-size_979{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_979 .new_medical_box > div{
                width:100%;
            }
             #medical_box_979 > div{
               height:100%;
            }
            #medical_box_979 .mode2-size_979{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_979 .mode3-size_979{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_979 .mode4-size_979{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_979 .mode5-size_979{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_979 .mode6-size_979{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_979 .mode7-size_979{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_979 .mode7-size_979 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_979 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_979 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_979{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_979 span:hover{
                color:!important;
            }
            .custom2_979{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_979 span:hover{
                color:;
            }
            #medical_box_979 .mode-btn1_979{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_979 .mode-btn1_979 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_979 .mode-btn2_979{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_979 .mode-btn2_979 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_979 .div-btn-title_main_979{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_979 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_979 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_978 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_978 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_978 .background-img{
                border-radius:;
            }
        #medical_box_978 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_978 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_978 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_978.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_978:hover{}#medical_box_978 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_978:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_978 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_978  
                
                #medical_box_978 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_978 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_978:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_978.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Accessories/1655818002_Glitter.webp");
                }
            
            #medical_box_978 .mode1-size_978{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_978 .new_medical_box > div{
                width:100%;
            }
             #medical_box_978 > div{
               height:100%;
            }
            #medical_box_978 .mode2-size_978{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_978 .mode3-size_978{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_978 .mode4-size_978{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_978 .mode5-size_978{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_978 .mode6-size_978{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_978 .mode7-size_978{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_978 .mode7-size_978 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_978 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_978 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_978{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_978 span:hover{
                color:!important;
            }
            .custom2_978{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_978 span:hover{
                color:;
            }
            #medical_box_978 .mode-btn1_978{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_978 .mode-btn1_978 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_978 .mode-btn2_978{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_978 .mode-btn2_978 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_978 .div-btn-title_main_978{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_978 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_978 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_977 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_977 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_977 .background-img{
                border-radius:;
            }
        #medical_box_977 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_977 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_977 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_977.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_977:hover{}#medical_box_977 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_977:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_977 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_977  
                
                #medical_box_977 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_977 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_977:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_977.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Glitter/1655983857_Fimo nails.webp");
                }
            
            #medical_box_977 .mode1-size_977{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_977 .new_medical_box > div{
                width:100%;
            }
             #medical_box_977 > div{
               height:100%;
            }
            #medical_box_977 .mode2-size_977{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_977 .mode3-size_977{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_977 .mode4-size_977{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_977 .mode5-size_977{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_977 .mode6-size_977{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_977 .mode7-size_977{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_977 .mode7-size_977 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_977 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_977 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_977{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_977 span:hover{
                color:!important;
            }
            .custom2_977{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_977 span:hover{
                color:;
            }
            #medical_box_977 .mode-btn1_977{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_977 .mode-btn1_977 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_977 .mode-btn2_977{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_977 .mode-btn2_977 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_977 .div-btn-title_main_977{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_977 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_977 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_976 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_976 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_976 .background-img{
                border-radius:;
            }
        #medical_box_976 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_976 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_976 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_976.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_976:hover{}#medical_box_976 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_976:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_976 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_976  
                
                #medical_box_976 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_976 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_976:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_976.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Accessories/1655895527_Pearl nails.webp");
                }
            
            #medical_box_976 .mode1-size_976{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_976 .new_medical_box > div{
                width:100%;
            }
             #medical_box_976 > div{
               height:100%;
            }
            #medical_box_976 .mode2-size_976{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_976 .mode3-size_976{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_976 .mode4-size_976{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_976 .mode5-size_976{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_976 .mode6-size_976{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_976 .mode7-size_976{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_976 .mode7-size_976 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_976 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_976 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_976{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_976 span:hover{
                color:!important;
            }
            .custom2_976{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_976 span:hover{
                color:;
            }
            #medical_box_976 .mode-btn1_976{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_976 .mode-btn1_976 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_976 .mode-btn2_976{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_976 .mode-btn2_976 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_976 .div-btn-title_main_976{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_976 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_976 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_975 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_975 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_975 .background-img{
                border-radius:;
            }
        #medical_box_975 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_975 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_975 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_975.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_975:hover{}#medical_box_975 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_975:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_975 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_975  
                
                #medical_box_975 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_975 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_975:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_975.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Accessories/1655895733_Sticker nails.webp");
                }
            
            #medical_box_975 .mode1-size_975{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_975 .new_medical_box > div{
                width:100%;
            }
             #medical_box_975 > div{
               height:100%;
            }
            #medical_box_975 .mode2-size_975{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_975 .mode3-size_975{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_975 .mode4-size_975{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_975 .mode5-size_975{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_975 .mode6-size_975{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_975 .mode7-size_975{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_975 .mode7-size_975 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_975 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_975 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_975{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_975 span:hover{
                color:!important;
            }
            .custom2_975{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_975 span:hover{
                color:;
            }
            #medical_box_975 .mode-btn1_975{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_975 .mode-btn1_975 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_975 .mode-btn2_975{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_975 .mode-btn2_975 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_975 .div-btn-title_main_975{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_975 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_975 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_974 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_974 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_974 .background-img{
                border-radius:;
            }
        #medical_box_974 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_974 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_974 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_974.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#medical_box_974:hover{}#medical_box_974 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_974:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_974 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_974  
                
                #medical_box_974 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_974 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_974:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_974.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Accessories/1655896233_Striping Lines.webp");
                }
            
            #medical_box_974 .mode1-size_974{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_974 .new_medical_box > div{
                width:100%;
            }
             #medical_box_974 > div{
               height:100%;
            }
            #medical_box_974 .mode2-size_974{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_974 .mode3-size_974{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_974 .mode4-size_974{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_974 .mode5-size_974{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_974 .mode6-size_974{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_974 .mode7-size_974{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_974 .mode7-size_974 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_974 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_974 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_974{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_974 span:hover{
                color:!important;
            }
            .custom2_974{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_974 span:hover{
                color:;
            }
            #medical_box_974 .mode-btn1_974{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_974 .mode-btn1_974 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_974 .mode-btn2_974{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_974 .mode-btn2_974 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_974 .div-btn-title_main_974{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_974 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_974 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_973 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_973 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_973 .background-img{
                border-radius:;
            }
        #medical_box_973 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_973 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_973 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_973.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_973:hover{}#medical_box_973 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_973:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_973 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_973  
                
                #medical_box_973 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_973 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_973:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_973.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Accessories/1655897591_Studded nails.webp");
                }
            
            #medical_box_973 .mode1-size_973{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_973 .new_medical_box > div{
                width:100%;
            }
             #medical_box_973 > div{
               height:100%;
            }
            #medical_box_973 .mode2-size_973{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_973 .mode3-size_973{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_973 .mode4-size_973{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_973 .mode5-size_973{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_973 .mode6-size_973{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_973 .mode7-size_973{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_973 .mode7-size_973 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_973 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_973 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_973{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_973 span:hover{
                color:!important;
            }
            .custom2_973{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_973 span:hover{
                color:;
            }
            #medical_box_973 .mode-btn1_973{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_973 .mode-btn1_973 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_973 .mode-btn2_973{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_973 .mode-btn2_973 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_973 .div-btn-title_main_973{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_973 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_973 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_972 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_972 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_972 .background-img{
                border-radius:;
            }
        #medical_box_972 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_972 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_972 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_972.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_972:hover{}#medical_box_972 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_972:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_972 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_972  
                
                #medical_box_972 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_972 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_972:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_972.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Branded/1655724952_Branded nail.webp");
                }
            
            #medical_box_972 .mode1-size_972{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_972 .new_medical_box > div{
                width:100%;
            }
             #medical_box_972 > div{
               height:100%;
            }
            #medical_box_972 .mode2-size_972{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_972 .mode3-size_972{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_972 .mode4-size_972{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_972 .mode5-size_972{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_972 .mode6-size_972{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_972 .mode7-size_972{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_972 .mode7-size_972 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_972 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_972 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_972{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_972 span:hover{
                color:!important;
            }
            .custom2_972{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_972 span:hover{
                color:;
            }
            #medical_box_972 .mode-btn1_972{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_972 .mode-btn1_972 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_972 .mode-btn2_972{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_972 .mode-btn2_972 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_972 .div-btn-title_main_972{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_972 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_972 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_971 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_971 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_971 .background-img{
                border-radius:;
            }
        #medical_box_971 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_971 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_971 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_971.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_971:hover{}#medical_box_971 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_971:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_971 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_971  
                
                #medical_box_971 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_971 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_971:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_971.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Accessories/1655735216_percing.webp");
                }
            
            #medical_box_971 .mode1-size_971{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_971 .new_medical_box > div{
                width:100%;
            }
             #medical_box_971 > div{
               height:100%;
            }
            #medical_box_971 .mode2-size_971{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_971 .mode3-size_971{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_971 .mode4-size_971{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_971 .mode5-size_971{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_971 .mode6-size_971{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_971 .mode7-size_971{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_971 .mode7-size_971 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_971 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_971 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_971{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_971 span:hover{
                color:!important;
            }
            .custom2_971{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_971 span:hover{
                color:;
            }
            #medical_box_971 .mode-btn1_971{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_971 .mode-btn1_971 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_971 .mode-btn2_971{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_971 .mode-btn2_971 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_971 .div-btn-title_main_971{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_971 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_971 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_970 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_970 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_970 .background-img{
                border-radius:;
            }
        #medical_box_970 .new_medical_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_969:hover .new_medical_title{}
                #medical_box_970 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_970 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_969:hover .new_medical_icon{}#medical_box_970.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:256px;padding-top:177px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_970:hover{}#medical_box_970 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_969:hover .new_medical_description{}
                    #medical_box_970:hover .background-img{
                        filter:blur(1px);
                    }
                
                #medical_box_970 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_970  
                
                #medical_box_970 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_970 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_970:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_970.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Accessories/1656078790_Diamond nails.webp");
                }
            
            #medical_box_970 .mode1-size_970{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_970 .new_medical_box > div{
                width:100%;
            }
             #medical_box_970 > div{
               height:100%;
            }
            #medical_box_970 .mode2-size_970{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_970 .mode3-size_970{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_970 .mode4-size_970{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_970 .mode5-size_970{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_970 .mode6-size_970{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_970 .mode7-size_970{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_970 .mode7-size_970 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_970 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_970 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_970{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_970 span:hover{
                color:!important;
            }
            .custom2_970{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_970 span:hover{
                color:;
            }
            #medical_box_970 .mode-btn1_970{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_970 .mode-btn1_970 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_970 .mode-btn2_970{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_970 .mode-btn2_970 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_970 .div-btn-title_main_970{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_970 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_970 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_297 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:80px;line-height:32px;}.module[data-id_page='469']:hover .new_medical_title_main{}#module_new_medical_297 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;border-style:none;}.module[data-id_page='469']:hover .new_medical_box_main{}
            #module_new_medical_297 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_297 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_297 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_297 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_297 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_297 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_297 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_297 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_297 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_297 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_297 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_297 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_297 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_297 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_297 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_297 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_297 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_297 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_297 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_297 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_297 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_297 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_297 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_297 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_297 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_297{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_297 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_297 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_297 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_297 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_297 .swiper-container{
                width:1200px;
            }
            #module_new_medical_297 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_297 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_297 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_297 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_299 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_299 .content_str{
				width:100%;
			}
            #module_new_medical_299 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_299 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_299 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_299 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_299 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_299 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_299 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_299 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_299 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_299 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_299 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_299 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_299 a{
                color:#00AFEF!important;
            }
            #module_new_medical_299 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_299 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_299 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_982 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_982 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_982 .background-img{
                border-radius:;
            }
        #medical_box_982 .new_medical_title{color:#000;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_982:hover .new_medical_title{}
                #medical_box_982 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_982 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_982:hover .new_medical_icon{}#medical_box_982.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_982:hover{}#medical_box_982 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;padding-top:32px;border-style:solid;border-color:#555;}#medical_box_982:hover .new_medical_description{}
                   #medical_box_982  
                
                #medical_box_982 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_982 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_982:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_982 .mode1-size_982{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_982 .new_medical_box > div{
                width:100%;
            }
             #medical_box_982 > div{
               height:100%;
            }
            #medical_box_982 .mode2-size_982{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_982 .mode3-size_982{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_982 .mode4-size_982{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_982 .mode5-size_982{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_982 .mode6-size_982{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_982 .mode7-size_982{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_982 .mode7-size_982 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_982 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_982 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_982{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_982 span:hover{
                color:!important;
            }
            .custom2_982{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_982 span:hover{
                color:;
            }
            #medical_box_982 .mode-btn1_982{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_982 .mode-btn1_982 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_982 .mode-btn2_982{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_982 .mode-btn2_982 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_982 .div-btn-title_main_982{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_982 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_982 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_981 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_981 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_981 .background-img{
                border-radius:;
            }
        #medical_box_981 .new_medical_title{color:#000;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_982:hover .new_medical_title{}
                #medical_box_981 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_981 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_982:hover .new_medical_icon{}#medical_box_981.new_medical_module{background-color:#f0f0f0;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;padding-right:32px;padding-left:32px;border-style:none;}#medical_box_981:hover{}#medical_box_981 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;padding-top:32px;border-style:solid;border-color:#555;}#medical_box_981:hover .new_medical_description{}
                   #medical_box_981  
                
                #medical_box_981 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_981 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_981:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_981 .mode1-size_981{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_981 .new_medical_box > div{
                width:100%;
            }
             #medical_box_981 > div{
               height:100%;
            }
            #medical_box_981 .mode2-size_981{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_981 .mode3-size_981{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_981 .mode4-size_981{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_981 .mode5-size_981{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_981 .mode6-size_981{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_981 .mode7-size_981{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_981 .mode7-size_981 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_981 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_981 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_981{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_981 span:hover{
                color:!important;
            }
            .custom2_981{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_981 span:hover{
                color:;
            }
            #medical_box_981 .mode-btn1_981{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_981 .mode-btn1_981 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_981 .mode-btn2_981{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_981 .mode-btn2_981 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_981 .div-btn-title_main_981{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_981 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_981 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_299 .new_medical_title_main{color:#000;font-weight:bold;justify-content:center;text-align:center;}.module[data-id_page='471']:hover .new_medical_title_main{}#module_new_medical_299 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:80px;border-style:none;}.module[data-id_page='471']:hover .new_medical_box_main{}
            #module_new_medical_299 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_299 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:px;
                    margin-bottom:32px;
                }
                #module_new_medical_299 .medical_box_main_animation_trigger{
                    margin-right:px;
                    margin-bottom:32px;
                }
                #module_new_medical_299 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_299 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_299 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_299 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_299 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_299 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_299 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_299 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_299{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_299 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_299 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_299 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_299 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_299 .swiper-container{
                width:1200px;
            }
            #module_new_medical_299 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_299 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_299 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_299 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_300 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_300 .content_str{
				width:100%;
			}
            #module_new_medical_300 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_300 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_300 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_300 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_300 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_300 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_300 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_300 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_300 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_300 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_300 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_300 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_300 a{
                color:#00AFEF!important;
            }
            #module_new_medical_300 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_300 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_300 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_992 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658908006_Lupinus Nails.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_992 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_992 .background-img{
                border-radius:;
            }
        
            #medical_box_992 .new_medical_icon{
                
            }
        #medical_box_992 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_992 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_992 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_992:hover .new_medical_icon{}#medical_box_992 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_992:hover .new_medical_description{}
                   #medical_box_992  
                
                #medical_box_992 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_992 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_992:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_992 .mode1-size_992{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_992 .new_medical_box > div{
                width:100%;
            }
             #medical_box_992 > div{
               height:100%;
            }
            #medical_box_992 .mode2-size_992{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_992 .mode3-size_992{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_992 .mode4-size_992{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_992 .mode5-size_992{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_992 .mode6-size_992{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_992 .mode7-size_992{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_992 .mode7-size_992 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_992 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_992 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_992{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_992 span:hover{
                color:!important;
            }
            .custom2_992{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_992 span:hover{
                color:;
            }
            #medical_box_992 .mode-btn1_992{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_992 .mode-btn1_992 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_992 .mode-btn2_992{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_992 .mode-btn2_992 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_992 .div-btn-title_main_992{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_992 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_992 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_991 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658907787_upinus Nails 2.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_991 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_991 .background-img{
                border-radius:;
            }
        
            #medical_box_991 .new_medical_icon{
                
            }
        #medical_box_991 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_991 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_991 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_991:hover .new_medical_icon{}#medical_box_991 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_991:hover .new_medical_description{}
                   #medical_box_991  
                
                #medical_box_991 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_991 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_991:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_991 .mode1-size_991{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_991 .new_medical_box > div{
                width:100%;
            }
             #medical_box_991 > div{
               height:100%;
            }
            #medical_box_991 .mode2-size_991{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_991 .mode3-size_991{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_991 .mode4-size_991{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_991 .mode5-size_991{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_991 .mode6-size_991{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_991 .mode7-size_991{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_991 .mode7-size_991 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_991 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_991 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_991{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_991 span:hover{
                color:!important;
            }
            .custom2_991{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_991 span:hover{
                color:;
            }
            #medical_box_991 .mode-btn1_991{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_991 .mode-btn1_991 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_991 .mode-btn2_991{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_991 .mode-btn2_991 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_991 .div-btn-title_main_991{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_991 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_991 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_990 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658908006_Lupinus Nails.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_990 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_990 .background-img{
                border-radius:;
            }
        
            #medical_box_990 .new_medical_icon{
                
            }
        #medical_box_990 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_990 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_990 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_990:hover .new_medical_icon{}#medical_box_990 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_990:hover .new_medical_description{}
                   #medical_box_990  
                
                #medical_box_990 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_990 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_990:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_990 .mode1-size_990{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_990 .new_medical_box > div{
                width:100%;
            }
             #medical_box_990 > div{
               height:100%;
            }
            #medical_box_990 .mode2-size_990{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_990 .mode3-size_990{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_990 .mode4-size_990{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_990 .mode5-size_990{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_990 .mode6-size_990{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_990 .mode7-size_990{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_990 .mode7-size_990 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_990 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_990 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_990{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_990 span:hover{
                color:!important;
            }
            .custom2_990{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_990 span:hover{
                color:;
            }
            #medical_box_990 .mode-btn1_990{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_990 .mode-btn1_990 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_990 .mode-btn2_990{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_990 .mode-btn2_990 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_990 .div-btn-title_main_990{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_990 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_990 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_989 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658907787_upinus Nails 2.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_989 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_989 .background-img{
                border-radius:;
            }
        
            #medical_box_989 .new_medical_icon{
                
            }
        #medical_box_989 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_989 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_989 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_989:hover .new_medical_icon{}#medical_box_989 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_989:hover .new_medical_description{}
                   #medical_box_989  
                
                #medical_box_989 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_989 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_989:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_989 .mode1-size_989{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_989 .new_medical_box > div{
                width:100%;
            }
             #medical_box_989 > div{
               height:100%;
            }
            #medical_box_989 .mode2-size_989{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_989 .mode3-size_989{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_989 .mode4-size_989{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_989 .mode5-size_989{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_989 .mode6-size_989{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_989 .mode7-size_989{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_989 .mode7-size_989 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_989 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_989 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_989{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_989 span:hover{
                color:!important;
            }
            .custom2_989{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_989 span:hover{
                color:;
            }
            #medical_box_989 .mode-btn1_989{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_989 .mode-btn1_989 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_989 .mode-btn2_989{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_989 .mode-btn2_989 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_989 .div-btn-title_main_989{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_989 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_989 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_988 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658908006_Lupinus Nails.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_988 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_988 .background-img{
                border-radius:;
            }
        
            #medical_box_988 .new_medical_icon{
                
            }
        #medical_box_988 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_988 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_988 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_988:hover .new_medical_icon{}#medical_box_988 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_988:hover .new_medical_description{}
                   #medical_box_988  
                
                #medical_box_988 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_988 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_988:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_988 .mode1-size_988{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_988 .new_medical_box > div{
                width:100%;
            }
             #medical_box_988 > div{
               height:100%;
            }
            #medical_box_988 .mode2-size_988{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_988 .mode3-size_988{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_988 .mode4-size_988{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_988 .mode5-size_988{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_988 .mode6-size_988{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_988 .mode7-size_988{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_988 .mode7-size_988 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_988 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_988 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_988{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_988 span:hover{
                color:!important;
            }
            .custom2_988{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_988 span:hover{
                color:;
            }
            #medical_box_988 .mode-btn1_988{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_988 .mode-btn1_988 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_988 .mode-btn2_988{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_988 .mode-btn2_988 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_988 .div-btn-title_main_988{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_988 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_988 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_987 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658907787_upinus Nails 2.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_987 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_987 .background-img{
                border-radius:;
            }
        
            #medical_box_987 .new_medical_icon{
                
            }
        #medical_box_987 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_987 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_987 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_987:hover .new_medical_icon{}#medical_box_987 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_987:hover .new_medical_description{}
                   #medical_box_987  
                
                #medical_box_987 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_987 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_987:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_987 .mode1-size_987{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_987 .new_medical_box > div{
                width:100%;
            }
             #medical_box_987 > div{
               height:100%;
            }
            #medical_box_987 .mode2-size_987{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_987 .mode3-size_987{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_987 .mode4-size_987{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_987 .mode5-size_987{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_987 .mode6-size_987{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_987 .mode7-size_987{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_987 .mode7-size_987 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_987 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_987 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_987{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_987 span:hover{
                color:!important;
            }
            .custom2_987{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_987 span:hover{
                color:;
            }
            #medical_box_987 .mode-btn1_987{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_987 .mode-btn1_987 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_987 .mode-btn2_987{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_987 .mode-btn2_987 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_987 .div-btn-title_main_987{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_987 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_987 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_986 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658908006_Lupinus Nails.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_986 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_986 .background-img{
                border-radius:;
            }
        
            #medical_box_986 .new_medical_icon{
                
            }
        #medical_box_986 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_986 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_986 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_986:hover .new_medical_icon{}#medical_box_986 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_986:hover .new_medical_description{}
                   #medical_box_986  
                
                #medical_box_986 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_986 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_986:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_986 .mode1-size_986{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_986 .new_medical_box > div{
                width:100%;
            }
             #medical_box_986 > div{
               height:100%;
            }
            #medical_box_986 .mode2-size_986{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_986 .mode3-size_986{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_986 .mode4-size_986{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_986 .mode5-size_986{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_986 .mode6-size_986{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_986 .mode7-size_986{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_986 .mode7-size_986 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_986 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_986 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_986{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_986 span:hover{
                color:!important;
            }
            .custom2_986{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_986 span:hover{
                color:;
            }
            #medical_box_986 .mode-btn1_986{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_986 .mode-btn1_986 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_986 .mode-btn2_986{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_986 .mode-btn2_986 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_986 .div-btn-title_main_986{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_986 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_986 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_985 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658907787_upinus Nails 2.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_985 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_985 .background-img{
                border-radius:;
            }
        
            #medical_box_985 .new_medical_icon{
                
            }
        #medical_box_985 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_985 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_985 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_985:hover .new_medical_icon{}#medical_box_985 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_985:hover .new_medical_description{}
                   #medical_box_985  
                
                #medical_box_985 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_985 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_985:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_985 .mode1-size_985{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_985 .new_medical_box > div{
                width:100%;
            }
             #medical_box_985 > div{
               height:100%;
            }
            #medical_box_985 .mode2-size_985{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_985 .mode3-size_985{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_985 .mode4-size_985{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_985 .mode5-size_985{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_985 .mode6-size_985{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_985 .mode7-size_985{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_985 .mode7-size_985 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_985 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_985 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_985{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_985 span:hover{
                color:!important;
            }
            .custom2_985{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_985 span:hover{
                color:;
            }
            #medical_box_985 .mode-btn1_985{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_985 .mode-btn1_985 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_985 .mode-btn2_985{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_985 .mode-btn2_985 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_985 .div-btn-title_main_985{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_985 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_985 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_984 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658908006_Lupinus Nails.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_984 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_984 .background-img{
                border-radius:;
            }
        
            #medical_box_984 .new_medical_icon{
                
            }
        #medical_box_984 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_984 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_984 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:320px;border-style:none;border-color:#000;}#medical_box_984:hover .new_medical_icon{}#medical_box_984 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_984:hover .new_medical_description{}
                   #medical_box_984  
                
                #medical_box_984 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_984 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_984:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_984 .mode1-size_984{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_984 .new_medical_box > div{
                width:100%;
            }
             #medical_box_984 > div{
               height:100%;
            }
            #medical_box_984 .mode2-size_984{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_984 .mode3-size_984{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_984 .mode4-size_984{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_984 .mode5-size_984{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_984 .mode6-size_984{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_984 .mode7-size_984{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_984 .mode7-size_984 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_984 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_984 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_984{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_984 span:hover{
                color:!important;
            }
            .custom2_984{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_984 span:hover{
                color:;
            }
            #medical_box_984 .mode-btn1_984{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_984 .mode-btn1_984 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_984 .mode-btn2_984{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_984 .mode-btn2_984 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_984 .div-btn-title_main_984{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_984 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_984 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_983 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/logo/1658907787_upinus Nails 2.webp");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_983 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_983 .background-img{
                border-radius:;
            }
        
            #medical_box_983 .new_medical_icon{
                
            }
        #medical_box_983 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:left;margin-top:32px;line-height:32px;}#medical_box_903:hover .new_medical_title{}
                #medical_box_983 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_983 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:100%;height:262px;border-style:none;border-color:#000;}#medical_box_983:hover .new_medical_icon{}#medical_box_983 .new_medical_description{color:#595959;font-weight:300;text-align:left;border-style:solid;border-color:#555;}#medical_box_983:hover .new_medical_description{}
                   #medical_box_983  
                
                #medical_box_983 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_983 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_983:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_983 .mode1-size_983{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_983 .new_medical_box > div{
                width:100%;
            }
             #medical_box_983 > div{
               height:100%;
            }
            #medical_box_983 .mode2-size_983{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_983 .mode3-size_983{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_983 .mode4-size_983{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_983 .mode5-size_983{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_983 .mode6-size_983{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_983 .mode7-size_983{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_983 .mode7-size_983 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_983 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_983 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_983{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_983 span:hover{
                color:!important;
            }
            .custom2_983{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_983 span:hover{
                color:;
            }
            #medical_box_983 .mode-btn1_983{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_983 .mode-btn1_983 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_983 .mode-btn2_983{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_983 .mode-btn2_983 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_983 .div-btn-title_main_983{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_983 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_983 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_300 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:32px;}.module[data-id_page='472']:hover .new_medical_title_main{}#module_new_medical_300 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='472']:hover .new_medical_box_main{}
            #module_new_medical_300 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_300 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_300 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_300 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_300 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_300 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_300 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_300 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_300 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_300 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_300 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_300 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_300 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_300 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_300 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_300 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_300 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_300 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_300 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_300 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_300 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_300 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_300 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_300 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_300 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_300{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_300 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_300 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_300 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_300 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_300 .swiper-container{
                width:1200px;
            }
            #module_new_medical_300 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_300 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_300 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_300 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_301 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_301 .content_str{
				width:100%;
			}
            #module_new_medical_301 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_301 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_301 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_301 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_301 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_301 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_301 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_301 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_301 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_301 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_301 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_301 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_301 a{
                color:#00AFEF!important;
            }
            #module_new_medical_301 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_301 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_301 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_994 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_994 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_994 .background-img{
                border-radius:;
            }
        #medical_box_994 .new_medical_title{color:#000;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_982:hover .new_medical_title{}
                #medical_box_994 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_994 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_982:hover .new_medical_icon{}#medical_box_994.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_994:hover{}#medical_box_994 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;padding-top:32px;border-style:solid;border-color:#555;}#medical_box_982:hover .new_medical_description{}
                   #medical_box_994  
                
                #medical_box_994 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_994 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_994:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_994 .mode1-size_994{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_994 .new_medical_box > div{
                width:100%;
            }
             #medical_box_994 > div{
               height:100%;
            }
            #medical_box_994 .mode2-size_994{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_994 .mode3-size_994{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_994 .mode4-size_994{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_994 .mode5-size_994{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_994 .mode6-size_994{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_994 .mode7-size_994{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_994 .mode7-size_994 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_994 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_994 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_994{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_994 span:hover{
                color:!important;
            }
            .custom2_994{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_994 span:hover{
                color:;
            }
            #medical_box_994 .mode-btn1_994{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_994 .mode-btn1_994 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_994 .mode-btn2_994{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_994 .mode-btn2_994 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_994 .div-btn-title_main_994{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_994 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_994 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_301 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='473']:hover .new_medical_box_main{}
            #module_new_medical_301 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_301 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-right:px;
                    margin-bottom:32px;
                }
                #module_new_medical_301 .medical_box_main_animation_trigger{
                    margin-right:px;
                    margin-bottom:32px;
                }
                #module_new_medical_301 .new_medical_module:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_301 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-right:0;
                }
                #module_new_medical_301 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_301 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_301 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_301 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_301 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_301 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_301{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_301 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_301 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_301 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_301 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_301 .swiper-container{
                width:1200px;
            }
            #module_new_medical_301 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_301 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_301 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_301 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_318 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_318 .content_str{
				width:100%;
			}
            #module_new_medical_318 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_318 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_318 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_318 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_318 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_318 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_318 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_318 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_318 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_318 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_318 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_318 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_318 a{
                color:#00AFEF!important;
            }
            #module_new_medical_318 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_318 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_318 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1164 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1164 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1164 .background-img{
                border-radius:;
            }
        #medical_box_1164 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1164 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1164 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1164.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1164:hover{}#medical_box_1164 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1164:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1164 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1164  
                
                #medical_box_1164 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1164 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1164:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1164.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Kids/1656062362_Glitter nails.webp");
                }
            
            #medical_box_1164 .mode1-size_1164{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1164 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1164 > div{
               height:100%;
            }
            #medical_box_1164 .mode2-size_1164{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1164 .mode3-size_1164{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1164 .mode4-size_1164{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1164 .mode5-size_1164{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1164 .mode6-size_1164{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1164 .mode7-size_1164{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1164 .mode7-size_1164 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1164 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1164 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1164{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1164 span:hover{
                color:!important;
            }
            .custom2_1164{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1164 span:hover{
                color:;
            }
            #medical_box_1164 .mode-btn1_1164{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1164 .mode-btn1_1164 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1164 .mode-btn2_1164{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1164 .mode-btn2_1164 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1164 .div-btn-title_main_1164{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1164 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1164 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1163 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1163 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1163 .background-img{
                border-radius:;
            }
        #medical_box_1163 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1163 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1163 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1163.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1163:hover{}#medical_box_1163 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1163:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1163 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1163  
                
                #medical_box_1163 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1163 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1163:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1163.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/kids/1655906919_ds carton nail.webp");
                }
            
            #medical_box_1163 .mode1-size_1163{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1163 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1163 > div{
               height:100%;
            }
            #medical_box_1163 .mode2-size_1163{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1163 .mode3-size_1163{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1163 .mode4-size_1163{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1163 .mode5-size_1163{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1163 .mode6-size_1163{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1163 .mode7-size_1163{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1163 .mode7-size_1163 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1163 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1163 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1163{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1163 span:hover{
                color:!important;
            }
            .custom2_1163{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1163 span:hover{
                color:;
            }
            #medical_box_1163 .mode-btn1_1163{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1163 .mode-btn1_1163 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1163 .mode-btn2_1163{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1163 .mode-btn2_1163 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1163 .div-btn-title_main_1163{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1163 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1163 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1162 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1162 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1162 .background-img{
                border-radius:;
            }
        #medical_box_1162 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1162 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1162 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1162.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1162:hover{}#medical_box_1162 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1162:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1162 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1162  
                
                #medical_box_1162 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1162 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1162:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1162.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Kids/1656060017_Book themed.webp");
                }
            
            #medical_box_1162 .mode1-size_1162{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1162 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1162 > div{
               height:100%;
            }
            #medical_box_1162 .mode2-size_1162{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1162 .mode3-size_1162{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1162 .mode4-size_1162{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1162 .mode5-size_1162{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1162 .mode6-size_1162{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1162 .mode7-size_1162{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1162 .mode7-size_1162 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1162 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1162 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1162{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1162 span:hover{
                color:!important;
            }
            .custom2_1162{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1162 span:hover{
                color:;
            }
            #medical_box_1162 .mode-btn1_1162{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1162 .mode-btn1_1162 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1162 .mode-btn2_1162{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1162 .mode-btn2_1162 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1162 .div-btn-title_main_1162{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1162 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1162 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1161 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1161 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1161 .background-img{
                border-radius:;
            }
        #medical_box_1161 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1161 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1161 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1161.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1161:hover{}#medical_box_1161 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1161:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1161 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1161  
                
                #medical_box_1161 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1161 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1161:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1161.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Kids/1656064826_Sweet nails.webp");
                }
            
            #medical_box_1161 .mode1-size_1161{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1161 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1161 > div{
               height:100%;
            }
            #medical_box_1161 .mode2-size_1161{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1161 .mode3-size_1161{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1161 .mode4-size_1161{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1161 .mode5-size_1161{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1161 .mode6-size_1161{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1161 .mode7-size_1161{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1161 .mode7-size_1161 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1161 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1161 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1161{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1161 span:hover{
                color:!important;
            }
            .custom2_1161{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1161 span:hover{
                color:;
            }
            #medical_box_1161 .mode-btn1_1161{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1161 .mode-btn1_1161 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1161 .mode-btn2_1161{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1161 .mode-btn2_1161 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1161 .div-btn-title_main_1161{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1161 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1161 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1160 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1160 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1160 .background-img{
                border-radius:;
            }
        #medical_box_1160 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1160 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1160 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1160.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1160:hover{}#medical_box_1160 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1160:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1160 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1160  
                
                #medical_box_1160 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1160 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1160:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1160.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Kids/1656072976_Rainbow Nails.webp");
                }
            
            #medical_box_1160 .mode1-size_1160{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1160 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1160 > div{
               height:100%;
            }
            #medical_box_1160 .mode2-size_1160{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1160 .mode3-size_1160{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1160 .mode4-size_1160{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1160 .mode5-size_1160{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1160 .mode6-size_1160{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1160 .mode7-size_1160{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1160 .mode7-size_1160 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1160 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1160 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1160{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1160 span:hover{
                color:!important;
            }
            .custom2_1160{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1160 span:hover{
                color:;
            }
            #medical_box_1160 .mode-btn1_1160{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1160 .mode-btn1_1160 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1160 .mode-btn2_1160{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1160 .mode-btn2_1160 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1160 .div-btn-title_main_1160{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1160 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1160 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1159 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1159 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1159 .background-img{
                border-radius:;
            }
        #medical_box_1159 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1159 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1159 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1159.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1159:hover{}#medical_box_1159 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1159:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1159 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1159  
                
                #medical_box_1159 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1159 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1159:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1159.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Kids/1656070107_Sticker nails.webp");
                }
            
            #medical_box_1159 .mode1-size_1159{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1159 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1159 > div{
               height:100%;
            }
            #medical_box_1159 .mode2-size_1159{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1159 .mode3-size_1159{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1159 .mode4-size_1159{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1159 .mode5-size_1159{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1159 .mode6-size_1159{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1159 .mode7-size_1159{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1159 .mode7-size_1159 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1159 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1159 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1159{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1159 span:hover{
                color:!important;
            }
            .custom2_1159{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1159 span:hover{
                color:;
            }
            #medical_box_1159 .mode-btn1_1159{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1159 .mode-btn1_1159 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1159 .mode-btn2_1159{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1159 .mode-btn2_1159 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1159 .div-btn-title_main_1159{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1159 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1159 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1158 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1158 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1158 .background-img{
                border-radius:;
            }
        #medical_box_1158 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1158 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1158 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1158.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1158:hover{}#medical_box_1158 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1158:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1158 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1158  
                
                #medical_box_1158 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1158 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1158:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1158.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/kids/1655907388_kids fruit.webp");
                }
            
            #medical_box_1158 .mode1-size_1158{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1158 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1158 > div{
               height:100%;
            }
            #medical_box_1158 .mode2-size_1158{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1158 .mode3-size_1158{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1158 .mode4-size_1158{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1158 .mode5-size_1158{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1158 .mode6-size_1158{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1158 .mode7-size_1158{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1158 .mode7-size_1158 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1158 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1158 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1158{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1158 span:hover{
                color:!important;
            }
            .custom2_1158{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1158 span:hover{
                color:;
            }
            #medical_box_1158 .mode-btn1_1158{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1158 .mode-btn1_1158 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1158 .mode-btn2_1158{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1158 .mode-btn2_1158 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1158 .div-btn-title_main_1158{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1158 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1158 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1157 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1157 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1157 .background-img{
                border-radius:;
            }
        #medical_box_1157 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1157 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1157 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1157.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1157:hover{}#medical_box_1157 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1157:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1157 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1157  
                
                #medical_box_1157 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1157 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1157:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1157.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Kids/1655905334_Floral nails.webp");
                }
            
            #medical_box_1157 .mode1-size_1157{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1157 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1157 > div{
               height:100%;
            }
            #medical_box_1157 .mode2-size_1157{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1157 .mode3-size_1157{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1157 .mode4-size_1157{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1157 .mode5-size_1157{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1157 .mode6-size_1157{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1157 .mode7-size_1157{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1157 .mode7-size_1157 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1157 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1157 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1157{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1157 span:hover{
                color:!important;
            }
            .custom2_1157{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1157 span:hover{
                color:;
            }
            #medical_box_1157 .mode-btn1_1157{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1157 .mode-btn1_1157 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1157 .mode-btn2_1157{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1157 .mode-btn2_1157 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1157 .div-btn-title_main_1157{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1157 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1157 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1156 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1156 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1156 .background-img{
                border-radius:;
            }
        #medical_box_1156 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1156 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1156 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1156.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1156:hover{}#medical_box_1156 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1156:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1156 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1156  
                
                #medical_box_1156 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1156 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1156:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1156.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Kids/1655904759_Foot print.webp");
                }
            
            #medical_box_1156 .mode1-size_1156{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1156 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1156 > div{
               height:100%;
            }
            #medical_box_1156 .mode2-size_1156{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1156 .mode3-size_1156{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1156 .mode4-size_1156{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1156 .mode5-size_1156{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1156 .mode6-size_1156{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1156 .mode7-size_1156{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1156 .mode7-size_1156 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1156 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1156 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1156{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1156 span:hover{
                color:!important;
            }
            .custom2_1156{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1156 span:hover{
                color:;
            }
            #medical_box_1156 .mode-btn1_1156{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1156 .mode-btn1_1156 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1156 .mode-btn2_1156{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1156 .mode-btn2_1156 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1156 .div-btn-title_main_1156{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1156 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1156 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1155 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1155 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1155 .background-img{
                border-radius:;
            }
        #medical_box_1155 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1155 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1155 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1155.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1155:hover{}#medical_box_1155 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1155:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1155 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1155  
                
                #medical_box_1155 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1155 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1155:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1155.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Kids/1656059978_Emoji nails.webp");
                }
            
            #medical_box_1155 .mode1-size_1155{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1155 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1155 > div{
               height:100%;
            }
            #medical_box_1155 .mode2-size_1155{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1155 .mode3-size_1155{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1155 .mode4-size_1155{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1155 .mode5-size_1155{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1155 .mode6-size_1155{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1155 .mode7-size_1155{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1155 .mode7-size_1155 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1155 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1155 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1155{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1155 span:hover{
                color:!important;
            }
            .custom2_1155{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1155 span:hover{
                color:;
            }
            #medical_box_1155 .mode-btn1_1155{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1155 .mode-btn1_1155 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1155 .mode-btn2_1155{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1155 .mode-btn2_1155 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1155 .div-btn-title_main_1155{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1155 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1155 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_318 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:32px;}.module[data-id_page='495']:hover .new_medical_title_main{}#module_new_medical_318 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='495']:hover .new_medical_box_main{}
            #module_new_medical_318 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_318 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_318 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_318 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_318 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_318 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_318 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_318 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_318 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_318 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_318 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_318 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_318 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_318 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_318 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_318 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_318 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_318 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_318 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_318 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_318 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_318 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_318 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_318 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_318 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_318{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_318 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_318 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_318 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_318 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_318 .swiper-container{
                width:1200px;
            }
            #module_new_medical_318 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_318 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_318 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_318 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_317 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_317 .content_str{
				width:100%;
			}
            #module_new_medical_317 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_317 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_317 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_317 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_317 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_317 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_317 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_317 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_317 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_317 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_317 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_317 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_317 a{
                color:#00AFEF!important;
            }
            #module_new_medical_317 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_317 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_317 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1154 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1154 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1154 .background-img{
                border-radius:;
            }
        #medical_box_1154 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1154.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1154:hover{}#medical_box_1154 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1154:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1154 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1154  
                
                #medical_box_1154 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1154 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1154:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1154.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656143788_Toe (9).webp");
                }
            
            #medical_box_1154 .mode1-size_1154{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1154 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1154 > div{
               height:100%;
            }
            #medical_box_1154 .mode2-size_1154{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1154 .mode3-size_1154{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1154 .mode4-size_1154{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1154 .mode5-size_1154{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1154 .mode6-size_1154{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1154 .mode7-size_1154{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1154 .mode7-size_1154 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1154 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1154 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1154{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1154 span:hover{
                color:!important;
            }
            .custom2_1154{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1154 span:hover{
                color:;
            }
            #medical_box_1154 .mode-btn1_1154{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1154 .mode-btn1_1154 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1154 .mode-btn2_1154{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1154 .mode-btn2_1154 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1154 .div-btn-title_main_1154{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1154 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1154 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1153 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1153 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1153 .background-img{
                border-radius:;
            }
        #medical_box_1153 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1153.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1153:hover{}#medical_box_1153 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1153:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1153 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1153  
                
                #medical_box_1153 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1153 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1153:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1153.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656140489_Toe (2).webp");
                }
            
            #medical_box_1153 .mode1-size_1153{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1153 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1153 > div{
               height:100%;
            }
            #medical_box_1153 .mode2-size_1153{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1153 .mode3-size_1153{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1153 .mode4-size_1153{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1153 .mode5-size_1153{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1153 .mode6-size_1153{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1153 .mode7-size_1153{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1153 .mode7-size_1153 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1153 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1153 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1153{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1153 span:hover{
                color:!important;
            }
            .custom2_1153{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1153 span:hover{
                color:;
            }
            #medical_box_1153 .mode-btn1_1153{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1153 .mode-btn1_1153 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1153 .mode-btn2_1153{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1153 .mode-btn2_1153 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1153 .div-btn-title_main_1153{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1153 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1153 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1152 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1152 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1152 .background-img{
                border-radius:;
            }
        #medical_box_1152 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1152.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1152:hover{}#medical_box_1152 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1152:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1152 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1152  
                
                #medical_box_1152 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1152 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1152:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1152.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656140489_Toe (5).webp");
                }
            
            #medical_box_1152 .mode1-size_1152{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1152 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1152 > div{
               height:100%;
            }
            #medical_box_1152 .mode2-size_1152{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1152 .mode3-size_1152{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1152 .mode4-size_1152{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1152 .mode5-size_1152{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1152 .mode6-size_1152{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1152 .mode7-size_1152{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1152 .mode7-size_1152 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1152 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1152 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1152{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1152 span:hover{
                color:!important;
            }
            .custom2_1152{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1152 span:hover{
                color:;
            }
            #medical_box_1152 .mode-btn1_1152{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1152 .mode-btn1_1152 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1152 .mode-btn2_1152{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1152 .mode-btn2_1152 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1152 .div-btn-title_main_1152{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1152 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1152 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1151 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1151 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1151 .background-img{
                border-radius:;
            }
        #medical_box_1151 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1151.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1151:hover{}#medical_box_1151 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1151:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1151 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1151  
                
                #medical_box_1151 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1151 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1151:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1151.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656140489_Toe (7).webp");
                }
            
            #medical_box_1151 .mode1-size_1151{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1151 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1151 > div{
               height:100%;
            }
            #medical_box_1151 .mode2-size_1151{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1151 .mode3-size_1151{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1151 .mode4-size_1151{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1151 .mode5-size_1151{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1151 .mode6-size_1151{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1151 .mode7-size_1151{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1151 .mode7-size_1151 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1151 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1151 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1151{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1151 span:hover{
                color:!important;
            }
            .custom2_1151{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1151 span:hover{
                color:;
            }
            #medical_box_1151 .mode-btn1_1151{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1151 .mode-btn1_1151 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1151 .mode-btn2_1151{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1151 .mode-btn2_1151 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1151 .div-btn-title_main_1151{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1151 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1151 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1150 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1150 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1150 .background-img{
                border-radius:;
            }
        #medical_box_1150 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1150.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1150:hover{}#medical_box_1150 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1150:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1150 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1150  
                
                #medical_box_1150 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1150 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1150:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1150.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656140489_Toe (1).webp");
                }
            
            #medical_box_1150 .mode1-size_1150{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1150 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1150 > div{
               height:100%;
            }
            #medical_box_1150 .mode2-size_1150{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1150 .mode3-size_1150{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1150 .mode4-size_1150{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1150 .mode5-size_1150{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1150 .mode6-size_1150{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1150 .mode7-size_1150{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1150 .mode7-size_1150 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1150 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1150 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1150{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1150 span:hover{
                color:!important;
            }
            .custom2_1150{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1150 span:hover{
                color:;
            }
            #medical_box_1150 .mode-btn1_1150{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1150 .mode-btn1_1150 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1150 .mode-btn2_1150{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1150 .mode-btn2_1150 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1150 .div-btn-title_main_1150{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1150 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1150 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1149 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1149 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1149 .background-img{
                border-radius:;
            }
        #medical_box_1149 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1149.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1149:hover{}#medical_box_1149 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1149:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1149 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1149  
                
                #medical_box_1149 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1149 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1149:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1149.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656143788_Toe (11).webp");
                }
            
            #medical_box_1149 .mode1-size_1149{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1149 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1149 > div{
               height:100%;
            }
            #medical_box_1149 .mode2-size_1149{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1149 .mode3-size_1149{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1149 .mode4-size_1149{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1149 .mode5-size_1149{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1149 .mode6-size_1149{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1149 .mode7-size_1149{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1149 .mode7-size_1149 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1149 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1149 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1149{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1149 span:hover{
                color:!important;
            }
            .custom2_1149{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1149 span:hover{
                color:;
            }
            #medical_box_1149 .mode-btn1_1149{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1149 .mode-btn1_1149 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1149 .mode-btn2_1149{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1149 .mode-btn2_1149 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1149 .div-btn-title_main_1149{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1149 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1149 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1148 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1148 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1148 .background-img{
                border-radius:;
            }
        #medical_box_1148 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1148.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1148:hover{}#medical_box_1148 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1148:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1148 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1148  
                
                #medical_box_1148 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1148 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1148:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1148.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656143788_Toe (10).webp");
                }
            
            #medical_box_1148 .mode1-size_1148{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1148 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1148 > div{
               height:100%;
            }
            #medical_box_1148 .mode2-size_1148{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1148 .mode3-size_1148{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1148 .mode4-size_1148{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1148 .mode5-size_1148{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1148 .mode6-size_1148{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1148 .mode7-size_1148{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1148 .mode7-size_1148 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1148 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1148 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1148{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1148 span:hover{
                color:!important;
            }
            .custom2_1148{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1148 span:hover{
                color:;
            }
            #medical_box_1148 .mode-btn1_1148{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1148 .mode-btn1_1148 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1148 .mode-btn2_1148{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1148 .mode-btn2_1148 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1148 .div-btn-title_main_1148{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1148 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1148 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1147 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1147 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1147 .background-img{
                border-radius:;
            }
        #medical_box_1147 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1147.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1147:hover{}#medical_box_1147 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1147:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1147 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1147  
                
                #medical_box_1147 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1147 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1147:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1147.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656143788_Toe (8).webp");
                }
            
            #medical_box_1147 .mode1-size_1147{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1147 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1147 > div{
               height:100%;
            }
            #medical_box_1147 .mode2-size_1147{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1147 .mode3-size_1147{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1147 .mode4-size_1147{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1147 .mode5-size_1147{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1147 .mode6-size_1147{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1147 .mode7-size_1147{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1147 .mode7-size_1147 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1147 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1147 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1147{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1147 span:hover{
                color:!important;
            }
            .custom2_1147{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1147 span:hover{
                color:;
            }
            #medical_box_1147 .mode-btn1_1147{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1147 .mode-btn1_1147 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1147 .mode-btn2_1147{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1147 .mode-btn2_1147 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1147 .div-btn-title_main_1147{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1147 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1147 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1146 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1146 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1146 .background-img{
                border-radius:;
            }
        #medical_box_1146 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1146.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1146:hover{}#medical_box_1146 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1146:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1146 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1146  
                
                #medical_box_1146 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1146 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1146:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1146.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656140489_Toe (3).webp");
                }
            
            #medical_box_1146 .mode1-size_1146{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1146 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1146 > div{
               height:100%;
            }
            #medical_box_1146 .mode2-size_1146{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1146 .mode3-size_1146{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1146 .mode4-size_1146{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1146 .mode5-size_1146{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1146 .mode6-size_1146{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1146 .mode7-size_1146{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1146 .mode7-size_1146 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1146 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1146 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1146{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1146 span:hover{
                color:!important;
            }
            .custom2_1146{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1146 span:hover{
                color:;
            }
            #medical_box_1146 .mode-btn1_1146{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1146 .mode-btn1_1146 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1146 .mode-btn2_1146{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1146 .mode-btn2_1146 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1146 .div-btn-title_main_1146{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1146 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1146 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1145 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1145 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1145 .background-img{
                border-radius:;
            }
        #medical_box_1145 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1145.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1145:hover{}#medical_box_1145 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1145:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1145 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1145  
                
                #medical_box_1145 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1145 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1145:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1145.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Toenaildesign/1656140489_Toe (6).webp");
                }
            
            #medical_box_1145 .mode1-size_1145{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1145 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1145 > div{
               height:100%;
            }
            #medical_box_1145 .mode2-size_1145{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1145 .mode3-size_1145{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1145 .mode4-size_1145{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1145 .mode5-size_1145{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1145 .mode6-size_1145{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1145 .mode7-size_1145{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1145 .mode7-size_1145 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1145 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1145 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1145{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1145 span:hover{
                color:!important;
            }
            .custom2_1145{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1145 span:hover{
                color:;
            }
            #medical_box_1145 .mode-btn1_1145{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1145 .mode-btn1_1145 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1145 .mode-btn2_1145{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1145 .mode-btn2_1145 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1145 .div-btn-title_main_1145{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1145 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1145 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_317 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:32px;line-height:32px;}.module[data-id_page='432']:hover .new_medical_title_main{}#module_new_medical_317 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:32px;padding-bottom:64px;border-style:none;}.module[data-id_page='466']:hover .new_medical_box_main{}
            #module_new_medical_317 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_317 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_317 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_317 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_317 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_317 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_317 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_317 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_317 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_317 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_317 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_317 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_317 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_317 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_317 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_317 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_317 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_317 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_317 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_317 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_317 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_317 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_317 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_317 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_317 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_317{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_317 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_317 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_317 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_317 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_317 .swiper-container{
                width:1200px;
            }
            #module_new_medical_317 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_317 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_317 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_317 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        #layout_box_75.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:2;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_75:hover{}#layout_box_75 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_35:hover .new_layout_title{}
                #layout_box_75 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_75:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_75 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Holiday/1655742424_christmas.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_75  
                
                #layout_box_75 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_75 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_75:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_75 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_75 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_75.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_74.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:2;grid-row-end:3;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_74:hover{}#layout_box_74 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_34:hover .new_layout_title{}
                #layout_box_74 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_74:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_74 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Holiday/1656154619_Wedding.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_74  
                
                #layout_box_74 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_74 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_74:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_74 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_74 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_74.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_73.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:3;grid-row-end:4;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_73:hover{}#layout_box_73 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_33:hover .new_layout_title{}
                #layout_box_73 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_73:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_73 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Holiday/1655797922_Party nails.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_73  
                
                #layout_box_73 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_73 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_73:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_73 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_73 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_73.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_72.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:2;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_72:hover{}#layout_box_72 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_32:hover .new_layout_title{}
                #layout_box_72 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_72:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_72 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Holiday/1655742424_valentine.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_72  
                
                #layout_box_72 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_72 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_72:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_72 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_72 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_72.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_71.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:2;grid-row-end:3;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_71:hover{}#layout_box_71 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_31:hover .new_layout_title{}
                #layout_box_71 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_71:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_71 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Holiday/1655806633_Festival.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_71  
                
                #layout_box_71 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_71 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_71:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_71 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_71 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_71.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_70.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:3;grid-row-end:4;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_70:hover{}#layout_box_70 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_30:hover .new_layout_title{}
                #layout_box_70 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_70:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_70 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Holiday/1655805886_Easter.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_70  
                
                #layout_box_70 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_70 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_70:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_70 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_70 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_70.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_69.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:1;grid-row-end:3;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_69:hover{}#layout_box_69 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_29:hover .new_layout_title{}
                #layout_box_69 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_69:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_69 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Holiday/1655810857_Thanks giving.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_69  
                
                #layout_box_69 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_69 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_69:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_69 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_69 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_69.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_68.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:3;grid-row-end:4;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_68:hover{}#layout_box_68 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_28:hover .new_layout_title{}
                #layout_box_68 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_68:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_68 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Holiday/1655742424_halloween1.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_68  
                
                #layout_box_68 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_68 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_68:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_68 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_68 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_68.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_67.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:1;grid-row-end:2;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_67:hover{}#layout_box_67 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_27:hover .new_layout_title{}
                #layout_box_67 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_67:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_67 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/birthday/1655734158_birthday.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_67  
                
                #layout_box_67 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_67 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_67:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_67 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_67 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_67.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_66.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:2;grid-row-end:4;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_66:hover{}#layout_box_66 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_26:hover .new_layout_title{}
                #layout_box_66 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_66:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_66 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Holiday/1656074554_Canada nails 3.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_66  
                
                #layout_box_66 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_66 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_66:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_66 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_66 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_66.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_9 .new_layout_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:32px;}.module[data-id_page='493']:hover .new_layout_title_main{}
                #module_new_layout_9 .new_layout_title_main h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #module_new_layout_9 .new_layout_box_main{display:grid;width:1200px;height:896px;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(3,1fr);column-gap:16px;row-gap:16px;visibility:visible;margin-top:32px;border-style:none;}.module[data-id_page='475']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_9{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_9 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_9 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_9 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_9 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_9 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
            #module_new_medical_316 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_316 .content_str{
				width:100%;
			}
            #module_new_medical_316 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_316 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_316 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_316 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_316 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_316 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_316 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_316 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_316 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_316 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_316 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_316 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_316 a{
                color:#00AFEF!important;
            }
            #module_new_medical_316 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_316 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_316 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1144 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1144 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1144 .background-img{
                border-radius:;
            }
        #medical_box_1144 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1144 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1144 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1144.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1144:hover{}#medical_box_1144 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1144:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1144 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1144  
                
                #medical_box_1144 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1144 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1144:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1144.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/chrome/1656087465_Chrom Nails.webp");
                }
            
            #medical_box_1144 .mode1-size_1144{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1144 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1144 > div{
               height:100%;
            }
            #medical_box_1144 .mode2-size_1144{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1144 .mode3-size_1144{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1144 .mode4-size_1144{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1144 .mode5-size_1144{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1144 .mode6-size_1144{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1144 .mode7-size_1144{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1144 .mode7-size_1144 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1144 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1144 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1144{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1144 span:hover{
                color:!important;
            }
            .custom2_1144{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1144 span:hover{
                color:;
            }
            #medical_box_1144 .mode-btn1_1144{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1144 .mode-btn1_1144 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1144 .mode-btn2_1144{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1144 .mode-btn2_1144 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1144 .div-btn-title_main_1144{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1144 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1144 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1143 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1143 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1143 .background-img{
                border-radius:;
            }
        #medical_box_1143 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1143 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1143 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1143.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1143:hover{}#medical_box_1143 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1143:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1143 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1143  
                
                #medical_box_1143 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1143 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1143:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1143.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Branded/1656082545_Branded nails.webp");
                }
            
            #medical_box_1143 .mode1-size_1143{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1143 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1143 > div{
               height:100%;
            }
            #medical_box_1143 .mode2-size_1143{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1143 .mode3-size_1143{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1143 .mode4-size_1143{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1143 .mode5-size_1143{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1143 .mode6-size_1143{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1143 .mode7-size_1143{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1143 .mode7-size_1143 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1143 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1143 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1143{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1143 span:hover{
                color:!important;
            }
            .custom2_1143{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1143 span:hover{
                color:;
            }
            #medical_box_1143 .mode-btn1_1143{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1143 .mode-btn1_1143 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1143 .mode-btn2_1143{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1143 .mode-btn2_1143 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1143 .div-btn-title_main_1143{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1143 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1143 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1142 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1142 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1142 .background-img{
                border-radius:;
            }
        #medical_box_1142 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1142 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1142 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1142.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1142:hover{}#medical_box_1142 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1142:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1142 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1142  
                
                #medical_box_1142 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1142 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1142:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1142.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/luxury/1655878285_Pearl Nail.webp");
                }
            
            #medical_box_1142 .mode1-size_1142{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1142 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1142 > div{
               height:100%;
            }
            #medical_box_1142 .mode2-size_1142{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1142 .mode3-size_1142{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1142 .mode4-size_1142{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1142 .mode5-size_1142{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1142 .mode6-size_1142{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1142 .mode7-size_1142{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1142 .mode7-size_1142 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1142 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1142 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1142{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1142 span:hover{
                color:!important;
            }
            .custom2_1142{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1142 span:hover{
                color:;
            }
            #medical_box_1142 .mode-btn1_1142{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1142 .mode-btn1_1142 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1142 .mode-btn2_1142{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1142 .mode-btn2_1142 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1142 .div-btn-title_main_1142{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1142 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1142 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1141 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1141 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1141 .background-img{
                border-radius:;
            }
        #medical_box_1141 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1141 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1141 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1141.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1141:hover{}#medical_box_1141 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1141:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1141 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1141  
                
                #medical_box_1141 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1141 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1141:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1141.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Ombre/1656082591_Ombre nails 2.webp");
                }
            
            #medical_box_1141 .mode1-size_1141{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1141 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1141 > div{
               height:100%;
            }
            #medical_box_1141 .mode2-size_1141{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1141 .mode3-size_1141{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1141 .mode4-size_1141{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1141 .mode5-size_1141{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1141 .mode6-size_1141{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1141 .mode7-size_1141{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1141 .mode7-size_1141 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1141 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1141 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1141{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1141 span:hover{
                color:!important;
            }
            .custom2_1141{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1141 span:hover{
                color:;
            }
            #medical_box_1141 .mode-btn1_1141{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1141 .mode-btn1_1141 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1141 .mode-btn2_1141{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1141 .mode-btn2_1141 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1141 .div-btn-title_main_1141{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1141 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1141 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1140 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1140 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1140 .background-img{
                border-radius:;
            }
        #medical_box_1140 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1140 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1140 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1140.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1140:hover{}#medical_box_1140 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1140:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1140 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1140  
                
                #medical_box_1140 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1140 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1140:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1140.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Accessories/1655741201_Jeweled nail.webp");
                }
            
            #medical_box_1140 .mode1-size_1140{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1140 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1140 > div{
               height:100%;
            }
            #medical_box_1140 .mode2-size_1140{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1140 .mode3-size_1140{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1140 .mode4-size_1140{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1140 .mode5-size_1140{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1140 .mode6-size_1140{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1140 .mode7-size_1140{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1140 .mode7-size_1140 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1140 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1140 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1140{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1140 span:hover{
                color:!important;
            }
            .custom2_1140{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1140 span:hover{
                color:;
            }
            #medical_box_1140 .mode-btn1_1140{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1140 .mode-btn1_1140 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1140 .mode-btn2_1140{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1140 .mode-btn2_1140 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1140 .div-btn-title_main_1140{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1140 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1140 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1139 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1139 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1139 .background-img{
                border-radius:;
            }
        #medical_box_1139 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1139 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1139 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1139.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1139:hover{}#medical_box_1139 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1139:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1139 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1139  
                
                #medical_box_1139 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1139 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1139:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1139.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/luxury/1655744867_gold foil.webp");
                }
            
            #medical_box_1139 .mode1-size_1139{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1139 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1139 > div{
               height:100%;
            }
            #medical_box_1139 .mode2-size_1139{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1139 .mode3-size_1139{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1139 .mode4-size_1139{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1139 .mode5-size_1139{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1139 .mode6-size_1139{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1139 .mode7-size_1139{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1139 .mode7-size_1139 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1139 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1139 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1139{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1139 span:hover{
                color:!important;
            }
            .custom2_1139{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1139 span:hover{
                color:;
            }
            #medical_box_1139 .mode-btn1_1139{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1139 .mode-btn1_1139 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1139 .mode-btn2_1139{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1139 .mode-btn2_1139 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1139 .div-btn-title_main_1139{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1139 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1139 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1138 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1138 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1138 .background-img{
                border-radius:;
            }
        #medical_box_1138 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1138 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1138 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1138.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1138:hover{}#medical_box_1138 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1138:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1138 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1138  
                
                #medical_box_1138 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1138 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1138:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1138.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/luxury/1655894958_Stardust nails.webp");
                }
            
            #medical_box_1138 .mode1-size_1138{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1138 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1138 > div{
               height:100%;
            }
            #medical_box_1138 .mode2-size_1138{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1138 .mode3-size_1138{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1138 .mode4-size_1138{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1138 .mode5-size_1138{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1138 .mode6-size_1138{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1138 .mode7-size_1138{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1138 .mode7-size_1138 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1138 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1138 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1138{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1138 span:hover{
                color:!important;
            }
            .custom2_1138{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1138 span:hover{
                color:;
            }
            #medical_box_1138 .mode-btn1_1138{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1138 .mode-btn1_1138 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1138 .mode-btn2_1138{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1138 .mode-btn2_1138 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1138 .div-btn-title_main_1138{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1138 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1138 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1137 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1137 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1137 .background-img{
                border-radius:;
            }
        #medical_box_1137 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1137 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1137 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1137.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1137:hover{}#medical_box_1137 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1137:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1137 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1137  
                
                #medical_box_1137 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1137 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1137:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1137.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/luxury/1655796032_Silver culf.webp");
                }
            
            #medical_box_1137 .mode1-size_1137{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1137 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1137 > div{
               height:100%;
            }
            #medical_box_1137 .mode2-size_1137{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1137 .mode3-size_1137{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1137 .mode4-size_1137{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1137 .mode5-size_1137{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1137 .mode6-size_1137{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1137 .mode7-size_1137{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1137 .mode7-size_1137 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1137 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1137 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1137{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1137 span:hover{
                color:!important;
            }
            .custom2_1137{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1137 span:hover{
                color:;
            }
            #medical_box_1137 .mode-btn1_1137{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1137 .mode-btn1_1137 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1137 .mode-btn2_1137{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1137 .mode-btn2_1137 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1137 .div-btn-title_main_1137{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1137 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1137 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1136 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1136 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1136 .background-img{
                border-radius:;
            }
        #medical_box_1136 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1136 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1136 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1136.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1136:hover{}#medical_box_1136 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1136:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1136 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1136  
                
                #medical_box_1136 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1136 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1136:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1136.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/French/1655741042_Glitter French.webp");
                }
            
            #medical_box_1136 .mode1-size_1136{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1136 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1136 > div{
               height:100%;
            }
            #medical_box_1136 .mode2-size_1136{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1136 .mode3-size_1136{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1136 .mode4-size_1136{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1136 .mode5-size_1136{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1136 .mode6-size_1136{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1136 .mode7-size_1136{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1136 .mode7-size_1136 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1136 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1136 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1136{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1136 span:hover{
                color:!important;
            }
            .custom2_1136{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1136 span:hover{
                color:;
            }
            #medical_box_1136 .mode-btn1_1136{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1136 .mode-btn1_1136 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1136 .mode-btn2_1136{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1136 .mode-btn2_1136 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1136 .div-btn-title_main_1136{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1136 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1136 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1135 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1135 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1135 .background-img{
                border-radius:;
            }
        #medical_box_1135 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1135 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1135 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1135.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1135:hover{}#medical_box_1135 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1135:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1135 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1135  
                
                #medical_box_1135 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1135 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1135:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1135.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/luxury/1655878495_marbel.webp");
                }
            
            #medical_box_1135 .mode1-size_1135{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1135 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1135 > div{
               height:100%;
            }
            #medical_box_1135 .mode2-size_1135{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1135 .mode3-size_1135{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1135 .mode4-size_1135{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1135 .mode5-size_1135{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1135 .mode6-size_1135{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1135 .mode7-size_1135{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1135 .mode7-size_1135 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1135 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1135 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1135{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1135 span:hover{
                color:!important;
            }
            .custom2_1135{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1135 span:hover{
                color:;
            }
            #medical_box_1135 .mode-btn1_1135{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1135 .mode-btn1_1135 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1135 .mode-btn2_1135{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1135 .mode-btn2_1135 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1135 .div-btn-title_main_1135{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1135 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1135 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_316 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:32px;}.module[data-id_page='492']:hover .new_medical_title_main{}#module_new_medical_316 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='492']:hover .new_medical_box_main{}
            #module_new_medical_316 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_316 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_316 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_316 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_316 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_316 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_316 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_316 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_316 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_316 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_316 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_316 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_316 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_316 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_316 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_316 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_316 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_316 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_316 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_316 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_316 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_316 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_316 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_316 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_316 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_316{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_316 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_316 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_316 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_316 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_316 .swiper-container{
                width:1200px;
            }
            #module_new_medical_316 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_316 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_316 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_316 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_314 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_314 .content_str{
				width:100%;
			}
            #module_new_medical_314 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_314 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_314 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_314 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_314 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_314 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_314 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_314 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_314 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_314 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_314 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_314 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_314 a{
                color:#00AFEF!important;
            }
            #module_new_medical_314 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_314 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_314 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1124 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1124 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1124 .background-img{
                border-radius:;
            }
        #medical_box_1124 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1124.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1124:hover{}#medical_box_1124 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1124:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1124 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1124  
                
                #medical_box_1124 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1124 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1124:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1124.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655876742_Long nails.webp");
                }
            
            #medical_box_1124 .mode1-size_1124{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1124 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1124 > div{
               height:100%;
            }
            #medical_box_1124 .mode2-size_1124{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1124 .mode3-size_1124{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1124 .mode4-size_1124{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1124 .mode5-size_1124{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1124 .mode6-size_1124{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1124 .mode7-size_1124{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1124 .mode7-size_1124 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1124 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1124 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1124{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1124 span:hover{
                color:!important;
            }
            .custom2_1124{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1124 span:hover{
                color:;
            }
            #medical_box_1124 .mode-btn1_1124{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1124 .mode-btn1_1124 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1124 .mode-btn2_1124{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1124 .mode-btn2_1124 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1124 .div-btn-title_main_1124{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1124 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1124 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1123 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1123 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1123 .background-img{
                border-radius:;
            }
        #medical_box_1123 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1123.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1123:hover{}#medical_box_1123 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1123:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1123 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1123  
                
                #medical_box_1123 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1123 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1123:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1123.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655877391_Long nails 2.webp");
                }
            
            #medical_box_1123 .mode1-size_1123{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1123 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1123 > div{
               height:100%;
            }
            #medical_box_1123 .mode2-size_1123{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1123 .mode3-size_1123{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1123 .mode4-size_1123{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1123 .mode5-size_1123{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1123 .mode6-size_1123{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1123 .mode7-size_1123{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1123 .mode7-size_1123 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1123 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1123 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1123{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1123 span:hover{
                color:!important;
            }
            .custom2_1123{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1123 span:hover{
                color:;
            }
            #medical_box_1123 .mode-btn1_1123{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1123 .mode-btn1_1123 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1123 .mode-btn2_1123{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1123 .mode-btn2_1123 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1123 .div-btn-title_main_1123{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1123 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1123 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1122 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1122 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1122 .background-img{
                border-radius:;
            }
        #medical_box_1122 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1122.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1122:hover{}#medical_box_1122 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1122:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1122 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1122  
                
                #medical_box_1122 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1122 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1122:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1122.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655877648_Long nails 3.webp");
                }
            
            #medical_box_1122 .mode1-size_1122{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1122 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1122 > div{
               height:100%;
            }
            #medical_box_1122 .mode2-size_1122{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1122 .mode3-size_1122{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1122 .mode4-size_1122{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1122 .mode5-size_1122{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1122 .mode6-size_1122{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1122 .mode7-size_1122{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1122 .mode7-size_1122 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1122 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1122 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1122{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1122 span:hover{
                color:!important;
            }
            .custom2_1122{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1122 span:hover{
                color:;
            }
            #medical_box_1122 .mode-btn1_1122{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1122 .mode-btn1_1122 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1122 .mode-btn2_1122{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1122 .mode-btn2_1122 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1122 .div-btn-title_main_1122{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1122 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1122 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1121 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1121 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1121 .background-img{
                border-radius:;
            }
        #medical_box_1121 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1121.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1121:hover{}#medical_box_1121 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1121:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1121 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1121  
                
                #medical_box_1121 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1121 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1121:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1121.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655878072_Long nails 4.webp");
                }
            
            #medical_box_1121 .mode1-size_1121{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1121 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1121 > div{
               height:100%;
            }
            #medical_box_1121 .mode2-size_1121{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1121 .mode3-size_1121{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1121 .mode4-size_1121{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1121 .mode5-size_1121{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1121 .mode6-size_1121{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1121 .mode7-size_1121{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1121 .mode7-size_1121 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1121 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1121 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1121{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1121 span:hover{
                color:!important;
            }
            .custom2_1121{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1121 span:hover{
                color:;
            }
            #medical_box_1121 .mode-btn1_1121{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1121 .mode-btn1_1121 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1121 .mode-btn2_1121{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1121 .mode-btn2_1121 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1121 .div-btn-title_main_1121{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1121 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1121 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1120 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1120 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1120 .background-img{
                border-radius:;
            }
        #medical_box_1120 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1120.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1120:hover{}#medical_box_1120 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1120:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1120 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1120  
                
                #medical_box_1120 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1120 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1120:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1120.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655878694_Long nails 5.webp");
                }
            
            #medical_box_1120 .mode1-size_1120{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1120 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1120 > div{
               height:100%;
            }
            #medical_box_1120 .mode2-size_1120{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1120 .mode3-size_1120{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1120 .mode4-size_1120{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1120 .mode5-size_1120{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1120 .mode6-size_1120{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1120 .mode7-size_1120{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1120 .mode7-size_1120 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1120 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1120 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1120{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1120 span:hover{
                color:!important;
            }
            .custom2_1120{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1120 span:hover{
                color:;
            }
            #medical_box_1120 .mode-btn1_1120{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1120 .mode-btn1_1120 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1120 .mode-btn2_1120{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1120 .mode-btn2_1120 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1120 .div-btn-title_main_1120{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1120 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1120 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1119 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1119 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1119 .background-img{
                border-radius:;
            }
        #medical_box_1119 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1119.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1119:hover{}#medical_box_1119 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1119:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1119 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1119  
                
                #medical_box_1119 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1119 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1119:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1119.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655879202_Long nails 6.webp");
                }
            
            #medical_box_1119 .mode1-size_1119{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1119 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1119 > div{
               height:100%;
            }
            #medical_box_1119 .mode2-size_1119{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1119 .mode3-size_1119{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1119 .mode4-size_1119{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1119 .mode5-size_1119{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1119 .mode6-size_1119{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1119 .mode7-size_1119{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1119 .mode7-size_1119 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1119 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1119 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1119{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1119 span:hover{
                color:!important;
            }
            .custom2_1119{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1119 span:hover{
                color:;
            }
            #medical_box_1119 .mode-btn1_1119{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1119 .mode-btn1_1119 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1119 .mode-btn2_1119{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1119 .mode-btn2_1119 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1119 .div-btn-title_main_1119{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1119 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1119 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1118 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1118 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1118 .background-img{
                border-radius:;
            }
        #medical_box_1118 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1118.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1118:hover{}#medical_box_1118 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1118:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1118 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1118  
                
                #medical_box_1118 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1118 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1118:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1118.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655880691_Long nails 7.webp");
                }
            
            #medical_box_1118 .mode1-size_1118{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1118 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1118 > div{
               height:100%;
            }
            #medical_box_1118 .mode2-size_1118{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1118 .mode3-size_1118{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1118 .mode4-size_1118{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1118 .mode5-size_1118{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1118 .mode6-size_1118{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1118 .mode7-size_1118{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1118 .mode7-size_1118 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1118 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1118 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1118{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1118 span:hover{
                color:!important;
            }
            .custom2_1118{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1118 span:hover{
                color:;
            }
            #medical_box_1118 .mode-btn1_1118{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1118 .mode-btn1_1118 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1118 .mode-btn2_1118{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1118 .mode-btn2_1118 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1118 .div-btn-title_main_1118{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1118 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1118 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1117 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1117 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1117 .background-img{
                border-radius:;
            }
        #medical_box_1117 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1117.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1117:hover{}#medical_box_1117 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1117:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1117 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1117  
                
                #medical_box_1117 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1117 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1117:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1117.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655881758_Long nails 8.webp");
                }
            
            #medical_box_1117 .mode1-size_1117{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1117 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1117 > div{
               height:100%;
            }
            #medical_box_1117 .mode2-size_1117{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1117 .mode3-size_1117{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1117 .mode4-size_1117{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1117 .mode5-size_1117{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1117 .mode6-size_1117{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1117 .mode7-size_1117{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1117 .mode7-size_1117 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1117 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1117 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1117{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1117 span:hover{
                color:!important;
            }
            .custom2_1117{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1117 span:hover{
                color:;
            }
            #medical_box_1117 .mode-btn1_1117{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1117 .mode-btn1_1117 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1117 .mode-btn2_1117{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1117 .mode-btn2_1117 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1117 .div-btn-title_main_1117{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1117 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1117 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1116 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1116 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1116 .background-img{
                border-radius:;
            }
        #medical_box_1116 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1116.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1116:hover{}#medical_box_1116 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1116:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1116 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1116  
                
                #medical_box_1116 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1116 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1116:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1116.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655892024_Long nails 11.webp");
                }
            
            #medical_box_1116 .mode1-size_1116{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1116 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1116 > div{
               height:100%;
            }
            #medical_box_1116 .mode2-size_1116{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1116 .mode3-size_1116{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1116 .mode4-size_1116{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1116 .mode5-size_1116{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1116 .mode6-size_1116{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1116 .mode7-size_1116{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1116 .mode7-size_1116 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1116 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1116 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1116{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1116 span:hover{
                color:!important;
            }
            .custom2_1116{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1116 span:hover{
                color:;
            }
            #medical_box_1116 .mode-btn1_1116{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1116 .mode-btn1_1116 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1116 .mode-btn2_1116{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1116 .mode-btn2_1116 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1116 .div-btn-title_main_1116{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1116 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1116 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1115 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1115 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1115 .background-img{
                border-radius:;
            }
        #medical_box_1115 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1115.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1115:hover{}#medical_box_1115 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1115:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1115 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1115  
                
                #medical_box_1115 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1115 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1115:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1115.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Long/1655882894_Long nails 10.webp");
                }
            
            #medical_box_1115 .mode1-size_1115{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1115 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1115 > div{
               height:100%;
            }
            #medical_box_1115 .mode2-size_1115{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1115 .mode3-size_1115{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1115 .mode4-size_1115{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1115 .mode5-size_1115{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1115 .mode6-size_1115{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1115 .mode7-size_1115{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1115 .mode7-size_1115 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1115 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1115 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1115{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1115 span:hover{
                color:!important;
            }
            .custom2_1115{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1115 span:hover{
                color:;
            }
            #medical_box_1115 .mode-btn1_1115{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1115 .mode-btn1_1115 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1115 .mode-btn2_1115{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1115 .mode-btn2_1115 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1115 .div-btn-title_main_1115{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1115 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1115 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_314 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:32px;line-height:32px;}.module[data-id_page='432']:hover .new_medical_title_main{}#module_new_medical_314 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='490']:hover .new_medical_box_main{}
            #module_new_medical_314 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_314 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_314 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_314 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_314 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_314 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_314 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_314 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_314 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_314 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_314 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_314 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_314 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_314 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_314 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_314 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_314 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_314 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_314 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_314 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_314 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_314 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_314 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_314 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_314 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_314{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_314 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_314 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_314 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_314 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_314 .swiper-container{
                width:1200px;
            }
            #module_new_medical_314 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_314 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_314 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_314 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_315 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_315 .content_str{
				width:100%;
			}
            #module_new_medical_315 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_315 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_315 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_315 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_315 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_315 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_315 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_315 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_315 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_315 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_315 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_315 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_315 a{
                color:#00AFEF!important;
            }
            #module_new_medical_315 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_315 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_315 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1134 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1134 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1134 .background-img{
                border-radius:;
            }
        #medical_box_1134 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1134.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1134:hover{}#medical_box_1134 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1134:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1134 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1134  
                
                #medical_box_1134 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1134 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1134:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1134.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655715994_Short nails.webp");
                }
            
            #medical_box_1134 .mode1-size_1134{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1134 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1134 > div{
               height:100%;
            }
            #medical_box_1134 .mode2-size_1134{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1134 .mode3-size_1134{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1134 .mode4-size_1134{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1134 .mode5-size_1134{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1134 .mode6-size_1134{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1134 .mode7-size_1134{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1134 .mode7-size_1134 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1134 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1134 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1134{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1134 span:hover{
                color:!important;
            }
            .custom2_1134{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1134 span:hover{
                color:;
            }
            #medical_box_1134 .mode-btn1_1134{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1134 .mode-btn1_1134 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1134 .mode-btn2_1134{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1134 .mode-btn2_1134 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1134 .div-btn-title_main_1134{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1134 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1134 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1133 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1133 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1133 .background-img{
                border-radius:;
            }
        #medical_box_1133 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1133.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1133:hover{}#medical_box_1133 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1133:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1133 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1133  
                
                #medical_box_1133 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1133 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1133:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1133.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655718296_Short nails 2.webp");
                }
            
            #medical_box_1133 .mode1-size_1133{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1133 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1133 > div{
               height:100%;
            }
            #medical_box_1133 .mode2-size_1133{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1133 .mode3-size_1133{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1133 .mode4-size_1133{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1133 .mode5-size_1133{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1133 .mode6-size_1133{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1133 .mode7-size_1133{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1133 .mode7-size_1133 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1133 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1133 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1133{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1133 span:hover{
                color:!important;
            }
            .custom2_1133{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1133 span:hover{
                color:;
            }
            #medical_box_1133 .mode-btn1_1133{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1133 .mode-btn1_1133 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1133 .mode-btn2_1133{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1133 .mode-btn2_1133 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1133 .div-btn-title_main_1133{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1133 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1133 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1132 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1132 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1132 .background-img{
                border-radius:;
            }
        #medical_box_1132 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1132.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1132:hover{}#medical_box_1132 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1132:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1132 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1132  
                
                #medical_box_1132 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1132 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1132:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1132.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655883494_Short nails 3.webp");
                }
            
            #medical_box_1132 .mode1-size_1132{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1132 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1132 > div{
               height:100%;
            }
            #medical_box_1132 .mode2-size_1132{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1132 .mode3-size_1132{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1132 .mode4-size_1132{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1132 .mode5-size_1132{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1132 .mode6-size_1132{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1132 .mode7-size_1132{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1132 .mode7-size_1132 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1132 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1132 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1132{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1132 span:hover{
                color:!important;
            }
            .custom2_1132{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1132 span:hover{
                color:;
            }
            #medical_box_1132 .mode-btn1_1132{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1132 .mode-btn1_1132 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1132 .mode-btn2_1132{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1132 .mode-btn2_1132 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1132 .div-btn-title_main_1132{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1132 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1132 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1131 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1131 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1131 .background-img{
                border-radius:;
            }
        #medical_box_1131 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1131.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1131:hover{}#medical_box_1131 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1131:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1131 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1131  
                
                #medical_box_1131 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1131 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1131:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1131.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655886838_Short nails 4.webp");
                }
            
            #medical_box_1131 .mode1-size_1131{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1131 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1131 > div{
               height:100%;
            }
            #medical_box_1131 .mode2-size_1131{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1131 .mode3-size_1131{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1131 .mode4-size_1131{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1131 .mode5-size_1131{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1131 .mode6-size_1131{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1131 .mode7-size_1131{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1131 .mode7-size_1131 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1131 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1131 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1131{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1131 span:hover{
                color:!important;
            }
            .custom2_1131{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1131 span:hover{
                color:;
            }
            #medical_box_1131 .mode-btn1_1131{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1131 .mode-btn1_1131 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1131 .mode-btn2_1131{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1131 .mode-btn2_1131 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1131 .div-btn-title_main_1131{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1131 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1131 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1130 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1130 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1130 .background-img{
                border-radius:;
            }
        #medical_box_1130 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1130.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1130:hover{}#medical_box_1130 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1130:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1130 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1130  
                
                #medical_box_1130 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1130 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1130:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1130.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655887028_Short nails 5.webp");
                }
            
            #medical_box_1130 .mode1-size_1130{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1130 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1130 > div{
               height:100%;
            }
            #medical_box_1130 .mode2-size_1130{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1130 .mode3-size_1130{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1130 .mode4-size_1130{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1130 .mode5-size_1130{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1130 .mode6-size_1130{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1130 .mode7-size_1130{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1130 .mode7-size_1130 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1130 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1130 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1130{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1130 span:hover{
                color:!important;
            }
            .custom2_1130{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1130 span:hover{
                color:;
            }
            #medical_box_1130 .mode-btn1_1130{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1130 .mode-btn1_1130 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1130 .mode-btn2_1130{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1130 .mode-btn2_1130 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1130 .div-btn-title_main_1130{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1130 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1130 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1129 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1129 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1129 .background-img{
                border-radius:;
            }
        #medical_box_1129 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1129.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1129:hover{}#medical_box_1129 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1129:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1129 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1129  
                
                #medical_box_1129 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1129 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1129:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1129.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655887660_short nails 6.webp");
                }
            
            #medical_box_1129 .mode1-size_1129{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1129 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1129 > div{
               height:100%;
            }
            #medical_box_1129 .mode2-size_1129{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1129 .mode3-size_1129{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1129 .mode4-size_1129{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1129 .mode5-size_1129{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1129 .mode6-size_1129{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1129 .mode7-size_1129{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1129 .mode7-size_1129 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1129 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1129 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1129{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1129 span:hover{
                color:!important;
            }
            .custom2_1129{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1129 span:hover{
                color:;
            }
            #medical_box_1129 .mode-btn1_1129{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1129 .mode-btn1_1129 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1129 .mode-btn2_1129{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1129 .mode-btn2_1129 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1129 .div-btn-title_main_1129{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1129 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1129 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1128 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1128 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1128 .background-img{
                border-radius:;
            }
        #medical_box_1128 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1128.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1128:hover{}#medical_box_1128 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1128:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1128 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1128  
                
                #medical_box_1128 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1128 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1128:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1128.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655888276_short nails 7.webp");
                }
            
            #medical_box_1128 .mode1-size_1128{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1128 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1128 > div{
               height:100%;
            }
            #medical_box_1128 .mode2-size_1128{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1128 .mode3-size_1128{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1128 .mode4-size_1128{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1128 .mode5-size_1128{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1128 .mode6-size_1128{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1128 .mode7-size_1128{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1128 .mode7-size_1128 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1128 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1128 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1128{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1128 span:hover{
                color:!important;
            }
            .custom2_1128{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1128 span:hover{
                color:;
            }
            #medical_box_1128 .mode-btn1_1128{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1128 .mode-btn1_1128 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1128 .mode-btn2_1128{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1128 .mode-btn2_1128 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1128 .div-btn-title_main_1128{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1128 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1128 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1127 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1127 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1127 .background-img{
                border-radius:;
            }
        #medical_box_1127 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1127.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1127:hover{}#medical_box_1127 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1127:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1127 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1127  
                
                #medical_box_1127 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1127 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1127:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1127.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655888517_short nails 8.webp");
                }
            
            #medical_box_1127 .mode1-size_1127{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1127 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1127 > div{
               height:100%;
            }
            #medical_box_1127 .mode2-size_1127{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1127 .mode3-size_1127{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1127 .mode4-size_1127{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1127 .mode5-size_1127{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1127 .mode6-size_1127{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1127 .mode7-size_1127{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1127 .mode7-size_1127 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1127 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1127 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1127{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1127 span:hover{
                color:!important;
            }
            .custom2_1127{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1127 span:hover{
                color:;
            }
            #medical_box_1127 .mode-btn1_1127{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1127 .mode-btn1_1127 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1127 .mode-btn2_1127{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1127 .mode-btn2_1127 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1127 .div-btn-title_main_1127{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1127 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1127 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1126 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1126 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1126 .background-img{
                border-radius:;
            }
        #medical_box_1126 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1126.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1126:hover{}#medical_box_1126 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1126:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1126 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1126  
                
                #medical_box_1126 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1126 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1126:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1126.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655889796_Short nails 9.webp");
                }
            
            #medical_box_1126 .mode1-size_1126{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1126 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1126 > div{
               height:100%;
            }
            #medical_box_1126 .mode2-size_1126{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1126 .mode3-size_1126{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1126 .mode4-size_1126{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1126 .mode5-size_1126{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1126 .mode6-size_1126{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1126 .mode7-size_1126{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1126 .mode7-size_1126 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1126 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1126 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1126{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1126 span:hover{
                color:!important;
            }
            .custom2_1126{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1126 span:hover{
                color:;
            }
            #medical_box_1126 .mode-btn1_1126{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1126 .mode-btn1_1126 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1126 .mode-btn2_1126{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1126 .mode-btn2_1126 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1126 .div-btn-title_main_1126{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1126 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1126 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1125 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1125 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1125 .background-img{
                border-radius:;
            }
        #medical_box_1125 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1125.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1125:hover{}#medical_box_1125 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1125:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1125 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1125  
                
                #medical_box_1125 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1125 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1125:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1125.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Short/1655890483_Short nails 10.webp");
                }
            
            #medical_box_1125 .mode1-size_1125{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1125 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1125 > div{
               height:100%;
            }
            #medical_box_1125 .mode2-size_1125{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1125 .mode3-size_1125{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1125 .mode4-size_1125{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1125 .mode5-size_1125{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1125 .mode6-size_1125{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1125 .mode7-size_1125{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1125 .mode7-size_1125 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1125 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1125 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1125{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1125 span:hover{
                color:!important;
            }
            .custom2_1125{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1125 span:hover{
                color:;
            }
            #medical_box_1125 .mode-btn1_1125{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1125 .mode-btn1_1125 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1125 .mode-btn2_1125{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1125 .mode-btn2_1125 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1125 .div-btn-title_main_1125{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1125 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1125 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_315 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:32px;line-height:32px;}.module[data-id_page='432']:hover .new_medical_title_main{}#module_new_medical_315 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='491']:hover .new_medical_box_main{}
            #module_new_medical_315 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_315 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_315 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_315 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_315 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_315 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_315 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_315 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_315 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_315 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_315 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_315 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_315 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_315 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_315 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_315 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_315 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_315 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_315 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_315 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_315 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_315 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_315 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_315 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_315 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_315{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_315 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_315 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_315 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_315 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_315 .swiper-container{
                width:1200px;
            }
            #module_new_medical_315 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_315 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_315 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_315 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='489']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='489'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='489']  
                
                .module[data-id_page='489'] .new_admin_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                .module[data-id_page='489'] .layer_first_child{
                    width:100%;
                }
            
                .module[data-id_page='489']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #layout_box_65.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:2;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_65:hover{}#layout_box_65 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_35:hover .new_layout_title{}
                #layout_box_65 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_65:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_65 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/1655745232_color block.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_65  
                
                #layout_box_65 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_65 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_65:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_65 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_65 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_65.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_64.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:2;grid-row-end:3;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_64:hover{}#layout_box_64 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_34:hover .new_layout_title{}
                #layout_box_64 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_64:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_64 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/1655745350_Polka dot nail.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_64  
                
                #layout_box_64 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_64 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_64:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_64 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_64 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_64.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_63.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:3;grid-row-end:4;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_63:hover{}#layout_box_63 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_33:hover .new_layout_title{}
                #layout_box_63 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_63:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_63 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/1655791668_spider line.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_63  
                
                #layout_box_63 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_63 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_63:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_63 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_63 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_63.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_62.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:2;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_62:hover{}#layout_box_62 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_32:hover .new_layout_title{}
                #layout_box_62 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_62:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_62 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Diagonal/1655744750_diagonal.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_62  
                
                #layout_box_62 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_62 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_62:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_62 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_62 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_62.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_61.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:2;grid-row-end:4;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_61:hover{}#layout_box_61 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_31:hover .new_layout_title{}
                #layout_box_61 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_61:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_61 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/1656314962_Wrap nails.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_61  
                
                #layout_box_61 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_61 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_61:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_61 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_61 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_61.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_60.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:1;grid-row-end:3;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_60:hover{}#layout_box_60 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_30:hover .new_layout_title{}
                #layout_box_60 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_60:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_60 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/French/1655790199_French-simple.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_60  
                
                #layout_box_60 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_60 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_60:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_60 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_60 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_60.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_59.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:3;grid-row-end:4;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_59:hover{}#layout_box_59 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_29:hover .new_layout_title{}
                #layout_box_59 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_59:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_59 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Glitter/1655793472_Half Glitter.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_59  
                
                #layout_box_59 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_59 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_59:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_59 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_59 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_59.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_58.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:1;grid-row-end:2;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_58:hover{}#layout_box_58 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_28:hover .new_layout_title{}
                #layout_box_58 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_58:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_58 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/Diagonal/1655744783_stripped.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_58  
                
                #layout_box_58 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_58 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_58:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_58 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_58 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_58.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_57.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:2;grid-row-end:3;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_57:hover{}#layout_box_57 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_27:hover .new_layout_title{}
                #layout_box_57 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_57:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_57 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/1655794419_Ruffian Nails.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_57  
                
                #layout_box_57 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_57 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_57:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_57 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_57 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_57.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_56.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:3;grid-row-end:4;padding-bottom:32px;padding-right:16px;padding-left:16px;border-style:none;}#layout_box_56:hover{}#layout_box_56 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:left;}#layout_box_26:hover .new_layout_title{}
                #layout_box_56 .new_layout_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_56:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_56 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://lupinusnails.ca/files/Design/1656160211_halfmoon.webp");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_56  
                
                #layout_box_56 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #layout_box_56 .layer_first_child{
                    width:100%;
                }
            
                #layout_box_56:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_56 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_56 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_56.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_8 .new_layout_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;line-height:32px;}.module[data-id_page='489']:hover .new_layout_title_main{}
                #module_new_layout_8 .new_layout_title_main h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #module_new_layout_8 .new_layout_box_main{display:grid;width:1200px;height:896px;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(3,1fr);column-gap:16px;row-gap:16px;visibility:visible;margin-top:40px;border-style:none;}.module[data-id_page='489']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_8{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_8 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_8 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_8 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_8 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_8 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
            #module_new_medical_310 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_310 .content_str{
				width:100%;
			}
            #module_new_medical_310 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_310 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_310 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_310 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_310 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_310 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_310 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_310 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_310 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_310 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_310 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_310 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_310 a{
                color:#00AFEF!important;
            }
            #module_new_medical_310 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_310 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_310 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1084 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1084 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1084 .background-img{
                border-radius:;
            }
        #medical_box_1084 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1084 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1084 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1084.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1084:hover{}#medical_box_1084 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1084:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1084 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1084  
                
                #medical_box_1084 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1084 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1084:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1084.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656150457_affiti nails 3.webp");
                }
            
            #medical_box_1084 .mode1-size_1084{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1084 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1084 > div{
               height:100%;
            }
            #medical_box_1084 .mode2-size_1084{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1084 .mode3-size_1084{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1084 .mode4-size_1084{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1084 .mode5-size_1084{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1084 .mode6-size_1084{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1084 .mode7-size_1084{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1084 .mode7-size_1084 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1084 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1084 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1084{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1084 span:hover{
                color:!important;
            }
            .custom2_1084{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1084 span:hover{
                color:;
            }
            #medical_box_1084 .mode-btn1_1084{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1084 .mode-btn1_1084 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1084 .mode-btn2_1084{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1084 .mode-btn2_1084 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1084 .div-btn-title_main_1084{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1084 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1084 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1083 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1083 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1083 .background-img{
                border-radius:;
            }
        #medical_box_1083 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_1043:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1083 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1083 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1083.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1083:hover{}#medical_box_1083 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1083:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1083 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1083  
                
                #medical_box_1083 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1083 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1083:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1083.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656146155_ds decoration 2.jpg");
                }
            
            #medical_box_1083 .mode1-size_1083{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1083 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1083 > div{
               height:100%;
            }
            #medical_box_1083 .mode2-size_1083{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1083 .mode3-size_1083{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1083 .mode4-size_1083{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1083 .mode5-size_1083{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1083 .mode6-size_1083{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1083 .mode7-size_1083{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1083 .mode7-size_1083 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1083 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1083 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1083{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1083 span:hover{
                color:!important;
            }
            .custom2_1083{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1083 span:hover{
                color:;
            }
            #medical_box_1083 .mode-btn1_1083{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1083 .mode-btn1_1083 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1083 .mode-btn2_1083{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1083 .mode-btn2_1083 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1083 .div-btn-title_main_1083{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1083 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1083 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1082 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1082 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1082 .background-img{
                border-radius:;
            }
        #medical_box_1082 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1082 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1082 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1082.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1082:hover{}#medical_box_1082 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1082:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1082 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1082  
                
                #medical_box_1082 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1082 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1082:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1082.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656144340_3d floral.webp");
                }
            
            #medical_box_1082 .mode1-size_1082{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1082 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1082 > div{
               height:100%;
            }
            #medical_box_1082 .mode2-size_1082{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1082 .mode3-size_1082{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1082 .mode4-size_1082{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1082 .mode5-size_1082{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1082 .mode6-size_1082{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1082 .mode7-size_1082{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1082 .mode7-size_1082 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1082 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1082 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1082{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1082 span:hover{
                color:!important;
            }
            .custom2_1082{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1082 span:hover{
                color:;
            }
            #medical_box_1082 .mode-btn1_1082{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1082 .mode-btn1_1082 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1082 .mode-btn2_1082{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1082 .mode-btn2_1082 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1082 .div-btn-title_main_1082{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1082 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1082 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1081 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1081 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1081 .background-img{
                border-radius:;
            }
        #medical_box_1081 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_1041:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1081 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1081 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1081.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1081:hover{}#medical_box_1081 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1081:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1081 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1081  
                
                #medical_box_1081 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1081 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1081:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1081.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656146844_e Knit Sweater.webp");
                }
            
            #medical_box_1081 .mode1-size_1081{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1081 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1081 > div{
               height:100%;
            }
            #medical_box_1081 .mode2-size_1081{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1081 .mode3-size_1081{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1081 .mode4-size_1081{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1081 .mode5-size_1081{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1081 .mode6-size_1081{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1081 .mode7-size_1081{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1081 .mode7-size_1081 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1081 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1081 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1081{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1081 span:hover{
                color:!important;
            }
            .custom2_1081{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1081 span:hover{
                color:;
            }
            #medical_box_1081 .mode-btn1_1081{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1081 .mode-btn1_1081 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1081 .mode-btn2_1081{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1081 .mode-btn2_1081 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1081 .div-btn-title_main_1081{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1081 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1081 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1080 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1080 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1080 .background-img{
                border-radius:;
            }
        #medical_box_1080 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1080 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1080 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1080.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1080:hover{}#medical_box_1080 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1080:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1080 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1080  
                
                #medical_box_1080 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1080 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1080:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1080.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656140704_ligraphy nails.webp");
                }
            
            #medical_box_1080 .mode1-size_1080{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1080 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1080 > div{
               height:100%;
            }
            #medical_box_1080 .mode2-size_1080{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1080 .mode3-size_1080{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1080 .mode4-size_1080{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1080 .mode5-size_1080{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1080 .mode6-size_1080{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1080 .mode7-size_1080{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1080 .mode7-size_1080 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1080 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1080 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1080{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1080 span:hover{
                color:!important;
            }
            .custom2_1080{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1080 span:hover{
                color:;
            }
            #medical_box_1080 .mode-btn1_1080{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1080 .mode-btn1_1080 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1080 .mode-btn2_1080{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1080 .mode-btn2_1080 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1080 .div-btn-title_main_1080{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1080 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1080 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1079 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1079 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1079 .background-img{
                border-radius:;
            }
        #medical_box_1079 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_1039:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1079 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1079 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1079.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1079:hover{}#medical_box_1079 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1079:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1079 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1079  
                
                #medical_box_1079 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1079 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1079:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1079.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656077497_radient Galaxy.webp");
                }
            
            #medical_box_1079 .mode1-size_1079{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1079 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1079 > div{
               height:100%;
            }
            #medical_box_1079 .mode2-size_1079{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1079 .mode3-size_1079{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1079 .mode4-size_1079{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1079 .mode5-size_1079{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1079 .mode6-size_1079{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1079 .mode7-size_1079{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1079 .mode7-size_1079 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1079 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1079 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1079{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1079 span:hover{
                color:!important;
            }
            .custom2_1079{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1079 span:hover{
                color:;
            }
            #medical_box_1079 .mode-btn1_1079{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1079 .mode-btn1_1079 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1079 .mode-btn2_1079{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1079 .mode-btn2_1079 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1079 .div-btn-title_main_1079{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1079 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1079 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1078 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1078 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1078 .background-img{
                border-radius:;
            }
        #medical_box_1078 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1078 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1078 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1078.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1078:hover{}#medical_box_1078 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1078:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1078 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1078  
                
                #medical_box_1078 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1078 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1078:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1078.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656142868_Tribal nails 2.webp");
                }
            
            #medical_box_1078 .mode1-size_1078{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1078 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1078 > div{
               height:100%;
            }
            #medical_box_1078 .mode2-size_1078{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1078 .mode3-size_1078{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1078 .mode4-size_1078{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1078 .mode5-size_1078{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1078 .mode6-size_1078{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1078 .mode7-size_1078{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1078 .mode7-size_1078 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1078 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1078 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1078{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1078 span:hover{
                color:!important;
            }
            .custom2_1078{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1078 span:hover{
                color:;
            }
            #medical_box_1078 .mode-btn1_1078{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1078 .mode-btn1_1078 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1078 .mode-btn2_1078{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1078 .mode-btn2_1078 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1078 .div-btn-title_main_1078{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1078 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1078 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1077 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1077 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1077 .background-img{
                border-radius:;
            }
        #medical_box_1077 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:32px;}#medical_box_1037:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1077 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1077 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1077.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1077:hover{}#medical_box_1077 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1077:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1077 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1077  
                
                #medical_box_1077 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1077 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1077:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1077.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656134972_lorful leopard.webp");
                }
            
            #medical_box_1077 .mode1-size_1077{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1077 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1077 > div{
               height:100%;
            }
            #medical_box_1077 .mode2-size_1077{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1077 .mode3-size_1077{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1077 .mode4-size_1077{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1077 .mode5-size_1077{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1077 .mode6-size_1077{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1077 .mode7-size_1077{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1077 .mode7-size_1077 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1077 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1077 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1077{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1077 span:hover{
                color:!important;
            }
            .custom2_1077{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1077 span:hover{
                color:;
            }
            #medical_box_1077 .mode-btn1_1077{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1077 .mode-btn1_1077 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1077 .mode-btn2_1077{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1077 .mode-btn2_1077 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1077 .div-btn-title_main_1077{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1077 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1077 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1076 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1076 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1076 .background-img{
                border-radius:;
            }
        #medical_box_1076 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1076 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1076 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1076.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1076:hover{}#medical_box_1076 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1076:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1076 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1076  
                
                #medical_box_1076 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1076 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1076:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1076.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656142547_Festive Luxury.webp");
                }
            
            #medical_box_1076 .mode1-size_1076{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1076 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1076 > div{
               height:100%;
            }
            #medical_box_1076 .mode2-size_1076{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1076 .mode3-size_1076{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1076 .mode4-size_1076{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1076 .mode5-size_1076{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1076 .mode6-size_1076{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1076 .mode7-size_1076{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1076 .mode7-size_1076 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1076 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1076 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1076{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1076 span:hover{
                color:!important;
            }
            .custom2_1076{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1076 span:hover{
                color:;
            }
            #medical_box_1076 .mode-btn1_1076{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1076 .mode-btn1_1076 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1076 .mode-btn2_1076{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1076 .mode-btn2_1076 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1076 .div-btn-title_main_1076{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1076 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1076 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1075 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1075 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1075 .background-img{
                border-radius:;
            }
        #medical_box_1075 .new_medical_title{color:#ffffff90;font-weight:bold;font-size:24px;text-align:left;line-height:48px;}#medical_box_949:hover .new_medical_title{color:#ffffff !important;}
                #medical_box_1075 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1075 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1075.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1075:hover{}#medical_box_1075 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1075:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1075 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1075  
                
                #medical_box_1075 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1075 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1075:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1075.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Complex/1656141731_Royal Nails.webp");
                }
            
            #medical_box_1075 .mode1-size_1075{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1075 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1075 > div{
               height:100%;
            }
            #medical_box_1075 .mode2-size_1075{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1075 .mode3-size_1075{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1075 .mode4-size_1075{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1075 .mode5-size_1075{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1075 .mode6-size_1075{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1075 .mode7-size_1075{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1075 .mode7-size_1075 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1075 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1075 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1075{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1075 span:hover{
                color:!important;
            }
            .custom2_1075{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1075 span:hover{
                color:;
            }
            #medical_box_1075 .mode-btn1_1075{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1075 .mode-btn1_1075 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1075 .mode-btn2_1075{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1075 .mode-btn2_1075 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1075 .div-btn-title_main_1075{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1075 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1075 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_310 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:32px;}.module[data-id_page='485']:hover .new_medical_title_main{}#module_new_medical_310 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='485']:hover .new_medical_box_main{}
            #module_new_medical_310 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_310 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_310 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_310 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_310 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_310 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_310 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_310 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_310 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_310 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_310 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_310 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_310 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_310 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_310 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_310 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_310 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_310 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_310 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_310 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_310 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_310 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_310 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_310 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_310 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_310{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_310 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_310 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_310 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_310 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_310 .swiper-container{
                width:1200px;
            }
            #module_new_medical_310 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_310 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_310 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_310 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_311 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_311 .content_str{
				width:100%;
			}
            #module_new_medical_311 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_311 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_311 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_311 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_311 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_311 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_311 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_311 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_311 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_311 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_311 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_311 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_311 a{
                color:#00AFEF!important;
            }
            #module_new_medical_311 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_311 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_311 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1094 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1094 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1094 .background-img{
                border-radius:;
            }
        #medical_box_1094 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1094.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1094:hover{}#medical_box_1094 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1094:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1094 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1094  
                
                #medical_box_1094 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1094 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1094:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1094.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656152338_Acrylic 1.webp");
                }
            
            #medical_box_1094 .mode1-size_1094{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1094 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1094 > div{
               height:100%;
            }
            #medical_box_1094 .mode2-size_1094{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1094 .mode3-size_1094{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1094 .mode4-size_1094{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1094 .mode5-size_1094{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1094 .mode6-size_1094{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1094 .mode7-size_1094{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1094 .mode7-size_1094 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1094 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1094 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1094{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1094 span:hover{
                color:!important;
            }
            .custom2_1094{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1094 span:hover{
                color:;
            }
            #medical_box_1094 .mode-btn1_1094{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1094 .mode-btn1_1094 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1094 .mode-btn2_1094{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1094 .mode-btn2_1094 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1094 .div-btn-title_main_1094{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1094 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1094 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1093 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1093 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1093 .background-img{
                border-radius:;
            }
        #medical_box_1093 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1093.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1093:hover{}#medical_box_1093 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1093:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1093 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1093  
                
                #medical_box_1093 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1093 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1093:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1093.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656152336_Acrylic 2.webp");
                }
            
            #medical_box_1093 .mode1-size_1093{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1093 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1093 > div{
               height:100%;
            }
            #medical_box_1093 .mode2-size_1093{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1093 .mode3-size_1093{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1093 .mode4-size_1093{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1093 .mode5-size_1093{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1093 .mode6-size_1093{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1093 .mode7-size_1093{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1093 .mode7-size_1093 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1093 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1093 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1093{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1093 span:hover{
                color:!important;
            }
            .custom2_1093{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1093 span:hover{
                color:;
            }
            #medical_box_1093 .mode-btn1_1093{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1093 .mode-btn1_1093 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1093 .mode-btn2_1093{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1093 .mode-btn2_1093 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1093 .div-btn-title_main_1093{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1093 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1093 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1092 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1092 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1092 .background-img{
                border-radius:;
            }
        #medical_box_1092 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1092.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1092:hover{}#medical_box_1092 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1092:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1092 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1092  
                
                #medical_box_1092 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1092 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1092:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1092.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656152340_Acrylic 3.webp");
                }
            
            #medical_box_1092 .mode1-size_1092{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1092 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1092 > div{
               height:100%;
            }
            #medical_box_1092 .mode2-size_1092{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1092 .mode3-size_1092{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1092 .mode4-size_1092{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1092 .mode5-size_1092{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1092 .mode6-size_1092{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1092 .mode7-size_1092{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1092 .mode7-size_1092 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1092 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1092 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1092{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1092 span:hover{
                color:!important;
            }
            .custom2_1092{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1092 span:hover{
                color:;
            }
            #medical_box_1092 .mode-btn1_1092{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1092 .mode-btn1_1092 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1092 .mode-btn2_1092{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1092 .mode-btn2_1092 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1092 .div-btn-title_main_1092{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1092 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1092 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1091 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1091 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1091 .background-img{
                border-radius:;
            }
        #medical_box_1091 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1091.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1091:hover{}#medical_box_1091 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1091:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1091 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1091  
                
                #medical_box_1091 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1091 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1091:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1091.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656152488_Acrylic 4.webp");
                }
            
            #medical_box_1091 .mode1-size_1091{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1091 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1091 > div{
               height:100%;
            }
            #medical_box_1091 .mode2-size_1091{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1091 .mode3-size_1091{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1091 .mode4-size_1091{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1091 .mode5-size_1091{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1091 .mode6-size_1091{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1091 .mode7-size_1091{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1091 .mode7-size_1091 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1091 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1091 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1091{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1091 span:hover{
                color:!important;
            }
            .custom2_1091{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1091 span:hover{
                color:;
            }
            #medical_box_1091 .mode-btn1_1091{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1091 .mode-btn1_1091 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1091 .mode-btn2_1091{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1091 .mode-btn2_1091 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1091 .div-btn-title_main_1091{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1091 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1091 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1090 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1090 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1090 .background-img{
                border-radius:;
            }
        #medical_box_1090 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1090.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1090:hover{}#medical_box_1090 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1090:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1090 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1090  
                
                #medical_box_1090 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1090 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1090:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1090.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656152339_Acrylic 5.webp");
                }
            
            #medical_box_1090 .mode1-size_1090{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1090 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1090 > div{
               height:100%;
            }
            #medical_box_1090 .mode2-size_1090{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1090 .mode3-size_1090{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1090 .mode4-size_1090{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1090 .mode5-size_1090{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1090 .mode6-size_1090{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1090 .mode7-size_1090{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1090 .mode7-size_1090 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1090 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1090 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1090{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1090 span:hover{
                color:!important;
            }
            .custom2_1090{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1090 span:hover{
                color:;
            }
            #medical_box_1090 .mode-btn1_1090{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1090 .mode-btn1_1090 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1090 .mode-btn2_1090{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1090 .mode-btn2_1090 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1090 .div-btn-title_main_1090{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1090 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1090 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1089 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1089 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1089 .background-img{
                border-radius:;
            }
        #medical_box_1089 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1089.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1089:hover{}#medical_box_1089 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1089:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1089 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1089  
                
                #medical_box_1089 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1089 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1089:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1089.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656153533_Acrylic 6.webp");
                }
            
            #medical_box_1089 .mode1-size_1089{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1089 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1089 > div{
               height:100%;
            }
            #medical_box_1089 .mode2-size_1089{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1089 .mode3-size_1089{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1089 .mode4-size_1089{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1089 .mode5-size_1089{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1089 .mode6-size_1089{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1089 .mode7-size_1089{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1089 .mode7-size_1089 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1089 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1089 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1089{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1089 span:hover{
                color:!important;
            }
            .custom2_1089{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1089 span:hover{
                color:;
            }
            #medical_box_1089 .mode-btn1_1089{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1089 .mode-btn1_1089 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1089 .mode-btn2_1089{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1089 .mode-btn2_1089 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1089 .div-btn-title_main_1089{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1089 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1089 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1088 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1088 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1088 .background-img{
                border-radius:;
            }
        #medical_box_1088 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1088.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1088:hover{}#medical_box_1088 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1088:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1088 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1088  
                
                #medical_box_1088 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1088 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1088:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1088.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656153533_Acrylic 7.webp");
                }
            
            #medical_box_1088 .mode1-size_1088{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1088 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1088 > div{
               height:100%;
            }
            #medical_box_1088 .mode2-size_1088{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1088 .mode3-size_1088{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1088 .mode4-size_1088{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1088 .mode5-size_1088{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1088 .mode6-size_1088{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1088 .mode7-size_1088{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1088 .mode7-size_1088 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1088 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1088 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1088{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1088 span:hover{
                color:!important;
            }
            .custom2_1088{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1088 span:hover{
                color:;
            }
            #medical_box_1088 .mode-btn1_1088{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1088 .mode-btn1_1088 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1088 .mode-btn2_1088{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1088 .mode-btn2_1088 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1088 .div-btn-title_main_1088{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1088 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1088 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1087 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1087 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1087 .background-img{
                border-radius:;
            }
        #medical_box_1087 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1087.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1087:hover{}#medical_box_1087 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1087:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1087 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1087  
                
                #medical_box_1087 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1087 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1087:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1087.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656153533_Acrylic 8.webp");
                }
            
            #medical_box_1087 .mode1-size_1087{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1087 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1087 > div{
               height:100%;
            }
            #medical_box_1087 .mode2-size_1087{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1087 .mode3-size_1087{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1087 .mode4-size_1087{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1087 .mode5-size_1087{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1087 .mode6-size_1087{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1087 .mode7-size_1087{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1087 .mode7-size_1087 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1087 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1087 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1087{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1087 span:hover{
                color:!important;
            }
            .custom2_1087{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1087 span:hover{
                color:;
            }
            #medical_box_1087 .mode-btn1_1087{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1087 .mode-btn1_1087 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1087 .mode-btn2_1087{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1087 .mode-btn2_1087 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1087 .div-btn-title_main_1087{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1087 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1087 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1086 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1086 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1086 .background-img{
                border-radius:;
            }
        #medical_box_1086 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1086.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1086:hover{}#medical_box_1086 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1086:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1086 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1086  
                
                #medical_box_1086 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1086 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1086:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1086.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656153533_Acrylic 9.webp");
                }
            
            #medical_box_1086 .mode1-size_1086{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1086 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1086 > div{
               height:100%;
            }
            #medical_box_1086 .mode2-size_1086{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1086 .mode3-size_1086{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1086 .mode4-size_1086{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1086 .mode5-size_1086{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1086 .mode6-size_1086{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1086 .mode7-size_1086{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1086 .mode7-size_1086 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1086 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1086 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1086{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1086 span:hover{
                color:!important;
            }
            .custom2_1086{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1086 span:hover{
                color:;
            }
            #medical_box_1086 .mode-btn1_1086{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1086 .mode-btn1_1086 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1086 .mode-btn2_1086{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1086 .mode-btn2_1086 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1086 .div-btn-title_main_1086{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1086 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1086 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1085 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1085 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1085 .background-img{
                border-radius:;
            }
        #medical_box_1085 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1085.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1085:hover{}#medical_box_1085 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1085:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1085 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1085  
                
                #medical_box_1085 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1085 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1085:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1085.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Acrylic/1656153533_Acrylic 10.webp");
                }
            
            #medical_box_1085 .mode1-size_1085{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1085 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1085 > div{
               height:100%;
            }
            #medical_box_1085 .mode2-size_1085{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1085 .mode3-size_1085{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1085 .mode4-size_1085{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1085 .mode5-size_1085{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1085 .mode6-size_1085{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1085 .mode7-size_1085{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1085 .mode7-size_1085 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1085 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1085 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1085{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1085 span:hover{
                color:!important;
            }
            .custom2_1085{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1085 span:hover{
                color:;
            }
            #medical_box_1085 .mode-btn1_1085{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1085 .mode-btn1_1085 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1085 .mode-btn2_1085{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1085 .mode-btn2_1085 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1085 .div-btn-title_main_1085{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1085 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1085 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_311 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:32px;}.module[data-id_page='486']:hover .new_medical_title_main{}#module_new_medical_311 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='486']:hover .new_medical_box_main{}
            #module_new_medical_311 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_311 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_311 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_311 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_311 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_311 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_311 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_311 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_311 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_311 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_311 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_311 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_311 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_311 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_311 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_311 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_311 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_311 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_311 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_311 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_311 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_311 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_311 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_311 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_311 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_311{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_311 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_311 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_311 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_311 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_311 .swiper-container{
                width:1200px;
            }
            #module_new_medical_311 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_311 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_311 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_311 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_312 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_312 .content_str{
				width:100%;
			}
            #module_new_medical_312 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_312 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_312 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_312 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_312 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_312 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_312 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_312 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_312 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_312 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_312 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_312 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_312 a{
                color:#00AFEF!important;
            }
            #module_new_medical_312 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_312 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_312 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1104 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1104 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1104 .background-img{
                border-radius:;
            }
        #medical_box_1104 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1104.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1104:hover{}#medical_box_1104 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1104:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1104 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1104  
                
                #medical_box_1104 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1104 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1104:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1104.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656145620_Dip powder 1.webp");
                }
            
            #medical_box_1104 .mode1-size_1104{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1104 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1104 > div{
               height:100%;
            }
            #medical_box_1104 .mode2-size_1104{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1104 .mode3-size_1104{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1104 .mode4-size_1104{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1104 .mode5-size_1104{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1104 .mode6-size_1104{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1104 .mode7-size_1104{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1104 .mode7-size_1104 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1104 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1104 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1104{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1104 span:hover{
                color:!important;
            }
            .custom2_1104{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1104 span:hover{
                color:;
            }
            #medical_box_1104 .mode-btn1_1104{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1104 .mode-btn1_1104 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1104 .mode-btn2_1104{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1104 .mode-btn2_1104 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1104 .div-btn-title_main_1104{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1104 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1104 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1103 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1103 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1103 .background-img{
                border-radius:;
            }
        #medical_box_1103 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1103.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1103:hover{}#medical_box_1103 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1103:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1103 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1103  
                
                #medical_box_1103 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1103 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1103:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1103.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656145621_Dip powder 2.webp");
                }
            
            #medical_box_1103 .mode1-size_1103{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1103 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1103 > div{
               height:100%;
            }
            #medical_box_1103 .mode2-size_1103{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1103 .mode3-size_1103{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1103 .mode4-size_1103{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1103 .mode5-size_1103{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1103 .mode6-size_1103{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1103 .mode7-size_1103{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1103 .mode7-size_1103 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1103 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1103 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1103{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1103 span:hover{
                color:!important;
            }
            .custom2_1103{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1103 span:hover{
                color:;
            }
            #medical_box_1103 .mode-btn1_1103{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1103 .mode-btn1_1103 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1103 .mode-btn2_1103{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1103 .mode-btn2_1103 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1103 .div-btn-title_main_1103{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1103 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1103 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1102 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1102 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1102 .background-img{
                border-radius:;
            }
        #medical_box_1102 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1102.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1102:hover{}#medical_box_1102 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1102:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1102 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1102  
                
                #medical_box_1102 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1102 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1102:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1102.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656145708_Dip powder 3.webp");
                }
            
            #medical_box_1102 .mode1-size_1102{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1102 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1102 > div{
               height:100%;
            }
            #medical_box_1102 .mode2-size_1102{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1102 .mode3-size_1102{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1102 .mode4-size_1102{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1102 .mode5-size_1102{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1102 .mode6-size_1102{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1102 .mode7-size_1102{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1102 .mode7-size_1102 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1102 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1102 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1102{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1102 span:hover{
                color:!important;
            }
            .custom2_1102{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1102 span:hover{
                color:;
            }
            #medical_box_1102 .mode-btn1_1102{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1102 .mode-btn1_1102 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1102 .mode-btn2_1102{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1102 .mode-btn2_1102 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1102 .div-btn-title_main_1102{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1102 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1102 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1101 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1101 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1101 .background-img{
                border-radius:;
            }
        #medical_box_1101 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1101.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1101:hover{}#medical_box_1101 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1101:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1101 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1101  
                
                #medical_box_1101 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1101 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1101:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1101.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656105138_Dip powder.webp");
                }
            
            #medical_box_1101 .mode1-size_1101{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1101 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1101 > div{
               height:100%;
            }
            #medical_box_1101 .mode2-size_1101{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1101 .mode3-size_1101{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1101 .mode4-size_1101{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1101 .mode5-size_1101{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1101 .mode6-size_1101{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1101 .mode7-size_1101{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1101 .mode7-size_1101 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1101 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1101 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1101{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1101 span:hover{
                color:!important;
            }
            .custom2_1101{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1101 span:hover{
                color:;
            }
            #medical_box_1101 .mode-btn1_1101{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1101 .mode-btn1_1101 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1101 .mode-btn2_1101{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1101 .mode-btn2_1101 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1101 .div-btn-title_main_1101{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1101 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1101 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1100 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1100 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1100 .background-img{
                border-radius:;
            }
        #medical_box_1100 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1100.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1100:hover{}#medical_box_1100 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1100:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1100 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1100  
                
                #medical_box_1100 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1100 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1100:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1100.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656145621_Dip powder 5.webp");
                }
            
            #medical_box_1100 .mode1-size_1100{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1100 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1100 > div{
               height:100%;
            }
            #medical_box_1100 .mode2-size_1100{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1100 .mode3-size_1100{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1100 .mode4-size_1100{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1100 .mode5-size_1100{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1100 .mode6-size_1100{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1100 .mode7-size_1100{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1100 .mode7-size_1100 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1100 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1100 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1100{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1100 span:hover{
                color:!important;
            }
            .custom2_1100{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1100 span:hover{
                color:;
            }
            #medical_box_1100 .mode-btn1_1100{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1100 .mode-btn1_1100 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1100 .mode-btn2_1100{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1100 .mode-btn2_1100 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1100 .div-btn-title_main_1100{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1100 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1100 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1099 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1099 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1099 .background-img{
                border-radius:;
            }
        #medical_box_1099 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1099.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1099:hover{}#medical_box_1099 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1099:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1099 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1099  
                
                #medical_box_1099 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1099 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1099:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1099.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656145621_Dip powder 6.webp");
                }
            
            #medical_box_1099 .mode1-size_1099{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1099 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1099 > div{
               height:100%;
            }
            #medical_box_1099 .mode2-size_1099{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1099 .mode3-size_1099{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1099 .mode4-size_1099{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1099 .mode5-size_1099{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1099 .mode6-size_1099{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1099 .mode7-size_1099{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1099 .mode7-size_1099 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1099 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1099 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1099{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1099 span:hover{
                color:!important;
            }
            .custom2_1099{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1099 span:hover{
                color:;
            }
            #medical_box_1099 .mode-btn1_1099{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1099 .mode-btn1_1099 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1099 .mode-btn2_1099{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1099 .mode-btn2_1099 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1099 .div-btn-title_main_1099{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1099 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1099 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1098 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1098 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1098 .background-img{
                border-radius:;
            }
        #medical_box_1098 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1098.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1098:hover{}#medical_box_1098 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1098:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1098 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1098  
                
                #medical_box_1098 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1098 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1098:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1098.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656145621_Dip powder 7.webp");
                }
            
            #medical_box_1098 .mode1-size_1098{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1098 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1098 > div{
               height:100%;
            }
            #medical_box_1098 .mode2-size_1098{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1098 .mode3-size_1098{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1098 .mode4-size_1098{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1098 .mode5-size_1098{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1098 .mode6-size_1098{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1098 .mode7-size_1098{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1098 .mode7-size_1098 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1098 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1098 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1098{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1098 span:hover{
                color:!important;
            }
            .custom2_1098{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1098 span:hover{
                color:;
            }
            #medical_box_1098 .mode-btn1_1098{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1098 .mode-btn1_1098 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1098 .mode-btn2_1098{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1098 .mode-btn2_1098 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1098 .div-btn-title_main_1098{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1098 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1098 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1097 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1097 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1097 .background-img{
                border-radius:;
            }
        #medical_box_1097 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1097.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1097:hover{}#medical_box_1097 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1097:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1097 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1097  
                
                #medical_box_1097 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1097 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1097:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1097.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656145621_Dip powder 8.webp");
                }
            
            #medical_box_1097 .mode1-size_1097{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1097 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1097 > div{
               height:100%;
            }
            #medical_box_1097 .mode2-size_1097{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1097 .mode3-size_1097{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1097 .mode4-size_1097{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1097 .mode5-size_1097{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1097 .mode6-size_1097{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1097 .mode7-size_1097{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1097 .mode7-size_1097 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1097 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1097 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1097{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1097 span:hover{
                color:!important;
            }
            .custom2_1097{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1097 span:hover{
                color:;
            }
            #medical_box_1097 .mode-btn1_1097{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1097 .mode-btn1_1097 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1097 .mode-btn2_1097{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1097 .mode-btn2_1097 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1097 .div-btn-title_main_1097{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1097 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1097 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1096 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1096 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1096 .background-img{
                border-radius:;
            }
        #medical_box_1096 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1096.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1096:hover{}#medical_box_1096 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1096:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1096 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1096  
                
                #medical_box_1096 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1096 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1096:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1096.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656145622_Dip powder 9.webp");
                }
            
            #medical_box_1096 .mode1-size_1096{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1096 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1096 > div{
               height:100%;
            }
            #medical_box_1096 .mode2-size_1096{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1096 .mode3-size_1096{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1096 .mode4-size_1096{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1096 .mode5-size_1096{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1096 .mode6-size_1096{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1096 .mode7-size_1096{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1096 .mode7-size_1096 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1096 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1096 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1096{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1096 span:hover{
                color:!important;
            }
            .custom2_1096{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1096 span:hover{
                color:;
            }
            #medical_box_1096 .mode-btn1_1096{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1096 .mode-btn1_1096 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1096 .mode-btn2_1096{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1096 .mode-btn2_1096 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1096 .div-btn-title_main_1096{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1096 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1096 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1095 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1095 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1095 .background-img{
                border-radius:;
            }
        #medical_box_1095 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1095.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1095:hover{}#medical_box_1095 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1095:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1095 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1095  
                
                #medical_box_1095 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1095 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1095:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1095.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Dip-powder/1656145621_Dip powder 10.webp");
                }
            
            #medical_box_1095 .mode1-size_1095{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1095 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1095 > div{
               height:100%;
            }
            #medical_box_1095 .mode2-size_1095{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1095 .mode3-size_1095{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1095 .mode4-size_1095{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1095 .mode5-size_1095{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1095 .mode6-size_1095{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1095 .mode7-size_1095{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1095 .mode7-size_1095 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1095 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1095 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1095{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1095 span:hover{
                color:!important;
            }
            .custom2_1095{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1095 span:hover{
                color:;
            }
            #medical_box_1095 .mode-btn1_1095{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1095 .mode-btn1_1095 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1095 .mode-btn2_1095{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1095 .mode-btn2_1095 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1095 .div-btn-title_main_1095{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1095 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1095 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_312 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:32px;}.module[data-id_page='487']:hover .new_medical_title_main{}#module_new_medical_312 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='487']:hover .new_medical_box_main{}
            #module_new_medical_312 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_312 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_312 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_312 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_312 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_312 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_312 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_312 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_312 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_312 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_312 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_312 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_312 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_312 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_312 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_312 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_312 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_312 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_312 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_312 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_312 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_312 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_312 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_312 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_312 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_312{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_312 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_312 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_312 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_312 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_312 .swiper-container{
                width:1200px;
            }
            #module_new_medical_312 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_312 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_312 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_312 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_313 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_313 .content_str{
				width:100%;
			}
            #module_new_medical_313 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_313 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_313 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_313 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_313 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_313 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_313 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_313 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_313 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_313 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_313 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_313 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_313 a{
                color:#00AFEF!important;
            }
            #module_new_medical_313 a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_313 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_313 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1114 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1114 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1114 .background-img{
                border-radius:;
            }
        #medical_box_1114 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1114.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1114:hover{}#medical_box_1114 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1114:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1114 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1114  
                
                #medical_box_1114 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1114 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1114:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1114.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1655715497_Gel nails 1.webp");
                }
            
            #medical_box_1114 .mode1-size_1114{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1114 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1114 > div{
               height:100%;
            }
            #medical_box_1114 .mode2-size_1114{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1114 .mode3-size_1114{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1114 .mode4-size_1114{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1114 .mode5-size_1114{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1114 .mode6-size_1114{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1114 .mode7-size_1114{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1114 .mode7-size_1114 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1114 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1114 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1114{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1114 span:hover{
                color:!important;
            }
            .custom2_1114{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1114 span:hover{
                color:;
            }
            #medical_box_1114 .mode-btn1_1114{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1114 .mode-btn1_1114 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1114 .mode-btn2_1114{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1114 .mode-btn2_1114 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1114 .div-btn-title_main_1114{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1114 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1114 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1113 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1113 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1113 .background-img{
                border-radius:;
            }
        #medical_box_1113 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1113.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1113:hover{}#medical_box_1113 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1113:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1113 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1113  
                
                #medical_box_1113 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1113 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1113:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1113.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1655715722_Gel nails 2.webp");
                }
            
            #medical_box_1113 .mode1-size_1113{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1113 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1113 > div{
               height:100%;
            }
            #medical_box_1113 .mode2-size_1113{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1113 .mode3-size_1113{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1113 .mode4-size_1113{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1113 .mode5-size_1113{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1113 .mode6-size_1113{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1113 .mode7-size_1113{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1113 .mode7-size_1113 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1113 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1113 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1113{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1113 span:hover{
                color:!important;
            }
            .custom2_1113{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1113 span:hover{
                color:;
            }
            #medical_box_1113 .mode-btn1_1113{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1113 .mode-btn1_1113 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1113 .mode-btn2_1113{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1113 .mode-btn2_1113 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1113 .div-btn-title_main_1113{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1113 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1113 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1112 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1112 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1112 .background-img{
                border-radius:;
            }
        #medical_box_1112 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1112.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1112:hover{}#medical_box_1112 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1112:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1112 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1112  
                
                #medical_box_1112 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1112 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1112:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1112.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1656091064_Gel nails 3.webp");
                }
            
            #medical_box_1112 .mode1-size_1112{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1112 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1112 > div{
               height:100%;
            }
            #medical_box_1112 .mode2-size_1112{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1112 .mode3-size_1112{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1112 .mode4-size_1112{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1112 .mode5-size_1112{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1112 .mode6-size_1112{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1112 .mode7-size_1112{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1112 .mode7-size_1112 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1112 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1112 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1112{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1112 span:hover{
                color:!important;
            }
            .custom2_1112{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1112 span:hover{
                color:;
            }
            #medical_box_1112 .mode-btn1_1112{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1112 .mode-btn1_1112 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1112 .mode-btn2_1112{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1112 .mode-btn2_1112 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1112 .div-btn-title_main_1112{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1112 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1112 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1111 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1111 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1111 .background-img{
                border-radius:;
            }
        #medical_box_1111 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1111.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1111:hover{}#medical_box_1111 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1111:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1111 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1111  
                
                #medical_box_1111 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1111 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1111:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1111.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1656099040_Gel nails 4.webp");
                }
            
            #medical_box_1111 .mode1-size_1111{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1111 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1111 > div{
               height:100%;
            }
            #medical_box_1111 .mode2-size_1111{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1111 .mode3-size_1111{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1111 .mode4-size_1111{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1111 .mode5-size_1111{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1111 .mode6-size_1111{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1111 .mode7-size_1111{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1111 .mode7-size_1111 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1111 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1111 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1111{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1111 span:hover{
                color:!important;
            }
            .custom2_1111{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1111 span:hover{
                color:;
            }
            #medical_box_1111 .mode-btn1_1111{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1111 .mode-btn1_1111 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1111 .mode-btn2_1111{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1111 .mode-btn2_1111 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1111 .div-btn-title_main_1111{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1111 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1111 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1110 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1110 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1110 .background-img{
                border-radius:;
            }
        #medical_box_1110 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1110.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1110:hover{}#medical_box_1110 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1110:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1110 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1110  
                
                #medical_box_1110 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1110 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1110:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1110.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1656090911_Gel nails 5.webp");
                }
            
            #medical_box_1110 .mode1-size_1110{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1110 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1110 > div{
               height:100%;
            }
            #medical_box_1110 .mode2-size_1110{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1110 .mode3-size_1110{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1110 .mode4-size_1110{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1110 .mode5-size_1110{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1110 .mode6-size_1110{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1110 .mode7-size_1110{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1110 .mode7-size_1110 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1110 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1110 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1110{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1110 span:hover{
                color:!important;
            }
            .custom2_1110{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1110 span:hover{
                color:;
            }
            #medical_box_1110 .mode-btn1_1110{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1110 .mode-btn1_1110 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1110 .mode-btn2_1110{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1110 .mode-btn2_1110 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1110 .div-btn-title_main_1110{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1110 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1110 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1109 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1109 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1109 .background-img{
                border-radius:;
            }
        #medical_box_1109 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1109.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1109:hover{}#medical_box_1109 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1109:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1109 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1109  
                
                #medical_box_1109 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1109 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1109:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1109.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1656100968_Gel nails 6.webp");
                }
            
            #medical_box_1109 .mode1-size_1109{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1109 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1109 > div{
               height:100%;
            }
            #medical_box_1109 .mode2-size_1109{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1109 .mode3-size_1109{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1109 .mode4-size_1109{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1109 .mode5-size_1109{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1109 .mode6-size_1109{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1109 .mode7-size_1109{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1109 .mode7-size_1109 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1109 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1109 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1109{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1109 span:hover{
                color:!important;
            }
            .custom2_1109{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1109 span:hover{
                color:;
            }
            #medical_box_1109 .mode-btn1_1109{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1109 .mode-btn1_1109 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1109 .mode-btn2_1109{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1109 .mode-btn2_1109 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1109 .div-btn-title_main_1109{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1109 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1109 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1108 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1108 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1108 .background-img{
                border-radius:;
            }
        #medical_box_1108 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1108.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1108:hover{}#medical_box_1108 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1108:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1108 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1108  
                
                #medical_box_1108 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1108 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1108:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1108.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1656103129_Gel nails 7.webp");
                }
            
            #medical_box_1108 .mode1-size_1108{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1108 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1108 > div{
               height:100%;
            }
            #medical_box_1108 .mode2-size_1108{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1108 .mode3-size_1108{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1108 .mode4-size_1108{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1108 .mode5-size_1108{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1108 .mode6-size_1108{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1108 .mode7-size_1108{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1108 .mode7-size_1108 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1108 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1108 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1108{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1108 span:hover{
                color:!important;
            }
            .custom2_1108{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1108 span:hover{
                color:;
            }
            #medical_box_1108 .mode-btn1_1108{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1108 .mode-btn1_1108 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1108 .mode-btn2_1108{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1108 .mode-btn2_1108 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1108 .div-btn-title_main_1108{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1108 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1108 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1107 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1107 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1107 .background-img{
                border-radius:;
            }
        #medical_box_1107 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1107.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1107:hover{}#medical_box_1107 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1107:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1107 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1107  
                
                #medical_box_1107 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1107 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1107:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1107.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1656103568_Gel nails 8.webp");
                }
            
            #medical_box_1107 .mode1-size_1107{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1107 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1107 > div{
               height:100%;
            }
            #medical_box_1107 .mode2-size_1107{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1107 .mode3-size_1107{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1107 .mode4-size_1107{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1107 .mode5-size_1107{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1107 .mode6-size_1107{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1107 .mode7-size_1107{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1107 .mode7-size_1107 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1107 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1107 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1107{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1107 span:hover{
                color:!important;
            }
            .custom2_1107{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1107 span:hover{
                color:;
            }
            #medical_box_1107 .mode-btn1_1107{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1107 .mode-btn1_1107 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1107 .mode-btn2_1107{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1107 .mode-btn2_1107 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1107 .div-btn-title_main_1107{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1107 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1107 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1106 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1106 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1106 .background-img{
                border-radius:;
            }
        #medical_box_1106 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1106.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1106:hover{}#medical_box_1106 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1106:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1106 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1106  
                
                #medical_box_1106 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1106 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1106:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1106.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1656104741_Gel nails 9.webp");
                }
            
            #medical_box_1106 .mode1-size_1106{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1106 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1106 > div{
               height:100%;
            }
            #medical_box_1106 .mode2-size_1106{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1106 .mode3-size_1106{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1106 .mode4-size_1106{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1106 .mode5-size_1106{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1106 .mode6-size_1106{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1106 .mode7-size_1106{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1106 .mode7-size_1106 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1106 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1106 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1106{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1106 span:hover{
                color:!important;
            }
            .custom2_1106{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1106 span:hover{
                color:;
            }
            #medical_box_1106 .mode-btn1_1106{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1106 .mode-btn1_1106 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1106 .mode-btn2_1106{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1106 .mode-btn2_1106 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1106 .div-btn-title_main_1106{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1106 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1106 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1105 .new_medical_icon{
                background-image:url("https://lupinusnails.ca/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1105 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1105 .background-img{
                border-radius:;
            }
        #medical_box_1105 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_949:hover .new_medical_icon{}#medical_box_1105.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:340px;padding-top:256px;padding-bottom:32px;padding-right:16px;padding-left:24px;border-style:none;}#medical_box_1105:hover{}#medical_box_1105 .new_medical_description{color:#000;font-weight:300;text-align:center;border-style:solid;border-color:#555;}#medical_box_949:hover .new_medical_description{}
                    #medical_box_1105:hover .background-img{
                        filter:grayscale(0.7);
                    }
                
                #medical_box_1105 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1105  
                
                #medical_box_1105 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #medical_box_1105 .layer_first_child{
                    width:100%;
                }
            
                #medical_box_1105:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_1105.new_medical_module{
                    background-image:url("https://lupinusnails.ca/files/Design/Gel/1656104741_Gel nails 10.webp");
                }
            
            #medical_box_1105 .mode1-size_1105{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1105 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1105 > div{
               height:100%;
            }
            #medical_box_1105 .mode2-size_1105{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1105 .mode3-size_1105{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1105 .mode4-size_1105{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1105 .mode5-size_1105{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1105 .mode6-size_1105{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1105 .mode7-size_1105{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1105 .mode7-size_1105 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1105 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1105 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1105{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1105 span:hover{
                color:!important;
            }
            .custom2_1105{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1105 span:hover{
                color:;
            }
            #medical_box_1105 .mode-btn1_1105{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1105 .mode-btn1_1105 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1105 .mode-btn2_1105{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1105 .mode-btn2_1105 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1105 .div-btn-title_main_1105{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1105 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1105 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_313 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:64px;line-height:32px;}.module[data-id_page='488']:hover .new_medical_title_main{}#module_new_medical_313 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:40px;padding-bottom:64px;border-style:none;}.module[data-id_page='488']:hover .new_medical_box_main{}
            #module_new_medical_313 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_313 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_313 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_313 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_313 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_313 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_313 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_313 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_313 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_313 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_313 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_313 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_313 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_313 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_313 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_313 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_313 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_313 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_313 .new_medical_description{ 
                    height:0px;
                    overflow: auto;
                }
                #module_new_medical_313 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_313 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_313 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_313 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_313 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_313 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_313{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_313 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_313 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_313 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_313 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_313 .swiper-container{
                width:1200px;
            }
            #module_new_medical_313 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_313 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_313 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_313 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        #module_new_comment_21 .new_comment_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:32px;margin-bottom:16px;width:1200px;height:64px;line-height:64px;}.module[data-id_page='452']:hover .new_comment_title{}
                #module_new_comment_21 .new_comment_title span{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #new_comment_popup{
                    position:fixed;
                    display:flex;
                    background:rgba(0,0,0,0.5);
                    width:auto;
                    height:auto;
                    -webkit-transition:0;-moz-transition:0;-ms-transition:0;-o-transition:0;transition:0;
                    text-align:center;
                    top:0;
                    bottom:0;
                    right:0;
                    left:0;
                    z-index:99999;
                    visibility:hidden;
                    
                    flex-direction:column;
                    justify-content:center;
                
                }
                #new_comment_popup.show_popup{
                    visibility:visible;
                    
                }
                #new_comment_popup > div{
                    display:block;
                    background:#fff;
                    width:auto;
                    height:auto;
                    padding:20px 20px;
                    margin:auto;
                    transform:translateY(-150px);
                    -webkit-transition:transform .3s;-moz-transition:transform .3s;-ms-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;
                    text-align:center;
                    border-radius:5px;
                    ;
                    position:relative;
                    z-index:999999;
                }
                #new_comment_popup.show_popup > div{
                    transform:translateY(0);
                    
                }
                #new_comment_popup .icon-close-popup{
                    position:absolute;
                    font-size:30px;
                    height:30px;
                    width:30px;
                    border-radius:50%;
                    color:red;
                    top:-10px;
                    right:-10px;
                    background-color:#fff;
                    z-index:9999;
                }
                #new_comment_popup .icon-close-popup i{
                    position:absolute;
                    top:0;
                    right:0;
                }
                #new_comment_popup .container-html{
                    height:100%;
                    overflow:auto;
                    max-height:90vh;
                }
                #new_comment_popup .container-html::-webkit-scrollbar{
                    width:5px;
                    height:100%;
                }
                #new_comment_popup .container-html::-webkit-scrollbar-track{
                    background-color:transparent;
                }
                #new_comment_popup .container-html::-webkit-scrollbar-thumb{
                    background-color:#777;
                    border-radius:20%;
                }
            
            #pagination_product{
                padding: 5px;
                border: 1px solid #e8e8e8;
                border-radius: 3px;
                justify-content: space-between;
                margin: 15px 0;
                display: flex;
                width: 100%;
                height: 50px;
                height: max-content;
                height: fit-content;
            }
            #pagination_product > div {
                display: flex;
            }
            #pagination_product > div > *{
                margin: 0 10px;
            }
            #pagination_product span,#pagination_product a,#pagination_product label{
                text-align: center;
                flex-direction: column;
                display: flex;
                justify-content: center;
                border: 1px solid #bababa;
                border-radius: 50%;
            }
            #pagination_product a,#pagination_product label{
                background-color: #ffffff;
                color: #0f0f0f;
                width: 30px;
                height: 30px;
                cursor: pointer;
            }
            #pagination_product span{
                background-color: #e8e8e8;
                color: #5e5e5e;
                opacity: .8;
                width: 32px;
                height: 32px;
            }
            #pagination_product i{
                font-size: 23px;
                margin-bottom: 1px;
            }
            #pagination_product .fa-caret-right{
                margin-left: 4px;
            }
            #pagination_product .fa-caret-left{
                margin-right: 4px;
            }
            #pagination_product label:after{
                content:"" !important;
            }
            #pagination_product_button{
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
            }
            .pagination_product_button_load_more{
                padding: 5px;
                border: 1px solid #e8e8e8;
                border-radius: 3px;
                margin: 15px 0;
                width: calc(100% - 50px);
                height: fit-content;
                text-align: center;
                color: #333;
                cursor: pointer;
            }
        
            .fw500{
                font-weight: 500;
            }
            .parent_input_box{
                background-color: #e8e8e8;
                padding: 0;
                border-radius: 3px;
                margin: 5px 0;
            }
            .parent_input_box:first-child{
                margin-top: 0;
            }
            .parent_input_box > div:first-child{
                width: 10%;
                text-align: center;
                color: #555;
            }
            
            .new_color_tag{
                color: #00AFEF !important;
            }
            .flex1{
                flex: 1 0;
            }
            .module_new_comment21 .input_box{
                background-color: #e8e8e8;
                padding: 5px 10px;
                border: 2px solid transparent;
                border-radius: 5px;
                width: 100%;
            }
            .module_new_comment .input_box:focus{
                border-color: #6ac7ff;
            }
            .module_new_comment .input_box.error{
                border-color: #f4b3b3;
            }
            .module_new_comment textarea{
                min-height: 140px;
                width: 100%;
                resize: vertical;
            }
            .module_new_comment input{
                width: 318px;
            }
            .module_new_comment21 button{
                padding: 9px 0;
                border: none;
                width: 100%;
                background-color: green;
                color: #FFFFFF;
                margin-top:3px;
                max-width: 250px;
                border-radius: 3px;
                cursor: pointer;
                -webkit-box-shadow:0 14px 26px -12px #afafaf, 0 4px 23px 0 #f7fff7, 0 8px 10px -5px #003700;
                -moz-box-shadow:0 14px 26px -12px #afafaf, 0 4px 23px 0 #f7fff7, 0 8px 10px -5px #003700;
                box-shadow:0 14px 26px -12px #afafaf, 0 4px 23px 0 #f7fff7, 0 8px 10px -5px #003700;
            }
            .module_new_comment21 button:hover{
                -webkit-box-shadow: 0 14px 26px -12px #417a41, 0 4px 23px 0 #ffffff, 0 8px 10px -5px #0c510a;
                -moz-box-shadow: 0 14px 26px -12px #417a41, 0 4px 23px 0 #ffffff, 0 8px 10px -5px #0c510a;
                box-shadow: 0 14px 26px -12px #417a41, 0 4px 23px 0 #ffffff, 0 8px 10px -5px #0c510a;
            }
            #new_comment_popup .module_new_comment{
                display: block;
                width: 600px;
            }
            #new_comment_popup .input_box{
                border-radius: 1px;
            }
            #new_comment_popup .parent_input_box{
                width: 49%;
                margin: 0;
            }
            #new_comment_popup .parent_input_box input{
                width: 265px;
            }
            .module_new_comment .result-msg{
                height:50px;
                line-height: 50px;
                padding: 0 20px;
                border: 2px solid;
                border-radius: 4px;
                font-weight: 300;
                margin: 10px 0;
                font-size: 14px;
            }
            .module_new_comment .result-msg.accept-send-msg{
                color: #054012;
                background-color: #a6edbb;
                border-color: #93e2ab;
            }
            .module_new_comment .result-msg.error-send-msg{    
                color: #570b10;
                background-color: #f8c3c3;
                border-color: #f4b3b3;
            }
            .parent-comment-box{
                background-color: #fff;
                padding: 30px 10px;
                font-size: 14px;
                border-bottom: 1px solid #eee;
                color: #2F425C;
                text-align: justify;
            }
            .parent-answer-box{
                background-color: #eee;
                padding: 10px;
                width: 98%;
                margin: 15px auto;
                position:relative;
                border: 1px solid #ddd;
                border-radius: 2px;
            }
            .parent-answer-box:before{
                content: "";
                border: 8px solid;
                position: absolute;
                right: 30px;
                bottom: 100%;
                border-color: transparent transparent #ddd transparent;
                z-index: 9;
            }
            .answer-comment-btn span{
                color: #c71b0c;
                font-weight: 500;
                margin-right: 5px;
                font-size: 15px;
            }
            .answer-comment-btn i{
                color: #c71b0c;
            }
            .parent-score{
                padding: 0 10px;
                margin: 0 3px;
                border: 1px solid #e0e0e0;
                border-radius: 2px;
            }
            .parent-score i{
                margin-right: 5px;
                cursor: pointer;
            }
            .like-score.chooses{
                color: #05810b;
            }
            .dis-like-score.chooses{
                color: #c71b0c;
            }
            .favorite-score i{
                cursor: pointer;
            }
            .favorite-score .like-score.chooses{
                color: #c71b0c;
            }
            .txtd-left{
                direction: ltr;
                text-align: left;
            }
            .txtd-right{
                direction: rtl;
                text-align: right;
            }
            .placeholder-right:-moz-placeholder{
                text-align: right !important;
            }
            .placeholder-right:-ms-input-placeholder{
                text-align: right !important;
            }
            .placeholder-right::-webkit-input-placeholder{
                text-align: right !important;
            }
            .placeholder-left:-moz-placeholder{
                text-align: left !important;
            }
            .placeholder-left:-ms-input-placeholder{
                text-align: left !important;
            }
            .placeholder-left::-webkit-input-placeholder{
                text-align: left !important;
            }
            #result_send_msg{
                text-align: center;
                padding: 0.5rem 0;
                color: red;
            }
        
            
            body{
                position: relative;
            }
            .public-header{
                position: relative;
                transition:5s;
            }
            .absolute-container{
                background-color: #ee273a;
                border-radius: 7px;
                position: fixed;
                top: 50%;
                left: 2%;
                transform: translateY(-50%);
                padding: 10px;
                z-index: 4900;
            }
            .social-absolute{
                position: relative;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0, 0, 0, .1);
                box-sizing: content-box;
                width: 24px;
                height: 24px;
            }
            .social-absolute:last-child {
                border-bottom: none !important;
            }
            .social-absolute img{
                width: 24px;
                height: 24px;
            }
            .absolute-tooltip{
                position: relative;
                transition: all 0.5s;
                border-radius: 0 7px 7px 0;
                font-size: 14px;
                overflow: hidden;
                white-space: nowrap;
            }
            .absolute-tooltip > span{
                padding: 10px 20px;
                display: block;
            }
            .tooltip-shake{
                display: block;
                width: 100%;
                height: 100%;
            }
            .tooltip-shake:before,
            .tooltip-shake:after {
                position: absolute;
                content: "";
                opacity: 0;
                transition: all 0.4s ease;
                color: #fff;
                font-weight: bold;
            }
            .tooltip-shake:before {
                content: attr(data-tooltip);
                background: #3c5059;
                width: 0;
                padding: 0;
                font-size: 0.9rem;
                top: 50%;
                left: calc(24px + 32px);
                border-radius: 5px;
                transform: translateY(-50%);
                overflow: hidden;
                white-space: nowrap;
            }
            .tooltip-shake:after {
                border-width: 8px 10px 8px 0;
                border-style: solid;
                border-color: transparent #3c5059 transparent transparent;
                top: 50%;
                left: calc(24px + 24px);
                transform: translateY(-50%);
            }
            .tooltip-shake:hover::before,
            .tooltip-shake:hover::after {
                opacity: 1;
                overflow: hidden;
                white-space: nowrap;
                transform: translate(0, -50%);
            }
            .tooltip-shake:hover::before {
                width: max-content;
                padding: 10px 25px;
            }
            @keyframes shake {
                0% {
                    transform: rotate(2deg);
                }
                50% {
                    transform: rotate(-3deg);
                }
                70% {
                    transform: rotate(3deg);
                }
                100% {
                    transform: rotate(0deg);
                }
            }
            .social-absolute:hover {
                animation: shake 500ms ease-in-out forwards;
            }
            
                
                .public-header{
                    width: 100%;
                    background: transparent;
                    background-size: auto;
                    background-repeat: no-repeat;
                }
            
            
            .adv-banner-container{
                width: 100%;
                height: 10px;
            }
            .adv-banner-container .adv-item{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .top-bar-container{
                width: 100%;
                min-height: 40px;
                height: 40px;
                background: #5c2952;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-bar{
                width: 1200px;
                height: 100%;
                margin: auto;
                padding: 0 8px;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            .top-item{
                height: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container{
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container img{
                width: 16px;
                height: 16px;
            }
            .info-container > span{
                display: inline-flex;
            }
            .top-info,
            .top-social{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-social{
                padding: 5px 0;
            }
            .top-social li a img{
                width: 32px;
                height: 32px;
            }
            .top-social li a span{
                font-size: 0px;
                font-weight: 200;
                color: #777;
            }
            .top-list{
                width: max-content;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0  0px;
            }
            .top-list:hover{
                color: ;
            }
            
                .top-list:first-child{
                    margin-left : 0;
                }
                .top-list:last-child{
                    margin-right : 0;
                }
            
            
            .arrow-menu-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-list a span,
            .top-list span{
                color: #777;
                font-weight: bold;
                font-size: 14px;
            }
            .top-list a img,
            .top-list span img{
                margin: 0 5px;
                width: 24px;
                height: 24px;
                object-fit: contain;
            }
            .top-list:first-child a img,
            .top-list:first-child span img{
                margin-left: 0;
            }
            .top-navbar{
                height: 100%;
                background: transparent;
            }
            .top-nav-list{
                position: relative;
                height: 100%;
                padding: 0 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-nav-list a span,
            .top-nav-list span{
                color: #000;
                font-size: 0px;
                font-weight: 200;search
            }
            .top-nav-list:hover{
                background-color: #fff;
            }
            .top-nav-list .arrow-menu-container svg{
                fill: #000;
            }
            .top-nav-list:hover a span,
            .top-nav-list:hover span,
            .top-nav-list:hover .arrow-menu-container svg{
                color: #fff;
                fill: #fff;
            }
            .top-nav-list .icon-title-part{
                padding-left: 5px;
            }
            .top-sub-nav > .top-sub-list a span,
            .top-sub-nav > .top-sub-list span{
                color: #000;
            }
            .top-sub-nav > .top-sub-list:hover a span,
            .top-sub-nav > .top-sub-list:hover span{
                color: #fff;
            }
            
            .top-sub-nav{
                flex-direction: column;
                justify-content: center;
                align-content: flex-start;
                position: absolute;
                z-index: 4999;
                min-width: 150px;
                width: max-content;
                background: #2c3e50;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translateY(-10px) scaleY(0.5);
                transform-origin: top;  
                border-radius: 0;
            }
            .top-nav-list:hover > .top-sub-nav{
                display: flex;
                top: 100%;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
        
                .top-nav-list:hover > .top-sub-nav{
                    left: 0;
                }
                .top-sub-list{
                    border-right: 5px solid  #f00;
                }
            
        
            .top-sub-list{
                width: 100%;
                padding: 8px 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-sub-list:hover{
                background: #fff;
            }
            .header-container{
                display: grid;
                width: 1200px;
                margin: auto;
                height: auto;
                grid-template-rows: 1fr 1fr;  
                grid-template-columns: 1fr 3fr 1fr;
                grid-template-areas: 
                    "top-1 top-2 top-3"
                    "bottom-1 bottom-2 bottom-3"; 
                padding-top: 8px;
                padding-bottom: 8px;
                padding-left: 8px;
                padding-right: 8px;
            }
            .top-section-1{
                grid-area: top-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-2{
                grid-area: top-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-3{
                grid-area: top-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
            }
            .logo-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 0px  0px;
            }
            .logo-container img{
                display: block;
                width: 200px;
                height: 80px;
                max-width: 200px;
                max-height: 80px;
                object-fit: contain;
            }
            .nav-container{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                box-sizing: border-box;
                margin: 0 10px;
            }
            .nav-container > .navbar{
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                background: #500241;
                box-sizing: border-box;
                border: px  solid  ;
                border-radius: 3px;
            }
            
                .nav-container > .navbar{
                    margin-right: calc(0px + 10px);
                }
            
        
            .max-height{
                height: 700px;
                overflow-x:hidden;
                overflow-y: auto;
                display:flex!important;
                flex-direction: column!important;
                justify-content: flex-start!important;
            }
            .nav-container .navbar .nav-list{
                padding: 10px 18px;
                min-height: 45px;
                position: relative;
                list-style: none;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-content: center;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list.active{
                background-color: #fab2a6;
            }
            .nav-container .navbar .nav-list.active a,
            .nav-container .navbar .nav-list.active span{
                color: #500241;
            }
            
            .nav-container .navbar .nav-list .icon-title-part{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .nav-container .navbar .nav-list .icon-title-part img{
                width: 24px;
                height: 24px;
                margin: 0 5px;
            }
            .nav-container .navbar .nav-list .overflow-menu{
                justify-content: center !important;
            }
            .nav-container .navbar .nav-list:hover{
                background-color: #fab2a6;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list:hover a,
            .nav-container .navbar .nav-list:hover span{
                color: #500241 ;
            }
            .nav-container .navbar .nav-list img{
                width: 32px;
                height: 32px;
            }
            .nav-container .navbar .nav-list a,
            .nav-container .navbar .nav-list span{
                text-decoration: none;
                font-size: 14px;
                color: #fab2a6;
            }
            .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
            .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                display: flex;
                top: 45px;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                display: flex;
                right: calc(100%  +  5px);
                top: 0;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
                    
                    .nav-container .navbar.navbar-sub{
                        flex-direction: column;
                        justify-content: center;
                        align-content: flex-start;
                        min-width: 150px;
                        width: max-content;
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width: 100%;
                        border-right: 5px solid red;
                    }
                    .nav-container .navbar.navbar-sub{
                        position: absolute;
                        z-index: 4999;
                        background: #fff;
                        clip: rect(1px, 1px, 1px, 1px);
                        opacity: 0.1;
                        transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                                    opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                        transform: translateY(-10px) scaleY(0.5);
                        transform-origin: top;  
                        border-radius: 0;
                    }
                    .nav-container .navbar.navbar-sub{
                        flex-direction: column;
                        justify-content: center;
                        align-content: flex-start;
                        min-width: 150px;
                        width: max-content;
                    }
                    .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
                    .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                        left: 0;
                        border-radius: 0 !important;
                    }
                    .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                        left: calc(100%  +  5px);
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width: 200px;
                        border-right: 5px solid red;
                        border-radius: 0 !important;
                    }
                
                .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
                .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                    left: 0;
                }
                .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                    left: calc(100%  +  5px);
                }
            
        
            .arrow-icon-menu{
                width: 8px;
                height: 8px;
            }
            .arrow-icon-menu.arrow-bottom{
                transform: rotate(90deg);
            }
            
                .arrow-menu-container{
                    margin-left: 5px;
                }
                .arrow-icon-menu.arrow-right,
                .overflow-list .arrow-icon-menu.arrow-bottom{
                    transform: rotate(0deg);
                }
                .nav-container .navbar .nav-list:first-child:hover{
                    border-radius: 3px 0 0 3px;
                }
                .nav-container .navbar .nav-list:last-child:hover{
                    border-radius: 0 3px 3px 0;
                }
            
            
            .nav-container .navbar .nav-list.base-level svg,
            .nav-container .navbar .nav-list .overflow-menu svg{
                fill: #fab2a6;
            }
            .nav-container .navbar .nav-list.base-level:hover svg{
                fill: #500241;
            }
            .sub-menu-container{
                position: absolute;
                min-width: 150px;
                background-color: #fff;
                color: #fff;
                top: 32px;
                right: 0;
                z-index: 4999;
               /* display: none;*/
            } 
            /*.sub-navbar{
                width: 100%;
                height: 100%;
            }*/
            .nav-container .navbar.navbar-sub .nav-list img{
                width: 16px;
                height: 16px;
            }
            .nav-container .navbar.navbar-sub .nav-list a,
            .nav-container .navbar.navbar-sub .nav-list span{
                color: #000;
                font-size: 12px;
            }
            .nav-list.with-sub-menu:hover .sub-menu-container{
                display: block;
            }
            .nav-container .navbar.navbar-sub .nav-list .arrow-menu-container svg{
                fill: #000;
            }
            .active{
                background-color: #fab2a6;
            }
            .active a{
                color: #500241;
            }     
            .icon-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
            }
            .icon-container .icon-item{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
                box-sizing: border-box;
                min-height: 45px;
                margin: 0 5px;
            }
            
                
                .icon-container .icon-item:first-child{
                    margin-left: 0 !important;
                }
                .icon-container .icon-item:last-child{
                    margin-right: 0 !important;
                }
            
            
            
            .icon-container .icon-item a{
                border: 0px  solid  ;
            }
            .icon-container .icon-item.basket-icon{
                position: relative;
                color: #e84118;
                min-width: 45px;
                min-height: 45px;
                outline: none;
                border-radius: 3px;
                background: #2c3e50;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                text-decoration: none;
                margin: 0 10px;
            }
            .icon-container .icon-item .icon-shortcut{
                color: #e84118;
                min-width: 45px;
                min-height: 45px;
                margin: 0;
                outline: none;
                border-radius: 3px;
                background: #2c3e50;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                transition: .4s;
                cursor: pointer;
                text-decoration: none;
            }
            
            .basket-shop{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 45px;
                height: 45px;
                border-radius: 3px;
            }
            .icon-container .icon-item .icon-shortcut:hover svg,
            .icon-container .icon-item .icon-shortcut:hover .add-item-to-cart.open span
            {
                fill: #fff;
                color: #fff;
            }
            
                
                .icon-container .icon-item.basket-icon .add-item-to-cart{
                    color: #e84118;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    transition: .4s;
                    cursor: pointer;
                    box-sizing: content-box;
                    border: 0px  solid  ;
                }
                
                    .icon-container .icon-item.basket-icon .add-item-to-cart{
                        border-right: none !important;
                    }
                    .border-basket{
                        border-left: none !important;
                    }
                
                
                    .icon-container .icon-item:hover > span,
                    .icon-container .icon-item.login-icon:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover,
                    .icon-container .icon-item.login-icon .icon-shortcut:hover,
                    
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover .add-item-to-cart{
                       background: #3e5772;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open{
                        width: 45px;
                        border-radius: 0 3px 3px 0;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                    }
                    .icon-container .icon-item.basket-icon:hover .add-item-to-cart.open{
                        background: #3e5772;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open + .icon-shortcut{
                        border-radius: 3px 0 0 3px;
                    }
                    .icon-container .icon-item.lang-icon .icon-shortcut:hover{
                        background: #3e5772;
                    }
                    .icon-container .icon-item.search-icon .icon-shortcut .search-container .search-btn:hover{
                        background: #3e5772;
                    }
                 
            .icon-container .icon-item svg{
                width: 25px;
                height: 25px;
            
                fill: #e84118;
            
            
            }
            .icon-container .icon-item.login-icon{
                position: relative;
            }
            /*.icon-container .icon-item.login-icon .icon-shortcut{
                width: 100%;
                height: 100%;
            }*/
            .icon-container .icon-item.login-icon .icon-login{
                width: 25px;
                height: 25px;
            }
            #div_profile_picture, 
            #div_profile_picture_metro {
                display: inline !important;
                width: 0 !important;
                height: 0 !important;
                line-height: unset !important;
            }
            #div_profile_picture .rShowLogin{
                position: absolute;
                top: 0;
                left: 0;
                width: 0;
                height: 0;
                z-index: -1000;
            }
            #div_profile_picture .login-container{
                display: none !important;
            }
            #div_profile_picture #profile_picture,
            #div_profile_picture #profile_exit{
                display: none !important;
            }
        
                
                .icon-container .icon-item.login-icon{
                    color: #e84118;
                    /*width: 90px !important;*/
                    min-height: 45px;
                    outline: none;
                    border-radius: 3px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    text-decoration: none;
                    box-sizing: content-box;
                    border: 0px  solid  ;
                }
                .icon-container .icon-item.login-icon .status-user,
                .icon-container .icon-item.login-icon .icon-login{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    margin: 0 5px;
                    font-size:14px;
                }
            
            
            .public-header .bottom-section-1{
                grid-area: bottom-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-2{
                grid-area: bottom-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-3{
                grid-area: bottom-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            
                
                .icon-container .icon-item{
                    width: unset;
                    height: unset;
                }
                .search-icon{
                    position: relative;
                }
                .search-container {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-end;
                    align-items: center;
                    height: 100%;
                    position: relative;
                    border-radius: 3px;
                    min-width: 45px;
                }
                .search-container > .search-btn svg,
                .search-container > .close-search-btn svg{
                    fill: #e84118;
                }
                .search-container > .search-btn:hover svg,
                .search-container > .close-search-btn:hover svg{
                    fill: #fff;
                }
                .search-btn {
                    color: #fff;
                    width: 45px;
                    height: 45px;
                    margin: 0;
                    outline: none;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    transition: .8s;
                    cursor: pointer;
                    text-decoration: none;
                    border: 0px  solid  transparent;
                }
                
                .icon-container .icon-item img{
                    width: 25px;
                    height: 25px;
                    object-fit:contain;
                }
                
                    .search-container.open-search-box .search-btn{
                        border-radius: 0 3px 3px 0 !important;
                    }
                    .search-container.open-search-box .close-search-btn{
                        border-radius: 3px 0 0 3px !important;
                    }    
                 
                
                .search-btn,
                .search-command,
                .close-search-btn{
                    box-sizing: content-box;
                }
                .search-btn > svg {
                    fill: #fff;
                }
                .cls-pls::placeholder{
                    color: ;
                }
                .search-input {
                    padding: 0;
                    height: 100%;
                    background: #2c3e50;
                    color: #fff;
                    font-size: 14px;
                    font-weight: normal;
                    transition: all 1s ease-in-out;
                    width: 0;
                    position: absolute;
                    top: 0;
                    overflow: hidden;
                    white-space: nowrap;
                    border: 0px  solid  transparent;
                }
                
                .open-search-box > .search-input{
                    padding : 10px 48px;
                }
                
                    
                    .search-input {
                        right: calc(0px + 45px);
                        border-right: none;
                        border-left: none;
                    }
                
                        .search-container.open-search-box .search-btn{
                            border-radius: 0 3px 3px 0 !important;
                        }
                        .search-container.open-search-box .close-search-btn{
                            border-radius: 3px 0 0 3px !important;
                        }
                        .search-container.open-search-box .search-input{
                            border-radius: 3px 0 0 3px !important;
                        }    
                    
                
                .close-search-btn{
                    position: absolute;
                    color: #fff;
                    width: 45px;
                    height: 45px;
                    margin: 0;
                    outline: none;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    box-sizing: border-box;
                    box-sizing: border-box;
                }
                .close-search-btn svg{
                    fill: #e84118;
                }
            
            
            .sticky{
                width: 100vw;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 999;
                padding: 2vh 8vw;
                transition: .8s;
                background-color: #ddd !important;
            }
            .public_sticky{
                width: 100%;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 1001;
            }
            .d-none{
                display: none !important;
            }
            .border-left-n{
                border-left: none !important;
            }
            .border-right-n{
                border-right: none !important;
            }
            .w-1200px{
                width: 1200px !important;
                margin: auto;
            }
            .lang-icon{
                position: relative;
            }
            .language-container .lang-btn{
                width: 25px;
                height: 25px;
            }
            .lang-list-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .lang-list{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px;
                background: #2c3e50;
                border-radius: 3px;
            }
            .lang-list::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #2c3e50;
                display: block;
            }
            .lang-nav{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
            }
            .lang-nav .lang-li{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                list-style: none;
                width: max-content;
                margin: 5px 0;
                
            }
            .lang-nav .lang-li a{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .lang-nav .lang-li img{
                width: 25px;
                height: 25px;
                object-fit: cover;
                margin: 0 4px;
            }
            .lang-nav .lang-li span{
                text-transform: uppercase;
                line-height: 2.5;
                font-size: 14px;
                margin: 0 4px;
                color: #fff;
            }
            .lang-nav .lang-li a{
                color: #fff;
            }
            .lang-nav .lang-li span:hover{
                cursor: pointer;
                color: #fff;
            }
            .lang-nav .lang-li .lang-active{
                font-weight: bold;
                color: #e84118;
            }
            .icon-item.lang-icon:hover .lang-list-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            /*---------------------------------------------------------------------------------*/
            .link-profile-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .link-profile-container .link-wrapper{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px 25px;
                background: #2c3e50;
                border-radius: 3px;
            }
            .link-profile-container .link-wrapper a{
                color: #fff;
            }
            .link-profile-container .link-wrapper a:hover{
                cursor: pointer;
                color: #fff;
            }
            .link-profile-container .link-wrapper::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #2c3e50;
                display: block;
            }
             .icon-item.login-icon:hover .link-profile-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            
            
            .backTop{
                display: flex !important;
            }
            #back_to_top{
                display: none;
                position: fixed;
                transition: 600ms;
                right: 25px;
                left: unset;
                bottom: 50px;
                z-index: 100;
                border-radius: %;
                border: 1px  solid  #c1c1c1;
                padding: 15px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: transparent;
            }
            #back_to_top svg{
                width: 32px;
                height: 32px;
                fill: #c1c1c1;
            }
            #back_to_top img{
                width: 32px;
                height: 32px;
                fill: #c1c1c1;
                object-fit:contain;
            }
            .search-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .basket-shop img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .lang-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .icon-login img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
        
                    
                    .header-container{
                        grid-template-rows: 1fr;  
                        grid-template-columns: 200px minmax(auto, 100%) 1fr;
                        grid-template-areas: 
                            "top-1 top-2 top-3"; 
                    }
                    .top-section-1{
                        justify-content: flex-start;
                    }
                    .top-section-2{
                        justify-content: flex-start;
                    }
                    .logo-container{
                        justify-content: flex-start;
                    }
                    .nav-container{
                        justify-content: flex-start;
                    }
                    .nav-container .navbar{
                        justify-content: flex-start;
                    }
                    .width-full{
                        width: 100% !important;
                    }
                #module_footer_section_1{
;
padding-bottom:128px;
border-style:solid;
border-bottom-width:.1vw;
border-color:#c1c1c1;
}#module_footer_column_1{
;
width:32%;
margin-top:0px;
padding-left:8%;
border-style:none;
}#module_footer_items_1{
;
cursor:default;
text-align:left;
line-height:4vw;
color:#FFF;
font-weight:300;
font-size:1.25vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_1:hover{
;
}#module_footer_items_2{
;
cursor:default;
color:#c1c1c1;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-top:1vw;
}#module_footer_items_2:hover{
;
}#module_footer_items_3{
;
cursor:default;
color:#c1c1c1;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-top:.25vw;
}#module_footer_items_3:hover{
;
}#module_footer_column_2{
;
width:36%;
margin-top:0px;
justify-content:center;
border-style:none;
}#module_footer_row_5{
;
justify-content:center;
border-style:none;
}#module_footer_items_5{
;
cursor:default;
text-align:center;
width:14vw;
height:4vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_5:hover{
;
}#module_footer_row_6{
;
justify-content:center;
border-style:none;
}#module_footer_items_6{
;
cursor:default;
text-align:center;
line-height:2.1vw;
color:#c1c1c1;
font-weight:300;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-top:4vw;
}#module_footer_items_6:hover{
;
}#module_footer_row_7{
;
justify-content:center;
padding-top:2vw;
border-style:none;
}#module_footer_items_7{
;
cursor:default;
width:2.75vw;
height:2.75vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:hidden;
opacity:1;
border-style:solid;
border-top-width:.1vw;
border-right-width:.1vw;
border-bottom-width:.1vw;
border-left-width:.1vw;
border-color:#c1c1c1;
padding-top:.5vw;
padding-right:.5vw;
padding-bottom:.5vw;
padding-left:.5vw;
}#module_footer_items_7:hover{
;
border-style:solid;
border-top-width:.12vw;
border-right-width:.12vw;
border-bottom-width:.12vw;
border-left-width:.12vw;
border-color:#fff;
}#module_footer_items_8{
;
cursor:default;
width:2.75vw;
height:2.75vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:hidden;
opacity:1;
border-style:solid;
border-top-width:.1vw;
border-right-width:.1vw;
border-bottom-width:.1vw;
border-left-width:.1vw;
border-color:#c1c1c1;
margin-left:1vw;
padding-top:.5vw;
padding-right:.5vw;
padding-bottom:.5vw;
padding-left:.5vw;
}#module_footer_items_8:hover{
;
}#module_footer_items_9{
;
cursor:default;
width:2.75vw;
height:2.75vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:hidden;
opacity:1;
border-style:solid;
border-top-width:.1vw;
border-right-width:.1vw;
border-bottom-width:.1vw;
border-left-width:.1vw;
border-color:#c1c1c1;
margin-left:1vw;
padding-top:.5vw;
padding-right:.5vw;
padding-bottom:.5vw;
padding-left:.5vw;
}#module_footer_items_9:hover{
;
}#module_footer_items_10{
;
cursor:default;
width:2.75vw;
height:2.75vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:hidden;
opacity:1;
border-style:solid;
border-top-width:.1vw;
border-right-width:.1vw;
border-bottom-width:.1vw;
border-left-width:.1vw;
border-color:#c1c1c1;
margin-left:1vw;
padding-top:.45vw;
padding-right:.45vw;
padding-bottom:.45vw;
padding-left:.45vw;
}#module_footer_items_10:hover{
;
}#module_footer_column_3{
;
width:32%;
margin-top:0px;
justify-content:flex-start;
padding-left:8%;
border-style:none;
}#module_footer_row_8{
;
border-style:none;
}#module_footer_items_11{
;
cursor:default;
line-height:4vw;
color:#ffffff;
font-weight:300;
font-size:1.25vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_11:hover{
;
}#module_footer_row_9{
;
border-style:none;
}#module_footer_items_12{
;
cursor:default;
color:#c1c1c1;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_12:hover{
;
}#module_footer_row_10{
;
border-style:none;
}#module_footer_items_13{
;
cursor:default;
text-align:left;
color:#c1c1c1;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-top:.25vw;
}#module_footer_items_13:hover{
;
}#module_footer_row_11{
;
border-style:none;
}#module_footer_items_14{
;
cursor:default;
color:#c1c1c1;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-top:.25vw;
}#module_footer_items_14:hover{
;
}#module_footer_section_2{
;
justify-content:center;
padding-top:1.1vw;
padding-right:12%;
padding-bottom:1.1vw;
padding-left:12%;
border-style:none;
}#module_footer_column_4{
;
width:100%;
justify-content:center;
border-style:none;
}#module_footer_row_12{
;
border-style:none;
}#module_footer_items_15{
;
cursor:default;
text-align:center;
color:#FFF;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_15:hover{
;
}#module_footer_items_16{
;
cursor:default;
text-align:center;
color:#FFF;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:6vw;
margin-left:6vw;
}#module_footer_items_16:hover{
;
}#module_footer_items_17{
;
cursor:default;
text-align:center;
color:#FFF;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:6vw;
}#module_footer_items_17:hover{
;
}#module_footer_items_18{
;
cursor:default;
text-align:center;
color:#FFF;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:8vw;
}#module_footer_items_18:hover{
;
}#module_footer_items_19{
;
cursor:default;
text-align:center;
color:#FFF;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:8vw;
}#module_footer_items_19:hover{
;
}#module_footer_items_20{
;
cursor:default;
text-align:center;
color:#FFF;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_20:hover{
;
}#public_footer_main_1{;background-color:#500240;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:128px;border-style:none;}#public_footer_main_1:hover{;}#public_footer_main_1{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_1 > div{
                    position:relative;
                    z-index:12;
                }
                   #public_footer_main_1  
                
                #public_footer_main_1 .new_admin_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
                #public_footer_main_1 .layer_first_child{
                    width:100%;
                }
            
                #public_footer_main_1:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #msg_footer.msg_footer,
            #msg_footer_complete.msg_footer{
                position: fixed;
                top: 50px;
                right: 10px;
                width: 400px;
                height: 50px;
                z-index: 10000;
                border-radius: 3px;
            }

            #msg_footer .d_flex,
            #msg_footer_complete .d_flex{
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                height: 100%;
                padding: 0 15px;
            }

            #msg_footer.green_msg_footer {
                background-color: #d4edda;
                border: 1px solid #c3e6cb;
                color: #155724;
            }

            #msg_footer.red_msg_footer,
            #msg_footer_complete.red_msg_footer{
                background-color: #f8d7da;
                border: 1px solid #f5c6cb;
                color: #721c24;
            }

            #msg_footer .close_msg,
            #msg_footer_complete .close_msg{
                cursor: pointer;
                font-size: 25px;
                padding-right: 15px;
            }

            #msg_footer .close_msg:hover,
            #msg_footer_complete .close_msg:hover{
                color: #000;
            }
            
            .border_red{
                border: 1px solid #e20000;
            }
            footer a{
                color: inherit;
            }
        
            #body_popup_1,#body_popup_2{
                position:fixed;
                display:flex;
                text-align:center;
                top:0;
                bottom:0;
                right:0;
                left:0;
                z-index:99999;
                visibility:hidden;
                opacity: 0;
                background:rgba(0,0,0,0.5);
            }
            #body_popup_1.open-popup,#body_popup_2.open-popup{
                visibility:visible;
                opacity: 1;
            }
            #body_popup_1 > div,#body_popup_2 > div{
                display:block;
                background:#fff;
                padding:10px;
                margin:auto;
                transform:translateY(-150px);
                -webkit-transition:transform .3s;-moz-transition:transform .3s;-ms-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;
                text-align:center;
                border-radius:10px;
                position:relative;
                z-index:999999;
            }
            #body_popup_1.open-popup > div,#body_popup_1.open-popup > div{
                transform:translateY(0);
            }
            #body_popup_1 .icon-close-popup{
                position:absolute;
                font-size:30px;
                height:30px;
                width:30px;
                border-radius:50%;
                color:red;
                top:-10px;
                right:-10px;
                background-color:transparent;
                z-index:9999;
            }
            #body_popup_1 .icon-close-popup i{
                position:absolute;
                top:0;
                right:0;
            }
            #body_popup_1 .container-html{
                height:100%;
                overflow:auto;
                max-height:90vh;
            }
            #body_popup_1 .container-html::-webkit-scrollbar{
                width:5px;
                height:100%;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-track{
                background-color:transparent;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-thumb{
                background-color:#777;
                border-radius:20%;
            }
            #body_popup_1 .icon-close-popup{
                color:#fff;
                top:0;
                right:0;
            }
            #module_waiting_box{
                position:fixed;
                background:rgba(256,256,256,0.8);
                width:100%;
                height:100%;
                -webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;transition:.3s;
                top:0;
                right:0;
                opacity:0;
                z-index:9999999999999;
                visibility:hidden;
            }
            #module_waiting_box.show-waiting{
                visibility:visible;
                opacity:1;
            }
            #module_waiting_box .spinner {
              margin: 100px auto 0;
              width: 70px;
              text-align: center;
            }
            
            #module_waiting_box .spinner > div {
              width: 18px;
              height: 18px;
              background-color: #333;
              border-radius: 100%;
              display: inline-block;
              -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
              animation: sk-bouncedelay 1.4s infinite ease-in-out both;
            }
            
            #module_waiting_box .spinner .bounce1 {
              -webkit-animation-delay: -0.35s;
              animation-delay: -0.35s;
            }
            
            #module_waiting_box .spinner .bounce2 {
              -webkit-animation-delay: -0.16s;
              animation-delay: -0.16s;
            }
            
            @-webkit-keyframes sk-bouncedelay {
              0%, 95%, 100% { -webkit-transform: scale(0) }
              50% { -webkit-transform: scale(1.0) }
            }
            
            @keyframes sk-bouncedelay {
              0%, 95%, 100% { 
                -webkit-transform: scale(0);
                transform: scale(0);
              } 50% { 
                -webkit-transform: scale(1.0);
                transform: scale(1.0);
              }
            }
        body{direction: ltr;text-align: left;}