@font-face {
  font-family: 'Melinda';
  font-style: normal;
  font-weight: 400;
  src: local('Melinda'), url('https://fonts.cdnfonts.com/s/17219/melinda.woff') format('woff');
}

@font-face {
  font-family: 'Century Gothic';
  font-style: normal;
  font-weight: 400;
  src: local('Century Gothic'), url('https://fonts.cdnfonts.com/s/18111/GOTHIC.woff') format('woff');
}

body {
  font-family: sans-serif;
  line-height: 1.15;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.logo {
  margin: 0 20px;
}

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

.logo.right {
  text-align: right;
}

.logo.left {
  text-align: left;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.profile {
  margin-bottom: 70px;
  text-align: center;
  padding: 10px;
  margin-top: 84px;
  position: relative;
}

.profile .photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: auto;
  margin-top: -64px;
  margin-bottom: 20px;
  background-size: cover;
}

.profile h2 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 30px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.profile p {
  font-weight: normal;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
}

.profile.has-photo {
  display: table;
  width: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.profile.has-photo .photo {
  position: absolute;
  top: 10px;
  left: 5px;
}

.profile.has-photo.left .photo {
  right: 5px;
  left: auto;
}

.profile.has-photo.right .info {
  padding-right: 148px;
  padding-left: 0;
}

.profile.has-photo.right .info h2,
.profile.has-photo.right .info p {
  padding-right: 10px;
}

.profile.has-photo.left .info h2,
.profile.has-photo.left .info p {
  padding-left: 10px;
}

.profile.has-photo .info {
  padding-left: 148px;
  display: table-cell !important;
  vertical-align: middle;
  height: 148px !important;
}

.profile.left .photo,
.profile.right .photo {
  margin-top: 0;
  margin-right: 20px;
  display: inline-block;
  width: 128px;
  vertical-align: middle;
}

.profile.left .info,
.profile.right .info {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  text-align: left;
}

.profile.right .photo {
  margin-right: 0;
  margin-left: 0;
}

.profile.right .info {
  text-align: right;
}

.lead {
  padding: 10px;
  text-align: center;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  margin: 0 20px;
  margin-top: 60px;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.buttons a {
  display: inline-block;
  text-align: center;
  padding: 17px 10px;
  font-size: 26px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  color: #fff;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.buttons a.small {
  width: 28%;
}

.buttons a.medium {
  width: 30%;
}

.buttons a.large {
  width: 46%;
}

.buttons a.extra_large {
  width: 96%;
}

.buttons-rounded.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  margin: 0 20px;
  margin-top: 60px;
}

.buttons-rounded.row.center {
  text-align: center;
  justify-content: center;
}

.buttons-rounded.row.right {
  text-align: right;
  justify-content: flex-end;
}

.buttons-rounded.column {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  margin: 0 20px;
  margin-top: 60px;
}

.buttons-rounded.column a:not(:first-child) {
  margin-top: 20px;
}

.buttons-rounded.column.left {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-content: flex-start;
}

.buttons-rounded.column.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.buttons-rounded.column.right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.buttons-rounded a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  text-align: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  word-wrap: break-word !important;
  overflow-wrap: break-word;

  border-radius: 50%;

  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.buttons-column,
.buttons-row {
  display: flex !important;
}

.buttons-column {
  flex-direction: column;
}

.buttons-row {
  flex-direction: row;
  flex-wrap: wrap;
}

.buttons-center {
  justify-content: center;
  align-items: center;
}

.buttons-left {
  justify-content: start;
  align-items: start;
}

.buttons-right {
  justify-content: end;
  align-items: end;
}

.buttons-rounded.row a {
  margin: 10px;
}

.buttons-rounded.row a.large .icon {
  margin-top: 58px;
}

.buttons-rounded.row a.small .icon {
  margin-top: 38px;
}

.buttons-rounded .label {
  min-width: 0px;
}

.buttons-rounded .icon {
  margin-bottom: 15px;
  display: block;
  font-size: 42px;
}

.buttons-rounded.buttons-column a,
.buttons-rounded.buttons-row a {
  display: flex;
  margin: 1%;
}

.buttons-rounded .small {
  display: inline-block;
  width: 135px;
  height: 135px;
}

.buttons-rounded .medium {
  width: 165px;
  height: 165px;
}

.buttons-rounded .large {
  display: inline-block;
  width: 200px;
  height: 200px;
}

.buttons-rounded .extra_large {
  display: inline-block;
  width: 270px;
  height: 270px;
}

.buttons a .icon {
  margin-bottom: 15px;
  display: block;
  font-size: 42px;
}

.buttons a .icon.without-label {
  margin-bottom: 0px;
}

.icon.phone::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f879';
}

.icon.whatsapp::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f232';
}

.icon.contact::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f2bb';
}

.icon.email::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0e0';
}

.icon.site::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f57d';
}

.icon.blog::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f09e';
}

.icon.virtual_store::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f07a';
}

.icon.address::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f279';
}

.icon.link::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f35d';
}

.icon.instagram::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f16d';
}

.icon.facebook::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f082';
}

