/* deposit */
:root 
{
	/*green*/
	--green-deposit-default-color:#000;
	--green-common-deposit-bg-color:#d4efe8;
	--green-deposit-step-wrap-bg:#fff;
	--green-deposit-step-wrap-border:#fff;
	--green-deposit-border-active-color:#027f5f;
	--green-deposit-background-active-color:#d4efe8;
	--green-deposit-font-active-color:#000;
	--green-deposit-action-border:#027f5f;
	--green-deposit-action-bg:#fff;
	--green-deposit-action-border-active:#027f5f;
	--green-deposit-action-bg-active:#027f5f;

	/*MAROON*/
	--maroon-deposit-default-color:#000;
	--maroon-common-deposit-bg-color:#f3e6e6;
	--maroon-deposit-step-wrap-bg:#fff;
	--maroon-deposit-step-wrap-border:#fff;
	--maroon-deposit-border-active-color:#a9493a;
	--maroon-deposit-background-active-color:#f3e6e6;
	--maroon-deposit-font-active-color:#000;
	--maroon-deposit-action-border:#a9493a;
	--maroon-deposit-action-bg:#fff;
	--maroon-deposit-action-border-active:#a9493a;
	--maroon-deposit-action-bg-active:#a9493a;

	/*BLUE*/
	--blue-deposit-default-color:#000;
	--blue-common-deposit-bg-color:#e7f7ff;
	--blue-deposit-step-wrap-bg:#fff;
	--blue-deposit-step-wrap-border:#fff;
	--blue-deposit-border-active-color:#02aaf6;
	--blue-deposit-background-active-color:#e7f7ff;
	--blue-deposit-font-active-color:#000;
	--blue-deposit-action-border:#02aaf6;
	--blue-deposit-action-bg:#fff;
	--blue-deposit-action-border-active:#02aaf6;
	--blue-deposit-action-bg-active:#02aaf6;

	/*usd*/
	--usd-deposit-default-color:#000;
	--usd-common-deposit-bg-color:#fff;
	--usd-deposit-step-wrap-bg:#fff;
	--usd-deposit-step-wrap-border:#fff;
	--usd-deposit-border-active-color:#02aaf6;
	--usd-deposit-background-active-color:#fff;
	--usd-deposit-font-active-color:#000;
	--usd-deposit-action-border:#36b3ee;
	--usd-deposit-action-bg:#fff;
	--usd-deposit-action-border-active:#36b3ee;
	--usd-deposit-action-bg-active:#36b3ee;

	/*rosegold*/
	--rosegold-deposit-default-color:#000;
	--rosegold-common-deposit-bg-color:#fff;
	--rosegold-deposit-step-wrap-bg:#fff;
	--rosegold-deposit-step-wrap-border:#fff;
	--rosegold-deposit-border-active-color:#02aaf6;
	--rosegold-deposit-background-active-color:#fff;
	--rosegold-deposit-font-active-color:#000;
	--rosegold-deposit-action-border:#36b3ee;
	--rosegold-deposit-action-bg:#fff;
	--rosegold-deposit-action-border-active:#36b3ee;
	--rosegold-deposit-action-bg-active:#36b3ee;

	/*blackgreen*/
	--blackgreen-deposit-default-color:#fff;
	--blackgreen-common-deposit-bg-color:#14805e;
	--blackgreen-deposit-step-wrap-bg:#262626;
	--blackgreen-deposit-step-wrap-border:#fff200;
	--blackgreen-deposit-border-active-color:#02aaf6;
	--blackgreen-deposit-background-active-color:#fff;
	--blackgreen-deposit-font-active-color:#000;
	--blackgreen-deposit-action-border:#fff200;
	--blackgreen-deposit-action-bg:transparent;
	--blackgreen-deposit-action-border-active:#fff200;
	--blackgreen-deposit-action-bg-active:#000;

	/*whitegreen*/
	--whitegreen-deposit-default-color:#000;
	--whitegreen-common-deposit-bg-color:#d4efe8;
	--whitegreen-deposit-step-wrap-bg:#fff;
	--whitegreen-deposit-step-wrap-border:#fff;
	--whitegreen-deposit-border-active-color:#027f5f;
	--whitegreen-deposit-background-active-color:#d4efe8;
	--whitegreen-deposit-font-active-color:#000;
	--whitegreen-deposit-action-border:#027f5f;
	--whitegreen-deposit-action-bg:#fff;
	--whitegreen-deposit-action-border-active:#027f5f;
	--whitegreen-deposit-action-bg-active:#027f5f;
}

.deposit_wrap {
	padding: 2vw 2.2vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100vw;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.deposit_wrap .deposit_step_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 3vw;
	border-radius: 1vw;
	background-color: #fff;
	border-width: 1px;
	border-style: solid;
}

.deposit_wrap .deposit_step_top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 2.3vw 0px;
	font-size: 3vw;
	margin: 0 2.5vw 5px;
	border-bottom: 1px solid #3333;
}

