* {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow: hidden;
}

@media only screen and (max-width: 679px) {
  .logo {
    display: none;
  }
}

@media only screen and (min-width: 680px) {
  .logo {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.7;
  }
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
  z-index: -1;
}

.label {
  color: white;
}

.control-bar {
  z-index: 1;
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
}

.controlBarTopLeft {
  z-index: 1;
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: row;
}

.controlBarTopRight {
  z-index: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
}

.button {
  height: 40px;
  width: 40px;
  background-color: #111;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  opacity: 0.6;
  margin: 5px;
  z-index: 999;
}
.button.active {
  background-color: white;
}
.button.active .icon {
  color: #111;
}

.button .icon {
  padding: 12px 10px;
}
.button.hidden {
  display: none;
}

.button .button-badge {
  position: absolute;
  right: 0;
  opacity: 1;
  height: 20px;
  width: 20px;
  background-color: darkred;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  z-index: 999;
  font-size: 0.8rem;
}

.controlBarTopRight .icon {
  padding: 5px 10px;
}

.icon {
  color: white;
}

/* hide */
#controlBarLeft.hidden {
  display: none;
}
#controlBarTopLeft.hidden {
  display: none;
}
/* exit button */
.controlBarTopRight.hidden {
  display: none;
}

/* loader */

#loading-screen {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 1;
  transition: 1s opacity;
}

#loading-screen img {
  position: relative;
  top: 20%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#loading-screen.hidden {
  display: none;
}

#loading-screen.fade-out {
  opacity: 0;
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  /* border-top-color: #9370db; */
  border-top-color: #ffbb9e;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  /* border-top-color: #ba55d3; */
  border-top-color: #da784e;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  /* border-top-color: #ff00ff; */
  border-top-color: #833a1b;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* SHOP COMPONENT */

.shop-component {
  position: absolute;
  /* animation-name: fadeInLeft;
  animation-duration: 2s; */
  opacity: 1;
}
/* .shop-component.hidden {
  animation-name: fadeOutLeft;
  animation-duration: 2s;
  opacity: 0;
} */

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-600px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-600px);
  }
}

/* ARTICLE LIST COMPONENT */

.winelist-component {
  position: absolute;
  /* animation-name: fadeInRight;
  animation-duration: 2s; */
  opacity: 1;
}

/* .winelist-component.hidden {
  animation-name: fadeOutRight;
  animation-duration: 2s;
  opacity: 0;
} */

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(600px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(600px);
  }
}

/* CART COMPONENT */

.cart-component {
  position: absolute;
  animation-name: fadeInRight;
  animation-duration: 2s;
  opacity: 1;
}

.cart-component.hidden {
  animation-name: fadeOutRight;
  animation-duration: 2s;
  opacity: 0;
}

/* shop cart - mobile */

@media only screen and (max-width: 679px) {
  .cart-component {
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
  }
}

@media only screen and (min-width: 680px) {
  .shop-component {
    top: 10%;
    bottom: 10%;
    left: 0px;
    width: 500px;
  }

  .winelist-component {
    top: 10%;
    bottom: 10%;
    right: 0;
    width: 500px;
  }

  .cart-component {
    top: 10%;
    bottom: 10%;
    right: 0px;
    width: 500px;
  }
}

/* MOBILE SHOP */

.article-mobile-component {
  /* margin-top: 75vh; */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
}

.article-mobile-component.hidden {
  display: none;
}

/* click inside info  */

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.info {
  position: absolute;
  top: 70%;
  left: 50%;

  width: 240px;
  height: 30px;

  margin: -15px 0 0 -120px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 15px;
  background-color: #fff;
  font-size: 12px;
  z-index: 100;
  color: #444;
  opacity: 0;
}

.info.show {
  animation: fadeInOut 10s;
}


