html {}

body {
	font-size: 14px;
}

body.cmsview {}

body.cmsview>nav.navbar>div>.navbar-collapse {
	padding-left: 70px;
}

.navbar-brand {
	position: relative;
}

.navbar-brand img {
	width: 80px;
	position: relative;
	position: absolute;
	top: -5px;
}

@media(max-width: 420px) {
	.navbar-brand img {
		width: 100px;
		top: -10px;
	}
}

.navbar {

	-webkit-box-shadow: 0px 0px 36px -5px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 36px -5px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 36px -5px rgba(0, 0, 0, 0.75);

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f1f1f1+42,e1e1e1+56,f6f6f6+100 */
	background: #13547a;
	/* Old browsers */
	background: -moz-linear-gradient(180deg, #DA9627, #A76710, #865012);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(180deg, #DA9627, #A76710, #865012);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(180deg, #DA9627, #A76710, #865012);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#13547a', endColorstr='#042e46', GradientType=0);
	/* IE6-9 */

}

.navbar .dropdown-menu {
	background: #865012;
}

.navbar .dropdown-menu li {}

.navbar .dropdown-menu li a,
.navbar .dropdown-menu li a:visited,
.navbar .dropdown-menu li a:focus {
	color: #DA9627;
}

.navbar .dropdown-menu li a:hover {
	background: #A76710;
	color: #efefef;
}

body div.custom-header {
	color: #ffffff;
	background: #0f212c;
}


.modindex li {
	border: 2px solid #CFCFCF;
	width: 170px;
	height: 120px;
	/* float: left; */
	margin: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	position: relative;
}

.modindex li:focus {
	border: 2px solid #0A3981;
}

.modindex li:hover {
	border: 2px solid #0080FF;
	background: #efefef;
	transform: scale(1.1);
}

.modindex li a,
.modindex li a:focus,
.modindex li a:visited {
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 1;
	padding: 15px 5px;
	color: #858585;
}

.modindex li a:hover {
	color: #0080FF;
	background: #d7eafc;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.modindex li a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.05;
	background: url(imgs/everwin-1x.png) no-repeat;
	background-size: 120px;
	z-index: 0;
	background-position: center;
}

.modindex li a #icon {
	font-size: 30px;
	-webkit-transition: -webkit-transform .5s ease-in-out;
	transition: transform .5s ease-in-out;
}

.modindex li a:hover #icon {
	animation: shake 0.5s;
	/*animation-iteration-count: infinite;*/
}

.modindex li a:hover:before {}


.walletact li {
	border: 2px solid #CFCFCF;
	width: 120px;
	height: 120px;
	float: left;
	margin: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	position: relative;
}

.walletact li:focus {
	border: 2px solid #0A3981;
}

.walletact li:hover {
	border: 2px solid #0080FF;
	background: #efefef;
	transform: scale(1.1);
}

.walletact li a,
.walletact li a:focus,
.walletact li a:visited {
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 1;
	-webkit-transition: all .4s ease-in-out;
	transition: all .3s ease-in-out;
	padding: 15px 5px;
	color: #858585;
}

.walletact li a:hover {
	color: #0080FF;
	background: #d7eafc;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.walletact li a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.05;
	background: url(imgs/logo.png) no-repeat;
	background-size: 120px;
	z-index: 0;

}

.walletact li a #icon {
	font-size: 30px;
	-webkit-transition: -webkit-transform .5s ease-in-out;
	transition: transform .5s ease-in-out;
}

.walletact li a:hover #icon {
	animation: shake 0.5s;
	/*animation-iteration-count: infinite;*/
}

.walletact li a:hover:before {}


@keyframes shake {

	/*
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
  */
	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%,
	80% {
		transform: translate3d(2px, 0, 0);
	}

	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%,
	60% {
		transform: translate3d(4px, 0, 0);
	}
}


.page-report .header-msg strong {
	animation: blinker 1s infinite;
	color: #ff0000;
	font-size: large;
}

.blink {
	animation: blinker 1s infinite;
}

