.sm-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 16px auto;
}

.sm-product-card-wrap {
  width: 45%;
  padding: 14px 12px;
  margin-bottom: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
}

.sm-product-card-wrap:nth-child(odd) {
  margin-right: 16px;
}

.sm-product-card-wrap .sm-product-card {
  display: flex;
}

@media (max-width: 425px) {
  .sm-product-card-wrap .sm-product-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.sm-product-card-wrap .sm-product-card .img {
  margin-right: 12px;
}

.sm-product-card-wrap .sm-product-card .img img {
  width: 80px;
  height: auto;
}

.sm-product-card-wrap .sm-product-card .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  line-height: 1.25;
}

.sm-product-card-wrap .sm-product-card .content .title {
  flex-grow: 1;
  font-size: 16px;
  font-weight: bold;
  color: #43525a;
  margin-bottom: 10px;
}

.sm-product-card-wrap .sm-product-card .content .quantity {
  background-color: rgba(0, 121, 174, 0.06);
  display: flex;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: 48px;
  max-width: 48px;
  height: 32px;
  border-radius: 12px;
}

@media (max-width: 425px) {
  .sm-product-card-wrap .sm-product-card .content .quantity {
    align-self: center;
  }
}

.sm-product-card-wrap .sm-product-card .content .quantity span {
  display: inline-block;
  font-size: 18px;
  color: #00537a;
}

.sm-product-card-wrap .sm-product-card .content .quantity span:before {
  display: inline-block;
  content: "x";
  font-size: 15px;
}

.sm-notify {
  position: fixed;
  background-color: #fff;
  max-width: 400px;
  right: 30px;
  bottom: 60px;
  padding: 22px 8px 15px;
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
  font-family: Ubuntu, sans-serif;
  opacity: 1;
  visibility: visible;
  transition: visibility 0.5s, transform 0.5s ease-in-out, opacity 0.5s ease-in;
  z-index: 1001;
}

.sm-notify.with-img {
  max-width: 480px;
}

.sm-notify.sm-notify-hide {
  opacity: 0;
  transform: translateY(3em);
  visibility: hidden;
}

.sm-notify .sm-notify-close {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 5px;
  right: 5px;
  padding: 0;
  opacity: 0.4;
  cursor: pointer;
  z-index: 1002;
}

.sm-notify .sm-notify-close.sm-notify-close-over {
  width: 30%;
  height: 50%;
  padding: 0;
}

.sm-notify .sm-notify-content {
  position: relative;
  max-width: 1169px;
  width: 93.75%;
  margin: 0 auto;
}

.sm-notify .sm-notify-content .sm-notify-img-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
}

.sm-notify .sm-notify-content .sm-notify-img-wrap .sm-notify-img {
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  max-width: 360px;
  width: 100%;
  height: 180px;
  margin-bottom: 12px;
  border-radius: 8px;
}

.sm-notify .sm-notify-content .sm-notify-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #303030;
}

.sm-notify .sm-notify-content .sm-notify-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #43525a;
}

.sm-notify .sm-notify-content .sm-notify-title {
  margin-bottom: 12px;
  border-radius: 8px;
}

.sm-notify .sm-notify-content .sm-notify-accept {
  display: inline-block;
  background: 0 0;
  float: right;
  padding: 5px 10px;
  margin-left: 15px;
  margin-right: -10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.29;
  color: #0079ae;
  cursor: pointer;
  transition: all 0.3s ease-in;
  -webkit-tap-highlight-color: transparent;
}

.sm-popup-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sm-popup-wrap .sm-body-blackout {
  position: absolute;
  z-index: 1010;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
}

.sm-popup-wrap .sm-body-blackout.is-blacked-out {
  display: block;
}

.sm-popup-wrap .popup-trigger {
  display: inline-block;
}

.sm-popup-wrap .sm-popup-modal {
  position: fixed;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  max-width: 650px;
  height: auto;
  top: 50%;
  left: 50%;
  padding: 26px 32px 32px;
  border-radius: 10px;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
  transition: visibility 0.5s, transform 0.5s ease-in-out, opacity 0.5s ease-in;
  transform: translate(-50%, -50%);
  z-index: 1011;
}

.sm-popup-wrap .sm-popup-modal.is--visible {
  opacity: 1;
  pointer-events: auto;
}

.sm-popup-wrap .sm-popup-modal__close {
  position: absolute;
  font-size: 1.2rem;
  right: -10px;
  top: -10px;
  cursor: pointer;
}