.container[data-v-3bb8ef6a] {
  padding: 0;
}
.cart-content[data-v-3bb8ef6a] {
  color: white;
  padding: 40px;
}
.cart-content .scroll[data-v-3bb8ef6a] {
  height: 100%;
}
.cart-content .title[data-v-3bb8ef6a] {
  color: #bb5b29;
}
.cart-content .noitems[data-v-3bb8ef6a] {
  color: white;
  font-size: 1rem;
}
.cart-content[data-v-3bb8ef6a]:after {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: " ";
  /* background: white; */
  background: #373633;
  /* background: linear-gradient(180deg, #404348 0, #323031 100%); */
  opacity: 0.95;
  z-index: 1;
  /* border-radius: 50px; */
  -webkit-box-shadow: 4px 5px 40px 5px rgba(0, 0, 0, 0.7);
  box-shadow: 4px 5px 40px 5px rgba(0, 0, 0, 0.7);
}
.cart-content .scroll[data-v-3bb8ef6a] {
  z-index: 2;
  height: 100%;
}
.cart-content .scroll .content[data-v-3bb8ef6a] {
  z-index: 2;
  position: relative;
  width: 100%;
  font-family: "Georgia";
}
.container.items[data-v-3bb8ef6a] {
  padding-bottom: 40px;
}
@media only screen and (max-width: 845px) {
.cart-content img[data-v-3bb8ef6a] {
    width: 50px;
}
}
@media only screen and (min-width: 846px) {
.cart-content img[data-v-3bb8ef6a] {
    width: 100px;
}
.cart-content .content .title[data-v-3bb8ef6a] {
    font-size: 1.6rem;
    /* padding: 20px; */
    padding-bottom: 20px;
}
}
.button-close-cart[data-v-3bb8ef6a] {
  position: absolute;
  right: 0;
  top: 0;
  /* border: 1px solid rgba(255, 255, 255, 0.9); */

  margin: -20px -15px 0 0;
  opacity: 0.9;
}
.button-close-cart .icon[data-v-3bb8ef6a] {
  margin: -10px 0 0 0;
}
.shop-btn[data-v-3bb8ef6a] {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  text-align: center;
  height: 60px;
  /* width: 280px; */
  background-color: #111;
  /* border-radius: 10px; */
  opacity: 0.6;
}
.shop-btn.close[data-v-3bb8ef6a] {
  background-color: #bb5b29;
}
.shop-btn .icon[data-v-3bb8ef6a] {
  margin-right: 10px;
  margin-left: 10px;
  width: 50px;
}
.shop-btn .text[data-v-3bb8ef6a] {
  color: white;
}
.amount-container[data-v-3bb8ef6a] {
  display: flex;
}
.amount-btn[data-v-3bb8ef6a] {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 0 10px;
  font-size: 1.2rem;
  text-align: center;
  height: 40px;
  width: 40px;
  background-color: #111;
  opacity: 0.6;
}
.amount-text[data-v-3bb8ef6a] {
  font-size: 1.8rem;
  padding-left: 10px;
  padding-right: 10px;
}


.shop[data-v-023a0f17] {
  /* color: black; */
  color: white;
}
@media only screen and (max-width: 679px) {
.shop-content .title[data-v-023a0f17] {
    font-size: 1.2rem;
    padding: 20px;
}
.shop-content .description[data-v-023a0f17] {
    font-size: 1rem;
    padding: 20px;
}
}
@media only screen and (min-width: 680px) {
.shop-content .title[data-v-023a0f17] {
    font-size: 1.6rem;
    padding: 0 0 20px 0;
    color: #bb5b29;
}
.shop-content .description[data-v-023a0f17] {
    font-size: 1.2rem;
    padding: 0 0 20px 0;
}
.shop-content .price[data-v-023a0f17] {
    padding: 0 0 60px 0;
}
}
.shop[data-v-023a0f17]:after {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: " ";
  /* background: white; */
  background: #373633;
  /* background: linear-gradient(180deg, #404348 0, #323031 100%); */
  opacity: 0.95;
  z-index: 1;
  /* border-radius: 15px; */
  -webkit-box-shadow: 4px 5px 40px 5px rgba(0, 0, 0, 0.7);
  box-shadow: 4px 5px 40px 5px rgba(0, 0, 0, 0.7);
}
.shop-content[data-v-023a0f17] {
  z-index: 2;
  position: absolute;
  width: 100%;
  font-family: "Georgia";
  padding: 60px;
}
.shop-content .price[data-v-023a0f17] {
  font-size: 1.4rem;
  /* padding: 20px; */
  font-weight: 500;
}
.shop-content .buy[data-v-023a0f17] {
  /* padding: 10px; */
}
.shop-btn-bar[data-v-023a0f17] {
  display: flex;
  justify-content: space-between;
}
.shop-btn[data-v-023a0f17] {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  text-align: center;
  height: 60px;
  /* width: 280px; */
  background-color: #111;
  /* border-radius: 10px; */
  opacity: 0.6;
  width: 100%;
}
.shop-btn.close[data-v-023a0f17] {
  background-color: #bb5b29;
}
.shop-btn .icon[data-v-023a0f17] {
  margin-right: 10px;
  margin-left: 10px;
  width: 50px;
}
.shop-btn .icon-1[data-v-023a0f17] {
  margin-left: 10px;
  margin-right: -12px;
  width: 50px;
}
.shop-btn .icon-2[data-v-023a0f17] {
  margin-left: -12px;
  margin-right: 0px;
  width: 50px;
}
.shop-btn .text[data-v-023a0f17] {
  color: white;
}


