:root {
  --color-text: navy;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  --size: clamp(10rem, 1rem + 40vmin, 20rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.hidden {
  display: none !important;
}

.locked {
  overflow: hidden !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  scroll-behavior: smooth;
}

body {
  background: #0c0913;
  color: #000;
  line-height: 1.5;
  font-family: mulish, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 50px;
}

.top-popup {
  position: fixed;
  top: 0;
  padding: 10px;
  color: white;
  background: #a68252;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  z-index: 9999;
  font-weight: 900;
}
.top-popup a {
  text-decoration: underline;
  word-wrap: normal !important;
}

.payment-holder .payment-title {
  animation: none !important;
  color: white;
}
.payment-holder .payment-methods {
  display: flex;
  gap: 10px;
}
.payment-holder .payment-methods img {
  width: 50px !important;
  opacity: 0.3;
  filter: grayscale(1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  border-radius: 10px;
}
@media (max-width: 800px) {
  .payment-holder .payment-methods img {
    width: 40px;
  }
}

.footer-payments img {
  width: 50px;
  filter: brightness(0.6);
}
@media (max-width: 800px) {
  .footer-payments img {
    width: 40px;
  }
}

.popup {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: rgb(72, 72, 72);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(136, 136, 136, 0.51);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
}
.popup img {
  width: 50px;
  filter: invert(1);
}
@media (max-width: 800px) {
  .popup {
    bottom: 15px;
    right: 15px;
  }
  .popup img {
    width: 30px;
  }
  .popup .santaHat {
    width: 25px !important;
    height: 25px !important;
  }
}
.popup .santaHat {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 35px;
  height: 35px;
  filter: saturate(0.5);
}

img {
  border: 0;
}

img.badge {
  filter: grayscale(1);
}

button,
input,
a {
  font-family: mulish, Arial, sans-serif;
  cursor: pointer;
}

a {
  text-decoration: unset;
  color: unset;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(54, 55, 62);
  border: 0;
}

::-webkit-scrollbar-corner {
  background-color: #545765;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: #f9fbff;
}

.app {
  max-width: 1240px;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
  z-index: 995;
}

.section-title {
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}

.section-desc {
  font-size: 13px;
  text-align: center;
  color: rgb(100, 100, 100);
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 100;
}

.section-title span {
  color: #415de7;
}

main {
  padding-bottom: 20px;
}

header {
  margin-top: 20px;
}

.navigation {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.navigation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
.navigation-container img {
  width: 175px;
}

.navigation-participate {
  background: linear-gradient(to bottom, #415de7, #2a3eb6);
  border-radius: 12.3429px;
  height: 40px;
  padding: 0 22px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.navigation-participate:hover {
  opacity: 0.75;
}

.navigation-participate:active {
  opacity: 0.5;
}

.navigation-nav {
  height: 60px;
  display: flex;
  align-items: center;
}

.navigation-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  transition: color 0.2s;
}

.navigation-nav a:hover {
  color: #415de7;
}

footer.navigation {
  background: #2a3eb6;
  margin-bottom: 30px;
}

footer.navigation .navigation-participate {
  background: #fff;
  border-radius: 12.3429px;
  height: 40px;
  padding: 0 22px;
  color: #2a3eb6;
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  display: flex;
  align-items: center;
}

.address-done {
  margin-left: 10px;
  display: none;
}

.top {
  margin-top: 20px;
}

.top-bage {
  background: rgba(65, 93, 231, 0.1215686275);
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  padding: 3px 14px 3px 3px;
  margin-bottom: 22px;
}
.top-bage a {
  text-decoration: underline;
}

.top-bage p {
  font-weight: 700;
  font-size: 13px;
  line-height: 120%;
  color: #fff;
  margin-left: 9px;
}

.top-buttons {
  display: flex;
  justify-content: flex-start;
}

.top-button {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: opacity 0.2s;
  position: relative;
}

.top-button:hover {
  opacity: 0.75;
}

.top-button:active {
  opacity: 0.5;
}

.top-button.participate {
  background: linear-gradient(to bottom, #3d3d41, #3d3d3d);
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  padding: 0 25px;
}

.top-button.qr {
  width: 60px;
  background: rgba(65, 93, 231, 0.168627451);
  margin-left: 10px;
}

.top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.top-container .globe {
  position: relative;
}
.top-container .globe img {
  opacity: 0.15;
  filter: blur(3px);
  margin-bottom: 0px !important;
}
.top-container .globe svg {
  visibility: visible;
  position: absolute;
  width: 125%;
  height: 125%;
  filter: grayscale(0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-text {
  max-width: 600px;
  width: 100%;
  text-align: left;
}

.top-title {
  font-weight: 800;
  font-size: 46px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.sales {
  margin-top: 10px;
  color: #cba067;
  font-weight: 800;
}

.top-title span {
  color: #415de7;
}

.top-subtitle {
  font-size: 18px;
  line-height: 150%;
  color: #fff;
  margin: 15px 0 30px;
}

.top-subtitle span {
  color: #64656b;
  font-weight: 600;
}

.instruction {
  margin-top: 100px;
  margin-bottom: 100px;
}

.instruction-container {
  display: flex;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.instruction-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  border-radius: 15px;
  padding: 35px 30px 38px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instruction-item p {
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: #fff;
}

.rules {
  margin-top: 90px;
}

.rules-row {
  display: flex;
}
.rules-row .trackNTrace {
  display: flex;
  margin-top: 20px;
  gap: 5px;
}
.rules-row .trackNTrace input,
.rules-row .trackNTrace button {
  padding: 5px 10px;
}
.rules-row .trackNTrace input {
  box-shadow: 0 10px 50px rgba(36, 36, 36, 0.39), 0 4.78827px 9.03592px rgba(59, 59, 59, 0.34);
  border-radius: 9px;
  padding: 11px 15px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  line-height: 120%;
  color: black;
  border: none;
  transition: opacity 0.2s;
  min-width: 250px;
}
.rules-row .trackNTrace button {
  background: linear-gradient(to bottom, #333335, #343539);
  box-shadow: 0 10px 50px rgba(36, 36, 36, 0.39), 0 4.78827px 9.03592px rgba(59, 59, 59, 0.34);
  border-radius: 9px;
  padding: 11px 15px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  line-height: 120%;
  color: #fff;
  border: none;
  transition: opacity 0.2s;
  position: relative;
}
.rules-row .trackNTrace button::before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: -3px;
  right: 0;
  height: 23px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAXCAYAAACFxybfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAodJREFUeNrsVb1rWlEUv2pN/GqspKRSKFYXWzEloIWif0Fn6dJChQ7OQil0qd3EzcEpg0OgdHDr4CQODk7VRlLMEIVqApX4We0zflR9/Z1Ui4T34ksaaAYP/Hzc673n/M6550PG8zz73yKjn0wm83fDYDAwo9HINBrNnwOQg4MDs0ql2lQqlfdAWont7ng8Pjw+Ps44nc4G1pI9EXWaSOzt7TGO42aH5Pv7+08ajUZ0MBiUeXEZd7vdL5VK5fX29rZ+5tQiEmdxKrlcjsEYczgcynK5/BKKv/IXFNz/XiqVXkHdjUuRIA9SqdRD8or/R8Ez9fr9fqHVakUR4c2z0REjIQuHw2ZcrPBXLCA0RHTezEdHjIQqkUhEr9I4HOILhQLf6/VoOUFEvDMiQiToDx1Cdz+bzZ6bUFarlel0OkkVUK/XWbvdPoVer5fh3ntsfwJ+CJ2XA4p0Op1bpBgJyxDehQQ6nQ5DZXHBYDBZq9V+EhFUndnr9drEqoc2bwJbwGPgtohuVSwWe2Gz2TZMJpNgRKi6qtUqg2EWj8dTgUDgo0KhWPN4PC70EvXOzs67fD6/S6kiRIKeZA1YJ2MiJNbdbvfTUCjkV6vVK2hcDF8GI2w0GrGTkxM2HA5PDxaLxSOfz/cWEfk81X0XIMMFgJJ/srBjCgk8IdcfuVyuZ36//7nFYtkQyAMumUzuRiKRD0jMFLa+AZOpYwqgB/ziBVqmVBKUO7eAB/R0WG/Z7XaTVqtdbTabHJL6EK2djBaBPHA0NSqpbUsiMUeEBgpF4Q5AbZrmSJ/yEWgBTaBNHl9kdkgmMUeG7qwAq9PqovceTA3zlxlgsuswyuXsGsiSxJLEkoSY/BZgAEjRodi+uBruAAAAAElFTkSuQmCC) no-repeat 100% 0;
}

.btn-holder {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.rules-row:not(:last-child) {
  margin-bottom: 30px;
}

.rules-container {
  margin-top: 50px;
}

.rules-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  border-radius: 15px;
  padding: 30px 35px;
  width: 100%;
  position: relative;
}
.rules-item .bg-img {
  padding: 20px;
  position: absolute;
  width: 150px;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  z-index: -1;
  opacity: 0.35;
  filter: grayscale(1) drop-shadow(2px 4px 6px black) contrast(1);
}
.rules-item .bg-img.big {
  width: 250px;
}

.rules-item:not(:last-child) {
  margin-right: 30px;
}

.rules-title {
  font-weight: 800;
  font-size: 26px;
  line-height: 170%;
  color: #fff;
}

.rules-title span {
  color: #415de7;
}

.rules-subtitle {
  margin-top: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.rules-subtitle span {
  color: #415de7;
}

section.participate {
  margin-top: 70px;
}

.participate-container {
  margin-top: 40px;
  display: flex;
}

.participate-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.participate-item .stock {
  position: absolute;
  right: 15px;
  bottom: 10%;
  color: #33ff00;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.participate-item .stock span {
  animation: blinker 1.75s ease-in-out infinite;
}
@media (max-width: 600px) {
  .participate-item .stock {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 10px;
    align-items: center;
  }
}
.participate-item .vouchesBtn {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}
.participate-item .participate-button::before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: -3px;
  right: 0;
  height: 23px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAXCAYAAACS5bYWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABFpJREFUeNrUV0tIo1cUvpkYjQ4xxSA6DxuNqG0dtaUKOgs3s6i0dFd3pSsXdjeIixakiGA34sZuXCkoONLFwJTK4GMYLYXg29gatTpiXurkbd7vv9/5ub+IxuhA7eiFQ5Kbc8/57ne/e87/ywRBYLdl3GG3aNwqsLJ0k0tLS+fmcnNzWUVFBVMoFGx2djarvLxcm5OTw+bm5iytra2xc4ExNjY27iqVyvvwK6CpeDzuCYVC1urq6qDA9UcfPp+PHR4esmAwKK6tr68/l5/8rgQ2Ozub1dbWyiYmJooaGxt/VqvV38jlchX9l0qlwoFA4DWS/RKLxRxFRUVf5+XlPcaaT2AP0sVPJBL2SCRiAPBpu93+vKamZo/Ae71eZjabWV1dXVqw7CKwp43ksrCw8Bhg7MJ/PLDZ5PHx8cz29vYT5JGD/bSYLgTrcDgYdk6siSc6NjZWDaAe4ZoHQL+cmZnRpZPnhWDpD8kw7uKo9ML/NMCsd2tr61vkzboMrEyv138M7TyLRqMWMBsX3sMgaZhMpp+AR5EJrCocDpuEGzKg4x8khs+CVWxubvZfR9JkMik4nU7BarUKLpeLmLsKuwIqTLynp4fqmIzASrqQT09Pf1VVVfX0KsWZ6uHBwQHTaDSsoKAgo6/H4xHLEcrVyRwuEisrKzs5XrrIVAVwiUVDKRRrL+YI32ewdVhMApuHWvcj6vids6J2u90MF4yBHUZNgKoEBaRBQalJqFSqtJfUYrGIlQX+ydXVVTN+u0tKSjQNDQ1axJVl2iTypebn55d7e3v/kqoDgZU1NTU9LCws/Py0M+2ekuGincxJ3yF+18jIyHJLS0slQJUWFxczrBeBE0vE5tHRkbixlZWVfSR8gTX/0P5gH7S1tX3Z3t7+BW8qAvwSfr8/jA0EIRM/qoFtampqbW9vTw+XA+ojUruVd3Z2tvb19T2TQFEim81GgVJoCvvj4+NLOJZgaWmpemdn5y3a6BbcnJDAw8HBwac6ne6eqCW5XDwB3qVSqM9/DAwMUNy/eVLabT7sI25qwgujThCBhWE+mAt2yNc4SQKSZrOQQE1HS22VJkmPAGTr7+//fX19fRk+Zgq0trbGeFAKEAQT98BSqKOj47vm5uaa/Px8JeIk4GcaHh6eWlxcfAU/A8xG67BxAX3fwdcbYUpSDJ06Z49Ak8ZC3OL8f3YiA4PBYKdLQ2AJ9OTk5GpXV9cQiCVh79M94QtlPLDUE/1gPNrd3f0W33W4cBoco48zQuy/IZYAMnGqlSc4c66L9JruQUaSARXeT8HGKzxAqFBekni6+h46+pMzGiJGMgTOJh1yU/KNEGDvZWvfBawkA9ppwGg0mrRa7SOI2g+gxOgbJIpdFpj72PnxSnPX8vqRxTURgBQWKisrH+GThOm+CtAzoK/9/Uiqq/6hoaHfdnd3jaOjo7/yY7yxbwqkWy3sQzpS2C6YirwvUJk0y7hurfyGRrnduPGvAAMASmo8wzeVwfsAAAAASUVORK5CYII=) no-repeat 0 0, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAXCAYAAACFxybfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAodJREFUeNrsVb1rWlEUv2pN/GqspKRSKFYXWzEloIWif0Fn6dJChQ7OQil0qd3EzcEpg0OgdHDr4CQODk7VRlLMEIVqApX4We0zflR9/Z1Ui4T34ksaaAYP/Hzc673n/M6550PG8zz73yKjn0wm83fDYDAwo9HINBrNnwOQg4MDs0ql2lQqlfdAWont7ng8Pjw+Ps44nc4G1pI9EXWaSOzt7TGO42aH5Pv7+08ajUZ0MBiUeXEZd7vdL5VK5fX29rZ+5tQiEmdxKrlcjsEYczgcynK5/BKKv/IXFNz/XiqVXkHdjUuRIA9SqdRD8or/R8Ez9fr9fqHVakUR4c2z0REjIQuHw2ZcrPBXLCA0RHTezEdHjIQqkUhEr9I4HOILhQLf6/VoOUFEvDMiQiToDx1Cdz+bzZ6bUFarlel0OkkVUK/XWbvdPoVer5fh3ntsfwJ+CJ2XA4p0Op1bpBgJyxDehQQ6nQ5DZXHBYDBZq9V+EhFUndnr9drEqoc2bwJbwGPgtohuVSwWe2Gz2TZMJpNgRKi6qtUqg2EWj8dTgUDgo0KhWPN4PC70EvXOzs67fD6/S6kiRIKeZA1YJ2MiJNbdbvfTUCjkV6vVK2hcDF8GI2w0GrGTkxM2HA5PDxaLxSOfz/cWEfk81X0XIMMFgJJ/srBjCgk8IdcfuVyuZ36//7nFYtkQyAMumUzuRiKRD0jMFLa+AZOpYwqgB/ziBVqmVBKUO7eAB/R0WG/Z7XaTVqtdbTabHJL6EK2djBaBPHA0NSqpbUsiMUeEBgpF4Q5AbZrmSJ/yEWgBTaBNHl9kdkgmMUeG7qwAq9PqovceTA3zlxlgsuswyuXsGsiSxJLEkoSY/BZgAEjRodi+uBruAAAAAElFTkSuQmCC) no-repeat 100% 0;
}
@media (min-width: 1300px) {
  .participate-item .vouchesBtn {
    width: 150px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
  }
}
@keyframes blinker {
  50% {
    opacity: 0.15;
  }
}
.participate-item.selected {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.participate-item.selected .left {
  width: 100%;
}
.participate-item.selected .left h2 {
  color: #494949;
}
@media (max-width: 600px) {
  .participate-item.selected .left {
    text-align: center;
  }
}
.participate-item.selected .right {
  width: 100%;
  display: flex;
  align-items: center;
}
.participate-item.selected .right .participate-title {
  font-size: 20px;
}
.participate-item.selected .right .participate-footer {
  gap: 20px;
}
.participate-item.selected .right .participate-footer a {
  color: lightgray;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .participate-item.selected .right {
    flex-direction: column;
  }
  .participate-item.selected .right img {
    width: 250px;
  }
  .participate-item.selected .right .participate-footer {
    gap: 5px;
    margin-bottom: 30px;
  }
}

.participate-item:not(:last-child) {
  margin-right: 28px;
}

.participate-footer {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .participate-footer {
    margin-top: 30px;
    width: 100%;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
}

.participate-button,
.vouchesBtn {
  background: linear-gradient(to bottom, #333335, #343539);
  box-shadow: 0 10px 50px rgba(36, 36, 36, 0.39), 0 4.78827px 9.03592px rgba(59, 59, 59, 0.34);
  border-radius: 9px;
  padding: 11px 15px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  line-height: 120%;
  color: #fff;
  border: none;
  transition: opacity 0.2s;
  position: relative;
}
.participate-button.more-reviews,
.vouchesBtn.more-reviews {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 30px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 600px) {
  .participate-button,
  .vouchesBtn {
    width: 100%;
  }
}

.participate-button:hover {
  opacity: 0.75;
}

.participate-button:active {
  opacity: 0.5;
}

.participate-data {
  margin-left: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  width: 100%;
}
@media (max-width: 600px) {
  .participate-data {
    width: 100%;
  }
}

.participate-title {
  font-weight: 700;
  font-size: 19px;
  line-height: 170%;
}
@media (max-width: 600px) {
  .participate-title {
    text-align: center;
  }
}

.participate-title span {
  color: #415de7;
}

.promo {
  text-align: left;
  color: #cba067;
  font-weight: 900;
}
@media (max-width: 800px) {
  .promo {
    text-align: center;
    font-size: 13px;
    margin-bottom: 30px;
  }
}

.participate-address {
  display: flex;
  align-items: flex-start;
  margin: 5px 0 13px;
  flex-direction: column;
}
.participate-address .price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.participate-address .price p {
  display: flex;
  gap: 5px;
  align-items: center;
}
.participate-address .price p span {
  display: block;
  margin-bottom: 3px;
}
.participate-address .price #selPrice {
  color: white;
}
.participate-address .price #imgDiscount {
  position: absolute;
  top: 15%;
  left: 42.5%;
  width: 20px;
  opacity: 0.5;
  filter: saturate(1);
}
.participate-address.info {
  text-align: left;
  width: 100%;
}
@media (max-width: 600px) {
  .participate-address {
    text-align: center;
    align-items: center;
  }
}

.participate-address p {
  font-weight: 600;
  font-size: 15px;
  line-height: 170%;
  text-transform: uppercase;
  color: rgb(159, 158, 158);
  max-width: 600px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.participate-address p mark {
  background-color: transparent;
  font-weight: bolder;
  color: white;
}
@media (max-width: 600px) {
  .participate-address p {
    max-width: 100%;
    text-align: center;
  }
}

.participate-status {
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.participate-status p {
  font-weight: 600;
  font-size: 14px;
  line-height: 170%;
  color: #fff;
  margin-left: 9px;
}

.bill-choice {
  display: flex;
  flex-direction: column;
  margin: 10px 0px 20px 0px;
}
.bill-choice label {
  display: block;
  font-weight: 100;
  font-size: 10px;
  letter-spacing: 1px;
  text-shadow: none;
  text-transform: uppercase;
  font-weight: normal;
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
}
.bill-choice .buttons {
  display: flex;
}
.bill-choice .buttons button {
  padding: 7.5px 10px;
  border: 0;
  cursor: pointer;
  background-color: rgb(27, 27, 27);
  transition: 0.3s;
}
.bill-choice .buttons #btn50Bill {
  width: 100%;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-right: 1px solid rgba(120, 120, 120, 0.405);
  background: rgba(66, 66, 66, 0.371);
  color: #646464;
}
.bill-choice .buttons #btn50Bill.active {
  color: white;
  background: #686868;
}
.bill-choice .buttons #btn20Bill {
  width: 100%;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background: rgba(66, 66, 66, 0.371);
  color: #646464;
}
.bill-choice .buttons #btn20Bill.active {
  color: white;
  background: #686868;
}

#calculator_number {
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calculator-block {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  color: #fff;
}

.calculator-label {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.calculator-label.red {
  color: #415de7;
  font-weight: 600;
}

.calculator-label svg {
  margin-left: 5px;
}

.calculator-label span {
  color: #415de7;
  margin-left: 4px;
}

.calculator-delimiter {
  margin: 0 20px 15px;
}

.calculator-counter {
  height: 60px;
  display: flex;
  align-items: center;
}

.calculator-counter span {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
}

.calculator-counter svg {
  margin-left: 4px;
  height: 30px;
}

.calculator-input {
  height: 60px;
  position: relative;
}

.calculator-input input {
  border: 1px solid #415de7;
  border-radius: 6px;
  background: 0 0;
  width: 170px;
  height: 60px;
  color: #fff;
  padding-left: 20px;
  padding-right: 40px;
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
}

.calculator-input::after {
  content: "";
  width: 19px;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.transaction {
  width: 100%;
  margin: 70px 0 40px;
}

.transaction-title {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  -webkit-backdrop-filter: blur(187px);
          backdrop-filter: blur(187px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px 9px 29px;
  border-radius: 15px;
}

.transaction-title_live {
  display: flex;
  align-items: center;
}

.transaction-title_live .dot {
  background: rgba(226, 22, 56, 0.1529411765);
  width: 21px;
  height: 21px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transaction-title_live .dot div {
  background: #ef1515;
  animation: live 2s linear infinite;
  width: 13px;
  height: 13px;
  border-radius: 100%;
}

@keyframes live {
  50% {
    opacity: 0.25;
  }
}
.transaction-title_live p {
  font-weight: 900;
  font-size: 20px;
  line-height: 120%;
  color: #64656b;
  margin-left: 20px;
}

.transaction-title_already {
  background: rgba(255, 0, 57, 0.1);
  padding: 15px 28px;
  border-radius: 15px;
}

.transaction-title_already p {
  font-weight: 800;
  font-size: 16px;
  line-height: 170%;
}

.transaction-title_already p span {
  color: #ff0039;
}

.transaction-header {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  display: flex;
  padding: 20px 36px;
  min-width: 1200px;
}

.transaction-header p {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.transaction .transaction-container p {
  min-width: 140px;
  max-width: 140px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.transaction .transaction-container p:not(:last-child) {
  margin-right: 40px;
}

.transaction .transaction-container p.block,
.transaction .transaction-container p.fee {
  min-width: 70px;
  max-width: 70px;
}

.transaction .transaction-container p.value {
  min-width: 130px;
  max-width: 130px;
}

.transaction-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  margin: 25px auto 0;
  overflow-x: auto;
}

.transaction .transactions-item .status {
  color: #00ff6e;
}

.transaction .arrow {
  min-width: 24px;
  max-width: 24px;
  margin-right: 40px;
  display: flex;
  align-items: center;
}

.transaction .arrow img {
  width: 24px;
  height: 24px;
}

.transaction-content {
  font-size: 16px;
  line-height: 36px;
  color: #fff;
  min-width: 1200px;
  font-weight: 600;
}

.transaction-content .status {
  color: #2a3eb6;
}

.transaction-item {
  display: flex;
  padding: 24px 36px;
}

.transaction-item:nth-child(2n+1) {
  background: rgba(255, 255, 255, 0.01);
}

@media (max-width: 1200px) {
  .top {
    margin: 100px 0 150px;
  }
  .participate {
    position: relative;
  }
  .participate-creator {
    position: absolute;
    right: 0;
  }
  .participate-container {
    flex-direction: column;
    max-width: 800px;
    margin: 40px auto 0;
  }
  .participate-item:not(:last-child) {
    margin: 0 0 20px;
  }
  .rules-container {
    max-width: 800px;
    margin: 50px auto 0;
  }
  .rules-row {
    flex-direction: column;
  }
  .rules-row:not(:last-child) {
    margin: 0 0 20px;
  }
  .rules-item:not(:last-child) {
    margin: 0 0 20px;
  }
  .instruction-container {
    max-width: 800px;
    margin: 40px auto 0;
  }
  .instruction-row {
    flex-direction: column;
  }
}
@media (max-width: 1100px) {
  .participate-creator {
    opacity: 0.2;
  }
}
@media (max-width: 900px) {
  .navigation-nav {
    display: none;
  }
  .top-container .globe svg {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 800px) {
  .trackNTrace {
    gap: 15px !important;
    flex-direction: column;
  }
  .top {
    margin: 50px 0 100px;
  }
  .top-container {
    max-width: 100%;
    flex-direction: column-reverse;
  }
  .globe {
    text-align: center;
    margin-bottom: 30px;
  }
  .globe img {
    width: 70%;
    margin-bottom: 30px;
  }
  .participate-creator {
    display: none;
  }
  .top-text {
    text-align: center;
  }
  .top-buttons {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .instruction-container {
    flex-direction: column;
  }
  .instruction-row:not(:last-child) {
    margin: 0 0 20px;
  }
  .instruction-item:not(:last-child) {
    margin: 0 0 20px;
  }
  .instruction-item {
    width: 100%;
  }
  .top-title {
    font-size: 38px;
  }
  .calculator-label {
    font-size: 16px;
  }
  .calculator-counter span {
    font-size: 24px;
  }
  .calculator-delimiter {
    margin: 0 15px 15px;
  }
  .participate-item {
    flex-direction: column;
    justify-content: center;
  }
  .participate-address,
  .participate-footer {
    justify-content: center;
  }
  .participate-data {
    margin: 15px 0 0;
  }
}
@media (max-width: 500px) {
  .participate-title {
    font-size: 17px;
    text-align: center;
  }
  .participate-address p {
    max-width: 300px;
  }
  .transaction-title {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 36px;
  }
  .transaction-title_live p {
    font-size: 15px;
  }
  .transaction-title_already {
    margin-top: 15px;
    padding: 0;
    background: 0 0;
  }
  .transaction-title_already p {
    font-size: 14px;
  }
  .top-title {
    font-size: 28px;
  }
  .top-button {
    font-size: 16px;
  }
  .calculator-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .calculator-input input {
    width: 100%;
  }
  .calculator-item {
    width: 100%;
  }
  .calculator-item:not(:last-child) {
    margin: 0 0 20px;
  }
  .calculator-delimiter {
    display: none;
  }
  .calculator-label {
    font-size: 18px;
  }
  .calculator-counter {
    height: auto;
  }
  .calculator-counter span {
    font-size: 32px;
  }
}
@media (max-width: 400px) {
  .navigation-participate {
    display: none !important;
  }
  .participate-button {
    width: 100%;
    margin-bottom: 10px;
  }
  .top-title {
    font-size: 24px;
  }
  .top-button {
    height: 50px;
  }
  .top-button.participate {
    font-size: 16px;
  }
  .top-button.qr {
    width: 50px;
  }
  .top-button.qr img {
    width: 30px;
    height: 30px;
  }
  .section-title {
    font-size: 22px;
  }
  .rules-title {
    font-size: 22px;
  }
  input {
    min-width: auto !important;
  }
}
img.participate-qr {
  width: 300px;
  padding: 5px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.glitch {
  color: white;
  font-size: 100px;
  position: relative;
  width: 400px;
  margin: 0 auto;
}

.discountedStyle {
  color: #cba067 !important;
  background-color: transparent;
  font-weight: 900;
}
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
.slider label {
  display: block;
  font-weight: 100;
  font-size: 10px;
  letter-spacing: 1px;
  text-shadow: none;
  text-transform: uppercase;
  font-weight: normal;
  opacity: 0.5;
  display: block;
  margin-bottom: 3px;
}
.slider .loader-text-holder {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-weight: 600;
  font-size: 13px;
}
.slider .loader-text-holder #loader-text-pc {
  display: flex;
  gap: 5px;
}
.slider .loader-text-holder .xmas-sale {
  position: relative;
}
.slider .loader-text-holder .xmas-sale mark {
  color: #ababab;
  background-color: transparent;
}
.slider .loader-text-holder .xmas-sale img {
  position: absolute;
  top: -10%;
  left: 22.5%;
  width: 25px;
}
.slider .loader-text-holder #xmas-value {
  color: #cba067;
  font-weight: 900;
}
.slider .slider-holder {
  display: flex;
  gap: 20px;
  align-items: center;
}
.slider .slider-holder #load {
  -webkit-appearance: none;
  border-radius: 16px;
  background-color: #272525;
  outline: none;
  border: none;
  height: 5px;
  width: 100%;
  cursor: pointer;
  position: relative;
  z-index: 99;
}
.slider .slider-holder span {
  color: #2e2e2e;
}
.slider .slider-holder input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: rgb(181, 181, 181);
  border-radius: 50%;
}
.slider span.hit {
  transition: 0.3s;
  color: white;
}

@keyframes noise-anim {
  0% {
    clip: rect(67px, 9999px, 31px, 0);
  }
  5% {
    clip: rect(65px, 9999px, 80px, 0);
  }
  10% {
    clip: rect(95px, 9999px, 1px, 0);
  }
  15% {
    clip: rect(59px, 9999px, 38px, 0);
  }
  20% {
    clip: rect(49px, 9999px, 71px, 0);
  }
  25% {
    clip: rect(63px, 9999px, 56px, 0);
  }
  30% {
    clip: rect(63px, 9999px, 4px, 0);
  }
  35% {
    clip: rect(96px, 9999px, 55px, 0);
  }
  40% {
    clip: rect(52px, 9999px, 69px, 0);
  }
  45% {
    clip: rect(65px, 9999px, 52px, 0);
  }
  50% {
    clip: rect(85px, 9999px, 65px, 0);
  }
  55% {
    clip: rect(56px, 9999px, 45px, 0);
  }
  60% {
    clip: rect(70px, 9999px, 58px, 0);
  }
  65% {
    clip: rect(58px, 9999px, 98px, 0);
  }
  70% {
    clip: rect(68px, 9999px, 42px, 0);
  }
  75% {
    clip: rect(37px, 9999px, 24px, 0);
  }
  80% {
    clip: rect(84px, 9999px, 5px, 0);
  }
  85% {
    clip: rect(23px, 9999px, 2px, 0);
  }
  90% {
    clip: rect(99px, 9999px, 22px, 0);
  }
  95% {
    clip: rect(7px, 9999px, 40px, 0);
  }
  100% {
    clip: rect(22px, 9999px, 61px, 0);
  }
}
.glitch:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 red;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(21px, 9999px, 31px, 0);
  }
  5% {
    clip: rect(28px, 9999px, 8px, 0);
  }
  10% {
    clip: rect(9px, 9999px, 96px, 0);
  }
  15% {
    clip: rect(73px, 9999px, 67px, 0);
  }
  20% {
    clip: rect(65px, 9999px, 64px, 0);
  }
  25% {
    clip: rect(26px, 9999px, 79px, 0);
  }
  30% {
    clip: rect(94px, 9999px, 15px, 0);
  }
  35% {
    clip: rect(46px, 9999px, 91px, 0);
  }
  40% {
    clip: rect(32px, 9999px, 2px, 0);
  }
  45% {
    clip: rect(43px, 9999px, 98px, 0);
  }
  50% {
    clip: rect(25px, 9999px, 35px, 0);
  }
  55% {
    clip: rect(42px, 9999px, 40px, 0);
  }
  60% {
    clip: rect(50px, 9999px, 53px, 0);
  }
  65% {
    clip: rect(88px, 9999px, 95px, 0);
  }
  70% {
    clip: rect(13px, 9999px, 64px, 0);
  }
  75% {
    clip: rect(57px, 9999px, 91px, 0);
  }
  80% {
    clip: rect(98px, 9999px, 23px, 0);
  }
  85% {
    clip: rect(16px, 9999px, 89px, 0);
  }
  90% {
    clip: rect(94px, 9999px, 45px, 0);
  }
  95% {
    clip: rect(7px, 9999px, 69px, 0);
  }
  100% {
    clip: rect(81px, 9999px, 2px, 0);
  }
}
.glitch:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 3s infinite linear alternate-reverse;
}

.qualifications .title {
  margin-bottom: 50px;
  display: block;
  text-align: center;
  font-size: 40px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1750px);
  }
}
.qualifications .slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 200px;
  margin: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.qualifications .slider img {
  display: block;
  width: 200px;
}
.qualifications .slider::before, .qualifications .slider::after {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 200px;
  position: absolute;
  width: 50%;
  z-index: 2;
}
.qualifications .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.qualifications .slider::before {
  left: 0;
  top: 0;
}
.qualifications .slider .slide-track {
  animation: scroll 25s linear infinite;
  display: flex;
  width: 8000px;
}
.qualifications .slider .slide {
  height: 100px;
  width: 350px;
  display: flex;
  align-items: center;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

.marquee__group2 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: 50px auto;
  max-width: 100vw;
}
.wrapper .marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0.3), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0.3));
          mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0.3), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0.3));
}
.wrapper .marquee .slide {
  display: flex;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  padding: 20px 50px;
  border-radius: 0.5rem;
  min-height: 150px;
  align-items: center;
}
.wrapper .marquee .slide p {
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.video-js {
  position: relative;
  margin: 20px 0px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  border-radius: 10px 10px 0px 0px;
  width: 100% !important;
}
.video-js .vjs-poster {
  border-radius: 10px;
}
.video-js .vjs-control-bar {
  border-radius: 10px;
}
.video-js .vjs-big-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 600px) {
  .video-js {
    height: 250px !important;
  }
}

.order-panel {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(55, 55, 55, 0.18);
  -webkit-backdrop-filter: blur(150px);
          backdrop-filter: blur(150px);
  overflow-y: scroll;
  z-index: 998;
  padding: 35px 0px;
  top: 0;
}
.order-panel .panel {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.order-panel .panel .title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.order-panel .panel .title h2 {
  color: white;
}
.order-panel .panel .title .title-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-panel .panel .title p {
  color: rgb(135, 135, 135);
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: white;
}
.order-panel .panel .title img {
  width: 30px;
  height: 30px;
  filter: contrast(0) drop-shadow(2px 4px 6px black);
  cursor: pointer;
}
.order-panel .panel .title.screenshot {
  flex-direction: column;
  gap: 15px;
}
.order-panel .panel .split-text {
  display: flex;
  flex-direction: row;
  color: rgb(128, 128, 128);
}
.order-panel .panel .split-text:before,
.order-panel .panel .split-text:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid;
  margin: auto;
}
.order-panel .panel .split-text:before {
  margin-right: 10px;
}
.order-panel .panel .split-text:after {
  margin-left: 10px;
}
.order-panel .panel .extraInfo {
  color: #676767;
  text-align: left;
  font-size: 12px;
  font-weight: 300;
}
.order-panel .panel .extraInfo .wrap-text {
  white-space: normal;
  display: block;
}
.order-panel .panel .input-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-panel .panel .input-fields .field {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.order-panel .panel .input-fields .field .radio-inputs {
  display: flex;
  width: 100%;
}
@media (max-width: 800px) {
  .order-panel .panel .input-fields .field .radio-inputs {
    flex-direction: column;
    gap: 10px;
  }
}
.order-panel .panel .input-fields .field .radio-field {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 10px;
}
.order-panel .panel .input-fields .field .radio-field label {
  margin-bottom: 0;
  gap: 10px;
}
.order-panel .panel .input-fields .field label {
  display: block;
  font-weight: 100;
  font-size: 10px;
  letter-spacing: 1px;
  text-shadow: none;
  text-transform: uppercase;
  font-weight: normal;
  opacity: 0.5;
  display: block;
  margin-bottom: 10px;
  color: lightgray;
}
.order-panel .panel .input-fields .field input[type=mail] {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 0;
}
.order-panel .panel .buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-panel .panel .buttons #btnSubmitOrder {
  background-color: lightgray;
  color: black;
}
.order-panel .panel .buttons #btnCLose {
  background: linear-gradient(to bottom, #333335, #343539);
  color: #747474;
}
.order-panel .panel .buttons button {
  box-shadow: 0 10px 50px rgba(36, 36, 36, 0.39), 0 4.78827px 9.03592px rgba(59, 59, 59, 0.34);
  border-radius: 9px;
  padding: 11px 15px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  line-height: 120%;
  border: none;
  transition: opacity 0.2s;
}
.order-panel .panel.confirmed a {
  text-decoration: underline;
  color: rgb(160, 160, 160);
}
.order-panel .panel.confirmed .summary {
  background: rgba(0, 0, 0, 0.37);
  border-radius: 15px;
  padding: 15px 0px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  color: white;
}
.order-panel .panel.confirmed .screenshotMessage {
  font-size: 12px;
  font-weight: 400;
  color: white;
}
.order-panel .panel.confirmed .screenshotMessage span {
  white-space: normal;
}
.order-panel .panel.confirmed .ordId {
  border-bottom: 1px solid rgba(38, 38, 38, 0.35);
  padding-bottom: 15px;
  color: rgb(137, 137, 137);
  font-weight: 700;
}
.order-panel .panel.confirmed .user-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
  border-bottom: 1px solid rgba(38, 38, 38, 0.35);
}
.order-panel .panel.confirmed .user-info p {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.order-panel .panel.confirmed .user-info p .title {
  text-align: left;
  display: block;
}
.order-panel .panel.confirmed .user-info p .value {
  text-align: right;
  white-space: normal;
  font-size: 15px;
  padding-left: 20px;
}
.order-panel .panel.confirmed .user-info p mark {
  background: transparent;
  color: #575757;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 400;
}
.order-panel .panel.confirmed .purchase-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
}
.order-panel .panel.confirmed .purchase-info p {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.order-panel .panel.confirmed .purchase-info p .title {
  text-align: left;
  display: block;
}
.order-panel .panel.confirmed .purchase-info p .value {
  text-align: right;
  white-space: normal;
  font-size: 15px;
}
.order-panel .panel.confirmed .purchase-info p mark {
  background-color: transparent;
  color: #575757;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 400;
}
.order-panel .panel.confirmed .purchase-info .xmas-sale {
  display: flex;
  gap: 5px;
}
.order-panel .panel.confirmed .purchase-info .xmas-sale .old {
  position: relative;
}
.order-panel .panel.confirmed .purchase-info .xmas-sale .old span {
  color: #ababab;
}
.order-panel .panel.confirmed .purchase-info .xmas-sale .old img {
  position: absolute;
  top: -5%;
  left: 27.5%;
  width: 25px;
}
.order-panel .panel.confirmed .purchase-info .xmas-sale .new mark {
  color: #cba067 !important;
  background-color: transparent;
  font-size: 15px;
}
.order-panel .panel.confirmed #btnTelegram {
  background: linear-gradient(to bottom, #4c4c4c, #363636);
  color: #999999;
  box-shadow: 0 10px 50px rgba(36, 36, 36, 0.39), 0 4.78827px 9.03592px rgba(59, 59, 59, 0.34);
  border-radius: 9px;
  padding: 11px 15px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  line-height: 120%;
  border: none;
  transition: opacity 0.2s;
  text-decoration: none;
}
.order-panel .panel.confirmed .btnPayment {
  background-color: lightgray;
  color: black;
  box-shadow: 0 10px 50px rgba(36, 36, 36, 0.39), 0 4.78827px 9.03592px rgba(59, 59, 59, 0.34);
  border-radius: 9px;
  padding: 11px 15px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  line-height: 120%;
  border: none;
  transition: opacity 0.2s;
  text-decoration: none;
}
.order-panel .panel.confirmed .finalizeButtons {
  display: flex;
  gap: 25px;
  flex-direction: column;
}
.order-panel .panel.confirmed .finalizeButtons .payment-methods {
  justify-content: center;
}
.order-panel .panel.confirmed .finalizeButtons .cryptoPayment {
  background: #c1772a !important;
  color: #efefef !important;
}

.alert-holder {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  pointer-events: none;
  z-index: 99999;
}
.alert-holder .alert {
  background-color: #792222;
  color: white;
  padding: 15px 30px;
  transition: opacity 0.5s ease;
  border-radius: 10px;
  text-transform: uppercase;
}
.alert-holder .alert.fade-in {
  opacity: 1;
}
.alert-holder .alert.fade-out {
  opacity: 0;
}

#btnEdit {
  font-size: 13px;
  font-weight: 600;
}

