:root{
  --bg-color: linear-gradient(96.13deg, #09AEE4 -48.42%, #01E051 157.13%)
}
.ggskin { font-family: Arial, Helvetica, sans-serif;
font-size: 14px;}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.5);
    box-shadow: 0 0 0 0 rgba(242,242,242);
    border-radius: 100%;
  }
  70% {
    -moz-box-shadow: 0 0 0 30px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 40px rgba(1, 60, 79, 0);
    border-radius: 100%;
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(1, 60, 79, 0);
    border-radius: 100%;
  }
}
@keyframes stretch {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@800;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

.ggskin .N{
  font-family: 'Source Sans Pro', sans-serif;
}
::-webkit-scrollbar {
    background-color: transparent;
    width: 10px !important;
	height: 6px;
}
::-webkit-scrollbar-thumb {
    background-color: #808080 !important;
    border-radius: 0 !important;
	width: 2px;
	height: 4px;
}
.ggskin .T_flur{
  backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
-moz-backdrop-filter: blur(10px);
}
.T_url a{
  color: red !important;
}

.m-0{
  margin: 0 !important;
}

.p-0{
  padding: 0 !important;
}

.popup{
  position: fixed;
  background: rgba(0,0,0,0.80);
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  z-index: 10;
}

.popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 0.4rem;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
}

#modal_stores .popup-header{
  background: rgb(100, 100, 100);
  text-align: center;
  display: flex;
  justify-content: start;
}

.popup-header .logo img{
  margin-top: 10px;
  margin-left: 15px;
}

.popup-header .title{
  font-size: 36px;
  margin: 13px auto;
}

.popup-body{
  background: #eeeeee;
  display: flex;
  flex-direction: column;
}

.popup-body .top{
  padding: 30px 0;
  height: 40px;
  margin: 0 auto;
  width: max-content;
}


.popup-body .body{
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(100vh - 209px);
  text-align: center;
  color: #000000;
}

.close-popup{
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.box_item_store{
  float: left;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  color: #000000;
  width: 100%;
}

.txt_search{
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6e707e;
  background-color: transparent;
  border: none;
  border-radius: 0.35rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  outline: 0;
}

.search {
  background: #ffffff;
  width: 250px;
  border-radius: 5px;
  display: flex;
}

.search img{
  padding: 10px;
}

.tooltip:hover .tooltip-left, .tooltip:hover .tooltip-right, .tooltip:hover .tooltip-top, .tooltip:hover .tooltip-bottom {
  visibility: visible;
}

.tooltip .tooltip-left {
  visibility: hidden;
  width: max-content;
  background-color: rgb(218, 220, 224);
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: -5px;
  right: 105%;
}

.tooltip .tooltip-left::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgb(218, 220, 224);
}

.tooltip .tooltip-right {
  visibility: hidden;
  position: absolute;
  width: 120px;
  background-color: rgb(218, 220, 224);
  color: #000;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  z-index: 1;
  transition: opacity .6s;
  top: 5px;
  left: 125%;
}

.tooltip .tooltip-right::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent rgb(218, 220, 224) transparent transparent;
}

.tooltip .tooltip-top {
  visibility: hidden;
  position: absolute;
  width: 120px;
  background-color: rgb(218, 220, 224);
  color: #000;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  z-index: 1;
  transition: opacity .6s;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltip-top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(218, 220, 224) transparent transparent transparent;
}

.tooltip .tooltip-bottom {
  visibility: hidden;
  position: absolute;
  width: 120px;
  background-color: rgb(218, 220, 224);
  color: #000;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  z-index: 1;
  transition: opacity .6s;
  left: 50%;
  margin-left: -60px;
  top: 135%;
}

.tooltip .tooltip-bottom::after {
  content: "";
  position: absolute;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  bottom: 100%;
  left: 50%;
  border-color: transparent transparent rgb(218, 220, 224) transparent;
}

.back-list-store{
  position: absolute;
  right: 80px;
  top: 13px;
  cursor: pointer;
  display: none;
}

.back-list-store img{
  background: #ffffff;
  border-radius: 50%;
}

#popup .popup-header{
  height: 50px;
  background: #6e707e;
}

/*#popup .close-popup img{*/
/*  width: 36px;*/
/*}*/

#popup .popup-body{
  height: calc(100% - 50px);
}

#popup .store_name{
  font-size: 24px;
  text-align: left;
  padding: 10px;
  display: -webkit-box;
  line-height: 1.5;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 30px;
  width: 90%;
}


/* vr control */
.right-control-top{
  position: absolute;
  right: 0;
  top: 0;
}

.vr-button.button_category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffffff;
  padding: 10px 10px 6px;
  border-radius: 50%;
  z-index: 6;
}

.vr-button.button_category:hover {
  background: #ddd;
  cursor: pointer;
}

.vr-button.button_home {
  background: #ffffff;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  top: 12px;
  right: 15px;
  padding: 10px 10px 6px;
  border-radius: 50%;
}

