@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&subset=cyrillic");
:root {
  --bg: #111;
  --bg-sep: #0d0d0d;
  --block: #181818;
  --block-accent: #222;
  --block-accent-hover: #2a2a2a;
  --block-error: #a32626;
  --block-error-text: #fff;
  --title: #eee;
  --text: #aaa;
  --text-secondary: #828282;
  --text-secondary-hover: #8f8f8f;
  --text-dark: #444;
  --color-1: #519eeb;
  --color-2: #5169eb;
  --white: #fff;
  --white-secondary: #fff5;
  --bt-white: #f0f0ff;
  --bt-white-hover: #fff;
  --bt-white-text: #222;
  --link: #519eeb;
  --link-hover: #5da8f3;
  --green: #00c300;
  --red: #f00;
  --yellow: rgb(255, 136, 0);
  --reward-bg: rgba(0, 0, 0, 0.8);
  --image-file-bg: rgba(0, 0, 0, 0.8);
  --modal-bg: rgba(0, 0, 0, 0.8);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes loading-logo {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-60deg);
  }
  40% {
    transform: rotate(60deg);
  }
  60% {
    transform: rotate(-60deg);
  }
  80% {
    transform: rotate(60deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* @keyframes logo {
	0% {
		transform: rotate(0deg);
	}
	18% {
		transform: rotate(-60deg);
	}
	36% {
		transform: rotate(60deg);
	}
	54% {
		transform: rotate(-420deg);
	}
	72% {
		transform: rotate(-300deg);
	}
	90% {
		transform: rotate(-360deg);
	}
	100% {
		transform: rotate(-360deg);
	}
} */
body {
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  background: var(--bg);
  color: var(--text);
  letter-spacing: -0.08px;
  -webkit-text-size-adjust: 100%;
}

.bt,
button {
  display: inline-block;
  padding: 8px 20px;
  border: none;
  line-height: normal;
  background: #519eeb;
  background: var(--color-1);
  border-radius: 15px;
  color: #fff;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-sizing: border-box;
  box-shadow: 0 1px 1px 0 rgba(50, 50, 50, 0.2);
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  text-decoration: none;
  /*&:hover {
  //		background: var(--c-bt-hover);//v
  	}*/
  /* &:active {
  	padding-top: 9px;
  	padding-bottom: 7px;
  	//		background: var(--c-bt-active);//v
  } */
}
.bt[disabled],
button[disabled] {
  pointer-events: none;
  opacity: 0.7;
}
.bt.white,
button.white {
  background: #fff !important;
  color: #555;
}
.bt.white:hover,
button.white:hover {
  color: #777;
}
.bt.white:active,
button.white:active {
  background: #f7f7f7 !important;
  color: #555;
}
.bt.grey,
button.grey {
  background: #222 !important;
  color: #aaa !important;
}
.bt.grey:hover,
button.grey:hover {
  background: #242424 !important;
}
.bt.grey:active,
button.grey:active {
  background: #262626 !important;
}
.bt.red,
button.red {
  background: #b52b2b !important;
  color: #fff !important;
}
.bt.red:hover,
button.red:hover {
  background: #c63333 !important;
}
.bt.red:active,
button.red:active {
  background: #aa2525 !important;
}
.bt.border,
button.border {
  background: transparent !important;
  border: 1px solid #fff;
  padding: 6px 16px 7px;
}
.bt.border:hover, .bt.border:active,
button.border:hover,
button.border:active {
  background: transparent !important;
}
.bt.border:active,
button.border:active {
  padding-top: 7px;
  padding-bottom: 6px;
}
.bt.border.white,
button.border.white {
  border-color: #fff !important;
  color: #fff !important;
}
.bt.border.white:hover,
button.border.white:hover {
  border-color: #eee !important;
  color: #eee !important;
}
.bt.border.white:active,
button.border.white:active {
  border-color: #ddd !important;
  color: #ddd !important;
}
.bt .icon,
button .icon {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: -3px 3px 0 0;
  background: 50% 50%/contain no-repeat;
  vertical-align: middle;
}
.bt .icon.back-icon,
button .icon.back-icon {
  background-image: url(/files/images/icons/back.svg);
}
.bt:hover.white .icon,
button:hover.white .icon {
  opacity: 0.8;
}
.bt:hover.grey .icon,
button:hover.grey .icon {
  filter: brightness(110%);
}
.bt.loading,
button.loading {
  position: relative;
  width: 70px;
  font-size: 0;
  pointer-events: none;
}
.bt.loading:before,
button.loading:before {
  content: ".";
  opacity: 0;
  font-size: 13px;
}
.bt.loading:after,
button.loading:after {
  display: block;
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  margin: -7px 0 0 -7px;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-left-color: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotate 1.5s infinite linear;
}
.bt.loading.white:after,
button.loading.white:after {
  border-top-color: #222;
  border-left-color: #222;
}
.bt.loading.grey:after,
button.loading.grey:after {
  border-top-color: #aaa;
  border-left-color: #aaa;
}

.link {
  display: inline-block;
  color: var(--link);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.link:hover {
  color: var(--link-hover);
}
.link.grey {
  color: var(--text-secondary);
}
.link.grey:hover {
  color: var(--text-secondary-hover);
}

#page {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

#header {
  position: relative;
  padding: 20px 0 0;
  margin: 0 10px 10px;
  color: #fff;
  font-size: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#header .container {
  display: flex;
  border-radius: 10px;
  align-items: center;
}
#header .logo {
  display: inline-block;
  padding: 10px 15px;
  color: #fff;
  flex-grow: 1;
}
#header .logo .image {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(/files/images/logo.svg) 50% 50%/contain no-repeat;
  vertical-align: middle;
}
#header .logo .text {
  display: inline-block;
  padding: 0 0 0 8px;
  vertical-align: middle;
}
#header .logo .text h1 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
}
#header .logo .text h1 span {
  color: var(--white-secondary);
}
#header .logo .text h2 {
  margin: 0;
  padding: 3px 0;
  font-size: 14px;
  font-weight: 400;
}
#header .header-right {
  flex-grow: 1;
}
#header .header-right-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
#header .header-right-main {
  display: flex;
}
#header .header-right-bt {
  display: none;
  padding: 0 20px 0 0;
  text-align: right;
}
#header .header-right-bt .btn {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
#header .header-right-bt .btn:active {
  background: rgba(255, 255, 255, 0.2);
}
#header .header-right-bt .btn div {
  position: absolute;
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -7px;
  background: #fff;
  border-radius: 4px;
}
#header .header-right-bt .btn div:before, #header .header-right-bt .btn div:after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 4px;
}
#header .header-right-bt .btn div:before {
  top: -5px;
}
#header .header-right-bt .btn div:after {
  bottom: -5px;
}
#header .menu {
  padding: 10px 20px 10px 0;
  flex-grow: 1;
  text-align: right;
}
#header .menu a {
  display: inline-block;
  position: relative;
  padding: 0 15px;
  line-height: 50px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-radius: 10px;
  /* &:before {
  	content: "";
  	position: absolute;
  	width: 1px;
  	height: 20px;
  	top: 50%;
  	left: 0;
  	margin: -10px 0 0;
  	background: rgba(255, 255, 255, 0.2);
  }
  &:first-of-type:before {
  	display: none;
  } */
}
#header .menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}
#header .login {
  padding: 0 20px;
  line-height: 70px;
  text-align: right;
}
#header .login .bt {
  margin: -3px 0 0 10px;
  padding: 10px 15px;
  border-radius: 19px;
  vertical-align: middle;
  background: var(--bt-white) !important;
  color: var(--bt-white-text) !important;
}
#header .login .bt:hover {
  background: var(--bt-white-hover) !important;
}
#header .login .logout {
  display: inline-block;
  margin: 0 0 0 30px;
  cursor: pointer;
  font-size: 0;
  vertical-align: middle;
}
#header .login .logout:hover {
  opacity: 0.9;
}
#header .login .logout .icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: -1px 3px 0 0;
  background: url(/files/images/icons/logout.svg) 50% 50%/contain no-repeat;
  vertical-align: middle;
}
#header .login .logout span {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  font-weight: 500;
}

