@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Eric Meyer's CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
	font-size: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	background: #060606;
	color: #fff;
	-webkit-backface-visibility: hidden;
	font-display: swap;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}
.wrapper {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.inner {
	position: relative;
	z-index: 3;
	width: 1280px;
	margin: 0 auto;
	max-width: 100%;
	padding: 0 30px;
}
a {
	color: rgb(121, 121, 236);
}
a:hover {
	text-decoration: none;
	cursor: pointer;
}
.table, table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.table tr {
	border-bottom: 1px dotted rgb(255, 255, 255, 0.1);
}
.table tr:nth-of-type(odd) {
}
.table th {
	color: #a5b5ca;
	background: rgba(15, 15, 17, 1);
	font-size: 14px;
}
.table td, .table th {
	padding: 6px;
	text-align: left;
}
.table td.text-center,
.table th.text-center {
	text-align: center !important;
}
.table .date {
	font-size: 12px;
	color: #9facbd;
}


img {
	max-width: 100%;
	max-height: 100%;
}
.text-normal {
	font-weight: normal !important;
	font-style: normal !important;
	color: #fff !important;
}
.text-green {
	color: #1AEA67;
}
b, strong {
	font-weight: bold;
}
i {
	font-style: italic
}
button,
input,
textarea {
	outline: none;
	resize: none;
	-webkit-appearance: none;
}

.btn {
	color: #fff;
	position: relative;
	text-align: center;
	font-size: 16px;
	display: inline-block;
	text-decoration: none;
	height: 46px;
	line-height: 46px;
	padding: 0 40px;
	min-width: 80px;
	outline: none;
	resize: none;
	border: none;
	overflow: hidden;
	-webkit-appearance: none;
	-webkit-transition: all ease-out 0.1s;
	-moz-transition: all ease-out 0.1s;
	-ms-transition: all ease-out 0.1s;
	-o-transition: all ease-out 0.1s;
	transition: all ease-out 0.1s;
	background: linear-gradient(173deg, #1AFD6D 4.78%, #1DBC57 94.17%);
	box-shadow: 0px 3px 8px 0px rgba(103, 116, 116, 0.2);
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	margin-top: -1px;
	margin-bottom: 1px;
}
.btn:hover {
	color: #fff !important;
	cursor: pointer !important;
	background: linear-gradient(173deg, #31ff7c 4.78%, #37d972 94.17%);
	box-shadow: 0px 6px 12px 0px rgba(103, 116, 116, 0.3);
}
.btn--big {
	height: 54px;
	line-height: 54px;
}
.btn--blue {
	background: rgb(88, 88, 230);
}
.btn--blue:hover {
	background: rgb(118, 118, 239);
}
.btn--red {
	background: rgb(234, 70, 70);
}
.btn--red:hover {
	background: rgb(240, 85, 85);
}
.btn--ghost {
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 1);
	background: transparent;
	color: #fff;
	min-width: auto;
	padding: 0 20px;
}
.btn--ghost.btn--disabled {
	border: 1px solid rgba(255, 255, 255, 0.60);
	opacity: 0.4;
	cursor: none;
}
.btn--ghost:hover {
	background: #fff;
	color: #1d1d1d !important;
}
.btn--ghost.btn--disabled:hover {
	border: 1px solid rgba(255, 255, 255, 0.60);
	background: transparent;
	color: #fff !important;
	cursor: default !important;
}
.inp,
.textarea {
	height: 42px;
	padding: 13px 25px;
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	width: 100%;
	position: relative;
	font-size: 16px;
	background: #fff;
	border-radius: 100px;
	border: 1px solid #363636;
	background: transparent;
	color: #fff;
	-webkit-transition: all ease-out 0.1s;
	-moz-transition: all ease-out 0.1s;
	-ms-transition: all ease-out 0.1s;
	-o-transition: all ease-out 0.1s;
	transition: all ease-out 0.1s;
}

.textarea {
	min-height: 120px;
	border-radius: 15px;
}

.inp:focus,
.textarea:focus {
	border: 1px solid #0facf3;
}
.eas:hover {
	-webkit-transition: all ease-in 0.1s;
	-moz-transition: all ease-in 0.1s;
	-ms-transition: all ease-in 0.1s;
	-o-transition: all ease-in 0.1s;
	transition: all ease-in 0.1s;
}

.eas {
	-webkit-transition: all ease-out 0.2s;
	-moz-transition: all ease-out 0.2s;
	-ms-transition: all ease-out 0.2s;
	-o-transition: all ease-out 0.2s;
	transition: all ease-out 0.2s;
}
.eas-fast:hover {
	-webkit-transition: all ease-in 0.05s;
	-moz-transition: all ease-in 0.05s;
	-ms-transition: all ease-in 0.05s;
	-o-transition: all ease-in 0.05s;
	transition: all ease-in 0.05s;
}

.eas-fast {
	-webkit-transition: all ease-out 0.5s;
	-moz-transition: all ease-out 0.5s;
	-ms-transition: all ease-out 0.5s;
	-o-transition: all ease-out 0.5s;
	transition: all ease-out 0.5s;
}
h1 {
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 48px;
}
h3 {
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: 42px;
}
h4 {
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
}
h5 {
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}
.loader {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(6, 6, 6, 0.9) url(../images/loader.svg) no-repeat center center;
	background-size: 48px;
	z-index: 9;
	display: none;
}
.text-bold {
	font-weight: bold;
}

/* Forms
-----------------------------------------------------------------------------*/
.radio,
.checkbox { position: absolute; left: -999em; }
.label {
	position: relative;
	color: #36545e;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-right: 10px;
}
.label.small {
	color: #afb7cb;
}
.label:before {
	display: inline-block;
	position: relative;
	top:0.35em;
	left:-3px;
	content:'';
	width:25px;
	height:25px;
	background-size: 50px;
	background-image: url(../images/checkbox.svg);
}
.label:hover {
	cursor: pointer !important;
}
.checkbox + .label:before { background-position: 0 -25px;}
.checkbox:checked + .label:before {background-position: 0 0 ; }
.radio + .label:before { background-position: -25px -25px;}
.radio:checked + .label:before { background-position: -25px 0;}

.checkbox:checked + .label,
.radio:checked + .label {
	color: #fff;
}
.checkbox.small:checked + .label,
.radio.small:checked + .label {
	font-weight: normal;
}
.ie8 .label:before {
	display:none;
	content:none;
}
.ie8 .checkbox,
.ie8 .radio,
.ie7 .checkbox,
.ie7 .radio{
	position: static;
	left:0;
}
.ie8 .checkbox,
.ie8 .radio {
	position:relative;
	top:5px;
	margin-right:0.5em;
}


/* Header
-----------------------------------------------------------------------------*/
.header {
	background: url(../images/header-bg.jpg) no-repeat center center;
	background-size: cover;
}
.header .bgc {
	background: rgba(9, 11, 22, 0.80);
	position: relative;
}

.header .bgc:before {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 256px;
	display: block;
	background: linear-gradient(180deg, rgba(6, 6, 6, 0.00) 0%, #060606 100%);
	z-index: 2;
}
.wrapper-in .bgc:before {
	height: 25px;
}
.wrapper-in .content {
	padding: 30px 0;
}

.header-top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header-top .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: space-between;
}
.header-top .logo {
	padding: 15px 0;
}
.header-top .logo img {
	height: 30px;
	width: auto;
	max-height: none;
	display: block;
}
.header-top .nav {
	display: flex;
	padding: 15px 0;
	justify-content: center;
	align-items: center;
}
.header-top .nav li {
	padding: 0 0 0 30px;
}
.header-top .close,
.header-top .menu {
	display: none;
}
.header-top .menu {
	font-size: 28px;
	height: 36px;
	width: 36px;
	text-align: right;
}
.header-top .menu:hover {
	cursor: pointer;
	opacity: 0.9;
}
.header-top .nav a {
	color: #fff;
	text-decoration: none;
}
.header-top .nav a:hover {
	color: #1AFD6D;
}
.header-top .nav li.active a {
	color: rgba(255, 255, 255, 0.6);
}

.header-center {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 760px;
}
.header-center .inner {
	width: 1200px;
	max-width: 100%;
}
.c-name {
	font-size: 32px;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}
.c-title {
	font-size: 72px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	padding: 10px 0 0 0;
}
.c-desc {
	color: rgba(191, 208, 233, 0.60);
	font-size: 28px;
	font-weight: 400;
	line-height: 38px;
	padding: 10px 0 0 0;
}
.c-buttons {
	padding: 50px 0 0 0;

}


/* Offers
-----------------------------------------------------------------------------*/
.offer {
	padding: 120px 0;
}
.offer-2 {
	background: rgba(29, 31, 42, 0.5);
}
.offer .desc {
	color: rgba(191, 208, 233, 0.60);
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 38px;
	padding: 50px 0 0 0;
}
.offer .features {
	padding: 50px 0;
	display: flex;
	justify-content: space-between;
}
.offer .features .image {
	width: 290px;
	padding: 0 30px 0 0;
}
.offer .features .image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
}
.offer .features .list {
	color: #FFF;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	padding: 0 30px 0 0;
	width: 33%;
}
.offer .features .list li {
	margin: 0 0 25px 0;
}
.offer .features .check {
	background: url(../images/check.svg) no-repeat center center;
	background-size: 24px;
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
	margin: -2px 10px 0 0;
}
.offer .slider {
	padding: 15px 0 25px 0;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
.offer .slider li {
	flex: 0 0 33.3333%;
}
.offer .slider li a {
	padding: 10px;
	display: block;
	position: relative;
}
.offer .slider li img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
	-webkit-transition: all ease-out 0.3s;
	-moz-transition: all ease-out 0.3s;
	-ms-transition: all ease-out 0.3s;
	-o-transition: all ease-out 0.3s;
	transition: all ease-out 0.3s;
}
.offer .slider li a:hover > img {
	transform: scale(1.02);
	-webkit-transition: all ease-in 0.1s;
	-moz-transition: all ease-in 0.1s;
	-ms-transition: all ease-in 0.1s;
	-o-transition: all ease-in 0.1s;
	transition: all ease-in 0.1s;
	cursor: pointer;
}
.offer .slider li a:after {
	background: rgba(29, 29, 29, 0.3);
	z-index: 1;
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: '';
	opacity: 0;
	-webkit-transition: all ease-out 0.3s;
	-moz-transition: all ease-out 0.3s;
	-ms-transition: all ease-out 0.3s;
	-o-transition: all ease-out 0.3s;
	transition: all ease-out 0.3s;
}
.offer .slider li a:hover:after {
	opacity: 1;
	-webkit-transition: all ease-in 0.3s;
	-moz-transition: all ease-in 0.3s;
	-ms-transition: all ease-in 0.3s;
	-o-transition: all ease-in 0.3s;
	transition: all ease-in 0.3s;
	cursor: pointer;
}
.offer .get {
	display: flex;
	justify-content: space-between;
	padding: 45px 0 0 0;
}
.offer .get .review {
	border-radius: 10px 0px 0px 10px;
	background: #0F0F11;
	padding: 56px 35px;
	display: flex;
	width: 50%;
}
.offer .get .review .userpic {
	width: 100px;
}
.offer .get .review img {
	border-radius: 100px;
	width: 100px;
	min-width: 100px;
}
.offer .get .review .latest {
	padding: 0 0 0 20px;
}
.offer .get .review .latest .t {
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
}
.offer .get .review .latest .p {
	color: rgba(255, 255, 255, 0.60);
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	line-height: 26px;
}
.offer .get .review .latest .r {
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	padding: 15px 0;
}
.offer .get .review .latest .b {

}
.offer .get .review .latest .b .btn {
	margin: 0 5px 0 0;
}
.offer .get .form {
	display: flex;
	align-items: center;
	width: 50%;
	padding: 0 30px;
	position: relative;
}
.offer .get .form .t {
	padding: 0 0 10px 0;
	font-size: 16px;
	font-style: normal;
	line-height: 130%;
	color: rgba(191, 208, 233, 0.60);
}
.offer .get .form .t b {
	color: #fff;
	font-weight: 700;
}
.offer .get .form .line {
	display: flex;
	padding: 0 0 10px 0;
	width: 100%;
}
.offer .get .form .line .inp {
	margin: 0 5px;
}
.offer .get .form .line .btn {
	width: 100%;
	margin: 0 5px;
}

.home-about {
	background: rgba(66, 157, 248, 0.05) url(../images/about.png) no-repeat center center;
	background-size: cover;
	padding: 40px 0;
	position: relative;
	display: block;
}
.home-about .stats {
	display: flex;
	justify-content: space-between;
	text-align: center;
}
.home-about .stats .n {
	color: #429DF8;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	padding: 0 0 10px 0;
}
.home-about .stats .d {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.home-about .seperator {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	height: 1px;
	margin: 45px 0;
	display: block;
}


.home-about .desc {
	display: flex;
	justify-content: space-between;
	text-align: left;
}
.home-about .desc .l {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 42px;
	flex: 0 0 50%;
}
.home-about .desc .r {
	color: rgba(191, 208, 233, 0.60);
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
}

.home-about .features {
	display: flex;
	justify-content: space-between;
	text-align: center;
}

.home-about .features .item {
	padding: 0 20px;
}
.home-about .features .icon {
	background: rgba(66, 157, 248, 0.10);
	border-radius: 100px;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 0 auto 20px auto;
}
.home-about .features .icon img {
	height: 32px;
}
.home-about .features .name {
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	margin: 0 0 10px 0;
}
.home-about .features .desc {
	color: rgba(191, 208, 233, 0.60);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

/* Popups
-----------------------------------------------------------------------------*/
.popup {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(6, 6, 6, 0.9);
	z-index: 9999;
	display: none;
}
.popup .container {
	background: #fff;
	width: 480px;
	max-width: 100%;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -240px;
	margin-top: -200px;
	padding: 25px 30px;
	background: rgba(0,0,0, 1);
	box-shadow: 0px 20px 100px rgba(187, 111, 42, 0.4);
	box-shadow: 0px 20px 100px rgba(66, 157, 248, 0.5);
}
.popup .close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	padding: 10px;
	font-size: 32px;
}
.popup .close:hover {
	color: rgba(255, 255, 255, 1);
	cursor: pointer;
}
.popup .title {
	font-weight: bold;
	font-size: 32px;
	line-height: 42px;
	padding-bottom: 0px;
}
.popup .desc {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 24px;
	padding-bottom: 20px;
}
.popup .line {
	padding: 0 0 15px 0;
}
.popup .line .btn {
	width: 100%;
}
.popup .line-sep {
	padding-top: 10px;
	margin-bottom: 10px;
	border-bottom: 1px dashed #36545e;
	height: 1px;
}
.popup .buttons {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.popup .buttons .btn:first-child {
	margin-right: 5px;
}
.popup .buttons .btn:last-child {
	margin-left: 5px;
}


/* Footer
-----------------------------------------------------------------------------*/
.footer {
	background: #060606;
}
.footer .top {
	padding: 35px 0 0 0;
	display: flex;
	justify-content: space-between;
}
.footer .top .logo {
	height: 30px;
	width: auto;
	max-height: none;
	display: block;
}
.footer .top .foonav {
	display: flex;
}
.footer .top .foonav a {
	color: #fff;
	text-decoration: none;
	padding: 0 0 0 30px;
}
.footer .top .foonav a:hover {
	text-decoration: underline;
	cursor: pointer;
}
.footer .top .foonav .active a {
	color: rgba(255, 255, 255, 0.6);
}
.footer .bottom {
	color: #80849C;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	line-height: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.20);
	padding: 30px 0 30px 0;
	margin: 30px 0 0 0;
}
.footer .bottom a {
	color: #80849C;
}



/* Block: Account
-----------------------------------------------------------------------------*/
.content-account {
	padding: 50px 0;
}
.block.block-account {
	padding: 0;
}
.block.block-account h3 {
	text-align: left;
	font-size: 32px;
	line-height: 42px;
	margin-bottom: 20px;
}
.block.block-account .subheader {
	text-align: left;
	font-size: 14px;
	padding: 0 !important;
	color: rgb(128, 131, 149);
}
.block.block-account .subheader span {
	border-radius: 6px;
}
.block.block-account .orders-history-icon {
	height: 15px;
	vertical-align: middle;
	margin: 0 5px 0 0;
}
.block.block-account .orders-history-message {
	font-size: 12px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.6);
}
.block.block-account .orders-history-buy {
	height: 40px;
	line-height: 40px;
	min-width: 100px;
	padding: 0 20px;
	vertical-align: middle;
	margin: 3px 0 0 0;
}
.block.block-account .empty {
	text-align: center;
	background: rgba(15, 15, 17, 1);
	padding: 20px 25px;
	border-radius: 6px;
	width: 560px;
	max-width: 100%;
	margin: 5px auto;
}
.block.block-account .column {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}
.block.block-account .column .row {
	width: 50%;
}
.block.block-account .column .row:nth-child(1) {
	padding-right: 15px;
}
.block.block-account .column .row:nth-child(2) {
	padding-left: 15px;
}
.block.block-account .referral-code {
	padding: 20px 25px;
	border-radius: 10px;
	background: rgba(30, 30, 30, 0.7);
	background:  linear-gradient(90deg, #059DFF 0%, #6549D5 37.98%, #E33FA1 68.19%, #FB5343 100%);
}
.block.block-account .referral-code .title {
	color: #fff;
	font-size: 24px;
	font-weight: bold;
}
.block.block-account .referral-code .subtitle {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 15px;
}
.block.block-account .referral-code .desc {
	color: rgba(255, 255, 255, 0.6);
	margin-top: 15px;
	font-size: 13px;
	line-height: 20px;
}
.block.block-account .referral-code .inp {
	background: #fff !important;
	border-color: #fff !important;
	color: #333 !important;
	font-weight: bold !important;
	cursor: pointer !important;
}
.my-balances {
	background: rgba(25, 25, 27, 1);
	padding: 15px 20px;
	border-radius: 10px;
	position: relative;
	margin-bottom: 10px;
}
.my-balances .title {
	font-size: 16px;
	padding-bottom: 5px;
	color: rgb(128, 131, 149);
}
.my-balances .amount {
	font-size: 24px;
	line-height: 24px;
	font-weight: bold;
}
.my-balances .amount span {
	color: rgb(128, 131, 149);
	font-weight: normal;
	font-size: 16px;
}
.my-balances .action {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -24px;
}
.my-balances .action .btn {
	width: 100px;
	padding: 0;
	font-size: 14px;
}
.block.block-account .column .row .line {
}
.block.block-account .column .row .line label {
	font-weight: bold;
	margin: 15px 0 10px 0;
	display: block;
}
.block.block-account .type-icon {
	color: #429DF8;
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	margin: 2px 7px 0 0;
}

.content-account h5 {
	color: rgba(255, 200, 255, 0.15);
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 15px;
}
.content-account .account-nav {
	margin-bottom: 30px;
}
.content-account .account-nav li {
}
.content-account .account-nav li a {
	display: block;
	line-height: 46px;
	height: 46px;
	font-weight: bold;
	text-decoration: none;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 18px;
}
.content-account .account-nav li a .icon {
	font-size: 16px;
	vertical-align: middle;
	margin: 0 10px 0 0;
}
.content-account .account-nav li:last-child a {
	border-bottom: 0px;
}
.content-account .account-nav li a:hover {
	color: #429DF8;
}
.content-account .account-nav li a.active {
	color: rgb(80, 82, 97);
	cursor: default !important;
}
.content-account .cinner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}
.content-account .cinner .sidebar {
	width: 25%;
}
.content-account .cinner .acontent {
	width: 75%;
	padding-left: 5%;
}
.investments .btn {
	width: 130px;
	padding: 0 15px;

}

/* Block: Deposit
-----------------------------------------------------------------------------*/
.content.content-deposit {
	padding-top: 0;
	padding-bottom: 0;
}
.content.content-deposit .block {
	padding-top: 30px;
	padding-bottom: 30px;
}
.form-deposit {
	width: 540px;
	max-width: 100%;
	margin: 0 auto;
	background: rgba(66, 66, 66, 0.1);
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 50px;
}
.form-deposit .line {
	padding: 10px 0;
}
.form-deposit .line label {
	font-weight: bold;
	display: block;
	padding-bottom: 5px;
}
.content-deposit .notice,
.content-deposit .redirect {
	padding: 200px 0;
	text-align: center;
}
.content-deposit .notice h3 {
	margin: 0px;
	padding-bottom: 10px;
	color: #4fe75a;
}
.content-deposit .notice.fail h3 {
	color: rgb(205, 31, 31);
}
.select {
	display: block;
	font-family: sans-serif;
	color: #444;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	 -moz-appearance: none;
	 -webkit-appearance: none;
	background: transparent url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDQ1MS44IDQ1MS44IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0NTEuOCA0NTEuODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGRkZGRkY7fQo8L3N0eWxlPgo8Zz4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMjUuOSwzNTQuN2MtOC4xLDAtMTYuMi0zLjEtMjIuNC05LjNMOS4zLDE1MS4yYy0xMi40LTEyLjQtMTIuNC0zMi40LDAtNDQuOGMxMi40LTEyLjQsMzIuNC0xMi40LDQ0LjcsMAoJCWwxNzEuOSwxNzEuOWwxNzEuOS0xNzEuOWMxMi40LTEyLjQsMzIuNC0xMi40LDQ0LjcsMGMxMi40LDEyLjQsMTIuNCwzMi40LDAsNDQuOEwyNDguMywzNDUuNEMyNDIuMSwzNTEuNiwyMzQsMzU0LjcsMjI1LjksMzU0Ljd6IgoJCS8+CjwvZz4KPC9zdmc+Cg==');
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: right 1.3em top 50%, 0 0;
	background-size: .65em auto, 100%;


	height: 46px;
	padding: 15px 20px;
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	width: 100%;
	position: relative;
	font-size: 16px;
	border: 1px solid #363636;
	color: #fff;
	outline: none;
	resize: none;
	-webkit-appearance: none;
}
.select::-ms-expand { display: none; }
.select:hover { border-color: #888; }
.select:focus { border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	outline: none;
}
.select option { font-weight:normal; }
*[dir="rtl"] .select, :root:lang(ar) .select, :root:lang(iw) .select {
	background-position: left .7em top 50%, 0 0;
}


/* Error Page
-----------------------------------------------------------------------------*/
.error-page {
	text-align: center;
	padding: 80px 0;
	font-size: 16px;
	line-height: 24px;
}
.error-page h1 {
	padding: 0 0 20px 0;
	font-size: 128px;
	line-height: 128px;
}
.error-page .buttons {
	padding: 20px 0 0 0;
}



/* Contacts Page
-----------------------------------------------------------------------------*/
.contacts-page {
	text-align: center;
	padding: 40px 0;
	font-size: 16px;
	line-height: 24px;
}
.contacts-page h1 {
	padding: 0 0 10px 0;
}
.contacts-page .desc {
	color: #80849C;
}
.contacts-page .contacts {
	display: flex;
	width: 760px;
	margin: 0 auto;
	max-width: 100%;
	padding: 30px 0;
	justify-content: center;
	align-items: center;
}
.contacts-page .contacts .item {
	padding: 15px 20px;
	background: #171821;
	border-radius: 12px;
	margin: 0 10px;
}
.contacts-page .contacts .item .n {
	font-weight: bold;
}
.contacts-page .contacts .item a {
	text-decoration: none;
}
.contacts-page .contacts .item a:hover {
	text-decoration: underline;
}


/* github.com > biati-digital > glightbox
-----------------------------------------------------------------------------*/
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
		.glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
		.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
	.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
		.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
		.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
		/* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
	.desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left,
	.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
	.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}


/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
	.glightbox-closing .gprev,
	.glightbox-closing .gclose {
  opacity: 0 !important;
}


/*Skin */

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
	.glightbox-clean .gnext,
	.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}


/*CSS Animations*/

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

@keyframes lightboxLoader {
  0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

@-webkit-keyframes gfadeIn {
  from {
	opacity: 0;
  }
  to {
	opacity: 1;
  }
}

@keyframes gfadeIn {
  from {
	opacity: 0;
  }
  to {
	opacity: 1;
  }
}

@-webkit-keyframes gfadeOut {
  from {
	opacity: 1;
  }
  to {
	opacity: 0;
  }
}

@keyframes gfadeOut {
  from {
	opacity: 1;
  }
  to {
	opacity: 0;
  }
}

@-webkit-keyframes gslideInLeft {
  from {
	opacity: 0;
	-webkit-transform: translate3d(-60%, 0, 0);
	transform: translate3d(-60%, 0, 0);
  }
  to {
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
  }
}

@keyframes gslideInLeft {
  from {
	opacity: 0;
	-webkit-transform: translate3d(-60%, 0, 0);
	transform: translate3d(-60%, 0, 0);
  }
  to {
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
  }
}

@-webkit-keyframes gslideOutLeft {
  from {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
  }
  to {
	-webkit-transform: translate3d(-60%, 0, 0);
	transform: translate3d(-60%, 0, 0);
	opacity: 0;
	visibility: hidden;
  }
}

@keyframes gslideOutLeft {
  from {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
  }
  to {
	-webkit-transform: translate3d(-60%, 0, 0);
	transform: translate3d(-60%, 0, 0);
	opacity: 0;
	visibility: hidden;
  }
}

@-webkit-keyframes gslideInRight {
  from {
	opacity: 0;
	visibility: visible;
	-webkit-transform: translate3d(60%, 0, 0);
	transform: translate3d(60%, 0, 0);
  }
  to {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
  }
}

@keyframes gslideInRight {
  from {
	opacity: 0;
	visibility: visible;
	-webkit-transform: translate3d(60%, 0, 0);
	transform: translate3d(60%, 0, 0);
  }
  to {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
  }
}

@-webkit-keyframes gslideOutRight {
  from {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
  }
  to {
	-webkit-transform: translate3d(60%, 0, 0);
	transform: translate3d(60%, 0, 0);
	opacity: 0;
  }
}

@keyframes gslideOutRight {
  from {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
  }
  to {
	-webkit-transform: translate3d(60%, 0, 0);
	transform: translate3d(60%, 0, 0);
	opacity: 0;
  }
}

@-webkit-keyframes gzoomIn {
  from {
	opacity: 0;
	-webkit-transform: scale3d(0.3, 0.3, 0.3);
	transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
	opacity: 1;
  }
}

@keyframes gzoomIn {
  from {
	opacity: 0;
	-webkit-transform: scale3d(0.3, 0.3, 0.3);
	transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
	opacity: 1;
  }
}

@-webkit-keyframes gzoomOut {
  from {
	opacity: 1;
  }
  50% {
	opacity: 0;
	-webkit-transform: scale3d(0.3, 0.3, 0.3);
	transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
	opacity: 0;
  }
}

@keyframes gzoomOut {
  from {
	opacity: 1;
  }
  50% {
	opacity: 0;
	-webkit-transform: scale3d(0.3, 0.3, 0.3);
	transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
	opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
	width: auto;
	height: auto;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
				.glightbox-container .ginner-container.desc-top .gslide-image img {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
  }
  .gslide-image img {
	max-height: 97vh;
	max-width: 100%;
  }
  .gslide-image img.zoomable {
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
	cursor: -webkit-grab;
	cursor: grab;
  }
  .gslide-inline {
	max-height: 95vh;
  }
  .gslide-external {
	max-height: 100vh;
  }
  .gslide-description.description-left,
	.gslide-description.description-right {
	max-width: 275px;
  }
  .glightbox-open {
	height: auto;
  }
  .goverlay {
	background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
	-webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
	box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
.glightbox-clean .description-right .gdesc-inner {
	position: absolute;
	height: 100%;
	overflow-y: auto;
  }
  .glightbox-clean .gprev,
	.glightbox-clean .gnext,
	.glightbox-clean .gclose {
	background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover {
	background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
	top: 45%;
  }
  .glightbox-clean .gnext {
	top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
	opacity: 0.7;
	right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
	background: #000;
  }
}



/* RESPONSIVE */
@media screen and (max-width: 1440px) {
	h1 {
		font-size: 42px;
		line-height: 42px;
	}
	h3 {
		font-size: 38px;
		line-height: 38px;
	}
	h4 {
		font-size: 28px;
		line-height: 32px;
	}
	h5 {
		font-size: 20px;
		line-height: 22px;
	}
	.btn {
		height: 42px;
		line-height: 40px;
		font-size: 15px;
	}
	.btn--big {
		height: 50px;
		line-height: 50px;
	}
	.header-top .logo img {
		height: 20px;
	}
	.header-top .nav {
		font-size: 14px;
	}
	.c-name {
		font-size: 24px;
	}
	.c-title {
		font-size: 56px;
	}
	.c-desc {
		font-size: 24px;
		line-height: 34px;
	}
	.offer .desc {
		font-size: 24px;
		line-height: 32px;
		padding: 30px 0 0 0;
	}
	.offer .features .list {
		font-size: 20px;
		line-height: 24px;
		padding: 0 20px 0 0;
	}
	.offer .features .list li {
		margin: 0 0 25px 0;
	}
	.offer .features .check {
		background-size: 20px;
		width: 20px;
		height: 20px;
		margin: -2px 5px 0 0;
	}
	.offer .get .review img {
		border-radius: 80px;
		width: 80px;
		min-width: 80px;
	}
	.offer .get .review .latest .t {
		font-size: 22px;
		line-height: 22px;
	}
	.offer .get .review .latest .p {
		font-size: 18px;
		line-height: 22px;
	}
	.offer .get .review .latest .r {
		font-size: 17px;
		line-height: 30px;
		padding: 15px 0;
	}
}
@media screen and (max-width: 1024px) {
	.table table, .table thead, .table tbody, .table th, .table td, .table tr {
		display: block;
	}
	.table thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.table tr {
		margin-bottom: 50px;
	}
	.table tr:nth-child(odd) > td {
		background: rgb(255, 255, 255, 0.05);
	}
	.table td {
		border: none;
		border-bottom: 1px dotted rgb(255, 255, 255, 0.2);
		position: relative;
		padding-left: 36%;
		text-align: left !important;
		min-height: 38px;
	}
	.table td:before {
		position: absolute;
		top: 6px;
		left: 16px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		color: #909eb0 !important;
	}
	.content-account .cinner {
		display: block;
	}
	.content-account .cinner .sidebar {
		width: 100%;
		display: block;
		float: none;
		padding: 0 0 20px 0;
	}
	.content-account .cinner .acontent {
		width: 100%;
		padding: 0px;
	}
	.content-account h5 {
		display: none;
	}

	.investments {
		display: block !important;
	}
	.investments .total,
	.investments .earned,
	.investments .button {
		width: 100% !important;
		padding: 10px 0 !important;
	}
	.investments .t {
		font-size: 18px !important;
	}
	.investments .d {
		font-size: 15px !important;
	}
	.block.block-account h3 {
		font-size: 28px !important;
	}
	.header-top {
		position: relative;
		z-index: 9;
	}
	.header-top .nav {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		padding: 15px 0;
		justify-content: normal;
		align-items: center;
		background: #060606;
		display: block;
		z-index: 99 !important;
		display: none;
	}
	.header-top .nav li {
		padding: 18px 20px;
		display: block;
		width: 100%;
		border-bottom: 1px solid #161616;
		font-size: 15px;
	}
	.header-top .nav li:last-child {
		border-bottom: 0px;
	}
	.header-top .menu {
		display: inline-block;
	}
	.header-top .close {
		position: absolute;
		background: #1e1d1d;
		border-radius: 100px;
		top: 15px;
		right: 8px;
		width: 40px !important;
		height: 40px !important;
		line-height: 38px;
		text-align: center;
		font-size: 24px !important;
		padding: 0px !important;
		display: inline-block;
	}
	.header-top .close:hover {
		cursor: pointer;
		background: #272525;
	}
}
@media screen and (max-width: 860px) {
	h1 {
		font-size: 36px;
		line-height: 36px;
	}
	.header-center {
		height: 680px;
	}
	.c-name {
		font-size: 20px;
	}
	.c-title {
		font-size: 46px;
	}
	.c-desc {
		font-size: 22px;
		line-height: 28px;
	}
	.offer .desc {
		font-size: 20px;
		line-height: 26px;
		padding: 20px 0 0 0;
	}
	.offer .features .image {
		display: none;
	}
	.offer .features .list {
		width: 50%;
	}




	.offer .features .list {
		font-size: 18px;
		line-height: 22px;
		padding: 0 15px 0 0;
	}
	.offer .features .list li {
		margin: 0 0 18px 0;
	}

	.offer .slider li a {
		padding: 6px;
	}
	.offer .get {
		display: block;
		width: 100%;
	}
	.offer .get .review {
		width: 100%;
		border-radius: 10px;
		padding: 40px 30px;
		margin: 0 0 20px 0;
	}
	.offer .get .form {
		width: 100%;
		padding: 0;
	}
	.offer .get .review .latest .t {
		font-size: 20px;
		line-height: 20px;
	}
	.offer .get .review .latest .p {
		font-size: 16px;
		line-height: 20px;
	}
	.offer .get .review .latest .r {
		font-size: 16px;
		line-height: 24px;
	}
	.home-about .stats .n {
		font-size: 26px;
		line-height: 24px;
		padding: 0 0 10px 0;
	}
	.home-about .stats .d {
		font-size: 16px;
		line-height: 22px;
	}


	.home-about .desc .l {
		font-size: 24px;
		line-height: 32px;
		flex: 0 0 50%;
	}
	.home-about .desc .r {
		font-size: 16px;
		line-height: 24px;
	}

	.home-about .features .item {
		padding: 0 15px;
	}
	.home-about .features .icon {
		display: flex;
		margin: 0 auto 15px auto;
	}
	.home-about .features .icon img {
		height: 24px;
	}
	.home-about .features .name {
		font-size: 20px;
		line-height: 24px;
		margin: 0 0 10px 0;
	}
	.home-about .features .desc {
		font-size: 16px;
		line-height: 24px;
	}
	.footer .top .foonav {
		display: none;
	}
	.footer .top {
		padding: 35px 0 0 0;
		display: block;
		justify-content: normal;
		text-align: center;
	}
	.footer .top .logo {
		height: 24px;
	}
	.footer .bottom br {
		display: none;
	}


}
@media screen and (max-width: 640px) {
	.inner {
		padding: 0 20px;
	}
	.offer .features {
		display: block;
	}
	.offer .features .image {
		display: block;
		margin: 0 0 20px 0;
	}
	.offer .features .list {
		width: 100%;
	}
	.home-about .stats {
		display: flex;
		flex-wrap: wrap;
	}
	.home-about .stats .s {
		flex: 50%;
		padding: 20px 0;
	}
	.home-about .desc {
		display: block;
		justify-content: normal;
	}
	.home-about .desc .l {
		flex: none;
		padding-bottom: 20px;
	}
	.home-about .features {
		display: block;
	}
	.home-about .features .item {
		padding: 15px 0;
	}
	.home-about .features .icon {
		border-radius: 80px;
		width: 80px;
		height: 80px;
	}

	.popup .container {
		width: 100%;
		max-width: 100%;
		border-radius: 0px;
		top: 0%;
		left: 0%;
		margin-left: 0px;
		margin-top: 0px;
		padding: 25px 30px;
	}

	.error-page {
		padding: 50px 0;
	}
	.error-page h1 {
		font-size: 86px;
		line-height: 86px;
	}

	.contacts-page .contacts {
		display: block;
		width: 100%;
		padding: 30px 0;
		justify-content: normal;
		align-items: normal;
	}
	.contacts-page .contacts .item {
		background: linear-gradient(90deg, #171821 0%, rgba(23, 24, 33, 0) 100%);
		margin: 10px 0;
		text-align: left;
	}

}





/* jquery-confirm v3.3.0
-----------------------------------------------------------------------------*/
@-webkit-keyframes jconfirm-spin {
  from {
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
  }
  to {
	-webkit-transform: rotate(360deg);
			transform: rotate(360deg);
  }
}
@keyframes jconfirm-spin {
  from {
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
  }
  to {
	-webkit-transform: rotate(360deg);
			transform: rotate(360deg);
  }
}
body[class*=jconfirm-no-scroll-] {
  overflow: hidden !important;
}
.jconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  font-family: inherit;
  overflow: hidden;
}
.jconfirm .jconfirm-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}
.jconfirm .jconfirm-bg.jconfirm-bg-h {
  opacity: 0 !important;
}
.jconfirm .jconfirm-scrollpane {
  -webkit-perspective: 500px;
		  perspective: 500px;
  -webkit-perspective-origin: center;
		  perspective-origin: center;
  display: table;
  width: 100%;
  height: 100%;
}
.jconfirm .jconfirm-row {
  display: table-row;
  width: 100%;
}
.jconfirm .jconfirm-cell {
  display: table-cell;
  vertical-align: middle;
}
.jconfirm .jconfirm-holder {
  max-height: 100%;
  padding: 50px 0;
}
.jconfirm .jconfirm-box-container {
  -webkit-transition: -webkit-transform;
  transition: -webkit-transform;
  transition: transform;
  transition: transform, -webkit-transform;
}
.jconfirm .jconfirm-box-container.jconfirm-no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
.jconfirm .jconfirm-box {
  background: white;
  border-radius: 4px;
  position: relative;
  outline: none;
  padding: 15px 15px 0;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
@-webkit-keyframes type-blue {
  1%,
  100% {
	border-color: #3498db;
  }
  50% {
	border-color: #5faee3;
  }
}
@keyframes type-blue {
  1%,
  100% {
	border-color: #3498db;
  }
  50% {
	border-color: #5faee3;
  }
}
@-webkit-keyframes type-green {
  1%,
  100% {
	border-color: #2ecc71;
  }
  50% {
	border-color: #54d98c;
  }
}
@keyframes type-green {
  1%,
  100% {
	border-color: #2ecc71;
  }
  50% {
	border-color: #54d98c;
  }
}
@-webkit-keyframes type-red {
  1%,
  100% {
	border-color: #e74c3c;
  }
  50% {
	border-color: #ed7669;
  }
}
@keyframes type-red {
  1%,
  100% {
	border-color: #e74c3c;
  }
  50% {
	border-color: #ed7669;
  }
}
@-webkit-keyframes type-orange {
  1%,
  100% {
	border-color: #f1c40f;
  }
  50% {
	border-color: #f4d03f;
  }
}
@keyframes type-orange {
  1%,
  100% {
	border-color: #f1c40f;
  }
  50% {
	border-color: #f4d03f;
  }
}
@-webkit-keyframes type-purple {
  1%,
  100% {
	border-color: #9b59b6;
  }
  50% {
	border-color: #b07cc6;
  }
}
@keyframes type-purple {
  1%,
  100% {
	border-color: #9b59b6;
  }
  50% {
	border-color: #b07cc6;
  }
}
@-webkit-keyframes type-dark {
  1%,
  100% {
	border-color: #34495e;
  }
  50% {
	border-color: #46627f;
  }
}
@keyframes type-dark {
  1%,
  100% {
	border-color: #34495e;
  }
  50% {
	border-color: #46627f;
  }
}
.jconfirm .jconfirm-box.jconfirm-type-animated {
  -webkit-animation-duration: 2s;
		  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
		  animation-iteration-count: infinite;
}
.jconfirm .jconfirm-box.jconfirm-type-blue {
  border-top: solid 7px #3498db;
  -webkit-animation-name: type-blue;
		  animation-name: type-blue;
}
.jconfirm .jconfirm-box.jconfirm-type-green {
  border-top: solid 7px #2ecc71;
  -webkit-animation-name: type-green;
		  animation-name: type-green;
}
.jconfirm .jconfirm-box.jconfirm-type-red {
  border-top: solid 7px #e74c3c;
  -webkit-animation-name: type-red;
		  animation-name: type-red;
}
.jconfirm .jconfirm-box.jconfirm-type-orange {
  border-top: solid 7px #f1c40f;
  -webkit-animation-name: type-orange;
		  animation-name: type-orange;
}
.jconfirm .jconfirm-box.jconfirm-type-purple {
  border-top: solid 7px #9b59b6;
  -webkit-animation-name: type-purple;
		  animation-name: type-purple;
}
.jconfirm .jconfirm-box.jconfirm-type-dark {
  border-top: solid 7px #34495e;
  -webkit-animation-name: type-dark;
		  animation-name: type-dark;
}
.jconfirm .jconfirm-box.loading {
  height: 120px;
}
.jconfirm .jconfirm-box.loading:before {
  content: '';
  position: absolute;
  left: 0;
  background: white;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: 1;
}
.jconfirm .jconfirm-box.loading:after {
  opacity: 0.6;
  content: '';
  height: 30px;
  width: 30px;
  border: solid 3px transparent;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  border-radius: 50%;
  -webkit-animation: jconfirm-spin 1s infinite linear;
		  animation: jconfirm-spin 1s infinite linear;
  border-bottom-color: dodgerblue;
  top: 50%;
  margin-top: -15px;
  z-index: 2;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  opacity: .6;
  text-align: center;
  font-size: 27px !important;
  line-height: 14px !important;
  display: none;
  z-index: 1;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon:empty {
  display: none;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon .fa {
  font-size: 16px;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon .glyphicon {
  font-size: 16px;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon .zmdi {
  font-size: 16px;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon:hover {
  opacity: 1;
}
.jconfirm .jconfirm-box div.jconfirm-title-c {
  display: block;
  font-size: 22px;
  line-height: 20px;
  -webkit-user-select: none;
	 -moz-user-select: none;
	  -ms-user-select: none;
		  user-select: none;
  cursor: default;
  padding-bottom: 15px;
}
.jconfirm .jconfirm-box div.jconfirm-title-c.jconfirm-hand {
  cursor: move;
}
.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  font-size: inherit;
  display: inline-block;
  vertical-align: middle;
}
.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c i {
  vertical-align: middle;
}
.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c:empty {
  display: none;
}
.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
  -webkit-user-select: none;
	 -moz-user-select: none;
	  -ms-user-select: none;
		  user-select: none;
  font-size: inherit;
  font-family: inherit;
  display: inline-block;
  vertical-align: middle;
}
.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title:empty {
  display: none;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 15px;
  height: auto;
  -webkit-transition: height 0.4s ease-in;
  transition: height 0.4s ease-in;
  display: inline-block;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll {
  overflow-y: hidden;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar {
  width: 3px;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 3px;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  overflow: auto;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content img {
  max-width: 100%;
  height: auto;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content:empty {
  display: none;
}
.jconfirm .jconfirm-box .jconfirm-buttons {
  padding-bottom: 11px;
}
.jconfirm .jconfirm-box .jconfirm-buttons > button {
  margin-bottom: 4px;
  margin-left: 2px;
  margin-right: 2px;
}
.jconfirm .jconfirm-box .jconfirm-buttons button {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  min-height: 1em;
  -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, -webkit-box-shadow 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background-image: none;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue {
  background-color: #3498db;
  color: #FFF;
  text-shadow: none;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue:hover {
  background-color: #2980b9;
  color: #FFF;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green {
  background-color: #2ecc71;
  color: #FFF;
  text-shadow: none;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover {
  background-color: #27ae60;
  color: #FFF;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
  background-color: #e74c3c;
  color: #FFF;
  text-shadow: none;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover {
  background-color: #c0392b;
  color: #FFF;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange {
  background-color: #f1c40f;
  color: #FFF;
  text-shadow: none;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:hover {
  background-color: #f39c12;
  color: #FFF;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
  background-color: #ecf0f1;
  color: #000;
  text-shadow: none;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
  background-color: #bdc3c7;
  color: #000;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple {
  background-color: #9b59b6;
  color: #FFF;
  text-shadow: none;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple:hover {
  background-color: #8e44ad;
  color: #FFF;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark {
  background-color: #34495e;
  color: #FFF;
  text-shadow: none;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark:hover {
  background-color: #2c3e50;
  color: #FFF;
}
.jconfirm .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c {
  color: #e74c3c !important;
}
.jconfirm .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c {
  color: #3498db !important;
}
.jconfirm .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c {
  color: #2ecc71 !important;
}
.jconfirm .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c {
  color: #9b59b6 !important;
}
.jconfirm .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c {
  color: #f1c40f !important;
}
.jconfirm .jconfirm-box.jconfirm-type-dark .jconfirm-title-c .jconfirm-icon-c {
  color: #34495e !important;
}
.jconfirm .jconfirm-clear {
  clear: both;
}
.jconfirm.jconfirm-rtl {
  direction: rtl;
}
.jconfirm.jconfirm-rtl div.jconfirm-closeIcon {
  left: 5px;
  right: auto;
}
.jconfirm.jconfirm-white .jconfirm-bg,
.jconfirm.jconfirm-light .jconfirm-bg {
  background-color: #444;
  opacity: .2;
}
.jconfirm.jconfirm-white .jconfirm-box,
.jconfirm.jconfirm-light .jconfirm-box {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
		  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.jconfirm.jconfirm-white .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0px;
}
.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons {
  float: right;
}
.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none;
}
.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default {
  -webkit-box-shadow: none;
		  box-shadow: none;
  color: #333;
}
.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default:hover {
  background: #ddd;
}
.jconfirm.jconfirm-white.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-light.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0px;
}
.jconfirm.jconfirm-black .jconfirm-bg,
.jconfirm.jconfirm-dark .jconfirm-bg {
  background-color: darkslategray;
  opacity: .4;
}
.jconfirm.jconfirm-black .jconfirm-box,
.jconfirm.jconfirm-dark .jconfirm-box {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
		  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: #444;
  border-radius: 5px;
  color: white;
}
.jconfirm.jconfirm-black .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0px;
}
.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons {
  float: right;
}
.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button {
  border: none;
  background-image: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none;
  -webkit-transition: background .1s;
  transition: background .1s;
  color: white;
}
.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default {
  -webkit-box-shadow: none;
		  box-shadow: none;
  color: #fff;
  background: none;
}
.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default:hover {
  background: #666;
}
.jconfirm.jconfirm-black.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-dark.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0px;
}
.jconfirm .jconfirm-box.hilight.jconfirm-hilight-shake {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
		  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
		  transform: translate3d(0, 0, 0);
}
.jconfirm .jconfirm-box.hilight.jconfirm-hilight-glow {
  -webkit-animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
		  animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
		  transform: translate3d(0, 0, 0);
}
@-webkit-keyframes shake {
  10%,
  90% {
	-webkit-transform: translate3d(-2px, 0, 0);
			transform: translate3d(-2px, 0, 0);
  }
  20%,
  80% {
	-webkit-transform: translate3d(4px, 0, 0);
			transform: translate3d(4px, 0, 0);
  }
  30%,
  50%,
  70% {
	-webkit-transform: translate3d(-8px, 0, 0);
			transform: translate3d(-8px, 0, 0);
  }
  40%,
  60% {
	-webkit-transform: translate3d(8px, 0, 0);
			transform: translate3d(8px, 0, 0);
  }
}
@keyframes shake {
  10%,
  90% {
	-webkit-transform: translate3d(-2px, 0, 0);
			transform: translate3d(-2px, 0, 0);
  }
  20%,
  80% {
	-webkit-transform: translate3d(4px, 0, 0);
			transform: translate3d(4px, 0, 0);
  }
  30%,
  50%,
  70% {
	-webkit-transform: translate3d(-8px, 0, 0);
			transform: translate3d(-8px, 0, 0);
  }
  40%,
  60% {
	-webkit-transform: translate3d(8px, 0, 0);
			transform: translate3d(8px, 0, 0);
  }
}
@-webkit-keyframes glow {
  0%,
  100% {
	-webkit-box-shadow: 0 0 0px red;
			box-shadow: 0 0 0px red;
  }
  50% {
	-webkit-box-shadow: 0 0 30px red;
			box-shadow: 0 0 30px red;
  }
}
@keyframes glow {
  0%,
  100% {
	-webkit-box-shadow: 0 0 0px red;
			box-shadow: 0 0 0px red;
  }
  50% {
	-webkit-box-shadow: 0 0 30px red;
			box-shadow: 0 0 30px red;
  }
}
/*Transition rules*/
.jconfirm {
  -webkit-perspective: 400px;
		  perspective: 400px;
}
.jconfirm .jconfirm-box {
  opacity: 1;
  -webkit-transition-property: all;
  transition-property: all;
}
.jconfirm .jconfirm-box.jconfirm-animation-top,
.jconfirm .jconfirm-box.jconfirm-animation-left,
.jconfirm .jconfirm-box.jconfirm-animation-right,
.jconfirm .jconfirm-box.jconfirm-animation-bottom,
.jconfirm .jconfirm-box.jconfirm-animation-opacity,
.jconfirm .jconfirm-box.jconfirm-animation-zoom,
.jconfirm .jconfirm-box.jconfirm-animation-scale,
.jconfirm .jconfirm-box.jconfirm-animation-none,
.jconfirm .jconfirm-box.jconfirm-animation-rotate,
.jconfirm .jconfirm-box.jconfirm-animation-rotatex,
.jconfirm .jconfirm-box.jconfirm-animation-rotatey,
.jconfirm .jconfirm-box.jconfirm-animation-scaley,
.jconfirm .jconfirm-box.jconfirm-animation-scalex {
  opacity: 0;
}
.jconfirm .jconfirm-box.jconfirm-animation-rotate {
  -webkit-transform: rotate(90deg);
		  transform: rotate(90deg);
}
.jconfirm .jconfirm-box.jconfirm-animation-rotatex {
  -webkit-transform: rotateX(90deg);
		  transform: rotateX(90deg);
  -webkit-transform-origin: center;
		  transform-origin: center;
}
.jconfirm .jconfirm-box.jconfirm-animation-rotatexr {
  -webkit-transform: rotateX(-90deg);
		  transform: rotateX(-90deg);
  -webkit-transform-origin: center;
		  transform-origin: center;
}
.jconfirm .jconfirm-box.jconfirm-animation-rotatey {
  -webkit-transform: rotatey(90deg);
		  transform: rotatey(90deg);
  -webkit-transform-origin: center;
		  transform-origin: center;
}
.jconfirm .jconfirm-box.jconfirm-animation-rotateyr {
  -webkit-transform: rotatey(-90deg);
		  transform: rotatey(-90deg);
  -webkit-transform-origin: center;
		  transform-origin: center;
}
.jconfirm .jconfirm-box.jconfirm-animation-scaley {
  -webkit-transform: scaley(1.5);
		  transform: scaley(1.5);
  -webkit-transform-origin: center;
		  transform-origin: center;
}
.jconfirm .jconfirm-box.jconfirm-animation-scalex {
  -webkit-transform: scalex(1.5);
		  transform: scalex(1.5);
  -webkit-transform-origin: center;
		  transform-origin: center;
}
.jconfirm .jconfirm-box.jconfirm-animation-top {
  -webkit-transform: translate(0px, -100px);
		  transform: translate(0px, -100px);
}
.jconfirm .jconfirm-box.jconfirm-animation-left {
  -webkit-transform: translate(-100px, 0px);
		  transform: translate(-100px, 0px);
}
.jconfirm .jconfirm-box.jconfirm-animation-right {
  -webkit-transform: translate(100px, 0px);
		  transform: translate(100px, 0px);
}
.jconfirm .jconfirm-box.jconfirm-animation-bottom {
  -webkit-transform: translate(0px, 100px);
		  transform: translate(0px, 100px);
}
.jconfirm .jconfirm-box.jconfirm-animation-zoom {
  -webkit-transform: scale(1.2);
		  transform: scale(1.2);
}
.jconfirm .jconfirm-box.jconfirm-animation-scale {
  -webkit-transform: scale(0.5);
		  transform: scale(0.5);
}
.jconfirm .jconfirm-box.jconfirm-animation-none {
  visibility: hidden;
}
.jconfirm.jconfirm-supervan .jconfirm-bg {
  background-color: rgba(54, 70, 93, 0.95);
  background-color: rgba(6, 6, 6, 0.95);
}
.jconfirm.jconfirm-supervan .jconfirm-box {
  background-color: transparent;
}
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-blue {
  border: none;
}
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-green {
  border: none;
}
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-red {
  border: none;
}
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-orange {
  border: none;
}
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-purple {
  border: none;
}
.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-dark {
  border: none;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-closeIcon {
  color: white;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c {
  text-align: center;
  color: white;
  font-size: 28px;
  font-weight: normal;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c > * {
  padding-bottom: 25px;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0px;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 25px;
}
.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content {
  text-align: center;
  color: white;
  font-size: 15px;
  line-height: 24px;
}
.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons {
  text-align: center;
}
.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button {
  font-size: 16px;
  border-radius: 2px;
  background: #303f53;
  background: linear-gradient(173deg, #1AFD6D 4.78%, #1DBC57 94.17%);
  box-shadow: none;
  color: #fff;
  border-radius: 100px;
  text-shadow: none;
  border: none;
  color: white;
  padding: 10px;
min-width: 140px;
}
.jconfirm.jconfirm-supervan.jconfirm-rtl .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0px;
}
.jconfirm.jconfirm-material .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.67);
}
.jconfirm.jconfirm-material .jconfirm-box {
  background-color: white;
  -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
		  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 25px 10px 25px;
}
.jconfirm.jconfirm-material .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0px;
}
.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
}
.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold;
}
.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-content {
  color: rgba(0, 0, 0, 0.87);
}
.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons {
  text-align: right;
}
.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons button {
  text-transform: uppercase;
  font-weight: 500;
}
.jconfirm.jconfirm-material.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0px;
}
.jconfirm.jconfirm-bootstrap .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.21);
}
.jconfirm.jconfirm-bootstrap .jconfirm-box {
  background-color: white;
  -webkit-box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
		  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
  border: solid 1px rgba(0, 0, 0, 0.4);
  padding: 15px 0 0;
}
.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0px;
}
.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
}
.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold;
  padding-left: 15px;
  padding-right: 15px;
}
.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-content {
  color: rgba(0, 0, 0, 0.87);
  padding: 0px 15px;
}
.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons {
  text-align: right;
  padding: 10px;
  margin: -5px 0 0px;
  border-top: solid 1px #ddd;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}
.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons button {
  font-weight: 500;
}
.jconfirm.jconfirm-bootstrap.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0px;
}
.jconfirm.jconfirm-modern .jconfirm-bg {
  background-color: slategray;
  opacity: .6;
}
.jconfirm.jconfirm-modern .jconfirm-box {
  background-color: white;
  -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
		  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 15px;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
  top: 15px;
  right: 15px;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: scale(0);
		  transform: scale(0);
  display: block;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 10px;
  font-size: 69px;
  color: #aaa;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
  text-align: center;
  font-size: 15px;
  color: #777;
  margin-bottom: 25px;
}
.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons {
  text-align: center;
}
.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: background .1s;
  transition: background .1s;
  padding: 10px 20px;
}
.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button + button {
  margin-left: 4px;
}
.jconfirm.jconfirm-modern.jconfirm-open .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  -webkit-transform: scale(1);
		  transform: scale(1);
}


/* Select-dropdown */
.sel-field {
  width: 100%;
  font-family: system-ui, -apple-system, sans-serif;
  color: #fff;
}

.sel-label {
  font-size: 16px;
  margin-bottom: 10px;
}

.sel-dropdown {
  position: relative;
  border-radius: 100px;
  transition: border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}


.sel-selected {
  height: 48px;
  border-radius: 100px;
  border: 1px solid #363636;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  font-size: 16px;
  color: #fff;
  transition: all ease-in 0.1s;
}


.sel-selected:hover,
.sel-open .sel-selected,
.sel-selected:focus-within{
	border: 1px solid #0facf3;
}

/* стрелка */
.sel-chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: .2s ease;
  margin-left: 15px;
}

.sel-dropdown.sel-open .sel-chev {
  transform: rotate(-135deg);
}
.sel-dropdown.sel-open .sel-chev {
  transform: rotate(-135deg);
}

.sel-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 54px;
  background: #0a0a0a;
  border-radius: 20px;
  border: 1px solid #363636;
  padding: 10px 0;
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: .2s ease;
  z-index: 100;
}

.sel-dropdown.sel-open .sel-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sel-item {
  padding: 12px 20px;
  font-size: 16px;
  transition: .15s;
}

.sel-item:hover {
  background: rgba(47,134,255,.15);
}

.slider--opr > li a{
	height: 100%;
	display: block;
}
.slider--opr > li a:after{
	border-radius: 14px;
}
.slider--opr > li a:hover:after{
	width: auto;
	height: auto;
	left: 5px; right: 5px;
	top: 5px; bottom: 5px;
}
.slider--opr > li a img:hover{
	border-color: rgba(255,255,255,0.2);
}
.slider--opr > li a img{
	max-width: 100%;
	height: 100%;
	display: block;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.1);
	transition: 0.25s;
}