.deposit_wrap .deposit_step_wrap .deposit_step_label {
	font-weight: 700;
}

.deposit_wrap .deposit_step_wrap .deposit_step_collapse {
	width: 15vw;
}
.deposit_wrap .checkmark{
    width: 17px;
    height: 17px;
    position: absolute;
    top: 0px;
    right: 0;
    border-top-right-radius: 5px;
	background: linear-gradient(to top right,transparent 0,transparent 50%,#ff8a00 0%,#ff8a00 50%,#ffb65f 100%);
}
.deposit_wrap .checkmark span{
	position: absolute;
    left: 8px;
    color: #fff;
    font-size: 2.5vw;
}
.deposit_wrap .deposit_step_wrap .deposit_step_collapse>span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.deposit_wrap .deposit_step_wrap .deposit_step_collapse .expand:after {
	content: "";
	border-width: 0px 0px 0.5vw 0.5vw;
	border-style: solid;
	width: 1.3vw;
	height: 1.3vw;
	position: relative;
	display: block;
	margin-left: 2vw;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: -1px;
}

.deposit_wrap .deposit_step_wrap .deposit_step_collapse .collapse:after {
	content: "";
	border-width: 0px 0px 0.5vw 0.5vw;
	border-style: solid;
	width: 1.3vw;
	height: 1.3vw;
	position: relative;
	display: block;
	margin-left: 2vw;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 0.53vw;
}

.deposit_wrap .deposit_step_wrap .deposit_step_content {
	padding-bottom: 3vw;
	font-size: 3.5vw;
}

.deposit_wrap .deposit_step_wrap .deposit_step_content .deposit_empty {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 2vw;
}

.deposit_wrap .deposit_box {
	-webkit-box-shadow: 0 0 9px 0 hsla(0,0%,56.9%,.62);
	box-shadow: 0 0 9px 0 hsla(0,0%,56.9%,.62);
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	border-radius: 0.3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.deposit_wrap .deposit_select,
.deposit_wrap .deposit_input {
	height: 8vw;
	margin: 5px 1.5vw 0 1.5vw;
	padding: 5px 10px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	overflow-y: auto;
}

.deposit_wrap .deposit_input input {
	width: 100%;
	background-color: transparent;
	border: 0px;
	height: 8vw;
	color: inherit;
}

.deposit_wrap .deposit_input input::placeholder
{
	color:inherit;
}
.deposit_wrap .deposit_input input::-moz-placeholder
{
	color:inherit;
}
.deposit_wrap .deposit_input input:-ms-input-placeholder
{
	color: inherit;
}

.deposit_wrap .deposit_input span.filename
{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deposit_wrap .deposit_select .deposit_select_img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 6vw;
	flex: 0 0 6vw;
}

.deposit_wrap .deposit_select .deposit_select_name {
	-webkit-box-flex: 1;
	-ms-flex: 1 1;
	flex: 1 1;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 1px;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 3.5vw;
	font-weight: 700;
}

.deposit_wrap .deposit_select .arrow {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 3vw;
	flex: 0 0 3vw;
	height: 3vw;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(/image/mobile/arrow_right.png);
}

.deposit_channel,
.bank_promo,
.bank_select,
.deposit_username,
.deposit_amount,
.deposit_bank_detail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 1vw;
	font-size: 3.5vw;
}

.deposit_m_box {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	padding: 1.35vw 1vw;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

.deposit_m_box .deposit_m_box_content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: auto;
	-webkit-box-shadow: 0 0 9px 0 hsla(0,0%,56.9%,.62);
	box-shadow:0 0 9px 0 hsla(0,0%,56.9%,.62);
	border-radius: 0.5rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid transparent;
	padding: 11px 6px;
	font-size: 2.7vw;
	font-weight: 600;
	position: relative;
	box-sizing: border-box;
}

#deposit .deposit_m_box_content.active
{

	border:1px solid;
}

.deposit_channel .deposit_m_box_content.active:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border-radius: 0.5rem;
	z-index: 8;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*.deposit_action>div.active:before{
	content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 4vw;
    height: 4vw;
    background: url(/image/mobile/deposit/depnav_active.png?v);
    background-size: 100% 100%;
}*/
.deposit_m_box .deposit_m_box_content img.deposit_m_img {
	width: 7vw;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 7vw;
	flex: 0 0 7vw;
}

.deposit_channel .deposit_m_box_content img.dp_recommend {
	width: 9vw;
	height: 9vw;
	position: absolute;
	top: 0px;
	right: 0;
}

.deposit_action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90%;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	margin: 2vw auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(165, 165, 165, 0.45);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10vw;
	border-width:1px;
	border-style:solid;
}

.deposit_action>div {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	width: 100%;
	height: 100%;
	padding: 1vw 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 3vw;
	-webkit-transition: all 0s linear;
	-o-transition: all 0s linear;
	transition: all 0s linear;
}

