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 {
  content: '';
  content: none;
}

q:before,
q:after {
  content: '';
  content: none;
}

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

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.db {
  display: block;
}

.dib {
  display: inline-block;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.center {
  overflow: hidden;
}

.tac {
  text-align: center;
}

.nav {
  list-style: none;
}

strong,
b {
  font-weight: 700;
}

button,
textarea,
input[type="email"],
input[type="password"],
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* clears the 'X' from Internet Explorer */

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/

/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/

/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/

* {
  box-sizing: border-box;
  outline: none;
}

body {
	background: #1b1b1b;
	min-width: 320px;
	font-family: "Roboto", sans-serif;
	display: -ms-flexbox;
	display: flex;
	box-sizing: border-box;
	padding: 0;
	min-height: 100vh;
	position: relative;
	-ms-flex-direction: column;
	flex-direction: column;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  z-index: 5;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.btn {
  text-align: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  background: none;
  border: none;
}

h1 {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: normal;
  text-align: left;
  margin: 10px 0 0px;
  text-transform: uppercase;
  color: white;
  font-family: Kelly Slab;
  display: inline;
  width: 70%;
}

.btn-color {
  background: #ffc844;
  padding: 5px 57px 4px 57px;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #0b0b0b;
}

.btn-color:hover {
  background: #e3bc4a;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

@keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

@keyframes wobble {
  0% {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes bounceIn {
  0%, 100%, 20%, 40%, 60%, 80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
  animation-duration: .75s;
}

@keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  100% {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  animation-name: bounceOut;
  animation-duration: .75s;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
  animation-duration: .75s;
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }

  100% {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

.content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 30px;
  overflow: hidden;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.row {
  margin: 0 -18px;
  display: -ms-flexbox;
  display: flex;
}

.col {
  width: 50%;
  padding: 0 18px;
}

.welcome {
  position: relative;
  margin: 0 0 26px;

  font-size: 20px;
  font-style: normal;
  padding: 29px 34px 30px;
  line-height: 26px;
  letter-spacing: normal;
  text-align: left;
  color: black;
  text-transform: uppercase;
  	background: #ffc844;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
	font-family: Kelly Slab;
	    font-weight: bold;
}

.welcome:after {
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  position: absolute;
  display: inline-block;
  z-index: -2;
}

.cabinet-nav .item {
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  font-style: normal;
  min-height: 100px;
  margin: 0 0 27px;
  overflow: hidden;
  padding: 22px 20px 22px 20px;
  line-height: 26px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: normal;
  transition: all 0.2s ease-in-out;
  color: white;
  text-align: left;
  background: #232323;
  box-shadow: 0 3px 7px rgba(0,0,0,.05);
  border: 1px solid #e5e5e5;
  border-color: #3a3a3a;
  border-radius: 4px;
  font-family: Kelly Slab;
}

.cabinet-nav .item:after {
  content: '';
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  right: 0;
  bottom: 0;
}

.cabinet-nav .item:last-child {
  margin-bottom: 0px;
}

.cabinet-nav .item:hover {
  box-shadow: 0 0 20px 0 #6d6b6b;
}

.cabinet-nav .item b {
  font-weight: inherit;
  color: #f7ce57;
}

.cabinet-nav .item--left {
  padding-left: 255px;
}

.cabinet-nav .item--left + .item {
  padding-left: 151px;
}

.cabinet-nav .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.cabinet-nav .icon--right {
  left: auto;
  right: 0;
}

.cabinet-referal,
.cabinet-referal-list {
  position: relative;
  z-index: 2;
}

.cabinet-referal:after,
.cabinet-referal-list:after {
  top: 0;
  bottom: 0;
  left: 19px;
  right: 18px;
  z-index: -1;
  content: '';
  box-shadow: 0 10px 20px 0 #e6ebf1;
  position: absolute;
  box-sizing: border-box;    
  background: #232323;
  box-shadow: 0 3px 7px rgba(0,0,0,.05);
  border: 1px solid #3a3a3a;
  border-radius: 4px;
}

.cabinet-referal .top,
.cabinet-referal-list .top {
  font-size: 18px;
  line-height: 24px;
  height: 113px;
  text-transform: uppercase;
  letter-spacing: normal;
  text-align: left;
  display: -ms-flexbox;
  display: flex;
}

.cabinet-referal .black,
.cabinet-referal-list .black {
  background: #0b0b0b;
  padding: 22px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-family: Kelly Slab;
  border-radius: 4px 0 0 0;
}

.cabinet-referal .orange,
.cabinet-referal-list .orange {
  background: #ffc844;
  color: #0b0b0b;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex: auto 1 1;
  flex: auto 1 1;
  padding: 22px 30px 22px 22px;
  font-family: Kelly Slab;
  border-radius: 0 4px 0 0;
}

.cabinet-referal .in,
.cabinet-referal-list .in {
  padding: 64px 29px 29px 38px;
}

.cabinet-referal .title,
.cabinet-referal-list .title {
  font-size: 26px;
  line-height: 34px;
  padding: 0 0 17px 0px;
  letter-spacing: normal;
  text-align: left;
  margin: 0 0 13px;
  background: url(../images/svg/referal.svg) no-repeat left top 8px;
  border-bottom: 1px solid #ebeaeb;
  color: white;
  font-family: Kelly Slab;
}

.cabinet-referal a,
.cabinet-referal-list a {
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  text-align: left;
  color: #f7ce57;
  float: right;
}

.cabinet-referal li,
.cabinet-referal-list li {
  margin: 0 0 7px;
  padding: 15px 0;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
  line-height: 16px;
  letter-spacing: normal;
  text-align: left;
  color: white;
  font-family: Kelly Slab;
}

.admin-status {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  display: block;
  color: #0B0B0B;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 30px;
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(84, 142, 201, 0.17);
  border-radius: 5px;
  height: 185px;
  padding: 23px 10px 10px;
  transition: all 0.2s ease-in-out;
  background: #232323;
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-family: Kelly Slab;
    color: white;
}

.admin-status:last-child {
  margin-bottom: 0;
}

.admin-status:hover {
  background: #f7ce57;
}

.admin-status b {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  display: block;
}

.admin-status span {
  display: block;
  margin: 0 0 32px;
}

.admin-status img {
  height: 67px;
}

.cabinet-referal-list .in {
  padding: 27px 29px 9px 32px;
}

.cabinet-referal-list li {
  font-size: 20px;
  line-height: 23px;
  font-weight: 400;
  margin: 0 0 6px;
  padding: 5px 0;
}

.cabinet-referal-list li b {
  color: #f7ce57;
  font-size: 16px;
  line-height: 29px;
  margin-left: 10px;
  font-weight: inherit;
  float: right;
}

.crumbs {
  margin: 0 0 24px;
  overflow: hidden;
}

.crumbs li {
  float: left;
}

.crumbs li:after {
  font-weight: 400;
  display: inline-block;
  margin: 0 7px;
  font-size: 12px;
  line-height: 14px;
  color: #707070;
  content: '>';
}

.crumbs li:last-child:after {
  display: none;
}

.crumbs a {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #707070;
}

.refer-top {
  height: 188px;
  overflow: hidden;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  color: #0B0B0B;
  padding: 0 0 0 42px;
  margin: 0 0 30px;
  position: relative;
  box-shadow: 0 0 40px 0 rgba(84, 142, 201, 0.17);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
      background: #232323;
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border: 1px solid #e5e5e5;
    border-color: #3a3a3a;
    border-radius: 4px;
    font-family: Kelly Slab;
    color: white;
}

.refer-top:after {
  background: #fff;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.refer-top .bg {
  width: auto;
  left: auto;
  right: 0;
}

.refer-top small {
  font-weight: 400;
  font-size: 20px;
  display: block;
  line-height: 23px;
  margin-top: 7px;
  text-transform: uppercase;
}

.refer-item {
  display: block;
  box-shadow: 0px 0px 40px rgba(84, 142, 201, 0.17);
  border-radius: 5px;
  padding: 35px 26px 29px 32px;
  margin: 0 0 30px;
  overflow: hidden;
  color: white;
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  transition: all 0.2s ease-in-out;
      background: #232323;
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-family: Kelly Slab;
}

.refer-item:hover {
  background: #f7ce57;
}

.refer-item * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.refer-item .name {
  float: left;
  width: 34%;
  padding: 0 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  text-transform: uppercase;
  color: white;
}

.refer-item .tel {
  float: left;
  width: 23%;
  padding: 0 10px;
}

.refer-item .email {
  float: left;
  width: 21%;
  padding: 0 10px;
}

.refer-item .number {
  width: 22%;
  float: right;
  text-align: right;
  padding: 0 10px;
}

.refer-item .number b {
  float: right;
  font-size: 30px;
  line-height: 35px;
  color: white;
  margin: 0 0 0 20px;
}

.refer-table {
  padding: 35px 0 66px;
  overflow: auto;
  background: #FFF;
  box-shadow: 0px 0px 40px rgba(84, 142, 201, 0.17);
      background: #232323;
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border: 1px solid #e5e5e5;
    border-color: #3a3a3a;
    border-radius: 4px;
    font-family: Kelly Slab;
    color: white;
}

.refer-table table {
  width: 100%;
}

.refer-table th {
  white-space: nowrap;
  border-bottom: 1px solid #EBEAEB;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #0B0B0B;
  padding: 0 24px 6px;
  text-align: left;
      color: white;
}

.refer-table tr:last-child td {
  border: none;
}

.refer-table td {
    border-bottom: 1px solid #EBEAEB;
    padding: 22px 28px;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: white;
}

.refer-table td:first-child {
  font-weight: 700;
}

.refer-table a {
  color: inherit;
  transition: all 0.2s ease-in-out;
}

.refer-table a:hover {
  color: #f7ce57;
}

.refer-table i {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: #30B74A;
  display: inline-block;
  vertical-align: middle;
  border-radius: 100%;
  overflow: hidden;
}

.refer-table a[download] {
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background: url(/images/ref/download.svg) no-repeat center center;
  background-size: 20px 20px;
  transition: all 0.2s ease-in-out;
}

.refer-table a[download]:hover {
  transform: scale(1.1);
}

.refer-table .dots {
  position: relative;
  width: 15px;
  cursor: pointer;
  height: 15px;
  display: inline-block;
  background: url(../images/svg/dots.svg) no-repeat center center;
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
}

.refer-table .dots:hover .drop {
  opacity: 1;
  visibility: visible;
}

.refer-table .drop {
  background: #fff;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  position: absolute;
  top: -20px;
  width: 166px;
  padding: 17px 13px 9px;
  border-radius: 5px;
  border: solid 1px rgba(112, 112, 112, 0.12);
  right: 15px;
}

.refer-table .drop li {
  display: block;
  margin: 0 0 10px;
}

.refer-table .drop a {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: normal;
  text-align: left;
  color: #707070;
}

.refer-table .drop a:hover {
  color: #0B0B0B;
}

.cabinet-info form {
  background: #fff;
  padding: 46px 40px;
  background: #232323;
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-family: Kelly Slab;
}

.cabinet-info .form-item {
  max-width: 400px;
  margin: 0 0 18px;
}

.cabinet-info input {
  background: #fff;
  height: 50px;
  border: solid 1px #dfe2e5;
  width: 100%;
  padding: 0 16px;
  letter-spacing: normal;
  text-align: left;
  box-sizing: border-box;
  color: white;
    background: #232323;
  box-shadow: 0 3px 7px rgba(0,0,0,.05);
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  font-family: Kelly Slab;
  font-size: 18px;
}

.cabinet-status-in .red {
  padding: 33px 34px 36px 39px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  background: #FFC9C9;
  box-shadow: 0px 0px 40px rgba(84, 142, 201, 0.17);
  color: #0B0B0B;
}

.cabinet-status-form .form-item {
  max-width: 334px;
  margin: 0 0 13px;
}

.cabinet-status-form .label-file {
  height: 28px;
  background: #FFFFFF;
  border: 1px solid #DFE2E5;
  border-radius: 5px;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 10px 0 14px;
  text-overflow: ellipsis;
  font-weight: 400;
  max-width: 100%;
  font-size: 14px;
  line-height: 26px;
  text-transform: none;
  color: #0B0B0B;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.cabinet-status-form .label-file:hover {
  background: #f7ce57;
}

.cabinet-status-form .btn-color {
  border: 1px solid #DFE2E5;
  border-radius: 5px;
  font-size: 18px;
  padding: 9px 20px 10px;
  width: 286px;
  line-height: 21px;
}

.cabinet-status-form form {
  padding: 44px 36px;
  background: #232323;
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-family: Kelly Slab;
}

.cabinet-status-form h3 {
  margin: 44px 0 26px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  max-width: 340px;
  color: white;
}

.cabinet-status-form label {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 0 15px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-transform: uppercase;
  color: white;
}

.cabinet-status-form label span {
  text-transform: none;
  float: right;
  font-size: 14px;
  line-height: 16px;
}

.cabinet-status-form input {
  font: 14px/19px "Roboto", sans-serif;
  background: #fff;
  height: 28px;
  border: 1px solid #DFE2E5;
  border-radius: 5px;
  width: 100%;
  padding: 0 16px;
  letter-spacing: normal;
  text-align: left;
  box-sizing: border-box;
  color: #939393;
    background: #232323;
  box-shadow: 0 3px 7px rgba(0,0,0,.05);
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  font-family: Kelly Slab;
}

.cabinet-status-form input[type="file"] {
  opacity: 0;
  visibility: hidden;
}

.col--3 {
  width: 30%;
}

.col--35 {
  width: 35%;
}

.col--4 {
  width: 40%;
}

.col--6 {
  width: 60%;
}

.col--7 {
  width: 70%;
}

.text-in {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #707070;
  padding: 23px 21px 20px 27px;
  background: #FFF;
  box-shadow: 0px 0px 40px rgba(84, 142, 201, 0.17);
    background: #232323;
  box-shadow: 0 3px 7px rgba(0,0,0,.05);
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  font-family: Kelly Slab;
}

.text-in p {
  margin: 0 0 24px;
  color: white;
}

.text-in p:last-child {
  margin-bottom: 0;
}

.text-in h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
  color: #0B0B0B;
  margin: 0 0 24px;
}

.bitrix-fields {
  margin: 0 0 29px;
  padding: 46px 39px 35px;
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(84, 142, 201, 0.17);
}

.bitrix-fields h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: #0B0B0B;
  margin: 0 0 21px;
}

.bitrix-fields form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bitrix-fields label {
  font-weight: 500;
  font-size: 14px;
  color: #0B0B0B;
  white-space: nowrap;
  float: left;
  margin: 0 24px 0 0;
  line-height: 28px;
}

.bitrix-fields input {
  font: 400 14px/16px "Roboto", sans-serif;
  width: 232px;
  height: 28px;
  color: #707070;
  padding: 0 16px;
  background: #FFFFFF;
  border: 1px solid #DFE2E5;
  border-radius: 5px;
}

.bitrix-fields .btn {
  margin-bottom: 9px;
}

.bitrix-fields .form-item {
  margin: 0 0 9px;
}

.log-in {
  max-width: 601px;
  margin: 0 auto 30px;
}

.log-in .in {
  padding: 27px 20px 46px;
  background: #232323;
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-family: Kelly Slab;
}

.log-in h2 {
  text-align: center;
  font-weight: 400;
  margin: 0 0 29px;
  font-size: 30px;
  line-height: 35px;
  color: white;
}

.log-in form {
  display: block;
  max-width: 334px;
  margin: 0 auto;
}

.log-in input {
  font: 400 14px/16px "Roboto", sans-serif;
  width: 100%;
  height: 28px;
  color: white;
  padding: 0 16px;
      background: #232323;
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    font-family: Kelly Slab;
}

.log-in .btn {
  padding: 5px 20px 4px;
}

.log-in .form-item {
  margin: 0 0 20px;
}

.log-in .btn-groups {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

.log-in .btn-groups a {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: white;
}

.checkbox {
  margin: 0 0 29px;
}

.checkbox label {
  position: relative;
  overflow: hidden;
  margin: 0 -10px 0 0;
  cursor: pointer;
  display: block;
}

.checkbox input {
  position: absolute;
  bottom: 100%;
  right: 100%;
  opacity: 0;
  visibility: hidden;
}

.checkbox input:checked + .icon:after {
  visibility: visible;
  opacity: 1;
}

.checkbox span {
  display: block;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #707070;
}

.checkbox .icon {
  float: left;
  width: 16px;
  margin: 0 16px 0 0;
  height: 16px;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #DFE2E5;
}

.checkbox .icon:after {
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #F7CE57;
  position: absolute;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  content: '';
}

.content--center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.footer {
	//background: #fdfdfd;
	font-size: 14px;
	padding: 26px 0;
	font-weight: bold;
	line-height: 18px;
	letter-spacing: normal;
	text-align: left;
	color: #acb1b9;
}

.error input {
  border-color: red;
}

.only-mobile {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .cabinet-referal .back,
  .cabinet-referal-list .back,
  .cabinet-referal .orange,
  .cabinet-referal-list .orange {
    padding: 18px;
  }

  .cabinet-referal .top,
  .cabinet-referal-list .top {
    font-size: 16px;
  }

  .cabinet-referal .in,
  .cabinet-referal-list .in {
    padding: 44px 20px;
  }

  .cabinet-nav .item--left {
    padding-left: 210px;
  }

  .cabinet-referal-list .in {
    padding: 20px 20px 10px;
  }

  .admin-status {
    font-size: 18px;
  }

  .cabinet-status-form label span {
    font-size: 12px;
  }

  .cabinet-status-form label {
    font-size: 16px;
  }

  .cabinet-nav .icon--right {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .cabinet-nav .icon {
    display: none;
  }

  .row {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .row .row {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .table-reverse {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .col {
    width: 100%;
  }

  .col .col {
    width: 50%;
  }

  .col .col--3 {
    width: 30%;
  }

  .col .col--4 {
    width: 40%;
  }

  .col .col--6 {
    width: 60%;
  }

  .col .col--7 {
    width: 70%;
  }

  .admin-status {
    margin-bottom: 22px !important;
  }

  .refer-item {
    padding: 33px 20px 31px;
    font-size: 17px;
    line-height: 35px;
  }

  .refer-item .number {
    font-size: 0;
  }

  .cabinet-status-in .red {
    margin-bottom: 20px;
  }

  .bitrix-fields form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .bitrix-fields .form-item {
    width: 50%;
  }

  .bitrix-fields .btn {
    margin-top: 9px;
  }

  .refer-top .bg {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .only-mobile {
    display: block !important;
  }

  .content {
    padding-bottom: 16px;
  }

  .mobile-reverse {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .wrapper {
    padding: 0 10px;
  }

  h1 {
    margin: 5px 0 30px;
    font-weight: 300;
    font-size: 26px;
    line-height: 30px;
    text-transform: uppercase;
	font-family: Kelly Slab;
  }

  .cabinet-in {
    padding: 106px 0 0;
    position: relative;
  }

  .welcome {
    position: absolute;
    top: 0;
    padding: 24px 25px 23px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin: 0 0 30px;
    left: 0;
    right: 0;
	background: #232323;
    border: 1px solid #e5e5e5;
    border-color: #3a3a3a;
    border-radius: 4px;
  }

  .log-in .welcome {
    position: relative;
  }

  .cabinet-referal,
  .cabinet-referal-list {
    margin: 0 0 23px;
  }

  .cabinet-referal .top,
  .cabinet-referal-list .top {
    font-size: 16px;
    line-height: 24px;
    height: 60px;
  }

  .cabinet-referal .title,
  .cabinet-referal-list .title {
    font-weight: 400;
    font-size: 22px;
    background-size: 16px;
    line-height: 26px;
    margin: 0 0 7px;
    background-position: left top 3px;
    padding: 0 0 15px 30px;
  }

  .cabinet-referal .orange,
  .cabinet-referal-list .orange {
    padding: 19px 18px 19px 14px;
  }

  .cabinet-referal .black,
  .cabinet-referal-list .black {
    padding: 19px 10px 19px 19px;
  }

  .cabinet-referal .in,
  .cabinet-referal-list .in {
    padding: 23px 30px 35px 37px;
  }

  .cabinet-referal li,
  .cabinet-referal-list li {
    padding: 5px 0;
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 21px;
  }

  .cabinet-referal li a,
  .cabinet-referal-list li a {
    font-size: 18px;
    line-height: 21px;
  }

  .cabinet-nav .item {
    margin: 0 0 19px;
    font-size: 18px;
    line-height: 21px;
    padding: 10px 20px 10px 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cabinet-nav .item br {
    display: none;
  }

  .cabinet-nav .item--left {
    padding-left: 158px;
  }

  .cabinet-nav .item--left + .item {
    padding-left: 48px;
  }

  .footer {
    text-align: center;
  }

  .admin-status {
    height: 120px;
    padding: 18px 28px 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .admin-status span {
    margin: 0;
  }

  .cabinet-referal-list {
    margin: 0 0 11px;
  }

  .cabinet-referal-list .top {
    font-size: 18px;
    height: 120px;
  }

  .cabinet-referal-list li {
    font-size: 15px;
    line-height: 18px;
    margin: 0 0 17px;
  }

  .cabinet-referal-list li b {
    line-height: 18px;
    font-size: 14px;
  }

  .cabinet-referal-list .in {
    padding: 18px 15px 13px 23px;
  }

  .crumbs {
    margin: -2px 0 21px 7px;
  }

  .refer-top {
    padding: 0 0 0 26px;
    margin: 0 0 17px;
    height: 100px;
    font-weight: 400;
    font-size: 26px;
    line-height: 34px;
  }

  .refer-item {
    display: block;
    font-weight: 400;
    margin: 0 0 23px;
    padding: 40px 8px 6px 30px;
    font-size: 16px;
    line-height: 19px;
  }

  .refer-item .email,
  .refer-item .number,
  .refer-item .tel,
  .refer-item .name {
    width: 100%;
    float: none;
    margin: 0 0 15px;
  }

  .refer-item .name {
    margin: 0 0 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
  }

  .refer-item .number {
    text-align: left;
    font-size: 16px;
    line-height: 33px;
    padding-top: 3px;
  }

  .cabinet-info {
    margin: 0 0 15px;
  }

  .cabinet-info form {
    padding: 47px 31px;
  }

  .cabinet-status-in .red {
    padding: 32px 17px 36px 17px;
    margin-bottom: 17px;
  }

  .cabinet-status-form form {
    padding: 45px 31px 45px 36px;
  }

  .cabinet-status-form h3 {
    margin: 44px 0 24px;
  }

  .cabinet-status-form label {
    font-size: 18px;
  }

  .cabinet-status-form label span {
    font-size: 14px;
    display: block;
    float: none;
  }

  .cabinet-status-form .row label {
    display: block;
  }

  .cabinet-status-form .row label span {
    margin: 4px 0 0;
  }

  .cabinet-status-form .form-item {
    max-width: 100%;
  }

  .cabinet-status-form .btn {
    width: 100%;
  }

  .cabinet-status-form .label-file {
    width: 170px;
    margin: 0px 0 48px;
  }

  .row .row {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .col .col {
    width: 100%;
  }

  .col--3 label span {
    display: none;
  }

  .bitrix-fields {
    padding: 44px 16px 34px 29px;
    margin: 0 0 20px;
  }

  .bitrix-fields h2 {
    font-size: 16px;
    line-height: 19px;
  }

  .bitrix-fields form {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .bitrix-fields .form-item {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .bitrix-fields .btn {
    margin-top: 8px;
  }

  .bitrix-fields label {
    margin: 0 11px 0 0;
  }

  .bitrix-fields input {
    width: auto;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .text-in {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding: 28px 10px 25px 27px;
  }

  .text-in p {
    margin: 0 0 16px;
	color: white;
  }

  .text-in h2 {
    font-size: 16px;
    line-height: 19px;
    margin: 0 0 33px;
  }
}
img.obnovlenie{
    max-height: 100px; padding: 20px; background: #f7ce57; cursor: pointer;
}
@media screen and (max-width: 767px) {
img.obnovlenie{width: 40px;

padding:0;}
}
.cabinet-nav .item--left {
    padding-left: 240px;
}

.btn-color {
	background: #ffc844;
	padding: 10px;
	font-size: 14px;
	line-height: 19px;
	letter-spacing: normal;
	text-transform: uppercase;
	color: #0b0b0b;
	font-family: Kelly Slab;
	border-radius: 4px;
}

.knopki{
	margin-bottom: 10px;  text-align: right;
}
@media screen and (max-width:768px){
.knopki{

}

}
.footer{
   height: 80px;
}

.versionKAB{
    font-size: 50%;
    
    margin-left: 1%;
}

.top_panel{
	box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border-radius: 4px;
    background-color: #232323;
    padding: 20px;
    line-height: normal;
    border: 1px solid #3a3a3a;
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-direction: row;
    margin-bottom: 20px;
    align-items: flex-end;
}

.wp-block-heading{
	color: white!important;
	font-family: Kelly Slab;
}

.wp-block-file__button{
	color: #ffc844;
}

.text-in ol, ul{
	color: white;
}

.lostpassword-login{
	color: white!important;
}

.user_full{
	width: 80%;
	white-space: nowrap;
    overflow: hidden;
	display: inline-flex;
	text-overflow: ellipsis;
}

.cabinet-referal .black2,
.cabinet-referal-list .black2 {
  background: #0b0b0b;
  padding: 22px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-family: Kelly Slab;
  border-radius: 4px 0 0 0;
  width: 100%;
}

.cabinet-in {
	margin-bottom: 40px !important;
}

@media screen and (max-width: 768px){
	.versionKAB{
		display: none;
	}
	
	.cabinet-in .welcome {
		display: none;
	}
	.cabinet-in {
		padding: 0px 0 0;
		position: relative;
	}
	.home_page{
		margin-bottom: 10px;
	}
	.knopki button{
		width: 130px;
		margin-bottom: 10px;
	}
	
	.knopki{
		margin: auto;
	}
	
	.top_panel h1{
		margin: auto;
	}
}

.status-small {
  font-size: 18px;
  line-height: 15px;
  padding: 15px 10px 10px;
  height: unset;
  margin: 0 0 15px;
}

.status-small b {
  font-size: 50px;
  line-height: 40px;
}

.status-small span {
  margin: 0 0 15px;
}

@media(max-width: 767px) {
  .status-small span {
      margin: 0;
      line-height: 23px;
      text-align: start;
  }
}

@media(max-width: 600px) {
  .status-small b {
      font-size: 40px;
  }
}

@media(max-width: 420px) {
  .status-small b {
      font-size: 25px;
  }
}

.table-info {
	display: flex;
	flex-direction: column;
	color: #fff;
	margin-bottom: 30px;
	padding: 20px 26px;
	background: #232323;
	border-radius: 4px
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border: 1px solid #e5e5e5;
    border-color: #3a3a3a;
	font-family: Kelly Slab;
}

.table-info div h3 {
	font-weight: 700;
}

.table-info div p {
	color: #d1cecb;
}

.table-info__title {
	display: flex;
	gap: 10px;
	align-items: center;
}

.table-info__title h2 {
	font-size: 20px;
	font-weight: 700;
}

.table-info__title button {
	border: none;
    background: unset;
    color: #fff;
    font-size: 20px;
    border-radius: 6px;
}

.table-info__content {
    max-height: 0;
    overflow: hidden;
	opacity: 0;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.table-info__content div {
	display: flex;
	gap: 10px;
	padding: 7px 0px;
}

.table-info__open {
	opacity: 1;
    max-height: max-content;
    overflow: auto;
    transition: max-height 0.3s ease;
    z-index: 0;
	padding-top: 20px;
}

@media(max-width:600px) {
	.table-info__content div {
		flex-direction: column;
		gap: 5px;
		justify-content: center;
		align-items: center;
	}
	.table-info__content div p {
		text-align: center;
	}
}

.buttonGoBack {
	display: inline-block;
    border-radius: 4px;
    font-family: Kelly Slab;
    font-size: 15px;
    border: 1px solid #e5e5e5;
    background: #312f2fbd;
    color: white;
    box-shadow: 0 3px 7px rgba(0,0,0,.05);
    border-color: #3a3a3a;
	padding: 10px;
    margin-bottom: 17px;
	transition: .3s;
	cursor: pointer;
}

.buttonGoBack:hover {
	background: #5a5656bd;
}