.num-space {
  display: inline-block;
  width: 3px;
}

.marg-top-5 {
  margin-top: 5px !important;
}

.marg-top-10 {
  margin-top: 10px !important;
}

.marg-top-15 {
  margin-top: 15px !important;
}

.marg-top-20 {
  margin-top: 20px !important;
}

.marg-top-25 {
  margin-top: 25px !important;
}

.marg-top-30 {
  margin-top: 30px !important;
}

.block {
  margin: 10px;
  padding: 15px 20px;
  background: var(--block);
  border-radius: 10px;
}
.block.no-pad {
  padding: 0;
}
.block.no-pad .block-title {
  padding: 15px 20px 0;
}
.block.no-pad .block-text {
  margin: 0 0 10px;
  padding: 0 20px;
}
.block.no-pad .block-text.sep {
  margin: 0;
  padding: 15px 20px;
  border-top: 1px solid var(--bg);
}
.block.no-pad .block-text.error-block {
  margin: 15px 20px;
  padding: 10px 15px;
}
.block.no-bg {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
}
.block.no-bottom-margin {
  margin-bottom: 0;
}
.block .block-empty {
  border-top: 1px solid var(--bg);
  padding: 50px 0;
  font-weight: 600;
  text-align: center;
}
.block .block-actions {
  padding: 20px 0;
  border-top: 1px solid var(--bg);
  text-align: center;
}
.block .block-actions .no-actions {
  color: var(--text-dark);
}
.block .block-actions .loading {
  width: 20px;
  height: 20px;
  margin: 10px auto;
  border: 3px solid transparent;
  border-top-color: #333;
  border-left-color: #333;
  border-radius: 50%;
  animation: rotate 1.5s infinite linear;
}
.block .block-actions .load-error .link {
  margin: 5px 0 0;
}