.vr-button.button_home.preview{
  display: block;
  padding: 8px 8px 4px;
  top: 5px;
  right: 10px;
}

.popup-preview .back-list-store{
  display: block;
}

/* List categories */
.popup-list-category .popup-header{
  display: none;
}

.popup-list-category .popup-content{
  width: 60vw;
  height: 63vh;
}

.popup-list-category .popup-body{
  background: unset;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  height: 590px !important;
}

.box_category_item {
  float: left;
  position: relative;
  padding: 5px;
  box-sizing: border-box;
  color: #000000;
  width: 100%;
  cursor: pointer;
}

.box_category_item div{
  text-align: center;
  background: #dbdbdb;
}

.box_category_item div:hover {
  background: #bbbbbb;
}

.box_category_item .cate_name{
  margin: 0;
  padding: 10px;
  height: 30px;
}

.popup-list-category .close-popup{
  background: #ffffff;
  padding: 4px 4px 0px;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  top: -20px;
}

.box_category_item img{
  width: 200px;
  height: 144px;
  object-fit: contain !important;
}

p.desc_store {
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
  text-align: justify;
}

.vip{
  position: absolute;
  top: 15px;
  left: 0;
  background: #c8cb38c7;
  padding: 6px 10px 4px;
  font-size: 18px;
  border-radius: 0 5px 5px 0;
  color: #ffffff;
  display: flex;
}

#pagination-store ul li a{
  text-decoration: none;
  cursor: pointer;
}

#pagination-store, #pagination-all-store{
  height: 40px;
  margin: 0 auto;
}

#pagination-store ul{
  padding: 8px;
}

.top-control .desc_info{
  position: absolute;
  top: 10px;
  text-align: center;
  z-index: 5;
  font-size: 14px;
  font-weight: 600;
  color: rgb(53 53 71 / 60%);
  width: 600px;
  left: calc(50% - 300px);
}

.group_info_sound{
  position: absolute;
  bottom: 20px;
  display: flex;
  left: calc(50% - 48px);
  background: #ffffff;
  padding: 8px 10px;
  width: 76px;
  height: 25px;
  justify-content: space-between;
  z-index: 5;
  border-radius: 50px;
}

.button_info, .button_sound{
  cursor: pointer;
}

.button_info:hover, .button_sound:hover{
  transform: translate(0px, 0px) rotate(0deg) scale(1.1, 1.1);
}

.left-control-bottom{
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
}

.logo_vrmall img{
  width: 90px;
  opacity: .7;
}

.logo_vrmall img:hover{
  opacity: 1;
  cursor: pointer;
}

.button_category .tooltip-left{
  top: 5px;
  right: 115%;
}

.modal_sound_intro .popup-content{
  width: max-content;
  height: max-content;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.modal_sound_intro .popup-body{
  height: 100% !important;
}

.modal_sound_intro .popup-header, .modal_sound_intro .close-popup{
  display: none;
}

.modal_sound_intro .sound-intro{
  text-align: center;
  padding: 30px;
  padding-bottom: 0;
}
.modal_sound_intro .sound-intro div{
  padding: 30px;
}

.modal_sound_intro .sound-intro span{
  font-size: 24px;
  color: #000000bd;
  font-weight: bold;
}

.modal_sound_intro button{
  width: 100px;
  padding: 15px;
  font-weight: bold;
  background: #545454;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  margin: 0 5px;
  cursor: pointer;
}

.modal_sound_intro button:hover {
  background: #333;
}

.hide_chat{
  display: none !important;
}

.name_store_vip{
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  font-size: 12px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #6a6b69;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 2;
  margin: 0;
  width: 100%;
}


/*menu*/


.menu-btn, nav > ul {
  transition: left .45s cubic-bezier(.42,.97,.52,0.99);
}

nav > ul {
  position: absolute;
  top: 10%;
  left: -320px;
  width: 320px;
  background-color: #ffffffeb;
  height: 80%;
  min-height: 80vh;
  padding: 0;
  margin: 0;
  z-index: 8;
  border-radius: 20px;
}

nav ul .content_category{
  overflow-x: hidden;
  overflow-y: scroll;
  height: calc(100% - 60px);
  cursor: pointer;
  margin: 0 10px;
  padding-right: 5px;
}

ul.menu.menu-open{
  left: 30px;
}

.menu-btn:before,
.menu-btn:after {
  font-size: 50px;
  color: #a2047b;
  line-height: 1;
  position: relative;
  top: -10px;
  left: -3px;
}
.menu-btn:before {
  content: '\02261';
}

.menu-btn-open{
  left: 300px !important;
  transition: left .45s cubic-bezier(.42,.97,.52,0.99);
  z-index: 9 !important;
  top: calc(10% + 4px) !important;
  background: unset !important;
}

/* MENU ITEMS */
.menu li a {
  display: block;
  font-size: 14px;
  text-transform: capitalize;
  padding: 15px 10px;
  color: #000;
  position: relative;
  text-decoration: none;
  font-weight: 400;
}

.menu > li {
  border-top: 1px solid #e2e8f0;
  list-style: none;
  cursor: pointer;
  margin: 0 10px;
  margin-right: 7px;
}

.menu > li > a:hover {
  background-color: #d9dbe4;
}

.menu li ul {
  background-color: #ececec;
  padding-left: 30px;
  display: none;
  list-style: none;
  border-radius: 0 0 10px 10px;
}
.menu li li a {
  font-size: 80%;
  padding: 15px 0;
  position: relative;
  z-index: 1;
  text-decoration: none;
  text-transform: capitalize;
}

.menu li li a:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -30px;
  top: 0;
  right: 0;
  bottom: 0;
}
.menu li li a:hover:after {
  background-color: #ccc;
}

