<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Tooltip Component Style Start*/
.tt_tooltip {
  width: 220px;
  height: auto;
  position: absolute;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  transform-origin: bottom;
  animation-name: tt_out;
  transform-origin: bottom;
}

.tt_content {
  padding: 12px;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: black;
  color: #F97678;
  border-radius: 5px;
  box-shadow: 10px 10px 7px -7px rgba(0, 0, 0, 0.75);
}

.tt_trigger {
  float: left;
}

.tt_arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid black;
}

.tt_trigger:hover + .tt_in {
  animation-name: tt_in;
  animation-timing-function: linear;
  height: auto;
}

.neck-bor {
  display: flex;
  align-items: center;
}

@keyframes tt_in {
  0% {
    transform: scale(1, 1) translateY(0);
    opacity: 0;
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
    opacity: 0.3;
  }
  30% {
    transform: scale(0.9, 1.1) translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
    opacity: 1;
  }
  57% {
    transform: scale(1, 1) translateY(0);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes tt_out {
  0% {
    transform: scale(1, 1) translateY(0);
    opacity: 1;
  }
  50% {
    transform: scale(0, 0) translateY(0);
    opacity: 0;
  }
  100% {
    transform: scale(0, 0) translateY(0);
    opacity: 0;
  }
}
/* Tooltip Component Style End*/
/* Smile One Alert Style Start */
body.smileOneAlert-popUpIsOpen {
  overflow: hidden;
}

.smile-one-add-payment-shadow-area,
.smileOneAlert-popUpShadowArea {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20;
  left: 0;
  top: 0;
}

.smileOneAlert-popUpAlert {
  border: 1px #252e3a solid;
  background-color: #252e3a;
  box-shadow: 1px 1px #1d242f;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  width: 400px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.smileOneAlert-popUpClose {
  background-color: #01956d;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  color: #fff;
  font-family: system-ui;
  font-size: 14px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smileOneAlert-popUpClose.smileOneAlert-custom-close-btn {
  background-color: unset;
  height: 20px;
  width: 20px;
}

.smileOneAlert-popUpClose:hover,
.smileOneAlert-popUpBtn:hover {
  background-color: #02aa7d;
}
.smileOneAlert-popUpClose:hover.smileOneAlert-custom-close-btn,
.smileOneAlert-popUpBtn:hover.smileOneAlert-custom-close-btn {
  background-color: unset;
}

.smileOneAlert-popUpheader {
  display: flex;
  justify-content: space-between;
}

.smileOneAlert-popUpheader &gt; span.smileOneAlert-title {
  font-family: Sans-Serif;
  font-size: 16px;
  color: #02aa7d;
  width: calc(100% - 24px);
}

.smileOneAlert-popUpbody {
  height: auto;
  overflow: hidden;
  padding: 16px 0px;
  display: flex;
  align-items: center;
  overflow: hidden;
  overflow-y: auto;
  font-family: Sans-Serif;
  font-size: 14px;
  color: #fff;
}

.alert-btns-container {
  display: flex;
  gap: 12px;
}

.smileOneAlert-popUpBtn {
  width: 100%;
  background-color: #01956d;
  padding: 8px;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 12px;
}

@media screen and (max-width: 767.9px) {
  .smileOneAlert-popUpAlert {
    width: 60%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 500px) {
  .smileOneAlert-popUpAlert {
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
/* Smile One Alert Style End */
/* Video players start */
.video-btn {
  width: 80%;
  height: 44vw;
  top: calc(50vh - 22vw);
  left: 10%;
  position: fixed;
  z-index: 15000;
  display: none;
}
@media screen and (min-width: 767px) {
  .video-btn {
    width: 60%;
    height: 30vw;
    top: calc(50vh - 15vw);
    left: 20%;
  }
}

.video-area {
  width: 100%;
  height: inherit;
  margin: 0 auto;
  background: black;
  border: 4px solid #252e3a;
  border-radius: 8px;
}

.video-shut {
  height: 24px;
  width: 24px;
  border-radius: 12.5px;
  font-size: medium;
  color: white;
  font-family: sans-serif;
  font-weight: bolder;
  background: #01956d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -18px;
  cursor: pointer;
}
.video-shut:hover {
  background-color: #02aa7d;
}

#shadow {
  position: fixed;
  opacity: 0.5;
  filter: alpha(opacity=50);
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: black;
  z-index: 100;
  display: none;
}

/* Video player end */
/* Product loading using loader13 start*/
.product-loadingContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* loadding */
@keyframes rotateWithBoost {
  0% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(180deg);
  }
  90%, 100% {
    transform: rotate(360deg);
  }
}
/*LOADER 13*/
@keyframes loader13dot1 {
  0%, 45% {
    cx: 6;
    cy: 6;
  }
  55%, 80% {
    cx: 2;
    cy: 2;
  }
  90%, 100% {
    cx: 6;
    cy: 6;
  }
}
@keyframes loader13dot2 {
  0%, 45% {
    cx: 6;
    cy: 24;
  }
  55%, 80% {
    cx: 2;
    cy: 28;
  }
  90%, 100% {
    cx: 6;
    cy: 24;
  }
}
@keyframes loader13dot3 {
  0%, 45% {
    cx: 24;
    cy: 6;
  }
  55%, 80% {
    cx: 28;
    cy: 2;
  }
  90%, 100% {
    cx: 24;
    cy: 6;
  }
}
@keyframes loader13dot4 {
  0%, 45% {
    cx: 24;
    cy: 24;
  }
  55%, 80% {
    cx: 28;
    cy: 28;
  }
  90%, 100% {
    cx: 24;
    cy: 24;
  }
}
.loader13 svg {
  overflow: visible;
  animation: 1.5s rotateWithBoost linear infinite;
}

.loader13 svg circle:first-of-type {
  animation: 1.5s loader13dot1 linear infinite;
}

.loader13 svg circle:nth-of-type(2) {
  animation: 1.5s loader13dot2 linear infinite;
}

.loader13 svg circle:nth-of-type(3) {
  animation: 1.5s loader13dot3 linear infinite;
}

.loader13 svg circle:last-of-type {
  animation: 1.5s loader13dot4 linear infinite;
}

/* Product loading using loader13 end*/
#add-payment-method-btn {
  font-family: Poppins-Regular, Arial, Helvetica, sans-serif;
  text-align: center;
  color: #507DFD;
  text-decoration: underline;
  font-size: 12px;
  cursor: pointer;
  padding: 24px 0;
}

.smile-one-add-payment-container {
  font-family: Poppins-Regular, Arial, Helvetica, sans-serif;
  margin: 8px;
  position: fixed;
  max-width: 400px;
  min-width: 260px;
  width: calc(100% - 16px);
  height: auto;
  left: calc(50% - 8px);
  top: 50%;
  transform: translate(-50%, -50%);
}

.smile-one-add-payment-container &gt; .smile-one-add-payment {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 5px;
  border: 1px #252e3a solid;
  background-color: #fff;
  box-shadow: 1px 1px #1d242f;
  padding: 24px;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .submitted {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .submitted h2 {
  text-align: center;
  color: #3B3B3B;
  font-size: 20px;
  padding: 32px 0;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .submitted .close-btn {
  border: unset;
  box-shadow: unset;
  background-color: #33AD88;
  color: #fff;
  padding: 12px 32px;
  font-size: 16px;
  align-self: center;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  transition-property: background-color filter;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .submitted .close-btn:hover {
  filter: brightness(1.1);
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container &gt; .close-area {
  color: #b8c2cb;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container &gt; .close-area &gt; span {
  height: 14px;
  width: 14px;
  display: inline-block;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("./../../image/productUI/close-btn.png");
  background-position: center;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container &gt; .close-area &gt; span:hover {
  opacity: 1;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container &gt; p {
  margin: 0;
  font-size: 12px;
  color: #3B3B3B;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container &gt; p:nth-of-type(2) {
  margin-bottom: 24px;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form {
  display: flex;
  flex-direction: column;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form label {
  display: block;
  font-size: 11px;
  color: #A0A0A0;
  margin-bottom: 12px;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .payment-name {
  border: 1px solid #D3D3D3;
  border-radius: 4px;
  height: 48px;
  margin-bottom: 18px;
  padding: 4px 8px;
  font-size: 16px;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .g-recaptcha {
  /* border: 1px solid #D3D3D3;
  border-radius: 4px;
  margin-bottom: 18px; */
  /* transform:scale(1.15); */
  /* transform-origin:0 0; */
  margin-bottom: 18px;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .g-recaptcha &gt; div {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 370px) {
  .smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .g-recaptcha {
    transform: scale(0.8);
    transform-origin: 0 0;
  }
  .smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .g-recaptcha &gt; div {
    width: 100% !important;
    display: block;
  }
}
@media screen and (max-width: 310px) {
  .smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .g-recaptcha {
    transform: scale(0.69);
  }
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .submit-btn {
  border: unset;
  box-shadow: unset;
  background-color: #33AD88;
  color: #fff;
  padding: 12px 32px;
  font-size: 16px;
  align-self: center;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  transition-property: background-color filter;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .submit-btn:hover {
  filter: brightness(1.1);
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .submit-btn:disabled {
  background-color: #ccc;
  pointer-events: none;
}
.smile-one-add-payment-container &gt; .smile-one-add-payment &gt; .form-container #add-payment-form .submit-btn:disabled:hover {
  filter: unset;
}

.smile-one-add-payment-container &gt; .error-area {
  display: flex;
  align-items: center;
  background-color: #FEE4E3;
  border: 1px solid #9F3132;
  padding: 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.smile-one-add-payment-container &gt; .error-area.hidden {
  display: none;
}
.smile-one-add-payment-container &gt; .error-area &gt; .error-img {
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("./../../image/productUI/error.png");
  background-position: center;
  margin-right: 12px;
}
.smile-one-add-payment-container &gt; .error-area &gt; .error-msg {
  padding: 0;
  margin: 0;
  color: #F14243;
  font-family: Poppins-Regular;
  font-size: 14px;
}

/* Payment success interface */
.main-container .successhome {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  min-width: 280px;
  min-height: 300px;
  height: 40vh;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

.main-container .successhome .btn-success {
  display: flex;
  gap: 12px;
}

.main-container .successhome .btnsuccess {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  gap: 12px;
  margin-bottom: 48px;
}

.main-container .successhome .btnsuccess img {
  width: 48px;
  height: 48px;
}

.main-container .successhome .btn-success a {
  background: #026e74;
  color: #fff;
  font-size: 14px;
  padding: 12px;
  display: inline-block;
  text-decoration: none;
  flex: 1;
  text-align: center;
  border-radius: 4px;
}

.main-container .successhome .btn-success a:hover {
  filter: brightness(1.1);
}

/* Toast component */
#toast-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
}

#toast-container &gt; .toast-wrapper {
  width: 100%;
  max-width: 1200px;
  min-width: 280px;
  height: 100%;
  padding: 16px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#toast-container &gt; .toast-wrapper &gt; .toast-box {
  min-width: 100px;
  min-height: 32px;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 8px;
  opacity: 1;
  transition: all ease-in-out 0.3s;
  margin: 0 10%;
  margin-bottom: 8px;
  font-family: Poppins-Regular, Arial, Helvetica, sans-serif;
  pointer-events: auto;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#toast-container &gt; .toast-wrapper &gt; .toast-box .toast-close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 16px;
  height: 16px;
  background-image: url("../../image/productUI/close-btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#toast-container &gt; .toast-wrapper &gt; .toast-box.hidden {
  opacity: 0;
}

#toast-container &gt; .toast-wrapper &gt; .toast-box:last-child {
  margin-bottom: unset;
}

/* Notification center button style start */
.notification-bell-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 19px;
  margin-left: 0px;
  margin-right: 12px;
}
@media screen and (max-width: 1024px) {
  .notification-bell-wrapper {
    margin-left: 0px;
    margin-right: 8px;
  }
}
.notification-bell-wrapper .notification-count {
  position: absolute;
  content: "4";
  width: 18px;
  height: 18px;
  background-color: #e74155;
  color: #fff;
  border-radius: 50%;
  top: calc(50% - 16px);
  right: -4px;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .notification-bell-wrapper .notification-count {
    top: -6px;
    right: -6px;
  }
}
.notification-bell-wrapper .notification-count.hidden {
  display: none;
}
.notification-bell-wrapper .notification-count img {
  height: 24px;
}

/* Notification center button style start End */
/* Common drawer start */
.drawer {
  display: none;
}

.drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: opacity;
  background-color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.drawer__header {
  /* Optional */
  background-color: #12232d;
}
.drawer__header .drawer__header__wrapper {
  font-size: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .drawer__header .drawer__header__wrapper {
    padding: 24px;
  }
}
.drawer__header .drawer__header__wrapper &gt; .drawer__logo {
  height: 32px;
}
.drawer__header .drawer__header__wrapper &gt; .drawer__logo &gt; img {
  height: 32px;
  width: auto;
}
.drawer__header .drawer__title {
  padding: 16px;
  color: #fff;
  background-color: #141b28;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .drawer__header .drawer__title {
    padding: 24px;
    padding: scaleValue(24, 768, 280px, 768px);
    font-size: 26px;
    font-size: scaleValue(26, 768, 280px, 768px);
  }
}

.drawer__close {
  /* Optional */
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url("../../image/home/close-notification-drawer.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .drawer__close {
    width: 24px;
    width: scaleValue(24, 768, 280px, 768px);
    height: 24px;
    height: scaleValue(24, 768, 280px, 768px);
  }
}
@media screen and (max-width: 500px) {
  .drawer__close {
    width: 18px;
    height: 18px;
  }
}

.drawer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  max-width: 420px;
  z-index: 9999;
  overflow: auto;
  transition: transform 0.3s;
  will-change: transform;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transform: translate3d(103%, 0, 0); /* extra 3% because of box-shadow */
  -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
  /* Optional */
  box-shadow: 0 2px 6px #777;
}
@media screen and (max-width: 768px) {
  .drawer__wrapper {
    max-width: 100%;
  }
}

.drawer__content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  /* Optional */
  padding: 24px 16px;
  padding-top: 0px;
  background-color: #141b28;
}
@media screen and (max-width: 768px) {
  .drawer__content {
    padding: scaleValue(24, 768, 280px, 768px);
    padding-top: 0px;
  }
}

.drawer--left .drawer__wrapper {
  left: 0;
  right: auto;
  transform: translate3d(-100%, 0, 0);
}

.drawer.is-active {
  display: block !important;
}

.drawer.is-visible .drawer__wrapper {
  transform: translate3d(0, 0, 0);
}

.drawer.is-visible .drawer__overlay {
  opacity: 0.5;
}

/* Common drawer End */
/* Notifications style */
#receiving-notifications-loading {
  display: flex;
  justify-content: center;
  align-items: center;
}
#receiving-notifications-loading .loading-icon {
  width: 48px;
  height: 48px;
  background-image: url("./../../image/video-guide/inline-loading.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.drawer__content .empty-notifications p {
  padding: 0;
  margin: 0;
  color: #7A94AB;
  font-weight: 600;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .drawer__content .empty-notifications p {
    font-size: 20px;
    font-size: scaleValue(20, 768, 280px, 768px);
  }
}
.drawer__content .empty-notifications button {
  background: #7A94AB;
  color: #141b28;
  font-weight: 600;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin: 8px 0 0 0;
  padding: 8px 16px;
  border-radius: 12px;
  transition: 0.3s ease-in-out filter;
  cursor: pointer;
}
.drawer__content .empty-notifications button:hover {
  filter: brightness(1.08);
}
@media screen and (max-width: 768px) {
  .drawer__content .empty-notifications button {
    font-size: 20px;
    font-size: scaleValue(20, 768, 280px, 768px);
  }
}
.drawer__content .comment-container {
  display: flex;
  margin: 0px;
  border-bottom: 1px solid #293648;
  margin-top: 16px;
  font-size: 16px;
}
.drawer__content .comment-container:first-of-type {
  margin-top: 0px;
}
.drawer__content .comment-container:last-of-type {
  border-bottom: none;
}
.drawer__content .comment-container .comment-left {
  flex: 0 0 38px;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .drawer__content .comment-container .comment-left {
    flex: 0 0 64px;
    flex: 0 0 scaleValue(64, 768, 280px, 768px);
    margin-right: 16px;
    margin-right: scaleValue(16, 768, 280px, 768px);
  }
}
.drawer__content .comment-container .comment-left &gt; .user-avatar {
  background-color: #273847;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .drawer__content .comment-container .comment-left &gt; .user-avatar {
    width: 64px;
    width: scaleValue(64, 768, 280px, 768px);
    height: 64px;
    height: scaleValue(64, 768, 280px, 768px);
  }
}
.drawer__content .comment-container .comment-right {
  flex: 1;
  max-width: calc(100% - 50px);
}
@media screen and (max-width: 768px) {
  .drawer__content .comment-container .comment-right {
    max-width: calc(100% - scaleValue(80, 768, 280px, 768px));
  }
}
.drawer__content .comment-container .comment-right .comment &gt; .author {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #7A94AB;
  font-weight: 600;
  margin: 8px 0;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-weight: 600;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .drawer__content .comment-container .comment-right .comment &gt; .author {
    font-size: 26px;
    font-size: scaleValue(26, 768, 280px, 768px);
    line-height: 26px;
    line-height: scaleValue(26, 768, 280px, 768px);
    margin: 19px 0;
    margin: scaleValue(19, 768, 280px, 768px) 0;
  }
}
.drawer__content .comment-container .comment-right .comment &gt; .author &gt; span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drawer__content .comment-container .comment-right .comment &gt; .author &gt; .author-divider {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #E6E8EB;
  display: block;
  margin: 0 6px;
}
.drawer__content .comment-container .comment-right .comment &gt; .author &gt; .author-divider.hidden {
  display: none;
}
.drawer__content .comment-container .comment-right .comment &gt; .author &gt; .author-b.hidden {
  display: none;
}
.drawer__content .comment-container .comment-right .comment &gt; .message {
  display: block !important;
  color: #E6E8EB;
  font-size: 12px;
  padding-bottom: 8px;
  overflow: hidden;
  word-break: break-word;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  border: none;
}
@media screen and (max-width: 768px) {
  .drawer__content .comment-container .comment-right .comment &gt; .message {
    font-size: 24px;
    font-size: scaleValue(24, 768, 280px, 768px);
    line-height: scaleValue(24, 768, 280px, 768px);
    height: auto;
    border: none;
  }
}
.drawer__content .comment-container .comment-right .comment &gt; .comment-action-bar {
  display: flex;
  justify-content: space-between;
  margin: 4px 0px 8px 0px;
}
.drawer__content .comment-container .comment-right .comment &gt; .comment-action-bar &gt; .comment-date {
  color: #7A94AB;
  font-size: 12px;
  font-family: Poppins, Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 768px) {
  .drawer__content .comment-container .comment-right .comment &gt; .comment-action-bar &gt; .comment-date {
    font-size: 24px;
    font-size: scaleValue(24, 768, 280px, 768px);
  }
}
.drawer__content .comment-container .comment-right .comment-replies-container {
  background-color: #202E3B;
  padding: 12px;
  border-radius: 10px;
}
@media screen and (max-width: 500px) {
  .drawer__content .comment-container .comment-right .comment-replies-container {
    padding: 8px;
  }
}
.drawer__content .comment-container .comment-right .comment-replies-container &gt; .comment-all {
  color: #E6E8EB;
  font-size: 12px;
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
}
.drawer__content .comment-container .comment-right .comment-replies-container &gt; .comment-reply &gt; .author {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #7A94AB;
  font-weight: 600;
  margin: 8px 0;
}
.drawer__content .comment-container .comment-right .comment-replies-container &gt; .comment-reply &gt; .author &gt; .author-divider {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #E6E8EB;
  display: block;
  margin: 0 6px;
}
.drawer__content .comment-container .comment-right .comment-replies-container &gt; .comment-reply &gt; .author &gt; .author-divider.hidden {
  display: none;
}
.drawer__content .comment-container .comment-right .comment-replies-container &gt; .comment-reply &gt; .author &gt; .author-b.hidden {
  display: none;
}
.drawer__content .comment-container .comment-right .comment-replies-container &gt; .comment-reply:first-child &gt; .author {
  margin-top: 0px;
}
.drawer__content .comment-container .comment-right .comment-replies-container &gt; .comment-reply &gt; .message {
  color: #E6E8EB;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Notifications style end */
/* Share panel style start */
.smileone-share-panel-shadow {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  left: 0;
  top: 0;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .smileone-share-panel-shadow {
    background: rgba(0, 0, 0, 0.8);
  }
}
.smileone-share-panel-shadow #smileone-share-panel {
  position: absolute;
  bottom: 0;
  background-color: #151515;
  width: 100%;
  padding: 32px 16px;
  box-sizing: border-box;
  box-shadow: 0px -12px 37px 6px rgba(0, 0, 0, 0.65);
  animation: slideup 0.2s linear 1;
}
@media screen and (max-width: 1024px) {
  .smileone-share-panel-shadow #smileone-share-panel {
    padding: 64px 16px;
  }
}
@keyframes slideup {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.smileone-share-panel-shadow #smileone-share-panel &gt; h2 {
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
  padding: 0;
  margin-bottom: 18px;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
}
.smileone-share-panel-shadow #smileone-share-panel .close-area {
  margin-top: -24px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.smileone-share-panel-shadow #smileone-share-panel .close-area &gt; .close-btn {
  color: #66707d;
  width: 24px;
  height: 24px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}
.smileone-share-panel-shadow #smileone-share-panel .close-area &gt; .close-btn img {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.smileone-share-panel-shadow #smileone-share-panel .share-options {
  width: 100%;
}
.smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow-x: auto;
}
.smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list li.share-option {
  margin-right: 18px;
}
@media screen and (max-width: 500px) {
  .smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list li.share-option {
    margin-right: 12px;
  }
}
.smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list &gt; li.share-option &gt; a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #202020;
  padding-right: 24px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list &gt; li.share-option &gt; a {
    padding-right: 0px;
  }
}
.smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list &gt; li.share-option &gt; a &gt; img {
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 400px) {
  .smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list &gt; li.share-option &gt; a &gt; img {
    width: 32px;
    height: 32px;
  }
}
.smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list &gt; li.share-option &gt; a &gt; p {
  color: #A5AEC8;
  text-align: center;
  margin: 16px 0;
  margin-left: 24px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list &gt; li.share-option &gt; a &gt; p {
    display: none;
  }
}
.smileone-share-panel-shadow #smileone-share-panel .share-options ul.share-options-list &gt; li.share-option.social-link &gt; a {
  padding-right: 0px;
}

/* Share panel style end */
/* Side menu style start */
.smileone-side-menu {
  position: fixed;
  height: 100vh;
  bottom: 100px;
  right: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .smileone-side-menu {
    bottom: 128px;
    align-items: end;
  }
}
.smileone-side-menu.rtl {
  right: unset;
  left: 8px;
}
.smileone-side-menu &gt; div {
  display: flex;
  border: 1px solid rgba(1, 177, 43, 0.7);
  border-radius: 8px;
  background: #071418;
  padding: 8px 12px;
  margin-bottom: 8px;
  cursor: pointer;
  pointer-events: auto;
}
.smileone-side-menu &gt; div:last-of-type {
  margin-bottom: 0px;
}
@media screen and (max-width: 1024px) {
  .smileone-side-menu &gt; div {
    padding: 0px;
    border: none;
    overflow: hidden;
    background: transparent;
    border-radius: 4px;
  }
}
.smileone-side-menu div#side-coupon-btn {
  border: none;
  background: none;
  position: relative;
}
.smileone-side-menu div#side-coupon-btn.mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .smileone-side-menu div#side-coupon-btn.mobile {
    display: flex;
  }
}
.smileone-side-menu div#side-coupon-btn a {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .smileone-side-menu div#side-coupon-btn a {
    max-width: 128px;
  }
}
@media screen and (max-width: 360px) {
  .smileone-side-menu div#side-coupon-btn a {
    max-width: 96px;
  }
}
.smileone-side-menu div#side-coupon-btn:hover img {
  filter: brightness(1.05);
  display: block !important;
}
.smileone-side-menu div#side-coupon-btn img {
  position: absolute;
  width: 130%;
  height: auto;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .smileone-side-menu div#side-coupon-btn img {
    position: unset;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.smileone-side-menu div &gt; img {
  display: none;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.smileone-side-menu div &gt; img:first-of-type {
  display: inherit;
}
@media screen and (max-width: 1024px) {
  .smileone-side-menu div &gt; img {
    width: scaleValue(124);
    height: scaleValue(124);
    min-width: 48px;
    min-height: 48px;
  }
  .smileone-side-menu div &gt; img:first-child {
    display: none;
  }
  .smileone-side-menu div &gt; img[data-hover] {
    display: none;
  }
  .smileone-side-menu div &gt; img[data-mobile] {
    display: inherit;
  }
  .smileone-side-menu div &gt; img[data-mobile-hover] {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .smileone-side-menu div &gt; img {
    min-width: 32px;
    min-height: 32px;
  }
}
.smileone-side-menu div &gt; span {
  margin-left: 8px;
  display: inline-block;
  flex: 0 0 calc(100% - 32px);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #CCCFCD;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .smileone-side-menu div &gt; span {
    display: none;
  }
}
.smileone-side-menu div:hover img {
  display: none;
}
.smileone-side-menu div:hover img[data-hover] {
  display: inherit;
}
@media screen and (max-width: 1024px) {
  .smileone-side-menu div:hover img:first-child {
    display: none;
  }
  .smileone-side-menu div:hover img[data-hover] {
    display: none;
  }
  .smileone-side-menu div:hover img[data-mobile] {
    display: none;
  }
  .smileone-side-menu div:hover img[data-mobile-hover] {
    display: inherit;
  }
}
.smileone-side-menu div:hover span {
  color: #fff;
}
.smileone-side-menu #side-share-btn {
  display: none;
}
.smileone-side-menu #side-download-btn {
  display: none;
}