.error-color {
  color: var(--red);
  font-weight: 500;
}

.error-block {
  background: var(--block-error);
  color: var(--block-error-text);
}
.error-block .link {
  color: var(--white);
}
.error-block:not(.block) {
  padding: 10px 15px;
  border-radius: 10px;
}
.error-block:not(.block) .text {
  line-height: 18px;
}

.block-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: #eee;
  color: var(--title);
}
.block-title.block-title-flex {
  display: flex;
}
.block-title > span,
.block-title .block-title-main > span {
  margin: 0 0 0 10px;
  font-size: 14px;
  color: var(--text-dark);
}
.block-title .block-title-main {
  flex-grow: 1;
  padding: 0 10px 0 0;
}
.block-title .right {
  font-size: 13px;
  text-align: right;
}
.block-title .right .link {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.block-text {
  line-height: 18px;
}

.block-pad {
  padding: 15px 20px;
  border-top: 1px solid var(--bg);
}
.block-pad:not(.no-sep) > :first-child {
  margin-top: 0;
}
.block-pad.no-sep {
  padding-top: 0;
  border-top: none;
}
.block-pad.no-border {
  border-top: none;
}
.block-pad.line-height {
  line-height: 18px;
}
.block-pad .block-pad-title {
  font-weight: 600;
  color: var(--title);
}

.home-page .first-screen {
  display: flex;
  height: 100vh;
  align-items: center;
}
.home-page .first-screen .center-block {
  flex-grow: 1;
}
.home-page .first-screen .logo {
  padding: 70px 50px 70px 20px;
  color: #fff;
  flex-grow: 1;
  text-align: center;
  background: var(--block);
  border-radius: 50px;
}
.home-page .first-screen .logo .image {
  display: inline-block;
  width: 200px;
  height: 200px;
  background: url(/files/images/logo.svg) 50% 50%/contain no-repeat;
  vertical-align: middle;
  transform: rotate(-30deg);
}
.home-page .first-screen .logo .text {
  display: inline-block;
  padding: 0 0 0 30px;
  vertical-align: middle;
  text-align: left;
}
.home-page .first-screen .logo .text h1 {
  margin: 0;
  padding: 0;
  font-size: 60px;
  font-weight: 700;
}
.home-page .first-screen .logo .text h1 span {
  color: var(--white-secondary);
}
.home-page .first-screen .logo .text h2 {
  margin: 0;
  padding: 3px 0;
  font-size: 18px;
  font-weight: 400;
}
.home-page .first-screen .down {
  margin: 20px 0 0;
  display: flex;
}
.home-page .first-screen .menu {
  padding: 10px 20px 10px 0;
  flex-grow: 1;
  text-align: right;
}
.home-page .first-screen .menu a {
  display: inline-block;
  position: relative;
  padding: 0 15px;
  line-height: 50px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-radius: 10px;
  /* &:before {
  	content: "";
  	position: absolute;
  	width: 1px;
  	height: 20px;
  	top: 50%;
  	left: 0;
  	margin: -10px 0 0;
  	background: rgba(255, 255, 255, 0.2);
  }
  &:first-of-type:before {
  	display: none;
  } */
}
.home-page .first-screen .menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.home-page .first-screen .login {
  padding: 0 20px;
  line-height: 70px;
  text-align: right;
}
.home-page .first-screen .login .bt {
  margin: -3px 0 0 10px;
  padding: 10px 15px;
  border-radius: 19px;
  vertical-align: middle;
  background: var(--bt-white) !important;
  color: var(--bt-white-text) !important;
}
.home-page .first-screen .login .bt:hover {
  background: var(--bt-white-hover) !important;
}
.home-page .first-screen .login .logout {
  display: inline-block;
  margin: 0 0 0 30px;
  cursor: pointer;
  font-size: 0;
  vertical-align: middle;
}
.home-page .first-screen .login .logout:hover {
  opacity: 0.9;
}
.home-page .first-screen .login .logout .icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: -1px 3px 0 0;
  background: url(/files/images/icons/logout.svg) 50% 50%/contain no-repeat;
  vertical-align: middle;
}
.home-page .first-screen .login .logout span {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  font-weight: 500;
}