.menu li li:last-child a:hover:after{
  border-radius: 0 0 10px 10px;
}

.caret {
  position: absolute;
  right: 0;
  color: #000;
  top: 50%;
  bottom: 0;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.caret-up{
  padding-top: 4px;
}
.caret-down{
  padding-top: 0;
}
li .caret-up:after {
  content: url("/external/images/icons/right.svg");
}
li .caret-down:after {
  content: url("/external/images/icons/down.svg");
}
.menu li li .caret {
  padding-top: 3px;
}

.menu-btn:before,
.menu-btn:after,
.caret:after {
  font-family: 'san-serif';
  font-weight: 600;
}

/*search*/
.search-box
{
  position: absolute;
  top: 15px;
  left: 70px;
  z-index: 6;
  background : #ffffff;
  height : 40px;
  border-radius : 40px;
}

.search_all_store {
  position: absolute;
  width: 400px;
}
.search__toggle:checked ~ .search__field {
  width: calc(100% - 80px);
  border-width: 2px;
  border-radius: 20px;
}
.search__toggle:checked ~ .search__field .search__input{
  border-right: 1px solid #ddd;
}
.search__toggle:checked ~ .search__field .search__input::placeholder {
  opacity: 1;
}

.search__toggle:checked ~ .search__field .search__button {
  width: 40px;
  height: 40px;
  border-radius: 50px;
}
.search__toggle:checked ~ .search__field .search__button--toggle {
  display: none;
}
.search__toggle:checked ~ .search__field .search__button--submit {
  display: flex;
  outline: 0;
}
.search_suggest{
  display: none;
}
.search__toggle:checked ~ .search__field .search_suggest {
  background: #ffffff;
  position: absolute;
  top: 42px;
  left: 0;
  width: calc(100% - 40px);
  border-radius: 15px;
  display: block;
}
.search_suggest div{
  padding: 10px 15px;
  color: #92929e;
  border-top: 1px solid #efefef;
  cursor: pointer;
}

.search_suggest div:first-child{
  border-top: unset;
}

.search_suggest div:hover{
  background: #efefef;
}
.search_suggest div:first-child:hover{
  border-radius: 15px 15px 0 0;
}
.search_suggest div:last-child:hover{
  border-radius: 0 0 15px 15px;
}
.search_suggest div:only-child:hover{
  border-radius: 15px;
}
.search__field {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transform-origin: right;
  transition: 0.3s;
  background: #ffffff;
}
.search__input {
  position: absolute;
  left: 0;
  box-sizing: border-box;
  width: calc(100% - 40px);
  height: 100%;
  padding: 5px 15px;
  color: #aaa;
  background-color: transparent;
  border: 0;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}
.search__input::placeholder {
  color: white;
  opacity: 0;
  transition: 0.3s;
  transition-delay: 0.3s;
}
.search__label {
  cursor: pointer;
}
.search__button {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.3s;
}
.search__button--submit {
  display: none;
  border: 0;
}
.search__icon {
  position: relative;
  width: 19px;
  height: 19px;
}
.search__icon::before {
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid #09f;
  border-radius: 50px;
}
.search__icon::after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  content: '';
  width: 8px;
  height: 2px;
  background-color: #09f;
  transform: rotate(45deg);
  transform-origin: right;
}

.title_search{
  position: absolute;
  top: 15px;
  font-size: 30px;
  margin: 0;
  left: 15px;
}

.search_store .popup-body .body{
  height: calc(100vh - 150px);
}

nav > ul .content_category::-webkit-scrollbar{
  width: 5px !important;
}

nav > ul .content_category::-webkit-scrollbar-thumb{
  background-color: #DBDBDB !important;
  border-radius: 5px !important;
}

.title_category{
  color: #000;
  font-weight: bold;
  padding: 15px;
}

.active_cat{
  background: linear-gradient(90deg, rgba(236, 236, 236, 0.8) -3.23%, rgba(214, 214, 214, 0.8) 103.9%);
  box-shadow: 0px 3px 7px 1px #0000004D;
  border-radius: 20px;
}

.menu li li:first-child a:after{
  border-top: unset;
}