/* Side menu style end */
/* notifications style start */
#notification-area .drawer__header .drawer__title {
  background-color: #0e141d;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#notification-area .drawer__content {
  position: relative;
  height: 100%;
  background-color: #0e141d;
}
#notification-area .drawer__content .notifications-loading {
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
#notification-area .drawer__content .notifications-loading .notifications-loading-icon {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#notification-area .drawer__content .notifications-loading .notifications-loading-icon .ring {
  position: absolute;
  top: 0;
  left: 0;
  animation: rotation 1s linear infinite;
}
#notification-area .drawer__content .notifications-container {
  font-size: 16px;
  width: 100%;
  height: inherit;
  font-family: Montserrat, sans-serif;
  color: #E9EAE7;
  background-color: #0e141d;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #202B3E;
}
#notification-area .drawer__content .notifications-container:last-of-type {
  border-bottom: none;
}
#notification-area .drawer__content .notifications-container &gt; * {
  box-sizing: border-box;
}
#notification-area .drawer__content .notifications-container .notifications-wrapper {
  width: 100%;
  flex: 1;
  overflow: auto;
}
#notification-area .drawer__content .notifications-container .notifications-wrapper::-webkit-scrollbar {
  width: 6px;
  background-color: #27313f;
}
#notification-area .drawer__content .notifications-container .notifications-wrapper::-webkit-scrollbar-track {
  background-color: #27313f;
}
#notification-area .drawer__content .notifications-container .notifications-wrapper::-webkit-scrollbar-thumb {
  background-color: #d0d2d5;
  border-radius: 8px;
  border: none;
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container {
  width: calc(100% - 48px);
  padding: 24px;
  display: flex;
  text-decoration: none;
  color: #E9EAE7;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container {
    width: calc(100% - scaleValue(42) * 2);
    padding: scaleValue(42);
  }
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-icon-container {
  flex: 0 0 calc(30% - 8px);
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-icon-container {
    flex: 0 0 24%;
    margin-right: scaleValue(36);
  }
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-icon-container .notification-icon-wrapper {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-icon-container .notification-icon-wrapper &gt; img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-icon-container .notification-icon-wrapper &gt; img {
    max-height: scaleValue(140);
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper {
  flex: 0 0 calc(70% - 40px);
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper {
    flex: 0 0 calc(76% - scaleValue(108));
    margin-right: scaleValue(36);
  }
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper h2 {
  font-size: 14px;
  padding: 0;
  margin: 0;
  margin-bottom: 8px;
  display: block;
  word-break: break-word;
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis; */
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper h2 {
    font-size: scaleValue(32);
    /* max-height: calc((scaleValue(32) * 1.5) * 2);
    line-height: calc((scaleValue(32) * 1.5)); */
    margin-bottom: scaleValue(36);
  }
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper p {
  font-size: 14px;
  max-width: 100%;
  display: block;
  overflow: hidden;
  word-break: break-word;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper p {
    font-size: scaleValue(32);
    word-break: break-word;
    /* max-height: calc((scaleValue(32) * 1.5) * 2);
    line-height: calc((scaleValue(32) * 1.5)); */
    margin-bottom: scaleValue(36);
  }
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper span {
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper span {
    font-size: scaleValue(28);
  }
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper span.time {
  color: #66707D;
  margin-right: 16px;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper span.time {
    margin-right: scaleValue(60);
  }
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-details-wrapper span.new {
  color: #00A15D;
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-action-wrapper {
  flex: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-action-wrapper {
    flex: 0 0 scaleValue(36);
  }
}
#notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-action-wrapper .delete-button-wrapper img {
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-wrapper &gt; .notification-container &gt; .notification-action-wrapper .delete-button-wrapper img {
    width: scaleValue(36);
    height: scaleValue(36);
  }
}
#notification-area .drawer__content .notifications-container .notifications-pagination {
  flex: 0 0 auto;
  width: 100%;
  border-top: 1px solid #202B3E;
}
#notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
#notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-prev],
#notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-next] {
  background-color: transparent;
  border: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-prev] &gt; img,
#notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-next] &gt; img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-prev] &gt; img,
  #notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-next] &gt; img {
    width: scaleValue(56);
    height: scaleValue(56);
  }
}
#notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-prev] {
  margin-right: 16px;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-prev] {
    margin-right: scaleValue(36);
  }
}
#notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-next] {
  margin-left: 16px;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-pagination .notifications-pagination-wrapper button[data-next] {
    margin-right: scaleValue(36);
  }
}
#notification-area .drawer__content .notifications-container .notifications-pagination .pages-container {
  border: 1px solid #fff;
  border-radius: 24px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-pagination .pages-container {
    height: scaleValue(56);
    border-radius: scaleValue(56);
  }
}
#notification-area .drawer__content .notifications-container .notifications-pagination .pages-container &gt; span {
  font-size: 8px;
}
#notification-area .drawer__content .notifications-container .notifications-pagination .pages-container &gt; button {
  border: none;
  background-color: transparent;
  color: #fff;
  width: 28px;
  height: 28px;
  font-size: 10px;
  padding: 0px;
  margin: 0px;
  margin-right: 4px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-pagination .pages-container &gt; button {
    width: scaleValue(56);
    height: scaleValue(56);
    margin-right: scaleValue(4);
    font-size: scaleValue(20);
  }
}
#notification-area .drawer__content .notifications-container .notifications-pagination .pages-container &gt; button:first-of-type.active {
  margin-left: -1px;
}
#notification-area .drawer__content .notifications-container .notifications-pagination .pages-container &gt; button:last-of-type {
  margin-left: 4px;
}
@media screen and (max-width: 1024px) {
  #notification-area .drawer__content .notifications-container .notifications-pagination .pages-container &gt; button:last-of-type {
    margin-left: scaleValue(12);
  }
}
#notification-area .drawer__content .notifications-container .notifications-pagination .pages-container &gt; button:last-of-type.active {
  margin-right: -1px;
}
#notification-area .drawer__content .notifications-container .notifications-pagination .pages-container &gt; button.active {
  border: none;
  background-color: #00a15d;
  color: #fff;
  border-radius: 50%;
}