#footer {
  margin: 20px 0 0;
  padding: 1px 0 20px;
  /* &:before {
  	content: '';
  	position: absolute;
  	width: 100%;
  	height: 1px;
  	left: 0;
  	// margin: -20px 0 0;
  	margin: -5px 0 0;
  	background: var(--bg-sep);
  } */
}
#footer .support {
  display: flex;
  position: relative;
  margin: 20px 10px 10px;
  padding: 15px 20px;
  background: var(--block);
  border-radius: 10px;
  color: #fff;
  font-size: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
}
#footer .support .text {
  flex-grow: 1;
  margin: 0 15px 0 0;
}
#footer .support .text .title {
  font-size: 16px;
  font-weight: 600;
}
#footer .support .text p {
  margin: 5px 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 18px;
}
#footer .support .bt {
  white-space: nowrap;
}
#footer .footer {
  display: flex;
  margin: 15px 10px 0;
  background: var(--block);
  border-radius: 10px;
  align-items: center;
  /* .payment-systems {
  	display: none;
  	flex-grow: 1;

  	.title {
  		// padding: 0 0 0 3px;
  		color: var(--text-dark);
  		font-size: 11px;
  		font-weight: 600;
  	}
  	.image {
  		width: 130px;
  		height: 25px;
  		background: url(/files/images/payment-systems.svg) 50% 50% / contain no-repeat;
  		filter: grayscale(1);
  	}
  } */
}
#footer .footer .logo {
  margin: 0 15px 0 0;
  padding: 10px 15px;
  white-space: nowrap;
  font-size: 0;
  /* .vk-bt {
  	margin: 10px 0 0 58px;
  } */
}
#footer .footer .logo .image {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: -2px 0 0;
  background: url(/files/images/logo.svg) 50% 50%/contain no-repeat;
  vertical-align: middle;
}
#footer .footer .logo .text {
  display: inline-block;
  padding: 0 0 0 10px;
  vertical-align: middle;
}
#footer .footer .logo .text h1 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
}
#footer .footer .logo .text h1 span {
  color: var(--white-secondary);
}
#footer .footer .logo .text h2 {
  margin: 0;
  padding: 1px 0;
  font-size: 13px;
  font-weight: 400;
}
#footer .footer .lightalex-logo {
  font-size: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#footer .footer .lightalex-logo a {
  padding: 15px;
  text-decoration: none;
}
#footer .footer .lightalex-logo span {
  display: inline-block;
  font-size: 12px;
  color: var(--text-secondary);
  vertical-align: middle;
}
#footer .footer .lightalex-logo .image {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 40px;
  top: -2px;
  background: url(/files/images/lightalex-logo-black.svg) 50% 50%/contain no-repeat;
  vertical-align: middle;
}
#footer .footer .other {
  margin: 0 40px 0 0;
  white-space: nowrap;
}
#footer .footer .links {
  display: flex;
  flex-grow: 1;
  margin: 0 35px 0 0;
  padding: 15px 0;
  align-items: center;
}
#footer .footer .links .col {
  margin: 0 35px 0 0;
}
#footer .footer .links a {
  display: block;
  margin: 5px 0;
  color: var(--link);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}
