/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

body {
  line-height: 1;
}

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;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  /*font-size: 100%; */
  box-sizing: border-box;
  outline: 0;
}

body, #root {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  background-color: #232D48;
  color: #FFFFFF;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1064px;
  padding: 0 20px;
  margin: 0 auto;
}

.head {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.06;
  color: #fff;
}
@media (max-width: 768px) {
  .head {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .head {
    font-size: 28px;
  }
}
.c-empty {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.c-empty--page {
  min-height: 100vh;
}
.c-empty__logo {
  margin-bottom: 10px;
}
.c-empty__logo .c-logo__img-svg {
  height: 30vh;
  width: auto;
  max-height: 300px;
}
.c-empty__actions {
  margin-top: auto;
}
.c-empty__msg {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}
@media (max-width: 768px) {
  .c-empty__msg {
    font-size: 16px;
  }
}
button,
a {
  font-family: "Inter", sans-serif;
  outline: none;
}

.btn {
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
}
.btn:visited, .btn:active {
  text-decoration: none;
}
.btn:hover {
  cursor: pointer;
}
.btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.btn-blue {
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  padding: 16px 48px;
  background: #00D2FE;
  border-radius: 85px;
  border: none;
}

.btn-iconed {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-outline {
  background-color: transparent;
  font-weight: 700;
  font-size: 22px;
  color: #707A96;
  padding: 16px 48px;
  border: 1px solid #707A96;
  border-radius: 85px;
}

.btn-icon {
  background-color: transparent;
  border: none;
}

.btn-fw {
  width: 100%;
}
