:root {
  --first-color: #e755ef;
  --second-color: #000424;
}
img {
  max-width: 100%;
}

#header-custom {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  transition: 0.3s;
}
#header-custom .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  margin: 0;
}
#header-custom .logo-link {
  display: flex;
  width: auto;
}
#header-custom .header-logo {
  max-width: 250px;
}
#header-custom .header-burger {
  display: none;
}
#header-custom .header-menu {
  width: auto;
}
#header-custom .menu-list {
  display: flex;
  align-items: center;
  column-gap: 40px;
  margin: 0;
}
#header-custom .menu-link {
  display: flex;
  font-size: 18px;
  line-height: normal;
  text-decoration: none;
  color: var(--second-color);
  transition: 0.3s;
  text-align: center;
}
#header-custom .menu-link:hover {
  color: var(--first-color);
}
.selling-product-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#page .selling-product, #page .featured-product {
  padding-top: 170px !important;
}
#page .section-heading__desc {
  max-width: none;
}
.checkbox {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.checkbox:first-of-type {
  margin-bottom: 16px;
}
@media screen and (max-width: 991.98px) {
  #header-custom .header-burger {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    padding: 10px;
    width: 50px;
    outline: none;
    cursor: pointer;
  }
  .header-burger.open .header-line--top {
    transform: rotate(45deg);
    transform-origin: 13% 15%;
  }
  .header-burger.open .header-line--middle {
    opacity: 0;
  }
  .header-burger.open .header-line--bottom {
    transform: rotate(-45deg);
    transform-origin: 0;
  }
  .header-line {
    height: 3px;
    background-color: var(--first-color);
    transform: rotate(0deg);
    transition: 0.3s ease all;
  }
  #header-custom .header-menu {
    width: 100%;
    transition: 0.3s;
  }
  #header-custom .header-menu * {
    visibility: hidden;
    opacity: 0;
    height: 0;
  }
  #header-custom .header-menu.open * {
    visibility: visible;
    opacity: 1;
    height: auto;
  }
  #header-custom .header-menu.open {
    display: flex;
    justify-content: center;
    background-color: #fff;
  }
  #header-custom .header-menu.open .menu-list {
    flex-direction: column;
    row-gap: 20px;
    padding: 10px;
  }
  #header-custom .menu-link {
    width: 100%;
    padding: 10px;
    border-bottom: 2px solid var(--first-color);
    font-size: 18px;
    transition: 0;
  }
  .banner-content {
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  .banner-content__title {
    font-size: 36px !important;
  }
  .selling-product-slider {
    grid-template-columns: 1fr;
  }
  .support-content {
    text-align: center;
  }
  .seller {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575.98px) {
  #header-custom .header-logo {
    max-width: 200px;
  }
  .performance-content__text {
    padding: 0 4px;
    text-align: center;
  }
}

.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
  color: var(--second-color);
}
.thanks p.thanks-text {
  color: var(--first-color);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}
.docs {
  word-break: break-word;
  padding: 150px 20px 100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
}
.docs li, .docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--first-color);
}
.docs a:hover {
  color: var(--second-color);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 130px 0px 100px;
  }
  .docs h1 {
    font-size: 32px;
  }
}

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 25px;
  background-color: #ffffff;
  border-top: 2px solid var(--first-color);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}

#cookPopup p {
  font-size: 16px;
  margin: 0 0 10px;
  text-align: center;
  color: inherit;
}
#cookPopup a {
  font-size: 16px;
  transition: 0.3s;
  color: var(--first-color);
}
#cookPopup a:hover {
  transition: 0.3s;
  color: var(--second-color);
}

@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}

@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }

  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}

.cookPopup_title {
  font-size: 16px;
  font-weight: 700;
  color: var(--second-color);
}

.show {
  display: flex !important
}