@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

@font-face {
  font-family: "ContemporaryType";
  src: url("/fonts/ContemporaryTypeVariable.woff2") format("woff2 supports variations"), url("/fonts/ContemporaryTypeVariable.woff2") format("woff2-variations");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ContemporaryType";
  src: url("/fonts/ContemporaryTypeItalicVariable.woff2") format("woff2 supports variations"), url("/fonts/ContemporaryTypeItalicVariable.woff2") format("woff2-variations");
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ContemporaryTypeDisplay";
  src: url("/fonts/ContemporaryType-DisplayRegular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ContemporaryTypeDisplay";
  src: url("/fonts/ContemporaryType-DisplayHeavy.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*----------------------------- */
/*------ Dark theme ----------- */
/*----------------------------- */
/*-------------------*/
/*  Fonts  */
/*-------------------*/
/* colors */
/* break points responsive */
.row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.3s ease-out, transform 0.6s ease-out;
}
.row + .row {
  margin-top: 30px;
}
.row .col {
  width: calc(33.333% - 20px);
}
.row .col + .col {
  margin-left: 30px;
}
.row .col.col-2, .row .col.box_col-2 {
  width: calc(66.666% - 10px);
}
.row .col.col-3, .row .col.full, .row .col.box_col-3, .row .col.box_full {
  width: 100%;
}
.row .col.col-1-2 {
  width: calc(50% - 15px);
}
.row .col.col-right {
  margin-left: auto;
}
.row .col.col-center {
  margin-left: auto;
  margin-right: auto;
}
.row .col img {
  width: 100%;
  height: auto;
}
.row.full {
  max-width: none;
}
.row[class*=inview] {
  opacity: 0;
  transform: translateY(30px);
}
.row.visible {
  opacity: 1;
  transform: translateY(0px);
}

.row-content.box_full {
  max-width: none;
}
.row-content.box_full .row {
  max-width: none;
}

button,
.btn,
input[type=submit] {
  font-family: "ContemporaryType", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 100%;
  font-weight: 300;
  font-feature-settings: "tnum" on, "lnum" on;
  background-color: #fff;
  border: none;
  color: #000;
  height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  transition-property: color, background-color, border;
  vertical-align: bottom;
  box-sizing: border-box;
  text-decoration: none;
}
@media only screen and (max-width: 1300px) {
  button,
.btn,
input[type=submit] {
    font-size: calc(24px * 0.9);
  }
}
@media only screen and (max-width: 600px) {
  button,
.btn,
input[type=submit] {
    font-size: 16px;
  }
}
button > span,
.btn > span,
input[type=submit] > span {
  position: relative;
  top: -1px;
}
button:hover, button:focus,
.btn:hover,
.btn:focus,
input[type=submit]:hover,
input[type=submit]:focus {
  background-color: #E74C30;
}
button:active,
.btn:active,
input[type=submit]:active {
  opacity: 0.7;
  transform: scale(0.97);
}
button.btn-active,
.btn.btn-active,
input[type=submit].btn-active {
  background-color: #E74C30;
}
button.btn-active:hover, button.btn-active:focus,
.btn.btn-active:hover,
.btn.btn-active:focus,
input[type=submit].btn-active:hover,
input[type=submit].btn-active:focus {
  background-color: #fff;
}
button.btn-grey:not(:hover),
.btn.btn-grey:not(:hover),
input[type=submit].btn-grey:not(:hover) {
  background-color: #0e1011;
}
button.btn-ghost,
.btn.btn-ghost,
input[type=submit].btn-ghost {
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
}
button.btn-ghost:not(.btn-blue),
.btn.btn-ghost:not(.btn-blue),
input[type=submit].btn-ghost:not(.btn-blue) {
  color: #83929B;
}
button.btn-ghost:not(.btn-blue):hover, button.btn-ghost:not(.btn-blue):focus,
.btn.btn-ghost:not(.btn-blue):hover,
.btn.btn-ghost:not(.btn-blue):focus,
input[type=submit].btn-ghost:not(.btn-blue):hover,
input[type=submit].btn-ghost:not(.btn-blue):focus {
  border-color: #83929B;
  color: #fff;
  background-color: #83929B;
}
button.btn-ghost.btn-blue,
.btn.btn-ghost.btn-blue,
input[type=submit].btn-ghost.btn-blue {
  color: #E74C30;
  background-color: transparent;
}
button.btn-ghost.btn-blue:hover, button.btn-ghost.btn-blue:focus,
.btn.btn-ghost.btn-blue:hover,
.btn.btn-ghost.btn-blue:focus,
input[type=submit].btn-ghost.btn-blue:hover,
input[type=submit].btn-ghost.btn-blue:focus {
  border-color: #E74C30;
  color: #fff;
  background-color: #E74C30;
}
button.btn-ico,
.btn.btn-ico,
input[type=submit].btn-ico {
  justify-content: space-between;
  min-width: 320px;
}
button.btn-ico i,
.btn.btn-ico i,
input[type=submit].btn-ico i {
  font-style: normal;
  transition: transform 0.3s ease-out;
}
button.btn-ico:hover i, button.btn-ico:focus i,
.btn.btn-ico:hover i,
.btn.btn-ico:focus i,
input[type=submit].btn-ico:hover i,
input[type=submit].btn-ico:focus i {
  transform: scale(1.2);
}
button.btn-download,
.btn.btn-download,
input[type=submit].btn-download {
  overflow: hidden;
}
button.btn-download i,
.btn.btn-download i,
input[type=submit].btn-download i {
  position: relative;
}
button.btn-download i:before,
.btn.btn-download i:before,
input[type=submit].btn-download i:before {
  content: "↓";
  position: absolute;
  left: 0;
  top: -36px;
}
button.btn-download:hover i, button.btn-download:focus i,
.btn.btn-download:hover i,
.btn.btn-download:focus i,
input[type=submit].btn-download:hover i,
input[type=submit].btn-download:focus i {
  transform: scale(1.2) translateY(36px);
}
button.btn-share,
.btn.btn-share,
input[type=submit].btn-share {
  overflow: hidden;
}
button.btn-share i,
.btn.btn-share i,
input[type=submit].btn-share i {
  position: relative;
}
button.btn-share i:before,
.btn.btn-share i:before,
input[type=submit].btn-share i:before {
  content: "↗";
  position: absolute;
  left: -36px;
  bottom: -36px;
}
button.btn-share:hover i, button.btn-share:focus i,
.btn.btn-share:hover i,
.btn.btn-share:focus i,
input[type=submit].btn-share:hover i,
input[type=submit].btn-share:focus i {
  transform: scale(1.2) translateY(-36px) translateX(36px);
}
button.btn-disco,
.btn.btn-disco,
input[type=submit].btn-disco {
  overflow: hidden;
}
button.btn-disco:hover i, button.btn-disco:focus i,
.btn.btn-disco:hover i,
.btn.btn-disco:focus i,
input[type=submit].btn-disco:hover i,
input[type=submit].btn-disco:focus i {
  transform: scale(1.5) rotate(360deg);
}
button.btn-full,
.btn.btn-full,
input[type=submit].btn-full {
  width: 100%;
}
button.btn-buy,
.btn.btn-buy,
input[type=submit].btn-buy {
  overflow: hidden;
  color: #E74C30;
}
button.btn-buy i,
.btn.btn-buy i,
input[type=submit].btn-buy i {
  display: block;
  position: relative;
}
button.btn-buy:hover i, button.btn-buy:focus i,
.btn.btn-buy:hover i,
.btn.btn-buy:focus i,
input[type=submit].btn-buy:hover i,
input[type=submit].btn-buy:focus i {
  transform: scale(1.2) translateX(36px);
}
button:disabled, button.disabled,
.btn:disabled,
.btn.disabled,
input[type=submit]:disabled,
input[type=submit].disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}
button.downloading,
.btn.downloading,
input[type=submit].downloading {
  pointer-events: none;
  background: url("../img/spin.gif") no-repeat center center #E74C30;
}
button.downloading span, button.downloading i,
.btn.downloading span,
.btn.downloading i,
input[type=submit].downloading span,
input[type=submit].downloading i {
  display: none;
}

.radio,
.checkbox {
  margin-top: 20px;
  position: relative;
}
.radio + .checkbox, .radio + .radio,
.checkbox + .checkbox,
.checkbox + .radio {
  margin-top: 10px;
}
.radio .group,
.checkbox .group {
  position: relative;
}
.radio .group + .group,
.checkbox .group + .group {
  margin-top: 20px;
}
.radio .group label span,
.checkbox .group label span {
  margin-top: 4px;
  display: block;
  font-size: 0.8em;
  line-height: 130%;
}
.radio label a,
.checkbox label a {
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .radio label a:hover,
.checkbox label a:hover {
    color: #E74C30;
  }
}
.radio label .except,
.checkbox label .except {
  color: #83929B;
  font-weight: normal;
}
.radio + .submit,
.checkbox + .submit {
  margin-top: 20px;
}
.radio + .submit input,
.checkbox + .submit input {
  width: 100%;
  justify-content: center;
}

.checkbox.short .group + .group {
  margin-top: 5px;
}

input[type=radio] {
  position: absolute;
  top: auto;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap;
}

input[type=radio] + label,
input[type=checkbox] + label {
  display: block;
  padding: 5px;
  padding-left: 32px;
  cursor: pointer;
  font-size: 21px;
  color: #fff;
  transition: color 0.3s ease-out;
  font-weight: 350;
}
@media only screen and (max-width: 1300px) {
  input[type=radio] + label,
input[type=checkbox] + label {
    font-size: calc(21px * 0.9);
  }
}

input[type=radio]:focus + label,
input[type=checkbox]:focus + label {
  color: #fff;
}

input[type=radio] + label:before,
input[type=checkbox] + label:before {
  content: "";
  background: #fff;
  border: 2px solid #83929B;
  background-color: #fff;
  display: block;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  margin-left: -32px;
  margin-top: 0.15em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease-out;
  position: absolute;
  top: 0px;
}

input[type=radio].error + label:before,
input[type=checkbox].error + label:before {
  border-color: #f49e9e;
}

input[type=radio]:hover + label:before,
input[type=checkbox]:hover + label:before,
input[type=radio] + label:hover:before,
input[type=checkbox] + label:hover:before {
  border-color: #E74C30;
}

input[type=radio] + label:hover,
input[type=checkbox] + label:hover {
  color: #E74C30;
}

input[type=radio] + label:before {
  border-radius: 100%;
}

input[type=radio]:disabled + label:before,
input[type=checkbox]:disabled + label:before {
  border-color: #dadada;
  background-color: #eaeaea;
  pointer-events: none;
  cursor: default;
}

input[type=radio]:disabled + label,
input[type=checkbox]:disabled + label {
  color: #ccc;
  pointer-events: none;
  cursor: default;
}

input[type=radio]:checked + label:before {
  background-color: #fff;
  border-color: #fff;
}

input[type=checkbox]:checked + label,
input[type=radio]:checked + label {
  color: #fff;
}

input[type=checkbox] {
  position: absolute;
  top: 10px;
  border-radius: 2px;
}

input[type=checkbox] + label {
  padding-top: 10px;
}

input[type=checkbox] + label:before {
  margin-top: 8px;
}

input[type=checkbox] + label:before {
  content: "×";
  text-align: center;
  line-height: 24px;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  padding: 0px 0 2px 0px;
  font-weight: 350;
}

input[type=checkbox]:checked + label:before {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

input[type=checkbox]:disabled + label:before {
  color: rgba(255, 255, 255, 0);
  pointer-events: none;
  cursor: default;
}

input[type=checkbox]:checked:disabled + label:before {
  color: #bbb;
  text-shadow: 0.05em 0 0 #bbb, -0.05em 0 0 #bbb;
}

.small input[type=checkbox] {
  top: 13px;
}
.small input[type=checkbox] + label:before {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  margin-left: -24px;
  top: 7px;
  padding-bottom: 2px;
}
.small input[type=checkbox] + label {
  font-size: 16px;
}
@media only screen and (max-width: 1300px) {
  .small input[type=checkbox] + label {
    font-size: calc(16px * 0.9);
  }
}
.small input[type=checkbox] + label {
  padding-left: 24px;
}

.multiple-check {
  position: relative;
}
.multiple-check > .name {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-out;
  transition-property: color, background-color, border;
  cursor: pointer;
  padding: 0px 18px 0 12px;
  padding-right: 40px;
  height: 46px;
  background: url("../img/angle-down-grey.svg") no-repeat;
  background-position: right 14px center;
  background-color: #fff;
  background-size: 16px;
  color: #83929B;
  font-family: "ContemporaryType", Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 300;
}
@media only screen and (max-width: 1300px) {
  .multiple-check > .name {
    font-size: calc(21px * 0.9);
  }
}
@media (hover: hover) and (pointer: fine) {
  .multiple-check > .name:hover {
    color: #000;
    background-image: url("../img/angle-down-black.svg");
  }
}
.multiple-check > .name:focus {
  outline: none;
  border-color: #000;
  color: #000;
}
.multiple-check > .input.checkbox {
  display: none;
  margin-top: 0;
  position: absolute;
  background-color: #fff;
  padding: 0 15px 6px;
  right: -2px;
  bottom: 45px;
  border: 2px solid #83929B;
  border-radius: 4px 4px 0 0;
}
.multiple-check > .input.checkbox label {
  white-space: nowrap;
  font-size: 18px !important;
}
.multiple-check > .input.checkbox .group + .group {
  margin-top: -10px;
}
.multiple-check:hover > .input.checkbox {
  display: block;
}

input[type=text],
input[type=text],
input[type=number],
input[type=email],
input[type=mail],
input[type=tel],
input[type=password],
textarea {
  border: 2px solid #83929B;
  padding: 0px 15px;
  height: 46px;
  background-color: transparent;
  color: #fff;
  font-size: 24px;
  border-radius: 10px;
  font-family: "ContemporaryType", Arial, Helvetica, sans-serif;
  font-weight: 300;
  transition: all 0.3s ease-out;
  transition-property: color, background-color, border;
  vertical-align: bottom;
  box-sizing: border-box;
}
@media (hover: hover) and (pointer: fine) {
  input[type=text]:hover,
input[type=text]:hover,
input[type=number]:hover,
input[type=email]:hover,
input[type=mail]:hover,
input[type=tel]:hover,
input[type=password]:hover,
textarea:hover {
    border-color: #E74C30;
  }
}
@media only screen and (max-width: 1300px) {
  input[type=text],
input[type=text],
input[type=number],
input[type=email],
input[type=mail],
input[type=tel],
input[type=password],
textarea {
    font-size: calc(24px * 0.9);
  }
}
@media only screen and (max-width: 600px) {
  input[type=text],
input[type=text],
input[type=number],
input[type=email],
input[type=mail],
input[type=tel],
input[type=password],
textarea {
    font-size: 18px;
  }
}
input[type=text]:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=mail]:focus,
input[type=tel]:focus,
input[type=password]:focus,
textarea:focus {
  outline: none;
  border-color: #E74C30;
}
input[type=text]:disabled,
input[type=text]:disabled,
input[type=number]:disabled,
input[type=email]:disabled,
input[type=mail]:disabled,
input[type=tel]:disabled,
input[type=password]:disabled,
textarea:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
input[type=text]::placeholder,
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=mail]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
textarea::placeholder {
  color: #83929B;
}
input[type=text].error,
input[type=text].error,
input[type=number].error,
input[type=email].error,
input[type=mail].error,
input[type=tel].error,
input[type=password].error,
textarea.error {
  border-color: #f49e9e;
}