.pagenotfound {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-family: mulish, Arial, sans-serif;
}
.pagenotfound h1 {
  color: white;
  text-transform: uppercase;
  font-weight: 800;
}
@media (max-width: 900px) {
  .pagenotfound {
    width: 100%;
    font-size: 10px;
  }
  .pagenotfound img {
    width: 150px;
  }
}

.order-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  gap: 20px;
  padding-bottom: 40px;
}
.order-summary .title {
  display: flex;
  color: white;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
  padding-bottom: 20px;
  margin-top: 50px;
  width: 100%;
}
.order-summary .title .globe {
  position: relative;
}
.order-summary .title .globe img {
  margin-bottom: 0px !important;
}
.order-summary .title img {
  width: 125px;
}
.order-summary .title h1 {
  font-weight: 900;
}
.order-summary .title .title-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-summary .title .title-content .main-title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.order-summary .title .title-content .main-title span {
  color: #2a2a2a;
  font-size: 13px;
}
.order-summary .title .title-content ion-icon:nth-child(1) {
  display: none;
}
.order-summary .title .title-content ion-icon[name=close-circle-outline] {
  font-size: 35px;
  color: red;
}
.order-summary .title .title-content ion-icon[name=earth-outline] {
  font-size: 35px;
  color: white;
}
.order-summary .title .title-content ion-icon[name=checkmark-circle-outline] {
  font-size: 35px;
  color: lime;
}
.order-summary .title .title-content form {
  display: flex;
  gap: 10px;
}
.order-summary .title .title-content form button {
  border: 0;
}
.order-summary .title .title-content form input {
  border: 0;
}
.order-summary .title .title-content form input[type=text] {
  min-width: 400px;
  width: 100%;
  padding: 10px 15px;
  border-radius: 15px;
  border: 0;
}
.order-summary .title .title-content form input[name=trck] {
  display: none !important;
}
.order-summary hr {
  width: 70%;
  border-color: rgba(104, 104, 104, 0.2117647059);
}
.order-summary .subtitle {
  color: rgb(136, 136, 136);
  text-transform: uppercase;
  text-align: center;
}
.order-summary .subtitle span {
  white-space: normal !important;
}
.order-summary .order-confirmation {
  color: rgb(136, 136, 136);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}
