@keyframes nav-animation-in {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes nav-animation-out {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(25vw);
  }
  50% {
    transform: translateX(50vw);
  }
  75% {
    transform: translateX(75vw);
  }
  100% {
    transform: translateX(100vw);
  }
}
header {
  position: absolute;
  width: 100%;
  z-index: 99;
}
header.fixed {
  position: fixed;
  background: #000;
}
header .woocommerce-alert .alert {
  width: 100vw;
  background: #BD2C7E;
  color: #fff;
  padding: 15px;
  text-align: center;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo a img {
  width: 100px;
}
header nav ul {
  display: flex;
}
header nav ul li {
  margin-left: 20px;
  list-style: none;
}
header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
header nav ul li a:hover::after {
  width: 100%;
  left: 0;
}
header .open-nav-menu-mobile {
  display: none;
}
header .icons {
  display: flex;
  gap: 10px;
}
header .icons .cart a, header .icons .user a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #210C56;
  width: 32px;
  height: 32px;
  border-radius: 360px;
}
header .close {
  display: none;
}

@media screen and (width < 768px) {
  header nav {
    position: absolute;
    background: #210C56;
    width: 100vw;
    height: 100vh;
    top: 0;
    padding-top: 15px;
    animation: nav-animation-out 0.3s linear;
    display: none;
  }
  header nav.open {
    animation: nav-animation-in 0.3s forwards;
    display: flex;
  }
  header nav ul {
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  header nav .close {
    display: flex;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
  }
  header nav .close span {
    color: #fff;
    font-size: 40px;
  }
  header .open-nav-menu-mobile {
    display: flex;
    order: 3;
  }
  header .open-nav-menu-mobile span {
    font-size: 40px;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    color: #fff;
  }
  header > .search {
    display: none;
  }
}
.woocommerce-cart .woocommerce-cart-form__contents {
  margin-top: 30px;
}
.woocommerce-cart .woocommerce-cart-form__contents thead {
  height: 70px;
  background: #210C56;
  color: #fff;
}
.woocommerce-cart .woocommerce-cart-form__contents tbody, .woocommerce-cart .woocommerce-cart-form__contents a {
  color: #fff;
  text-decoration: none;
}
.woocommerce-cart .woocommerce-cart-form__contents a:hover {
  color: #BD2C7E;
}
.woocommerce-cart .woocommerce-cart-form__contents .coupon {
  display: flex;
  border: 1px solid #fff;
  border-radius: 300px;
  height: 50px;
  align-items: center;
  padding-left: 15px;
  margin-top: 20px;
}
.woocommerce-cart .woocommerce-cart-form__contents .coupon #coupon_code {
  width: 300px;
  background: transparent;
  border: none;
  color: #fff;
  margin-left: 10px;
}
.woocommerce-cart .woocommerce-cart-form__contents .coupon #coupon_code::placeholder {
  color: #fff;
}
.woocommerce-cart .woocommerce-cart-form__contents .coupon button {
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  border-left: 1px solid #fff;
}
.woocommerce-cart .woocommerce-cart-form__contents .coupon button:hover {
  color: #BD2C7E;
  background: transparent;
}
.woocommerce-cart .woocommerce-cart-form__cart-item td {
  border-bottom: 1px solid #fff;
  padding: 35px 0 !important;
}
.woocommerce-cart .cart_totals {
  color: #fff;
}
.woocommerce-cart .cart_totals table {
  border: 1px solid #fff;
}
.woocommerce-cart .cart_totals table tbody tr th {
  background: #210C56;
}
.woocommerce-cart .cart_totals table tbody tr th, .woocommerce-cart .cart_totals table tbody tr td {
  padding: 10px;
}
.woocommerce-cart .wc-proceed-to-checkout a {
  background-color: #3568D6 !important;
}
.woocommerce-cart .wc-proceed-to-checkout a:hover {
  background-color: rgb(36.4444444444, 81.7777777778, 179.5555555556) !important;
}

