.layout_layout {
    width: 100%;
    height: calc(var(--vh)*100);
    overflow-y: scroll;
}

.home-page_layout {
    padding-top: 0;
    background: var(--background-secondary);
}

.home-page_wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.layout_body {
    padding: var(--space-4x);
    width: 100%;
    min-height: calc(var(--vh)*100 + 1px);
    height: auto;
}

.button_default {
    background-color: var(--button-color);
    color: var(--button-text-color);
    font-size: 16px;
}

.button_button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    gap: 10px;
    cursor: pointer;
    transition: all .15s linear;
    border-radius: 12px;
    border: 1px solid #0000;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    color: var(--text-color);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.navigation_navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    -webkit-user-select: none;
    user-select: none;

	.navigation_badge_btn {
		 background: var(--background);
		 padding: 4px 10px 4px 4px;
		 border-radius: 20px;
		 gap: 5px;
		 display: flex;
		 align-items: center;
		 flex-direction: row;
		 color: var(--text-color);
		 font-weight: 500;
		 font-size: 16px;
		 line-height: 100%;

		 .navigation_desc {
			 font-weight: 400;
			 font-size: 10px;
			 line-height: 120%;
			 color: var(--hint-color);
		}
	}

	.navigation_user {
		 display: flex;
		 flex-direction: row;
		 align-items: center;
		 gap: 8px;
		 color: var(--text-color);

		 .navigation_avatar {
			 border-radius: 999999px;
			 border: 1px solid var(--background);
			 width: 42px;
			 height: 42px;
			 overflow: hidden;
			 background: var(--background);
			 font-size: 26px;
			 display: flex;
			 align-items: center;
			 justify-content: center;
			 text-align: center;
		}

		.navigation_detail {
			 display: flex;
			 flex-direction: column;
			 justify-content: center;
			 align-items: flex-start;
			 gap: 5px;

			 .navigation_name_box {
				 display: flex;
				 flex-direction: row;
				 align-items: center;
			}

			.navigation_name {
				 text-overflow: ellipsis;
				 overflow: hidden;
				 white-space: nowrap;
				 width: 100%;
				 max-width: 40vw;
				 font-weight: 500;
				 font-size: 16px;
				 line-height: 100%;
			}
		}
	}
}

.points_points {
    padding: 0;
    background: var(--background-secondary);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.points-section_points_section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px;
    gap: 30px;
    isolation: isolate;
    background: var(--background);
    border-radius: 0 0 20px 20px;

	.points-section_points_box {
	    position: relative;
	    width: 100%;
		.points-section_background {
			 border-radius: 20px;
			 background: radial-gradient(84.29% 136.58% at 6.86% 83.96%,#eb9c00 0,#ff4769 27.08%,#3d50ff 66.38%,#00b3ff 100%);
			 width: 100%;
		}

		.points-section_inner {
			 padding: 15px;
			 display: flex;
			 flex-direction: row;
			 align-items: center;
			 justify-content: space-between;
			 gap: 15px;
			 height: 125px;
			 width: 100%;
			 z-index: 9;
		}

		.points-section_point_icon {
			 flex-shrink: 0;
			 font-weight: 500;
			 font-size: 55px;
			 line-height: 140%;
			 color: #007cff;
			 height: 83px;
			 width: 83px;
			 display: flex;
			 align-items: center;
			 justify-content: center;
			 background: #fff;
			 border-radius: 99999px;
		}

		.points-section_points_text {
			 display: flex;
			 flex-direction: column;
			 gap: 1px;
			 color: #fff;

			.points-section_points {
				 font-weight: 500;
				 font-size: 60px;
				 line-height: 100%;
				 letter-spacing: -1px;
			}

			.points-section_text {
				 font-weight: 900;
				 font-size: 24px;
				 line-height: 130%;
			}
		}
	}

	.points-section_description_box {
		 display: flex;
		 flex-direction: column;
		 gap: 10px;
		 font-weight: 400;
		 font-size: 16px;
		 line-height: 140%;

		.points-section_head {
			 padding-bottom: 10px;
			 border-bottom: 1px solid var(--lite-color-2);
			 display: block;
			 --font-size: 20px;

			.points-section_gradient_text {
				 font-weight: 500;
				 font-size: 16px;
				 line-height: 140%;
				 background: radial-gradient(84.29% 136.58% at 6.86% 83.96%,#eb9c00 0,#ff4769 27.08%,#3d50ff 66.38%,#00b3ff 100%);
				 -webkit-background-clip: text;
				 -webkit-text-fill-color: #0000;
				 background-clip: text;
				 text-fill-color: #0000;
				 display: inline;
			}
		}
	}
}


.history-section_history_section {
    border-radius: 20px;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;

	.history-section_title {
		 font-style: normal;
		 font-weight: 800;
		 font-size: 18px;
		 line-height: 130%;
		 letter-spacing: -.01em;
	}
}