.order-summary .summary {
  display: flex;
  gap: 30px;
  flex-direction: column;
  width: 65%;
  padding: 25px 0px;
}
.order-summary .summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  border-radius: 15px;
  padding: 30px 35px;
  width: 100%;
  position: relative;
  gap: 10px;
}
.order-summary .summary p span:nth-child(1) {
  font-size: 18px;
  font-weight: 900;
  color: #626262;
}
.order-summary .summary p span:nth-child(2) {
  font-size: 18px;
  font-weight: 100;
  color: white;
}
.order-summary .summary .card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  border-radius: 15px;
  padding: 30px 35px;
  width: 100%;
  position: relative;
}
.order-summary .summary .card.red .inner-circle.active,
.order-summary .summary .card.red .line.active {
  background-color: red !important;
}
.order-summary .summary .card.red .paid-amount {
  color: red;
}
.order-summary .summary .card .card-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.order-summary .summary .card span:nth-child(1) {
  font-size: 18px;
  font-weight: 900;
  color: #626262;
}
.order-summary .summary .card .map-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}
.order-summary .summary .card .status-bar {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.order-summary .summary .card .circle-holder {
  display: flex;
  justify-content: center;
  position: relative;
}
.order-summary .summary .card .circle-holder .circle {
  width: 40px;
  height: 40px;
  background-color: #181818;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  position: relative;
}
.order-summary .summary .card .circle-holder .circle .inner-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(60, 60, 60, 0.5490196078);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.order-summary .summary .card .circle-holder .circle .inner-circle.active {
  background-color: rgb(102, 0, 255);
  animation: none;
}
.order-summary .summary .card .circle-holder .circle .inner-circle.active:last-child {
  animation: blinker 3.75s ease-in-out infinite;
}
.order-summary .summary .card .circle-holder .circle-title {
  position: absolute;
  bottom: -30px;
  color: rgba(211, 211, 211, 0.231372549);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 100;
}
.order-summary .summary .card .circle-holder .circle-title.active {
  color: white;
}
.order-summary .summary .card .line {
  flex: 1;
  height: 5px;
  width: 200px;
  background-color: rgb(40, 40, 40);
}
.order-summary .summary .card .line.active {
  background-color: #6600ff;
  animation: blinker 4s ease-in-out infinite;
}
.order-summary .summary .paid-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.order-summary .summary .paid-amount.red {
  color: red;
}
@media (max-width: 900px) {
  .order-summary hr {
    width: 90%;
  }
  .order-summary .summary {
    width: 80%;
  }
  .order-summary .summary .card-title,
  .order-summary .summary .map-title {
    flex-direction: column !important;
  }
  .order-summary .summary .card-title .paid-amount,
  .order-summary .summary .map-title .paid-amount {
    align-items: flex-start !important;
    font-size: 13px !important;
  }
}
@media (max-width: 800px) {
  .order-summary .title {
    gap: 15px;
    flex-direction: column;
    margin-top: 30px;
  }
  .order-summary .title .globe img {
    width: 125px;
  }
  .order-summary .title .title-content {
    justify-content: center;
    width: 90%;
  }
  .order-summary .title .title-content .main-title {
    text-align: center;
    align-items: center;
  }
  .order-summary .title .title-content .main-title span {
    color: #2a2a2a;
    font-size: 13px;
  }
  .order-summary .title .title-content h1 {
    font-size: 15px;
    justify-content: center;
  }
  .order-summary .title .title-content ion-icon[name=close-circle-outline] {
    font-size: 20px;
  }
  .order-summary .title .title-content ion-icon[name=checkmark-circle-outline] {
    font-size: 20px;
  }
  .order-summary .title .title-content ion-icon:nth-child(1) {
    display: block;
  }
  .order-summary .title .title-content form {
    flex-direction: column;
    width: 100%;
  }
  .order-summary .title .title-content form input {
    min-width: auto !important;
  }
  .order-summary hr {
    width: 90%;
  }
  .order-summary .summary {
    width: 90%;
  }
  .order-summary .summary p span {
    font-size: 14px !important;
  }
  .order-summary .subtitle,
  .order-summary .order-confirmation {
    font-size: 12px;
    margin: 10px;
  }
}

.processing-loader {
  z-index: 9999;
  background: #0c0913;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.processing-loader .processing-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: space-around;
}
.processing-loader img {
  filter: grayscale(1);
  width: 150px;
}
.processing-loader h1 {
  color: rgb(100, 100, 100);
  text-align: center;
  font-size: 20px;
}

.address-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0c0913;
  color: white;
  padding: 20px 10px;
  z-index: 1000;
  overflow-y: auto;
}
.address-popup .holder {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.address-popup .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.address-popup .title h2 {
  color: white;
}
.address-popup .title img {
  width: 30px;
  height: 30px;
  filter: contrast(0) drop-shadow(2px 4px 6px black);
  cursor: pointer;
}
.address-popup .address-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.address-popup .address-holder .address {
  background: #1b1b1b;
  background: linear-gradient(135deg, rgba(188, 188, 188, 0.12) 10.93%, rgba(255, 255, 255, 0) 90%);
  color: #777777;
  font-weight: 100;
  padding-top: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.address-popup .address-holder .address span {
  padding-left: 10px;
  white-space: normal !important;
}
.address-popup .address-holder .address a {
  text-decoration: none;
  color: white;
  background: linear-gradient(to bottom, #494949, #565656);
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 5px 20px;
}
.address-popup .address-holder .selectAddress {
  text-decoration: none;
}
.address-popup .title {
  margin-bottom: 13px;
}
.address-popup button {
  box-shadow: 0 10px 50px rgba(36, 36, 36, 0.39), 0 4.78827px 9.03592px rgba(59, 59, 59, 0.34);
  border-radius: 9px;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  line-height: 120%;
  border: none;
  transition: opacity 0.2s;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 30px;
}

.quickreview .quickreview-holder {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.quickreview .quickreview-holder .owl-carousel {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.quickreview .quickreview-holder .owl-carousel .owl-item {
  width: 325px !important;
  height: 600px;
}
.quickreview .quickreview-holder .owl-carousel .owl-dots .owl-dot.active span {
  background-color: rgb(110, 110, 110);
}
.quickreview .quickreview-holder .owl-carousel .owl-dots .owl-dot span {
  background-color: rgba(30, 30, 30, 0.85);
  width: 7px;
  height: 7px;
}
.quickreview .quickreview-holder .owl-carousel .carousel-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border-radius: 15px;
  gap: 15px;
  height: 100%;
  /* &:nth-child(even) {
      .item-information {
          flex-direction: column-reverse;
          justify-content: flex-start;
      }
  } */
}
.quickreview .quickreview-holder .owl-carousel .carousel-item img {
  height: 400px;
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 5px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.quickreview .quickreview-holder .owl-carousel .carousel-item span {
  white-space: normal !important;
}
.quickreview .quickreview-holder .owl-carousel .carousel-item .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.quickreview .quickreview-holder .owl-carousel .carousel-item .item-information {
  color: rgb(159, 158, 158);
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
  justify-content: space-between;
}
.quickreview .quickreview-holder .owl-carousel .carousel-item .stars i {
  color: rgb(255, 165, 0);
}

.leaflet-routing-container {
  display: none !important;
}

.leaflet-bottom.leaflet-right {
  filter: invert(1);
}

.leaflet-control-zoom-out,
.leaflet-control-zoom-in {
  filter: invert(1);
}

.marker-label {
  text-align: center;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  font-size: 12px;
  padding: 8px;
  border-radius: 8px;
  white-space: nowrap;
}

svg {
  width: 90%;
  height: 90%;
  visibility: hidden;
  position: absolute;
  filter: grayscale(1);
}

#snow {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -9999;
}

.top-button::before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: -3px;
  right: 0;
  height: 23px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAXCAYAAACS5bYWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABFpJREFUeNrUV0tIo1cUvpkYjQ4xxSA6DxuNqG0dtaUKOgs3s6i0dFd3pSsXdjeIixakiGA34sZuXCkoONLFwJTK4GMYLYXg29gatTpiXurkbd7vv9/5ub+IxuhA7eiFQ5Kbc8/57ne/e87/ywRBYLdl3GG3aNwqsLJ0k0tLS+fmcnNzWUVFBVMoFGx2djarvLxcm5OTw+bm5iytra2xc4ExNjY27iqVyvvwK6CpeDzuCYVC1urq6qDA9UcfPp+PHR4esmAwKK6tr68/l5/8rgQ2Ozub1dbWyiYmJooaGxt/VqvV38jlchX9l0qlwoFA4DWS/RKLxRxFRUVf5+XlPcaaT2AP0sVPJBL2SCRiAPBpu93+vKamZo/Ae71eZjabWV1dXVqw7CKwp43ksrCw8Bhg7MJ/PLDZ5PHx8cz29vYT5JGD/bSYLgTrcDgYdk6siSc6NjZWDaAe4ZoHQL+cmZnRpZPnhWDpD8kw7uKo9ML/NMCsd2tr61vkzboMrEyv138M7TyLRqMWMBsX3sMgaZhMpp+AR5EJrCocDpuEGzKg4x8khs+CVWxubvZfR9JkMik4nU7BarUKLpeLmLsKuwIqTLynp4fqmIzASrqQT09Pf1VVVfX0KsWZ6uHBwQHTaDSsoKAgo6/H4xHLEcrVyRwuEisrKzs5XrrIVAVwiUVDKRRrL+YI32ewdVhMApuHWvcj6vids6J2u90MF4yBHUZNgKoEBaRBQalJqFSqtJfUYrGIlQX+ydXVVTN+u0tKSjQNDQ1axJVl2iTypebn55d7e3v/kqoDgZU1NTU9LCws/Py0M+2ekuGincxJ3yF+18jIyHJLS0slQJUWFxczrBeBE0vE5tHRkbixlZWVfSR8gTX/0P5gH7S1tX3Z3t7+BW8qAvwSfr8/jA0EIRM/qoFtampqbW9vTw+XA+ojUruVd3Z2tvb19T2TQFEim81GgVJoCvvj4+NLOJZgaWmpemdn5y3a6BbcnJDAw8HBwac6ne6eqCW5XDwB3qVSqM9/DAwMUNy/eVLabT7sI25qwgujThCBhWE+mAt2yNc4SQKSZrOQQE1HS22VJkmPAGTr7+//fX19fRk+Zgq0trbGeFAKEAQT98BSqKOj47vm5uaa/Px8JeIk4GcaHh6eWlxcfAU/A8xG67BxAX3fwdcbYUpSDJ06Z49Ak8ZC3OL8f3YiA4PBYKdLQ2AJ9OTk5GpXV9cQiCVh79M94QtlPLDUE/1gPNrd3f0W33W4cBoco48zQuy/IZYAMnGqlSc4c66L9JruQUaSARXeT8HGKzxAqFBekni6+h46+pMzGiJGMgTOJh1yU/KNEGDvZWvfBawkA9ppwGg0mrRa7SOI2g+gxOgbJIpdFpj72PnxSnPX8vqRxTURgBQWKisrH+GThOm+CtAzoK/9/Uiqq/6hoaHfdnd3jaOjo7/yY7yxbwqkWy3sQzpS2C6YirwvUJk0y7hurfyGRrnduPGvAAMASmo8wzeVwfsAAAAASUVORK5CYII=) no-repeat 0 0, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE0AAAAXCAYAAABOHMIhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABiZJREFUeNrsWMtPlFcUvzPMwIDysLyRR4uATDHWCiVgSmRlios2DeiiXUFs0nRBd6arxqQhJDapkYXhP4BqDKTQhZaFNQSCaBEVJjwdHsNr5DUMDDPDzPT3u7nTDEgRKrKgc5KT+z3uufec33de99P4fD4RpL2RNgjB3kn35MkTeRERESFiYmLkGBoaKnQ6nWSNRvPPZFxr+vv7k6KioiIdDsfa8vLyQkFBgcP3Bnel3MDAQArWI0eFhISE87nb7bZ7PJ4VvLYuLi5O5+fnu9+kMNfq6+tLjIyMzMY6KeBEbK/XarXReI3lPDZMWcc4v7GxYV1dXR3Jy8ub2E5HPvJ6vRSSDH0ku1wuAfsEZOV1IEFHoeNFdHS0yMrK2knR0Lm5uR+hxLdQMjbwHTZbB41h8RGwCdc9MzMzneHh4bGJiYlf4SN8ijkfwqiIncCAAR7Iz2GPSShudjqdfeCeqampvwBQfFxc3JdYqwTv8gB8/F48A8BgKecE14V+L7ju2tpae05OzkuCCZvkPOj8mizmC6vVKtmPu+bx48cC3qI1mUyFUOyywWD4SHlELBaLJmCHNcwAghuAOujtuF4FqHO4nsX4EsAS3I4TJ04ME1h8PDE9PS09TYZoY2Pj1729vd6lpSVfkDYTPG0UkfNDRUWFgQ5Gb2Mh0N29e9eG/GQfHh4W8/PzwUy/ObQ/gMfVVlZW1iAiZdQxp3nv3LljRoL/5erVq1UIxzSiiVD9X4EDYATynCwAzGO858hCQRoaGmJFZNJz8YIcBc4BF966dau6sLAwBxVSJCUlCSThQwuU3W6XkYUok1Vzm5znQx5bbm9v77p+/frPeNSNRzZ/ISBwrG4ZR48eLamtrf2+uLjYSEG9Xi/wTISFhQlWGXohyzO/CJlVl23KQRLbABoaHx+/Z1lUZ/Hq1SsJFj3JT3hmHx8fnydPTEzMj46OziHPW2w22wxeD4Kfgadh/4YEzU8Az4DhffAn5eXlX1y6dKkEoCTspAQ9Mjs7+0BBo8Fms1lkZGTsOo0QLLRNkvnR+fEJzIMHD0xtbW39CL8JTFtSbAOvBIyLHIGVm9VzE2gKuDAMSSpcT6KXyT137lx2cnLyMXhcGDb3wq3XuWF3d/fCzZs3P0c4v5eSknJQbYLo7Ox0gC2lpaVZ3Be67Th/dnZWoAJKsJC3XA8fPhxoamp6hMb+BaaMgWcUMGtszZjiFDNmvcDI91pzG0iY4ARwkwrxkcHBwUdgNrRMbnrqoRbkVzDcvn3bl5qaWsmcgFH4G8XdEGUWFhak51AuISFBnkoCTyFbyWKxCJwIxlC0fq2rq7tcVFRkRKskjh8/Lr0+kBjCCDV/knfdv3//WX19/R8IRRNemxlu4AXwKqM+EJwdj1HbPYSwh3sCPAJDABm2LLchCjS+5/kirKGhwWk0GrMuXrxYQuX9hm/XXTMXMY+srKwI5ApZrbYmZh7deEJhAUKjLe/pLTzSsCuHrK+1tbUJVe3P6upq87Vr174rKysrYHVj/uW+OH3IfEuw4F3ee/fuPQfAvwOs5yyE4CnlFOu7BWrTCWlreO6FACpBZGwUw4BvkANLobReHb3kGZYGsGzTq/zlO8AT1ru6uoZbWlqeA6gINJAfnz59OlVLoX8Jtebm5raampqfcMvQYgTknz9//sKVK1c+y83NTdIEuCnaKMuNGzd+6+np6cCtSTkAw9D9X8Dyh+dbgaaAC1XAnUlPTy+qqqq6cPbs2UzkmWjNljiDJzpwHFnCkW2yo6NjCKW8H54wjlezKvRT09LSTsJrz5w6dSoN+Yp51ADAPUj8VoDbDq9pxrwuJcNIYQllJTIi/xopBw/VA7DJp0+f9hA78CgL5F5C8J2CpoCj8sfA6WCe/FPRhsRlZmbGIs8Y4FFO5CJgtrSsvrRVGW1V93b1myoGnKAKEcHgnwsWpg1lNI0fphwrmdqbckeU18WrnlOjqp5/j7W3BWvfQVPKa5SBkcrYCNVB65TRTlWZ1lXiXVU5xbtlDb2SPaLWYwrgHIcqPg6Vc7fbX69Yoyqfa7/AeiegbWOEVhmsVcWDwPn224iDJgla8Hd38Hd3ELQgaIeI/hZgAIPEp0vmQJdoAAAAAElFTkSuQmCC) no-repeat 50% 0, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAXCAYAAACFxybfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAodJREFUeNrsVb1rWlEUv2pN/GqspKRSKFYXWzEloIWif0Fn6dJChQ7OQil0qd3EzcEpg0OgdHDr4CQODk7VRlLMEIVqApX4We0zflR9/Z1Ui4T34ksaaAYP/Hzc673n/M6550PG8zz73yKjn0wm83fDYDAwo9HINBrNnwOQg4MDs0ql2lQqlfdAWont7ng8Pjw+Ps44nc4G1pI9EXWaSOzt7TGO42aH5Pv7+08ajUZ0MBiUeXEZd7vdL5VK5fX29rZ+5tQiEmdxKrlcjsEYczgcynK5/BKKv/IXFNz/XiqVXkHdjUuRIA9SqdRD8or/R8Ez9fr9fqHVakUR4c2z0REjIQuHw2ZcrPBXLCA0RHTezEdHjIQqkUhEr9I4HOILhQLf6/VoOUFEvDMiQiToDx1Cdz+bzZ6bUFarlel0OkkVUK/XWbvdPoVer5fh3ntsfwJ+CJ2XA4p0Op1bpBgJyxDehQQ6nQ5DZXHBYDBZq9V+EhFUndnr9drEqoc2bwJbwGPgtohuVSwWe2Gz2TZMJpNgRKi6qtUqg2EWj8dTgUDgo0KhWPN4PC70EvXOzs67fD6/S6kiRIKeZA1YJ2MiJNbdbvfTUCjkV6vVK2hcDF8GI2w0GrGTkxM2HA5PDxaLxSOfz/cWEfk81X0XIMMFgJJ/srBjCgk8IdcfuVyuZ36//7nFYtkQyAMumUzuRiKRD0jMFLa+AZOpYwqgB/ziBVqmVBKUO7eAB/R0WG/Z7XaTVqtdbTabHJL6EK2djBaBPHA0NSqpbUsiMUeEBgpF4Q5AbZrmSJ/yEWgBTaBNHl9kdkgmMUeG7qwAq9PqovceTA3zlxlgsuswyuXsGsiSxJLEkoSY/BZgAEjRodi+uBruAAAAAElFTkSuQmCC) no-repeat 100% 0;
}/*# sourceMappingURL=style.css.map */
.no-scroll {
  overflow: hidden;
}
.invalid-field {
  background-color: #d26363; /* Change this to the desired red color */
}

.faq1 .slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 200px;
  margin: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.faq1 .slider img {
  display: block;
  width: 200px;
}
.faq1 .slider::before, .faq1 .slider::after {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 200px;
  position: absolute;
  width: 50%;
  z-index: 2;
}
.faq1 .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.faq1 .slider::before {
  left: 0;
  top: 0;
}
.faq1 .slider1 .slide-track1 {
  display: flex;
  width: 8000px;
}
.faq1 .slider1 .slide1 {
  height: 100px;
  width: 350px;
  display: flex;
  align-items: flex-start;
}

.marquee__group1 {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}
.wrapper1 {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: 50px auto;
  max-width: 100vw;
}
.wrapper1 .marquee1 {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0.3), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0.3));
          mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0.3), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0.3));
}
.wrapper1 .marquee1 .slide1 {
  display: flex;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  padding: 150px 100px;
  border-radius: 0.5rem;
  min-height: 150px;
  align-items: flex-start;
}
.wrapper1 .marquee1 .slide1 p {
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  text-align: flex-start;
  color: #fff;
}
.wrapper1 .marquee1 .slide1 h1 {
  font-weight: 600;
  font-size: 50px;
  text-transform: uppercase;
  text-align: start;
  color: #00ff6e;
  margin: 0; /* Reset margin to remove any default spacing */
}
.wrapper .marquee .marquee__group {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap; /* Allow flex items to wrap to the next line */
}

.wrapper .marquee .faq-slide {
  flex: 1; /* Distribute available space equally among the slides */
  margin: 10px; /* Add some margin for spacing */
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10.93%, rgba(255, 255, 255, 0) 90%);
  padding: 20px;
  border-radius: 0.5rem;
  max-width: 400px; /* Set a maximum width for the box */
  text-align: center; /* Center text */
  min-height: 200px;
  align-items: center;
}

.wrapper .marquee .faq-slide h2 {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.wrapper .marquee .faq-slide p {
  font-size: 17px;
  color: #fff;
}
@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-5px);
  }
}

/* Apply the animation to the FAQ section */
.faq-slide {
  animation: float 3s infinite ease-in-out;
}