@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300&family=Nunito:wght@300;400;500;600;700;800;900;1000&display=swap");
* {
  font-family: "Nunito", sans-serif;
}

b, strong {
  font-family: "Nunito", sans-serif;
}

i {
  font-family: "Nunito", sans-serif;
}

h1, h2, h3, h4, h5 {
  font-family: "Nunito", sans-serif;
}

.search {
  grid-area: 1/1;
  height: 100%;
  justify-self: right;
  display: none;
  align-items: center;
  background: white;
}
.search .search-btn, .search .close-btn {
  justify-self: left;
  display: flex;
  grid-area: 1/1;
  align-items: center;
  justify-content: center;
  height: 73px;
  width: 82px;
}
.search .search-btn svg, .search .close-btn svg {
  height: 28px;
  width: auto;
  z-index: 99999;
}

.search form {
  flex-grow: 1;
  height: 100%;
  display: none;
}
.search form input {
  height: 100%;
  width: 100%;
  border: none;
}
.search form input::placeholder {
  color: #a8b0cd;
}
.search.open {
  width: 100%;
}
.search.open form {
  display: block;
}
.search.open .close-btn {
  display: flex;
}

@media screen and (max-width: 576px) {
  .search {
    display: flex;
  }
}

.sidebar .wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 272px;
  border-right: 1px solid #eaebf3;
  padding: 35px 0 0 50px;
  height: 100%;
  box-sizing: border-box;
}
.sidebar .gap {
  width: 272px;
}
.sidebar header {
  flex-shrink: 0;
}
.sidebar header .burger-btn, .sidebar header .search-btn {
  display: none;
}
.sidebar .menu {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  flex-grow: 1;
  margin: 10px 0 0;
  list-style: none;
  background: white;
}
.sidebar .menu li {
  display: flex;
}
.sidebar .menu li .link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.2s ease;
  color: #353644;
  padding: 12px 0;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.sidebar .menu li .link:hover {
  color: mediumpurple;
}
.sidebar .menu li .link .icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 36px;
}
.sidebar .menu li .link .icon svg {
  width: 16px;
  height: auto;
}
.sidebar .menu li .link .icon svg path {
  fill: #a8b0cd;
  transition: 0.2s ease;
}
.sidebar .menu li .link:after {
  content: "";
  position: absolute;
  background: #6060e3;
  height: calc(100% - 20px);
  top: 10px;
  right: -1px;
  transition: 0.2s ease;
  opacity: 0;
}
.sidebar .menu li .link:after {
  width: 0px;
}
.sidebar .menu li .link.link-active {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7215686275);
}
.sidebar .menu li .link.link-active:after {
  width: 4px;
  opacity: 1;
}
.sidebar .menu li .link.link-active .icon svg path {
  fill: #e95151;
}
.sidebar footer {
  flex-shrink: 0;
}
.sidebar footer .title {
  color: #a8b0cd;
  text-transform: uppercase;
}
.sidebar footer ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px 60px 0;
  list-style: none;
  margin: 0 0 0 -10px;
}
.sidebar footer ul a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar footer ul a svg {
  width: 18px;
  height: auto;
}
.sidebar footer ul a svg path {
  fill: #353644;
}
.sidebar footer ul a.behance svg {
  width: 23px;
}

@media screen and (max-width: 1400px) {
  .sidebar .wrap {
    width: 270px;
  }
  .sidebar .gap {
    width: 270px;
  }
}
@media screen and (max-width: 992px) {
  .sidebar .wrap {
    position: relative;
    padding: 0;
    width: 100%;
    overflow: hidden;
  }
  .sidebar .wrap .header-gap {
    height: 74px;
  }
  .sidebar .wrap header {
    border-bottom: 1px solid #eaebf3;
    background: white;
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .sidebar .wrap header .header-wrap {
    display: grid;
    align-items: center;
    position: relative;
  }
  .sidebar .wrap header .logo {
    grid-area: 1/1;
    justify-self: right;
    margin-right: 25px;
  }
  .sidebar .wrap header .burger-btn, .sidebar .wrap header .search-btn {
    justify-self: left;
    display: flex;
    grid-area: 1/1;
    align-items: center;
    justify-content: center;
    height: 73px;
    width: 82px;
  }
  .sidebar .wrap header .burger-btn svg, .sidebar .wrap header .search-btn svg {
    height: 22px;
    width: auto;
  }
  .sidebar .wrap header .burger-btn svg path, .sidebar .wrap header .search-btn svg path {
    fill: #a8b0cd;
  }
  .sidebar .wrap header .burger-btn svg.close-menu, .sidebar .wrap header .search-btn svg.close-menu {
    width: 18px;
  }
  .sidebar .wrap .menu {
    transform: translateX(-100%);
    position: fixed;
    margin: 0;
    top: 74px;
    left: 0;
    z-index: 500;
    width: 100vw;
    bottom: 0;
    padding: 20px 30px 0;
    box-sizing: border-box;
    transition: transform 0.2s ease;
    display: flex;
  }
  .sidebar .wrap .menu li {
    margin: 4px 0;
  }
  .sidebar .wrap .menu li .link .icon {
    width: 42px;
  }
  .sidebar .wrap .menu li .link .icon svg {
    width: 20px;
  }
  .sidebar .wrap .menu li .link:after {
    display: none;
  }
}
#link-randomizer.link-active svg, #link-randomizer.link-active path {
  color: #e95151 !important;
}
#link-randomizer svg {
  color: #a8b0cd !important;
}
#link-randomizer svg path {
  fill: none !important;
  color: #a8b0cd !important;
}

.bg-silver {
  background-color: #f9fafc;
}