.sm-popup-wrap .sm-popup-modal.with-img {
  max-width: 480px;
}

.sm-popup-wrap .sm-popup-modal.sm-popup-hide {
  opacity: 0;
  transform: translateY(3em);
  visibility: hidden;
}

.sm-popup-wrap .sm-popup-modal .sm-popup-close {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 10px;
  right: 10px;
  padding: 0;
  opacity: 0.4;
  cursor: pointer;
  z-index: 1002;
}

.sm-popup-wrap .sm-popup-modal .sm-popup-close.sm-notify-close-over {
  width: 30%;
  height: 50%;
  padding: 0;
}

.sm-popup-wrap .sm-popup-modal .sm-popup-header .sm-popup-title {
  font-size: 22px;
  font-weight: 500;
  color: #43525a;
  margin-bottom: 20px;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .sm-popup-wrap .sm-popup-modal .sm-popup-header .sm-popup-title {
    font-size: 18px;
  }
}

.sm-popup-wrap .sm-popup-modal .sm-popup-content {
  position: relative;
  flex-grow: 1;
  max-width: 1169px;
  width: 100%;
  margin: 0 auto;
}

.sm-popup-wrap .sm-popup-modal .sm-popup-content .sm-popup-img-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
}

.sm-popup-wrap .sm-popup-modal .sm-popup-content .sm-popup-img-wrap .sm-popup-img {
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  max-width: 360px;
  width: 100%;
  height: 180px;
  margin-bottom: 12px;
  border-radius: 8px;
}

.sm-popup-wrap .sm-popup-modal .sm-popup-content .sm-popup-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  padding: 0;
  margin: 0;
}

@media (max-width: 480px) {
  .sm-popup-wrap .sm-popup-modal .sm-popup-content .sm-popup-text {
    font-size: 15px;
    line-height: 20px;
  }
}

.sm-popup-wrap .sm-popup-modal .sm-popup-content p {
  font-size: 16px;
  line-height: 20px;
}

.sm-popup-wrap .sm-popup-modal .sm-popup-footer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: right;
  align-items: center;
  margin-top: 20px;
}

.sm-popup-wrap .sm-popup-modal .sm-popup-footer > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: right;
  align-items: center;
}

.sm-popup-wrap .sm-popup-modal .sm-popup-footer .sm-popup-accept {
  display: inline-block;
  min-height: auto;
  background: 0 0;
  padding: 5px 10px;
  margin-left: 15px;
  margin-right: -10px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.29;
  color: #0079ae;
  cursor: pointer;
  transition: all 0.3s ease-in;
  -webkit-tap-highlight-color: transparent;
}

.wp-permission-background-popup {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  font-family: Ubuntu, sans-serif;
  opacity: 1;
  visibility: visible;
  transition: visibility 0.5s, transform 0.5s ease-in-out, opacity 0.5s ease-in;
  z-index: 1001;
}

.wp-permission-close {
  position: absolute;
  top: 5rem;
  right: 5rem;
  cursor: pointer;
  padding: 30px;
  z-index: 1002;
}

.wp-permission-background-content {
  position: relative;
  width: 100%;
  max-width: 768px;
  padding: 0 1rem;
  margin: 0 auto;
}

.wp-permission-background-title {
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.wp-permission-background-text {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.3rem;
  color: #ffffff;
}

.wp-permission-background-info {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25rem;
  color: #ffffff;
  margin-top: 20px;
}

.wp-permission-background-hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3em);
}

.wp-bell-container {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 2;
}

.wp-bell-position-rb {
  right: 50px;
  bottom: 100px;
}

.wp-bell-position-rc {
  right: 50px;
  bottom: 50%;
}

.wp-bell-position-lb {
  bottom: 100px;
  left: 50px;
}

.wp-bell-position-lc {
  bottom: 50%;
  left: 50px;
}

.wp-bell-position-bc {
  right: 49%;
  bottom: 100px;
}

@media (max-width: 480px) {
  .wp-bell-position-bc {
    right: 42%;
    bottom: 100px;
  }
}

@media (min-width: 768px) {
  .wp-permission-background-title {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

.wp-bell {
  position: absolute;
  display: table;
  right: 0;
  bottom: 0;
  cursor: pointer;
  margin: 0 auto;
  opacity: 1;
  visibility: visible;
  transition: visibility 1.5s, transform 1.5s ease-in-out, opacity 1.5s ease-in;
  z-index: 1000;
}

.wp-bell-hide {
  opacity: 0;
  visibility: hidden;
}

.wp-bell > span {
  position: absolute;
  background: #e31837;
  display: block;
  width: 20px;
  height: 20px;
  top: -2px;
  right: 5px;
  font-size: 9px;
  font-weight: bold;
  line-height: 16px;
  color: #ffffff;
  text-align: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s ease;
  z-index: 1;
}

.wp-bell > div {
  position: relative;
  margin-bottom: 9px;
  transform-origin: 50% 0;
}

.wp-bell > div > span {
  position: absolute;
  background: #0079ae;
  display: block;
  width: 17px;
  height: 4px;
  top: 90%;
  right: 110%;
  border-radius: 2px;
  transform: scaleY(0.9) scaleX(0);
  transform-origin: 100% 50%;
}

.wp-bell > div > span:before,
.wp-bell > div > span:after {
  position: absolute;
  background: #0079ae;
  display: block;
  content: "";
  width: 12px;
  height: 4px;
  left: 5px;
  border-radius: 2px;
}

.wp-bell > div > span:before {
  top: -8px;
  transform: scaleY(0.8) rotate(24deg);
}

.wp-bell > div > span:after {
  bottom: -8px;
  transform: scaleY(0.8) rotate(-24deg);
}

.wp-bell > div svg {
  display: block;
  transition: fill 0.3s ease;
  fill: #99a3ba;
}

.wp-bell > div svg:nth-child(1) {
  width: 36px;
  height: 36px;
}

.wp-bell > div svg:nth-child(2) {
  position: absolute;
  width: 12px;
  height: 6px;
  top: 100%;
  left: 50%;
  margin-top: 2px;
  margin-left: -6px;
}

.wp-bell.ring > span {
  opacity: 1;
  transform: scale(1);
  transition: all 0.25s ease 0.25s;
}

.wp-bell.ring > div {
  animation: tilt 0.25s linear forwards;
}

.wp-bell.ring > div > span {
  animation: removeLines 0.05s linear forwards 0.37s;
  transform: scaleY(0.9) scaleX(1);
  transition: transform 0.07s ease 0.3s;
}

.wp-bell.ring > div > span:before,
.wp-bell.ring > div > span:after {
  animation: removeLinesP 0.05s linear forwards 0.37s;
}

.wp-bell.ring > div svg {
  fill: #0079ae;
}

.wp-bell.ring > div svg:nth-child(2) {
  animation: ballMove 0.45s linear forwards;
}

.wp-bell.ring.default > span {
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s ease;
}

.wp-bell.ring.default > div {
  animation: tiltRemove 0.25s linear forwards;
}

.wp-bell.ring.default > div svg {
  fill: #99a3ba;
}

.wp-bell.ring.default > div svg:nth-child(2) {
  animation: ballMoveRemove 0.25s linear forwards;
}

@keyframes tilt {
  0% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(40deg);
  }
  100% {
    transform: rotate(20deg);
  }
}

@keyframes tiltRemove {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes ballMove {
  0% {
    transform: translateX(0);
  }
  100%, 15% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-6px);
  }
}

