@import url(vendor.css);
@import url(fonts.css);

html {
  height: 100%;
}

body {
  font-family: Formular, sans-serif !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-width: 320px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}

a {
  color: #337ab7;
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}

ul {
  list-style-type: none;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

address {
  padding-left: 15px;
}

header {
  width: 100%;
  max-width: 1280px;
}

header a {
  color: white;
}

header .toolbar {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  width: 100%;
}

header .toolbar .top {
  height: 21px;
  display: flex;
  flex-direction: row-reverse;
}

header .toolbar .top>* {
  display: flex;
}

header .toolbar .top .spacer {
  width: 85px;
  height: 100%;
  background: #eb4c6e;
}

header .toolbar .top .lang-switcher {
  font-size: 11px;
  padding-right: 20px;
}

header .toolbar .top .lang-switcher a {
  margin-right: 15px;
  color: #6b6b6b;
  cursor: pointer;
}

header .toolbar .top .lang-switcher a.active {
  color: #ea4b6e;
  text-decoration: underline;
}

header .toolbar .top .lang-switcher a:hover {
  text-decoration: underline;
}

header .toolbar .bottom {
  height: auto;
  background: #eb4c6e;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  header .toolbar .bottom {
    justify-content: center;
  }
}

header .toolbar .bottom>* {
  display: flex;
}

header .toolbar .bottom .menu {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 76px;
}

header .toolbar .bottom .menu .navbar-menu {
  display: flex;
  flex-grow: 1;
  position: relative;
  background: #eb4c6e;
}

@media screen and (max-width: 1176px) {
  header .toolbar .bottom .menu .navbar-menu {
    position: absolute;
    top: 76px;
    right: 0;
    flex-direction: column;
    display: none;
    z-index: 9;
    border-top: 1px solid #c0c0c050;
  }

  header .toolbar .bottom .menu .navbar-menu.is-active {
    display: block;
  }
}

@media screen and (max-width: 375px) {
  header .toolbar .bottom .menu .navbar-menu {
    width: 100%;
  }
}

header .toolbar .bottom .menu .navbar-brand {
  display: flex;
}

@media screen and (max-width: 1176px) {
  header .toolbar .bottom .menu .navbar-brand {
    width: 100%;
  }
}

header .toolbar .bottom .menu .navbar-brand a.logo {
  background: url(../img/main-logo.svg) 0 0 no-repeat;
  display: block;
  width: 253px;
  height: 36px;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  header .toolbar .bottom .menu .navbar-brand a.logo {
    width: 253px;
    height: 30px;
  }
}

header .toolbar .bottom .menu ul.links {
  margin: 0;
  padding: 0 10px 0 38px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: left;
}

@media screen and (max-width: 1176px) {
  header .toolbar .bottom .menu ul.links {
    margin: 0;
    min-width: 244px;
    flex-direction: column;
    display: flex;
    padding: 12px 34px;
  }
}

@media screen and (min-width: 1177px) {
  header .toolbar .bottom .menu ul.links:last-child {
    margin-right: 25px;
  }
}

header .toolbar .bottom .menu ul.links li {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
}

@media screen and (max-width: 1176px) {
  header .toolbar .bottom .menu ul.links li {
    display: inline-block;
    margin-right: 21px;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    margin: 10px 0;
  }
}

@media screen and (min-width: 1177px) {
  header .toolbar .bottom .menu ul.links li {
    margin: 0 12px;
  }

  header .toolbar .bottom .menu ul.links li:first-child {
    margin-left: 0;
  }

  header .toolbar .bottom .menu ul.links li:last-child {
    margin-left: auto;
    margin-right: 0;
  }
}

header .toolbar .bottom .menu ul.links li a {
  cursor: pointer;
}

header .toolbar .bottom .menu ul.links li a:hover {
  text-decoration: underline;
}

header .toolbar .bottom .menu .balance {
  display: flex;
  width: 155px;
  height: 46px;
  margin: 15px;
  border: solid 2px white;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1176px) {
  header .toolbar .bottom .menu .balance {
    margin: 15px auto;
  }
}

header .toolbar .bottom .menu .balance a {
  font-size: 16px;
  color: white;
  cursor: text;
  white-space: nowrap;
  text-decoration: none;
}