.shop-mobile-content[data-v-5223094f] {
  color: white;
  font-family: "Georgia";
  height: 100%;
  z-index: 2;
}
.shop-mobile-content .content[data-v-5223094f] {
  position: relative;
  top: 80%;
  padding: 25px;
  font-size: 1.2rem;
  background: #373633;
  opacity: 0.95;
  /* height: 100%; */
  /* border: 1px solid red; */
  border-radius: 20px 20px 0 0;
  margin: 0;
  -webkit-box-shadow: 4px 5px 40px 5px rgba(0, 0, 0, 0.7);
  box-shadow: 4px 5px 40px 5px rgba(0, 0, 0, 0.7);
}
.shop-mobile-content .content .gripper[data-v-5223094f] {
  position: absolute;
  left: 48%;
  margin: -15px 0 0 0;
  opacity: 0.3;
}
.shop-mobile-content .content .title[data-v-5223094f] {
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 1.4rem;
  color: #bb5b29;
}
.shop-mobile-content .content .description[data-v-5223094f] {
  font-size: 1rem;
  padding-bottom: 20px;
}
.shop-mobile-content .content .price[data-v-5223094f] {
  padding-bottom: 20px;
}
.shop-mobile-content .content .button[data-v-5223094f] {
  position: absolute;
  right: 20px;
  top: 0;
  /* border: 1px solid rgba(255, 255, 255, 0.9); */

  margin: -15px -15px 0 0;
  opacity: 0.9;
}
.shop-mobile-content .content .button .icon[data-v-5223094f] {
  margin: -10px 0 0 0;
}
.shop-content .buy[data-v-5223094f] {
  /* padding: 10px; */
}
.shop-btn-bar[data-v-5223094f] {
  display: flex;
  justify-content: space-between;
}
.shop-btn[data-v-5223094f] {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  text-align: center;
  height: 60px;
  /* width: 280px; */
  background-color: #111;
  /* border-radius: 10px; */
  opacity: 0.6;
  width: 100%;
}
.shop-btn.close[data-v-5223094f] {
  background-color: #bb5b29;
}
.shop-btn .icon[data-v-5223094f] {
  margin-right: 10px;
  margin-left: 10px;
  width: 50px;
}
.shop-btn .text[data-v-5223094f] {
  color: white;
}
.shop-btn .icon[data-v-5223094f] {
  margin-right: 10px;
  margin-left: 10px;
  width: 50px;
}
.shop-btn .icon-1[data-v-5223094f] {
  margin-left: 10px;
  margin-right: -12px;
  width: 50px;
}
.shop-btn .icon-2[data-v-5223094f] {
  margin-left: -12px;
  margin-right: 0px;
  width: 50px;
}
.shop-btn .text[data-v-5223094f] {
  color: white;
}


.winelist[data-v-292eedb8] {
  /* color: black; */
  color: white;
}
.winelist[data-v-292eedb8]:after {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: " ";
  /* background: white; */
  background: #373633;
  /* background: linear-gradient(180deg, #404348 0, #323031 100%); */
  opacity: 0.95;
  z-index: 1;
  /* border-radius: 50px; */
  -webkit-box-shadow: 4px 5px 40px 5px rgba(0, 0, 0, 0.7);
  box-shadow: 4px 5px 40px 5px rgba(0, 0, 0, 0.7);
}
.winelist .scroll[data-v-292eedb8] {
  z-index: 2;
  height: 100%;
}
.winelist .scroll .content[data-v-292eedb8] {
  z-index: 2;
  position: relative;
  width: 100%;
  font-family: "Georgia";
}
.winelist .item[data-v-292eedb8] {
  font-size: 1.2rem;
  z-index: 3;
  color: black;
  /* border: 1px solid red; */
}
.winelist img[data-v-292eedb8] {
  width: 50px;
}


.right-enter-active[data-v-fbcabccc],
.right-leave-active[data-v-fbcabccc] {
  transition: all 2s ease;
}
.right-enter-from[data-v-fbcabccc],
.right-leave-to[data-v-fbcabccc] {
  opacity: 0;
  transform: translateX(600px);
}
.left-enter-active[data-v-fbcabccc],
.left-leave-active[data-v-fbcabccc] {
  transition: all 2s ease;
}
.left-enter-from[data-v-fbcabccc],
.left-leave-to[data-v-fbcabccc] {
  opacity: 0;
  transform: translateX(-600px);
}