.wishlist-icon-wrapper,
.notifications-icon-wrapper {
  cursor: pointer;
  width: 24px;
  height: 24px;
  align-self: center;
  margin-right: 8px;
}

.wishlist-icon-wrapper {
  display: none;
}

.wishlist-icon-wrapper img,
.notifications-icon-wrapper .notifications-icon {
  width: 24px;
  height: 24px;
}
.wishlist-icon-wrapper img[data-hover],
.notifications-icon-wrapper .notifications-icon[data-hover] {
  display: none;
}

.notifications-icon-wrapper:hover img {
  display: none;
}
.notifications-icon-wrapper:hover img[data-hover] {
  display: inherit;
}

/* highlighed notifications style start*/
.highlighted-notification {
  position: absolute;
  top: 34px;
  left: 0px;
  width: 240px;
  height: 72px;
  background: #e8eff9;
  border-radius: 2px;
  border: 1px solid #98b1d9;
  padding: 12px;
}
.highlighted-notification .highlighted-notification-wrapper {
  display: flex;
  width: 100%;
  position: relative;
}
.highlighted-notification .highlighted-notification-wrapper .highlighted-notification-close {
  position: absolute;
  top: -6px;
  right: -6px;
  cursor: pointer;
}
.highlighted-notification .highlighted-notification-wrapper .highlighted-notification-icon {
  width: 48px;
  height: 48px;
  margin-right: 12px;
}
.highlighted-notification .highlighted-notification-wrapper .highlighted-notification-detail {
  flex: auto;
  overflow: hidden;
}
.highlighted-notification .highlighted-notification-wrapper .highlighted-notification-detail h1 {
  font-family: sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 4px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #485771;
  opacity: 0.9;
}
.highlighted-notification .highlighted-notification-wrapper .highlighted-notification-detail p {
  font-family: sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #485771;
  opacity: 0.9;
}

