:root {
	--bg-color: #F7F7F7;
	--bg-color-acc: #f7fafa;
	--bg-color-dark-acc: #e3e8e8;
	--width-window: 499px;
	--height-window: 1080px;
	--color-text-balance: #FBFFBC;
}

/*standart*/
li {
    list-style-type: none;
	margin: 0;
	padding: 0;
}
ul {
	margin: 0;
	padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: Montserrat Alternates, sans-serif;
	width: 100vw;
	height:100vh;
	display:flex;
	justify-content: center;
	overflow-x: hidden
}

/*all app*/
#app-content{
	   font-size: calc(var(--width-window)*0.03);
	   width: 100%;
	   max-width: var(--width-window); 
	   margin: 0;
	   height: 100vh;
	   background-color: #fff;
	   overflow-y: auto;
	   flex-direction: column;
}
#contentProfile{
	height: 100%;
	width: 100%;
	flex-direction: column;
}
#contentHelp{
	height: 100%;
	width: 100%;
}

/*error message*/

/*header*/
.header{
	background-color: #000;
	color: #fff;
	height: 50px;
	width: 100%;
	display: block;
	z-index: 10;
}
.header-main-ul{
	display:flex;
	justify-content: space-between;
	height: 100%;
}
.header-profile-text-avatar {
  display: flex;
  padding-right: 5%;
  padding-top: 1.5%;
}
.header-profile-ul{
	display: flex;
	flex-direction: column;
	padding-right: 10%;
}
.header-logo{
	padding-left: 2%;
	padding-top: 1.5%;
	height: 100%;
	align-items: center;
	font-size: calc(var(--width-window)*0.05);
}
.name-subtitle{
	font-size: calc(var(--width-window)*0.023);
}
.profile-avatar{
	font-size: calc(var(--width-window)*0.05);
	cursor: pointer;
	user-select: none;
}
#fire {
	font-size: 2rem;
	background-color: rgba(255, 232, 232, 0.2);
	border-radius: 15px;
	width: 100px;
	height: 50px;
	text-align: center;
	display: none;
}


/*PROFILE* ------------------------------------------------------------------------------------------------------------------/
/*BALANCE SECTION*/
.main-balance{
	width:100%;
	height: 320px;
	min-height: 320px;
	background: linear-gradient(135deg, #263E51 0%, #1C7060 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-balance);
	transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.main-balance-text {
  transition: transform 0.3s ease;
  margin-left: auto;
  font-size: calc(var(--width-window)*0.14);
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 80%;
    min-width: 0;
}
.main-balance-text:hover {
  transform: scale(1.05);
  color: #F8FFA6;
  cursor: pointer;
}
.main-kc-text {
  transition: transform 0.3s ease;
  font-size: calc(var(--width-window)*0.07);
}
.main-kc-text:hover {
  transform: scale(1.05);
  color: #F8FFA6;
  cursor: pointer;
  user-select: text;
}
.main-kc-box {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255,255,255,0.2);
	border-radius: 15px;
	margin-left: auto;
	margin-right: calc(var(--width-window)*0.04);
	height: 50px;
	width: 75px;
	font-size: calc(var(--width-window)*0.06);
	user-select: none;
}


/*MAIN-CARD-BOTTOM-CONTENT SECTION*/
.profile-inventory{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.inventory-header{
	justify-content: space-between;
	display: flex;
	padding: 25px 5% 5% 5%;
	transition: transform 0.3s ease;
}
.inventory-header:hover{
	background-color: var(--bg-color-acc);
}
.inventory-item{
	background: linear-gradient(135deg, var(--bg-color-acc) 0%, #f5f5ed 100%);
	width: 125px;
	margin-top: 10px;
	height: 150px;
	padding-bottom: 5px;
	border-radius: 15px;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 2px solid var(--bg-color-dark-acc);
	transition: transform 0.3s ease;
}
.inventory-item:hover{
  transform: scale(1.05);
  cursor: pointer;
}
.inventory-list{
	display: flex;
	width: 90%;
	justify-content: space-around;
	flex-direction: row;
	margin-right: 5%;
	margin-left: 5%;
	padding: 0px 0 25px 0;
}
.inventory-count{
	font-size: 1.5rem;
}
.inventory-ico{
	font-size: 4rem;
	user-select: none;
}
#inventory-list.collapsed {
    max-height: 0;
    padding: 0;
}
#inventory-list {
    overflow: hidden;
    max-height: 1000px;
    transition: max-height 0.3s ease, padding 0.3s ease;
	flex-wrap: wrap;
	max-width: 90%;
}


.profile-bottom-content{
}
.profile-left{
	width: 100%;
	margin-top: 25px;
	display: flex;
	justify-content: space-around;
}
.profile-left-block{
	border-radius: 20px;
	background-color: #000;
	height: 125px;
	width: 45%;
	margin-top: 15px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: #fff;
}





















/*HELPY*/
.helpy-main {
	display: flex;
	width: 100%;
	flex-direction: column;
}

.helpy-header{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 100%;
	transition: transform 0.3s ease;
}

.helpy-header:hover{
	background-color: var(--bg-color-acc);
	cursor: pointer;
}

.helpy-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.5s ease;
      padding: 0 24px;
	  text-align: justify;
	  hyphens: auto; 
    }
.helpy-main li:last-child {
  padding-bottom: 170px;
}

/*MENU*/
.menu-ul {
	display: flex;
	justify-content : center;
	gap: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--bg-color-acc) 0%, #f5f5ed 100%);
	box-shadow: 0 12px 40px rgba(62, 62, 74, 0.2);
	border-radius: 15px;
}
.menu-item{
	color: #000;
	align-items: center;
	justify-content: center;
	display: flex;
	cursor: pointer;
	user-select: none;
	padding-left: 25px;
	padding-right: 25px;
}
.menu-item.active{
	color: #353535;
}
#menuWindow{
	position: fixed;
	width: 100%;
	max-width: var(--width-window); 
	justify-content: center;
	display: flex;
	align-items: flex-end;
	bottom: 0;
	padding-bottom: 20px;
}
.menu-content{
	display: none;
}
.menu-content.active{
	display: flex;
}

/* YOOO ? :) */
#loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
			flex-direction: column;
			opacity: 100;
        }
        
#welcome-text {
            color: #fff;
            font-size: 2.5rem;
            opacity: 0;
            text-align: center;
            animation: fadeIn 1s ease-in-out forwards;
			margin-top: -10;
			margin-bottom: -10;
        }
		
#welcome-text-title {
			margin-top: -10;
			margin-bottom: -10;
            color: #fff;
            font-size: 5.5rem;
            opacity: 0;
            text-align: center;
            animation: fadeIn 1s ease-in-out forwards;
        }
        
		
/*KEYFRAMES*/
@keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
		
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(4px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes show-fire {
  0%, 100% {
    transform: translateY(-100px);
  }
  30%, 70% {
    transform: translateY(7px);
  }
}

/* TEMPORARY? */
.animate-bounce {
  animation: bounce 1s;
}

.main-balance:hover {
  box-shadow: 0 12px 40px rgba(62, 62, 74, 0.2);
}
.animate-fire {
	animation: show-fire 5s;
}