@media screen and (width < 1024px) {
  .woocommerce-cart .woocommerce-cart-form table {
    padding: 0 20px;
  }
  .woocommerce-cart .woocommerce-cart-form__cart-item {
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    padding: 10px 0;
    width: 100%;
  }
  .woocommerce-cart .woocommerce-cart-form__cart-item td.product-remove {
    display: flex;
    justify-content: flex-end;
  }
  .woocommerce-cart .woocommerce-cart-form__cart-item td.product-remove a {
    border-radius: 360px;
    background: red;
    color: #fff !important;
  }
  .woocommerce-cart .woocommerce-cart-form__cart-item td {
    border-bottom: none;
    padding: 10px 0 !important;
  }
  .cart_totals {
    padding: 0 20px;
  }
}
@keyframes add-to-cart-animation-start {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sound-grid-1 > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.sound-grid-1 .main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.sound-grid-1 .main-content__sound-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 3.3em 3em;
  width: 100%;
}
.sound-grid-1 .main-content__sound-item__question {
  width: 36px;
  height: 36px;
  background: #BD2C7E;
  border-radius: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.sound-grid-1 .main-content__sound-item__cats ul {
  display: flex;
  gap: 10px;
  margin: 0;
}
.sound-grid-1 .main-content__sound-item__cats ul::before {
  display: none;
}
.sound-grid-1 .main-content__sound-item__cats ul li {
  list-style: none;
}
.sound-grid-1 .main-content__sound-item__cats ul li a {
  padding: 7px 16px 4px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1.55em;
  letter-spacing: 0.8px;
  border-radius: 30px;
  background-color: #BD2C7E;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
.sound-grid-1 .main-content__sound-item__cats ul li a:hover {
  background: #3568D6;
  text-decoration: none;
}
.sound-grid-1 .main-content__sound-item__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sound-grid-1 .main-content__sound-item__title .added {
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #210C56;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
}
.sound-grid-1 .main-content__sound-item__title button {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #BD2C7E;
  border-radius: 20px;
  outline: none;
  border: none;
  cursor: pointer;
}
.sound-grid-1 .main-content__sound-item__title button:hover:not(.adding) {
  width: 180px;
}
.sound-grid-1 .main-content__sound-item__title button:hover:not(.adding) span.text {
  display: block;
  animation: add-to-cart-animation-start 0.3s forwards 0.2s;
}
.sound-grid-1 .main-content__sound-item__title button.adding {
  width: 180px;
  background: rgb(147.6309012876, 34.3690987124, 98.4206008584);
  cursor: progress;
}
.sound-grid-1 .main-content__sound-item__title button.adding .text {
  display: none;
}
.sound-grid-1 .main-content__sound-item__title button.adding .text-adding {
  opacity: 1;
  display: block;
}
.sound-grid-1 .main-content__sound-item__title button.adding .icon-adding {
  display: block;
  opacity: 1;
}
.sound-grid-1 .main-content__sound-item__title button .icon-adding {
  display: none;
}
.sound-grid-1 .main-content__sound-item__title button span {
  font-size: 14px;
  color: #fff;
  display: none;
  opacity: 0;
}
.sound-grid-1 .main-content__sound-item__artist a {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: #210C56;
  margin: 4px 0 0;
  text-decoration: none;
}
.sound-grid-1 .main-content__sound-item__artist a:hover {
  text-decoration: underline;
}
.sound-grid-1 .main-content__sound-item__player .mejs__controls {
  background: #fff;
  padding: 0;
}
.sound-grid-1 .main-content__sound-item__player .mejs__currenttime, .sound-grid-1 .main-content__sound-item__player .mejs__duration {
  color: #100921;
}
.sound-grid-1 .main-content__sound-item__player .mejs__time-current {
  background: #BD2C7E;
}
.sound-grid-1 .main-content__sound-item__player .mejs__time-slider {
  background: #797c7f;
}
.sound-grid-1 .main-content__sound-item__player .mejs__playpause-button {
  border-radius: 360px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  border: 1px solid #100921;
}
.sound-grid-1 .main-content__sound-item__player .mejs__playpause-button:hover svg {
  fill: #BD2C7E;
}
.sound-grid-1 .main-content__sound-item__player .mejs__playpause-button svg {
  fill: #100921;
}
.sound-grid-1 .main-content__sound-item__player .mejs__volume-button {
  transition: 0s;
}
.sound-grid-1 .main-content__sound-item__player .mejs__volume-button svg {
  fill: #100921;
  stroke: #100921;
}
.sound-grid-1 .main-content__sound-item__player .mejs__volume-button:hover svg {
  fill: #BD2C7E;
  stroke: #BD2C7E;
}
.sound-grid-1 .main-content__sound-item__player .mejs__horizontal-volume-total {
  background: #797c7f;
}
.sound-grid-1 .main-content__sound-item__player .mejs__horizontal-volume-current {
  background: #BD2C7E;
}

@media screen and (width < 768px) {
  .sound-grid-1 .main-content {
    padding: 0 20px !important;
  }
  .sound-grid-1 .main-content__sound-item {
    padding: 1.3em 1em;
  }
  .sound-grid-1 .main-content__sound-item__cats ul:before {
    display: none;
  }
  .sound-grid-1 .main-content__sound-item__title {
    flex-direction: column;
    align-items: baseline;
  }
  .sound-grid-1 .main-content__sound-item__title button {
    width: fit-content;
  }
  .sound-grid-1 .main-content__sound-item__title button span {
    display: flex;
    opacity: 1;
  }
  .sound-grid-1 .main-content__sound-item__title button span.text-adding {
    display: none;
  }
}
.woocommerce-shop .woocommerce-result-count {
  margin-left: 20px;
  line-height: 28px;
}
.woocommerce-shop .woof_products_top_panel {
  display: none !important;
}

.woocommerce-checkout .wp-block-woocommerce-checkout {
  color: #fff;
}
.woocommerce-checkout .wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: #3568D6;
  border: none;
  outline: none;
  color: #fff;
}
.woocommerce-checkout .wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  background-color: rgb(36.4444444444, 81.7777777778, 179.5555555556) !important;
}
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
  border: 1px solid #fff !important;
}
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-metadata {
  display: none;
}
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary > div:first-child, .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon > div:first-child {
  background: #210C56;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary > div:first-child button, .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon > div:first-child button {
  padding: 0;
  margin: 0;
}
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item__image {
  display: none;
}
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item__description {
  padding-left: 0;
}
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item__individual-price {
  display: none;
}

