/*** 
====================================================================
  Table of contents
====================================================================

- [0. Reset and Set Defaults]
- [1. Body]
- [2. Wrapper]
- [3. Navigation]
- [4. Inline Wrapper]
- [5. Header]
- [6. main]
- [7. Container]
- [8. Form Elements] 
- [9. Accordion] 
- [10. Wizards] 
- [11. Tab Control] 
- [12. Popup] 
- [13. Lists] 
- [14. Search] 
- [15. Divider] 
- [16. Posts] 
- [17. Profile Page] 
- [18. Post Author Page] 
- [19. Gallery and Album] 
- [20. Contact] 
- [21. Product Pages] 
- [22. Panel] 
- [23. Bouble Menu]
- [24. Page Loader] 
- [25. Responsive Media Queries] 
- [26. Background Color Helpers] 
- [27. Text Helpers] 
- [28. Text Animations] 
- [29. CUSTOMIZE THE CAROUSEL] 
- [30. Home Tabs] 
- [31. Content Styles] 
- [32. Home Tabs]
- [33. index color_light]
***/

/*-------------------------------------------------------------------
[0. Reset and Set Defaults]
*------------------------------------------------------------------*/
::-webkit-scrollbar-thumb {
 border-radius: 5px;
 background-color: hsl(0deg 0% 50% / 10%);
}
::-webkit-scrollbar {
 width: 6px;
 background-color: hsl(0deg 0% 50% / 10%);
}
a {
	color: #e7eff9;
	text-decoration: none;
	font-weight: 700;
	outline: none;
}
a:hover {
	text-decoration: none !important;
}
body * {
	box-sizing: border-box;
}
p {
	margin-top: 0;
	margin-bottom: 0
}
ul {
	margin-bottom: 0
}
input, button, select, textarea, label {
	font-family: Nunito;
	font-size: 14px;
	color: #e7eff9;
	line-height: 1.4;
	font-weight: 600;
}
button:focus {
	outline: 0px dotted !important;
	outline: 0px auto -webkit-focus-ring-color !important;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
 color: #e7eff9;
}
::-moz-placeholder { /* Firefox 19+ */
 color: #e7eff9;
}
:-ms-input-placeholder { /* IE 10+ */
 color: #e7eff9;
}
:-moz-placeholder { /* Firefox 18- */
 color: #e7eff9;
}
input:focus {
	color: #e7eff9!important;
}
.font-12 {
	font-size: 12px;
}
/*end of part 0----------------------------------------------------*/



/*-------------------------------------------------------------------
[1. Body]
*------------------------------------------------------------------*/
body {
	margin: 0;
	padding: 0;
	background-color: #171e28;
	font-family: Nunito;
	font-size: 14px;
	color: #e7eff9;
	line-height: 1.4;
	font-weight: 400;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}
/*end of part 1----------------------------------------------------*/


/*-------------------------------------------------------------------
[2. Wrapper]
*------------------------------------------------------------------*/
.wrapper {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
/*end of part 2----------------------------------------------------*/



/*-------------------------------------------------------------------
[3. Navigation]
*------------------------------------------------------------------*/
.nav-menu {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999;
	background-color: rgba(0,0,0,0.3);
	display: none;
}
nav.menu.opened {
	left: 0;
}
nav.menu {
	position: absolute;
	left: -90%;
	top: 0;
	bottom: 0;
	width: 90%;
	background-color: #1e2329;
	-webkit-transition: left 200ms cubic-bezier(0.000, 0.655, 0.000, 1); /* older webkit */
	-webkit-transition: left 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
	-moz-transition: left 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
	-o-transition: left 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990);
	transition: left 200ms cubic-bezier(0.025, 0.685, 0.000, 0.990); /* custom */
}
.image-round {
	border-radius: 60px;
	width: 100px;
	height: 100px;
	border: 3px solid #fff;
}
nav.menu .nav-header span {
	display: block;
	color: #fff;
	font-weight: normal;
}
nav.menu .nav-header a {
	color: #2eb18d;
}
nav.menu .nav-header {
	height: 160px;
	text-align: center;
	padding-top: 10px;
	background: url("../img/avatar-bg.jpg") no-repeat;
	background-size: cover
}
nav .nav-container {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0px;
	overflow: auto;
}
nav.menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
nav.menu ul li {
	display: block;
	width: 100%;
}
nav.menu ul li img {
	width: 15px;
	margin: 0 8px 0 0;
}
nav.menu ul li strong {
	position: relative;
	margin-left: 10px;
	color: #EAECEF;
	font-weight: bold;
}
nav.menu ul li strong.special {
	top: 2px
}
nav.menu ul.main-menu > li.active > a {
	background-color: #2b3139;
}
nav.menu ul.main-menu > li.active > ul {
	display: block;
}
nav.menu ul.main-menu > li ul li.active {
	background-color: rgba(0,0,0,0.2);
}
nav.menu ul.main-menu>li>a {
	padding: 0 30px;
	box-sizing: border-box;
	/* margin: 0px; */
    /* min-width: 0px; */
	display: flex;
	font-size: 14px;
	/* outline: none; */
	cursor: pointer;
	color: rgb(234, 236, 239);
	/* -webkit-box-align: center; */
    /* position: relative; */
    /* text-decoration: none; */
    /* padding: 0 16px; */
	width: 100%;
	height: 58px;
	align-items: center;
	/* line-height: 58px; */
	align-content: center;
	flex-direction: row;
	justify-content: space-between;
}
nav.menu ul.main-menu > li.active i {
	color: #2eb18d !important;
}
nav.menu ul.main-menu>li>a>i {
	display: inline-block;
	width: 30px;
	font-size: 18px;
	color: #777777;
}
nav.menu ul.main-menu>li>a>span {
	display: inline-block;
	float: right;
	opacity: 0.5;
}
nav.menu ul.main-menu>li ul {
	display: none;
}
nav.menu ul.main-menu>li li a {
	box-sizing: border-box;
	margin: 0px;
	min-width: 0px;
	display: flex;
	font-size: 14px;
	outline: none;
	cursor: pointer;
	color: rgb(234, 236, 239);
	-webkit-box-align: center;
	align-items: center;
	position: relative;
	text-decoration: none;
	padding: 16px 16px 16px 42px;
}
.mt-0 {
	margin-top: 0 !important
}
.mt-10 {
	margin-top: 10px !important
}
.mt-15 {
	margin-top: 15px !important
}
.mt-20 {
	margin-top: 20px !important
}
.mt-30 {
	margin-top: 30px !important
}
.mb-0 {
	margin-bottom: 0 !important
}
.mb-5 {
	margin-bottom: 5px !important
}
.mb-10 {
	margin-bottom: 10px !important
}
.mb-15 {
	margin-bottom: 15px !important
}
.mb-30 {
	margin-bottom: 30px !important
}
.ml-10 {
	margin-left: 7px
}
.ml-20 {
	margin-left: 20px
}
.mr-10 {
	margin-right: 8px
}
.pl-0 {
	padding-left: 0 !important
}
.pr-0 {
	padding-right: 0 !important
}
.w-text {
	color: #fff !important
}
.g-text {
	color: #ede6e6 !important;
}
.p-text {
	color: #999 !important
}
.text-center {
	text-align: center !important;
}
.relative {
	position: relative !important
}
/*end of part 3----------------------------------------------------*/



/*-------------------------------------------------------------------
[4. Inline Wrapper]
*------------------------------------------------------------------*/
.wrapper-inline {
	position: absolute;
	width: 100%;
	bottom: 0;
	top: 0;
	background-color: #171e28;
	overflow-y: auto;
	overflow-x: hidden;
}
.wrapper.with-bg-image .wrapper-inline {
	background-color: rgba(255,255,255,0.9);
}
/*end of part 4----------------------------------------------------*/



/*-------------------------------------------------------------------
[5. Header]
*------------------------------------------------------------------*/
header {
	position: fixed;
	z-index: 998;
	top: 0;
	left: 0;
	right: 0;
	background-color: #171e28;
	height: 60px;
	/*border-bottom: solid 1px rgb(255 255 255 / 10%);*/
	padding: 10px;
}
header.no-background {
	background-color: transparent;
	border-bottom: none;
	color: #FFF;
	-webkit-transition: background-color .3s ease-in-out;
	-moz-transition: background-color .3s ease-in-out;
	-o-transition: background-color .3s ease-in-out;
	transition: background-color .3s ease-in-out;
}
header.no-background a {
	color: #FFF;
}
header.no-background .navi-menu-button em {
	background: #FFF;
}
header.set-bg {
	background-color: #FFF;
	border-bottom: solid 1px #EEE;
	color: #464646;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
}
header.set-bg a {
	color: #464646;
}
header.set-bg .navi-menu-button em {
	background: #464646;
}
header .go-back-link {
	display: none;
	width: 30px;
	height: 30px;
	/*	display: inline-block;*/
	line-height: 30px;
	text-align: center;
	float: left;
	margin-left: -10px;
	color: #e7eff9;
	margin-top: 5px;
}
header .page-title {
	position: absolute;
	left: 10px;
	right: 0;
	margin: 0;
	padding: 0;
	text-align: left;
	top: 5px;
}
header .page-title img {
	height: 30px;
}
header.with-search-icon .page-title {
	left: 80px;
	right: 50px;
}
.navi-menu-button {
	width: 30px;
	height: 30px;
	float: right;
	position: relative;
	cursor: pointer;
	margin-top: 5px;
}
.navi-menu-button em {
	width: 24px;
	height: 2px;
	background-color: #eabc1b;
	display: block;
	position: absolute;
	border-radius: 30px;
	right: 0;
	-webkit-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	-moz-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	-o-transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}
.navi-menu-button em:nth-child(1) {
	top: 7px;
	width: 20px;
}
.navi-menu-button em:nth-child(2) {
	top: 14px;
}
.navi-menu-button em:nth-child(3) {
	top: 21px;
	width: 20px;
}
.navi-menu-button.focused em:nth-child(1) {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 14px;
}
.navi-menu-button.focused em:nth-child(2) {
	width: 0;
}
.navi-menu-button.focused em:nth-child(3) {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 14px;
}
/*end of part 5----------------------------------------------------*/



/*-------------------------------------------------------------------
[6. Main]
*------------------------------------------------------------------*/
main {
	margin-top: 60px;
}
main.no-margin {
	margin-top: 0;
}
main.fix-top-menu {
	margin-top: 50px;
}
main.no-margin .container {
	padding: 0;
}
main.no-header .TurboWrapper {
	top: 0;
}
/*end of part 6----------------------------------------------------*/



/*-------------------------------------------------------------------
[7. Container]
*------------------------------------------------------------------*/
section.container {
	padding: 0 10px;
}
div.container {
	padding: 0 10px;
}
/*end of part 7----------------------------------------------------*/