@keyframes ballMoveRemove {
  0% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes removeLines {
  0% {
    width: 17px;
    transform: scaleY(0.9) scaleX(1);
  }
  100% {
    width: 0;
    transform: scaleY(0.9) scaleX(1) translateX(-17px);
  }
}

@keyframes removeLinesP {
  0% {
    width: 12px;
  }
  100% {
    width: 0;
  }
}

/*@use postcss-nested;*/

@keyframes animate-circle {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes animate-circle {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}

.wp-bell-rings {
  position: relative;
  width: var(--size);
  height: var(--size);
  right: -25px;
  bottom: -25px;
  transform: translateX(-50%) translateY(-50%);
  z-index: 999;
  --size: 10rem;
}

.wp-bell-rings > .circle {
  position: absolute;
  background: #e5f2f7;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  animation: animate-circle var(--duration) cubic-bezier(0.9, 0.24, 0.62, 0.79) infinite;
  --duration: 3s;
}

.wp-bell-rings > .circle:nth-of-type(1) {
  animation-delay: 0;
}

.wp-bell-rings > .circle:nth-of-type(2) {
  animation-delay: calc(var(--duration) / -3);
}

.wp-bell-rings > .circle:nth-of-type(3) {
  animation-delay: calc(var(--duration) / -6);
}.wp-permission-background-popup {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  font-family: Ubuntu, sans-serif;
  opacity: 1;
  visibility: visible;
  transition: visibility 0.5s, transform 0.5s ease-in-out, opacity 0.5s ease-in;
  z-index: 1001;
}

.wp-permission-close {
  position: absolute;
  top: 5rem;
  right: 5rem;
  cursor: pointer;
  padding: 30px;
  z-index: 1002;
}

.wp-permission-background-content {
  position: relative;
  width: 100%;
  max-width: 768px;
  padding: 0 1rem;
  margin: 0 auto;
}

.wp-permission-background-title {
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.wp-permission-background-text {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.3rem;
  color: #ffffff;
}

.wp-permission-background-info {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25rem;
  color: #ffffff;
  margin-top: 20px;
}

.wp-permission-background-hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3em);
}

.wp-bell-container {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 2;
}

.wp-bell-position-rb {
  right: 50px;
  bottom: 100px;
}

.wp-bell-position-rc {
  right: 50px;
  bottom: 50%;
}

.wp-bell-position-lb {
  bottom: 100px;
  left: 50px;
}

.wp-bell-position-lc {
  bottom: 50%;
  left: 50px;
}

.wp-bell-position-bc {
  right: 49%;
  bottom: 100px;
}

@media (max-width: 480px) {
  .wp-bell-position-bc {
    right: 42%;
    bottom: 100px;
  }
}
@media (min-width: 768px) {
  .wp-permission-background-title {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}
.wp-bell {
  position: absolute;
  display: table;
  right: 0;
  bottom: 0;
  cursor: pointer;
  margin: 0 auto;
  opacity: 1;
  visibility: visible;
  transition: visibility 1.5s, transform 1.5s ease-in-out, opacity 1.5s ease-in;
  z-index: 1000;
}

.wp-bell-hide {
  opacity: 0;
  visibility: hidden;
}

.wp-bell > span {
  position: absolute;
  background: #e31837;
  display: block;
  width: 20px;
  height: 20px;
  top: -2px;
  right: 5px;
  font-size: 9px;
  font-weight: bold;
  line-height: 16px;
  color: #ffffff;
  text-align: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s ease;
  z-index: 1;
}

.wp-bell > div {
  position: relative;
  margin-bottom: 9px;
  transform-origin: 50% 0;
}

.wp-bell > div > span {
  position: absolute;
  background: #0079ae;
  display: block;
  width: 17px;
  height: 4px;
  top: 90%;
  right: 110%;
  border-radius: 2px;
  transform: scaleY(0.9) scaleX(0);
  transform-origin: 100% 50%;
}

.wp-bell > div > span:before,
.wp-bell > div > span:after {
  position: absolute;
  background: #0079ae;
  display: block;
  content: "";
  width: 12px;
  height: 4px;
  left: 5px;
  border-radius: 2px;
}

.wp-bell > div > span:before {
  top: -8px;
  transform: scaleY(0.8) rotate(24deg);
}

.wp-bell > div > span:after {
  bottom: -8px;
  transform: scaleY(0.8) rotate(-24deg);
}

.wp-bell > div svg {
  display: block;
  transition: fill 0.3s ease;
  fill: #99a3ba;
}

.wp-bell > div svg:nth-child(1) {
  width: 36px;
  height: 36px;
}

.wp-bell > div svg:nth-child(2) {
  position: absolute;
  width: 12px;
  height: 6px;
  top: 100%;
  left: 50%;
  margin-top: 2px;
  margin-left: -6px;
}

.wp-bell.ring > span {
  opacity: 1;
  transform: scale(1);
  transition: all 0.25s ease 0.25s;
}

.wp-bell.ring > div {
  animation: tilt 0.25s linear forwards;
}

.wp-bell.ring > div > span {
  animation: removeLines 0.05s linear forwards 0.37s;
  transform: scaleY(0.9) scaleX(1);
  transition: transform 0.07s ease 0.3s;
}

.wp-bell.ring > div > span:before,
.wp-bell.ring > div > span:after {
  animation: removeLinesP 0.05s linear forwards 0.37s;
}

.wp-bell.ring > div svg {
  fill: #0079ae;
}

.wp-bell.ring > div svg:nth-child(2) {
  animation: ballMove 0.45s linear forwards;
}

.wp-bell.ring.default > span {
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s ease;
}

.wp-bell.ring.default > div {
  animation: tiltRemove 0.25s linear forwards;
}

.wp-bell.ring.default > div svg {
  fill: #99a3ba;
}

.wp-bell.ring.default > div svg:nth-child(2) {
  animation: ballMoveRemove 0.25s linear forwards;
}
@keyframes tilt {
  0% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(40deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
@keyframes tiltRemove {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes ballMove {
  0% {
    transform: translateX(0);
  }
  100%, 15% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-6px);
  }
}
@keyframes ballMoveRemove {
  0% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes removeLines {
  0% {
    width: 17px;
    transform: scaleY(0.9) scaleX(1);
  }
  100% {
    width: 0;
    transform: scaleY(0.9) scaleX(1) translateX(-17px);
  }
}
@keyframes removeLinesP {
  0% {
    width: 12px;
  }
  100% {
    width: 0;
  }
}
/*@use postcss-nested;*/
@keyframes animate-circle {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes animate-circle {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}
.wp-bell-rings {
  position: relative;
  width: var(--size);
  height: var(--size);
  right: -25px;
  bottom: -25px;
  transform: translateX(-50%) translateY(-50%);
  z-index: 999;
  --size: 10rem;
}

.wp-bell-rings > .circle {
  position: absolute;
  background: #e5f2f7;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  animation: animate-circle var(--duration) cubic-bezier(0.9, 0.24, 0.62, 0.79) infinite;
  --duration: 3s;
}

.wp-bell-rings > .circle:nth-of-type(1) {
  animation-delay: 0;
}

.wp-bell-rings > .circle:nth-of-type(2) {
  animation-delay: calc(var(--duration) / -3);
}

.wp-bell-rings > .circle:nth-of-type(3) {
  animation-delay: calc(var(--duration) / -6);
}.sm-notify {
  position: fixed;
  background-color: #fff;
  max-width: 400px;
  right: 30px;
  bottom: 60px;
  padding: 22px 8px 15px;
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
  font-family: Ubuntu, sans-serif;
  opacity: 1;
  visibility: visible;
  transition: visibility 0.5s, transform 0.5s ease-in-out, opacity 0.5s ease-in;
  z-index: 1001;
}
.sm-notify.with-img {
  max-width: 480px;
}
.sm-notify.sm-notify-hide {
  opacity: 0;
  transform: translateY(3em);
  visibility: hidden;
}
.sm-notify .sm-notify-close {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 5px;
  right: 5px;
  padding: 0;
  opacity: 0.4;
  cursor: pointer;
  z-index: 1002;
}
.sm-notify .sm-notify-close.sm-notify-close-over {
  width: 30%;
  height: 50%;
  padding: 0;
}
.sm-notify .sm-notify-content {
  position: relative;
  max-width: 1169px;
  width: 93.75%;
  margin: 0 auto;
}
.sm-notify .sm-notify-content .sm-notify-img-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
}
.sm-notify .sm-notify-content .sm-notify-img-wrap .sm-notify-img {
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  max-width: 360px;
  width: 100%;
  height: 180px;
  margin-bottom: 12px;
  border-radius: 8px;
}
.sm-notify .sm-notify-content .sm-notify-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #303030;
}
.sm-notify .sm-notify-content .sm-notify-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #43525a;
}
.sm-notify .sm-notify-content .sm-notify-title {
  margin-bottom: 12px;
  border-radius: 8px;
}
.sm-notify .sm-notify-content .sm-notify-accept {
  display: inline-block;
  background: 0 0;
  float: right;
  padding: 5px 10px;
  margin-left: 15px;
  margin-right: -10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.29;
  color: #0079ae;
  cursor: pointer;
  transition: all 0.3s ease-in;
  -webkit-tap-highlight-color: transparent;
}.sm-popup-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sm-popup-wrap .sm-body-blackout {
  position: absolute;
  z-index: 1010;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
}
.sm-popup-wrap .sm-body-blackout.is-blacked-out {
  display: block;
}
.sm-popup-wrap .popup-trigger {
  display: inline-block;
}
.sm-popup-wrap .sm-popup-modal {
  position: fixed;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  max-width: 650px;
  height: auto;
  top: 50%;
  left: 50%;
  padding: 26px 32px 32px;
  border-radius: 10px;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.15);
  transition: visibility 0.5s, transform 0.5s ease-in-out, opacity 0.5s ease-in;
  transform: translate(-50%, -50%);
  z-index: 1011;
}
.sm-popup-wrap .sm-popup-modal.is--visible {
  opacity: 1;
  pointer-events: auto;
}
.sm-popup-wrap .sm-popup-modal__close {
  position: absolute;
  font-size: 1.2rem;
  right: -10px;
  top: -10px;
  cursor: pointer;
}
.sm-popup-wrap .sm-popup-modal.with-img {
  max-width: 480px;
}
.sm-popup-wrap .sm-popup-modal.sm-popup-hide {
  opacity: 0;
  transform: translateY(3em);
  visibility: hidden;
}
.sm-popup-wrap .sm-popup-modal .sm-popup-close {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 10px;
  right: 10px;
  padding: 0;
  opacity: 0.4;
  cursor: pointer;
  z-index: 1002;
}
.sm-popup-wrap .sm-popup-modal .sm-popup-close.sm-notify-close-over {
  width: 30%;
  height: 50%;
  padding: 0;
}
.sm-popup-wrap .sm-popup-modal .sm-popup-header .sm-popup-title {
  font-size: 22px;
  font-weight: 500;
  color: #43525a;
  margin-bottom: 20px;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .sm-popup-wrap .sm-popup-modal .sm-popup-header .sm-popup-title {
    font-size: 18px;
  }
}
.sm-popup-wrap .sm-popup-modal .sm-popup-content {
  position: relative;
  flex-grow: 1;
  max-width: 1169px;
  width: 100%;
  margin: 0 auto;
}
.sm-popup-wrap .sm-popup-modal .sm-popup-content .sm-popup-img-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
}
.sm-popup-wrap .sm-popup-modal .sm-popup-content .sm-popup-img-wrap .sm-popup-img {
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  max-width: 360px;
  width: 100%;
  height: 180px;
  margin-bottom: 12px;
  border-radius: 8px;
}
.sm-popup-wrap .sm-popup-modal .sm-popup-content .sm-popup-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  padding: 0;
  margin: 0;
}
@media (max-width: 480px) {
  .sm-popup-wrap .sm-popup-modal .sm-popup-content .sm-popup-text {
    font-size: 15px;
    line-height: 20px;
  }
}
.sm-popup-wrap .sm-popup-modal .sm-popup-content p {
  font-size: 16px;
  line-height: 20px;
}
.sm-popup-wrap .sm-popup-modal .sm-popup-footer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: right;
  align-items: center;
  margin-top: 20px;
}
.sm-popup-wrap .sm-popup-modal .sm-popup-footer > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: right;
  align-items: center;
}
.sm-popup-wrap .sm-popup-modal .sm-popup-footer .sm-popup-accept {
  display: inline-block;
  min-height: auto;
  background: 0 0;
  padding: 5px 10px;
  margin-left: 15px;
  margin-right: -10px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.29;
  color: #0079ae;
  cursor: pointer;
  transition: all 0.3s ease-in;
  -webkit-tap-highlight-color: transparent;
}.sm-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 16px auto;
}