.woocommerce-order-received .woocommerce {
  color: #fff;
}
.woocommerce-order-received .woocommerce ul.order_details {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px;
}
.woocommerce-order-received .woocommerce .woocommerce-order-details {
  border: 1px solid #fff;
  border-radius: 5px;
}
.woocommerce-order-received .woocommerce .woocommerce-order-details h2 {
  margin: 0;
  padding: 15px;
  background: #210C56;
  border-radius: 5px;
}

@media screen and (width < 1024px) {
  .woocommerce-checkout .wp-block-woocommerce-checkout {
    padding: 0 20px;
  }
  .woocommerce-checkout .wc-block-components-address-card {
    padding: 0;
  }
  .woocommerce-order-received .woocommerce {
    padding: 0 20px;
  }
  .woocommerce-order-received .woocommerce ul.order_details {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .woocommerce-order-received .woocommerce ul.order_details li {
    border: none;
  }
  .woocommerce-order-received .woocommerce address {
    padding: 0;
  }
}
.woocommerce-account .woocommerce {
  color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
  list-style: none;
  border: 1px solid #fff;
  border-radius: 5px;
  width: 200px;
  text-align: center;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active, .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:hover {
  background: #3568D6;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  width: 200px;
  display: block;
  padding: 15px 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation-link--edit-address {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content a.button {
  background: #3568D6;
  color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content a.button:hover {
  background: rgb(36.4444444444, 81.7777777778, 179.5555555556);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address header {
  position: relative;
  padding: 0;
  justify-content: flex-start;
  gap: 20px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address header:before {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-EditAccountForm input {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
}

.page .main-content {
  background-repeat: no-repeat;
}
.woocommerce-ordering {
  margin-right: 20px;
  display: flex;
  gap: 15px;
}
.woocommerce-ordering select {
  height: 50px;
  width: 200px;
  padding: 20px;
}

@media screen and (width < 768px) {
  .woocommerce-ordering {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 0 20px;
  }
}
.pagination .nav-links {
  display: flex;
  gap: 15px;
}
.pagination .nav-links .page-numbers {
  font-size: 16px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  border: 1px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
}
.pagination .nav-links .page-numbers:not(.current):hover, .pagination .nav-links .page-numbers.current {
  background: #fff;
  color: #210C56;
}
.pagination .nav-links .page-numbers.next span, .pagination .nav-links .page-numbers.prev span {
  font-size: 16px;
  line-height: 16px;
}

.woocommerce nav.woocommerce-pagination {
  display: flex;
  justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers {
  display: flex;
  border: none;
  gap: 10px;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li {
  border: 1px solid #fff;
  justify-content: center;
  align-items: center;
  display: flex;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li a, .woocommerce nav.woocommerce-pagination ul.page-numbers li span {
  padding: 0;
  width: 31px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error404 .main-content {
  padding-top: 200px;
}
.error404 .main-content h2 {
  font-size: 150px;
  color: #fff;
  text-align: center;
  margin: 0;
}
.error404 .main-content h3 {
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin: 0;
}
.error404 .main-content p {
  font-size: 20px;
  color: #fff;
  text-align: center;
}

@keyframes add-to-cart-animation-start {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.title-related-products {
  color: #fff;
  margin: 50px 0;
}

.related-products .owl-carousel {
  display: flex;
  width: 100%;
  position: relative;
}
.related-products__sound-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 3.3em 3em;
}
.related-products__sound-item__cats ul {
  display: flex;
  gap: 10px;
}
.related-products__sound-item__cats ul li {
  list-style: none;
}
.related-products__sound-item__cats ul li a {
  padding: 7px 16px 4px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1.55em;
  letter-spacing: 0.8px;
  border-radius: 30px;
  background-color: #BD2C7E;
  color: #fff;
  text-transform: uppercase;
}
.related-products__sound-item__cats ul li a:hover {
  background: #3568D6;
  text-decoration: none;
}
.related-products__sound-item__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.related-products__sound-item__artist a {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #797c7f;
  margin: 4px 0 0;
}
.related-products__sound-item__added {
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #210C56;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
}
.related-products__sound-item__add-to-cart {
  width: 180px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #BD2C7E;
  border-radius: 20px;
  outline: none;
  border: none;
  cursor: pointer;
}
.related-products__sound-item__add-to-cart:hover:not(.adding) {
  background: #3568D6;
}
.related-products__sound-item__add-to-cart.adding {
  width: 180px;
  background: rgb(147.6309012876, 34.3690987124, 98.4206008584);
  cursor: progress;
}
.related-products__sound-item__add-to-cart.adding .text {
  display: none;
}
.related-products__sound-item__add-to-cart.adding .text-adding {
  opacity: 1;
  display: block;
}
.related-products__sound-item__add-to-cart.adding .icon-adding {
  display: block;
  opacity: 1;
}
.related-products__sound-item__add-to-cart .text-adding {
  display: none;
}
.related-products__sound-item__add-to-cart .icon-adding {
  display: none;
}
.related-products__sound-item__add-to-cart span {
  font-size: 14px;
  color: #fff;
}
.related-products__sound-item__player .mejs__container {
  min-width: 250px;
}
.related-products__sound-item__player .mejs__controls {
  background: #fff;
  padding: 0;
}
.related-products__sound-item__player .mejs__currenttime, .related-products__sound-item__player .mejs__duration {
  color: #100921;
}
.related-products__sound-item__player .mejs__time-current {
  background: #BD2C7E;
}
.related-products__sound-item__player .mejs__time-slider {
  background: #797c7f;
}
.related-products__sound-item__player .mejs__playpause-button {
  border-radius: 360px;
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  border: 1px solid #100921;
}
.related-products__sound-item__player .mejs__playpause-button:hover svg {
  fill: #BD2C7E;
}
.related-products__sound-item__player .mejs__playpause-button svg {
  fill: #100921;
}
.related-products__sound-item__player .mejs__volume-button {
  transition: 0s;
}
.related-products__sound-item__player .mejs__volume-button svg {
  fill: #100921;
  stroke: #100921;
}
.related-products__sound-item__player .mejs__volume-button:hover svg {
  fill: #BD2C7E;
  stroke: #BD2C7E;
}
.related-products__sound-item__player .mejs__horizontal-volume-total {
  background: #797c7f;
}
.related-products__sound-item__player .mejs__horizontal-volume-current {
  background: #BD2C7E;
}
.related-products .owl-nav {
  display: flex;
  align-items: center;
}
.related-products .owl-nav button {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #BD2C7E !important;
}
.related-products .owl-nav button:hover {
  background: rgb(147.6309012876, 34.3690987124, 98.4206008584) !important;
}
.related-products .owl-nav button.disabled {
  background: rgb(106.2618025751, 24.7381974249, 70.8412017167) !important;
  cursor: inherit;
}
.related-products .owl-nav button span {
  color: #fff;
}
.related-products .owl-nav .owl-prev {
  left: -22px;
}
.related-products .owl-nav .owl-next {
  right: -22px;
}

@media screen and (width < 768px) {
  .related-products {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .related-products .owl-stage {
    padding-left: 0 !important;
  }
  .related-products .owl-nav {
    margin-top: 15px;
    justify-content: end;
  }
  .related-products .owl-nav button {
    position: static;
  }
  .related-products__sound-item {
    padding: 1.3em 1em;
  }
}
footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
footer a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
footer a:hover::after {
  width: 100%;
  left: 0;
}

* {
  font-family: "Roboto", sans-serif;
  transition: all 0.3s;
  box-sizing: border-box;
}

a, p {
  color: #fff;
}

ul {
  padding: 0;
}

body {
  margin: 0;
  background: #040507;
}

.container {
  width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
}

.e-con:not(.e-con-full) {
  padding: 0 20px;
}

.searchform div {
  border: 1px solid #fff;
  border-radius: 50px;
  display: flex;
  padding: 10px;
}
.searchform div input[type=text] {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}
.searchform div input[type=text]::placeholder {
  color: #fff;
}
.searchform div button {
  background: transparent;
  border: none;
  cursor: pointer;
}

.newsletter-form form {
  display: flex;
  width: 100%;
}
.newsletter-form form .mailpoet_paragraph {
  flex: 1;
}

.floating-buttons {
  position: fixed;
  height: 60px;
  top: calc(50% - 20px);
  right: 0;
  z-index: 99;
}
.floating-buttons a {
  width: 60px;
  height: 60px;
  background: #BD2C7E;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  outline: 0;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.floating-buttons a:hover {
  background: rgb(147.6309012876, 34.3690987124, 98.4206008584);
}
.floating-buttons a.cart span.count {
  position: absolute;
  top: -5px;
  left: -5px;
  background: #fff;
  border: 1px solid #BD2C7E;
  color: #BD2C7E;
  border-radius: 50%;
  font-size: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floating-buttons a span {
  color: #fff;
}

.page-title {
  background-image: url("../img/bg-title.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(2px);
  height: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  margin: 0 0 50px 0;
  position: relative;
}
.page-title .backdrop {
  position: absolute;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.8);
}
.page-title h1 {
  font-size: 60px;
  z-index: 9;
}
.page-title h2 {
  font-size: 60px;
  margin: 0;
  z-index: 9;
}
.page-title p {
  font-size: 18px;
  z-index: 9;
}
.page-title p a {
  text-decoration: none;
}
.page-title p a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 25px;
}

.woocommerce-no-products-found {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.woocommerce-no-products-found span {
  font-size: 100px;
}
.woocommerce-no-products-found a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
.woocommerce-no-products-found a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.woocommerce-no-products-found a:hover::after {
  width: 100%;
  left: 0;
}

.ui-tooltip, .arrow:after {
  background: #f5f5f5;
  border: 1px solid #797c7f;
  width: fit-content;
}

.ui-tooltip {
  padding: 10px 20px;
  color: #000;
  border-radius: 20px;
  max-width: 600px;
}

.arrow {
  width: 70px;
  height: 16px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: -16px;
}

.arrow.top {
  top: -16px;
  bottom: auto;
}

.arrow.left {
  left: 20%;
}

.arrow:after {
  content: "";
  position: absolute;
  left: 20px;
  top: -20px;
  width: 25px;
  height: 25px;
  box-shadow: 6px 5px 9px -9px black;
  transform: rotate(45deg);
}

.arrow.top:after {
  bottom: -20px;
  top: auto;
}

@media screen and (width < 1200px) {
  .container {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
