@media only screen and (min-width: 768.1px) {
	main {
		flex-flow: row;
	}

	/* .scrollable-container {
        height: calc(100vh - var(--header-height));
        overflow: auto;
    } */
}

@media only screen and (max-width: 768px) {
	main {
		flex-flow: column-reverse;
	}
}

.main-content {
	display: flex;
	flex-direction: column;
    flex: 1 0 70%;
}

@media screen and (max-width: 621px) {
	.main-content {
		flex: 1 0 55%;
	}
}

.section-sliders {
	margin: 0.25rem 0.3rem 0.25rem 0.25rem;
}

@media only screen and (min-width: 768.1px) {
	.section-sliders {
		padding: 0.3rem 0 0 0.3rem;
	}
}

.sliders-wrap {
	width: 100%;
	/* padding: 0 0 2rem 0; */
}

.sliders-wrap .slider-container img {
	border-radius: var(--radius-2);
	width: 100%;
}

.section-latest-info {
	margin: 2rem 0.25rem 0.25rem 0.25rem;
}

@media only screen and (min-width: 768.1px) {
	.section-latest-info {
		padding: 0.3rem 0 0 0.3rem;
	}
}

.latest-info-wrap {
	width: 100%;
}

.latest-info-wrap h1 {
	margin: 0 0 0 0.25rem;
	font-size: var(--font-size-fluid-1);
}

.latest-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 1rem 1rem 0;
	/* margin: 1rem; */
}

.latest-info.glass {
	border-radius: var(--radius-2);
	background: rgba(80, 80, 80, 0.3);
	backdrop-filter: blur(6px) saturate(100%);
	-webkit-backdrop-filter: blur(6px) saturate(100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.latest-info .card {
	height: 9.375rem;
	margin: 1rem 0 0 1rem;
	min-width: 0;
}

@media only screen and (max-width: 600px) {
	.latest-info .card {
		flex: 1 0 50%;
	}
}

@media only screen and (min-width: 600.1px) {
	.latest-info .card {
		flex: 1 0 35%;
	}
}

.side-image-card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: var(--radius-3);
	padding-right: 0.75rem;
}

.daily-credit-redeemed {
	background: linear-gradient(51.22deg, rgba(255, 87, 26, 0.438688) -5.3%, rgba(255, 87, 26, 0.04) 40.46%), rgba(216, 216, 216, 0.05);
}

.daily-top-win {
	background: linear-gradient(27.58deg, rgba(255, 182, 26, 0.458519) -11.39%, rgba(255, 182, 26, 0.04) 94.73%), rgba(216, 216, 216, 0.05);
}

.side-image-card .trophy {
	width: 45%;
	height: 100%;
	margin-right: 1rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.side-image-card .trophy img {
	width: auto;
	height: 80%;
}

@media only screen and (max-width: 425px) {
	.side-image-card .trophy {
		margin-right: 0.5rem;
	}

	.side-image-card .trophy img {
		height: 60%;
	}
}

.side-image-card .type {
	width: 5.5625rem;
	height: 1.3125rem;
	line-height: 1.3125rem;
	font-size: var(--font-size-fluid-1);
	font-weight: 600;
	margin-top: 1rem;
	text-align: center;
	color: var(--color-theme);
	margin-left: 0.625rem;
	background-image: url(../img/home/grass_left.svg), url(../img/home/grass_right.svg);
	background-repeat: no-repeat;
	background-position: left center, right center;
	background-size: auto 100%;
}

.side-image-card .title {
	font-size: var(--font-size-fluid-0);
	line-height: 1.125rem;
	margin: 0.5rem 0 0.5rem 0.5rem;
}

.side-image-card .prize-amount {
	height: 3rem;
	min-width: 7rem;
	padding: 0.625rem 1.25rem;
	border-radius: var(--radius-2);
	background-color: var(--color-theme);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-theme-line);
}

.side-image-card .currency-icon {
	width: 1.25rem;
	height: 1.25rem;
	margin-right: 0.5rem;
}

/* @media screen and (max-width: 621px) {
    .side-image-card {
        margin:0;
        padding: 0;
        height: 7.5rem
    }

    .side-image-card .type {
        font-size: .75rem;
        margin-top: 0
    }

    .side-image-card .title {
        font-size: .75rem;
        line-height: normal;
        margin: .25rem 0 .375rem .625rem
    }

    .side-image-card .trophy img {
        height: 90%
    }

    .side-image-card .prize-amount {
        width: 10.625rem;
        height: 2.5rem;
        font-size: 1rem;
        padding: .625rem .5rem
    }
} */
/* .nx34knj {
    --mk9uba: #F6F7FA;
    -webkit-flex: 3;
    -ms-flex: 3;
    flex: 3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 16.5625rem;
    height: 9.5rem;
    border-radius: var(--radius-2);
    background: var(--mk9uba);
    margin: 1rem 0 0 1rem
}

.darken .nx34knj {
    --mk9uba: rgba(49,52,60,.6)
}

.nx34knj .text {
    max-width: 19.125rem;
    margin-bottom: .75rem;
    font-size: .75rem;
    text-align: center
}

.nx34knj .breathe {
    width: 75%;
    height: 3rem;
    border-radius: var(--radius-2);
    margin: 0 auto
}

@media screen and (max-width: 621px) {
    .nx34knj {
        height:8.875rem;
        border-radius: var(--radius-2);
        font-size: .75rem;
        padding: 0 10%;
        margin: .75rem 0 0
    }

    .nx34knj .breathe {
        width: 60%;
        height: 2.25rem
    }
} */

.last-deposit {
	background: linear-gradient(26.36deg, rgba(19, 215, 102, 0.531727) -2.27%, rgba(19, 215, 102, 0.04) 67.53%), rgba(216, 216, 216, 0.05);
}

.last-withdraw {
	background: linear-gradient(58.63deg, rgba(29, 175, 13, 0.509528) -2.25%, rgba(29, 175, 13, 0.04) 34.75%), rgba(216, 216, 216, 0.05);
}

.ribbon-champion-card {
	border-radius: var(--radius-3);
	position: relative;
}

.ribbon-champion-card .img-winner {
	position: absolute;
	top: -0.21875rem;
	left: -0.25rem;
	width: 3.75rem;
	height: 3.75rem;
}

.ribbon-champion-card .img-winner img {
	width: 100%;
	height: 100%;
}

.ribbon-champion-card .img-winner p {
	position: absolute;
	margin: 0;
	color: #fff;
	font-weight: var(--font-weight-7);
	font-size: 0.75rem;
	text-transform: uppercase;
	top: 0.875rem;
	left: -0.625rem;
	-webkit-transform: scale(0.9) rotate(-45deg);
	-ms-transform: scale(0.9) rotate(-45deg);
	transform: scale(0.9) rotate(-45deg);
	width: 4rem;
	overflow: hidden;
	text-align: center;
}

.ribbon-champion-card .champion-title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 0.875rem;
}