.icon.twitter::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f099';
}

.icon.youtube::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f167';
}

.icon.linkedin::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f08c';
}

.icon.pinterest::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f0d2';
}

.icon.telegram::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f3fe';
}

.icon.tiktok::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\e07b';
}

.icon.app_store::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f36f';
}

.icon.google_play::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f3ab';
}
.playPause {
  width: 100%;
  text-align: center;
  position: absolute;
  overflow: auto;
    z-index: 99999;
}
#playPauseBTN {
  background: none;
  border: none;
}
.btnpause {
  background-image:url("../img/buttonpause.png");
  width: 90px;
  height: 35px;
  display: block
}
.btnplay {
  background-image:url("../img/buttonplay.png");
  width: 90px;
  height: 35px;
  display: block
 
}
.btnhidden {
  visibility: hidden;
}
.btnvisible {
  visibility: visible;
}
.products {
  margin-top: 20px;
}

.product {
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.65);
  margin-bottom: 8px;
  color: #fff;
  word-break: break-word;
}

.product .description {
  margin-top: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product a {
  font-size: 30px;
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 15px;
  margin-top: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.videos {
  margin-top: 40px;
  margin-bottom: 40px;
  word-break: break-word; /* new */
}

.videos a {
  text-decoration: none;
}

.video {
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 7px;
  margin-bottom: 30px;
  color: #fff;
  display: block;
}

.video:last-of-type {
  margin-bottom: 0;
}

.video .icon {
  font-size: 30px;
  margin-right: 20px;
  display: inline-block;
}

.video-title {
  width: 100%;
  text-align: center;
}

.video-description {
  margin-bottom: 10px;
  padding: 10px;
  margin-top: -5px;
}

.video .title {
  display: inline-block;
  vertical-align: top;
  line-height: 34px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.video-cover {
  display: block;
  margin-bottom: 30px;
}

.video-cover .title {
  vertical-align: top;
  line-height: 26px;
  color: #fff;
  text-align: center;
  padding: 7px 10px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  background-color: rgba(0, 0, 0, 0.4);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.video-cover .cover {
  position: relative;
}

.video-cover .cover img {
  width: 100%;
  height: auto;
}

.video-cover .icon {
  position: absolute;
  color: #fff;
  padding: 20px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  text-align: center;
}

.video-cover .icon .icon-inner {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  font-size: 30px;
  padding: 12px 14px;
  text-align: center;
  display: inline-block;
  margin-top: 30%;
}

.video-cover .icon .icon-inner span {
  margin-left: 3px;
}

.banner {
  text-align: center;
  padding: 0px 0;
}

.banner img {
  max-width: 100%;
  width: auto;
}

.banner a {
  display: inline-block;
}

.mb-0 {
  margin-bottom: 0;
}

.qrcode-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.qrcode {
  text-align: center;
}

.qrcode img {
  width: 150px;
  height: 150px;
}

.footer-text-box {
  position: absolute;
  bottom: 0;

  margin-top: 10px;
  text-align: center;
  padding: 8px 10px;
  width: 300px;
}

.footer-text-box.left {
  border-radius: 0 10px 0 0;

  left: 0;
}

.footer-text-box.center {
  border-radius: 10px 10px 0 0;
  margin-left: auto;
  margin-right: auto;

  left: 0;
  right: 0;
}

.footer-text-box.right {
  border-radius: 10px 0 0 0;
  margin-left: auto;
  margin-right: 0;

  right: 0;
}

.footer-link {
  cursor: pointer;
  text-decoration: none;
}



/* Audio */
.audio-wrapper {
  width: 100%;
  word-break: break-word; /* new */
}

.audio-wrapper h2 {
  margin-bottom: 10px;
  text-align: center;
}

.audio-wrapper audio {
  width: calc(100% - 48px);
  margin: 10px 24px 0px 24px;
}

.card-bg {
  filter: blur(8px);
  -webkit-filter: blur(8px);

  height: 100%;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  position: fixed;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
}

.card-container {
  width: 609px;
  max-width: 610px;
  min-height: 100%;

  padding-top: 30px;
  margin: 0 auto;

  background-position: center top;
  background-size: 100%;

  position: relative;
  z-index: 1;

  border: 1px solid rgba(0, 0, 0, 0.65);
}


/* MOBILE */

@media (max-width: 767px) {
  .only-on-large {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-on-large {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .photo {
    max-width: 100% !important;
  }

  .card-bg {
    display: none;
  }

  .card-container {
    width: 100%;
    max-width: none;
    border: 0;
    margin: 0;
  }

  .audio-wrapper audio {
    width: calc(100% - 24px);
    margin: 10px 12px 0px 12px;
  }

  .buttons {
    margin: 0;
    margin-top: 60px;
  }

  .buttons a .icon {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .buttons a .label {
    font-size: 18px;
  }

  .buttons-rounded .icon {
    margin-bottom: 10px;
  }

  .buttons-rounded .large {
    width: 140px;
    height: 140px;
  }

  .buttons-rounded .extra_large {
    width: 200px;
    height: 200px;
  }

  .buttons-rounded.row a.large .icon {
    margin-top: 25px;
  }

  .buttons-rounded .medium {
    width: 105px;
    height: 105px;
  }

  .buttons-rounded.row a.medium .icon,
  .buttons-rounded.buttons-row a.medium .icon,
  .buttons-rounded.buttons-column a.medium .icon {
    font-size: 30px;
  }

  .buttons-rounded.row a.medium .label .buttons-rounded.buttons-row a.medium .label,
  .buttons-rounded.buttons-column a.medium .label {
    font-size: 13px;
  }

  .buttons-rounded .small {
    width: 85px;
    height: 85px;
  }

  .buttons-rounded.row a.small .icon {
    font-size: 25px;
    margin: 18px 0 0 0;
  }

  .buttons-rounded.buttons-row a.small .icon,
  .buttons-rounded.buttons-column a.small .icon {
    font-size: 25px;
  }

  .buttons-rounded.row a.small .label,
  .buttons-rounded.buttons-row a.small .label,
  .buttons-rounded.buttons-column a.small .label {
    font-size: 10px;
  }
}
 

@media (max-width: 425px) {
  .product-inner.position-right.size-normal .details {
    width: 170px;
  }

  .image-center-normal {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 375px) {
  .product-inner.position-right.size-normal .details {
    width: 120px;
  }
}

@media (max-width: 320px) {
  .product-inner.position-right.size-normal .details {
    width: 65px;
  }
}

.p-sticky {
  position: -webkit-sticky !important;
  /* Safari & IE */
  position: sticky !important;

  /* top: 0 !important; */
}

.p-static {
  position: static;
}

/* Category */

.default-category-list#category-list {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  margin: 0 4px;
  list-style: none;
  padding: 5px;
}

#category-list {
  margin: 0;
  top: 10px;
  padding: 12px 18px;
  position: relative;
  z-index: 2;
}

#category-list .carousel-wrapper-items {
  display: flex;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#category-list .carousel-wrapper-items::-webkit-scrollbar {
  display: none;
}

#category-list .nav-button,
#category-list .nav-button:hover {
  position: absolute;
  color: #333;
  font-size: 1.6rem;
  cursor: pointer;
  top: 50%;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  outline: none;
  text-decoration: none;
}

.swipe-icon {
  background: transparent;
  position: absolute;
  width: 50px;
  left: 50%;
  display: none;
  transition: all 300ms;
  animation: swipe 1s infinite;
}

#category-list .nav-button#next {
  right: 0;
}

.nav-button#prev {
  left: 0;
}

.default-category-list#category-list li {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
  margin-bottom: -1px;
  display: list-item;
}

#category-list .item {
  text-align: center;
  margin: 1px;
  flex: 1;
}