textarea {
  min-height: 100px;
  padding-top: 7px;
}

.error-msg {
  display: block;
  font-size: 15px;
  color: #ee7171;
  padding-top: 8px;
}

.input-group {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.input-group input,
.input-group .btn {
  border-radius: 0;
  border-left-width: 0 !important;
}
.input-group input:first-child,
.input-group .btn:first-child {
  border-radius: 5px 0 0 5px;
  border-left-width: 2px !important;
}
.input-group input:last-child,
.input-group .btn:last-child {
  border-radius: 0 5px 5px 0;
  margin-left: -2px;
}

.inputs {
  display: flex;
  margin-top: 10px;
}
@media only screen and (max-width: 600px) {
  .inputs {
    display: block;
  }
}
.inputs > * {
  width: 100%;
}
.inputs > * input, .inputs > * select {
  width: 100%;
}
.inputs > * + * {
  margin-left: 10px;
}
@media only screen and (max-width: 600px) {
  .inputs > * + * {
    margin-left: 0;
    margin-top: 10px;
  }
}

.input.country {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.input.country .country_code {
  height: 46px;
  width: 50px;
  background-color: #83929B;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.input.country input {
  border-radius: 0 5px 5px 0;
  width: calc(100% - 50px);
}

[type=range] {
  -webkit-appearance: none;
  background: transparent;
  margin: 12px 0;
  width: 100%;
}
[type=range]::-moz-focus-outer {
  border: 0;
}
[type=range]:focus {
  outline: 0;
}

[type=range]:focus::-webkit-slider-runnable-track, [type=range]:focus::-ms-fill-lower, [type=range]:focus::-ms-fill-upper {
  background: #000;
}

[type=range]::-webkit-slider-runnable-track {
  cursor: default;
  height: 2px;
  transition: all 0.2s ease;
  width: 100%;
  background: #83929B;
  border: none;
  border-radius: 0px;
}

[type=range]::-webkit-slider-thumb {
  background: #83929B;
  border: none;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: default;
  height: 18px;
  width: 18px;
  -webkit-appearance: none;
  margin-top: -8px;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  [type=range]::-webkit-slider-thumb:hover {
    background-color: #000;
  }
}

[type=range]::-moz-range-thumb, [type=range]::-ms-thumb {
  background: #83929B;
  border: none;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: default;
  height: 24px;
  width: 24px;
}

[type=range]::-ms-thumb {
  margin-top: 2px;
}

[type=range]::-moz-range-track, [type=range]::-ms-track {
  cursor: default;
  height: 8px;
  transition: all 0.2s ease;
  width: 100%;
}
[type=range]::-moz-range-track {
  background: #83929B;
  border: none;
  border-radius: 5px;
  height: 4px;
}
[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 12px 0;
  color: transparent;
}

[type=range]::-ms-fill-lower, [type=range]::-ms-fill-upper {
  background: #83929B;
  border: none;
  border-radius: 10px;
}

[type=range]:disabled::-webkit-slider-thumb,
[type=range]:disabled::-moz-range-thumb,
[type=range]:disabled::-ms-thumb,
[type=range]:disabled::-webkit-slider-runnable-track,
[type=range]:disabled::-ms-fill-lower,
[type=range]:disabled::-ms-fill-upper {
  cursor: not-allowed;
}

@media (hover: hover) and (pointer: fine) {
  .all.darkTheme [type=range]::-webkit-slider-thumb:hover {
    background-color: #fff;
  }
}

select {
  transition: all 0.3s ease-out;
  transition-property: color, background-color, border;
  cursor: pointer;
  border: 2px solid #83929B;
  border-radius: 5px;
  padding: 0px 18px 0 12px;
  padding-right: 40px;
  height: 46px;
  background: url("../img/angle-down-grey.svg") no-repeat;
  background-position: right 14px center;
  background-color: transparent;
  background-size: 16px;
  color: #83929B;
  font-family: "ContemporaryType", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 300;
  -webkit-appearance: none;
}
@media (hover: hover) and (pointer: fine) {
  select:hover {
    border-color: #000;
    color: #000;
    background-image: url("../img/angle-down-black.svg");
  }
}
select:focus {
  outline: none;
  border-color: #000;
  color: #000;
}
select:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

option {
  font-size: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .all.darkTheme select:hover {
    border-color: #fff;
    color: #fff;
    background-image: url("../img/angle-down-white.svg");
  }
}
.all.darkTheme select:focus {
  border-color: #fff;
  color: #fff;
}

header {
  padding: 50px;
  text-align: center;
}
header img {
  filter: invert(1);
}

footer {
  padding: 10px 0;
  text-align: center;
}

.boxer {
  min-height: calc(100vh - 302px);
  padding-bottom: 100px;
}
.boxer.login {
  display: flex;
  align-items: center;
  justify-content: center;
}
.boxer.login .title {
  font-weight: bold;
  font-style: italic;
}
.boxer.login .title + p {
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 21px;
  line-height: 120%;
}
.boxer.login form {
  max-width: 400px;
}
.boxer.login .input:not(.checkbox) {
  margin-bottom: 20px;
}
.boxer.login .input:not(.checkbox) label {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}
.boxer.login .input:not(.checkbox) input {
  width: 100%;
}
.boxer.login .submit input {
  width: 100%;
  justify-content: center;
}
.boxer.login #authMessage {
  font-weight: 500;
  color: red;
  margin-bottom: 20px;
}
.boxer .forgot_password {
  display: block;
  margin-top: 15px;
}

::-moz-selection {
  color: #fff;
  background: #E74C30;
}

::selection {
  color: #fff;
  background: #E74C30;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
*::-webkit-scrollbar-track {
  box-shadow: none;
  background: #000;
}
*::-webkit-scrollbar-thumb {
  background: #E74C30;
  border: 2px solid #E74C30;
}

html {
  scroll-behavior: smooth;
}

a, .all {
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}

a {
  color: #E74C30;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "ContemporaryType", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  font-weight: 300;
}

h1, h2, h3, h4, h5 {
  font-weight: unset;
}

strong, b {
  font-weight: 500;
}

.title {
  font-size: 48px;
  line-height: 100%;
}

.subtitle {
  font-size: 34px;
  line-height: 100%;
}

.text {
  font-size: 24px;
  line-height: 130%;
  hyphens: auto;
}
.text p {
  hyphens: auto;
}
.text > *:not(:first-child) {
  margin-top: 10px;
}

.small {
  font-size: 21px;
  line-height: 130%;
}

.vsmall {
  font-size: 18px;
  line-height: 130%;
  font-weight: 350;
}

.title a,
.subtitle a,
.text a,
.small a,
.vsmall a {
  text-decoration: underline;
  color: #000;
}
@media (hover: hover) and (pointer: fine) {
  .title a:hover,
.subtitle a:hover,
.text a:hover,
.small a:hover,
.vsmall a:hover {
    color: #E74C30;
  }
}


/*# sourceMappingURL=all.css.map*/