.highlighted-notification::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 100%;
  left: 6px;
  border: 8px solid transparent;
  border-top: none;
  border-bottom-color: #e8eff9;
  filter: drop-shadow(0px -1px 0px rgb(152, 177, 217));
}

/* highlighed notifications style end */
/* notifications style end */
/* Common pagination style */
.common-pagination {
  flex: 0 0 auto;
  width: 100%;
  border-top: 1px solid #202B3E;
}
.common-pagination .common-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.common-pagination .common-pagination-wrapper button[data-prev],
.common-pagination .common-pagination-wrapper button[data-next] {
  background-color: transparent;
  border: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.common-pagination .common-pagination-wrapper button[data-prev] &gt; img,
.common-pagination .common-pagination-wrapper button[data-next] &gt; img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .common-pagination .common-pagination-wrapper button[data-prev] &gt; img,
  .common-pagination .common-pagination-wrapper button[data-next] &gt; img {
    width: scaleValue(56);
    height: scaleValue(56);
  }
}
.common-pagination .common-pagination-wrapper button[data-prev] {
  margin-right: 16px;
}
@media screen and (max-width: 1024px) {
  .common-pagination .common-pagination-wrapper button[data-prev] {
    margin-right: scaleValue(36);
  }
}
.common-pagination .common-pagination-wrapper button[data-next] {
  margin-left: 16px;
}
@media screen and (max-width: 1024px) {
  .common-pagination .common-pagination-wrapper button[data-next] {
    margin-right: scaleValue(36);
  }
}
.common-pagination .pages-container {
  border: 1px solid #fff;
  border-radius: 24px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .common-pagination .pages-container {
    height: scaleValue(56);
    border-radius: scaleValue(56);
  }
}
.common-pagination .pages-container &gt; span {
  font-size: 8px;
}
.common-pagination .pages-container &gt; button {
  border: none;
  background-color: transparent;
  color: #fff;
  width: 28px;
  height: 28px;
  font-size: 10px;
  padding: 0px;
  margin: 0px;
  margin-right: 4px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .common-pagination .pages-container &gt; button {
    width: scaleValue(56);
    height: scaleValue(56);
    margin-right: scaleValue(4);
    font-size: scaleValue(20);
  }
}
.common-pagination .pages-container &gt; button:first-of-type.active {
  margin-left: -1px;
}
.common-pagination .pages-container &gt; button:last-of-type {
  margin-left: 4px;
}
@media screen and (max-width: 1024px) {
  .common-pagination .pages-container &gt; button:last-of-type {
    margin-left: scaleValue(12);
  }
}
.common-pagination .pages-container &gt; button:last-of-type.active {
  margin-right: -1px;
}
.common-pagination .pages-container &gt; button.active {
  border: none;
  background-color: #00a15d;
  color: #fff;
  border-radius: 50%;
}

