html {
  box-sizing: border-box;
}
*,
:before,
:after {
  box-sizing: inherit;
}
* {
  margin: 0;
  padding: 0;
}
html {
  text-rendering: optimizespeed;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 100%;
  line-height: 1.2;
}
body {
  min-height: 100dvh;
}
ul,
ol {
  list-style: none;
}
img,
picture,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}
svg:not(:root) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
button,
input,
textarea,
select {
  font: inherit;
  background-color: #0000;
  border: none;
  border-radius: 0;
  outline: none;
}
input,
textarea {
  font-size: 14px;
}
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
::placeholder {
  color: #96979f;
  font-size: 14px;
  transition: opacity 0.2s;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
@font-face {
  font-family: roboto;
  font-weight: 300;
  font-display: swap;
  src: url(../../media/includes/fonts/roboto-light.woff2) format("woff2");
}
@font-face {
  font-family: roboto;
  font-weight: 400;
  font-display: swap;
  src: url(../../media/includes/fonts/roboto-regular.woff2) format("woff2");
}
@font-face {
  font-family: roboto;
  font-weight: 500;
  font-display: swap;
  src: url(../../media/includes/fonts/roboto-medium.woff2) format("woff2");
}
@font-face {
  font-family: roboto;
  font-weight: 700;
  font-display: swap;
  src: url(../../media/includes/fonts/roboto-bold.woff2) format("woff2");
}
@font-face {
  font-family: roboto-fallback;
  src: local(Arial);
  ascent-override: 92.77%;
  descent-override: 24.41%;
  line-gap-override: 0%;
}
:root {
  --top-bar-height: 34px;
  --top-bar-border-width: 3px;
  --header-mob-height: 70px;
  --header-desk-height: 210px;
  --container-width: 1158px;
  --category-border-opacity: 0.5;
}
body {
  background-color: #555555;
  flex-direction: column;
  width: 100%;
  font-family: roboto, sans-serif;
  display: flex;
}
@media (min-width: 992px) {
  body:before {
    content: "";
    z-index: -1;
    background-image: url(../../media/includes/images/patterns/pattern-light.png);
    background-position: 0 100%;
    background-repeat: repeat;
    background-size: 600px 549px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}
body.fixed {
  position: fixed;
  overflow: hidden;
}
.main {
  flex-grow: 1;
  position: relative;
}
.footer {
  margin-top: auto;
}
.rtl-text * {
  text-align: right;
}
.rtl-text .view-post .post-content blockquote {
  padding: 0 15px 0 0;
}
.rtl-text .view-post .post-content blockquote:before {
  left: initial;
  right: 0;
}
.rtl-text .breadcrumb {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .rtl-text .breadcrumb {
    justify-content: flex-start;
  }
}
.rtl-text .breadcrumb li.link-home a {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.rtl-text .breadcrumb li.link-category a:after,
.rtl-text .breadcrumb li.link-home a:before {
  left: initial;
  right: 0;
}
.rtl-text .link-header h1 {
  flex-direction: row-reverse;
  display: flex;
}
.rtl-text .breadcrumb li.link-category a {
  flex-direction: row-reverse;
}
.rtl-text .breadcrumb li.link-category:not(:first-child) a {
  padding-left: 6px;
  padding-right: 4px;
}
.rtl-text .breadcrumb li {
  flex-direction: row-reverse;
}
.rtl-text .breadcrumb li + li:before {
  transform: rotate(180deg);
}
.rtl-text .url_short_desc {
  text-align: right;
}
.rtl-text .bottom-block .title {
  padding: 17px 49px 17px 17px;
}
.rtl-text .bottom-block .title a {
  text-align: right;
}
.rtl-text .bottom-block .title a:before {
  left: initial;
  right: 10px;
}
.rtl-text .link-details .title-holder {
  flex-direction: row-reverse;
}
.rtl-text .link-details .link-title h1,
.rtl-text .link-details .link-title h2 {
  margin: 0 0 0 15px;
}
.rtl-text .link-details .link-title h3 {
  text-align: right;
}
.rtl-text .link-details .link-title h3 a {
  flex-direction: row-reverse;
  display: inline-flex;
}
.rtl-text .link-details .link-title h3 a .link-icon-base:before {
  margin: 0 0 0 4px;
}
.rtl-text .icon-site-list-row {
  justify-content: flex-end;
}
.container {
  max-width: var(--container-width);
  width: 100%;
  margin-inline: auto;
}
.v-scroll:before,
.v-scroll:after,
.h-scroll:before,
.h-scroll:after {
  content: "";
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
}
.v-scroll:before,
.v-scroll:after {
  width: 100%;
  height: 40px;
  left: 0;
  right: 0;
}
.v-scroll:before {
  background: linear-gradient(#fff, #ffffff80, #fff0);
  top: 0;
}
.v-scroll:after {
  background: linear-gradient(#fff0, #ffffff80, #fff);
  bottom: 0;
}
.h-scroll:before,
.h-scroll:after {
  width: 40px;
  height: 100%;
  top: 0;
  bottom: 0;
}
.h-scroll:before {
  background: linear-gradient(90deg, #fff, #ffffff80, #fff0);
  left: 0;
}
.h-scroll:after {
  background: linear-gradient(270deg, #fff, #ffffff80, #fff0);
  right: 0;
}
.top-shadow:before,
.left-shadow:before,
.bottom-shadow:after,
.right-shadow:after {
  opacity: 1;
}
@supports not selector(::-webkit-scrollbar) {
  .custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #96979f;
  }
}
.custom-scrollbar::-webkit-scrollbar-track {
  width: 10px;
  height: 10px;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #96979f;
  border-radius: 2px;
  width: 4px;
}
.no-scrollbar {
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.icon-regular,
.icon-solid,
.icon-multi,
.icon-mascot {
  flex-shrink: 0;
  display: inline-flex;
}
.icon-regular,
.icon-solid {
  width: 20px;
  height: 20px;
}
.icon-multi,
.icon-mascot {
  width: 32px;
  height: 32px;
}
.icon-flag {
  vertical-align: middle;
  display: inline-block;
}
.icon-flag:before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 12px;
  display: inline-flex;
}
.icon-category {
  vertical-align: middle;
  background-image: url(../../media/includes/images/breadcrumb-chevron.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-block;
}
.icon-category.lazyload {
  background-image: none;
}
.icon-site {
  vertical-align: middle;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
}
.icon-site:before {
  content: "";
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
}
.inline-icon {
  background-repeat: no-repeat;
}
.icon-site-list {
  color: #96979f;
  font-size: 14px;
}
.icon-site-list-row {
  align-items: center;
  gap: 4px;
  display: flex;
}
.icon-site-list-row .icon-site {
  display: inline-flex;
}
.icon-site-list-row .icon-category {
  width: 16px;
  height: 16px;
}
.icon-site-list-column {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.icon-site-list-amount {
  flex-shrink: 0;
  line-height: 1;
}
.badge {
  --_size: 22px;
  height: var(--_size);
  min-width: var(--_size);
  border-radius: var(--_size);
  color: #fff;
  background-color: #000;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}
.badge-error {
  background-color: #ff3e01;
}
.burger {
  flex-shrink: 0;
  justify-content: center;
  align-items: flex-start;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
}
.burger-bar,
.burger-bar:before,
.burger-bar:after {
  background-color: #fff;
  border-radius: 4px;
  width: 100%;
  height: 4px;
  transition: transform 0.2s;
  position: absolute;
}
.burger-bar:before,
.burger-bar:after {
  content: "";
  display: block;
}
.burger-bar:before {
  transition:
    transform 0.2s,
    opacity 0.2s;
  top: 12px;
}
.burger-bar:after {
  top: 24px;
}
.burger-active .burger-bar {
  width: 40px;
  transform: translateY(12px) rotate(45deg);
}
.burger-active .burger-bar:before {
  opacity: 0;
  transform: rotate(-45deg) translate(-5.71429px, -8px);
}
.burger-active .burger-bar:after {
  width: 40px;
  transform: translateY(-24px) rotate(-90deg);
}
.lang-menu {
  z-index: 103;
  align-items: center;
  display: flex;
  position: relative;
}
.lang-menu .lang-menu-btn {
  display: flex;
}
.lang-menu-btn:before,
.lang-menu-link:before {
  margin-right: 4px;
}
.lang-menu-btn {
  flex-shrink: 0;
  align-items: center;
  width: 32px;
  display: flex;
}
.lang-menu-btn:after {
  content: "";
  background: url(../../media/includes/images/icons/others/icon-angle-down.svg) 0
    0 / contain no-repeat;
  width: 9px;
  height: 5px;
  transition: transform 0.2s;
}
.lang-menu-drop {
  display: none;
}
.socials {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}
.socials .hover-block {
  z-index: 2;
  white-space: nowrap;
  color: #767676;
  background-color: #fdfdfd;
  border: 3px solid #bababa;
  border-radius: 11px;
  padding: 6px 10px;
  line-height: 1;
  animation: 0.2s fadeEffect;
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -10px);
}
.socials .hover-block:after {
  content: "";
  background-color: #fdfdfd;
  border-top: 0 solid #0000;
  border-bottom: 3px solid #bababa;
  border-left: 3px solid #bababa;
  border-right: 0 solid #0000;
  width: 12px;
  height: 12px;
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -4px) rotate(-45deg);
}
.socials-item {
  position: relative;
}
.socials-item-extension .socials-link:before {
  content: "";
  transform-origin: 50%;
  background-image: url(../../media/includes/images/mascots/mascot-head-discount.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  position: absolute;
}
.socials-link {
  text-align: center;
  text-indent: 0;
  text-transform: uppercase;
  vertical-align: middle;
  letter-spacing: -0.55px;
  color: #4e4e4e;
  background-color: #fdfdfd;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 3px solid #bababa;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 2px;
  font-size: 11px;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background-color 0.2s,
    color 0.2s;
  display: inline-flex;
}
.socials-link.lazyload {
  background-image: none;
}
@media (min-width: 992px) {
  .socials-link:hover {
    transform: rotate(10deg);
  }
  .socials-link:hover + .hover-block {
    display: block;
  }
}
.email-link {
  background-image: url(../../media/includes/images/icons/others/icon-envelop.svg);
}
.twitter-link {
  background-image: url(../../media/includes/images/icons/others/icon-twitter.svg);
}
.blog-link {
  position: relative;
}
.blog-link:before {
  content: "";
  background-color: #f10e0e;
  border-radius: 4px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 0;
}
.shop-link {
  padding: 10px 2px 0;
}
@media (min-width: 992px) {
  .shop-link {
    will-change: transform;
  }
}
.shop-link:before {
  content: "";
  background-image: url(../../media/includes/images/icons/others/icon-shop.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 28px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  transform: translateY(-14px);
}
.shop-link.lazyload:before {
  background-image: none;
}
.theme-link {
  background-color: #2a2b31;
  background-image: url(../../media/includes/images/icons/others/w-icon-moon.svg);
  border: none;
}
.quotes {
  --_border-gradient: linear-gradient(to bottom, #fde049, #ff9701);
  --_bg-clr: #f9feff;
  --_txt-clr: #454545;
  width: 100%;
  max-width: 410px;
  min-height: 90px;
  color: var(--_txt-clr);
  padding-right: 14px;
  font-size: 12px;
  line-height: 1.325;
  display: none;
}
@media (min-width: 992px) {
  .quotes {
    display: block;
  }
}
.quotes-inner {
  background:
    linear-gradient(var(--_bg-clr), var(--_bg-clr)) padding-box,
    var(--_border-gradient) border-box;
  border: 3px solid #0000;
  border-radius: 10px;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 10px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 4px #00000040;
}
.quotes-headline {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.quotes-icon {
  background-image: url(../../media/includes/images/icons/icon-multi-bell-ext.svg);
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  width: 26px;
  height: 30px;
  transform: translateY(4px);
}
.quotes-title {
  font-size: 14px;
  font-weight: 500;
}
.quotes-drawer-opener {
  color: #fba400;
  font-weight: 500;
}
.quotes-link {
  color: #ff9701;
  font-weight: 500;
}
.quotes-count {
  z-index: 1;
  color: #fff;
  background-color: #fba400;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 12px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(6px, -6px);
}
.quotes-arrow {
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  background: linear-gradient(#fde049 0%, #ff9701 100%);
  width: 16px;
  height: 14px;
  position: absolute;
  top: 20%;
  left: 100%;
}
.quotes-arrow:before {
  content: "";
  background-color: var(--_bg-clr);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  width: 9px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.header-date {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  max-width: 250px;
  padding-right: 10px;
  font-size: 12px;
  display: none;
  overflow: hidden;
}
@media (min-width: 992px) {
  .header-date {
    display: block;
  }
}
.category-menu {
  position: relative;
}
.category-menu-inner {
  backface-visibility: hidden;
  height: 100%;
  overflow-y: auto;
}
.category-list {
  flex-wrap: wrap;
  display: flex;
  position: relative;
}
.category-list:after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.category-list-item {
  border-bottom: 1px solid #e5e5e5;
  flex: 250px;
  position: relative;
}
.category-list-item.visited .category-list-link:before {
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: rgb(var(--category-rgb, 118, 118, 118));
  background-color: #0000;
  border-radius: 0;
  width: 12px;
  height: 7px;
  transform: translateY(-50%) rotate(-45deg);
  box-shadow: none !important;
}
.category-list-link {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 10px;
  padding: 10px 10px 10px 24px;
  display: grid;
  position: relative;
}
.category-list-link:before {
  --animation-rgb-value: var(--category-rgb);
  content: "";
  background-color: rgb(var(--category-rgb, 118, 118, 118));
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .category-list-link:hover:before {
    animation: 1s infinite pulse;
  }
}
.category-list-link:after {
  content: "";
  background-color: #e5e5e5;
  width: 1px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
}
.category-list-link .icon-category {
  grid-area: 1/1 / span 2;
}
.category-list-link .icon-site-list {
  grid-column: 2;
}
.category-list-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #4e4e4e;
  grid-column: 2;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
}
.top-bar {
  color: #fff;
  font-size: 0;
}
@media (min-width: 992px) {
  .top-bar {
    height: var(--top-bar-height);
    border-bottom: var(--top-bar-border-width) solid #c5c5c5;
    color: #4e4e4e;
    background-color: #fdfdfd;
    padding: 0;
    font-size: 16px;
    display: flex;
  }
}
.top-bar .hometitle {
  text-align: center;
  text-overflow: ellipsis;
  width: 100%;
  padding: 6px 16px 16px;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  overflow: hidden;
}
@media (min-width: 480px) {
  .top-bar .hometitle {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .top-bar .hometitle {
    width: auto;
    padding: 0;
    overflow: visible;
  }
}
.top-bar b {
  font-weight: 400;
}
.top-bar .lang-menu {
  height: 100%;
  display: none;
}
@media (min-width: 992px) {
  .top-bar .lang-menu {
    display: flex;
  }
}
.top-bar-container {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  position: relative;
}
@media (min-width: 992px) {
  .top-bar-container {
    justify-content: space-between;
  }
}
.top-bar-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.search-opener {
  flex-shrink: 0;
  display: flex;
}
.search-opener-icon {
  fill: #fff;
}
.search-form {
  z-index: 100;
  width: 100%;
  height: var(--header-mob-height);
  background-color: #f3f5fa;
  border-bottom: 1px solid #ededed;
  padding: 0;
  animation: 0.2s fadeEffect;
  display: none;
  position: fixed;
  top: 0;
  bottom: auto;
}
@media (min-width: 992px) {
  .search-form {
    background-color: #0000;
    border: none;
    height: 40px;
    animation: none;
    display: block;
    position: relative;
  }
}
.search-form--open {
  display: block;
}
@media (min-width: 992px) {
  .search-form--has-val .search-input {
    background-position: 15px;
    padding-left: 40px;
  }
  .search-form--has-val .search-close {
    display: block;
  }
}
.search-input {
  color: #96979f;
  background: #fdfdfd
    url(../../media/includes/images/icons/others/icon-search.svg) 14px/20px 20px
    no-repeat;
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  padding-inline: 40px 60px;
}
@media (min-width: 992px) {
  .search-input {
    background-position: calc(100% - 10px);
    border: 3px solid #bababa;
    border-radius: 10px;
    padding-inline: 20px 50px;
  }
}
.search-close {
  z-index: 2;
  color: #000;
  cursor: pointer;
  background: url(../../media/includes/images/icons/others/icon-close.svg)
    50%/20px no-repeat;
  width: 60px;
  height: 100%;
  animation: 0.2s fadeEffect;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media (min-width: 992px) {
  .search-close {
    width: 50px;
    display: none;
  }
}
.search-view {
  display: none;
}
.header {
  padding-top: var(--header-mob-height);
  position: relative;
}
@media (min-width: 992px) {
  .header {
    min-height: var(--header-desk-height);
    flex-direction: column;
    padding-top: 0;
    display: flex;
  }
}
.header-mob {
  z-index: 20;
  height: var(--header-mob-height);
  background-color: #555555;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 992px) {
  .header-mob {
    display: none;
  }
}
.header-mob-logo {
  height: 100%;
  display: flex;
}
@media (min-width: 992px) {
  .header-desk {
    flex-grow: 1;
    justify-content: space-between;
    padding: 10px 0 20px;
    display: flex;
  }
}
.header-desk .socials {
  display: none;
}
@media (min-width: 992px) {
  .header-desk .socials {
    display: flex;
  }
  .header .socials-link:hover {
    color: #fff;
    background-color: #ff9701;
    border-color: #0000;
  }
  .header .email-link:hover {
    background-image: url(../../media/includes/images/icons/others/w-icon-envelop.svg);
  }
  .header .twitter-link:hover {
    background-image: url(../../media/includes/images/icons/others/w-icon-twitter.svg);
  }
  .header .theme-link:hover {
    background-image: url(../../media/includes/images/icons/others/w-icon-moon.svg);
  }
}
.header-col {
  flex-direction: column;
  display: flex;
}
.header-col-lead {
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  max-width: 460px;
  margin-right: 20px;
}
.header-col-main {
  flex-grow: 1;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 16px;
}
.header-logo-main {
  width: 100%;
  max-width: 440px;
  padding-bottom: 15%;
  display: none;
  position: relative;
}
@media (min-width: 992px) {
  .header-logo-main {
    display: block;
  }
}
.header-logo-main-img {
  position: absolute;
  inset: 0;
}
.header-logo-mascot-half,
.header-logo-maskot-half {
  width: 260px;
  height: 100%;
  display: none;
  position: relative;
}
@media (min-width: 992px) {
  .header-logo-mascot-half,
  .header-logo-maskot-half {
    display: block;
  }
}
.header-logo-mascot-half-img,
.header-logo-maskot-half-img {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(40px);
}
.mob-menu {
  display: none;
}
@media (max-width: 991px) {
  .homepage .scrollspy-btn-fixed {
    display: flex;
    right: 4px;
    transform: translateY(-50%);
  }
}
.scrollspy-btn {
  --pi2: 6.28;
  --r: 20px;
  --cx: 22px;
  --cy: 22px;
  --width: 44px;
  --heigth: 44px;
  --circ: calc(var(--pi2) * var(--r));
  --offset: calc(var(--circ) - (var(--circ) * var(--percent, 0)));
  z-index: 1;
  cursor: pointer;
  transition:
    transform 0.2s,
    opacity 0.5s,
    visibility 0.5s;
  display: flex;
  position: relative;
}
.scrollspy-btn:after {
  content: "";
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition:
    opacity 0.5s,
    visibility 0.5s,
    box-shadow 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 6px 12px #ff9701;
}
.scrollspy-btn:active:after {
  opacity: 1;
  visibility: visible;
  transition: all;
  box-shadow: 0 0 #ff9701;
}
.scrollspy-btn-fixed {
  top: 50%;
  right: calc((100vw - var(--container-width)) / 4);
  z-index: 90;
  position: fixed;
  transform: translate(50%, -50%);
}
@media (max-width: 1279px) {
  .scrollspy-btn-fixed {
    display: none;
  }
}
.scrollspy-btn-to-top .scrollspy-btn-arrow {
  transform: translate(-50%, -50%) rotate(180deg);
}
.scrollspy-btn-circles {
  transform: rotate(-90deg);
}
.scrollspy-btn circle {
  fill: #ff9701;
}
.scrollspy-btn-circle {
  stroke: #b85a1b;
}
.scrollspy-btn-progress-bar {
  stroke: #fdfdfd;
  stroke-dasharray: var(--circ);
  stroke-dashoffset: var(--offset);
  transition:
    stroke-dashoffset 0.2s,
    opacity 0.2s,
    visibility 0.2s;
}
.scrollspy-btn-arrow {
  fill: #fdfdfd;
  width: 14px;
  height: 22px;
  transition: transform 0.2s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.categories-grid {
  z-index: 1;
  opacity: 0;
  will-change: opacity;
  flex-direction: column;
  gap: 8px;
  padding: 0 54px;
  display: flex;
  position: relative;
}
@media (min-width: 992px) {
  .categories-grid {
    opacity: 1;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1px;
    grid-auto-flow: dense;
    gap: 10px 8px;
    padding: 0;
    display: grid;
  }
}
[data-column="1"] {
  grid-column: 1/1;
}
[data-column="2"] {
  grid-column: 2/2;
}
[data-column="3"] {
  grid-column: 3/3;
}
[data-column="4"] {
  grid-column: 4/4;
}
.category-container {
  border: 3px solid
    rgba(
      var(--category-rgb, 238, 238, 238),
      var(--category-border-opacity, 0.5)
    );
  background-color: #fdfdfd;
  border-radius: 10px;
  grid-template-rows: 50px 1fr;
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: 45px;
  display: grid;
  position: relative;
}
.category-container:before {
  top: 48px;
}
.category-container:after {
  bottom: 45px;
}
.category-container ul {
  counter-reset: number;
  flex-wrap: wrap;
  width: 100%;
  display: none;
}
@media (min-width: 992px) {
  .category-container ul {
    will-change: opacity;
    animation: 0.2s fadeEffect;
  }
}
.category-container.visible ul,
.category-container.visible .category-bottom {
  display: flex;
}
.category-container:hover .category-bottom .svg-icon {
  color: #fff;
}
@media (min-width: 992px) {
  .category-container:hover .category-header:after {
    width: calc(100% - 25px);
  }
}
.category-container .category-header {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding: 1px 5px;
  position: relative;
}
.category-container .category-header .desc {
  display: none;
}
.category-container .category-header:before {
  content: "";
  z-index: 5;
  background-color: #e5e5e5;
  border-radius: 2px;
  width: calc(100% - 25px);
  height: 3px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.category-container .category-header:after {
  content: "";
  z-index: 5;
  background-color: rgb(var(--category-rgb, 118, 118, 118));
  border-radius: 2px;
  width: 55px;
  height: 3px;
  transition: width 0.3s;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.category-container .category-header h2,
.category-container .category-header h3 {
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 47px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 47px;
  display: flex;
  position: relative;
}
.category-container .category-header h2 a,
.category-container .category-header h3 a {
  color: #4e4e4e;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: calc(100% - 50px);
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
}
@media (min-width: 992px) {
  .category-container .category-header h2 a,
  .category-container .category-header h3 a {
    font-size: 15px;
  }
  .category-container .category-header h2 a:hover,
  .category-container .category-header h3 a:hover {
    color: #ff9701;
    text-decoration: none;
  }
}
.category-container .category-header .icon-category {
  width: 30px;
  height: 30px;
}
.category-container .category-wrapper {
  color: #9f9f9f;
  backface-visibility: hidden;
  margin-right: 5px;
  padding-top: 9px;
  position: relative;
  overflow-y: auto;
}
.category-container .category-text-block {
  text-align: center;
  color: #4b4c4f;
  width: 100%;
  margin: auto;
  padding: 0 5px 3px;
  font-size: 12px;
  line-height: 1.3em;
}
.category-container-group {
  --category-border-opacity: 1;
  --category-rgb: 255, 140, 4;
  background-color: #f7f8fc;
}
.category-container-group.v-scroll:before {
  background: linear-gradient(#f7f8fc, #f7f8fc80, #f7f8fc00);
}
.category-container-group.v-scroll:after {
  background: linear-gradient(#f7f8fc00, #f7f8fc80, #f7f8fc);
}
.category-container-group .category-text-block {
  padding: 0 5px 10px;
}
.category-container-group .category-filter {
  margin-bottom: 10px;
}
.category-filter {
  width: 100%;
  height: 30px;
  padding: 0 12px;
}
.category-filter-input {
  color: #8b8c95;
  background-color: #fff;
  border: 2px solid #b7b7b7;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  font-size: 12px;
  display: block;
}
.category-link {
  vertical-align: middle;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
  display: inline-block;
  overflow: hidden;
}
.category-link .icon-category {
  width: 16px;
  height: 16px;
}
.category-container .category-after-block {
  text-align: center;
  padding: 0 0 10px;
  font-size: 11px;
}
.category-container .category-after-block .text {
  color: #cc6969;
}
.category-container .category-after-block .link {
  color: #428bca;
  z-index: 5;
  text-decoration: underline;
  position: relative;
}
.category-container .category-after-button {
  text-align: center;
  padding: 0;
  font-size: 11px;
}
.category-container .category-after-button .site-link {
  z-index: 5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000;
  border: 1px solid #fec36f;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: calc(100% - 20px);
  height: 30px;
  margin: 5px 0;
  padding: 4px 6px;
  font-weight: 400;
  line-height: 20px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.category-container .category-item {
  align-items: center;
  width: 100%;
  height: 24px;
  padding-left: 5px;
  font-size: 14px;
  display: flex;
  position: relative;
}
@media (min-width: 992px) {
  .category-container .category-item {
    padding-inline: 15px 35px;
    transition: background-color 0.2s;
  }
}
.category-container .category-item:before {
  counter-increment: number;
  content: counter(number) ".";
  vertical-align: top;
  text-align: right;
  color: #4b4c4f;
  width: 20px;
  margin: 3px 3px 0 0;
  font-size: 11px;
  font-weight: 300;
  line-height: 18px;
  display: inline-block;
}
.category-container .icon-site {
  color: #000;
}
.category-container .icon-site:before {
  margin-right: 4px;
  transform: translateY(2px);
}
.category-container .icon-flag,
.category-container .icon_vr_friendly,
.category-container .icon_position_changed,
.category-container .has_sale,
.category-container .ai-friendly-icon,
.category-container .is-fake-icon,
.category-container .is-18-friendly-icon {
  margin-left: 2px;
}
.category-container .icon-flag {
  display: flex;
}
.category-container .has_sale {
  transform: translateY(-2px);
}
.category-container .desc {
  display: none;
}
.category-container .review,
.category-container .review_force {
  background: url(../../media/includes/images/icons/others/icon-search.svg) 50% /
    contain no-repeat;
  width: 18px;
  height: 18px;
  display: none;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) scale(0.889);
}
.category-container .review {
  animation: 0.2s fadeEffect;
}
.category-container .review_force {
  opacity: 0.3;
  transition: opacity 0.3s;
  display: block;
}
@media screen and (min-width: 1025px),
  only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 1367px) and (orientation: landscape),
  only screen and (min--moz-device-pixel-ratio: 2) and (min-width: 1367px) and (orientation: landscape),
  only screen and (-o-min-device-pixel-ratio: 2) and (min-width: 1367px) and (orientation: landscape),
  only screen and (min-device-pixel-ratio: 2) and (min-width: 1367px) and (orientation: landscape),
  only screen and (min-resolution: 192dpi) and (min-width: 1367px) and (orientation: landscape),
  only screen and (min-resolution: 2x) and (min-width: 1367px) and (orientation: landscape) {
  .category-container .category-item:hover {
    background-color: #f2f3f6;
  }
  .category-container .category-item:hover .review {
    display: block;
  }
  .category-container .category-item:hover .review_force {
    opacity: 1;
  }
  .category-container .category-item:hover .link-analytics {
    color: #ff9701;
  }
  .category-container .category-item:hover .is-fake-icon {
    display: inline-block;
  }
}
.category-container .icon_position_changed {
  background: url(../../media/includes/images/arrow_large_up.svg) 0 0 / cover;
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}
.category-container .icon_show_newicon {
  background: url(../../media/includes/images/new_icon.png) 0 0 / contain
    no-repeat;
  width: 32px;
  height: 16px;
  display: inline-block;
  position: relative;
  top: 0;
  left: 2px;
}
@media (max-width: 480px) {
  .category-container .icon_show_newicon {
    width: 25px;
    top: 5px;
  }
}
.category-container .icon_vr_friendly {
  background: url(../../media/includes/images/vr-friendly-new.png) 0 0 / cover
    no-repeat;
  width: 14px;
  height: 8px;
  margin-bottom: 5px;
  display: inline-block;
  position: relative;
}
.category-container .has_sale,
.category-container .ai-friendly-icon,
.category-container .is-18-friendly-icon {
  display: inline-block;
}
.category-container .has_sale:before {
  content: "*sale";
  color: #ee7575;
  font-size: 12px;
}
.category-container .ai-friendly-icon {
  background: url(../../media/includes/images/ai-icon.png) 0 0 / contain no-repeat;
  width: 19px;
  height: 14px;
}
.category-container .is-fake-icon {
  background: url(../../media/includes/images/fake-icon.png) 0 0 / cover no-repeat;
  width: 30px;
  height: 14px;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  animation: 0.3s ease-in-out anim-trans-display;
  display: none;
}
.category-container .category-item:active .is-fake-icon {
  display: inline-block;
}
.category-container .is-18-friendly-icon {
  background: url(../../media/includes/images/adult-18-icon.png) 0 0 / contain
    no-repeat;
  width: 18px;
  height: 16px;
}
@media (max-width: 991px) {
  .category-container .category-wrapper {
    height: 200px;
    margin-right: 0;
  }
  .category-container .category-item {
    width: 33.3%;
  }
}
@media (max-width: 800px) {
  .category-container .category-item {
    width: 50%;
  }
  .category-container .category-item .review_force {
    display: none;
  }
}
@media (max-width: 375px) {
  .category-container .category-item {
    width: 100%;
  }
}
.category-container .category-item:before,
.category-container .flag,
.category-container .icon_position_changed,
.category-container .icon_show_newicon,
.category-container .icon_vr_friendly,
.category-container .has_sale,
.category-container .ai-friendly-icon,
.category-container .is-fake-icon,
.category-container .is-18-friendly-icon {
  flex-shrink: 0;
}
.category-container .category-bottom {
  --animation-rgb-value: var(--category-rgb);
  text-align: center;
  text-transform: capitalize;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  background-color: rgb(var(--category-rgb, 255, 151, 1));
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: calc(100% - 20px);
  height: 30px;
  padding: 4px 6px;
  font-size: 14px;
  font-weight: 400;
  display: none;
  position: absolute;
  bottom: 10px;
  left: 10px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .category-container .category-bottom {
    will-change: opacity;
    animation: 0.2s fadeEffect;
  }
  .category-container .category-bottom:hover {
    animation:
      0.2s fadeEffect,
      1s infinite pulse;
  }
  .category-container .category-bottom:hover .svg-icon {
    transform: translate(10px);
  }
}
.category-container .category-bottom:before {
  border: none;
}
.category-container .category-bottom .svg-icon {
  content: "";
  vertical-align: middle;
  flex-grow: 0;
  flex-shrink: 0;
  width: 18px;
  height: 10px;
  margin: 0 0 0 5px;
  transition: transform 0.5s;
  display: inline-block;
}
.breadcrumb-holder {
  width: 100%;
  margin-bottom: 8px;
}
.breadcrumb {
  z-index: 1;
  white-space: nowrap;
  text-align: left;
  background: #fff;
  align-items: center;
  height: 34px;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
  display: flex;
  position: relative;
}
.breadcrumb li {
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  display: flex;
}
.breadcrumb li[itemprop="itemListElement"] a {
  color: #5c5c5c;
  padding-left: 4px;
}
.breadcrumb li.link-home a {
  color: #fa9e43;
  border-radius: 5px;
  align-items: center;
  gap: 4px;
  padding: 10px;
  text-decoration: none;
  display: flex;
  position: relative;
}
.breadcrumb li.link-home a .icon-flag {
  margin-right: 3px;
}
.breadcrumb li.link-home a:before {
  --animation-rgb-value: 118, 118, 118;
  content: "";
  background-color: #fa9e43;
  border-radius: 3px;
  width: 6px;
  height: 6px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .breadcrumb li.link-home a:hover:before {
    animation: 1s infinite pulse;
  }
}
.breadcrumb li .breadcrumb-brand-icon {
  vertical-align: middle;
  width: 22px;
  display: inline-block;
  position: relative;
}
.breadcrumb li:not(:first-child):before {
  content: "";
  color: #767676;
  background: url(../../media/includes/images/icons/others/icon-angle-right.svg) 0
    0 / contain no-repeat;
  width: 5px;
  height: 9px;
  display: inline-block;
}
.breadcrumb li.link-category:not(:first-child) a {
  padding-left: 4px;
}
.breadcrumb li.link-category:not(:first-child) a:after {
  display: none;
}
.breadcrumb li.link-category a {
  color: #9798a0;
  border-radius: 5px;
  align-items: center;
  gap: 4px;
  padding: 10px;
  text-decoration: none;
  display: flex;
  position: relative;
}
.breadcrumb li.link-category a:after {
  --animation-rgb-value: 118, 118, 118;
  content: "";
  z-index: 5;
  background-color: rgb(var(--category-rgb, 118, 118, 118));
  border-radius: 3px;
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .breadcrumb li.link-category a:hover:after {
    animation: 1s infinite pulse;
  }
}
.breadcrumb li .icon-category {
  width: 24px;
  height: 24px;
}
.breadcrumb a {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width: 991px) {
  .breadcrumb {
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-left: 0;
    overflow: auto hidden;
  }
  .breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .breadcrumb a {
    font-size: 14px;
    font-weight: 400;
  }
}
.breadcrumb .single-title {
  gap: 4px;
  display: flex;
}
.svg-icon {
  fill: currentColor;
  width: 1em;
  height: 1em;
  display: inline-block;
}
.link-container {
  background-color: #fff;
  border: 3px solid #c5c5c5;
  border-radius: 10px;
  padding: 0 15px 96px;
}
@media (max-width: 991px) {
  .link-container {
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 0 5px 96px;
  }
}
.url_links_wrapper {
  width: calc(100% + 10px);
  margin: 0 -5px;
  padding: 0;
  font-size: 0;
}
.url_links_wrapper#related-sites {
  counter-reset: number;
}
.url_link_container {
  vertical-align: top;
  width: 25%;
  padding: 10px 5px 0;
  font-size: 14px;
  display: inline-block;
  position: relative;
}
@media (max-width: 991px) {
  .url_link_container {
    width: 33.3%;
    padding: 10px 2px 0;
  }
}
@media (max-width: 767px) {
  .url_link_container {
    width: 50%;
  }
}
.feature-container-group .url_link_container {
  width: 20%;
}
@media (max-width: 991px) {
  .feature-container-group .url_link_container {
    width: 33.3%;
  }
}
@media (max-width: 767px) {
  .feature-container-group .url_link_container {
    width: 50%;
  }
}
.url_link_container_group .url_link_image:before {
  content: "";
  background-color: rgb(var(--category-rgb, 118, 118, 118));
  display: block;
  position: absolute;
  inset: 0;
}
.url_link_container_group .url_link_image:after {
  transition: background 0.2s;
}
@media (min-width: 992px) {
  .url_link_container_group:hover .url_link_image:after {
    background: #000000b3;
  }
}
.url_link_container_group .icon-category-background {
  background-position: 50%;
  background-size: 75%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.url_link_container .icon-site-list {
  z-index: 2;
  color: #fff;
  gap: 10px;
  width: 100%;
  padding-inline: 12px;
  animation: 0.2s fadeEffect;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.url_link_container .icon-site {
  text-align: left;
}
.url_link_container img {
  transform-origin: 0 0;
}
@media (min-width: 992px) {
  .url_link_container:hover .url_link_caption:after {
    animation: 1s infinite pulse;
  }
  .url_link_container:hover .url_link_image img {
    transform-origin: 0 0;
    transform: scale(1.1);
  }
}
.url_link_title {
  text-align: center;
  z-index: 5;
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
}
.url_link_title .link {
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  display: block;
  overflow: hidden;
}
.url_link_title .link:before {
  counter-increment: number;
  content: counter(number);
  text-align: right;
  color: #bbbcc0;
  margin: -1px 1px 0 0;
  font-weight: 400;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.url_link_title .link .icon-site {
  vertical-align: middle;
  margin: 0 0 1px;
  display: inline-flex;
}
.url_link_title .link .icon-site:before {
  margin-right: 0;
}
.url_link_image {
  z-index: 1;
  background: #f5f5f5;
  border-radius: 5px;
  padding-bottom: calc(100% - 2px);
  position: relative;
  overflow: hidden;
}
.url_link_image:hover .placeholder-thumbnail-text-container {
  opacity: 0;
  visibility: hidden;
}
.placeholder-thumbnail-text-container {
  z-index: 1;
  text-align: center;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  font-size: 14px;
  transition:
    opacity 0.2s,
    visibility 0.2s;
  display: flex;
  position: absolute;
  inset: 0;
}
.thumb-text-title {
  color: #fe9701;
  font-size: 16px;
}
.thumb-contact-info-email {
  color: #fe9701;
  text-decoration: underline;
}
.url_link_image:after {
  content: "";
  z-index: 1;
  background: linear-gradient(
    0deg,
    #000 0,
    #00000094 25%,
    #6b6b6b00 50%,
    #fff0 100%
  );
  display: block;
  position: absolute;
  inset: 0;
}
.url_link_image img {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.url_link_image .lazyloaded {
  opacity: 1;
  transition:
    opacity 0.25s,
    transform 0.3s;
}
@media (min-width: 769px) {
  .url_link_image .lazyloaded {
    transform: scale(1);
  }
}
.url_link_image .lazyload ~ .url_link_count_sites,
.url_link_image .lazyload ~ .icon-site-list {
  display: none;
}
.url_links_wrapper_related .url_link_image {
  border: none;
}
.url_links_wrapper_related .url_link_image:before {
  content: "";
  background-color: rgb(var(--category-rgb, 118, 118, 118));
  display: block;
  position: absolute;
  inset: 0;
}
.url_links_wrapper_related .url_link_image:after {
  background: #00000080;
  transition: background 0.2s;
}
@media (min-width: 992px) {
  .url_links_wrapper_related .url_link_container:hover .url_link_image:after {
    background: #000000b3;
  }
}
.url_links_wrapper_related a .url_link_caption {
  --animation-rgb-value: var(--category-rgb);
  overflow: initial;
  text-overflow: ellipsis;
  text-transform: uppercase;
  text-align: left;
  align-items: center;
  display: flex;
  position: relative;
}
.url_links_wrapper_related a .url_link_caption .icon-category {
  margin-right: 8px;
}
.url_links_wrapper_related a .url_link_caption span:last-child {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  line-height: 28px;
  overflow: hidden;
}
.url_links_wrapper_related a .url_link_caption:after {
  content: "";
  z-index: 5;
  background-color: rgb(var(--category-rgb, 118, 118, 118));
  border-radius: 3px;
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .url_links_wrapper_related .url_link_container:hover .url_link_image img {
    transform-origin: 50%;
  }
}
.url_links_wrapper_related .url_link_container .url_link_image img {
  transform-origin: 50%;
}
.url_link_caption {
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #4e4e4e;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
  overflow: hidden;
}
@media (max-width: 480px) {
  .url_link_caption {
    padding: 8px 5px;
    font-size: 12px;
  }
  .url_link_caption .inline-icon {
    margin-right: -4px;
    transform: scale(0.8);
  }
  .url_links_wrapper_related a .url_link_caption span:last-child {
    line-height: 16px;
  }
}
.url_link_count_sites {
  color: #fff;
  text-shadow: 1px 1px #5a5a5a;
  z-index: 2;
  font-size: 25px;
  font-weight: 500;
  animation: 0.2s fadeEffect;
  position: absolute;
  top: 3px;
  right: 8px;
}
.url_short_desc {
  color: #777;
  text-align: left;
  letter-spacing: -0.1px;
  text-overflow: ellipsis;
  word-wrap: break-word;
  padding: 2px 4px;
  font-size: 12px;
  line-height: 1.3em;
  overflow: hidden;
}
.category-container.visited .category-bottom .svg-icon {
  display: none;
}
.category-container.visited .category-bottom:after {
  content: "";
  border: 1px solid #0000;
  border-color: #0000 #0000 #fff #fff;
  width: 12px;
  height: 7px;
  margin: 0 0 3px 11px;
  transform: rotate(-45deg);
}
.category-container .category-item.visited:before {
  content: "";
  border: 1px solid #ff9a30;
  border-width: 0 1px 1px 0;
  width: 6px;
  height: 11px;
  margin: 1px 7px 6px 10px;
  transform: rotate(45deg);
}
.url_link_container.visited .link:before,
.url_link_container.visited .url_link_caption:after {
  border-style: solid;
  border-color: rgb(var(--category-rgb, 118, 118, 118));
  color: #0000;
  background-color: #0000;
  border-radius: 0;
  width: 12px;
  height: 7px;
  margin: 0;
  transform: translateY(-100%) rotate(-45deg);
  box-shadow: none !important;
  border-width: 0 0 2px 2px !important;
}
.url_link_container.visited .url_link_caption:after {
  top: calc(50% + 3px);
  left: -3px;
}
.move-arrow {
  display: inline-block;
  position: relative;
}
.move-arrow.left {
  animation: 1s linear infinite move-left;
}
.move-arrow.right {
  animation: 1s linear infinite move-right;
}
.chip {
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: var(--_chip-border-clr);
  text-transform: uppercase;
  background-color: var(--_chip-bg);
  color: var(--_chip-clr);
  border-radius: 6px 6px 0;
  justify-content: center;
  align-items: center;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  display: inline-flex;
}
.chip-free {
  --_chip-border-clr: #de001b;
  --_chip-bg: #ff122f;
  --_chip-clr: #fff;
}
.chip-premium {
  --_chip-border-clr: #ff6c01;
  --_chip-bg: #ff8c01;
  --_chip-clr: #000;
}
.see-all-sites {
  color: #8c8d96;
  background-color: #f0f1f5;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}
.see-all-sites .icon {
  width: 10px;
}
.category-content {
  padding-top: 10px;
}
.category-content-section {
  counter-reset: number;
  margin-bottom: 20px;
}
.category-content-section:last-of-type {
  margin-bottom: 0;
}
.category-content-section .see-all-sites {
  min-width: 220px;
  margin: 10px auto 0;
}
.category-content-section-headline {
  align-items: center;
  gap: 10px;
  display: flex;
}
.category-content-section-title {
  overflow-wrap: break-word;
  text-transform: uppercase;
  color: #454545;
  font-weight: 600;
  overflow: hidden;
}
.url_link_container .chip {
  z-index: 2;
  border-top-right-radius: 0;
  position: absolute;
  top: 10px;
  right: 0;
}
.clearfix:before,
.clearfix:after {
  content: "";
  clear: both;
  display: table;
}
.chat-widget {
  z-index: 100;
  width: 50px;
  min-height: 156px;
  position: fixed;
  bottom: 50px;
  left: 0;
}
@media (min-width: 992px) {
  .chat-widget {
    width: 82px;
    height: 110px;
    min-height: initial;
    cursor: pointer;
    background: #feb93e
      url(../../media/includes/images/mascots/mascot-chat-bg.svg) top/contain
      no-repeat;
    border-radius: 12px 12px 0 0;
    left: auto;
    right: 30px;
  }
  .chat-widget:hover .chat-widget-mascot {
    background-image: url(../../media/includes/images/mascots/mascot-chat-show.png);
    width: 130px;
    height: 168px;
    top: -76px;
    left: -28px;
  }
}
.chat-widget-mascot {
  z-index: 1;
  background: url(../../media/includes/images/mascots/mascot-full-chat-show-50x67.png)
    50% / contain no-repeat;
  width: 50px;
  height: 67px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 992px) {
  .chat-widget-mascot {
    z-index: 0;
    background: url(../../media/includes/images/mascots/mascot-chat-point.png)
      50% / contain no-repeat;
    width: 90px;
    height: 110px;
    transition: all 0.1s;
    top: -36px;
    bottom: auto;
    left: -16px;
  }
}
.chat-widget-footer {
  writing-mode: vertical-rl;
  color: #fff;
  background-color: #000;
  border-radius: 10px 0 0 10px;
  justify-content: center;
  align-items: center;
  width: 26px;
  padding-top: 60px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}
.chat-widget-footer:before {
  content: "VIDEO CHAT";
}
@media (min-width: 992px) {
  .chat-widget-footer:before {
    content: normal;
  }
  .chat-widget-footer {
    background: #000
      url(../../media/includes/images/mascots/mascot-chat-text-white.svg) 50%/80px
      36px no-repeat;
    border-radius: 6px;
    width: 90px;
    height: 48px;
    padding: 0;
    top: auto;
    left: 50%;
    transform: translate(-50%);
  }
}
.divider {
  background-color: #ff9701;
  border-radius: 2px;
  height: 4px;
  margin: 37px 0;
  display: block;
  position: relative;
}
.divider.lazyloaded:before {
  display: block;
}
.divider:before {
  content: "";
  z-index: 1;
  background: url(../../media/includes/images/breadcrumb-chevron.svg) 50%/100% no-repeat;
  width: 40px;
  height: 40px;
  animation: 0.2s fadeEffect;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.category-top-cards {
  grid-template-columns: 1fr;
  gap: 10px;
  display: grid;
}
@media (min-width: 768px) {
  .category-top-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category-top-card {
  isolation: isolate;
  overflow: hidden;
}
.category-top-card.visited .category-top-card-header .icon {
  display: none;
}
.category-top-card.visited .category-top-card-header:after {
  content: "";
  z-index: 1;
  border: 0 solid #fff;
  border-width: 0 0 2px 2px;
  flex-shrink: 0;
  width: 16px;
  height: 9px;
  margin-left: auto;
  position: relative;
  transform: rotate(-45deg);
}
.category-top-card-link {
  flex-direction: column;
  height: 100%;
  display: flex;
}
@media (min-width: 992px) {
  .category-top-card-link:hover .category-top-card-header:before {
    opacity: 1;
  }
  .category-top-card-link:hover .category-top-card-header .icon {
    animation: 1s infinite fromRightToLeft;
  }
  .category-top-card-link:hover .category-top-card-header-icon-leaf {
    opacity: 1;
  }
  .category-top-card-link:hover
    .category-top-card-header-icon-leaf:first-of-type {
    transform: translate(-18px, -30%) rotate(-12deg);
  }
  .category-top-card-link:hover
    .category-top-card-header-icon-leaf:nth-of-type(2) {
    transform: translate(-15px, -40%) rotate(-12deg);
  }
  .category-top-card-link:hover
    .category-top-card-header-icon-leaf:nth-of-type(3) {
    transform: translate(-10px, -48%) rotate(-12deg);
  }
  .category-top-card-link:hover
    .category-top-card-header-icon-leaf:nth-of-type(4) {
    transform: translate(-2px, -50%);
  }
  .category-top-card-link:hover .category-top-card-amount-leaf {
    opacity: 1;
  }
  .category-top-card-link:hover .category-top-card-amount-leaf:first-of-type {
    transform: translate(-15px, -40%);
  }
  .category-top-card-link:hover .category-top-card-amount-leaf:nth-of-type(2) {
    transform: translate(-7px, -50%);
  }
  .category-top-card-link:hover .category-top-card-amount-leaf:nth-of-type(3) {
    transform: translate(-8px, -50%);
  }
  .category-top-card-link:hover .category-top-card-amount-leaf:nth-of-type(4) {
    transform: translate(-2px, -50%);
  }
}
.category-top-card-header {
  background-color: rgb(var(--category-rgb, 118, 118, 118));
  color: #fff;
  border-radius: 10px 10px 0 0;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-weight: 600;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media (min-width: 480px) {
  .category-top-card-header {
    padding: 10px 14px 10px 20px;
  }
}
.category-top-card-header:before {
  content: "";
  opacity: 0;
  background-color: #00000080;
  transition: opacity 0.2s;
  position: absolute;
  inset: 0;
}
.category-top-card-header .icon-category {
  z-index: 1;
  width: 30px;
  height: 30px;
  position: relative;
}
@media (min-width: 480px) {
  .category-top-card-header .icon-category {
    width: 34px;
    height: 34px;
  }
}
.category-top-card-header .icon {
  z-index: 1;
  flex-shrink: 0;
  width: 20px;
  margin-left: auto;
  position: relative;
}
.category-top-card-header-icon {
  background-color: #e1ffff;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
}
@media (min-width: 480px) {
  .category-top-card-header-icon {
    border-radius: 20px;
    width: 50px;
    height: 50px;
  }
}
.category-top-card-header-icon-leaf {
  opacity: 0;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background-color: inherit;
  transition:
    transform 0.2s,
    opacity 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.category-top-card-header-icon-leaf:first-of-type {
  background-color: #e1ffff99;
  border-radius: 14px;
  width: 32px;
  height: 32px;
  transition-duration: 0.6s;
}
.category-top-card-header-icon-leaf:nth-of-type(2) {
  background-color: rgb(var(--category-rgb, 118, 118, 118));
  border-radius: 12px;
  width: 32px;
  height: 32px;
  transition-duration: 0.5s;
}
.category-top-card-header-icon-leaf:nth-of-type(3) {
  background-color: #e1ffffcc;
  border-radius: 16px;
  width: 40px;
  height: 40px;
  transition-duration: 0.4s;
}
.category-top-card-header-icon-leaf:nth-of-type(4) {
  background-color: rgb(var(--category-rgb, 118, 118, 118));
  transition-duration: 0.3s;
}
.category-top-card-header-icon-leaf:nth-of-type(5) {
  opacity: 1;
}
.category-top-card-title {
  z-index: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.category-top-card-body {
  border: 2px solid rgb(var(--category-rgb, 118, 118, 118));
  border-top: none;
  border-radius: 0 0 10px 10px;
  flex-grow: 1;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  display: flex;
}
@media (min-width: 375px) {
  .category-top-card-body {
    padding: 20px;
  }
}
.category-top-card-list {
  flex-grow: 1;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 10px;
  font-size: 14px;
  display: grid;
  overflow: hidden;
}
.category-top-card-list .icon-category {
  width: 16px;
  height: 16px;
}
.category-top-card-list-item {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.category-top-card-list-item-favicon:before {
  content: "";
  vertical-align: middle;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
}
.category-top-card-amount {
  border: 2px solid rgb(var(--category-rgb, 118, 118, 118));
  color: #909199;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  position: relative;
}
.category-top-card-amount-leaf {
  z-index: -1;
  opacity: 0;
  border-radius: inherit;
  background-color: inherit;
  width: 42px;
  height: 42px;
  transition:
    transform 0.2s,
    opacity 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.category-top-card-amount-leaf:first-of-type {
  background-color: rgba(var(--category-rgb, 118, 118, 118), 0.6);
  width: 30px;
  height: 30px;
  transition-duration: 0.5s;
}
.category-top-card-amount-leaf:nth-of-type(2) {
  width: 42px;
  height: 42px;
  transition-duration: 0.4s;
}
.category-top-card-amount-leaf:nth-of-type(3) {
  background-color: rgba(var(--category-rgb, 118, 118, 118), 0.8);
  width: 36px;
  height: 36px;
  transition-duration: 0.3s;
}
.dark .category-top-card-amount {
  background-color: #2a2b31;
}
@keyframes fromRightToLeft {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(-6px);
  }
  to {
    transform: translate(0);
  }
}
.body-drawer-open {
  overflow: hidden;
}
@media (min-width: 992px) {
  .body-drawer-open {
    overflow: visible;
  }
}
.drawer-open .drawer-overlay {
  opacity: 1;
  visibility: visible;
}
.drawer-open .drawer-content {
  transform: translateY(0);
}
.drawer-overlay {
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #0009;
  transition:
    opacity 0.2s,
    visibility 0.2s;
  position: fixed;
  inset: 0;
}
@media (min-width: 992px) {
  .drawer-overlay {
    display: none;
  }
}
.drawer-content {
  z-index: 112;
  width: calc(100% - 20px);
  height: calc(100% - var(--header-mob-height));
  transition: transform 0.2s;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  box-shadow: 0 4px 44px #00000020;
}
@media (min-width: 992px) {
  .drawer-content {
    width: 100%;
    height: calc(100% - var(--header-desk-height));
    max-height: 750px;
  }
}
#drawer-app {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  flex-direction: column;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}
.drawer-opener {
  --_txt: "GIFT";
  --_bg-clr: #edaa42;
  --_bg-gradient: linear-gradient(180deg, #edab42 0, #c37c0c 100%);
  --_bg-shimmer-gradient: linear-gradient(
    -45deg,
    transparent 45%,
    #edab42 50%,
    transparent 55%
  );
  --_clr: #fff;
  --_vane-bg: #edab42;
  --_vane-clr: #230b34;
  color: var(--_clr);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s;
}
.drawer-opener.drawer-opener-show .badge {
  display: flex;
}
.drawer-opener .icon-mascot {
  width: 26px;
  height: 26px;
}
.drawer-opener .loader {
  border-color: #0000 #0000 #fff;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
}
@media (min-width: 992px) {
  .drawer-opener:hover .drawer-opener-vane {
    color: #fff;
  }
}
.drawer-opener-mobile {
  --_bg-img: url(../../media/includes/images/mascots/mascot-full-rock-discount-116x116.png);
  z-index: 100;
  transform-origin: 100% 100%;
  align-items: flex-end;
  min-width: 146px;
  max-width: 200px;
  height: 50px;
  font-size: 12px;
  display: flex;
  position: fixed;
  bottom: 50px;
  right: 0;
  transform: rotate(-90deg) translate(100%, 100%);
}
@media (min-width: 992px) {
  .drawer-opener-mobile {
    display: none;
  }
}
.drawer-opener-mobile.drawer-opener-show {
  transform: rotate(-90deg) translate(100%);
}
.drawer-opener-mobile.drawer-opener-show .drawer-opener-icon {
  transform: rotate(80deg) translateY(12px);
}
.drawer-opener-mobile .drawer-opener-inner {
  height: 28px;
  padding: 0 10px 0 30px;
}
.drawer-opener-mobile .drawer-opener-icon {
  width: 58px;
  height: 58px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(80deg) translate(20px, 12px);
}
.drawer-opener-mobile .drawer-opener-vane {
  width: 20px;
  height: 20px;
}
.drawer-opener-mobile .drawer-opener-vane .icon {
  width: 13px;
  height: 11px;
}
.drawer-opener-mobile .badge {
  z-index: 1;
  animation: 0.2s fadeEffect;
  display: none;
  position: absolute;
  bottom: 6px;
  left: -8px;
  transform: rotate(90deg);
}
.drawer-opener-desktop {
  --_bg-img: url(../../media/includes/images/mascots/mascot-full-rock-discount-116x116.png);
  min-width: 160px;
  max-width: 200px;
  height: 44px;
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 150%);
}
@media (min-width: 992px) {
  .drawer-opener-desktop {
    display: flex;
  }
  .drawer-opener-desktop.drawer-opener-show {
    transform: translate(-50%);
  }
}
.drawer-opener-desktop.drawer-opener-show .drawer-opener-vane {
  transform: translate(-50%, -17px);
}
@media (max-width: 991px) {
  .drawer-opener-desktop.drawer-opener-open {
    display: flex;
    transform: translate(-50%);
  }
}
.drawer-opener-desktop .drawer-opener-inner {
  background: var(--_bg-shimmer-gradient);
  background-position-x: 100%;
  background-size: 300%;
  height: 100%;
  padding: 8px 10px 0 60px;
  animation: 3s ease-in-out 1s infinite shimmer-2;
}
.drawer-opener-desktop .drawer-opener-inner:before {
  content: "";
  z-index: -1;
  border-radius: inherit;
  background: var(--_bg-gradient);
  position: absolute;
  inset: 0;
}
.drawer-opener-desktop .drawer-opener-icon {
  width: 58px;
  height: 58px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.drawer-opener-desktop .drawer-opener-vane {
  --_move-offset: -10%;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}
.drawer-opener-desktop.drawer-opener-open .drawer-opener-vane {
  transform: translate(-50%, -17px) rotate(180deg);
}
.drawer-opener-desktop .drawer-opener-vane .icon {
  width: 15px;
  height: 18px;
}
.drawer-opener-desktop .badge {
  z-index: 1;
  animation: 0.2s fadeEffect;
  display: none;
  position: absolute;
  top: -8px;
  right: -8px;
}
.drawer-opener-desktop .drawer-opener-content:before,
.drawer-opener-desktop .drawer-opener-content:after,
.drawer-opener-mobile .drawer-opener-content:before,
.drawer-opener-mobile .drawer-opener-content:after {
  content: "";
  background-image: url(../../media/includes/images/icons/icon-multi-gift.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: inline-block;
}
.drawer-opener-submitted,
.drawer-opener-subscribed,
.drawer-opener-logged-in {
  --_bg-img: url(../../media/includes/images/icons/icon-multi-envelope-heart.svg);
  --_bg-clr: #31cc69;
  --_bg-gradient: linear-gradient(180deg, #31cc69 0%, #29a656 100%);
  --_bg-shimmer-gradient: linear-gradient(
    -45deg,
    transparent 45%,
    #31cc69 50%,
    transparent 55%
  );
  --_vane-bg: #31cc69;
}
.drawer-opener-unsubscribed,
.drawer-opener-logged-out {
  --_bg-img: url(../../media/includes/images/mascots/mascot-head-sad.svg);
  --_bg-gradient: linear-gradient(180deg, #565656 0%, #6b6b6b 100%);
  --_bg-shimmer-gradient: linear-gradient(
    -45deg,
    transparent 45%,
    #6b6b6b 50%,
    transparent 55%
  );
  --_vane-bg: #6b6b6b;
  --_vane-clr: #fff;
}
.drawer-opener-open {
  --_vane-clr: #fff;
}
.drawer-opener-submitted {
  --_txt: "Submitted";
}
.drawer-opener-subscribed {
  --_txt: "Subscribed";
}
.drawer-opener-unsubscribed {
  --_txt: "Unsubscribed";
}
.drawer-opener-logged-in {
  --_txt: "Logged In";
}
.drawer-opener-logged-out {
  --_txt: "Logged Out";
}
.drawer-opener-hide {
  --_txt: "See You!";
}
.drawer-opener-error {
  --_txt: "Oops!";
  --_bg-img: url(../../media/includes/images/mascots/mascot-head-scared.svg);
  --_bg-gradient: linear-gradient(180deg, #ff6c3f 0%, #d95932 100%);
}
.drawer-opener-loading .drawer-opener-inner,
.drawer-opener-loading .drawer-opener-vane,
.drawer-opener-open .drawer-opener-inner,
.drawer-opener-open .drawer-opener-vane,
.drawer-opener-hide .drawer-opener-inner,
.drawer-opener-error .drawer-opener-inner {
  animation: none;
}
.drawer-opener-hide .drawer-opener-vane,
.drawer-opener-error .drawer-opener-vane {
  display: none;
}
.drawer-opener-open .drawer-opener-vane {
  transform: rotate(180deg);
}
.drawer-opener-loading .loader {
  display: flex;
}
.drawer-opener-inner {
  background-color: var(--_bg-clr);
  background: var(--_bg-gradient);
  border-radius: 10px 10px 0 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 6px 10px 0;
  transition: background-color 0.2s;
  display: flex;
  position: relative;
  box-shadow: 0 0 4px #00000040;
}
.drawer-opener-icon {
  background-image: var(--_bg-img);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  display: flex;
}
.drawer-opener-content {
  justify-content: center;
  align-items: center;
  gap: 2px;
  display: flex;
  overflow: hidden;
}
.drawer-opener-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.drawer-opener-text:before {
  content: var(--_txt);
}
.drawer-opener-vane {
  background-color: var(--_vane-bg);
  width: 24px;
  height: 24px;
  color: var(--_vane-clr);
  will-change: transform;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition:
    transform 0.2s,
    background-color 0.2s,
    color 0.2s;
  display: flex;
}
.drawer-opener-vane .icon {
  width: 13px;
  height: 15px;
}
.extension-widget {
  --_border-gradient: linear-gradient(to left, #b85a1b 0%, #ff9701 100%);
  --_bg-clr: #fff;
  z-index: 101;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: 0.2s fadeEffect;
  display: none;
  position: fixed;
  bottom: 50px;
  left: 20px;
}
@media (min-width: 1440px) {
  .extension-widget {
    inset: 60px 20px auto auto;
  }
}
@media (min-width: 992px) {
  .extension-widget {
    display: flex;
  }
}
.extension-widget-close {
  color: #ff9701;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  transition: color 0.2s;
  display: flex;
  position: absolute;
  top: -6px;
  right: -6px;
}
.extension-widget-close:before {
  content: "";
  background-color: currentColor;
  width: 10px;
  height: 10px;
  -webkit-mask: url(../../media/includes/images/icons/icon-regular-cross.svg)
    50% / contain no-repeat;
  mask: url(../../media/includes/images/icons/icon-regular-cross.svg) 50% /
    contain no-repeat;
}
.extension-widget-hiding {
  animation: 0.2s forwards fadeOutEffect;
}
@keyframes fadeOutEffect {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
.extension-widget-circle {
  width: 80px;
  height: 80px;
  position: relative;
}
.extension-widget-circle:after {
  content: "";
  transform-origin: 50%;
  background-image: url(../../media/includes/images/mascots/mascot-head-discount.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.extension-widget-quote {
  text-align: center;
  background:
    linear-gradient(var(--_bg-clr), var(--_bg-clr)) padding-box,
    var(--_border-gradient) border-box;
  color: #ff9701;
  border: 3px solid #0000;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  max-width: 220px;
  min-height: 50px;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  position: relative;
}
.extension-widget-quote.is-typing .extension-widget-quote-text-string:after {
  content: "";
  background-color: #ff9701;
  width: 2px;
  height: 1em;
  animation: 0.7s infinite caretBlink;
  display: inline-block;
}
.extension-widget-quote.is-typed .extension-widget-text-icon {
  display: inline-block;
}
.extension-widget-quote-text-string {
  vertical-align: middle;
  text-decoration: underline;
}
.extension-widget-text-icon {
  vertical-align: middle;
  animation: 0.2s fadeEffect;
  display: none;
}
@keyframes caretBlink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.extension-widget-quote-arrow {
  background: var(--_border-gradient);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  width: 15px;
  height: 14px;
  position: absolute;
  bottom: 100%;
  left: 40%;
  transform: translate(-50%);
}
.extension-widget-quote-arrow:before {
  content: "";
  background-color: var(--_bg-clr);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  width: 7px;
  height: 7px;
  position: absolute;
  bottom: 0;
  left: 7px;
  transform: translate(-50%);
}
.micromodal {
  color: #000;
  font-family:
    Roboto,
    Roboto Fallback,
    sans-serif;
}
.micromodal hr {
  border: none;
  border-top: 1px solid #d8d8d8;
  margin: 20px 0;
}
.micromodal p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.4;
}
.micromodal .color-bold {
  font-weight: 700;
}
.micromodal .color-primary {
  color: #ff8c01;
}
.micromodal .color-secondary {
  color: #8c8d96;
}
.micromodal .color-success {
  color: #2eaf61;
}
.micromodal .color-error {
  color: #f60000;
}
.micromodal .text-center {
  text-align: center;
}
.micromodal .btn {
  text-align: center;
  border-radius: 10px;
  padding: 18px 31px;
  line-height: 1;
  transition:
    opacity 0.2s,
    background-color 0.2s;
}
.micromodal .btn-primary {
  color: #fff;
  background-color: #ff8c01;
}
.micromodal .btn-primary:active {
  background-color: #d77600;
}
@media (min-width: 1025px) {
  .micromodal .btn-primary:hover {
    background-color: #d77600;
  }
}
.micromodal .btn-secondary {
  color: #8c8d96;
  background-color: #f0f1f5;
}
.micromodal .btn-secondary:active {
  background-color: #e4e5e7;
}
@media (min-width: 1025px) {
  .micromodal .btn-secondary:hover {
    background-color: #e4e5e7;
  }
}
.micromodal .btn-success {
  color: #fff;
  background-color: #29a656;
}
.micromodal .btn-success:active {
  background-color: #1e8142;
}
@media (min-width: 1025px) {
  .micromodal .btn-success:hover {
    background-color: #1e8142;
  }
}
.micromodal .inline-icon {
  background-size: contain;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden="false"] .micromodal-overlay {
  animation: 0.3s cubic-bezier(0, 0, 0.2, 1) mmfadeIn;
}
.micromodal-slide[aria-hidden="false"] .micromodal-container {
  animation: 0.3s cubic-bezier(0, 0, 0.2, 1) mmslideIn;
}
.micromodal-slide[aria-hidden="true"] .micromodal-overlay {
  animation: 0.3s cubic-bezier(0, 0, 0.2, 1) mmfadeOut;
}
.micromodal-slide[aria-hidden="true"] .micromodal-container {
  animation: 0.3s cubic-bezier(0, 0, 0.2, 1) mmslideOut;
}
.micromodal-overlay {
  z-index: 9999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #0009;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}
.micromodal-container {
  border-radius: 10px;
  width: 100%;
  max-width: 940px;
  max-height: 90dvh;
  margin: 0 10px;
  overflow-y: auto;
}
.micromodal-content {
  background-color: #fff;
  border-radius: 10px;
}
.micromodal-header {
  align-items: center;
  gap: 20px;
  padding: 19px 20px;
  display: flex;
}
@media (max-width: 991px) {
  .micromodal-header {
    padding: 12px 20px;
  }
}
.micromodal-header + hr {
  margin: 0;
}
.micromodal-header .inline-icon {
  width: 30px;
  height: 30px;
}
.micromodal-title {
  gap: 14px;
  font-size: 24px;
  display: flex;
  overflow: hidden;
}
@media (max-width: 991px) {
  .micromodal-title {
    font-size: 20px;
  }
}
.micromodal-title-text {
  text-overflow: ellipsis;
  overflow: hidden;
}
.micromodal-close {
  cursor: pointer;
  margin-left: auto;
  display: flex;
}
.micromodal-close .icon {
  fill: #454545;
  pointer-events: none;
  width: 24px;
  height: 24px;
  transition: fill 0.2s;
}
.micromodal-close:active .icon {
  fill: #ff8c04;
}
@media (min-width: 1025px) {
  .micromodal-close:hover .icon {
    fill: #ff8c04;
  }
}
.micromodal-body {
  padding: 20px 30px;
}
@media (max-width: 991px) {
  .micromodal-body {
    padding: 20px;
  }
}
.micromodal-hero {
  flex-direction: column;
  align-items: center;
  display: flex;
}
.micromodal-hero p {
  text-align: center;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.5;
}
.micromodal-hero p:last-child {
  margin-bottom: 0;
}
.micromodal-hero .micromodal-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 30px;
}
@media (max-width: 991px) {
  .micromodal-hero .micromodal-title {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
.micromodal-hero .inline-icon {
  margin-bottom: 30px;
}
.micromodal-hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  display: flex;
}
@media (max-width: 767px) {
  .micromodal-hero-actions {
    margin-bottom: 20px;
  }
}
.micromodal-hero-actions .btn {
  flex-grow: 1;
}
.micromodal-hero-actions .btn-primary {
  font-weight: 700;
}
@keyframes mmfadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  0% {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.age-limit-modal .micromodal-overlay {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.age-limit-modal .micromodal-body {
  padding-block: 70px;
}
@media (max-width: 767px) {
  .age-limit-modal .micromodal-body {
    padding-block: 30px;
  }
}
.age-limit-modal-img {
  width: 284px;
  height: 227px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .age-limit-modal-img {
    width: 244px;
    height: 195px;
  }
}