#category-list .item a,
.default-category-list#category-list li a {
  border: 1px solid transparent;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;

  display: block;
}

.default-category-list#category-list li a {
  border: 1px solid transparent;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  display: block;
}

#category-list .item a:hover,
.default-category-list#category-list li a:hover {
  background: var(--custom_hover_color) !important;
}

.anchor {
  display: block;
  z-index: -1;
}

@keyframes swipe {
  from {
    transform: translateX(50%);
  }

  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 480px) {
  #category-list .nav-button {
    display: none;
  }

  #category-list {
    padding: 8px;
  }

  .swipe-icon {
    display: block;
  }
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

/*Preloader*/
#loader {
  margin: 15px;
  border: 10px solid #f3f3f3;
  border-radius: 50%;
  border-top: 10px solid #32bb51;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite /* Safari */;
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.opening-hours--close {
  text-decoration: none;
  color: #e21e3c;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 25px;
}

/* cookiesToast */
.cookies-toast--wrapper {
  position: fixed;
  bottom: 1.5rem;
  z-index: 50;

  margin-left: 1.5rem;
  margin-right: 1.5rem;

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 1rem;
  border-radius: 0.75rem;
  gap: 1rem;
}

.cookies-toast--wrapper.show {
  display: flex !important;
}

.cookies-toast--wrapper button {
  cursor: pointer;
  height: 36px;
  width: 100%;
  border-radius: 9999px;
}

@media (min-width: 769px) {
  .cookies-toast--wrapper {
    left: 50%;
    transform: translateX(-50%);
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;

    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
/* cookiesToast */

/* Animations */

.a-flash-bang-fixed {
  opacity: 1;
  visibility: visible;
  -webkit-animation: flashBang 2s linear 1;
  animation: flashBangFixed 2s linear 1;
}

@-webkit-keyframes flashBangFixed {
  0%,
  20% {
    opacity: 0;
  }
  10%,
  30%,
  100% {
    opacity: 1;
  }
}

@keyframes flashBangFixed {
  0%,
  20% {
    opacity: 0;
  }
  10%,
  30%,
  100% {
    opacity: 1;
  }
}

/* Animations */

/* Snackbar */

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 999999;
  left: 50%;
  bottom: 30px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

/* Snackbar */




/* @media (max-width: 767px) {
  .product-button {
    background-size: 100% !important;
  }
} */