@keyframes blinker {
	from {
		opacity: 1.0;
	}

	50% {
		opacity: 0.1;
	}

	to {
		opacity: 1.0;
	}
}


@media all and (max-width: 768px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min-resolution: 192dpi) and (max-width: 1024px),
only screen and (min-resolution: 2dppx) and (max-width: 1024px) {


	body.cmsview>nav.navbar>.container>.navbar-collapse {
		padding-left: 0px;
	}

	body.cmsview {}

	div,
	iframe {
		-webkit-overflow-scrolling: touch;
	}


}

.angpowxx {
	z-index: 9999;
	display: flex;
	position: absolute;
	width: 100%;
	height: 100%;
}

.disabled_div {
	display: block !important;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	color: #000000 !important;
	overflow: hidden;
}

.disabled_div .section {
	display: block;
	text-align: center;
	height: 100%;
}

.disabled_div .confirm_box {
	width: 99%;
	text-align: center;
	position: relative;
	display: inline-block;
	background-color: white;
	border-radius: 6px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	-webkit-transition: all .18s;
}

.confirm_box .confirmation_btn {
	position: relative;
	height: 50px;
	line-height: 40px;
	text-align: center;
	border-bottom: 1px solid #EBEBEB;
}

.confirm_box .confirmation_btn span {
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: 12px;
	cursor: pointer;
	white-space: nowrap;
	color: #000000;
	width: 100%;
	border-radius: 0 0 0 5px;
}

.confirm_box .confirmation_btn span button {
	font-size: 12px;
	box-shadow: none !important;
	color: #000000 !important;
	width: 100%;
	font-weight: bold;
	font-size: 15px;
}

.confirm_box h3 {
	color: #000000 !important;
	text-align: center;
	padding: 0;
	height: 40px;
	line-height: 40px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 400;
	border-radius: 5px 5px 0 0;
	border-bottom: 1px solid #EBEBEB;
	margin: 0px;
}

.confirm_box .confirm_content {
	padding: 5%;
	padding-bottom: 20%;
	text-align: justify;
	max-height: 730px;
	overflow-y: hidden;
	overflow: auto;
}

.site-nav-marquee {
	display: block;
	width: 100%;
	height: 30px;
	line-height: 29px;
	border-top: 1px solid #865012;
	border-bottom: 1px solid #865012;
	background: linear-gradient(180deg, #DA9627, #A76710, #865012);
	margin-top: 1%;
	color: #ffffff;
}

.site-nav-marquee marquee {
	font-size: 13px;
	letter-spacing: 0.4px;
	white-space: nowrap;
}

.stakeinfo {
	width: 100%;
	padding: 15px;
	display: flex;
	font-size: 14px;
	color: #000;
	font-family: initial;
}

.stakeinfo-left {
	width: 25%;
}

.stakeinfo-right {
	width: 75%;
}

.btn-app,
.pagination li a,
table.text-center,
table.text-center td,
table.text-center th {
	text-align: center;
}

.dataTables_info,
.dataTables_length,
.dt-buttons {
	display: inline-block;
	padding-top: 5px;
}

.dataTables_wrapper .dataTables_paginate {
	float: right;
	text-align: right;
	padding-top: .25em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	min-width: 1.5em;
	padding: .5em 1em;
	margin-left: 2px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	color: #67757c;
	border: 1px solid transparent;
	border-radius: 2px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: #fff;
	border: 1px solid #4d79f6;
	background-color: #4d79f6;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
	cursor: not-allowed;
	color: #67757c;
	border: 1px solid transparent;
	background: 0 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: #fff;
	background-color: #7551e9;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
	outline: 0;
	background-color: #67757c;
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
	padding: 0 1em;
}

.panel-actions .pagination {
	margin: 0;
}

.pagination>li>a {
	background-color: #fff;
	color: #4a4a4a;
	border-color: #fff;
}

.pagination.pagination-flat>li>a {
	border-radius: 0;
}

.pagination li a.current,
.pagination li a.current:hover {
	color: #fff;
	border: 1px solid #4d79f6;
	background-color: #4d79f6;
}

.pagination li a {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	min-width: 25px;
	padding: .4em 1em;
	margin: 0 3px;
	text-decoration: none;
	cursor: pointer;
	color: #67757c;
	border: 1px solid transparent;
	border-radius: 2px;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
	color: #67757c;
	background-color: #fff;
	border-color: #fff;
	cursor: not-allowed;
}

.pagination {
	margin-bottom: 10px;
}

.pagination li a:hover {
	color: #fff;
	border: 1px solid #1f88e5;
	background-color: #1f88e5 !important;
}

.paging_simple_numbers .pagination .paginate_button {
	padding: 0;
	background: #fff;
}

.paging_simple_numbers .pagination .paginate_button:hover {
	background: #fff;
}

.paging_simple_numbers .pagination .paginate_button a {
	padding: 5px 10px;
	border-radius: 4px;
	border: 0;
}

.paging_simple_numbers .pagination .paginate_button.active a,
.paging_simple_numbers .pagination .paginate_button:hover a {
	background: #4d79f6;
	color: #fff;
}

.footable .pagination {
	display: inline-block;
	padding: 8px 0;
}

.footable .pagination li {
	padding: 0;
	margin: 0 1px;
	display: inline-block;
}

.footable .pagination li a {
	padding: 5px 10px;
}

.footable .pagination li a.active,
.footable .pagination li a:hover {
	background: #4d79f6;
	color: #fff;
	border-radius: 4px;
}

.footable .pagination li.active a {
	color: #fff;
	border-radius: 4px;
}

.page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6;
}