.ribbon-champion-card .champion-title .contest-ml {
	font-size: 0.75rem;
	margin-left: 0.5625rem;
}

.ribbon-champion-card .champion-title .title-icon {
	fill: var(--color-theme);
	width: 1.25rem;
	height: 1.25rem;
}

.ribbon-champion-card .champion-layout {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	overflow: hidden;
}

.ribbon-champion-card .head {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	width: 3.5625rem;
	height: 3.5625rem;
	border-radius: 50%;
	border: 2px solid #ffd912;
	margin-right: 0.75rem;
	margin-top: 2.25rem;
}

.ribbon-champion-card .head .avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.ribbon-champion-card .head .avatar-icon {
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	top: -1.125rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%);
	fill: #ffd912;
}

.ribbon-champion-card .user-name {
	margin-bottom: 0.125rem;
}

.ribbon-champion-card .user-name .name {
	color: var(--gray-4);
	font-size: var(--font-size-fluid-0);
}

.ribbon-champion-card .profit {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 0.5rem;
}

.ribbon-champion-card .profit .coin-icon {
	width: 1.25rem;
	height: 1.25rem;
	margin-right: 0.3125rem;
}

.ribbon-champion-card .profit-name {
	font-size: var(--font-size-fluid-0);
	margin-right: 0.625rem;
}

.ribbon-champion-card .profit .amount {
	color: var(--color-theme-line);
	font-size: var(--font-size-fluid-0);
}

.ribbon-champion-card .percent {
	color: var(--color-theme-line);
	font-size: var(--font-size-fluid-0);
}