.sm-product-card-wrap {
  width: 45%;
  padding: 14px 12px;
  margin-bottom: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
}
.sm-product-card-wrap:nth-child(odd) {
  margin-right: 16px;
}
.sm-product-card-wrap .sm-product-card {
  display: flex;
}
@media (max-width: 425px) {
  .sm-product-card-wrap .sm-product-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.sm-product-card-wrap .sm-product-card .img {
  margin-right: 12px;
}
.sm-product-card-wrap .sm-product-card .img img {
  width: 80px;
  height: auto;
}
.sm-product-card-wrap .sm-product-card .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  line-height: 1.25;
}
.sm-product-card-wrap .sm-product-card .content .title {
  flex-grow: 1;
  font-size: 16px;
  font-weight: bold;
  color: #43525a;
  margin-bottom: 10px;
}
.sm-product-card-wrap .sm-product-card .content .quantity {
  background-color: rgba(0, 121, 174, 0.06);
  display: flex;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: 48px;
  max-width: 48px;
  height: 32px;
  border-radius: 12px;
}
@media (max-width: 425px) {
  .sm-product-card-wrap .sm-product-card .content .quantity {
    align-self: center;
  }
}
.sm-product-card-wrap .sm-product-card .content .quantity span {
  display: inline-block;
  font-size: 18px;
  color: #00537a;
}
.sm-product-card-wrap .sm-product-card .content .quantity span:before {
  display: inline-block;
  content: "x";
  font-size: 15px;
}