header .toolbar .bottom .menu .balance a .value {
  font-weight: bold;
}

header .toolbar .bottom .menu .navbar-burger {
  right: 15px;
  cursor: pointer;
  display: block;
  height: 50px;
  position: relative;
  width: 50px;
}

header .toolbar .bottom .menu .navbar-burger span {
  background-color: currentColor;
  display: block;
  width: 30px;
  height: 2px;
  left: calc(50% - 15px);
  position: absolute;
  transform-origin: center;
  transition-duration: 86ms;
  transition-property: background-color, opacity, transform;
  transition-timing-function: ease-out;
}

header .toolbar .bottom .menu .navbar-burger span:nth-child(1) {
  top: calc(50% - 9px);
}

header .toolbar .bottom .menu .navbar-burger span:nth-child(2) {
  top: 50%;
}

header .toolbar .bottom .menu .navbar-burger span:nth-child(3) {
  top: calc(50% + 9px);
}

header .toolbar .bottom .menu .navbar-burger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

header .toolbar .bottom .menu .navbar-burger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

header .toolbar .bottom .menu .navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

header .toolbar .bottom .menu .navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media screen and (min-width: 1177px) {
  header .toolbar .bottom .menu .navbar-burger {
    display: none;
  }
}

main {
  display: flex;
  flex: 1 0 auto;
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
  //padding: 25px 0;
}

main>section {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: start;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 8px;
  overflow-x: auto;
}

main h1.page-title {
  color: #222;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 30px;
}

form p.error-message {
  text-align: center;
}

.button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.button-container button {
  margin: 0 10px;
}

.privacy-policy h3.section {
  text-align: left;
  padding-left: 30px;
  margin: 15px 0;
}

.privacy-policy h4.subsection {
  text-align: left;
  padding-left: 30px;
  margin: 5px 0;
}

.privacy-policy ul.section {
  text-indent: 30px;
  text-align: justify;
  margin: 5px 0;
}

.privacy-policy ul.section ul {
  list-style-type: disc;
  padding-left: 60px;
  text-indent: 0;
}

footer {
  width: 100%;
  flex-shrink: 0;
  background: #eb4c6e;
  display: flex;
  justify-content: center;
}

footer a {
  color: white;
}

footer .content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer .content>* {
  display: flex;
  margin: 10px 20px;
}

footer .copyright {
  font-size: 11px;
  color: white;
}

footer .terms {
  font-size: 11px;
  color: white;
}

footer .terms a {
  cursor: pointer;
  text-decoration: underline;
}

footer .social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 7px;
  background-position: 0 0;
  background-repeat: no-repeat;
  cursor: pointer;
}

footer .social .vk {
  background-image: url(../img/social/vk.svg);
}

footer .social .fb {
  background-image: url(../img/social/fb.svg);
}

footer .social .ok {
  background-image: url(../img/social/ok.svg);
}

footer .social .twitter {
  background-image: url(../img/social/twitter.svg);
}

footer .social .inst {
  background-image: url(../img/social/inst.svg);
}

footer .app-links a {
  width: 81px;
  height: 31px;
  display: inline-block;
  background-position: 0 0;
  background-repeat: no-repeat;
}

footer .app-links a.google-play {
  background-image: url(../img/apps/google-play-badge_en.png);
  background-size: 81px;
}

footer .app-links a.apple-store {
  background-image: url(../img/apps/apple-store-badge_en.svg);
  background-size: 66px;
  background-position-y: 4px;
}

footer .logo a {
  display: block;
  width: 48px;
  height: 35px;
  background-size: 48px;
  background: url(../img/misc/key-button.svg) 0 0 no-repeat;
}

.cdk-global-scrollblock {
  overflow-y: auto;
}

.mat-select-panel,
.mat-select-bottom-aligned {
  position: relative;
  top: 21px;
  border: 1px solid lightgrey;
  box-sizing: border-box;
  overflow-x: hidden !important;
}

.mat-button-toggle {
  color: #000000de;
  font-size: 14px;
}

.mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) !important;
}

.mat-datepicker-popup {
  margin-left: -16px;
}

.mat-dialog-container {
  min-width: 318px;
}

.select-form-field .mat-form-field-infix {
  border-top: 0 solid transparent !important;
  padding-bottom: 2px;
}