/* @media screen and (max-width: 621px) {
    .ribbon-champion-card {
        width:54%;
        -webkit-flex: none;
        -ms-flex: none;
        flex: none;
        min-width: 0;
        height: 8.25rem;
        margin: .75rem 0 0;
        margin-left: 1%;
        border-radius: var(--radius-2)
    }

    .ribbon-champion-card .box-tag {
        zoom:.8}

    .ribbon-champion-card .img-winner {
        position: absolute;
        top: -.25rem;
        left: -.25rem;
        width: 4rem;
        height: 4rem
    }

    .ribbon-champion-card .champion-title {
        margin-top: .3125rem;
        margin-bottom: .125rem;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .ribbon-champion-card .champion-layout {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .ribbon-champion-card .user-name {
        padding-left: 3.25rem;
        margin-top: 1.25rem
    }

    .ribbon-champion-card .profit {
        padding-left: 3rem;
        margin: 0;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .ribbon-champion-card .profit .profit-name {
        width: 100%;
        padding-left: .25rem;
        margin-bottom: .25rem
    }

    .ribbon-champion-card .head {
        width: 2.375rem;
        height: 2.375rem;
        margin: 0;
        position: absolute;
        bottom: 1.5rem;
        left: .5rem
    }

    .ribbon-champion-card .head .avatar-icon {
        width: 1rem;
        height: 1rem;
        top: -.75rem
    }

    .ribbon-champion-card .content-box {
        width: 100%;
        font-size: .75rem;
        line-height: normal;
        padding-left: .25rem
    }
} */
.cencored.user-info .hidden-name {
	color: var(--gray-2);
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.cencored.user-info .hidden-name .icon {
	width: 1rem;
	height: 1rem;
	margin-right: 0.125rem;
	fill: var(--gray-4);
}

.cencored .avatar {
	width: 1.62rem;
	height: 1.62rem;
	border-radius: 50%;
	margin-right: 0.5rem;
}

.cencored .name {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.s1ff97qc {
	width: 1rem;
	height: 1rem;
	fill: var(--gray-6);
}

.section-top-games {
	margin: 2rem 0.25rem 0.25rem 0.25rem;
}

@media only screen and (min-width: 768.1px) {
	.section-top-games {
		padding: 0.3rem 0 0 0.3rem;
	}
}

.top-games-wrap {
	width: 100%;
	padding: 0 0 2rem 0;
}

.top-games-wrap h1 {
	margin: 0 0 0 0.25rem;
	font-size: var(--font-size-fluid-1);
}

.top-games-wrap .slider-container img {
	border-radius: var(--radius-2);
}

@media only screen and (max-width: 576px) {
	.section-top-games .swiffy-slider {
		--swiffy-slider-item-count: 2;
	}
}

@media only screen and (max-width: 992px) and (min-width: 576.1px) {
	.section-top-games .swiffy-slider {
		--swiffy-slider-item-count: 4;
	}
}

@media only screen and (min-width: 992.1px) {
	.section-top-games .swiffy-slider {
		--swiffy-slider-item-count: 6;
	}
}

.section-big-win {
	margin: 2rem 0.25rem 0.25rem 0.25rem;
}

@media only screen and (min-width: 768.1px) {
	.section-big-win {
		padding: 0.3rem 0 0 0.3rem;
	}
}

.big-win-wrap {
	width: 100%;
	padding: 0 0 2rem 0;
}

.big-win-wrap h1 {
	margin: 0 0 0 0.25rem;
	font-size: var(--font-size-fluid-1);
}

.big-win-wrap .slider-container img {
	border-radius: var(--radius-2);
}

@media only screen and (max-width: 576px) {
	.section-big-win .swiffy-slider {
		--swiffy-slider-item-count: 3;
	}
}

@media only screen and (max-width: 992px) and (min-width: 576.1px) {
	.section-big-win .swiffy-slider {
		--swiffy-slider-item-count: 5;
	}
}

@media only screen and (min-width: 992.1px) {
	.section-big-win .swiffy-slider {
		--swiffy-slider-item-count: 8;
	}
}

.section-ads {
	margin: 2rem 0.25rem 0.25rem 0.25rem;
	position: relative;
}

@media only screen and (min-width: 768.1px) {
	.section-ads {
		padding: 0.3rem 0 0 0.3rem;
	}
}

.ads-wrap {
	--g52yms: #fff;
	--i75jnx: linear-gradient(-10deg, #43266e, #1c1e22 70%);
	--1xve132: linear-gradient(-10deg, #13484c, #1c1e22 70%);
	--1vytwyb: rgba(28, 30, 34, 0.7);
	height: 21.875rem;
	width: 100%;
	border-radius: var(--border-size-4);
	position: relative;
	overflow: hidden;
}

.ads-wrap p {
	margin: 0;
}

.ads-wrap .left {
	position: absolute;
	height: 100%;
	z-index: 2;
	width: 50%;
	left: 0;
	top: 0;
	padding: 40px 0 40px 4%;
}

.ads-wrap .left:after {
	content: '';
	position: absolute;
	inset: 0;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.ads-wrap .left .tit {
	font-size: var(--font-size-fluid-1);
	line-height: var(--font-lineheight-2);
	color: var(--color-theme-line);
	font-weight: var(--font-weight-6);
	width: 26.25rem;
}

.ads-wrap .left .desc {
	margin-top: 1.5rem;
	font-size: var(--font-size-fluid-0);
	color: var(--gray-4);
}

.ads-wrap .left .ui-button {
	margin-top: 3.125rem;
	width: 18rem;
	height: 3.5rem;
	font-size: var(--font-size-fluid-1);
}

.ads-wrap .wrap {
	position: relative;
	z-index: 9;
}

.ads-wrap .ball-grey {
	position: absolute;
	width: 20%;
	bottom: 0;
	right: 0;
	-webkit-transform: translate(40%, 40%) rotate(270deg);
	-ms-transform: translate(40%, 40%) rotate(270deg);
	transform: translate(40%, 40%) rotate(270deg);
	min-width: 5.625rem;
}

.ads-wrap .ball-color {
	position: absolute;
	width: 40%;
	min-width: 10rem;
	left: 45%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%);
}

.ads-wrap .bonus-img {
	position: absolute;
	width: 30%;
	min-width: 18.75rem;
	right: 5%;
	top: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.ads-wrap .img-box,
.ads-wrap .m-bonus-img {
	display: none;
}

.ads-wrap.rain-coindrop {
	background-color: rgba(28, 30, 34, 0.7);
}

.ads-wrap.rain-coindrop .left .tit span {
	color: var(--color-theme);
}

.ads-wrap.signup-bonus {
	background-color: rgba(28, 30, 34, 0.7);
}

.ads-wrap.signup-bonus .ball-color {
	top: 0;
}

.ads-wrap.signup-bonus .bonus-img {
	width: 20%;
	right: 2%;
	min-width: 37.5rem;
}

.ads-wrap.signup-bonus .bonus-img img {
	width: 100%;
}

.ads-wrap.signup-bonus .ratio {
	position: absolute;
	top: 32%;
	left: 54%;
	-webkit-transform: translateX(-50%) rotate(20deg);
	-ms-transform: translateX(-50%) rotate(20deg);
	transform: translate(-50%) rotate(20deg);
	text-align: center;
	font-size: var(--font-size-fluid-2);
	color: #fdc608;
	font-weight: 700;
	line-height: 1;
}

.ads-wrap.signup-bonus .left .tit span {
	color: var(--color-theme);
}

.ads-wrap.signup-bonus .left .tit span:last-of-type {
	color: #ffbf39;
}

@media screen and (max-width: 860px) {
	.ads-wrap {
		height: auto;
		text-align: center;
	}

	.ads-wrap .img-ball {
		display: none;
	}

	.ads-wrap .img-box {
		display: block;
		position: relative;
	}

	.ads-wrap .img-box .ratio {
		top: 35%;
		font-size: 2rem;
	}

	.ads-wrap .bonus-img {
		display: none;
	}

	.ads-wrap .m-bonus-img {
		display: block;
		position: static;
		width: 85%;
		height: auto;
		-webkit-align-self: center;
		-ms-flex-item-align: center;
		align-self: center;
		margin-bottom: 0.9375rem;
		margin-top: 0.9375rem;
	}

	.ads-wrap.signup-bonus .m-bonus-img {
		width: 100%;
	}

	.ads-wrap .left {
		width: auto;
		position: relative;
		padding: 1.125rem;
		height: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

	.ads-wrap .left .wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-flex: auto;
		-ms-flex: auto;
		flex: auto;
	}

	.ads-wrap .left:after {
		display: none;
	}

	.ads-wrap .left .tit {
		width: auto;
		text-align: left;
		font-size: 1.5rem;
		line-height: 1.875rem;
	}

	.ads-wrap .left .desc {
		text-align: left;
		margin-top: 1rem;
	}

	.ads-wrap .left .ui-button {
		margin-top: auto;
		width: 100%;
	}
}

@media screen and (max-width: 621px) {
	.ads-wrap .img-box .ratio {
		font-size: 1.375rem;
	}
}

.section-ads .ui-button {
	display: block;
	width: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: var(--border-size-4);
	height: 3rem;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: -webkit-transform 0.2s cubic-bezier(0.36, 0.66, 0.04, 1) allow-discrete;
	-webkit-transition: transform 0.2s cubic-bezier(0.36, 0.66, 0.04, 1) allow-discrete;
	transition: transform 0.2s cubic-bezier(0.36, 0.66, 0.04, 1) allow-discrete;
}

.section-ads .ui-button.yellow {
	color: #fff;
	background: rgb(241, 149, 17);
	background: radial-gradient(circle, rgba(241, 149, 17, 1) 38%, rgba(246, 199, 34, 1) 100%);
}

.section-ads .ui-button.yellow:hover {
	background: radial-gradient(circle, rgba(241, 149, 17, 0.9) 38%, rgba(246, 199, 34, 1) 100%);
}

.section-ads .ui-button.green {
	color: #fff;
	background-color: #1d803ab3;
	background-image: radial-gradient(circle, rgba(88, 175, 16, 1) 38%, rgba(29, 128, 58, 1) 100%);
}

.section-ads .ui-button.green:hover {
	background-image: radial-gradient(circle, rgba(88, 175, 16, 0.7) 38%, rgba(29, 128, 58, 0.7) 100%);
}

.main-side {
	display: flex;
	margin: 0 0 0.5rem 0;
	flex-direction: column;
	flex: 1 0 30%;
}

@media only screen and (max-width: 768px) {
	.main-side {
		flex: 1 0 auto;
	}
}

.sidebar-notice {
	/* padding: 0.25rem 0 0.25rem 0; */
	margin: 0.5rem 0.5rem 0 0.5rem;
	max-height: 10rem;
	overflow: scroll;
}

@media only screen and (max-width: 768px) and (min-width: 600.1px) {
	.sidebar-notice {
		flex-direction: row !important;
	}
}

.notice {
	height: fit-content;
	display: flex;
	flex-direction: column;
	font-size: 0.75rem;
	/* margin: 0.313rem 0.313rem 0.313rem 0.313rem; */
	margin: 0 0 0.5rem 0;
}

.notice:last-child {
	margin: 0;
}

.notice a {
	text-decoration: underline;
	color: var(--color-theme-line);
}

.notice .notice-close {
	align-self: flex-end;
	padding: 0.25rem;
	color: var(--gray-4);
	font-size: var(--font-size-fluid-0);
	line-height: 0;
	cursor: pointer;
	position: relative;
	top: -0.5rem;
	right: -0.5rem;
}

.notice.glass {
	color: var(--gray-4);
	border-radius: var(--radius-2);
	padding: 1rem;
	background: rgba(255, 221, 3, 0.2);
	backdrop-filter: blur(6px) saturate(100%);
	-webkit-backdrop-filter: blur(6px) saturate(100%);
	border: 1px solid rgba(255, 221, 3, 0.2);
}

.notice.notice-c {
	color: var(--gray-4);
	border-radius: var(--radius-2);
	padding: 1rem;
	animation: colorful 15s infinite linear;
	backdrop-filter: blur(6px) saturate(100%);
	-webkit-backdrop-filter: blur(6px) saturate(100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes colorful {
	0% {
		background: rgba(238, 0, 102, 0.35);
	}

	20% {
		background: rgba(255, 0, 255, 0.35);
	}

	40% {
		background: rgba(51, 153, 255, 0.35);
	}

	60% {
		background: rgba(0, 170, 153, 0.35);
	}

	80% {
		background: rgba(255, 187, 0, 0.35);
	}

	100% {
		background: rgba(238, 0, 102, 0.35);
	}
}

:focus {
	outline: none;
}

button {
	border: none;
	padding: 0;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	font-size: 0.875rem;
	background-color: transparent;
}

.wdcb8sn {
	--njpvpw: #fff;
	--18w92jy: #31373d;
	--18w92jy: #17181b;
	--njpvpw: #fff;
	overflow: hidden;
	z-index: var(--z-index-modal-overlay);
	background: rgba(0, 0, 0, 0.8);
	/* position: absolute; */
	position: fixed;
	width: 100%;
	height: 100%;
}

.wdcb8sn > * {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
}

.wdcb8sn > .loading {
	width: 12.5rem;
	height: 12.5rem;
	background-color: var(--18w92jy);
	border-radius: var(--radius-2);
}

.wdcb8sn > * {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
}

@media screen and (min-width: 621.1px) {
	.wdcb8sn .ui-scrollview img {
		position: relative;
		width: 99%;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media screen and (max-width: 621px) {
	.wdcb8sn .ui-scrollview img {
		position: relative;
		width: 99%;
		top: 50%;
		transform: translateY(-50%);
	}
}

.i1gm0mn8 {
	--1uvkmwv: #5f6975;
	--1uvkmwv: #f5f6f7;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 11;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 3.75rem;
	height: 3.75rem;
}

.i1gm0mn8 svg {
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.36, 0.66, 0.04, 1) allow-discrete;
	-webkit-transition: transform 0.5s cubic-bezier(0.36, 0.66, 0.04, 1) allow-discrete;
	transition: transform 0.5s cubic-bezier(0.36, 0.66, 0.04, 1) allow-discrete;
	cursor: pointer;
	font-size: 0.75rem;
}

.i1gm0mn8:hover svg {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	fill: var(--1uvkmwv);
}

.ui-dialog-wrap {
	--18w92jy: #fff;
	--35p5sb: #fff;
	--7h9g04: #f5f6fa;
	--whdmoy: #31373d;
	--18w92jy: #17181b;
	--35p5sb: #1e2024;
	--7h9g04: #17181b;
	--whdmoy: #f5f6f7;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 29rem;
	height: 45rem;
	/* margin: -375px 0 0 -280px; */
	-webkit-transition-property: width, height, margin-left, margin-top, background-color;
	transition-property: width, height, margin-left, margin-top, background-color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	transition-behavior: allow-discrete;
	border-radius: var(--radius-2);
	overflow: hidden;
	background-color: var(--18w92jy);
	/* -webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0); */
	transform: translate(-50%, -50%);
}

.ui-dialog {
	position: absolute;
	right: 0;
	top: 0;
	width: 29rem;
	height: 45rem;
	max-width: 90vw;
	max-height: 90vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	background-color: var(--7h9g04);
}

.ui-dialog > div:last-child {
	padding: 1.25rem;
	background-color: var(--35p5sb);
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

@media screen and (max-width: 621px) {
	.ui-dialog > div:last-child {
		padding: 0.45rem;
	}
}

.ui-dialog-loading {
	width: 12.5rem;
	height: 12.5rem;
}

.dialog-head {
	position: relative;
	z-index: 10;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 3.75rem;
	margin-left: 1.125rem;
	-webkit-transition: all 0.5s allow-discrete;
	transition: all 0.5s allow-discrete;
}

.dialog-head.has-close {
	margin-right: 3.75rem;
}

.dialog-head.has-back {
	margin-left: 3.125rem;
}

.dialog-head .dialog-title {
	font-size: 1rem;
	margin: 0;
	font-weight: 700;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--whdmoy);
	line-height: 1;
}

.dialog-back {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 11;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 3.75rem;
	height: 3.75rem;
}

.dialog-back svg {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	width: 16px;
	height: 16px;
}

.dialog-box {
	color: #99a4b099;
	background-color: var(--35p5sb);
	border-top-left-radius: var(--radius-2);
	border-top-right-radius: var(--radius-2);
	padding: 1.75rem 1.125rem;
}

@media screen and (max-width: 621px) {
	.ui-dialog-overlayer {
		width: 100%;
		height: 100%;
	}

	.ui-dialog-wrap {
		width: 100%;
		height: 100%;
		/* left: 0;
		top: 0; */
		margin: 0;
		border-radius: 0;
	}

	.ui-dialog {
		width: 100% !important;
		height: 100% !important;
		max-width: 100% !important;
		max-height: 100% !important;
	}

	.dialog-box {
		padding: 1rem;
	}
}

.ui-scrollview {
	box-sizing: border-box;
	height: 100%;
	overflow-y: auto;
	-webkit-flex: 1 1 1px;
	-ms-flex: 1 1 1px;
	flex: 1 1 1px;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
	overscroll-behavior: contain;
}

.ui-scrollview.hide-bar.ui-scrollview::-webkit-scrollbar {
	width: 0;
	height: 0;
	background-color: transparent;
}