.style-page {
  padding: 25px 0px 40px 0px;
}
.style-page .style {
  margin-top: 50px;
}
.style-page .style__description {
  text-align: center;
  max-width: 80%;
}
.style-page .style__name {
  text-align: center;
  width: 100%;
}
.style-page .style__controlls {
  margin: 25px;
  display: flex;
  align-items: center;
}
.style-page .style__controlls .btn, .style-page .style__controlls .rs-btn {
  margin-right: 10px;
  flex-shrink: 0;
  font-weight: 800;
}
.style-page .style__controlls .btn:last-child, .style-page .style__controlls .rs-btn:last-child {
  margin-right: 0;
}
.style-page .style__controlls .add-btn.disabled {
  cursor: default;
  pointer-events: none;
  background: #dae0e4;
}
.style-page .style-data {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.style-page .style-data .test {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  gap: 25px;
}
.style-page .style-data .test .style__preview {
  border-radius: 0.5em;
  padding: 25px;
}
.style-page .style-data .test .style__preview img {
  width: auto;
  max-height: 180px;
  margin: 0 20px;
}
.style-page .style-data .test .style__description {
  text-align: center;
}
.style-page .related-items .items-list {
  padding-bottom: 20px;
}
.style-page .related-items .controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.style-page .related-items .controls .full-pack-btn {
  background: #673ab7;
  color: white;
  margin: 30px 0 20px;
  height: 36px;
  padding: 25px 40px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 40px;
}
.style-page .related-items .controls .full-pack-btn:hover {
  background: mediumpurple;
}

@media screen and (max-width: 1400px) {
  .style-page .style-data .controls .collection-link {
    height: 46px;
    padding: 0 25px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .style-page .style-data .preview img {
    height: 140px;
    margin: 0 10px;
  }
  .style-page .style-data .preview .preview-item {
    height: 140px;
    width: 140px;
    margin: 0 10px;
  }
}
.collection-page .header {
  background-color: #f9fafc !important;
}
.collection-page .breadcrumb__section {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f9fafc !important;
}
.collection-page .ads {
  background-color: #f9fafc;
}
.collection-page .ads section, .collection-page .ads div {
  background-color: #f9fafc;
  margin: 0px !important;
  margin-top: 0px !important;
}
.collection-page__collection {
  padding: 20px 40px !important;
  background-color: #f9fafc;
  display: flex;
  flex-direction: row;
  /* flex-direction: row-reverse; */
  flex-wrap: nowrap;
  align-content: stretch;
  align-items: flex-start;
  gap: 20px;
  justify-content: flex-start;
}
.collection-page__collection__image {
  min-width: 540px;
  max-width: 540px;
  display: inherit;
  padding: 10px;
  border-radius: 0.5rem;
}
.collection-page__collection__image img {
  width: 100%;
  border-radius: 0.5em;
}
.collection-page__collection__info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.collection-page__collection__info__description * {
  line-height: 1.9em;
  max-width: 95%;
}
.collection-page__collection__info__description {
  overflow: hidden;
  line-height: 1em;
  font-weight: 300;
}
.collection-page__collection__info__name {
  margin: 0;
}

.related_collection__items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
.related_collection__items .related {
  width: 200px;
  padding: 7px;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  /*gap: 15px;*/
  background-color: white;
  border-radius: 0.5rem;
  position: relative;
}
.related_collection__items .related__link {
  border-radius: 0.5em;
  display: block;
}
.related_collection__items .related__link__image {
  display: inherit;
  border-radius: 0.5em;
  max-width: 100%;
}
.related_collection__items .related__description {
  text-align: center;
}
.related_collection__items .related__description__link {
  color: #333;
  font-weight: 300;
}
.related_collection__items .related:hover {
  background-color: #eaeaea;
  transform: translateY(-5px);
  transition: transform 400ms 0ms cubic-bezier(0.77, 0.2, 0.05, 1), background 400ms 0s;
}

@media screen and (max-width: 992px) {
  .collection-page__collection {
    padding: 0 5px;
  }
  .collection-page__collection__image {
    min-width: initial;
    max-width: 50%;
    width: 100%;
    display: inherit;
    padding: 0px;
    border-radius: 0.5rem;
  }
  .collection-page__collection__image img {
    width: 100%;
    border-radius: 0.5em;
  }
  .related_collection__items .related {
    width: calc(33.3333333333% - 40px);
  }
}
@media screen and (max-width: 576px) {
  .collection-page__collection {
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    padding: 0 5px;
  }
  .collection-page__collection__image {
    min-width: initial;
    max-width: initial;
    width: 100%;
    display: inherit;
    padding: 0px;
    border-radius: 0.5rem;
  }
  .collection-page__collection__image img {
    width: 100%;
    border-radius: 0.5em;
  }
  .related_collection__items .related {
    width: 100%;
  }
}
.collection-page__collection__image {
  cursor: pointer;
  --background: #FFFFFF;
  --text: black;
  position: relative;
  box-shadow: 0 0 2rem -1rem rgba(0, 0, 0, 0.05);
}
.collection-page__collection__image .multi-button {
  z-index: 0;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  border-radius: 100%;
  width: 0rem;
  height: 0rem;
  transform: translate(-50%, -50%);
  transition: 0.25s cubic-bezier(0.25, 0, 0, 1);
}
.collection-page__collection__image .multi-button button {
  display: grid;
  place-items: center;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  background: var(--background);
  color: var(--text);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.25s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0rem -0.25rem var(--background);
  background: white;
  color: #252f57;
  border: 1px solid #eaebf3;
}
.collection-page__collection__image .multi-button button a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: #333;
  text-decoration: none;
}
.collection-page__collection__image .multi-button button:hover {
  color: #4070f4;
  box-shadow: 0 0 1rem -0.25rem var(--background);
  background: #f5f5f5;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(1) {
  left: 25%;
  top: 25%;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(2):nth-child(1), .collection-page__collection__image .multi-button button:first-child:nth-last-child(2) ~ *:nth-child(1) {
  left: 37.5%;
  top: 18.75%;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(2):nth-child(2), .collection-page__collection__image .multi-button button:first-child:nth-last-child(2) ~ *:nth-child(2) {
  left: 18.75%;
  top: 37.5%;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(3):nth-child(1), .collection-page__collection__image .multi-button button:first-child:nth-last-child(3) ~ *:nth-child(1) {
  left: 50%;
  top: 15.625%;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(3):nth-child(2), .collection-page__collection__image .multi-button button:first-child:nth-last-child(3) ~ *:nth-child(2) {
  left: 25%;
  top: 25%;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(3):nth-child(3), .collection-page__collection__image .multi-button button:first-child:nth-last-child(3) ~ *:nth-child(3) {
  left: 15.625%;
  top: 50%;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(4):nth-child(1), .collection-page__collection__image .multi-button button:first-child:nth-last-child(4) ~ *:nth-child(1) {
  left: 62.5%;
  top: 18.75%;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(4):nth-child(2), .collection-page__collection__image .multi-button button:first-child:nth-last-child(4) ~ *:nth-child(2) {
  left: 37.5%;
  top: 18.75%;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(4):nth-child(3), .collection-page__collection__image .multi-button button:first-child:nth-last-child(4) ~ *:nth-child(3) {
  left: 18.75%;
  top: 37.5%;
}
.collection-page__collection__image .multi-button button:first-child:nth-last-child(4):nth-child(4), .collection-page__collection__image .multi-button button:first-child:nth-last-child(4) ~ *:nth-child(4) {
  left: 18.75%;
  top: 62.5%;
}
.collection-page__collection__image .container {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: var(--background);
  color: var(--text);
}
.collection-page__collection__image:hover .multi-button, .collection-page__collection__image .multi-button:focus-within {
  width: 12rem;
  height: 12rem;
}

.faq-page .accordion-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 15px;
}
.faq-page .accordion-wrap .tab-content {
  border: 1px solid #eaebf3;
  border-radius: 20px;
  display: none;
  padding: 20px;
  counter-reset: a;
}
.faq-page .accordion-wrap .tab-content.active {
  display: block;
}
.faq-page .accordion-wrap .tab-content .faq-image {
  text-align: center;
}
.faq-page .accordion-wrap .tab-content img {
  width: 80%;
  border-radius: 5px;
}
.faq-page .accordion-wrap .tab-content h4 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.faq-page .accordion-wrap .tab-content h4::before {
  content: counter(a);
  counter-increment: a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0px 0px 1px 2px rgba(0, 0, 0, 0.5);
}
.faq-page .accordion-wrap .tab-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  background: #fff;
  flex-grow: 1;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.faq-page .accordion-wrap .tab-menu li {
  cursor: pointer;
  padding: 10px;
  position: relative;
  height: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #eaebf3;
  border-radius: 20px;
}
.faq-page .accordion-wrap .tab-menu li h3 {
  margin: 0;
  font-weight: bolder;
}
.faq-page .accordion-wrap .tab-menu li::before {
  content: "Q:";
  padding-right: 10px;
  font-weight: bolder;
}
.faq-page .accordion-wrap .tab-menu li.active {
  background: mediumpurple;
  border-radius: 20px;
}
.faq-page .accordion-wrap .tab-menu li.active * {
  color: white;
}
.faq-page .accordion-wrap .tab-menu li.active::before {
  color: white;
}

.popup_visible {
  overflow: hidden;
}

.success__popup {
  text-align: right;
  padding: 25px 0;
  border-radius: 20px;
  background-color: #21D4FD;
  background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
  width: 900px;
  background-size: cover;
  overflow: hidden;
}
.success__popup .swiper {
  width: 100%;
  height: 100%;
}
.success__popup .swiper .slider_pagination {
  padding: 15px;
  text-align: center;
}
.success__popup .swiper .slider_pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: #ffffff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5882352941);
  border-radius: 15px;
}
.success__popup .swiper .swiper-slide {
  text-align: center;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.success__popup .swiper .swiper-slide .slide-image {
  width: 70%;
  margin: 0 auto;
}
.success__popup .swiper .swiper-slide .slide-image .w-full {
  width: 100%;
  border-radius: 10px;
}
.success__popup .swiper .swiper-slide .slide-description {
  width: 80%;
  margin-bottom: 15px;
}
.success__popup .swiper .swiper-slide .slide-buttons {
  margin-top: 15px;
}
.success__popup .swiper .swiper-slide .slide-buttons .secondary-btn {
  width: 200px;
  padding: 0px;
  height: 39px;
}
.success__popup .popup-close-btn {
  cursor: pointer;
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.9;
  z-index: 99999;
}
.success__popup .popup-close-btn {
  color: white;
}
.success__popup .popup-close-btn:hover {
  cursor: pointer;
  opacity: 1;
}
.success__popup .popup-close-btn:hover::before, .success__popup .popup-close-btn:hover::after {
  background-color: white;
  border-radius: 2px;
}
.success__popup .popup-close-btn::before, .success__popup .popup-close-btn::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 4px;
  border-radius: 2px;
  background-color: #fff0f4;
}
.success__popup .popup-close-btn::before {
  transform: rotate(45deg);
  border-radius: 15px;
}
.success__popup .popup-close-btn::after {
  transform: rotate(-45deg);
}
.success__popup h1, .success__popup h2, .success__popup h3, .success__popup h4, .success__popup h5, .success__popup p, .success__popup div {
  color: #ffffff;
}

@keyframes swing {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-4deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-4deg);
  }
  90% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes swing {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-4deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-4deg);
  }
  90% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@-moz-keyframes swing {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-4deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-4deg);
  }
  90% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.success .extension-installed {
  margin-bottom: 55px;
}
.success .extension-installed .container-full.done {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.success .extension-installed .done__browser {
  position: relative;
  width: 100%;
  max-width: 724px;
  margin: 0 auto;
}
.success .extension-installed .done__img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.success .extension-installed .done__img img {
  max-width: 100%;
}
.success .extension-installed .container-full .done__icon {
  position: absolute;
  display: block;
  right: 50px;
  bottom: 0;
  width: 70px;
  height: 70px;
  -webkit-animation: swing 3.5s linear infinite;
  -moz-animation: swing 3.5s linear infinite;
  animation: swing 3.5s linear infinite;
}
.success .extension-installed .container-full .done__icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  height: 70%;
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.01);
  z-index: 1;
}
.success .extension-installed .container-full .done__icon img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.success header {
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.success .block .footer-block {
  margin: 15px auto;
  width: auto;
}
.success .block .footer-block .btn.secondary-btn {
  width: 320px;
  height: 60px;
  margin: 0 auto;
  font-weight: bold;
}

.header {
  height: 50px;
  padding: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header form {
  max-width: 500px;
  width: 100%;
  height: 100%;
  display: flex;
}
.header .search-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.header .search-wrap .open-btn {
  z-index: 1;
  position: relative;
}
.header .search-wrap svg {
  z-index: 999999999;
  width: 26px;
  height: auto;
  position: absolute;
  top: 13px;
  left: 20px;
}
.header .search-wrap svg path {
  fill: #a8b0cd;
}
.header .search-wrap input {
  border: 1px solid #eaebf3;
  color: #353644;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  padding: 0 60px;
  box-sizing: border-box;
}
.header .search-wrap input::placeholder {
  color: #a8b0cd;
}
.header .install-btn {
  height: 100%;
  border-radius: 25px;
  padding: 0px 30px 0px 7px;
  white-space: nowrap;
  margin-left: 20px;
}
.header .install-btn svg {
  width: 36px;
  height: auto;
  margin-right: 10px;
}

@media screen and (min-width: 1200px) {
  .header .search-wrap {
    max-width: 550px;
  }
  .header .search-wrap svg {
    width: 20px;
    top: 16px;
    z-index: 999999999;
  }
  .header .search-wrap input {
    padding: 0 55px;
  }
  .header .install-btn {
    padding-right: 20px;
    padding-left: 8px;
  }
}
@media screen and (max-width: 992px) {
  .header {
    padding: 20px 20px;
  }
  .header form {
    width: 100%;
    max-width: initial;
  }
  .header .search-wrap {
    max-width: 100%;
  }
  .header .search-wrap .twitter-typeahead {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header .search-wrap {
    max-width: 100%;
  }
  .header .search-wrap .twitter-typeahead {
    width: 100%;
  }
  .header .install-btn {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .twitter-typeahead {
    width: 100% !important;
  }
  .open.menu_search {
    width: 58% !important;
  }
  .search__block.open {
    width: calc(100% - 50px);
  }
}
.progress-bar-card .card-title {
  font-weight: 400 !important;
}

.progress-bar-card .grid__item p {
  font-weight: 300 !important;
}

.footer {
  border-top: 1px solid #eaebf3;
  display: flex;
  align-items: center;
  padding: 35px 50px;
  justify-content: space-between;
  position: relative;
}
.footer .menu {
  display: flex;
  box-sizing: border-box;
}
.footer .menu .menu-column {
  margin-right: 50px;
}
.footer .menu .menu-column .title {
  font-weight: 600;
  color: #793f15;
  margin-bottom: 10px;
}
.footer .menu .menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .menu .menu-column ul li {
  display: flex;
}
.footer .menu .menu-column ul li a {
  padding: 8px 0;
  color: #353644;
  font-weight: 400;
}
.footer .menu .menu-column ul li a:hover {
  color: mediumpurple;
}
.footer .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.footer .contact span {
  margin-right: 25px;
  color: #463e31;
}
.footer .contact .primary-btn {
  border-radius: 50px;
  padding: 0;
  width: 158px;
  height: 46px;
}
.footer .to-top-btn {
  background: #673ab7;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: -25px;
  right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .to-top-btn svg {
  transform: rotate(-90deg);
  width: 26px;
  height: auto;
}
.footer .to-top-btn svg path {
  color: white;
}
.footer .to-top-btn svg g {
  color: white;
}

@media screen and (max-width: 1400px) {
  .footer {
    padding: 50px;
  }
  .footer .menu .menu-column .title {
    margin-bottom: 15px;
  }
  .footer .contact .primary-btn {
    width: 130px;
    height: 50px;
  }
  .footer .to-top-btn svg {
    width: 18px;
  }
}
@media screen and (max-width: 992px) {
  .footer .menu .menu-column:first-child {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 0;
    flex-direction: column;
  }
  .footer .menu {
    width: 100%;
    padding: 20px 30px;
  }
  .footer .contact {
    border-top: 1px solid #eaebf3;
    width: 100%;
    padding: 20px 30px;
    justify-content: flex-start;
  }
  .footer .to-top-btn {
    right: 30px;
  }
}
.install-extension-card {
  border-radius: 20px;
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background: url(/static/images/pattern.png) center center;
  margin-top: 25px;
  gap: 25px;
}
.install-extension-card .install-extension-card-title {
  text-align: center;
}
.install-extension-card .install-extension-card-description {
  margin: 10px 0 0;
  text-align: center;
  color: white;
}
.install-extension-card .install-extension-card-buttons .install-btn {
  padding: 30px 30px 30px 10px;
}
.install-extension-card .install-extension-card-buttons .install-btn:hover {
  background: mediumpurple;
  border-color: white;
}

.install-modal .modal {
  border-radius: 25px;
  padding: 30px;
  height: 280px;
  width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background: #4263df url(/static/images/pattern.png) center;
}
.install-modal .modal .caption {
  margin-top: 10px;
  text-align: center;
  max-width: 625px;
}
.install-modal .modal p {
  margin-top: 12px;
  text-align: center;
}
.install-modal .modal .install-btn {
  margin-top: 5px;
}
.install-modal .modal .close-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 0 25px 0 25px;
  background: white;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.install-modal .modal .close-btn svg {
  width: 16px;
  height: auto;
}
.install-modal .modal .close-btn svg path {
  fill: #4263df;
}

.progress-bar-card {
  border: 1px solid #eaebf3;
  box-sizing: border-box;
  padding: 7px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.progress-bar-card .preview {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.progress-bar-card .preview img {
  height: 90px;
  width: auto;
  margin: 0 5px;
}
.progress-bar-card p {
  margin: 10px 0 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  box-sizing: border-box;
  font-weight: 300 !important;
}
.progress-bar-card .controls {
  display: flex;
  margin-top: 15px;
}
.progress-bar-card .controls .btn:last-child {
  margin-right: 0;
}
.progress-bar-card .controls .add-btn.disabled {
  cursor: default;
  pointer-events: none;
  background: #DAE0E4;
}

@media screen and (max-width: 1400px) {
  .progress-bar-card p {
    padding: 0 5px;
  }
  .progress-bar-card .preview {
    height: 210px;
  }
}
@media screen and (max-width: 768px) {
  .progress-bar-card {
    padding-bottom: 10px;
  }
  .progress-bar-card .preview {
    height: 130px;
  }
  .progress-bar-card p {
    margin-top: 5px;
  }
}
@media screen and (max-width: 576px) {
  .progress-bar-card .preview {
    height: 160px;
  }
}
.collection-card-big {
  background-size: contain;
  background-position: center;
  border-radius: 0.5rem;
  height: 230px;
  width: 390px;
  color: white;
  box-sizing: border-box;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
}
.collection-card-big::after {
  content: "";
  background-image: inherit;
  position: absolute;
  top: 45px;
  width: 90%;
  height: 200px;
  z-index: -1;
  background-size: cover;
  filter: blur(15px);
  left: 5%;
}
.collection-card-big h3 {
  margin: 0;
  color: white;
}
.collection-card-big p {
  margin: 4px 0 0;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

@media screen and (max-width: 1400px) {
  .collection-card-big {
    height: 270px;
    width: 450px;
  }
  .collection-card-big::after {
    height: calc(100% - 45px);
  }
}
.collection__small {
  border: 1px solid #eaebf3;
  box-sizing: border-box;
  border-radius: 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 10px;
}
.collection__small__description {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.collection__small__image img {
  border-radius: 0.5rem;
  padding: 0px;
  margin: 0px;
}
.collection__small__title h3 {
  margin: 0;
}
.collection__small__controlls {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.collection__small__controlls .btn {
  padding: 0 20px;
  height: 36px;
  margin-right: 10px;
  width: auto;
}

@media screen and (min-width: 1200px) {
  .install-btn {
    height: 54px;
    border-radius: 40px;
    padding-right: 20px;
    padding-left: 8px;
  }
  .install-btn svg {
    width: 40px;
    margin-right: 16px;
  }
}
.share-button {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  margin-right: 0;
}
.share-button svg {
  width: 16px;
  height: auto;
  pointer-events: none;
}
.share-button svg path {
  fill: #252f57;
}
.share-button .popup {
  bottom: calc(100% + 3px);
  left: 50%;
  position: absolute;
  width: auto;
  padding: 12px 6px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  visibility: hidden;
  transform-origin: bottom;
  transform: translate(-50%, -0.67708vw) scale(0);
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 8px 0px;
  transition: all 0.2s ease;
}
.share-button .popup:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: white;
  bottom: -4px;
  left: 50%;
}
.share-button .popup .popup__sharing-button {
  width: 36px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: none;
}
.share-button .popup .popup__sharing-button svg {
  width: 24px;
  height: auto;
}
.share-button .popup .popup__sharing-button svg path {
  fill: #353644;
}

.share-button.open {
  background-color: whitesmoke;
}
.share-button.open .popup {
  transform: translate(-50%, -0.67708vw) scale(1);
  visibility: visible;
  opacity: 1;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.breadcrumb ul li {
  display: flex;
  align-items: center;
}
.breadcrumb ul li .separator {
  height: 10px;
  width: auto;
  flex-shrink: 0;
  margin: 0 15px;
}
.breadcrumb ul li .separator path {
  fill: #a8b0cd;
}
.breadcrumb ul li a {
  display: flex;
  align-items: center;
  color: #673ab7;
  white-space: nowrap;
}
.breadcrumb ul li a:hover {
  color: mediumpurple;
}
.breadcrumb ul li a .icon {
  height: 16px;
  width: auto;
  flex-shrink: 0;
  margin-right: 8px;
}
.breadcrumb ul li a .icon path {
  fill: #252f57;
}
.breadcrumb ul li:last-child a {
  color: #a8b0cd;
}
.breadcrumb ul li:last-child a .icon path {
  fill: #a8b0cd;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: right;
}
.pager .pagination {
  margin: 0 10px;
  display: flex;
  list-style: none;
  padding: 0;
}
.pager .pagination li {
  outline: none;
  padding: 0;
  margin: 0 2px;
  height: 38px;
  width: 38px;
  cursor: pointer;
  user-select: none;
}
.pager .pagination li.active a {
  color: white;
}
.pager .pagination li a {
  outline: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  line-height: 21px;
  color: #252f57;
  user-select: none;
}
.pager .pagination li:last-child {
  margin-left: 8px;
}
.pager .pagination li:before {
  display: none;
}
.pager .pagination li.active {
  background: #673ab7;
  border-radius: 8px;
}
.pager .pagination li.hidden {
  display: none;
}
.pager .next-btn {
  height: 38px;
  padding: 0 5px;
  color: #673ab7;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.pager .next-btn.disabled {
  opacity: 0.3;
  cursor: default;
}
.pager .next-btn svg {
  margin: 0 10px;
  width: 18px;
  height: auto;
  transform: translateX(-1px);
  user-select: none;
}
.pager .next-btn svg path {
  fill: #673ab7;
}
.pager .prev-btn {
  height: 38px;
  padding: 0 5px;
  color: #673ab7;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.pager .prev-btn.disabled {
  opacity: 0.3;
  cursor: default;
}
.pager .prev-btn svg {
  margin: 0 10px;
  width: 18px;
  height: auto;
  user-select: none;
  transform: rotate(180deg);
}
.pager .prev-btn svg path {
  fill: #673ab7;
}

@media screen and (max-width: 992px) {
  .pager {
    justify-content: center;
  }
}
.main p {
  box-sizing: border-box;
  font-weight: 300 !important;
}
.main section header {
  justify-content: space-between;
}

.text-muted {
  color: #a8b0cd;
}

.grid__item {
  color: #000 !important;
}

.text-center {
  text-align: center;
}

p a {
  color: rgb(103, 58, 183);
}

h1, h2, h3, h4, h5, h6 {
  color: #252f57;
  /*font-weight: 600;*/
}

section header {
  height: 70px;
  display: flex;
  align-items: center;
}
section header.header {
  margin-top: 10px;
  margin-bottom: 0;
}
section h2 {
  margin: 0;
}

.inner-content {
  color: #222224;
  margin: 0px auto 50px;
}
.inner-content header {
  margin-bottom: 10px;
  margin-top: 20px;
}
.inner-content h2 {
  color: #222224;
  margin-bottom: 20px;
}
.inner-content p {
  margin-bottom: 20px;
  margin-top: 0;
  color: #222224;
}
.inner-content p:first-child {
  margin-top: 0;
}
.inner-content ul {
  color: #222224;
}
.inner-content ul li {
  margin-bottom: 8px;
}
.inner-content ul li h3 {
  margin-bottom: 8px;
}
.inner-content ul li p {
  margin-top: 0;
}

.page {
  flex-direction: column;
  display: flex;
}
.page .page-content {
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}
.page .page-content .pager {
  margin: 20px 0px;
}

.row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.col {
  box-sizing: border-box;
}

.v--modal {
  background: none !important;
  width: 0 !important;
  height: 0 !important;
}

.v--modal-overlay {
  background: transparent !important;
}

.modal-enter-active {
  transition: 0.2s ease;
}
.modal-enter-active .t-modal .modal {
  transition: 0.2s ease;
  transform: translateY(0px);
  opacity: 1;
}

.modal-leave-active {
  transition: 0.2s ease;
}
.modal-leave-active .t-modal .modal {
  transition: 0.2s ease;
  transform: translateY(0px);
  opacity: 1;
}

.modal-enter {
  transition: 0.2s ease;
}
.modal-enter .t-modal .modal {
  transform: translateY(30px);
  opacity: 0;
}

.modal-leave-to {
  transition: 0.2s ease;
}
.modal-leave-to .t-modal .modal {
  transform: translateY(30px);
  opacity: 0;
}

.overlay-enter-active {
  transition: 0.2s ease;
}
.overlay-enter-active .t-modal {
  transition: 0.2s ease;
  opacity: 1;
}

.overlay-leave-active {
  transition: 0.2s ease;
}
.overlay-leave-active .t-modal {
  transition: 0.2s ease;
  opacity: 1;
}

.overlay-enter {
  transition: 0.2s ease;
}
.overlay-enter .t-modal {
  opacity: 0;
  transition: 0.2s ease;
}

.overlay-leave-to {
  transition: 0.2s ease;
}
.overlay-leave-to .t-modal {
  transition: 0.2s ease;
  opacity: 0;
}

.btn-rounded {
  border-radius: 4px;
  border: none;
  border-bottom: 3px solid;
  cursor: pointer;
  color: white;
  text-align: center;
  padding: 11px 0;
}

.t-input {
  background: #fbfbfb;
  border: 1px solid #000000;
  resize: none;
  padding: 1em;
  box-sizing: border-box;
  outline: none;
}

.btn {
  cursor: pointer;
  flex-shrink: 0;
}

.primary-btn {
  background: #673ab7;
  color: white;
  border: none;
}
.primary-btn.disabled {
  background: #595959;
}
.primary-btn:hover {
  background: mediumpurple;
}

.primary-btn, .secondary-btn {
  height: 36px;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 30px;
}

.secondary-btn {
  background: white;
  color: #252f57;
  border: 1px solid #eaebf3;
}
.secondary-btn:hover {
  background: #f5f5f5;
}

.y-badge {
  background: #673ab7;
  border-radius: 8px;
  color: white;
  min-width: 40px;
  height: 32px;
  margin-left: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;
}

input {
  outline: none;
  padding: 0px;
}

textarea {
  color: #222224;
  box-sizing: border-box;
  border: 1px solid #eaebf3;
  background: white;
  border-radius: 15px;
  padding: 15px 20px;
  line-height: 1.8;
  outline: none;
}
textarea::placeholder {
  color: #8f8f8f;
}

.shake {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
}

.pulse {
  animation: pulse 2s ease infinite;
}

.flash-once {
  animation: flash-once 3.5s ease 1;
}

.fade-in {
  animation: fade-in 0.3s ease-in-out;
}

.spin {
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.bounceIn {
  animation-name: bounceIn;
  transform-origin: center bottom;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

.container {
  max-width: 1260px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
  width: 100%;
}

body {
  margin: 0;
}

svg {
  outline: none;
}

a {
  text-decoration: none;
}

button {
  outline: none;
  padding: 0px;
}

.logo {
  color: white;
}

.b-modal {
  background: #383838;
  padding: 0 20px 20px;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.2s ease-out;
  width: 400px;
  box-sizing: border-box;
  border-radius: 10px;
}
.b-modal .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2D2D2D;
  padding: 20px 0 8px 0;
}
.b-modal .header .title {
  text-align: left;
  line-height: 18px;
  color: #929292;
}
.b-modal .header .closeBtn {
  flex-direction: row;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
}
.b-modal .header .closeBtn svg {
  width: 14px;
  height: auto;
  fill: #929292;
}
.b-modal .modal-text {
  line-height: 18px;
  color: #EAEAEA;
  margin-top: 15px;
  text-align: left;
}
.b-modal .inputWrap {
  margin-top: 20px;
  width: 100%;
}
.b-modal .inputWrap .title {
  line-height: 18px;
  color: #EAEAEA;
  margin-bottom: 5px;
  text-align: left;
}
.b-modal .inputWrap input {
  line-height: 24px;
  width: 100%;
  background: #404040;
  color: #8E8E8E;
  box-shadow: none;
  box-sizing: border-box;
  border-radius: 5px;
  margin: 0;
  border: 1px solid #4C4C4C;
  padding: 5px 5px 5px 15px;
  outline: none;
}
.b-modal .btn {
  margin-top: 30px;
  background: #404040;
  color: white;
  line-height: 18px;
  cursor: pointer;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.b-modal .btn.primary {
  background: #0071f0;
}

.b-modal.open {
  display: block;
  opacity: 1;
  transform: unset;
  visibility: visible;
}

.t-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  background: rgba(48, 48, 48, 0.418);
  transition: 0.2s ease;
}
.t-modal .modal {
  width: 650px;
  height: 600px;
  margin: 30px;
  box-sizing: border-box;
  background: #262626;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.45);
}
.t-modal .modal header {
  position: relative;
  padding: 22px 26px 15px;
  flex-shrink: 0;
}
.t-modal .modal header .title {
  color: white;
}
.t-modal .modal header .close-btn {
  position: absolute;
  top: 16px;
  right: 14px;
  padding: 10px;
  display: flex;
  cursor: pointer;
}
.t-modal .modal header .close-btn svg {
  width: 14px;
  height: auto;
}
.t-modal .modal header .close-btn svg path {
  fill: white;
}
.t-modal .modal main {
  display: flex;
  flex-grow: 1;
  height: calc(100% - 62px);
  position: relative;
  box-sizing: border-box;
}
.t-modal .modal main .section-block {
  display: flex;
  align-items: center;
  margin-top: 28px;
}
.t-modal .modal main .section-block .section-block_title {
  color: white;
  flex-shrink: 0;
  width: 150px;
}
.t-modal .modal main .section-block .section-block_controls {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.t-modal .modal main .controls {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
}
.t-modal .modal main .controls .controls-btn {
  color: white;
  border-radius: 8px;
  width: 90px;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  margin-right: 20px;
}
.t-modal .modal main .controls .cancel {
  background: #343434;
}
.t-modal .modal main .controls .confirm {
  background: #0c6ce4;
}

body {
  height: 100%;
  display: flex;
  line-height: 1.5;
}
body .sidebar {
  flex-shrink: 0;
}
body .wrapper {
  width: calc(100% - 272px);
  height: 100%;
}
body.no-sidebar .wrapper {
  width: 100%;
}

.t-modal.open {
  visibility: visible;
  opacity: 1;
}
.t-modal.open .modal {
  opacity: 1;
  transform: translateY(0);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 25px;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 25px;
}

@media screen and (max-width: 992px) {
  section header {
    margin-top: 10px;
  }
  .page .page-content {
    padding: 0px 30px;
  }
  .breadcrumb ul li a {
    margin-top: 15px;
  }
  .breadcrumb ul li .separator {
    margin-top: 15px;
  }
  .collections-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
  .items-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .collections-grid {
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
  .items-grid {
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
}
@media screen and (max-width: 1400px) {
  section header {
    margin-top: 38px;
  }
  .inner-content {
    max-width: 800px;
    line-height: 1.8;
    margin-right: auto;
    margin-left: 0;
  }
  .inner-content header {
    margin-bottom: 0px;
    margin-top: 38px;
  }
  .inner-content h2 {
    margin-bottom: 10px;
  }
  .page .page-content .inner-content p {
    line-height: 1.8;
  }
  .breadcrumb ul {
    line-height: 1.4;
  }
  .breadcrumb ul li a .icon {
    height: 12px;
  }
  body .wrapper {
    width: calc(100% - 270px);
  }
}
@media screen and (max-width: 992px) {
  section header {
    margin-top: 10px;
  }
  .page .page-content {
    padding: 0px 0px;
  }
  .breadcrumb ul li a, .breadcrumb ul li .separator {
    margin-top: 15px;
  }
  .collections-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  }
  .items-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
  body {
    flex-direction: column;
  }
  body .sidebar, body .wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .collections-grid {
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
  .items-grid {
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
}
.install-btn.primary-btn {
  width: auto;
  gap: 10px;
}
.install-btn.primary-btn svg {
  width: 40px;
  height: 40px;
  margin-right: 0px;
}
.install-btn.primary-btn span {
  white-space: nowrap;
}

.big-logo .header-actions .install-btn.primary-btn {
  padding: 25px 25px 25px 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}
.big-logo .header-actions .install-btn.primary-btn svg {
  margin: 0;
}
.big-logo .banner {
  height: 300px;
  background-image: url(/bg2.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-end;
}
.big-logo .banner .banner-text {
  color: #535e64;
}

@media screen and (max-width: 1200px) {
  .big-logo .banner .banner-text {
    width: 400px !important;
  }
  .big-logo .banner .header-actions svg {
    height: 36px;
  }
}
.html5-video-player {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  outline: 0;
  color: #eee;
  text-align: left;
  direction: ltr;
  line-height: 1.3;
  touch-action: manipulation;
  border-radius: 15px;
}
.html5-video-player a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.1s cubic-bezier(0, 0, 0.2, 1);
  transition: color 0.1s cubic-bezier(0, 0, 0.2, 1);
  outline: 0;
}
.html5-video-player h1, .html5-video-player h2 {
  margin: 0;
}
.html5-video-player svg {
  pointer-events: none;
}
.html5-video-player svg .ytp-svg-fill {
  fill: #fff;
}
.html5-video-player svg .ytp-svg-shadow {
  stroke: #000;
  stroke-opacity: 0.15;
  stroke-width: 2px;
  fill: none;
}
.html5-video-player svg .ytp-svg-shadow-fill {
  fill: #000;
  fill-opacity: 0.15;
  stroke: none;
}
.html5-video-player svg .ytp-fullscreen-button-corner-0, .html5-video-player svg .ytp-fullscreen-button-corner-1, .html5-video-player svg .ytp-fullscreen-button-corner-2, .html5-video-player svg .ytp-fullscreen-button-corner-3 {
  -webkit-transform: none;
  transform: none;
}
.html5-video-player::-webkit-scrollbar {
  width: 10px;
  background-color: #424242;
}
.html5-video-player::-webkit-scrollbar-track {
  background-color: #424242;
}
.html5-video-player::-webkit-scrollbar-thumb {
  background-color: #8e8e8e;
  border: 1px solid #424242;
  border-radius: 5px;
}
.html5-video-player .ytp-button {
  border: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
  text-align: inherit;
  font-family: inherit;
  line-height: inherit;
  outline: 0;
  cursor: pointer;
}
.html5-video-player .ytp-button:focus {
  outline: 0;
}
.html5-video-player .ytp-button[aria-disabled=true], .html5-video-player .ytp-button[disabled] {
  opacity: 0.5;
}
.html5-video-player .html5-video-container {
  z-index: 10;
  position: relative;
  border-radius: 15px;
}
.html5-video-player .ytp-gradient-top, .html5-video-player .ytp-gradient-bottom {
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  pointer-events: none;
}
.html5-video-player .ytp-chrome-top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  left: 12px;
  right: 12px;
  top: 0;
  z-index: 59;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  position: absolute;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.html5-video-player .ytp-chrome-top .ytp-title {
  overflow: hidden;
  flex: 1;
  display: flex;
}
.html5-video-player .ytp-chrome-top .ytp-title .ytp-title-text {
  vertical-align: top;
  padding-top: 12px;
  flex: 1;
  max-width: 100%;
  padding-left: 4px;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
}
.html5-video-player .ytp-gradient-top {
  height: 48px;
  padding-bottom: 50px;
  top: 0;
  z-index: 25;
  background-position: top;
}
.html5-video-player .ytp-gradient-bottom {
  height: 100%;
  bottom: 0;
  z-index: 24;
  background-position: bottom;
}
.html5-video-player .ytp-chrome-bottom {
  bottom: 0;
  height: 48px;
  width: calc(100% - 24px);
  z-index: 60;
  padding-top: 3px;
  text-align: left;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  position: absolute;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 47px;
  height: 5px;
  cursor: pointer;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-heat-map-container {
  opacity: 0;
  display: none;
  width: 100%;
  position: absolute;
  overflow: hidden;
  height: 0;
  bottom: 5px;
  transition: bottom 0.1s cubic-bezier(0.4, 0, 1, 1);
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-heat-map-container .ytp-heat-map-edu {
  display: none;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 31;
  outline: none;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-chapters-container {
  z-index: 32;
  position: relative;
  left: 0;
  height: 100%;
  width: 100%;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-chapters-container .ytp-chapter-hover-container {
  z-index: 32;
  position: relative;
  left: 0;
  height: 100%;
  float: left;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-chapters-container .ytp-chapter-hover-container .ytp-progress-bar-padding {
  position: absolute;
  width: 100%;
  height: 16px;
  bottom: 0;
  z-index: 28;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-chapters-container .ytp-chapter-hover-container .ytp-progress-list {
  z-index: 39;
  background: rgba(255, 255, 255, 0.2);
  height: 100%;
  transform: scaleY(0.6);
  transition: transform 0.1s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.1s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-chapters-container .ytp-chapter-hover-container .ytp-progress-list .ytp-play-progress {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  z-index: 34;
  left: 0;
  transform: scaleX(0.5);
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-clip-start-exclude, .html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-clip-end-exclude {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  display: none;
  z-index: 37;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: background-color 0.1s cubic-bezier(0.4, 0, 1, 1);
  transition: background-color 0.1s cubic-bezier(0.4, 0, 1, 1);
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-clip-start-exclude {
  width: 0;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-clip-end-exclude {
  left: 100%;
  width: 0;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-scrubber-container {
  position: absolute;
  top: -4px;
  /*left: -6.5px;*/
  left: calc(50% - 24px);
  transform: translateX(50%);
  z-index: 43;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-scrubber-container .ytp-scrubber-button {
  height: 13px;
  width: 13px;
  border-radius: 6.5px;
  transition: transform 0.1s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.1s cubic-bezier(0.4, 0, 1, 1);
  transform: scale(0);
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-scrubber-container .ytp-scrubber-button .ytp-scrubber-pull-indicator {
  position: absolute;
  z-index: 42;
  bottom: 16.9px;
  left: 6.5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-scrubber-container .ytp-scrubber-button .ytp-scrubber-pull-indicator:before, .html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-scrubber-container .ytp-scrubber-button .ytp-scrubber-pull-indicator:after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  opacity: 0;
  width: 6.5px;
  height: 6.5px;
  border-style: solid;
  border-width: 2px 0 0 2px;
  border-color: #eaeaea;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-scrubber-container .ytp-scrubber-button .ytp-scrubber-pull-indicator:after {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-progress-bar .ytp-scrubber-container .ytp-scrubber-button .ytp-scrubber-pull-indicator:before {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-fine-scrubbing-container {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 0;
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-clip-start {
  display: none;
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -4.5px;
  margin-left: -7px;
  z-index: 44;
  transform: scaleY(0.2142857143);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.1s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.1s cubic-bezier(0.4, 0, 1, 1);
}
.html5-video-player .ytp-chrome-bottom .ytp-progress-bar-container .ytp-clip-start svg {
  display: block;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls {
  height: 48px;
  line-height: 48px;
  text-align: left;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-play-button {
  width: 46px;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-left-controls {
  height: 100%;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-left-controls .ytp-play-button, .html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-left-controls .ytp-next-button, .html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-left-controls .ytp-prev-button {
  flex: 0 0 auto;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-right-controls {
  height: 100%;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-right-controls .ytp-settings-button {
  position: relative;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-right-controls .ytp-settings-button svg {
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.1s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.1s cubic-bezier(0.4, 0, 1, 1);
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-right-controls .ytp-settings-button.ytp-hd-quality-badge:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 5px;
  height: 9px;
  width: 13px;
  background-color: #f00;
  border-radius: 1px;
  line-height: normal;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-right-controls .ytp-fullscreen-button::after {
  content: "";
  display: block;
  width: 12px;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 100%;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-button {
  opacity: 0.9;
  display: inline-block;
  width: 48px;
  padding: 0 2px;
  -webkit-transition: opacity 0.1s cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.1s cubic-bezier(0.4, 0, 1, 1);
  overflow: hidden;
  height: 100%;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-button.ytp-mute-button {
  padding: 6px;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-button.ytp-next-button {
  padding: 0;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-button.ytp-miniplayer-button {
  padding: 0 4px;
}
.html5-video-player .ytp-chrome-bottom .ytp-chrome-controls .ytp-button.ytp-remote-button {
  padding: 0 4px;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-chrome-controls {
  display: flex;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-left-controls {
  display: flex;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-left-controls .ytp-prev-button::before, .html5-video-player.ytp-exp-bottom-control-flexbox .ytp-left-controls .ytp-play-button::before {
  content: "";
  display: block;
  width: 12px;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: -12px;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-volume-area {
  display: flex;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-volume-area .ytp-volume-panel {
  display: inline-block;
  width: 0;
  height: 100%;
  transition: margin 0.2s cubic-bezier(0.4, 0, 1, 1), width 0.2s cubic-bezier(0.4, 0, 1, 1);
  cursor: pointer;
  outline: 0;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-volume-area .ytp-volume-panel .ytp-volume-slider {
  height: 100%;
  min-height: 36px;
  position: relative;
  overflow: hidden;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-volume-area .ytp-volume-panel .ytp-volume-slider .ytp-volume-slider-handle {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  margin-top: -6px;
  background: #fff;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-volume-area .ytp-volume-panel .ytp-volume-slider .ytp-volume-slider-handle:before, .html5-video-player.ytp-exp-bottom-control-flexbox .ytp-volume-area .ytp-volume-panel .ytp-volume-slider .ytp-volume-slider-handle:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  height: 3px;
  margin-top: -2px;
  width: 64px;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-volume-area .ytp-volume-panel .ytp-volume-slider .ytp-volume-slider-handle:before {
  left: -58px;
  background: #fff;
}
.html5-video-player.ytp-exp-bottom-control-flexbox .ytp-volume-area .ytp-volume-panel .ytp-volume-slider .ytp-volume-slider-handle:after {
  left: 6px;
  background: rgba(255, 255, 255, 0.2);
}
.html5-video-player .ytp-swatch-background-color {
  background-color: #f00;
}

a {
  cursor: pointer;
}

.page-loader {
  min-height: 670px;
  height: 670px;
  flex-shrink: 0;
}

.primary-btn, .btn {
  cursor: pointer !important;
}

/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

:root {
  --swiper-navigation-size: 30px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.notifications-container {
  max-height: 100vh;
  max-width: 320px;
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.notifications-container.notify-is-x-center {
  left: 50%;
  transform: translateX(-50%);
}

.notifications-container.notify-is-y-center {
  top: 50%;
  transform: translateY(-50%);
}

.notifications-container.notify-is-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.notifications-container.notify-is-left {
  left: 0;
}

.notifications-container.notify-is-right {
  right: 0;
}

.notifications-container.notify-is-top {
  top: 0;
}

.notifications-container.notify-is-bottom {
  bottom: 0;
}

.notifications-container.notify-is-x-center.notify-is-top {
  top: var(--distance);
}

.notifications-container.notify-is-x-center.notify-is-bottom {
  bottom: var(--distance);
}

.notifications-container > * {
  pointer-events: auto;
}

.notify {
  --notify-error: rgb(235, 87, 87);
  --notify-error-progress: rgb(192, 69, 69);
  --notify-success: rgb(111, 207, 151);
  --notify-success-progress: rgb(84, 170, 120);
  --notify-warning: rgb(242, 201, 76);
  --notify-warning-progress: rgb(196, 166, 79);
  --notify-info: rgb(81, 205, 243);
  --notify-info-progress: rgb(84, 169, 196);
  --notify-gray: rgb(51, 51, 51);
  --notify-gray-2: rgb(77, 77, 77);
  --notify-gray-3: rgb(130, 130, 130);
  --notify-white: rgb(255, 255, 255);
  --notify-white-2: rgba(255, 255, 255, 0.8);
  --notify-padding: 0.75rem;
  --notify-icon-size: 32px;
  --notify-close-icon-size: 16px;
  align-items: center;
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow: hidden;
  padding: var(--notify-padding);
  position: relative;
  text-decoration: none;
  transition-timing-function: ease;
  width: 100%;
}

.notify__icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: var(--notify-icon-size);
  justify-content: center;
  margin-right: 12px;
  width: var(--notify-icon-size);
}

.notify__close {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: var(--notify-close-icon-size);
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  user-select: none;
  width: var(--notify-close-icon-size);
}

.notify__close * {
  pointer-events: none;
}

.notify__title {
  font-size: 1rem;
  font-weight: 600;
  padding-right: calc(var(--notify-padding) + var(--notify-close-icon-size));
}

.notify__text {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.notify--type-1 {
  background-color: #fff;
  border: 1px solid currentColor;
}

.notify--type-1 .notify__close {
  color: var(--notify-gray-3);
}

.notify--type-1 .notify__title {
  color: var(--notify-gray);
}

.notify--type-1 .notify__text {
  color: var(--notify-gray-2);
}

.notify--type-2 {
  color: var(--notify-gray);
}

.notify--type-3 {
  color: var(--notify-white);
}

.notify--type-3 .notify__text {
  color: var(--notify-white-2);
}

.notify--error.notify--type-1 {
  box-shadow: 0 2px 26px rgba(215, 0, 0, 0.1);
  color: var(--notify-error);
}

.notify--error.notify--type-2, .notify--error.notify--type-3 {
  background-color: var(--notify-error);
}

.notify--warning.notify--type-1 {
  box-shadow: 0 2px 26px rgba(242, 201, 76, 0.1);
  color: var(--notify-warning);
}

.notify--warning.notify--type-2, .notify--warning.notify--type-3 {
  background-color: var(--notify-warning);
}

.notify--success.notify--type-1 {
  box-shadow: 0 2px 26px rgba(82, 215, 0, 0.1);
  color: var(--notify-success);
}

.notify--success.notify--type-2, .notify--success.notify--type-3 {
  background-color: var(--notify-success);
}

.notify--info.notify--type-1 {
  box-shadow: 0 2px 26px rgba(84, 175, 202, 0.1);
  color: var(--notify-info);
}

.notify--info.notify--type-2, .notify--info.notify--type-3 {
  background-color: var(--notify-info);
}

.notify--fade {
  opacity: 0;
  will-change: opacity;
}

.notify--fadeIn {
  opacity: 1;
}

.notify--slide {
  opacity: 0;
  will-change: opacity, transform;
}

.notify-is-center .notify--slide, .notify-is-y-center .notify--slide, .notify-is-x-center:not(.notify-is-bottom) .notify--slide {
  transform: translateY(-20px);
}

.notify-is-x-center.notify-is-bottom .notify--slide {
  transform: translateY(20px);
}

.notify-is-right .notify--slide {
  transform: translateX(calc(var(--distance) + 110%));
}

.notify-is-left .notify--slide {
  transform: translateX(calc(var(--distance) * -1 - 110%));
}

.notify-is-x-center:not(.notify-is-bottom) .notify--slideIn, .notify-is-center .notify--slideIn, .notify-is-y-center .notify--slideIn, .notify-is-x-center.notify-is-bottom .notify--slideIn {
  opacity: 1;
  transform: translateY(0);
}

.notify-is-right .notify--slideIn, .notify-is-left .notify--slideIn {
  opacity: 1;
  transform: translateX(0);
}

.notify-is-left .notify {
  left: var(--distance);
}

.notify-is-right .notify {
  right: var(--distance);
}

.notify-is-top .notify, .notify-is-center .notify, .notify-is-y-center .notify, .notify-is-x-center.notify-is-top .notify {
  margin-top: var(--gap);
}

.notify-is-bottom .notify, .notify-is-x-center:not(.notify-is-top) .notify {
  margin-bottom: var(--gap);
}

.notify.notify-autoclose {
  --progress-height: 5px;
  padding-bottom: calc(var(--notify-padding) + var(--progress-height));
}

.notify.notify-autoclose::before {
  animation: progress calc(var(--timeout) * 1ms) linear forwards;
  bottom: 0;
  content: "";
  height: var(--progress-height);
  left: 0;
  position: absolute;
  transform: scale3d(1, 1, 1);
  transform-origin: left;
  width: 100%;
}

@keyframes progress {
  to {
    transform: scale3d(0, 1, 1);
  }
}
.notify.notify-autoclose.notify--error::before {
  background-color: var(--notify-error-progress);
}

.notify.notify-autoclose.notify--warning::before {
  background-color: var(--notify-warning-progress);
}

.notify.notify-autoclose.notify--success::before {
  background-color: var(--notify-success-progress);
}

.notify.notify-autoclose.notify--info::before {
  background-color: var(--notify-info-progress);
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menu.active {
  transform: translateX(0%) !important;
  background-color: white !important;
}

@media screen and (max-width: 768px) {
  .search .close-btn.btn, .search .search-btn.btn {
    display: none !important;
  }
}

.home {
  min-height: auto;
}
.home .banner-text {
  width: 60%;
}
.home .latest {
  margin-top: 0px;
}
.home .btns_all {
  display: flex;
  flex-direction: row-reverse;
  margin: 15px 0px;
}
.home .collections-slider-section {
  padding-bottom: 0px;
}
.home .collections-slider-section header {
  margin-top: 0px;
}
.home .block.tops {
  padding-bottom: 0px;
}
.home .block.tops header {
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  .home .tops, .home .latest, .home .collections {
    padding: 0px 10px !important;
  }
}
@media screen and (min-width: 769px) {
  .home .tops, .home .latest, .home .collections {
    padding: 0px 20px !important;
  }
}
@media screen and (max-width: 991px) {
  .home .tops, .home .latest, .home .collections {
    padding: 0px 20px !important;
  }
}
@media screen and (max-width: 1024px) {
  .home .tops, .home .latest, .home .collections {
    padding: 0px 30px !important;
  }
}
@media screen and (min-width: 1025px) {
  .home .tops, .home .latest, .home .collections {
    padding: 0px 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .home .collections .collections-big {
    flex-direction: row;
  }
  .home .collections .collections-big .collection-card-home {
    width: 100% !important;
  }
}
@media screen and (min-width: 769px) {
  .home .collections .collections-big {
    flex-direction: row;
  }
  .home .collections .collections-big .collection-card-home {
    max-width: 360px;
  }
}
.home .nopadding {
  padding: 10px !important;
}
.home .nopadding .block_products__header {
  padding-left: 40px;
}
.home .nopadding .block_products__footer {
  padding-left: 40px;
}
.home .block_products {
  background: #f9fafc;
}
.home .block_products__header {
  padding: 40px 0px;
}
.home .block_products__header__name {
  color: #252f57;
  /*font-weight: 700;*/
  font-size: 1.5em;
}
.home .block_products__swiper .slide-container {
  padding: 0px 0px 40px 0px !important;
}
.home .block_products__swiper .slide-container .slide-content {
  margin: 0 50px;
  overflow: hidden;
  border-radius: 0.5rem;
}
.home .block_products__swiper .slide-container .slide-content .card {
  border-radius: 0.5rem;
  background-color: #fff;
  min-width: 320px;
  width: 300px;
}
.home .block_products__swiper .slide-container .slide-content .card .image-content, .home .block_products__swiper .slide-container .slide-content .card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.home .block_products__swiper .slide-container .slide-content .card .card-content .name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home .block_products__swiper .slide-container .slide-content .card .card-content .description {
  color: #707070;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home .block_products__swiper .slide-container .slide-content .card .card-content__buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.home .block_products__swiper .slide-container .slide-content .card .card-content__buttons .btn.icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  padding: 0 7px;
}
.home .block_products__swiper .slide-container .slide-content .card .card-content__buttons .btn.icon.w36 {
  width: 36px;
  height: 36px;
}
.home .block_products__swiper .slide-container .slide-content .card .card-content__buttons .btn.icon:hover {
  color: #4070f4;
}
.home .block_products__swiper .slide-container .slide-content .card .card-content__buttons .btn.icon:hover svg {
  transition-duration: 0.1s;
  transform: scale(1.1);
  /*transform: rotate(360deg);*/
}
.home .block_products__swiper .slide-container .slide-content .card .card-content__buttons .btn.website {
  padding: 4px 10px 4px 7px;
}
.home .block_products__swiper .slide-container .slide-content .card .card-content__buttons__installs {
  display: flex;
  gap: 2px;
}
.home .block_products__swiper .slide-container .slide-content .card .image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
  width: 100%;
}
.home .block_products__swiper .slide-container .slide-content .card .image-content .overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0 !important;
}
.home .block_products__swiper .slide-container .slide-content .card .image-content .card-image {
  position: relative;
  height: 160px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
  visibility: hidden;
}
.home .block_products__swiper .slide-container .slide-content .card .image-content .card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.home .block_products__swiper .slide-container .swiper-button-next {
  right: 0;
}
.home .block_products__swiper .slide-container .swiper-button-prev {
  left: 0;
}
.home .block_products__footer {
  padding: 10px 0px;
}
.home .swiper-navBtn {
  color: #6E93f7;
  transition: color 0.3s ease;
}
.home .swiper-navBtn:hover {
  color: #4070F4;
}
.home .swiper-navBtn::before, .home .swiper-navBtn::after {
  font-size: 28px;
}
.home .swiper-pagination-bullet {
  background-color: #6E93f7;
  opacity: 1;
}
.home .swiper-pagination-bullet-active {
  background-color: #4070F4;
}
.home .sidebar .menu, .home .grid__item {
  background: none !important;
}
.home .section.big-logo {
  padding: 0 25px !important;
}
.home .install-block {
  display: flex;
  padding: 40px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .home .install-block {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .home .install-block {
    padding: 10px;
  }
}
@media screen and (max-width: 991px) {
  .home .install-block {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .home .install-block {
    padding: 20px 10px;
    margin: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .home .install-block {
    padding: 40px;
  }
}
.core-shadow, .shadow, .eight-ball, .circle,
.display, .triangle, .fortune, .num-eight, .highlight, .border-shadow {
  position: absolute;
  color: white;
}

.core-shadow, .shadow, .eight-ball,
.circle, .display, .num-eight, .highlight, .border-shadow {
  border-radius: 50%;
}

.bg_silver {
  background: #f9fafc;
}

.randomizer__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.randomizer__container .core-shadow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 40px;
  bottom: 35px;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(8px);
}
.randomizer__container .core-shadow .shadow {
  width: 240px;
  height: 15px;
  background: rgba(0, 0, 0, 0.9);
  filter: blur(8px);
}
.randomizer__container .eight-ball {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  mask-image: radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  width: 400px;
  height: 400px;
  background: #222;
  box-shadow: inset 15px 15px 30px #000, inset -20px -20px 40px #000, inset -25px 25px 25px rgba(255, 255, 255, 0.2), inset 25px -25px 50px rgba(255, 255, 255, 0.3);
}
.randomizer__container .eight-ball .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  background: #111;
  box-shadow: inset 0 -3px 3px rgba(255, 255, 255, 0.3), -2px -1px 5px rgba(255, 255, 255, 0.2), 2px -2px 3px #000;
  transform: translateX(-400px) scaleX(0);
}
.randomizer__container .eight-ball .circle .display {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: #020214;
  border: 5px solid #000;
  box-sizing: border-box;
  box-shadow: inset 0 10px 10px #000, inset 0 -3px 5px rgba(255, 255, 255, 0.15), -1px -2px 3px rgba(255, 255, 255, 0.1);
}
.randomizer__container .eight-ball .circle .display .triangle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.randomizer__container .eight-ball .circle .display .t1 .fortune {
  text-align: center;
  width: 139px;
  height: 139px;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.randomizer__container .eight-ball .circle .display .t1 .fortune img {
  max-width: 128px;
  max-height: 128px;
  width: auto;
}
.randomizer__container .eight-ball .num-eight {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Graduate", sans-serif;
  font-size: 10rem;
  color: #222;
  width: 170px;
  height: 170px;
  background: #f5efdf;
  z-index: 2;
  opacity: 0.7;
}
.randomizer__container .eight-ball .highlight {
  width: 120px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  top: 50px;
  left: 55px;
  transform: rotate(-35deg);
  filter: blur(25px);
}
.randomizer__container .eight-ball:hover {
  cursor: pointer;
}
.randomizer__container .border-shadow {
  z-index: 3;
  width: 400px;
  height: 400px;
  box-shadow: inset 0 0 10px black;
}
.randomizer__container .border-shadow:hover {
  cursor: pointer;
}

.randomizer {
  margin-bottom: 25px;
}
.randomizer .columns {
  background: white;
  border-radius: 0.5rem;
  text-align: center;
  margin: 0 auto;
}
.randomizer .pack {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.randomizer .pack__description {
  max-width: 1000px;
  margin-bottom: 20px;
}
.randomizer .pack__name {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.randomizer .pack__name h2 {
  display: block;
  text-align: center;
}
.randomizer .pack .ball {
  height: auto;
}
.randomizer .block__name {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.randomizer .block__name h2 {
  display: block;
  text-align: center;
}
.randomizer__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  opacity: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.randomizer__actions .btn {
  font-weight: 800;
}

.ytp-gradient-bottom {
  height: 100px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAACUCAYAAABSvkN5AAAAAXNSR0IArs4c6QAAAPZJREFUKFNlyOlHGAAcxvHuY93H1n1fW1v3fbej+zAmI5PIRGYiM5JEEkkiiSSRRPoj83nze9Pz4uPrSUh4tURPEpKDFJWKtCBdZQSZ6g2ygmyVg9wgT+WjIChURSgO3qp3KAlKVRnKgwpVGVSpatQEtaoO9UGDakRT0Kxa8D74oFrxMfik2tAedKjOoEt1oyfoVX3oDwbUIIaCYTWC0WBMjWMimFSfgy/qK74FU2oaM8GsmsN8sKAWsYRlfMcPrOAnVvELa1jHBn5jE1v4g7/Yxg7+4T92sYd9HOAQRzjGCU5xhnNc4BJXuMYNbnGHezzgEU94fgGKNSQkUNfIywAAAABJRU5ErkJggg==");
  background-size: contain;
}

.progress-bar-card.item {
  width: 100%;
  padding: 0px 0px 10px 0px;
}
.progress-bar-card.item .preview::after {
  content: "";
  background-color: palegreen;
  filter: blur(15px);
}
.progress-bar-card.item .controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0 7px;
}

.section__header {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.progress-bar-card .controls {
  display: flex;
  /* margin-top: 15px; */
  gap: 10px;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.page section {
  padding: 0 40px;
}
@media screen and (max-width: 1200px) {
  .page section {
    padding: 0 20px;
  }
}
.page .install-block {
  margin: 20px 0px;
}
.page .install-extension-card {
  gap: 10px !important;
  margin: 0 auto;
  padding: 0px 0px 20px 0px;
}
@media screen and (max-width: 768px) {
  .page .install-extension-card {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .page .install-extension-card {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .page .install-extension-card {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .page .install-extension-card {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .page .install-extension-card {
    width: 80%;
  }
}
.page__collections {
  --grid-layout-gap: 1rem;
  --grid-column-count: 3;
  --grid-item--min-width: 200px;
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));
  display: grid;
  grid-gap: 1rem;
}
.terms-text {
  font-weight: 300 !important;
}