/*-------------------------------------------------------------------
[8. Form Elements]
*------------------------------------------------------------------*/
.form-row {
	display: block;
	width: 100%;
	padding: 0;
	position: relative;
}
.form-row.no-padding {
	padding: 0;
}
.form-row-group {
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.2);
}
.form-row-group .form-row {
	margin: 10px 0;
	border-radius: 5px;
}
.form-row.btn_box {
	justify-content: space-between;
	margin: 0;
	z-index: 2;
}
.btn_box .button.block{
align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 6px;
}
.form-row-group.with-icons .form-row i {
	position: absolute;
	line-height: 40px;
	width: 24px;
	margin-left: 8px;
}
.form-row-group.with-icons .form-row .form-element {
	padding-left: 24px !important;
}
.form-element {
	display: block;
	width: 100%;
	border: none;
	height: 40px;
	outline: none;
	line-height: 40px;
	background-color: #1f282f;
}
.bg_none.form-element {
	background: #171e28;
}
select.form-element {
	-webkit-appearance: none;
	background-image: url(../img/up-down.svg);
	background-position : right center;
	background-repeat: no-repeat;
	padding-right: 1.5em;
	border-color: transparent;
}
.error {
	color: #cc0c35;
}
.error .form-element {
	border-color: #cc0c35 !important;
	color: #cc0c35;
}
textarea.form-element {
	resize: none;
	line-height: 1.4;
	padding: 10px 0;
	min-height: 80px;
}
select.form-element {
	padding: 0;
	margin-left: -4px;
}
.form-element:focus {
	border-color: #2eb18d;
}
.button {
	padding: 10px 20px;
	background-color: #343a46;
	border: none;
	border-radius: 3px;
	text-align: center;
	font-weight: 600;
	outline: none;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	cursor: pointer;
}
.button.circle {
	border-radius: 5px;
}
.button.block {
	display: block;
	width: 100%;
}
.btn_box .quickMoney {
	display: block;
	width: calc(50% - 2px) !important;    margin-bottom: 0 !important;
}
.button:hover, .button:active, .button:focus {
	background-color: #2d323b;
}
.button.darkblue {
	background-color: #2C6EBC;
	color: #FFF;
	border-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.button.orange {
	background-color: #2eb18d;
	color: #FFF;
	border-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.button.blue {
	background-color: #3e7ab7;
	color: #FFF;
	border-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.button.yellow {
	background-color: #fcd535;
	color: #212833;
	border-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.button.bg-none {
	background: none;
}
.button.red {
	background-color: #d3514b;
	color: #FFF;
	border-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.button.green {
	background-color: #65b95f;
	color: #FFF;
	border-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.more-btn {
	background: #7965ff;
	color: #fff;
	padding: 10px 40px;
	border: 1px solid #7965ff;
	border-radius: 25px;
	margin-top: 10px;
	display: inline-block;
	transition: all .3s ease-in-out;
}
.more-btn:hover, .more-btn.transparent {
	background: transparent;
	color: #7965ff
}
.sweet-check {
	height: 30px;
	width: 60px;
	cursor: pointer;
	border-radius: 30px;
	border: solid 1px #eee;
	display: inline-block;
	position: relative;
	background-color: #FFF;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-webkit-transition: background-color 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	-moz-transition: background-color 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	-o-transition: background-color 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	transition: background-color 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}
.sweet-check input {
	opacity: 0;
	position: absolute;
}
.sweet-check .outline {
	width: 27px;
	height: 27px;
	border-radius: 50%;
	display: block;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.2);
	background-color: #FFF;
	position: absolute;
	left: 0;
	-webkit-transition: left 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	-moz-transition: left 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	-o-transition: left 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
	transition: left 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}
.sweet-check.checked {
	background-color: #60B2FE;
	border-color: #60B2FE;
}
.sweet-check.checked .outline {
	left: 30px;
}
/*end of part 8----------------------------------------------------*/




/*-------------------------------------------------------------------
[9. Accordion]
*------------------------------------------------------------------*/
.expandable-item {
	background-color: #fff;
	border-radius: 3px;
	margin-bottom: 15px;
}
.expandable-header {
	background-color: #FFF;
	padding: 15px;
	position: relative;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	border-radius: 3px;
	cursor: pointer;
}
.expandable-header .list-icon {
	font-size: 18px;
	display: inline-block;
	width: 24px;
}
.expandable-header .list-title {
	font-size: 16px;
	line-height: 18px;
	margin: 0;
	padding: 0;
	display: inline-block;
}
.expandable-header .list-item-extra {
	position: absolute;
	right: 40px;
	top: 17px;
	font-size: 12px;
}
.expandable-header .list-arrow {
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 20px;
}
.expandable-content {
	border: solid 1px transparent;
	border-top: none;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height .2s linear;
	-moz-transition: max-height .2s linear;
	-o-transition: max-height .2s linear;
	transition: max-height .2s linear;
}
.expandable-content .padding-content {
	padding: 0 15px 30px;
}
.expandable-item.active .expandable-content {
	border-color: #EEE;
	min-height: 200px
}
.expandable-item.active .list-arrow:before {
	content: "\f106";
}
/*end of part 9----------------------------------------------------*/



/*-------------------------------------------------------------------
[10. Wizard]
*------------------------------------------------------------------*/
.wizard {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.wizard .wizard-item {
	position: relative;
}
.wizard .wizard-content {
	position: absolute;
	left: 20px;
	top: 20px;
	height: 100%;
	right: 20px;
	bottom: 60px;
	overflow: hidden;
	text-align: center;
}
.wizard-page .TurboWrapper {
	position: absolute;
	top: 50px;
	right: 0;
	bottom: 0;
	left: 0;
}
.wizard-page .slider-navigation {
	position: absolute;
	z-index: 99;
	bottom: 10px;
	left: 20px;
	right: 20px;
}
.wizard-skip-link {
	position: absolute;
	z-index: 99;
	bottom: 10px;
	right: 20px;
	height: 33px;
	line-height: 33px;
	font-weight: 400;
	cursor: pointer;
	font-size: 14px;
}
.wizard-skip-link:hover {
	color: #069;
}
.dotClass {
	background-color: #DDD;
	margin: 5px 3px;
	width: 15px;
	border-radius: 9px;
	height: 6px;
}
.dotClass.active {
	background: rgb(121, 101, 255, .8);
}
/*end of part 10----------------------------------------------------*/



/*-------------------------------------------------------------------
[11. Tab Control]
*------------------------------------------------------------------*/
.tab-item .fix-width .menu-item {
	display: block;
	float: left;
	text-align: center;
	padding: 15px 0 6px;
}
.tab-item .tab-content .content-item {
	display: none;
}
.tab-item .tab-content .active {
	display: block;
}
.tab-item .tab-menu {
	overflow: hidden;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	z-index: 99;
}
.tab-item .menu-item {
	line-height: 40px;
}
.tab-item .menu-item.active {
	border-bottom: solid 2px #eabc1b;
	color: #eabc1b;
}
.tab-item .tab-content {
	padding: 10px 10px 30px
}
.tab-item.fixed-bottom .tab-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-box-shadow: 0px -1px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px -1px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 0px -1px 3px 0px rgba(0,0,0,0.2);
}
.tab-item.fixed-bottom .menu-item.active {
	border-bottom: none;
	border-top: solid 2px #2eb18d;
	background-color: rgba(0,0,0,0.05);
}
.tab-item.fixed-bottom .tab-menu.only-icons .menu-item {
	font-size: 18px;
}
/*end of part 11----------------------------------------------------*/



/*-------------------------------------------------------------------
[12. Popup]
*------------------------------------------------------------------*/
.popup-overlay {
	position: fixed;
	z-index: 900;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.4);
	overflow: auto;
	display: none;
	cursor: pointer;
}
.popup-overlay.no-overlay {
	background-color: transparent;
}
.popup-overlay .popup-container {
	overflow: hidden;
	background-color: #171e28;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	padding: 24px 24px 80px;
	bottom: 0;
	position: absolute;
	width: 100%;
}
.popup-overlay .popup-container.add {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.popup-overlay .popup-header {
	padding: 10px;
	position: relative;
}
.popup-overlay .popup-title {
	margin: 0;
	padding: 0;
	padding-right: 40px;
	font-size: 1.2em;
}
.popup-overlay .popup-close {
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 10px;
	top: 10px;
	text-align: center;
	line-height: 24px;
	cursor: pointer;
}
.popup-overlay .popup-content {
	padding: 10px;
	min-height: 50px;
}
.img-buy {
	max-width: 100px;
	margin-top: 10px
}
.popup-overlay .popup-footer {
	padding: 10px;
	text-align: right;
}
/*end of part 12----------------------------------------------------*/



/*-------------------------------------------------------------------
[13. Lists]
*------------------------------------------------------------------*/
.list-box {
	width: 100%;
}
.list-box .list-item {
	padding: 15px;
	border-radius: 19px;
	background: #1f282f;
	background: -moz-linear-gradient(top, #70b2fe 0%, #1c2430 100%);
	background: -webkit-linear-gradient(top, #1f282f 0%, #1c2430 100%);
	background: linear-gradient(to bottom, #1f282f 0%, #1c2430 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#70b2fe', endColorstr='#1c2430', GradientType=0 );
	display: block;
	-webkit-box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 20%);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 20%);
	overflow: hidden;
	margin-bottom: 5px;
	position: relative;
}
.bank-card {
}
.bank-card img {
	width: 35px;
}
.list-box .list-item .sweet-check {
	float: right;
}
.list-box a.list-item:hover, .list-box a.list-item:focus {
	background: #1f282f url(/assets/images/right.svg) no-repeat center right 20px;
	background-size: 25px;
}
.list-box a.list-item:hover i, .list-box a.list-item:focus i {
	color: #585858 !important;
}
.list-box .list-item i {
	font-size: 20px;
	display: inline-block;
	line-height: 28px;
	color: #797979;
	float: left;
	width: 36px;
}
.list-box .list-item img {
	display: inline-block;
	padding-right: 10px;
	line-height: 28px;
	float: left;
	width: 36px;
}
.list-box .list-item .list-item-title {
	font-weight: 700;
	display: inline-block;
	line-height: 28px;
	float: left;
	font-size: 16px;
}
.list-box .list-item .seperate {
	display: inline-block;
	float: left;
	width: 1px;
	height: 30px;
	background-color: #EEE;
	margin-right: 10px;
}
.list-box.half-box {
	width: 50%;
	float: left;
}
.list-box.half-box .list-item {
	padding: 20px;
	text-align: center;
	margin-bottom: 10px;
}
.list-box.half-box:nth-child(odd) .list-item {
	margin-right: 5px;
}
.list-box.half-box:nth-child(even) .list-item {
	margin-left: 5px;
}
.list-box.half-box .list-item i {
	font-size: 36px;
	float: none;
}
.list-box.half-box .list-item .list-item-title {
	display: block;
	width: 100%;
	font-weight: 700;
	font-size: 14px;
}
/*end of part 13----------------------------------------------------*/



/*-------------------------------------------------------------------
14. Search]
*------------------------------------------------------------------*/
.search-button {
	width: 30px;
	height: 30px;
	position: relative;
	text-align: center;
	line-height: 30px;
	cursor: pointer;
	font-size: 16px;
	display: inline-block;
	float: left;
}
.search-button img {
	max-width: 22px
}
header.no-background .search-button .not-icon1 {
	position: absolute;
	top: 5px;
	visibility: hidden;
}
header.no-background.set-bg .search-button .not-icon1 {
	visibility: visible;
}
.search-form {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1000;
	background-color: rgba(0,0,0,0.4);
	overflow: auto;
	display: none;
}
.search-form .search-input {
	margin: 70px 20px 40px 20px;
	position: relative;
}
.search-form .form-element {
	border: solid 1px #EEE;
	padding: 0 10px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	border-bottom-width: 2px;
}
.search-form .form-element:focus {
	border-bottom-color: #2eb18d;
}
.search-form .search-input-btn {
	position: absolute;
	width: 37px;
	height: 37px;
	right: 1px;
	top: 1px;
	background-color: #FFF;
	border: none;
	line-height: 37px;
	text-align: center;
}
.search-form .search-input-btn:hover, .search-form .search-input-btn:focus {
	color: #2eb18d;
}
.search-form .recent-search, .search-form .popular-search {
	padding: 0 20px;
	margin-bottom: 20px;
}
.search-form .search-tag {
	display: inline-block;
	padding: 4px 12px;
	background-color: #FFF;
	border: solid 1px #DDD;
	font-weight: 400;
	border-radius: 15px;
	margin: 0 5px 5px 0;
}
.search-form .search-tag:hover, .search-form .search-tag:focus {
	border-color: #2eb18d;
	color: #2eb18d;
}
.search-form .search-group-title {
	margin: 0;
	padding: 0;
	margin-bottom: 6px;
}
.search-form .close-search-form {
	position: absolute;
	right: 20px;
	top: 20px;
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	color: #FFF;
	background: #6de3c2;
	border: solid 1px #ccc;
	border-radius: 3px;
	cursor: pointer;
}
.search-form .close-search-form:focus, .search-form .close-search-form:hover {
	background-color: transparent;
	color: #FFF;
}
.search-result-header {
	position: relative;
}
.search-result-header h2 {
	font-size: 14px;
	color: #7c8991;
}
.search-result-header.fix-searchbar {
	position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    padding: 10px;
    z-index: 100;
    background: #171e28;
}
.search-result-header.fix-searchbar form {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.search-result-header.fix-searchbar form i {
	margin-right: 10px;
}
.search-result-header.fix-searchbar + .search-result-container {
	padding-top: 40px;
}
.search-result-header.fix-searchbar + .search-result-container.pt-80 {
	padding-top: 80px;
}
.search-result-header .form-element {
	width: 100%;
	outline: none;
	border-radius: 5px;
	background: #1f282f url(/assets/images/calendar.svg) center right 10px no-repeat;
	background-size: 20px;
	padding: 0px 10px;
}
.search-result-header.fix-searchbar .search-result-btn {
	right: 10px;
}
.search-result-header .search-result-btn {
}
.search-result-header .search-result-btn:focus, .search-result-header .search-result-btn:hover {
}
.search-result-header .search-result-btn.bg_none {
	width: 82px;
	height: 38px;
	border: none;
	cursor: pointer;
	padding: 0px 8px;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: space-between;
	background-color: #fcd535;
	color: #212833;
	text-align: center;
	font-weight: 600;
	outline: none;
	border-radius: 5px;
	margin-left: 8px;
}
.search-result-header .search-result-btn.bg_none i {
	margin-right: 5px;
}
/*end of part 14----------------------------------------------------*/



/*-------------------------------------------------------------------
[15. Divider]
*------------------------------------------------------------------*/
.form-divider {
	display: block;
	width: 100%;
	clear: both;
	height: 10px;
}
.form-mini-divider {
	display: block;
	width: 100%;
	clear: both;
	height: 4px;
}
.form-label-divider {
	display: block;
	width: 100%;
	clear: both;
	height: 1px;
	text-align: center;
	opacity: 0.5;
}
.form-label-divider span {
	position: relative;
	top: -8px;
	font-weight: 700;
	display: inline-block;
	padding: 0 10px;
}
/*end of part 15----------------------------------------------------*/



/*-------------------------------------------------------------------
[16. Posts]
*------------------------------------------------------------------*/
.post-item {
	width: 100%;
	border-radius: 3px;
	background-color: #FFF;
	min-height: 100px;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
}
.post-item .post-asset {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	overflow: hidden;
}
.post-item .post-asset.image img {
	display: block;
	width: 100%;
}
.post-item .post-asset.video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.post-item .post-asset.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.post-item .post-header {
	padding: 15px;
	border-bottom: solid 1px #EEE;
}
.post-item .post-title {
	font-size: 18px;
	padding: 0;
	margin: 0;
	margin-bottom: 4px;
	color: #333;
}
.post-item .post-title a {
	font-size: 18px;
	color: #4c4c4c;
	line-height: 18px;
}
.post-item .post-header span {
	font-size: 12px;
	margin-right: 10px;
	opacity: 0.6;
}
.post-item .post-footer {
	padding: 10px 15px;
}
.post-item .post-author {
	display: inline-block;
}
.post-item .author-img {
	width: 44px;
	height: 44px;
	display: block;
	float: left;
	overflow: hidden;
	border-radius: 50%;
	padding: 3px;
	background: #FFF;
	border: solid 1px #2eb18d;
	margin-right: 10px;
}
.post-item .author-img img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
}
.post-item .author-name {
	font-size: 12px;
	font-weight: 400;
	white-space: nowrap;
}
.post-item .author-name b {
	white-space: nowrap;
	display: block;
	font-size: 14px;
}
.post-item .post-extra {
	display: inline-block;
	float: right;
}
.post-item .post-extra div {
	display: inline-block;
	height: 40px;
	width: 40px;
	text-align: center;
	font-size: 24px;
	cursor: pointer;
}
.post-item .post-share {
	position: relative;
	line-height: 40px;
}
.post-item .post-share > i {
	cursor: pointer;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
}
.post-item .post-share .social-links {
	position: absolute;
	z-index: 10;
	top: 0;
	width: auto;
	display: inline-block;
	white-space: nowrap;
	left: -130px;
	width: 130px;
	border: solid 1px #EEE;
	border-radius: 5px;
	background: #FFF;
	display: none;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
}
.post-item .post-share .social-links a {
	font-size: 18px;
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	position: relative;
	float: left;
}
.post-item .post-share .social-links a.share-facebook {
	color: #2C6EBC;
}
.post-item .post-share .social-links a.share-twitter {
	color: #1DA1F2;
}
.post-item .post-share .social-links a.share-google-plus {
	color: #D24C41;
}
.post-detail {
	background: #FFF;
	padding: 10px;
	border-top: solid 1px #EEE;
}
.post-detail p {
	margin: 0;
	margin-bottom: 10px;
}
.post-detail h1, .post-detail h2, .post-detail h3, .post-detail h4, .post-detail h5 .post-detail h6 {
	font-weight: 900;
}
.post-comments {
	margin-top: 10px;
}
.post-comments ul {
	padding: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.post-comments ul li {
	display: block;
	width: 100%;
}
.post-comments > ul > li li {
	padding-left: 20px;
}
.post-comments ul li .comment-container {
	background-color: #FFF;
	padding: 10px;
	margin: 10px;
}
.post-comments.no-padding {
	margin-top: 0;
}
.post-comments.no-padding ul li .comment-container {
	margin: 0;
	margin-bottom: 10px;
}
.post-comments .comment-header {
	position: relative;
	border-bottom: solid 1px #EEE;
	overflow: hidden;
	padding-bottom: 10px;
}
.post-comments .user-image {
	display: block;
	width: 38px;
	height: 38px;
	border: solid 1px #2eb18d;
	border-radius: 50%;
	float: left;
	padding: 2px;
	margin-right: 10px;
}
.post-comments .user-image img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
}
.post-comments .user-name {
	display: inline-block;
	float: left;
	line-height: 38px;
	font-weight: 700;
}
.post-comments .comment-date {
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 12px;
	opacity: 0.6;
}
.post-comments .comment-content {
	padding-top: 10px;
	opacity: 0.7;
}
.post-comments .comment-post-link {
	border-bottom: solid 1px #EEE;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.post-comments .comment-post-link a {
	color: #2eb18d;
	font-weight: 700;
}
.news-list-item {
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	background-color: #1f282f;
	min-height: 30px;
	border-radius: 3px;
	position: relative;
}
.news-list-item > span{
	text-align: center;
    width: 100%;
    display: block;
    line-height: 50px;
}
.news-list-item.no-image .list-content {
	padding-left: 10px;
	height: auto;
}
.news-list-item.no-image .list-title {
	height: auto;
	word-wrap: break-word;
	word-break: break-all;
}
.news-list-item .list-image {
	width: 100px;
	height: 100px;
	position: absolute;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	overflow: hidden;
	float: left;
}
.news-list-item .list-content {
	height: auto;
	position: relative;
	padding: 10px;
}
.news-list-item .list-content dl {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: 0;
	font-size: 0.8em;
}
.news-list-item .list-content dt {
	display: inline-block;
	color: #7c8991;
}
.news-list-item .list-content dd {
	display: inline-block
}
.news-list-item .list-category {
	font-size: 12px;
	display: inline-block;
	padding: 3px 10px;
	color: #FFF;
	border-radius: 10px;
	margin-bottom: 6px;
}
.news-list-item .list-title {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 16px;
	height: 32px;
}
.news-list-item .list-author, .news-list-item .list-time {
	font-size: 12px;
	opacity: 0.6;
}
.news-list-item .list-author {
	font-weight: 700;
}
/*end of part 16----------------------------------------------------*/



/*-------------------------------------------------------------------
[17. Profile Page]
*------------------------------------------------------------------*/
.profile-image {
	width: 110px;
	height: 110px;
	padding: 5px;
	border-radius: 50%;
	background-color: #FFF;
	display: inline-block;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
	position: relative;
}
.profile-image .avatar-img {
	border-radius: 50%;
}
.profile-image .update-btn {
	position: absolute;
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	background-color: #fff;
	right: 0;
	bottom: 0;
	text-align: center;
	line-height: 32px;
}
/*end of part 17----------------------------------------------------*/



/*-------------------------------------------------------------------
[18. Post Author Page]
*------------------------------------------------------------------*/
.author-item .author-bg {
	width: 100%;
	height: auto;
	position: relative;
	background-size: cover;
}
.author-item .author-bg-inline {
	width: 100%;
	background-color: rgba(14, 14, 14, 0.1);
	padding: 60px 0 20px 0;
}
.author-item .author-avatar {
	border-radius: 50%;
	width: 120px;
	height: 120px;
	background-color: rgba(255,255,255,0.2);
	padding: 10px;
	display: block;
	margin: 0 auto;
}
.author-item .author-avatar img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
}
.author-item .author-name {
	display: block;
	text-align: center;
	color: #FFF;
	font-size: 18px;
	font-weight: 900;
	margin: 0;
	padding: 0;
	margin-top: 20px;
}
.author-item .author-desc {
	display: block;
	text-align: center;
	color: rgba(255,255,255,0.5);
	font-size: 14px;
}
.author-item .author-number {
	overflow: hidden;
	color: rgba(255,255,255,0.6);
	text-align: center;
	margin-top: 40px;
}
.author-item .author-number > div {
	width: 33%;
	float: left;
}
.author-item .author-number > div > span {
	display: block;
	font-size: 18px;
	font-weight: 400;
	color: #FFF;
}
/*end of part 18----------------------------------------------------*/



/*-------------------------------------------------------------------
19. Gallery and Album]
*------------------------------------------------------------------*/
.album-item {
	background-color: #FFF;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	border-radius: 3px;
	margin-bottom: 10px;
	display: block;
}
.album-item:focus, .album-item:hover {
	color: #35d9ac;
}
.album-item:focus .album-image:before, .album-item:hover .album-image:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.4);
	z-index: 9;
}
.album-item .album-image {
	height: 140px;
	width: 100%;
	overflow: hidden;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	position: relative;
}
.album-item .album-image img {
	position: absolute;
	top: -9999px;
	right: -9999px;
	bottom: -9999px;
	left: -9999px;
	margin: auto;
	min-width: 100%;
	min-height: 100%;
}
.album-item .album-info {
	padding: 10px;
	position: relative;
}
.album-item .album-title {
	margin: 0;
	padding: 0;
}
.album-item .image-count {
	font-size: 12px;
	opacity: 0.6;
	float: right;
	position: absolute;
	right: 10px;
	top: 10px;
}
.album-item.half-box .album-image {
	height: 100px;
}
.album-item.half-box {
	width: 49%;
}
.album-item.half-box:nth-child(odd) {
	float: left;
}
.album-item.half-box:nth-child(even) {
	float: right;
}
.album-item.half-box .image-count {
	position: relative;
	display: block;
	float: none;
	top: inherit;
	right: inherit;
}
.gallery-item {
	display: block;
	position: relative;
	overflow: hidden;
	height: 140px;
	border-radius: 3px;
	cursor: pointer;
}
.gallery-item.half-box {
	width: 50%;
	float: left;
	margin-bottom: 0;
}
.gallery-item img {
	position: absolute;
	top: -9999px;
	right: -9999px;
	bottom: -9999px;
	left: -9999px;
	margin: auto;
	min-width: 100%;
	min-height: 100%;
}
.gallery-item .image-name {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	z-index: 9;
	color: #FFF;
	background: rgba(135,135,135,0);
	background: -moz-linear-gradient(top, rgba(135,135,135,0) 0%, rgba(51,51,51,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(135,135,135,0)), color-stop(100%, rgba(51,51,51,1)));
	background: -webkit-linear-gradient(top, rgba(135,135,135,0) 0%, rgba(51,51,51,1) 100%);
	background: -o-linear-gradient(top, rgba(135,135,135,0) 0%, rgba(51,51,51,1) 100%);
	background: -ms-linear-gradient(top, rgba(135,135,135,0) 0%, rgba(51,51,51,1) 100%);
	background: linear-gradient(to bottom, rgba(135,135,135,0) 0%, rgba(51,51,51,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#878787', endColorstr='#333333', GradientType=0 );
}
.gallery-item .image-name b {
	position: absolute;
	display: block;
	bottom: 10px;
	left: 10px;
}
.gallery-item .image-name i {
	position: absolute;
	font-size: 18px;
	right: 10px;
	bottom: 10px;
}
.gallery-item:hover .image-name, .gallery-item:focus .image-name {
	top: 0;
	background: rgba(0,0,0,0.4);
}
/*end of part 19----------------------------------------------------*/



/*-------------------------------------------------------------------
[20. Contact]
*------------------------------------------------------------------*/
.map_container {
	position: relative;
	left: 0;
	right: 0;
	top: -10px;
	width: 100%;
	height: 300px;
}
.contact-info {
	background-color: #FFF;
	margin: 0 10px 10px;
	padding: 10px;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
}
.contact-info .address-name {
	margin: 6px 0;
	padding: 0;
}
.contact-info .contact-stars {
	opacity: 0.6;
}
.contact-info .address {
	padding: 0;
	margin: 0;
}
.contact-short-info {
	background-color: #FFF;
	padding: 10px;
	margin: 10px;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
}
.contact-short-info .title {
	margin: 0;
}
.contact-address {
	/*	background: linear-gradient(to bottom, #1f282f 0%, #171e28 100%);
	margin: 10px;*/
	padding: 10px 0;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
}
.contact-address .contact-item {
	margin-bottom: 16px;
}
.contact-address .contact-item i {
	display: inline-block;
	width: 20px;
}
/*end of part 20----------------------------------------------------*/



/*-------------------------------------------------------------------
[21. Product Pages]
*------------------------------------------------------------------*/
.product-two-column .product-item {
	display: block;
	width: 50%;
	float: left;
}
.product-item {
	display: block;
	width: 100%;
	position: relative;
}
.product-item > a {
	display: block;
	background-color: #FFF;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	margin-bottom: 10px;
	border-radius: 3px;
}
.product-two-column .product-item:nth-child(odd) {
	padding-right: 5px;
}
.product-two-column .product-item:nth-child(even) {
	padding-left: 5px;
}
.product-item .product-title {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 14px;
	padding: 5px 10px;
	overflow: hidden;
	height: 25px;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	white-space: nowrap;
	color: #525252;
	font-weight: normal;
}
.title-main {
	margin: 15px 0;
	font-size: 14px;
	color: #7c8991;
}
.product-item .product-image {
	display: block;
	width: 100%;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.product-item .product-info {
	display: block;
	padding: 0px 10px 0px 10px;
	font-weight: 800;
	height: 35px;
}
.product-item .product-price {
	font-size: 12px;
	line-height: 30px;
}
.product-item .add-to-chart {
	border: none;
	border-radius: 3px;
	color: #FFF;
	font-size: 12px;
	line-height: 18px;
	float: right;
}
.product-item .old-price {
	opacity: 0.7;
	margin-left: 10px;
	text-decoration: line-through;
}
.product-item .add-to-favorite {
	position: absolute;
	right: 15px;
	top: 10px;
	color: #FFF;
	font-size: 20px;
	cursor: pointer;
}
.product-viewer .view-item {
	padding: 10px;
}
.product-viewer .view-item img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	padding: 10px;
	background-color: #FFF;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
}
.product-view-title {
	text-align: center;
	margin: 0;
}
.product-view-price {
	margin: 0;
	text-align: center;
}
.product-view-price .old-price {
	opacity: 0.5;
	font-weight: 400;
	text-decoration: line-through;
}
.cart-btn {
	display: block;
	width: 30px;
	height: 30px;
	background-color: #ececec;
	float: right;
	border: 0px;
	border-radius: 25px;
	font-size: 14px;
	margin-top: 2px;
	color: #2eb18d;
}
.product-size {
	margin: 10px auto;
	width: 300px;
}
.product-size li {
	list-style-type: none;
	float: left;
	margin: 0px 10px;
}
.product-size li a {
	text-align: center;
	border-radius: 50%;
	border: 1px solid #2eb18d;
	float: left;
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: #2eb18d;
}
.product-size li a:hover {
	border: 1px solid #ccc;
}
.product-size li.active a {
	background: #2eb18d;
	text-align: center;
	border-radius: 50%;
	border: 1px solid #2eb18d;
	float: left;
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: #fff !important;
}
/*end of part 21----------------------------------------------------*/



/*-------------------------------------------------------------------
[22. Panel]
*------------------------------------------------------------------*/
.panel {
	padding: 10px;
	background-color: #FFF;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1);
}
.panel .title {
	margin: 0;
	padding: 0;
}
/*end of part 22----------------------------------------------------*/



/*-------------------------------------------------------------------
[23. Bouble Menu]
*------------------------------------------------------------------*/
.bouble-link {
	position: fixed;
	z-index: 777;
	display: block;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	bottom: 30px;
	right: 30px;
	line-height: 46px;
	text-align: center;
	-webkit-box-shadow: 2px 2px 15px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 15px 0px rgba(0,0,0,0.2);
	box-shadow: 2px 2px 15px 0px rgba(0,0,0,0.2);
	font-size: 18px;
}
/*end of part 23----------------------------------------------------*/



/*-------------------------------------------------------------------
[24. Page Loader]
*------------------------------------------------------------------*/


.sweet-loader {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1000000;
	background-color: rgba(255,255,255,0.9);
	display: none;
	opacity: 0;
	-webkit-transition: opacity .3s ease-in-out;
	-moz-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out;
}
.sweet-loader.show {
	display: block;
	opacity: 1;
}
.sweet-loader.show .box {
	width: 70px;
	height: 24px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -12px;
	left: 50%;
	margin-left: -35px;
}
.sweet-loader.show .box > div {
	width: 18px;
	height: 18px;
	background-color: #2eb18d;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.sweet-loader.show .box .circle1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.sweet-loader.show .box .circle2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
 @-webkit-keyframes sk-bouncedelay {
 0%, 80%, 100% {
-webkit-transform: scale(0)
}
 40% {
-webkit-transform: scale(1.0)
}
}
 @keyframes sk-bouncedelay {
 0%, 80%, 100% {
 -webkit-transform: scale(0);
 transform: scale(0);
}
40% {
 -webkit-transform: scale(1.0);
 transform: scale(1.0);
}
}

/*end of part 24----------------------------------------------------*/



/*-------------------------------------------------------------------
[25. Responsive Media Queries]
*------------------------------------------------------------------*/
@media screen and (min-width: 480px) {
body {
	font-size: 16px;
}
header {
	padding: 10px 20px;
}
section.container, div.container {
	padding: 0 20px;
}
nav.menu {
	width: 300px;
}
.form-label-divider span {
	top: -10px;
}
.post-detail {
	padding: 20px;
}
.search-result-header {
	margin: -10px -20px 20px -20px;
}
.search-result-header .form-element {
	padding: 0 20px;
}
.search-result-header .search-result-btn {
	right: 10px;
}
h1 .button {
	font-size: 16px;
}
}
/*end of part 25----------------------------------------------------*/



/*------------------------------------------------------------------
[26. Background Color Helpers]

Orange 	/	.orange			#2eb18d
Red 	/ 	.red			#F34954
Purple	/	.purple			#7A5AAD
Turquoise/	.turquoise	 	#30BFBB
Green 	/	.green			#27AE61
Blue 	/	.blue			#2A80BB
Yellow 	/	.yellow			#CCA000
White 	/	.white			#FFFFFF
-------------------------------------------------------------------*/
.orange {
	background-color: #2eb18d;
}
.red {
	background-color: #F34954;
}
.purple {
	background-color: #7A5AAD;
}
.turquoise {
	background-color: #30BFBB;
}
.green {
	background-color: #27AE61;
}
.blue {
	background-color: #2A80BB;
}
.yellow {
	background-color: #CCA000;
}
.white {
	background-color: #FFFFFF;
	color: #464646;
}
/*end of part 26----------------------------------------------------*/



/*-------------------------------------------------------------------
[27. Text Helpers]
*------------------------------------------------------------------*/
.txt-center {
	text-align: center;
}
.txt-left {
	text-align: left;
}
.txt-right {
	text-align: right;
}
.txt-orange {
	color: #2eb18d;
}
.txt-red {
	color: #F34954;
}
.txt-purple {
	color: #7A5AAD;
}
.txt-turquoise {
	color: #30BFBB;
}
.txt-green {
	color: #33cb4d;
}
.txt-blue {
	color: #2A80BB;
}
.txt-yellow {
	color: #CCA000;
}
.txt-default {
	color: #464646;
}
.txt-white {
	color: #FFFFFF;
}
.txt-bold {
	font-weight: bold;
	font-weight: 700;
}
.txt-extra-bold {
	font-weight: bold;
	font-weight: 900;
}
.txt-normal {
	font-weight: normal;
	font-weight: 400;
}
.txt-light {
	font-weight: lighter;
	font-weight: 300;
}
.o-hidden {
	overflow: hidden;
}
/*end of part 27----------------------------------------------------*/



/*-------------------------------------------------------------------
[28. Text Animations]
*------------------------------------------------------------------*/
.animated-text {
	text-align: center;
	position: relative;
}
.animated-text h1 {
	margin: 0;
	padding: 0;
	position: relative;
}
.animated-text .text1 {
	font-size: 24px;
	display: block;
}
.animated-text .text2 {
	font-size: 14px;
}
.animated-text .text3 {
	display: block;
	font-size: 14px;
}
.animated-text .text4 {
	display: block;
	font-size: 36px;
}
.animated-text .text5 {
	display: block;
	font-size: 36px;
}
.animated-text .text6 {
	display: block;
	font-size: 36px;
}
.animated-text .text7 {
	font-size: 14px;
	display: block;
	margin-top: 20px;
}
/*end of part 28----------------------------------------------------*/




/*Other Styles and helpers------------------------------------------*/
.block {
	display: block;
}
.hide {
	display: none !important;
}
.animated {
	display: block !important;
	opacity: 1;
}
.zero-opacity {
	opacity: 0;
}
h1 .button {
	font-size: 14px;
}
/*-------------------------------------------------------------------
[29. CUSTOMIZE THE CAROUSEL]
*------------------------------------------------------------------*/



/* Carousel base class */

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
	z-index: 1;
}
/* Declare heights because of positioning of img element */
.carousel .item {
	height: 400px;
	background-color: #555;
}
.carousel img {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 218px;
	width: 100%;
}
/* MARKETING CONTENT
-------------------------------------------------- */

/* Pad the edges of the mobile views a bit */
.marketing {
	padding-left: 15px;
	padding-right: 15px;
}
/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
	text-align: center;
	margin-bottom: 20px;
}
.marketing h2 {
	font-weight: normal;
}
.marketing .col-lg-4 p {
	margin-left: 10px;
	margin-right: 10px;
}
/* Featurettes
------------------------- */

.featurette-divider {
	margin: 80px 0; /* Space out the Bootstrap <hr> more */
}
.featurette {
	padding-top: 120px; /* Vertically center images part 1: add padding above and below text. */
	overflow: hidden; /* Vertically center images part 2: clear their floats. */
}
.featurette-image {
	margin-top: -120px; /* Vertically center images part 3: negative margin up the image the same amount of the padding to center it. */
}
/* Give some space on the sides of the floated elements so text doesn't run right into it. */
.featurette-image.pull-left {
	margin-right: 40px;
}
.featurette-image.pull-right {
	margin-left: 40px;
}
/* Thin out the marketing headings */
.featurette-heading {
	font-size: 50px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: -1px;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 768px) {
/* Remve the edge padding needed for mobile */
.marketing {
	padding-left: 0;
	padding-right: 0;
}
/* Navbar positioning foo */
.navbar-wrapper {
	margin-top: 20px;
	margin-bottom: -90px; /* Negative margin to pull up carousel. 90px is roughly margins and height of navbar. */
}
/* The navbar becomes detached from the top, so we round the corners */
.navbar-wrapper .navbar {
	border-radius: 4px;
}
/* Bump up size of carousel content */
.carousel-caption p {
	margin-bottom: 20px;
	font-size: 21px;
	line-height: 1.4;
}
}
.margin {
	margin-top: 49px;
}
/*end of part 28----------------------------------------------------*/


/*-------------------------------------------------------------------
[30. Home Tabs]
*------------------------------------------------------------------*/

#content-body {
	flex: 1;
	min-height: 170px;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e6e6e6;
}
.round {
	border-radius: 19px;
	background: #f7c558; /* Old browsers */
	background: -moz-linear-gradient(top, #f7c558 0%, #e26f25 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #f7c558 0%, #e26f25 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #f7c558 0%, #e26f25 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7c558', endColorstr='#e26f25', GradientType=0 ); /* IE6-9 */
	padding: 15px;
}
.app {
	background: #f76b71; /* Old browsers */
	background: -moz-linear-gradient(top, #f76b71 1%, #de2125 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #f76b71 1%, #de2125 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #f76b71 1%, #de2125 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f76b71', endColorstr='#de2125', GradientType=0 ); /* IE6-9 */
	border-radius: 19px;
	padding: 15px;
}
.hot {
	background: #70b2fe; /* Old browsers */
	background: -moz-linear-gradient(top, #70b2fe 0%, #3378f7 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #70b2fe 0%, #3378f7 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #70b2fe 0%, #3378f7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#70b2fe', endColorstr='#3378f7', GradientType=0 ); /* IE6-9 */
	border-radius: 19px;
	padding: 15px;
}
.vip {
	background: #9f6dfe; /* Old browsers */
	background: -moz-linear-gradient(top, #9f6dfe 0%, #6a1ff4 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #9f6dfe 0%, #6a1ff4 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #9f6dfe 0%, #6a1ff4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9f6dfe', endColorstr='#6a1ff4', GradientType=0 ); /* IE6-9 */
	border-radius: 19px;
	padding: 15px;
}
.brands {
	background: #7ff0f1; /* Old browsers */
	background: -moz-linear-gradient(top, #7ff0f1 0%, #39b4fe 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #7ff0f1 0%, #39b4fe 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #7ff0f1 0%, #39b4fe 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7ff0f1', endColorstr='#39b4fe', GradientType=0 ); /* IE6-9 */
	border-radius: 19px;
	padding: 15px;
}
.flash {
	background: #c5f493; /* Old browsers */
	background: -moz-linear-gradient(top, #1ddc3e 0%, #28a745 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #1ddc3e 0%, #28a745 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #1ddc3e 0%, #28a745 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1ddc3e', endColorstr='#28a745', GradientType=0 ); /* IE6-9 */
	border-radius: 19px;
	padding: 15px;
}
.content-row {
	display: flex;
	flex: 1;
}
.content-col {
	padding: 23px 0px;
	width: 33.33%;
	text-align: center;
	font-size: 14px;
	float: left;
	clear: both;
}
.content-col:last-child {
	border-right: none;
}
.content-row:last-child {
	border-bottom: none;
}
.content-col>i {
	width: 55px;
	font-size: 25px;
	color: #fff;
	margin-bottom: 10px;
}
.content-col span {
	display: block;
}
/*end of part 30----------------------------------------------------*/

/*-------------------------------------------------------------------
[31. Content Styles]
*------------------------------------------------------------------*/
.dash-balance {
	/*	    background-image: linear-gradient(0deg, #ffffff 0, #f9f9f9 100%);*/
	background: url(/assets/images/home-two.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	overflow: hidden;
	padding: 40px 20px;
	color: #fff;
}
.dash-balance:before {
	content: '';
	position: absolute;
	width: 103%;
	height: 100%;
	left: -3px;
	right: 0px;
	bottom: -1px;
	background: url(/assets/images/curve.svg) no-repeat bottom;
	z-index: 0;
}
.dash-content h3 {
	display: inline-block;
}
.bal-section {
	position: relative;
	margin-top: -70px
}
.flex-grow {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.balance-card {
	background: url(/assets/images/b1-bg.png) no-repeat;
	background-size: cover;
	padding: 30px 20px;
	border-radius: 10px
}

@media(min-width: 992px) {
.balance-card {
	background-position: center;
}
.dash-balance:before {
	background: none
}
}
.b-val {
	margin: 0;
	color: #fff;
	line-height: 1;
	margin-bottom: 5px;
	font-size: 32px;
	font-weight: 700;
}
.balance-card .badge {
	background-color: rgba(255, 255, 255, 0.2);
	padding: 10px 15px;
}
.balance-card .badge i {
	color: #1ce93f
}
.resources-card-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.resources-card {
	width: 49%;
	padding: 25px 15px;
	border-radius: 3px;
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
	z-index: 10;
}
.resources-card i {
	font-size: 20px;
	margin-bottom: 5px
}
.transaction-list img {
	max-width: 40px;
	max-height: 40px
}
.transaction-list {
	margin-bottom: 30px
}
.transaction-list li {
	background: #fff;
	padding: 10px;
	border-radius: 10px;
	margin: 0 0 10px;
	box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.02);
}
.coin-name {
	margin: 0;
	font-weight: 600;
	font-size: 1rem;
}
.buy-card {
	background-image: linear-gradient(0deg, #19202a 0, #1f282f 100%);
	width: 49%;
	padding: 20px 15px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 9px 1px rgb(0 0 0 / 10%);
	box-shadow: 0px 0px 9px 1px rgb(0 0 0 / 10%);
}
.buy-card h4 {
	margin: 10px 0 5px;
	color: #fff;
	font-weight: 600
}
.buy-card p {
	margin: 5px 0;
	font-weight: 400
}
.crypto-b {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	text-align: left;
	width: 100%;
	margin-right: 10px;
	padding: 15px 13px
}

@media(max-width: 400px) {
.crypto-b {
	margin-right: 10px;
	flex: 1;
}
}
.live-trade {
	padding: 0 15px
}
.crypto-b .coin-name {
	color: #fff
}
.crypto-b i {
	font-size: 20px;
	width: 35px;
	height: 35px;
	font-weight: 500;
	text-align: center;
	padding: 3px;
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
}
.coin-box {
	background: #fff;
}
.img-xs {
	max-width: 60px
}
.ref-card {
	padding: 20px 15px;
	border-radius: 10px;
	margin-bottom: 15px;
	background-size: cover !important
}
.ref-card .badge {
	background-color: rgba(255, 255, 255, 0.2);
	padding: 10px 15px;
}
.ref-card.c1 {
	background: url(/assets/images/ref1.png) no-repeat center center;
}
.ref-card.c2 {
	background: url(/assets/images/ref2.png) no-repeat center center;
}
.ref-card.c3 {
	background: url(/assets/images/ref3.png) no-repeat center center;
}
.refer #content-body {
	padding-top: 0;
	padding-bottom: 30px
}
.refer .content-head {
	position: relative;
	padding: 20px 15px;
	margin-bottom: 30px
}
.ref-bouns {
	background: orange;
	position: absolute;
	text-align: center;
	right: 15px;
	color: #fff;
	top: 0;
	padding: 10px;
}
.ref-content {
	padding: 0 15px
}
.ref-content .button {
	margin-top: 10px
}
.ref-copy {
	position: absolute;
	right: -6px;
	background: #00adf2;
	width: 40px;
	height: 40px;
	color: #fff;
	text-align: center;
	line-height: 40px;
}
.ref-statistics {
	width: 49%;
	padding: 20px 10px;
	border-radius: 3px;
	background: #1f282f;
	-webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
	text-align: center;
	margin-top: 15px;
}
.ref-statistics p {
	margin-bottom: 0;
	color: #7c8991;
}
/*Live crypto widgets 最新最全最好的Bootstrap模板：http://www.jq22.com*/
.widget_logo {
	display: none;
}
.amcharts-graph-column-front.amcharts-graph-column-element, .amcharts-legend-marker {
	fill: #8688ff;
	stroke: #8688ff
}
.amcharts-graph-stroke {
	stroke: #8688ff;
}
.amcharts-graph-fill {
	fill: #8688ff
}
.ccc-widget.ccc-chart-v3 {
	margin-bottom: 15px
}
.chartTypeTabLinks {
	display: none;
}
.tabsPeriodsContainer {
	margin-top: 20px
}
#marketsContainerUSD {
	display: none !important;
}
.cryptocompare-logo {
	display: none;
}
.img-affa-wrapper {
	padding: 20px;
	border: 2px dashed #8688ff;
	margin-bottom: 30px;
}
.content-head {
	padding: 10px 15px;
	border-bottom: 1px solid #eee;
}
.wallet-card {
	width: 49%;
	padding: 15px 10px;
	text-align: center;
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
}
.purp {
	background-image: linear-gradient(-12deg, #a1c4fc 0, #8473ee 100%) !important;
}
.wallet-card .c-icon {
	font-size: 26px;
	color: #fff
}
.wallet-card h3 {
	margin: 10px 0;
	font-size: 16px
}
.wallets-list {
	position: relative;
}
.wallets-list h3 {
	color: #fff
}
.wallets-list i {
	color: #fff;
	margin-right: 10px;
	border: 1px solid #fff;
	width: 30px;
	display: inline-block;
	height: 30px;
	line-height: 27px;
	border-radius: 50%;
	text-align: center;
}
.wallets-list .form-row-group.with-icons .form-row i {
	top: -2px;
	border: none;
}
.wallets-list .expandable-item.active .expandable-content {
	min-height: 800px
}
.recent-trans {
	position: relative;
	padding: 30px 15px;
	background: url(/assets/images/trans-bg1.png) no-repeat bottom center;
	border-radius: 15px;
	background-size: cover;
}
.recent-trans .dropdown-menu-list:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 31px;
	width: 0px;
	transform: translateY(-50%);
	height: 77%;
	border: 1px dashed rgba(255,255,255,.4);
}
.recent-trans .dropdown-menu-list li {
	width: 100%;
	display: block;
	position: relative;
	padding: 15px 0 15px 0;
	border-bottom: 1px solid transparent;
}
.recent-trans .dropdown-menu-list li strong {
	color: #fff
}
.recent-trans .dropdown-menu-list li:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 87%;
	height: 1px;
	background: rgba(255,255,255,.4)
}
.recent-trans .time {
	display: block;
	margin-top: 5px;
	color: #ede6e6
}
.recent-trans .notice-icon i {
	border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	height: 35px;
	width: 35px;
	background: #5776d5;
	line-height: 35px;
	float: left;
	display: inline-block;
	text-align: center;
	margin-right: 15px;
	color: #ffffff;
	margin-top: 5px;
}
.wallet-address {
	position: relative;
	padding: 30px 15px;
	background: url(/assets/images/trans-bg2.png) no-repeat center;
	border-radius: 0 0 15px 15px;
	text-align: center;
	overflow: hidden;
	background-size: cover;
}
.wallet-address:before {
	position: absolute;
	content: '';
	width: 98%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	height: 1px;
	border-top: 1px dashed #fff;
}
.wallet-address h4 {
	color: #fff;
	margin-bottom: 10px
}
.wallet-address .icon {
	position: absolute;
	max-width: 15px;
	top: 12px;
}
.member-img {
	width: 44px;
	height: 44px;
	display: block;
	float: left;
	overflow: hidden;
	border-radius: 50%;
	padding: 3px;
	background: #FFF;
	border: solid 1px #2eb18d;
}
.member-img img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
}
.add-receiever {
	position: relative;
	border: 1px solid #eee;
	background-image: linear-gradient(-12deg, #a1c4fc 0, #8473ee 100%);
	border-radius: 10px;
	padding: 20px 5px;
	width: 94%;
	text-align: center;
}
.add-receiever i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #9ffcae;
	border-radius: 50%;
	background: rgba(255, 255, 255, .3);
}
.add-receiever h4 {
	font-size: 15px;
	margin: 15px 0 0;
	color: #fff
}
.money-receiver {
	position: relative;
	border: 1px solid #eee;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 0px;
	padding: 15px 5px;
	width: 94%;
	text-align: center;
}
.money-receiver img {
	border-radius: 50%;
	padding: 5px;
	max-width: 50px;
	border: 1px solid #00b1f2;
}
.money-receiver h4 {
	font-size: 15px;
	margin: 15px 0 0;
}
.calc-crr {
	width: 40%;
	float: left;
}
.calc-crr-mid {
	width: 13%;
	margin: 6% 3% 6% 4%;
	float: left;
}
.transaction-details li {
	background: #fff;
	padding: 7px 10px;
	border-radius: 10px;
	border: 1px solid #ddd;
	margin: 6px 0;
	box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.02);
}
.notification-list {
	margin: 0 20px;
	margin-top: -20px;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.02);
}
.notification-list li {
	padding: 7px 10px 10px;
	border-bottom: 1px solid #eee;
	margin: 6px 0;
}
.notification-list li:last-child {
	padding: 10px;
	background: #eee;
	margin: -6px 0 0;
}
.notification-list li a {
	font-weight: 600
}
.notification-list .notice-icon {
	border-radius: 50%;
	height: 30px;
	width: 30px;
	font-size: 14px;
	line-height: 31px;
	display: inline-block;
	text-align: center;
}
.available {
	background-color: #4CAF50;
}
.away {
	background-color: rgba(255,193,7,1);
}
.busy {
	background-color: rgba(240,80,80,1);
}
.notification-list .notice-icon i {
	color: #ffffff;
}
.notification {
	position: absolute;
	right: 0;
	transform: translateY(-50%);
	top: 50%;
}
.notification i {
	font-size: 18px;
	color: #fff
}
.c-panel {
	background: #fff;
	position: relative;
	border: 1px solid #e6e6e6;
	padding: 30px 15px;
}
.has-shadow {
	-webkit-box-shadow: 0 2px 28px rgba(0,0,0,.1);
	box-shadow: 0 2px 28px rgba(0,0,0,.1);
}
ul.adv-stats li {
	display: inline-block;
	color: gray;
	padding: 4px 6px;
	margin: 3px;
}
ul.adv-stats {
	margin: 0px 0 0;
	padding: 0
}
ul.adv-stats li span {
	margin-left: 3px;
}
ul.adv-stats li:nth-child(1), ul.adv-stats li:nth-child(1) .fa {
	color: #FF9800;
}
ul.adv-stats li:nth-child(2), ul.adv-stats li:nth-child(2) .fa {
	color: #6e91cb;
}
ul.adv-stats li:nth-child(3), ul.adv-stats li:nth-child(3) .fa {
	color: #F782AA;
}
ul.adv-stats li:nth-child(4), ul.adv-stats li:nth-child(4) .fa {
	color: #3bcfb4;
}
ul.adv-stats li:nth-child(5), ul.adv-stats li:nth-child(5) .fa {
	color: #968f8f;
}
.chart-height-sm {
	position: relative;
	height: 156px;
}
.advertising-wrapper {
	position: relative;
}
.advertising-wrapper h3.info-label span {
	font-weight: 100;
	display: block;
	font-size: 16px;
	margin-bottom: 5px;
}
.advertising-wrapper h3.info-label {
	position: absolute;
	left: 50%;
	right: 50%;
	width: 100px;
	margin-left: -50px;
	top: 50%;
	text-align: center;
	color: #0094f0;
	height: 48px;
	margin-top: -24px;
}

@media (max-width:480px) {
.split-list {
	text-align: center;
	margin-top: 15px
}
.b-val {
	font-size: 22px
}
.balance-card {
	padding: 30px 15px;
}
}
ul.income-list li {
	float: left;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	width: 33.3333%;
}
.trader-info {
	text-align: center;
}
.trader-info h3 {
	font-size: 18px;
	margin-bottom: 10px;
	line-height: 1;
}
.trader-info p {
	margin: 0
}
.trader-info-list {
	margin-top: 15px;
	background: #fff;
	border: 1px solid #eee;
	padding: 30px 0px;
}
.trader-info-list li {
	width: 32%;
	display: inline-block;
}
.trader-info-list li h2 {
	margin-bottom: 0;
	color: #72a1ec;
	font-size: 16px;
	font-weight: 700;
}
/*end of part 31----------------------------------------------------*/


/*-------------------------------------------------------------------
[32. Home Tabs]
*------------------------------------------------------------------*/

footer {
	display: none;
	text-align: center;
	background-color: #fff;
}
footer ul {
	padding: 0;
	margin: 0;
	padding-bottom: 20px;
}
footer ul li {
	display: inline-block;
	margin: 2px 5px;
	color: #999;
}
footer ul li a i {
	background: #f7f7f7;
	width: 35px;
	height: 35px;
	line-height: 35px !important;
	border-radius: 50%;
}
/*end of part 32----------------------------------------------------*/

/*-------------------------------------------------------------------
[33. index color_light]
*------------------------------------------------------------------*/
body.color_light {
	background: #fff;
	color: #1E2329;
}
.color_light a {
	color: #1E2329;
}
.color_light input, .color_light button, .color_light select, .color_light textarea, .color_light label {
	color: #1E2329;
}
.color_light header {
	background: #fff;
}
.color_light nav.menu {
	background: #fff;
}
.color_light .wrapper-inline {
	background: #fff;
}
.color_light .navi-menu-button em {
	background-color: #1e2329;
}
.color_light .button {
	background-color: #f3f3f3;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	color: #212833;
}
.color_light .button.yellow {
	background-color: #fcd535;
}
.color_light nav.menu ul.main-menu>li>a {
	color: #212833;
}
.color_light nav.menu ul li strong {
	color: #212833;
}
.color_light nav.menu ul.main-menu>li>a {
	color: rgb(201, 148, 0);
}
.color_light nav.menu ul.main-menu > li.active > a {
	background-color: rgb(245, 245, 245);
}
.color_light nav.menu ul.main-menu>li li a {
	color: #212833;
}
.color_light {
	background: #fff;
}
.color_light .banner-sub-item {
	position: relative;
	background-color: #fff;
	border-radius: 15px;
	padding: 20px 0px;
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
	height: 93px;
	margin: 10px 0;
}
.color_light .banner-sub-item img {
	position: absolute;
	top: 10px;
	left: 10px;
	max-width: 125px;
	border-radius: 15px 0 0 15px
}
.color_light .banner-sub-item .content {
	padding-bottom: 10px
}
.color_light .banner-sub-item .content h3 {
	font-size: 45px;
	color: #ffc221;
	font-weight: 700;
	margin-bottom: 0
}
.color_light .banner-sub-item .content span {
	color: #252525;
	font-size: 18px;
	font-weight: 600
}
.color_light .banner-sub-slider {
	position: relative;
}
.color_light .owl-theme .owl-nav {
	display: none;
}
.color_light .section-title span {
	margin-bottom: 8px;
	font-weight: 600;
	display: block;
	color: #1E2329;
}
.color_light .section-title h2 {
	box-sizing: border-box;
	margin: 10px 0;
	min-width: 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	color: #1E2329;
}
.color_light .section-title p {
	padding-top: 10px;
	margin-bottom: 0;
	max-width: 530px;
	color: #444
}
.color_light .clients-area .section-title a {
	color: #4f4f4f;
}
.color_light .clients-area .section-title a:hover {
	color: rgb(240, 185, 11);
}
.color_light .clients-area .section-title a:hover svg {
	fill: rgb(240, 185, 11);
}
.color_light .clients-area .section-title a svg {
	width: 20px;
	fill: #4f4f4f;
}
.color_light .owl-carousel .owl-item {
	border-radius: 15px;
}
.color_light .owl-carousel .owl-item {
	border-radius: 15px;
	overflow: hidden;
}
.color_light .Market {
	margin: 20px 0;
}
.color_light .Market .Market_table {
	width: 100%;
	text-align: right;
}
.color_light .Market .Market_table tr:hover td {
	cursor: pointer;
	background-color: #F5F5F5;
	border-radius: 5px;
}
.color_light .Market .Market_table th:first-child, .Market .Market_table td:first-child {
	text-align: left;
	padding: 10px 0;
}
.color_light .Market .Market_table th {
	color: #707A8A;
	font-size: 12px;
	font-weight: inherit;
}
.color_light .Market .Market_table td {
	font-weight: 400;
	color: #1E2329;
}
.color_light .Market .sub_table.Market_table th:first-child {
	border-radius: 5px 0 0 0;
}
.color_light .Market .Market_table th:last-child {
	display: none;
}
.color_light .Market .Market_table td:last-child {
	display: none;
}
.color_light .Market .sub_table.Market_table th {
	color: #707a8a;
	font-size: 12px;
	background: #F5F5F4;
	padding: 12px 16px;
}
.color_light .Market .sub_table.Market_table tr:hover td {
	border-radius: 0;
}
.color_light .Market .sub_table.Market_table tr td {
	border-bottom: 1px solid #eaecef;
}
.color_light .Market .Market_table td .text-nowrap {
	white-space: nowrap!important;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding-left: 40px;
	position: relative;
	justify-content: center;
}
.color_light .Market .Market_table td .text-black-50 {
}
.color_light .Market_icon {
	box-sizing: border-box;
	margin: 0;
	min-width: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin-right: 8px;
	position: absolute;
	left: 0;
}
span.red {
	color: #cf304a;
	background: none;
}
svg.red {
	stroke: #cf304a;
	fill: none;
	background: none;
}
span.green {
	color: #03a66d;
	background: none;
}
svg.green {
	stroke: #03a66d;
	fill: none;
	background: none;
}
.color_light .about-img-2 {
	text-align: center;
	margin: 10px auto;
}
.color_light .about-img-2 img {
	width: 80%;
	margin: 0 auto;
}
.color_light .security-card img {
	width: 60px;
	margin: 10px 10px 0 0;
	float: left;
}
.color_light .security-card h3, .color_light .security-card p {
	width: calc(100% - 70px);
	float: left;
}
.color_light .security-card a {
	font-size: 16px;
}
.color_light .about-content-2 .about-card .content i {
	font-size: 55px;
	color: #f0b90b;
}
.color_light .talk-area {
	background-image: url(/assets/images/talk-bg.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
	padding: 10px 0 30px;
}
.color_light .talk-area::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #070b3b;
	opacity: .8
}
.color_light .talk-area .default-btn {
	margin: 0 10px;
}
.color_light .talk-area button {
	width: 45%;
	float: left;
}
.color_light .talk-content .section-title {
	margin-bottom: 30px
}
.color_light .talk-content .section-title h2 {
	color: #fff;
	max-width: 530px;
	margin-left: auto;
	margin-right: auto
}
.color_light .footer-widget .footer-logo {
	position: relative;
	width: 150px;
	background: url(/assets/images/logos/logo-1.png?ver=20251015) no-repeat center;
	background-size: contain;
	height: 70px;
	margin: 20px auto 0;
}
.color_light .footer-widget h3 {
	font-size: 1em;
}
.login {
	display: flex;
	align-content: center;
	align-items: center;
	height: calc(100vh - 85px);
	overflow: hidden;
}
.form-control {
	display: block;
	width: 100%;
	height: auto;
	padding: 12px 10px;
	background-color: #1f282f !important;
	border: 1px solid #1f282f !important;
	color: #e7eff9 !important;
}
.form-control:focus {
	color: #e7eff9 !important;
	background-color: #1f282f !important;
	border: 1px solid rgb(240, 185, 11) !important;
	outline: 0 !important;
	
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill, .signup input:-webkit-autofill, .signup textarea:-webkit-autofill, .signup select:-webkit-autofill {
 -webkit-text-fill-color: #e7eff9 !important;
-webkit-box-shadow: 0 0 0px 1000px #1f282f inset !important;
 background-color:transparent !important;
 background-image: none !important;
 transition: background-color 50000s ease-in-out 0s !important; /*背景色透明 生效时长 过渡效果 启用时延迟的时间*/
}
.login input, .signup input, input {

	font-weight: 400 !important;
	line-height: 1.5 !important;
	background-clip: padding-box !important;
	color: #e7eff9 ;
/*	background-color: #1f282f !important;
	border: 1px solid #1f282f!important;*/
	-webkit-appearance: none!important;
	-moz-appearance: none!important;
	appearance: none!important;
	border-radius: 0.25rem !important;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}
input.js_mustCheck{
	-webkit-appearance: auto !important;
	-moz-appearance: auto !important;
	appearance: auto !important;
}
.login input:focus, .signup input:focus {
	border: 1px solid rgb(240, 185, 11) !important;
	outline: 0 !important;
	color: #fff!important;
}
.login a.txt-red, .signup a.txt-red {
	color: #F34954;
}
/*end of part 33----------------------------------------------------*/

.noty_bar {
	background: #19202a !important;
}
.noty_body h5 {
    color: #fff!important;
    font-size: 14px;
    font-weight: 400;
    margin: 0 !important;
}
.noty_buttons .btn {
	background: #fcd535!important;
	color: #212529!important;
}
.noty_buttons .btn.btn-link {
	background: none!important;
	color: #e7eff9 !important;
}
.fund-conversion-wrap {
	padding: 0px 15px 20px 15px;
	background-image: linear-gradient(0deg, #19202a 0, #1f282f 100%);
	/* width: 49%; */
    /* padding: 20px 15px; */
	border-radius: 3px;
	-webkit-box-shadow: 0px 0px 9px 1px rgb(0 0 0 / 10%);
	box-shadow: 0px 0px 9px 1px rgb(0 0 0 / 10%);
}
.svg svg {
	width: 40px;
	padding: 10px;
	margin: 10px 10px 0 0;
	color: #fcd535;
	background: #171e28;
	border-radius: 100%;
}
.information-icon {
	width: 40px;
	margin: 0 auto;
}
.changeInformation {
	fill: #eabc1b;
	padding: 5px;
	width: 37px;
	height: 34px;
	position: absolute;
	right: 40px;
	top: 13px;
	z-index: 998;
}
.changePassword {
	fill: #eabc1b;
	padding: 5px;
	width: 37px;
	height: 32px;
	position: absolute;
	right: 76px;
	top: 14px;
	z-index: 998;
}
.changeCard {
	color: #fff;
	fill: #e5be09;
	margin: 0 10px;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 10px;
	top: 29px;/*z-index: 111111;*/
}
.copyfollow_list {
	display: -ms-grid;
	display: grid;
	margin-top: 20px;
	grid-auto-columns: 1fr;
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	-ms-grid-rows: auto auto auto;
	grid-template-rows: auto auto auto;
}
.form-block-12 {
	width: 100%;
}
.text-field-8 {
	width: 200px;
	height: 35px;
	margin-bottom: 0px;
	margin-left: 5px;
	border: 1px none #000;
	background-color: rgba(130, 186, 246, 0.5);
	color: #fff;
}
.div-block-108 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.search_warp {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-left: auto;
}
.button-21 {
	position: absolute;
	width: 35px;
	height: 35px;
	background-color: transparent;
}
.searchbtn_warp {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 38px;
	height: 38px;
	margin-left: auto;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	right: 10px;
	opacity: 0.5;
}
.search_btnicon {
	width: 25px;
	height: 25px;
}
.div-block-109 {
	width: 400px;
	height: 230px;
	padding: 15px 20px 10px;
	border-radius: 4px;
	background-color: #1f282f;
}
.div-block-110 {
	display: -ms-grid;
	display: grid;
	margin-top: 10px;
	grid-auto-columns: 1fr;
	grid-column-gap: 15px;
	grid-row-gap: 10px;
	-ms-grid-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	-ms-grid-rows: 60px minmax(60px, 1fr);
	grid-template-rows: 60px minmax(60px, 1fr);
}
.image-35 {
	width: 55px;
	height: 55px;
}
.div-block-111 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 55px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
}
.followbth {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100px;
	height: 45px;
	margin-left: auto;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 4px;
}
.followbth._1 {
	margin-left: auto;
	background-color: #fcd535;
	color: #212833;
}
.followbth._2 {
	background-color: #f44b44;
}
.followinfo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 90px;
	height: 20px;
	padding: 1px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 10px;
	background-color: #171e28;
	color: hsla(0, 0%, 100%, 0.5);
	font-size: 12px;
}
.image-36 {
	width: 14px;
	height: 10px;
	margin-right: 6px;
	opacity: 0.5;
}
.div-block-112 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 95%;
	margin-left: 20px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.div-block-113 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: right;
}
.followinfo_txt {
	margin-bottom: 5px;
	font-size: 16px;
}
.followinfo_txt.up {
	color: #fcd535;
}
.followinfo_txt.down {
	color: #f44b44;
}
.followinfo_subtxt {
	color: hsla(0, 0%, 100%, 0.5);
	font-size: 12px;
	white-space: nowrap;
}
.copy_btnlist {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.copy_btnlist.footer {
	display: none;
}
.button-12-copy {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 145px;
	height: 50px;
	padding: 0px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 5px;
	background-color: #fcd535;
	-webkit-transition: background-color 400ms ease;
	transition: background-color 400ms ease;
	font-size: 17px;
	color: #212833;
}
.button-12-copy:hover {
	color: #212833;
}
.trader_pop {
	position: fixed;
	left: 0%;
	top: 0%;
	right: 0%;
	bottom: 0%;
	display: none;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	grid-auto-columns: 1fr;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-ms-grid-rows: auto auto;
	grid-template-rows: auto auto;
	background-color: rgba(0, 0, 0, 0.3);
}
.div-block-114 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 500px;
	height: 500px;
	padding: 30px 50px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 4px;
	background-color: #172d3e;
}
.form-block-18 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.button-22 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 25%;
	height: 100%;
	margin-left: 15px;
	padding: 0px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-style: solid;
	border-width: 1px;
	border-color: #fcd535;
	border-radius: 5px;
	background-color: transparent;
	color: #fcd535;
}
.button-22:hover {
	background-color: #fff;
}
.title7 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 27px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
}
.button-23 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 47%;
	height: 100%;
	padding: 0px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-style: solid;
	border-width: 1px;
	border-color: #fcd535;
	border-radius: 5px;
	background-color: #fcd535;
	font-size: 17px;
}
.button-23:hover {
	background-color: #fff;
	color: #fcd535;
}
.button-20-copy {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 15%;
	height: 100%;
	margin-left: 10px;
	padding: 0px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-style: solid;
	border-width: 1px;
	border-color: #fcd535;
	border-radius: 5px;
	background-color: #fcd535;
	color: #fff;
}
.button-20-copy:hover {
	background-color: #fff;
	color: #00b4c9;
}
.trader_pop1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 500px;
	height: 500px;
	padding: 30px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	background-color: #111722;
}
.button-15-copy {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 47%;
	height: 100%;
	padding: 0px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-style: solid;
	border-width: 1px;
	border-color: #fcd535;
	border-radius: 5px;
	background-color: #fff;
	color: #fcd535;
	font-size: 17px;
}
.button-15-copy:hover {
	background-color: #fcd535;
	color: #fff;
}
.title3 {
	margin-bottom: 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-align: left;
}
.text-field-15 {
	width: 70%;
	height: 40px;
	margin-bottom: 0px;
	padding: 0px 0px 0px 20px;
	border: 1px solid transparent;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.15);
	color: #fff;
}
.pop_btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 85%;
	height: 40px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.text-field-15-copy {
	width: 70%;
	height: 40px;
	margin-bottom: 0px;
	padding: 0px 0px 0px 20px;
	border: 1px solid transparent;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.15);
}
.accountbox2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 40px;
	margin-top: 15px;
	margin-bottom: 15px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 767px) {
.body_main {
	font-size: 3vw;
	line-height: 4vw;
}
.body_login {
	font-size: 3vw;
	line-height: 4vw;
}
.frame {
	width: 100%;
	min-width: auto;
	padding-top: 12vw;
	padding-bottom: 12vw;
}
.registbox {
	width: 100%;
	height: 100%;
	margin-bottom: 4vw;
	padding: 6vw 10vw;
}
.loginbox {
	width: 100%;
	height: 100vw;
	padding: 6vw 10vw;
}
.logintitle {
	margin-bottom: 5vw;
	font-size: 5vw;
	line-height: 8vw;
}
.regist_form1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.regist_formblock {
	width: 100%;
}
.field-label {
	margin-top: 2vw;
	margin-bottom: 2vw;
}
.login_textfeild {
	height: 8vw;
	margin-bottom: 4vw;
	padding: 1vw 2vw;
}
.checkbox-field {
	margin-top: 4vw;
	margin-bottom: 1vw;
	padding-left: 4vw;
}
.select {
	width: 100%;
	height: 8vw;
	margin-bottom: 0px;
	padding: 1vw 3vw;
}
.leftdown_warp {
	margin-top: 6vw;
}
.openaccount_btn {
	width: 30vw;
	height: 8vw;
	font-size: 3vw;
}
.login_topiogo {
	width: 100%;
	height: 20vw;
	margin-bottom: 2vw;
}
.login_formblcok {
	margin-top: 6vw;
	margin-bottom: 6vw;
}
.forgottxt {
	width: 26vw;
	font-size: 3vw;
	line-height: 6vw;
}
.text-block-2 {
	margin-bottom: 1vw;
	font-size: 4vw;
}
.loginbtn {
	width: 22vw;
	height: 8vw;
	font-size: 3vw;
}
.login_add {
	margin-top: 2vw;
}
.regist_textfeild {
	height: 8vw;
	margin-bottom: 2vw;
	padding: 1vw 2vw;
}
.login_addtxt {
	margin-top: 2vw;
	margin-bottom: 2vw;
	font-size: 3vw;
}
.custermer_body {
	font-size: 3vw;
	line-height: 4vw;
}
.language_form {
	width: auto;
	margin-bottom: 0px;
}
.all {
	min-width: auto;
}
.custemer_top {
	width: 100%;
	height: 14vw;
	max-width: none;
	min-width: auto;
	padding-right: 3vw;
	padding-left: 3vw;
	font-size: 3.5vw;
	line-height: 4vw;
}
.custermer_block1 {
	height: 60vw;
}
.banner_box {
	max-width: none;
	min-width: auto;
	padding-right: 4vw;
	padding-left: 4vw;
}
.serch_bar {
	width: auto;
	height: 11vw;
	min-width: 80vw;
}
.custermer_title1 {
	font-size: 6vw;
	line-height: 6vw;
	text-align: center;
}
.button1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 8vw;
	margin-top: 3vw;
	font-size: 3.5vw;
	line-height: 4vw;
}
.button1.request {
	display: none;
}
.custermer_block2 {
	width: 100%;
	padding: 10vw 4vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.sidemenu_box {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: auto;
	max-height: 50vw;
	min-width: auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.custermer_sidemenubtn {
	height: 10vw;
	padding: 2vw;
}
.custermer_sidemenubtn:hover {
	border-bottom: 1px solid #fcd535;
	border-right-style: none;
}
.custermer_sidemenubtn.click {
	border-bottom: 1px solid #fcd535;
	border-right-style: none;
}
.custermer_comtainer {
	min-width: 100%;
	padding-right: 0px;
	padding-left: 0px;
}
.custermer_title2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.custermer_title2.mobile {
	display: none;
}
.custermer_sidemenutitle {
	position: relative;
	height: 10vw;
}
.titleblock {
	height: auto;
	min-height: 27px;
	padding: 4vw 3vw;
}
.block_between {
	font-size: 3.5vw;
	line-height: 4vw;
}
.custermer_updatetxt {
	font-size: 3.5vw;
}
.snscircle {
	width: 6vw;
	height: 6vw;
	margin-right: 1vw;
	margin-left: 1vw;
}
.bord {
	margin-top: 4vw;
	padding-right: 0vw;
	padding-left: 0px;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.maintext_title {
	font-size: 5vw;
	line-height: 8vw;
}
.maintext_text {
	font-size: 3.5vw;
	line-height: 4vw;
}
.maintext_text.legal {
	padding: 2vw;
	font-size: 2.5vw;
}
.menucontent_txt {
	text-align: center;
}
.menucontent_box {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 3vw;
	line-height: 4vw;
}
.bottomfixed_btn {
	font-size: 4vw;
	line-height: 4vw;
}
.bottom_fixedbtn_block {
	bottom: 17vw;
}
.additional_bord {
	min-height: 40vw;
	padding: 4vw 6vw;
}
.bottom_contentbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: auto;
	min-height: 40px;
	margin-bottom: 15vw;
}
.text-field-5 {
	padding: 1vw 2vw;
	font-size: 3.5vw;
	line-height: 4vw;
}
.form-block {
	margin-left: 3vw;
}
.searchicon {
	width: 6vw;
	height: 6vw;
}
.custermer_bottombtn {
	position: fixed;
	left: auto;
	top: auto;
	right: auto;
	bottom: 0%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 15vw;
}
.bottom_contentblock {
	width: 100%;
	min-width: auto;
	padding: 4vw 4vw 10vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 6vw;
	text-align: center;
}
.bottombtn {
	width: 24vw;
	background-color: transparent;
	font-size: 3vw;
	line-height: 4vw;
}
.sidemenu_listblock {
	position: absolute;
	left: 0%;
	top: 10vw;
	right: 0%;
	bottom: 0%;
	z-index: 1;
	display: none;
	width: 100%;
	height: 50vw;
	max-width: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: #f2f2f5;
}
.button-3 {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	padding: 0px;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	background-color: transparent;
	color: #000;
	font-size: 5vw;
	line-height: 5vw;
}
.image-3 {
	position: absolute;
	right: 0px;
	width: 8vw;
	height: 8vw;
}
.additional_title {
	font-size: 3.5vw;
	line-height: 7vw;
}
.additional_text {
	font-size: 4.5vw;
	line-height: 8vw;
}
.bootom_content_box {
	max-width: none;
	min-width: auto;
	padding-top: 5vw;
	padding-bottom: 5vw;
	padding-left: 4vw;
	line-height: 6vw;
}
.bottomcontent_title {
	margin-bottom: 5vw;
	font-size: 5vw;
	line-height: 8vw;
}
.footer_text {
	margin-top: 1vw;
	font-size: 2.7vw;
	line-height: 6vw;
}
.footer_btnlist {
	width: 100%;
	min-width: auto;
	background-color: #fff;
}
.textarea {
	min-height: 50vw;
}
.custermer_listblock {
	height: 12vw;
	padding-left: 3vw;
}
.btnblock_right {
	height: 10vw;
}
.button-4 {
	width: 24vw;
	height: 7vw;
	margin-top: 3vw;
}
.custermer_block3 {
	width: 100%;
	min-height: 120vw;
	min-width: auto;
	padding: 10vw 5vw;
}
.custermermain_listblock1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-bottom: 10vw;
	padding-right: 5vw;
	padding-left: 5vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.custermermain_btn {
	width: 100%;
	height: 56vw;
	font-size: 3.5vw;
}
.custermermain_btn2 {
	width: 100%;
	height: 13vw;
	padding: 3vw;
	font-size: 3.5vw;
}
.custermermain_listblock2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-bottom: 10vw;
	padding-right: 5vw;
	padding-left: 5vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.custemerimg1 {
	width: auto;
	height: 40vw;
	min-width: 40vw;
	margin-bottom: 3vw;
}
.top {
	height: 12vw;
	min-width: 100%;
	padding-right: 1vw;
	padding-left: 1vw;
}
.top._2 {
	height: 12vw;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.logo_block {
	width: 25vw;
	margin-left: 2vw;
}
.logo {
	width: 25vw;
	height: 7vw;
}
.top_right {
	min-width: auto;
}
.top_left {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 65vw;
	min-width: auto;
	font-size: 2.5vw;
	line-height: 4vw;
}
.blue_topbtn {
	height: 100%;
	min-width: 16vw;
	padding-right: 2vw;
	padding-left: 2vw;
	color: hsla(0, 0%, 100%, 0.9);
	font-size: 2.5vw;
	text-align: center;
}
.select-field-2 {
	width: 22vw;
	height: 7vw;
	padding: 1vw 4vw 1vw 1vw;
	font-size: 2.5vw;
}
.form-block-2 {
	height: 7vw;
	margin-left: 2vw;
}
.select-field-3 {
	width: 19vw;
	padding: 1vw 4vw 1vw 2vw;
}
.select-field-3.mobile {
	display: none;
}
.form-block-3 {
	display: none;
	margin-left: 1vw;
}
.loginregist {
	width: 16vw;
	height: 6vw;
}
.loginregist.regist {
	width: 19vw;
	margin-right: 1vw;
	margin-left: 1vw;
}
.loginregist.login {
	width: 15vw;
	margin-right: 2vw;
	margin-left: 2vw;
}
.loginregist.logout {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-right: 2vw;
	margin-left: 2vw;
}
.frame2 {
	width: 100%;
	min-height: 100vw;
	min-width: auto;
	margin: 4vw 0px;
}
.blue_bord {
	width: 100%;
	min-height: auto;
	min-width: auto;
	padding-bottom: 6vw;
}
.text-field4 {
	height: 10vw;
	font-size: 3vw;
	line-height: 4vw;
}

.anotice2 {
	font-size: 3vw;
	line-height: 8vw;
}
.text-block-11 {
	width: 100%;
	height: 10vw;
	font-size: 3vw;
	line-height: 4vw;
}
.tablewrap {
	width: 100%;
}
.btnwrap {
	margin-top: 0vw;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.dwrap {
	width: 100%;
	margin-top: 0vw;
	padding: 8vw 0px 8vw 0vw;
}
.dtitle {
	width: auto;
	margin-top: 0px;
	margin-bottom: 4vw;
	font-size: 3.5vw;
	line-height: 4vw;
}
.btntxt {
	padding-right: 5vw;
	padding-left: 5vw;
	font-size: 3.5vw;
	line-height: 4vw;
}
.pbtnwrap {
	margin-top: 2vw;
}
.tablewrap4 {
	margin-bottom: 7vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.anotice {
	font-size: 3.5vw;
	line-height: 4vw;
}
.pbtn {
	width: 48%;
	height: 10vw;
	margin-bottom: 3vw;
	font-size: 3vw;
	line-height: 4vw;
}
.btn2 {
	width: 100%;
	height: 8.5vw;
	margin-top: 8vw;
	margin-left: 3vw;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.deposit_warn {
	width: 100%;
	margin-top: 5vw;
}
.form-3 {
	padding-right: 5vw;
	padding-left: 5vw;
}
.btnlist {
	display: none;
}
.btnlist.footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	min-height: auto;
	padding: 0vw;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	background-color: #102331;
}
.mob_sidebtn {
	display: none;
	width: 10vw;
	height: 10vw;
}
.footer {
	width: 100%;
	height: 125vw;
	min-height: auto;
	min-width: auto;
	padding: 6vw 5vw;
}
.all_blue {
	min-width: auto;
	margin-bottom: 15vw;
	padding: 1vw 0px;
}
.logo_footer {
	width: auto;
	height: 7vw;
}
.footer_block2 {
	display: -ms-grid;
	display: grid;
	grid-auto-columns: 1fr;
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-ms-grid-rows: auto auto;
	grid-template-rows: auto auto;
}
.footer_menu {
	min-width: auto;
	margin-right: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
.footer_block1 {
	margin-bottom: 4vw;
	padding-left: 0px;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.mymoney {
	margin-bottom: 2vw;
	font-size: 4.5vw;
	line-height: 5vw;
}
.deposit_wallettitle {
	margin-bottom: 1vw;
	font-size: 4vw;
}
.deposit_wallet {
	width: 100%;
	margin-bottom: 5vw;
	padding: 5vw 4vw 3vw;
}
.text-block-13 {
	width: 100%;
	height: 10vw;
	font-size: 3vw;
	line-height: 4vw;
}
.useraccount {
	width: 100%;
	height: 10vw;
	font-size: 3vw;
	line-height: 4vw;
}
.warn_warp {
	width: 100%;
	margin-top: 5vw;
}
.colortext_leftup {
	left: 0%;
	top: -22%;
	right: auto;
	bottom: auto;
	font-size: 2.3vw;
	line-height: 3vw;
}
.footer_title {
	margin-top: 2vw;
	margin-bottom: 2vw;
	font-size: 3vw;
	line-height: 4vw;
}
.listpage_block {
	padding-right: 4vw;
	padding-left: 4vw;
}
.listblock {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.dateform {
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: start;
	-webkit-justify-content: start;
	-ms-flex-pack: start;
	justify-content: start;
	justify-items: center;
	grid-auto-columns: 1fr;
	grid-column-gap: 3vw;
	grid-row-gap: 3vw;
	-ms-grid-columns: minmax(23vw, 23vw) auto;
	grid-template-columns: minmax(23vw, 23vw) auto;
	-ms-grid-rows: auto auto auto;
	grid-template-rows: auto auto auto;
	font-size: 3vw;
}
.date_select {
	width: 75%;
	height: 7vw;
	padding: 1vw 3vw 1vw 2vw;
}
.date_input {
	width: 75%;
	height: 7vw;
	padding: 1vw 2vw;
	font-size: 3vw;
}
.listbord {
	overflow: auto;
	margin-top: 4vw;
	padding-bottom: 4vw;
}
.listtop {
	width: 250%;
	height: 10vw;
}
.list_bar {
	width: 250%;
	height: 11vw;
}
.list {
	padding: 1vw 2vw;
	font-size: 2.5vw;
}
.copyright {
	margin-top: 6vw;
}
.paging_btnbox {
	width: 100%;
	min-width: auto;
}
.paging_btn {
	width: 6vw;
	height: 6vw;
}
.paging_btn.next {
	width: 9vw;
}
.bordtop {
	height: 10vw;
}
.button-6 {
	width: 34vw;
	padding-right: 2vw;
	padding-left: 2vw;
	font-size: 3vw;
}
.bord_title {
	height: 13vw;
	margin-top: 4vw;
	margin-bottom: 5vw;
	padding-bottom: 0px;
	padding-left: 5vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 5vw;
	line-height: 6vw;
}
.subtitle_blue {
	margin-left: 0px;
	font-size: 2.5vw;
	line-height: 4vw;
}
.button2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 7vw;
	font-size: 3vw;
	line-height: 4vw;
}
.logo-_login {
	width: 60vw;
	height: 13vw;
}
.button-7 {
	height: 8vw;
}
.pop {
	display: none;
}
.authpop_back {
	display: none;
}
.div-block-77 {
	width: 90vw;
	height: 60vw;
	padding: 4vw;
}
.auth_input {
	height: 8vw;
	margin-right: 0px;
	margin-left: 0px;
	padding: 1vw 2vw;
}
.reauest {
	width: 19vw;
	height: 7vw;
	font-size: 3vw;
}
.warn2 {
	padding-right: 2vw;
	font-size: 2.5vw;
}
.pop_buttonblock {
	margin-top: 5vw;
	padding-right: 6vw;
	padding-left: 6vw;
}
.popbtn {
	width: 28vw;
	height: 7vw;
}
.form-block-4 {
	margin-bottom: 3vw;
}
.regist_warp {
	width: 100%;
}
.my_infoblock {
	width: 100%;
	padding-top: 2vw;
	padding-bottom: 2vw;
	padding-left: 0px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.bord_title2 {
	margin-top: 3vw;
	margin-bottom: 3vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 5vw;
	line-height: 6vw;
	text-align: center;
}
.profileimg_block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 20vw;
	height: 20vw;
	margin-right: 0px;
	margin-bottom: 1vw;
}
.profile_block {
	margin-top: 3vw;
	margin-bottom: 4vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}
.profile_warp {
	min-width: 100%;
	margin: 2vw 0px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.title_colorblue {
	margin-top: 1vw;
	font-size: 3.5vw;
	line-height: 7vw;
}
.forgetpw_back {
	display: none;
}
.forgetpw_popblock {
	width: 100%;
	height: 52vw;
}
.button-8 {
	width: 30vw;
	height: 7vw;
	margin-top: 2vw;
	margin-left: 0px;
}
.button-9 {
	width: 40vw;
	height: 7vw;
	margin-top: 4vw;
	margin-right: auto;
	margin-left: auto;
}
.accountset_back {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.div-block-78 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
	padding: 4vw 5vw 6vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.form-block-5 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-top: 3vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.form-block-5._2.all {
	display: none;
}
.form-block-5._1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.form-block-5._1.all {
	display: none;
}
.div-block-79 {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.pop_buttonblock2 {
	margin-top: 5vw;
	padding-right: 6vw;
	padding-left: 6vw;
}
.mob_bottombtn {
	position: fixed;
	left: 0%;
	top: auto;
	right: 0%;
	bottom: 0%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 15vw;
}
.minapage_frame {
	width: 100%;
	min-height: 100vw;
	min-width: auto;
	margin: 4vw 0px;
}
.mainpage_block1 {
	min-height: 120vw;
	padding: 16vw 4vw 10vw;
}
.mainpage_listbord {
	position: relative;
	overflow: auto;
	width: 100%;
}
.mainpage_listbar {
	width: 250%;
	height: 9vw;
	padding-left: 2vw;
}
.mainpage_listbar.top {
	width: 250%;
	padding-right: 2vw;
	padding-left: 5.5vw;
}
.iconbtn {
	width: 9vw;
	height: 9vw;
}
.mainpage_listcontent {
	width: 30vw;
}
.mainpage_listcontent.top {
	width: 18vw;
	padding-top: 1vw;
	padding-bottom: 1vw;
	font-size: 2vw;
}
.image-7 {
	width: 2vw;
	height: 2vw;
	margin-left: 2vw;
}
.mainpage_bord {
	width: 100%;
	height: 55vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.mainpage_volume {
	font-size: 3vw;
	line-height: 6vw;
}
.big {
	font-size: 6vw;
	line-height: 12vw;
}
.big.up {
	font-size: 6vw;
	line-height: 12vw;
}
.mainpage_block2 {
	width: 100%;
	min-height: auto;
	padding: 5vw;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.mainpage_mainittle {
	margin-bottom: 7vw;
	font-size: 9vw;
	line-height: 14vw;
}
.button-11 {
	width: 28vw;
	height: 10vw;
	margin-right: 4vw;
	margin-left: 4vw;
	font-size: 2.8vw;
	line-height: 10vw;
	text-align: center;
	border-style: solid;
	border-width: 1px;
	border-color: #fcd535;
	border-radius: 4px;
	color: #fcd535;
}
.button-26 {
	width: 28vw;
	height: 7vw;
	margin-right: 4vw;
	margin-left: 4vw;
	font-size: 4vw;
}
.button-12 {
	width: 22vw;
	height: 10vw;
	font-size: 2.8vw;
}
.div-block-82 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-grid-columns: minmax(380px, 1fr) minmax(380px, 1fr);
	grid-template-columns: minmax(380px, 1fr) minmax(380px, 1fr);
	-ms-grid-rows: 200px 200px auto;
	grid-template-rows: 200px 200px auto;
}
.mainpage_section {
	margin-top: 4vw;
	margin-bottom: 4vw;
}
.image-8 {
	width: 20vw;
	height: 20vw;
	margin-right: 4vw;
}
.mainpage_contexttxt {
	font-size: 3vw;
	line-height: 5vw;
}
.title {
	font-size: 4vw;
	line-height: 7vw;
}
.image-9 {
	width: 22vw;
	height: 21vw;
	margin-right: 4vw;
}
.image-10 {
	width: 25vw;
	height: 11vw;
	margin-right: 4vw;
}
.image-11 {
	width: 23vw;
	height: 19vw;
	margin-right: 4vw;
}
.image-12 {
	width: 22vw;
	height: 20vw;
	margin-right: 2vw;
}
.image-13 {
	width: 20vw;
	height: 20vw;
	margin-right: 5vw;
}
.mainpage_blocktitle {
	width: 100%;
	margin-bottom: 6vw;
	font-size: 9vw;
	line-height: 11vw;
}
.div-block-83 {
	width: 100%;
	min-height: auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.div-block-84 {
	width: 100%;
	margin-bottom: 4vw;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 4vw;
	line-height: 6vw;
	text-align: center;
}
.div-block-85 {
	width: auto;
	padding-left: 0px;
}
.body-2 {
	padding-right: 0px;
	padding-left: 0px;
	clear: none;
}
.chart_wrap {
	height: auto;
	max-height: none;
}
.dbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-width: auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.orderhistorybox {
	width: 100%;
	margin-bottom: 5px;
}
.titlebox {
	height: 9vw;
}
.titlebox2 {
	height: 9vw;
}
.moreicon {
	height: 2vw;
}
.t_txt {
	font-size: 3.2vw;
	line-height: 4vw;
}
.container {
	padding: 3vw;
}
.container._2 {
	height: 62vw;
}
.bsbox-n {
	margin-bottom: 0px;
	background-color: #192737;
}
.buy-btn-n {
	width: 48.5%;
	height: 15vw;
}
.text-block-8-n {
	font-size: 4vw;
	line-height: 4vw;
}
.sell-btn-n {
	width: 48.5%;
	height: 15vw;
}
.section {
	height: auto;
	min-width: auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.t_text {
	height: 10vw;
	font-size: 3.3vw;
}
.t_text._2 {
	width: 78%;
	padding-right: 3vw;
	padding-left: 3vw;
}
.trow {
	margin-bottom: 2vw;
}
.chartbox {
	width: 100%;
	min-width: auto;
	margin-bottom: 5px;
	margin-left: 0px;
	-webkit-box-ordinal-group: 0;
	-webkit-order: -1;
	-ms-flex-order: -1;
	order: -1;
}
.chartbox._2 {
	min-width: auto;
}
.chart {
	height: 100vw;
}
.chart.banneroff {
	height: 100vw;
}
.banner {
	height: 18vw;
	padding-right: 10vw;
	padding-left: 4vw;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.showmore {
	width: 22vw;
	height: 6vw;
	padding-bottom: 0.1vw;
	font-size: 2.8vw;
	line-height: 4vw;
}
.btext {
	width: 60vw;
	margin-right: 0px;
	margin-left: 0px;
	font-size: 2.5vw;
	line-height: 3vw;
}
.closeicon {
	left: auto;
	top: 3vw;
	right: 3vw;
	bottom: auto;
	height: 2.5vw;
}
.image-14 {
	height: 5vw;
	margin-bottom: 1vw;
}
.drow {
	height: 9vw;
	margin-bottom: 2vw;
}
.deallistsellbuytext {
	font-size: 3.3vw;
	line-height: 4vw;
}
.maxtxt {
	font-size: 3.5vw;
	line-height: 4vw;
}
.minus {
	font-size: 3.3vw;
	line-height: 4vw;
}
.rrow {
	margin-bottom: 2vw;
}
.resetbtn {
	height: 9vw;
	font-size: 3.5vw;
	line-height: 4vw;
}
.text-block-14 {
	height: 9vw;
}
.t_toptxt {
	width: 25%;
	padding-right: 1vw;
	padding-left: 1vw;
	font-size: 3vw;
	/*line-height: 4vw;*/

	text-align: center;
}
.t_toptxt._3 {
	width: 13%;
}
.t_top {
	height: 11vw;
}
.t_table {
	height: 10vw;
}
.t_table._2 {
	height: 10vw;
}
.section-2 {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.positionbox {
	width: 100%;
}
.infobox._2 {
	margin-top: 1vw;
	padding-top: 2vw;
	padding-bottom: 2vw;
}
.wrap {
	min-width: auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.popupframe {
	display: none;
	padding-right: 2vw;
	padding-left: 2vw;
	font-size: 3vw;
	line-height: 4vw;
}
.itempopup {
	width: 100%;
	padding: 6vw 7vw 8vw;
}
.btcbox {
	width: 27vw;
	height: 20vw;
	margin-right: 1vw;
	margin-left: 1vw;
	padding-bottom: 2.5vw;
}
.btcbox._2 {
	width: 30%;
	height: 11vw;
	padding-bottom: 0.3vw;
	background-position: 50% 18%;
	background-size: 4.5vw;
}
.item_wrap {
	width: 93%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 3vw;
	line-height: 4vw;
}
.ittile {
	font-size: 3.5vw;
}
.item._2 {
	margin-top: 1vw;
}
.item._2 {
	font-size: 2.6vw;
}
.close {
	height: 3vw;
}
.ethbox {
	width: 27vw;
	height: 20vw;
	margin-right: 1vw;
	margin-left: 1vw;
	padding-bottom: 2.5vw;
}
.ethbox._2 {
	width: 30%;
	height: 11vw;
	padding-bottom: 0.3vw;
	background-position: 50% 15%;
	background-size: 4vw;
}
.xprbox {
	width: 27vw;
	height: 20vw;
	margin-right: 1vw;
	margin-left: 1vw;
	padding-bottom: 2.5vw;
}
.xprbox._2 {
	width: 30%;
	height: 11vw;
	padding-bottom: 0.3vw;
	background-position: 50% 18%;
	background-size: 5vw;
}
.momenuclick2-n {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 20%;
	height: 100%;
	padding-right: 3vw;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}
.momenuclick2-n.login {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 20%;
	grid-auto-columns: 1fr;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	-ms-grid-rows: auto auto;
	grid-template-rows: auto auto;
}
.text-block-30 {
	display: none;
	padding: 1.8vw 2vw;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 3px;
	background-color: #f59108;
	color: #fff;
	font-size: 3.5vw;
	line-height: 3.5vw;
}
.menuprofile {
	width: 5vw;
	height: 5vw;
}
.momenuclick-n {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	padding-left: 3vw;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.micon {
	width: 5vw;
	height: 5vw;
}
.mobilemenuframe {
	position: fixed;
	left: 0%;
	top: 0%;
	right: auto;
	bottom: auto;
	z-index: 3;
	display: none;
	width: 100%;
	height: 100%;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	background-color: rgba(0, 0, 0, 0.18);
}
.mobilemenubox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 80%;
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: #132533;
	color: hsla(0, 0%, 100%, 0.89);
}
.mmenu {
	display: none;
	width: 20%;
}
.mtxt {
	width: 100%;
	color: hsla(0, 0%, 100%, 0.89);
	font-size: 3.3vw;
	line-height: 4vw;
	text-decoration: none;
}
.mbtn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 15vw;
	padding-left: 4vw;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}
.section3 {
	width: 100%;
	height: auto;
	min-width: auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.main {
	min-height: auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.userinfobox {
	margin-top: 0px;
}
.t_text2 {
	font-size: 3.3vw;
	line-height: 4vw;
}
.t_text2._2 {
	width: 78%;
	padding-right: 3vw;
	padding-left: 3vw;
}
.t_text3 {
	height: 8vw;
	padding-left: 2vw;
	font-size: 3.3vw;
	line-height: 4vw;
}
.t_text3._2 {
	width: 78%;
	padding-right: 3vw;
	padding-left: 3vw;
}
.tradersearch {
	height: 6vw;
}
.button-13 {
	height: 6vw;
}
.div-block-90 {
	min-height: 15vw;
	margin-bottom: 2vw;
}
.button-14 {
	height: 7vw;
	font-size: 3vw;
	line-height: 4vw;
}
.button-25 {
	height: 7vw;
	font-size: 3vw;
	line-height: 4vw;
}
.container2 {
	min-height: 60vw;
	padding: 3vw;
	font-size: 2.8vw;
	line-height: 4vw;
}
.image-17 {
	width: 5vw;
	height: 5vw;
}
.image-18 {
	width: 4vw;
	height: 4vw;
}
.image-19 {
	width: 5vw;
	height: 5vw;
}
.custermerimg2 {
	width: 60vw;
	height: 36vw;
}
.trader_input {
	height: 6vw;
}
.form-block-7 {
	width: 70%;
	margin-left: 2vw;
}
.image-20 {
	width: 28vw;
	height: 6vw;
}
.image-21 {
	width: 28vw;
	height: 6vw;
}
.button-15 {
	width: 30vw;
	height: 9vw;
}
.appstore_warp {
	width: 31vw;
	height: 9vw;
}
.appstoreblock {
	width: 67vw;
	margin-top: 4vw;
}
.main_block3 {
	width: 100%;
	height: 45vw;
	padding-top: 10vw;
	padding-bottom: 10vw;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 8vw;
	line-height: 8vw;
}
.div-block-93 {
	width: 100%;
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 8vw;
	line-height: 11vw;
}
.button-16 {
	width: 24vw;
	height: 8vw;
	margin-right: 2vw;
	margin-left: 2vw;
	font-size: 3vw;
	line-height: 4vw;
}
.button-16-copy {
	width: 24vw;
	height: 8vw;
	font-size: 3vw;
	line-height: 4vw;
}
.main_block4 {
	padding: 5vw;
}
.image-22 {
	position: static;
	width: 100%;
	height: 101vw;
}
.image-23 {
	width: 100%;
	height: 60vw;
	margin-bottom: 4vw;
}
.div-block-95 {
	margin-top: 6vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 2.8vw;
	line-height: 5vw;
}
.opinion_listbar {
	width: 97%;
	height: 24vw;
	margin-bottom: 6vw;
	padding-right: 4vw;
	padding-left: 4vw;
}
.opinion_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 6vw;
	margin-left: 0px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.select-field-3-copy {
	width: 100%;
	padding: 1vw 4vw 1vw 2vw;
}
.form-block-3-copy {
	width: auto;
	margin-top: 4vw;
	margin-left: 1vw;
}
.image-26 {
	display: block;
	width: 5vw;
	height: 2vw;
	margin-left: auto;
}
.btnlist-copy {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-left: auto;
}
.btnlist-copy.footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	padding: 0vw;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	background-color: #102331;
}
.div-block-97 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-bottom: 3vw;
	padding-right: 0vw;
	padding-left: 0px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.div-block-98 {
	height: 7vw;
	margin-top: 4vw;
	font-size: 2.8vw;
	line-height: 4vw;
}
.custermer_pagingbtn {
	width: 7vw;
	height: 7vw;
	margin-right: 1vw;
	margin-left: 1vw;
}
.custermer_pagingbtn.next {
	width: 10vw;
	margin-right: 1vw;
	margin-left: 1vw;
}
.mobile_bottombtn {
	position: fixed;
	left: auto;
	top: auto;
	right: auto;
	bottom: 0%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 15vw;
}
.image-28 {
	width: 20vw;
	height: 20vw;
}
.button-17 {
	width: 8vw;
	height: 8vw;
}
.image-29 {
	width: 6vw;
	height: 6vw;
}
.top_myprofile {
	display: none;
}
.form-block-8 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.div-block-101 {
	width: auto;
	margin-top: 2vw;
	margin-bottom: 2vw;
	margin-left: 0px;
}
.form-block-9 {
	width: 100%;
	margin-right: 0px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.list_hidewarp {
	height: 60vw;
}
.list_hidewarp2 {
	height: 69vw;
	padding-right: 1.5%;
}
.main_bottombtn {
	position: fixed;
	left: auto;
	top: auto;
	right: auto;
	bottom: 0%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 15vw;
}
.main_bottombtn {
	left: 0%;
	top: auto;
	right: 0%;
	bottom: 0%;
	z-index: 1;
	width: 100%;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.div-block-102 {
	width: 100%;
	min-height: 90vw;
	min-width: auto;
	padding: 4vw;
}
.tradepop_result {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.traderesult {
	width: 95%;
	height: 13vw;
	margin-top: 3vw;
	margin-bottom: 3vw;
	padding: 2vw 5vw;
}
.systrem_frame {
	min-height: 100vw;
	min-width: auto;
}
.text-block-34 {
	font-size: 8vw;
	line-height: 10vw;
}
.image-34 {
	width: 6vw;
	height: 6vw;
}
.form-block-11 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 78%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.text-field-7 {
	width: 100%;
	height: 9vw;
	padding: 2vw 3vw;
	font-size: 3vw;
}
.copybtn.staet {
	height: 7vw;
	margin-top: 2vw;
	font-size: 3vw;
	line-height: 4vw;
}
.div-block-105 {
	width: 20vw;
}
.button-19 {
	width: 7vw;
	height: 7vw;
}
.div-block-106 {
	height: 8vw;
	margin-top: 2vw;
	margin-bottom: 2vw;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 3.5vw;
}
.button-20 {
	margin-right: 1vw;
	margin-left: 1vw;
	font-size: 2.5vw;
}
.searchresult_location {
	font-size: 2.5vw;
}
.btnlist-copy-copy {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 71%;
	height: 100%;
	margin-left: auto;
}
.btnlist-copy-copy.footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	padding: 0vw;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	background-color: #102331;
}
.history_search {
	width: 100%;
	height: 7vw;
	margin-top: 2vw;
}
.div-block-107 {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.section4 {
	width: auto;
	min-width: auto;
	margin-right: 0px;
}
.box1 {
	width: auto;
	margin-right: 0px;
}
.box2 {
	width: auto;
	max-height: 128vw;
	min-height: 30vw;
}
.frame3 {
	min-height: auto;
}
.copy_mainittle {
	margin-bottom: 5vw;
	font-size: 5vw;
	line-height: 14vw;
	text-align: center;
}
.alarmbtn {
	width: 10vw;
	height: 10vw;
}
.copyfollow_block {
	position: relative;
	overflow: auto;
	width: 100%;
	min-width: auto;
	margin-bottom: 5vw;
}
.copyfollow_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-top: 4vw;
	padding-right: 3vw;
	padding-left: 3vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
}
.text-field-8 {
	width: 40vw;
	height: 7vw;
	margin-left: 1vw;
}
.search_warp {
	padding: 0 3vw;
}
.button-21 {
	width: 7vw;
	height: 7vw;
}
.search_btnicon {
	width: 5vw;
	height: 5vw;
}
.div-block-109 {
	width: 100%;
	height: 45vw;
	padding: 3vw 4vw 2vw;
}
.div-block-110 {
	margin-top: 2vw;
	-ms-grid-rows: 12vw 12vw;
	grid-template-rows: 12vw 12vw;
}
.image-35 {
	width: 20vw;
	height: 11vw;
}
.div-block-111 {
	height: 11vw;
	font-size: 3vw;
}
.followbth {
	width: 20vw;
	height: 9vw;
}
.followinfo {
	width: 18vw;
	height: 4vw;
	font-size: 2vw;
}
.image-36 {
	width: 2.5vw;
	height: 2vw;
	margin-right: 1vw;
}
.followinfo_txt {
	margin-bottom: 1vw;
	font-size: 3vw;
}
.followinfo_subtxt {
	font-size: 2vw;
}
.copy_btnlist {
	margin-bottom: 4vw;
}
.copy_btnlist.footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	min-height: auto;
	padding: 0vw;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	background-color: #102331;
}
.button-12-copy {
	width: 28vw;
	height: 10vw;
	font-size: 2.8vw;
}
.div-block-114 {
	width: 95vw;
	height: 95vw;
	padding: 6vw 8vw;
}
.form-block-18 {
	margin-top: 3vw;
	margin-bottom: 3vw;
}
.button-22 {
	margin-left: 3vw;
	font-size: 2.5vw;
}
.title7 {
	font-size: 5.5vw;
	line-height: 8vw;
}
.button-23 {
	font-size: 3.5vw;
	line-height: 4vw;
}
.button-20-copy {
	margin-left: 2vw;
	font-size: 2.5vw;
}
.trader_pop1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 91vw;
	padding: 4vw;
}
.button-15-copy {
	font-size: 3.5vw;
	line-height: 4vw;
}
.title3 {
	margin-bottom: 2vw;
	font-size: 3vw;
	line-height: 4vw;
}
.text-field-15 {
	height: 8vw;
	padding-left: 4vw;
	font-size: 2.8vw;
}
.pop_btn {
	height: 8vw;
	margin-top: 2vw;
	margin-right: auto;
	margin-left: auto;
}
.text-field-15-copy {
	height: 8vw;
	padding-left: 4vw;
	font-size: 2.8vw;
}
.accountbox2 {
	height: 8vw;
	margin-top: 3vw;
	margin-bottom: 3vw;
}
}

@media screen and (max-width: 479px) {
.banner_box {
	padding: 4vw 5vw;
}
.serch_bar {
	height: 10vw;
	margin-top: 7vw;
	margin-bottom: 7vw;
}
.button1 {
	font-size: 3vw;
	line-height: 4vw;
}
.custermer_block2 {
	width: 100%;
}
.titleblock {
	width: 100%;
}
.block_between {
	font-size: 3.5vw;
	line-height: 4vw;
}
.bord {
	width: 100%;
}
.maintext_title {
	font-size: 5vw;
	line-height: 8vw;
}
.maintext_text {
	font-size: 3.5vw;
	line-height: 4vw;
}
.arrow {
	width: 4vw;
	height: 4vw;
	margin-right: 2vw;
	margin-left: 2vw;
}
.custermer_bottombtn {
	height: 17vw;
}
.bottombtn {
	font-size: 3vw;
	line-height: 4vw;
}
.additional_title {
	font-size: 3vw;
	line-height: 7vw;
}
.additional_text {
	font-size: 4vw;
	line-height: 8vw;
}
.bottomcontent_title {
	font-size: 5vw;
	line-height: 8vw;
}
.footer_text {
	font-size: 3vw;
	line-height: 6vw;
}
.custermer_block3 {
	width: 100%;
	min-height: auto;
}
.custermermain_listblock1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 10vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.custermermain_listblock2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 10vw;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.frame2 {
	min-width: 100%;
	margin-right: 0px;
	margin-left: 0px;
}
.button2 {
	font-size: 3vw;
	line-height: 4vw;
}
.mob_bottombtn {
	height: 17vw;
}
.minapage_frame {
	min-width: 100%;
	margin-right: 0px;
	margin-left: 0px;
}
.image-7 {
	margin-left: 2vw;
}
.popupframe {
	display: none;
}
.itempopup {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.mobile_bottombtn {
	height: 17vw;
}
.main_bottombtn {
	height: 17vw;
}
}
#w-node-_6d4e6523-5d51-8b74-9665-8b053c057486-3a7e1f94 {
	-webkit-align-self: end;
	-ms-flex-item-align: end;
	-ms-grid-row-align: end;
	align-self: end;
}
img {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden; /* Chrome  Safari */
	-moz-backface-visibility: hidden; /* Firefox */
	-ms-backface-visibility: hidden; /* Internet Explorer */
}