.deposit_action>div.active {
	border-width:1px;
	position: relative;
}

.deposit_amount .deposit_custom {
	min-height: 8vw;
	margin: 5px 1.5vw 0 1.5vw;
	padding: 5px 10px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.deposit_amount .remark {
	padding: 1.5vw;
	font-size: 3vw;
	color: #515151;
	display: flex;
	flex-direction: column;
}

.deposit_amount .remark span:nth-child(2) {
	font-size: 4vw;
}

.deposit_amount .remark span.coinamount {
	color: #f9ab10;
	padding-left: 0.5vw;
}

.deposit_amount .remark em {
	color: #0071ce;
	font-style: normal;
}

.deposit_amt_choice {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: space-around;
	-ms-flex-pack: space-around;
	justify-content: space-around;
}

.deposit_amt_choice .deposit_list_choice {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-shadow: 0 0 9px 0 hsla(0,0%,56.9%,.62);
	box-shadow: 0 0 9px 0 hsla(0,0%,56.9%,.62);
	border-radius: 6px;
	text-align: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px;
	margin: 5.5px;
	/*color: #4a4a4a;*/
	font-weight: 700;
	position: relative;
	font-size: 3.5vw;
}

.deposit_submit {
	width: 94vw;
	padding-top: 3vw;
	margin: auto;
}

.deposit_submit .submit {
	opacity: 1;
	height: 2.5rem;
	line-height: 2.5rem;
	font-size: 0.9rem;
}

.qrcode_wrap {
	width: 50%;
	margin: auto;
	padding: 3vw;
}
.deposit_qrcode a{
	text-decoration: unset;
}

.deposit_field_box
{
	width:100%;
	margin-top: 5px;
}

.deposit_copy, .deposit_download, .deposit_upload {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 0 1.5vw;
	margin-left: 1vw;
    font-size: 3vw;
    font-weight: 600;
    border-radius: 10px;
    color: #fff;
    background: rgba(255,175,75,1);
    background: -moz-linear-gradient(top,rgba(255,175,75,1) 0,rgba(255,146,10,1) 100%);
    background: -webkit-gradient(left top,left bottom,color-stop(0,rgba(255,175,75,1)),color-stop(100%,rgba(255,146,10,1)));
    background: -webkit-linear-gradient(top,rgba(255,175,75,1) 0,rgba(255,146,10,1) 100%);
    background: -o-linear-gradient(top,rgba(255,175,75,1) 0,rgba(255,146,10,1) 100%);
    background: -ms-linear-gradient(top,rgba(255,175,75,1) 0,rgba(255,146,10,1) 100%);
    background: linear-gradient(to bottom,rgba(255,175,75,1) 0,rgba(255,146,10,1) 100%);
}

#deposit .note{
	padding: 2vw 4vw;
    font-size: 4vw;
}

#deposit .lb_title
{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-left: 1.5vw;
    font-size: 3vw;
    font-weight: 600;
}

#deposit .amount_input_phfake {
    font-size: 3.5vw;
    position: relative;
    padding-left: 3px;
}

#deposit .amount_input_phfake,
#deposit .amount_input{
	word-break: break-all;
}

#deposit .submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 2.5rem;
    line-height: 2.5rem;
    border: none;
    border-radius: 10rem;
    font-size: var(--standard-font-size);
    color: #ffffff;
    opacity: 1;
    text-align: center;
}

/*deposit color */
.deposit_wrap
{
	color: var(--deposit-default-color);
}

.deposit_wrap .deposit_step_top
{
	border-color: var(--deposit-default-color);
}

.deposit_wrap .deposit_step_wrap
{
	background-color: var(--deposit-step-wrap-bg);
	border-color: var(--deposit-step-wrap-border);
}

.deposit_action
{
	background-color: var(--deposit-action-bg);
	border-color: var(--deposit-action-border);
}

#deposit .deposit_m_box_content, .deposit_wrap .deposit_box, .deposit_amt_choice .deposit_list_choice
{
	background: var(--common-deposit-bg-color);
	color: var(--deposit-default-color);
}

#deposit .submit 
{
	background-color: var(--common-use-color);
}

#deposit .background-type1
{
	background-color: #fff;
}

#deposit .deposit_m_box_content.active
{
	border-color: var(--deposit-border-active-color);
	background-color: var(--deposit-background-active-color);
	color: var(--deposit-font-active-color);
}

.deposit_action>div.active
{
	border-color: var(--deposit-action-border-active);
	background-color: var(--deposit-action-bg-active);
	color:  var(--common-use-white);
}

/*.deposit_wrap .checkmark
{
	background: linear-gradient(to top right,transparent 0,transparent 50%,var(--deposit-checkmark-color1) 0%,var(--deposit-checkmark-color2) 50%,var(--deposit-checkmark-color3) 100%);
}*/