.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem;
}

.table .card {
	margin-bottom: 2.143rem;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.result_div {
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}

[type=checkbox]:checked,
[type=checkbox]:not(:checked) {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.form-group label {
	font-weight: 500;
}

[type=checkbox]+label {
	font-weight: 300;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	display: inline-block;
	height: 25px;
	line-height: 25px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-ms-user-select: none;
}

[type=checkbox]:checked+label:before {
	top: -4px;
	left: -5px;
	width: 12px;
	height: 22px;
	border-top: 2px solid transparent;
	border-left: 2px solid transparent;
	border-right: 2px solid #4d79f6;
	border-bottom: 2px solid #4d79f6;
	-webkit-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	transform: rotate(40deg);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

[type=checkbox]+label:before,
[type=checkbox]:not(.filled-in)+label:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	z-index: 0;
	border: 2px solid #5a5a5a;
	border-radius: 1px;
	margin-top: 2px;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

[type=checkbox]:not(.filled-in)+label:after {
	border: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

[type=checkbox]+label:before,
[type=checkbox]:not(.filled-in)+label:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	z-index: 0;
	border: 2px solid #5a5a5a;
	border-radius: 1px;
	margin-top: 2px;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.totalheader {
	font-size: 16px;
	padding: 0px 15px;
	margin-bottom: 30px;
	font-weight: 500;
	color: #000;
	display: block;
}

.dropdown-item {
	color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.75);
}

/*---switch---*/
.switch {
	font-weight: 300;
	letter-spacing: 0;
	margin-bottom: 0;
	line-height: 29px;
	cursor: pointer;
	white-space: nowrap;
}

.switch input {
	display: none;
}

.switch-indicator {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 10px;
	background: #e3e4e5;
	border-radius: 20px;
	vertical-align: middle;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.switch input:checked~.switch-indicator {
	background: #CDEAFD;
}

.switch input:checked~.switch-indicator::after {
	background: #4d79f6;
	left: calc(100% - 20px);
	-webkit-box-shadow: 0px 0px 3px #fcfdfe;
	box-shadow: 0px 0px 3px #fcfdfe;
}

.switch-indicator::after {
	content: '';
	display: block;
	position: absolute;
	left: 0px;
	width: 20px;
	height: 20px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	cursor: inherit;
	background: #fff;
	border-radius: 50%;
	top: -5px;
	-webkit-box-shadow: 0px 0px 3px #bbb;
	box-shadow: 0px 0px 3px #bbb;
}