/* pagination style */
/* Payment methods suggestion start*/
.smile-pms-container {
  width: 100%;
  margin-bottom: 66px;
}
@media screen and (max-width: 767.9px) {
  .smile-pms-container {
    margin: 24px 8px;
    width: calc(100% - 16px);
  }
}
.smile-pms-container .smile-pms-textarea-wrappper {
  border: 1px solid #1F2732;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  background-color: #0f1522;
  padding: 16px 20px;
}
.smile-pms-container .smile-pms-textarea-wrappper textarea {
  color: #fff;
  outline: none;
  border: none;
  caret-color: #00835f;
  font-size: 16px;
  background-color: transparent;
  margin-bottom: 16px;
  font-family: Poppins, Arial, Helvetica, sans-serif;
}
.smile-pms-container .smile-pms-textarea-wrappper textarea::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #717579;
  opacity: 1; /* Firefox */
}
.smile-pms-container .smile-pms-textarea-wrappper textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #717579;
  opacity: 1; /* Firefox */
}
.smile-pms-container .smile-pms-textarea-wrappper textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #717579;
}
.smile-pms-container .smile-pms-textarea-wrappper textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: #717579;
}
.smile-pms-container .smile-pms-textarea-wrappper .smile-pms-submit-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.smile-pms-container .smile-pms-textarea-wrappper .smile-pms-submit-wrapper button {
  display: flex;
  background-color: #00835f;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.smile-pms-container .smile-pms-textarea-wrappper .smile-pms-submit-wrapper button img {
  margin-right: 8px;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* Payment methods suggestion end */
/* Size updates in smileone popup start */
.smileone-popup-wrapper {
  max-width: 80%;
  min-width: 220px;
  max-height: 90%;
  overflow: auto;
}

.smileone-popup-wrapper.sm {
  width: 400px;
}

.smileone-popup-wrapper.md {
  width: 540px;
}

.smileone-popup-wrapper.lg {
  width: 640px;
}

.smileone-popup-wrapper.xl {
  width: 1024px;
}

/* Size updates in smileone popup end *//*# sourceMappingURL=smileOneComponents.css.map */</pre></body></html>