#footer .footer .links a:hover {
  color: var(--link-hover);
}

@media screen and (max-width: 920px) {
  #header .header-right-main {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin: 10px 0 0;
    background: var(--block);
    white-space: nowrap;
    border-radius: 10px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  }
  #header .header-right-main:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    right: 25px;
    border: 10px solid transparent;
    border-bottom-color: var(--block);
    border-top-width: 0px;
  }
  #header .header-right-main .menu {
    padding: 10px 10px 0;
  }
  #header .header-right-main .menu a {
    display: block;
    line-height: 40px;
    text-align: left;
    color: var(--link);
    font-weight: 600;
  }
  #header .header-right-main .menu a:hover {
    background: var(--block-accent);
  }
  #header .header-right-main .login {
    margin: 10px 0 20px;
    line-height: normal;
  }
  #header .header-right-main .login .bt {
    margin: 0;
  }
  #header .header-right-bt {
    display: block;
  }
  #header.active-nav .header-right {
    position: relative;
    z-index: 999;
  }
  #header.active-nav .header-right-bg {
    display: block;
  }
  #header.active-nav .header-right-main {
    display: block;
  }
  #footer {
    padding-bottom: 40px;
  }
  #footer .footer {
    padding: 10px 0 15px;
    flex-wrap: wrap;
  }
  #footer .footer .logo {
    margin: 10px 0 10px 15px;
    padding: 0;
  }
  #footer .footer .other {
    margin: 10px 20px;
    flex-grow: 1;
    text-align: right;
  }
  #footer .footer .links {
    width: 100%;
    margin: 0 20px;
  }
  #footer .footer .links .col:last-of-type {
    margin-right: 0;
  }
  #footer .footer .lightalex-logo {
    margin: 5px 20px 0 2px;
  }
}
@media screen and (max-width: 600px) {
  #footer .support {
    flex-direction: column;
    align-items: stretch;
  }
  #footer .support .text {
    margin: 0;
  }
  #footer .support .bt {
    margin-top: 15px;
  }
}
@media screen and (max-width: 470px) {
  #footer .footer .logo .text h1 {
    font-size: 16px;
  }
}
@media screen and (max-width: 430px) {
  #footer .footer .other {
    text-align: left;
  }
}
@media screen and (max-width: 380px) {
  #header .logo {
    white-space: nowrap;
  }
  #header .logo .text {
    white-space: normal;
  }
  #header .logo .text h1 {
    font-size: 18px;
  }
  #header .logo .text h2 {
    font-size: 13px;
  }
}
@media screen and (max-width: 325px) {
  #header .logo {
    white-space: nowrap;
  }
  #header .logo .image {
    width: 34px;
    height: 34px;
  }
  #header .logo .text h1 {
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */