@import url("https://fonts.googleapis.com/css?family=Roboto:400,700,900");
@import url(../fonts/fontello/css/fontello.css);
.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  animation-delay: -1.0s;
}

.modal-spinner .rect4 {
  animation-delay: -0.9s;
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }

  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }

@page {
    margin: 0.5cm;
}
}

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

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

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  display: block;
}

a img {
  border: none;
}

/* Gets rid of IE's blue borders */

textarea {
  resize: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

* {
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

*,
:after,
:before {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html,
body,
div,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  position: relative;
}

img,
video,
audio {
  max-width: 100%;
}

img,
video {
  height: auto;
}

svg {
  max-height: 100%;
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="radio"],
input[type="checkbox"] {
  vertical-align: middle;
  position: relative;
  bottom: 0.15rem;
  font-size: 115%;
  margin-right: 3px;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

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

html,
body {
  font-size: 16px;
  line-height: 1.5;
}

body {
  background-color: transparent;
  color: #313439;
  font-family: "Roboto", Arial, sans-serif;
}

p {
  line-height: 1.5;
}

a {
  color: #e74c3c;
}

a:hover {
  color: #a82315;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 24px;
  color: #0d0d0e;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  line-height: 1;
}

h1,
._h1 {
  font-size: 48px;
}

h2,
._h2 {
  font-size: 36px;
}

h3,
._h3 {
  font-size: 24px;
}

h4,
._h4 {
  font-size: 21px;
}

h5,
._h5 {
  font-size: 18px;
}

h6,
._h6 {
  font-size: 16px;
}

h1 a,
._h1 a,
h2 a,
._h2 a,
h3 a,
._h3 a,
h4 a,
._h4 a,
h5 a,
._h5 a,
h6 a,
._h6 a {
  color: inherit;
}

ul,
ul ul,
ul ol,
ol,
ol ul,
ol ol {
  margin: 0 0 0 24px;
}

ol ol li {
  list-style-type: lower-alpha;
}

ol ol ol li {
  list-style-type: lower-roman;
}

nav ul,
nav ol {
  margin: 0;
  list-style: none;
}

dl dt {
  font-weight: bold;
}

dd {
  margin-left: 24px;
}

p,
blockquote,
hr,
pre,
ol,
ul,
dl,
table,
fieldset,
figure,
address,
form {
  margin-bottom: 24px;
}

hr {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}

blockquote {
  padding-left: 1rem;
  border-left: 4px solid rgba(0, 0, 0, 0.1);
  font-style: italic;
  color: rgba(49, 52, 57, 0.65);
}

blockquote p {
  margin-bottom: .5rem;
}

time,
cite,
small,
figcaption {
  font-size: 87.5%;
}

cite {
  opacity: .6;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  cursor: help;
}

var {
  font-size: 16px;
  opacity: .6;
  font-style: normal;
}

mark,
code,
samp,
kbd {
  position: relative;
  top: -1px;
  padding: 4px 4px 2px 4px;
  display: inline-block;
  line-height: 1;
  color: rgba(49, 52, 57, 0.85);
}

kbd {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

sub,
sup {
  font-size: x-small;
  line-height: 0;
  margin-left: 1rem/4;
  position: relative;
}

sup {
  top: 0;
  vertical-align: super;
}

sub {
  bottom: 1px;
  vertical-align: sub;
}

pre,
code,
samp,
var,
kbd {
  font-family: Consolas, Monaco, "Courier New", monospace;
}

pre,
code,
samp,
var,
kbd,
mark {
  font-size: 87.5%;
}

pre,
pre code {
  background: #f8f8f8;
  padding: 0;
  top: 0;
  display: block;
  line-height: 1.5;
  color: rgba(49, 52, 57, 0.85);
  overflow: none;
  white-space: pre-wrap;
}

pre {
  padding: 1rem;
}

figcaption {
  opacity: .6;
}

figure figcaption {
  position: relative;
  top: -1rem/2;
}

figure pre {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

figure .video-container,
figure pre {
  margin-bottom: 12px;
}

._tal,
._text-left {
  text-align: left !important;
}

._tac,
._text-center {
  text-align: center !important;
}

._tar,
._text-right {
  text-align: right !important;
}

ul._unstyled,
.Pagination ul {
  margin-left: 0;
}

ul._unstyled,
.Pagination ul,
ul._unstyled ul,
.Pagination ul ul {
  list-style: none;
}

._monospace {
  font-family: Consolas, Monaco, "Courier New", monospace;
}

._upper {
  text-transform: uppercase;
}

._lower {
  text-transform: lowercase;
}

em,
._italic {
  font-style: italic !important;
}

strong,
b,
._strong {
  font-weight: bold !important;
}

._normal {
  font-weight: normal !important;
}

._muted {
  opacity: .55;
}

a._muted {
  color: #313439;
}

a._muted:hover {
  opacity: 1;
}

small,
._small {
  font-size: 14px;
}

._end {
  margin-bottom: 0 !important;
}

._nowrap,
._nowrap td {
  white-space: nowrap;
}

._columns-2,
._columns-3,
._columns-4 {
  column-gap: 24px;
}

._columns-2 {
  column-count: 2;
}

._columns-3 {
  column-count: 3;
}

._columns-4 {
  column-count: 4;
}

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

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

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

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

  70% {
    animation-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 {
  from, 50%, to {
    opacity: 1;
  }

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

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    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);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    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 headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

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

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

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

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

@keyframes tada {
  from {
    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);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    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);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-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);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-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);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-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);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    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);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    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);
  }

  to {
    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);
  }

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

.bounceOut {
  animation-name: bounceOut;
}

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

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

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

.bounceOutDown {
  animation-name: bounceOutDown;
}

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

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

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

  to {
    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);
  }

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

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    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;
  }

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

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

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

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

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: none;
    opacity: 1;
  }
}

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

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

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

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

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

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

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

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

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

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

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

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

.rotateOut {
  animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

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

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

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

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1;
  }

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

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }

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

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

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

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

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

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

._invisible {
  visibility: hidden;
}

._visible {
  visibility: visible;
}

._display-block {
  display: block;
}

._hide {
  display: none !important;
}

@media (max-width: 768px) {
  ._hide-sm {
    display: none !important;
  }
}

@media (min-width: 769px) {
  ._show-sm {
    display: none !important;
  }
}

@media print {
  ._hide-print {
    display: none !important;
  }

  ._show-print {
    display: block !important;
  }
}

._no-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  overflow: hidden;
}

._video-container {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 24px;
}

._video-container iframe,
._video-container object,
._video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

._mb0 {
  margin-bottom: 0px !important;
}

._mb5 {
  margin-bottom: 5px !important;
}

._mb10 {
  margin-bottom: 10px !important;
}

._mb15 {
  margin-bottom: 15px !important;
}

._mb20 {
  margin-bottom: 20px !important;
}

._mb25 {
  margin-bottom: 25px !important;
}

._mb30 {
  margin-bottom: 30px !important;
}

._mb35 {
  margin-bottom: 35px !important;
}

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

._mb45 {
  margin-bottom: 45px !important;
}

._mb50 {
  margin-bottom: 50px !important;
}

._mb55 {
  margin-bottom: 55px !important;
}

._mb60 {
  margin-bottom: 60px !important;
}

._mb65 {
  margin-bottom: 65px !important;
}

._mb70 {
  margin-bottom: 70px !important;
}

._mb75 {
  margin-bottom: 75px !important;
}

._mb80 {
  margin-bottom: 80px !important;
}

._mb85 {
  margin-bottom: 85px !important;
}

._mb90 {
  margin-bottom: 90px !important;
}

._mb95 {
  margin-bottom: 95px !important;
}

._mb100 {
  margin-bottom: 100px !important;
}

._group:after {
  content: '';
  display: table;
  clear: both;
}

._float-right {
  float: right;
}

._float-left {
  float: left;
}

@media (max-width: 768px) {
  ._float-right {
    float: none;
  }

  ._float-left {
    float: none;
  }
}

._fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

._mid {
  position: absolute;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
}

._w5 {
  width: 5%;
}

._w10 {
  width: 10%;
}

._w15 {
  width: 15%;
}

._w20 {
  width: 20%;
}

._w25 {
  width: 25%;
}

._w30 {
  width: 30%;
}

._w35 {
  width: 35%;
}

._w40 {
  width: 40%;
}

._w45 {
  width: 45%;
}

._w50 {
  width: 50%;
}

._w55 {
  width: 55%;
}

._w60 {
  width: 60%;
}

._w65 {
  width: 65%;
}

._w70 {
  width: 70%;
}

._w75 {
  width: 75%;
}

._w80 {
  width: 80%;
}

._w85 {
  width: 85%;
}

._w90 {
  width: 90%;
}

._w95 {
  width: 95%;
}

._w100 {
  width: 100%;
}

._w-auto {
  width: auto;
}

.Breadcrumbs {
  font-size: 14px;
  margin-bottom: 1.5;
}

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

.Breadcrumbs._centered ul {
  -ms-flex-pack: center;
  justify-content: center;
}

.Breadcrumbs span,
.Breadcrumbs a {
  font-style: normal;
  padding: 0 10px;
  display: inline-block;
  white-space: nowrap;
}

.Breadcrumbs li:after {
  display: inline-block;
  content: '/';
  color: rgba(0, 0, 0, 0.3);
}

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

.Breadcrumbs li:first-child span,
.Breadcrumbs li:first-child a {
  padding-left: 0;
}

.Breadcrumbs li._active a {
  color: #313439;
  text-decoration: none;
  cursor: text;
}

.Button {
  display: inline-block;
  height: 40px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  background-color: #e74c3c;
  color: #ffffff;
  font-size: 14px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  line-height: 38px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  transition: background 200ms ease;
  -webkit-appearance: none;
}

.Button:hover {
  outline: none;
  text-decoration: none;
  color: #ffffff;
  background-color: #ed7669;
}

.Button ~ .Button {
  margin-left: 10px;
}

.Button:disabled,
.Button._disabled {
  background-color: rgba(231, 76, 60, 0.7);
  color: white;
  cursor: default;
  font-style: normal;
}

.Button._outline {
  border-width: 2px;
  border-color: #e74c3c;
  background: none;
  color: #e74c3c;
}

.Button._outline:hover {
  border-color: rgba(231, 76, 60, 0.5);
  background: none;
  color: rgba(231, 76, 60, 0.6);
}

.Button._outline:disabled,
.Button._outline._disabled {
  border-color: rgba(231, 76, 60, 0.5);
  background: none;
  color: rgba(231, 76, 60, 0.7);
}

.Button._raised {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.Button._upper {
  text-transform: uppercase;
  letter-spacing: .04em;
}

.Button._rounded {
  border-radius: 20px;
}

.Button._secondary {
  background-color: #313439;
  color: #ffffff;
}

.Button._secondary:hover {
  background-color: #606670;
  color: #ffffff;
}

.Button._secondary:disabled,
.Button._secondary._disabled {
  background-color: rgba(49, 52, 57, 0.7);
  color: rgba(255, 255, 255, 0.7);
}

.Button._secondary._outline {
  border-color: #313439;
  background: none;
  color: #313439;
}

.Button._secondary._outline:hover {
  border-color: rgba(49, 52, 57, 0.5);
  color: rgba(49, 52, 57, 0.6);
}

.Button._secondary._outline:disabled,
.Button._secondary._outline._disabled {
  border-color: rgba(49, 52, 57, 0.5);
  background: none;
  color: rgba(49, 52, 57, 0.7);
}

.Form {
  margin-bottom: 24px;
}

.Form fieldset {
  margin-bottom: 2rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
}

.Form fieldset legend {
  position: relative;
  margin-left: -1rem;
  padding: 0 1rem;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 0;
}

.Form .form-item {
  margin-bottom: 24px;
}

.Form .form-item label {
  display: block;
  color: #313439;
  margin-bottom: 4px;
  font-size: 15px;
}

.Form .form-item label._checkbox {
  color: inherit;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  line-height: 1.5;
  cursor: pointer;
}

.Form .form-item label._checkbox input {
  margin-top: 0;
}

.Form .form-item > div._append,
.Form .form-item > div._prepend {
  display: -ms-flexbox;
  display: flex;
}

.Form .form-item > div._append input,
.Form .form-item > div._prepend input {
  -ms-flex: 1;
  flex: 1;
}

.Form .form-item > div._append .Button,
.Form .form-item > div._append span,
.Form .form-item > div._prepend .Button,
.Form .form-item > div._prepend span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.Form .form-item > div._append span,
.Form .form-item > div._prepend span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: normal;
  border: 1px solid #d4d4d4;
  background-color: #f8f8f8;
  padding: 0 .875rem;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  white-space: nowrap;
}

.Form .form-item > div._prepend input {
  border-radius: 0 3px 3px 0;
}

.Form .form-item > div._prepend .Button {
  margin-right: -1px;
  border-radius: 3px 0 0 3px !important;
}

.Form .form-item > div._prepend span {
  border-right: none;
  border-radius: 3px 0 0 3px;
}

.Form .form-item > div._append input {
  border-radius: 3px 0 0 3px;
}

.Form .form-item > div._append .Button {
  margin-left: -1px;
  border-radius: 0 3px 3px 0 !important;
}

.Form .form-item > div._append span {
  border-left: none;
  border-radius: 0 3px 3px 0;
}

.Form .form-item._checkboxes label.checkbox {
  display: inline-block;
  margin-right: 16px;
}

.Form .form-item._buttons button,
.Form .form-item._buttons .Button {
  margin-right: 8px;
}

.Form._horizontal .form-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.Form._horizontal .form-item label {
  width: 30%;
  line-height: 40px;
}

.Form._horizontal .form-item > div {
  width: 70%;
}

@media (max-width: 768px) {
  .Form._horizontal .form-item {
    display: block;
  }

  .Form._horizontal .form-item label,
  .Form._horizontal .form-item > div {
    width: 100%;
  }
}

.Form._inline input,
.Form._inline textarea,
.Form._inline select {
  display: inline-block;
  width: auto;
}

input,
textarea,
select {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  background-color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  outline: none;
  vertical-align: middle;
  box-shadow: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #3498db;
  box-shadow: 0 0 1px #3498db inset;
  outline: none;
}

input._error,
textarea._error,
select._error {
  border: 1px solid #ef8b80;
  background-color: rgba(231, 76, 60, 0.1);
}

input._error:focus,
textarea._error:focus,
select._error:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 1px #e74c3c inset;
}

input._success,
textarea._success,
select._success {
  border: 1px solid #69dd9a;
  background-color: rgba(46, 204, 113, 0.1);
}

input._success:focus,
textarea._success:focus,
select._success:focus {
  border-color: #2ecc71;
  box-shadow: 0 0 1px #2ecc71 inset;
}

input:disabled,
input._disabled,
textarea:disabled,
textarea._disabled,
select:disabled,
select._disabled {
  resize: none;
  opacity: 0.6;
  cursor: default;
  color: rgba(0, 0, 0, 0.5);
}

input[type="submit"] {
  width: auto;
}

input[type="file"] {
  display: inline-block;
  width: auto;
  height: auto;
  border: none;
  padding: 0;
  background: none;
  box-shadow: none;
}

input[type="search"],
input._search {
  padding-left: 32px;
  background-repeat: no-repeat;
  background-position: 8px 53%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="#000" fill-opacity="0.4" d="M14.891,14.39l-0.5.5a0.355,0.355,0,0,1-.5,0L9.526,10.529a5.3,5.3,0,1,1,2.106-4.212,5.268,5.268,0,0,1-1.1,3.21l4.362,4.362A0.354,0.354,0,0,1,14.891,14.39ZM6.316,2.418a3.9,3.9,0,1,0,3.9,3.9A3.9,3.9,0,0,0,6.316,2.418Z"/></svg>');
}

input[type="radio"],
input[type="checkbox"] {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
  box-shadow: none;
}

textarea {
  height: auto;
  padding: 8px 12px;
  vertical-align: top;
}

select {
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="12" viewBox="0 0 9 12"><path fill="#5e6c75" d="M0.722,4.823L-0.01,4.1,4.134-.01,4.866,0.716Zm7.555,0L9.01,4.1,4.866-.01l-0.732.726ZM0.722,7.177L-0.01,7.9,4.134,12.01l0.732-.726Zm7.555,0L9.01,7.9,4.866,12.01l-0.732-.726Z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

select[multiple] {
  height: auto;
  padding: .5rem .75rem;
  background-image: none;
}

.Row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .Row {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.Row ._col-1 {
  width: 8.3333333333%;
}

.Row ._offset-1 {
  margin-left: 8.3333333333%;
}

.Row ._col-2 {
  width: 16.6666666667%;
}

.Row ._offset-2 {
  margin-left: 16.6666666667%;
}

.Row ._col-3 {
  width: 25%;
}

.Row ._offset-3 {
  margin-left: 25%;
}

.Row ._col-4 {
  width: 33.3333333333%;
}

.Row ._offset-4 {
  margin-left: 33.3333333333%;
}

.Row ._col-5 {
  width: 41.6666666667%;
}

.Row ._offset-5 {
  margin-left: 41.6666666667%;
}

.Row ._col-6 {
  width: 50%;
}

.Row ._offset-6 {
  margin-left: 50%;
}

.Row ._col-7 {
  width: 58.3333333333%;
}

.Row ._offset-7 {
  margin-left: 58.3333333333%;
}

.Row ._col-8 {
  width: 66.6666666667%;
}

.Row ._offset-8 {
  margin-left: 66.6666666667%;
}

.Row ._col-9 {
  width: 75%;
}

.Row ._offset-9 {
  margin-left: 75%;
}

.Row ._col-10 {
  width: 83.3333333333%;
}

.Row ._offset-10 {
  margin-left: 83.3333333333%;
}

.Row ._col-11 {
  width: 91.6666666667%;
}

.Row ._offset-11 {
  margin-left: 91.6666666667%;
}

.Row ._col-12 {
  width: 100%;
}

.Row ._offset-12 {
  margin-left: 100%;
}

.Row._gutters > ._col-1 {
  width: calc(8.3333333333% - 2%);
}

.Row._gutters > ._offset-1 {
  margin-left: calc(8.3333333333% + 2%) !important;
}

.Row._gutters > ._col-2 {
  width: calc(16.6666666667% - 2%);
}

.Row._gutters > ._offset-2 {
  margin-left: calc(16.6666666667% + 2%) !important;
}

.Row._gutters > ._col-3 {
  width: calc(25% - 2%);
}

.Row._gutters > ._offset-3 {
  margin-left: calc(25% + 2%) !important;
}

.Row._gutters > ._col-4 {
  width: calc(33.3333333333% - 2%);
}

.Row._gutters > ._offset-4 {
  margin-left: calc(33.3333333333% + 2%) !important;
}

.Row._gutters > ._col-5 {
  width: calc(41.6666666667% - 2%);
}

.Row._gutters > ._offset-5 {
  margin-left: calc(41.6666666667% + 2%) !important;
}

.Row._gutters > ._col-6 {
  width: calc(50% - 2%);
}

.Row._gutters > ._offset-6 {
  margin-left: calc(50% + 2%) !important;
}

.Row._gutters > ._col-7 {
  width: calc(58.3333333333% - 2%);
}

.Row._gutters > ._offset-7 {
  margin-left: calc(58.3333333333% + 2%) !important;
}

.Row._gutters > ._col-8 {
  width: calc(66.6666666667% - 2%);
}

.Row._gutters > ._offset-8 {
  margin-left: calc(66.6666666667% + 2%) !important;
}

.Row._gutters > ._col-9 {
  width: calc(75% - 2%);
}

.Row._gutters > ._offset-9 {
  margin-left: calc(75% + 2%) !important;
}

.Row._gutters > ._col-10 {
  width: calc(83.3333333333% - 2%);
}

.Row._gutters > ._offset-10 {
  margin-left: calc(83.3333333333% + 2%) !important;
}

.Row._gutters > ._col-11 {
  width: calc(91.6666666667% - 2%);
}

.Row._gutters > ._offset-11 {
  margin-left: calc(91.6666666667% + 2%) !important;
}

.Row._gutters > ._col-12 {
  width: calc(100% - 2%);
}

.Row._gutters > ._offset-12 {
  margin-left: calc(100% + 2%) !important;
}

@media (max-width: 768px) {
  .Row .col[class^='_offset-'],
  .Row .col[class*=' _offset-'] {
    margin-left: 0;
  }
}

.Row .col._first {
  -ms-flex-order: -1;
  order: -1;
}

.Row .col._last {
  -ms-flex-order: 1;
  order: 1;
}

.Row._gutters,
.Row._gutters > .Row {
  margin-left: -2%;
}

@media (max-width: 768px) {
  .Row._gutters,
  .Row._gutters > .Row {
    margin-left: 0;
  }
}

.Row._gutters > .col,
.Row._gutters > .Row > .col {
  margin-left: 2%;
}

@media (max-width: 768px) {
  .Row._gutters > .col,
  .Row._gutters > .Row > .col {
    margin-left: 0;
  }
}

.Row._auto .col {
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}

@media (max-width: 768px) {
  .Row .col {
    margin-left: 0;
    width: 100%;
    margin-bottom: 24px;
  }

  .Row .col:last-child {
    margin-bottom: 0;
  }

  .Row .col._first-sm {
    -ms-flex-order: -1;
    order: -1;
  }

  .Row .col._last-sm {
    -ms-flex-order: 1;
    order: 1;
  }

  .Row .col._first {
    -ms-flex-order: 0;
    order: 0;
  }

  .Row .col._last {
    -ms-flex-order: 0;
    order: 0;
  }

  .Row._gutters > .col,
  .Row._gutters > .Row > .col {
    width: 100%;
    margin: 0 0 24px;
  }

  .Row._gutters > .col:last-child,
  .Row._gutters > .Row > .col:last-child {
    margin: 0;
  }
}

.Message {
  position: relative;
  padding: 1rem;
  padding-right: 2.5em;
  padding-bottom: .75rem;
  margin-bottom: 24px;
  background: #eee;
  color: #313439;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.Message a {
  color: inherit;
}

.Message p,
.Message h1,
.Message h2,
.Message h3,
.Message h4,
.Message h5,
.Message h6 {
  margin-bottom: 0;
}

.Message._error {
  background: #e74c3c;
  color: #fff;
}

.Message._success {
  background: #2ecc71;
  color: #fff;
}

.Message._warning {
  background: #f7ca18;
}

.Message._focus {
  background: #3498db;
  color: #fff;
}

.Pagination {
  margin: 24px 0;
  font-size: 14px;
}

.Pagination ul {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.Pagination ul li {
  margin: 0 1px;
}

.Pagination ul li span,
.Pagination ul li a {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 3px;
  line-height: 1;
  white-space: nowrap;
}

.Pagination ul li a {
  color: #313439;
  text-decoration: none;
}

.Pagination ul li a:hover {
  border-color: #eee;
  color: rgba(0, 0, 0, 0.5);
}

.Pagination ul li span,
.Pagination ul li._active a {
  color: rgba(0, 0, 0, 0.5);
  border-color: #eee;
  cursor: text;
}

.Pagination._centered ul {
  -ms-flex-pack: center;
  justify-content: center;
}

.Pagination._pager li {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.Pagination._pager li.next {
  text-align: right;
}

.Pagination._pager li a {
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 64px;
  border-color: rgba(0, 0, 0, 0.1);
}

.Pagination._pager._centered li {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  margin-left: 4px;
  margin-right: 4px;
}

.Table {
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.5;
  empty-cells: show;
}

.Table small,
.Table ._small {
  font-size: 12px;
}

.Table caption {
  color: rgba(49, 52, 57, 0.5);
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}

.Table th {
  text-align: left;
  font-weight: 700;
  vertical-align: bottom;
}

.Table td {
  vertical-align: top;
}

.Table th,
.Table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.Table th:first-child,
.Table td:first-child {
  padding-left: 0;
}

.Table th:last-child,
.Table td:last-child {
  padding-right: 0;
}

.Table tfoot th,
.Table tfoot td {
  color: rgba(49, 52, 57, 0.5);
}

.Table._bordered td,
.Table._bordered th {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.Table._striped tr:nth-child(odd) td {
  background: #f8f8f8;
}

.Table._bordered td:first-child,
.Table._bordered th:first-child,
.Table._striped td:first-child,
.Table._striped th:first-child {
  padding-left: 1rem;
}

.Table._bordered td:last-child,
.Table._bordered th:last-child,
.Table._striped td:last-child,
.Table._striped th:last-child {
  padding-right: 1rem;
}

.Table._unstyled td,
.Pagination ul.Table td,
.Table._unstyled th,
.Pagination ul.Table th {
  border: none;
  padding: 0;
}

.Table tr._align-middle td,
.Table td._align-middle {
  vertical-align: middle;
}

.Login {
  width: 100vw;
  height: 100vh;
  background: #eaeaea;
}

.Login .logo {
  position: absolute;
  top: 100px;
  left: 50%;
  margin-left: -75px;
  display: block;
  width: 150px;
  transition: opacity 300ms ease;
}

.Login .Message {
  text-align: left;
}

.Login form {
  position: absolute;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
  left: 50%;
  width: 300px;
  margin-left: -150px;
  text-align: right;
}

.Login form label {
  position: absolute;
  top: 7px;
  left: -35px;
  color: #fff;
  font-size: 17px;
  opacity: 0.1;
}

.Login form input[type=email],
.Login form input[type=password] {
  margin-bottom: 18px;
  padding: 0;
  border: none;
  border-bottom: 1px solid #cacaca;
  border-radius: 0;
  background: transparent;
  color: #000;
  box-shadow: none;
}

.Login form input[type=email]:focus,
.Login form input[type=password]:focus {
  border-color: #000;
}

.Login form input[type=email]:focus::-webkit-input-placeholder,
.Login form input[type=password]:focus::-webkit-input-placeholder {
  color: #000;
}

.Login form input[type=email]:focus::-moz-placeholder,
.Login form input[type=password]:focus::-moz-placeholder {
  color: #000;
}

.Login form input[type=email]:focus:-ms-input-placeholder,
.Login form input[type=password]:focus:-ms-input-placeholder {
  color: #000;
}

.Login form input[type=email]:focus:-moz-placeholder,
.Login form input[type=password]:focus:-moz-placeholder {
  color: #000;
}

.Login form input[type=text]:before {
  content: '\e800';
  display: block;
  color: #fff;
  font-family: 'fontello';
}

.Login form .Button {
  width: 100%;
  padding: 0;
}

.blocker {
  z-index: 100;
}

.modal {
  padding: 30px;
  border-radius: 4px;
}

.modal .Form,
.modal .form-item:last-child {
  margin-bottom: 0;
}

.Message {
  border-left: 3px solid #666;
  border-radius: 4px;
}

.Message._error {
  border-color: #e74c3c;
  background: #f0f0f0;
  color: #313439;
}

.Message._success {
  border-color: #2ecc71;
  background: #f0f0f0;
  color: #313439;
}

.Message._warning {
  border-color: #f7ca18;
  background: #f0f0f0;
  color: #313439;
}

.Message._focus {
  border-color: #3498db;
  background: #f0f0f0;
  color: #313439;
}

.Main {
  position: fixed;
  top: 0;
  left: 60px;
  width: calc(100% - 60px);
  height: 100vh;
  padding: 50px;
  overflow-y: scroll;
}

@media (max-width: 768px) {
  .Main {
    position: relative;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    padding: 20px;
    z-index: 1;
  }
}

body._sidebar-open .Main {
  left: 300px;
  width: calc(100% - 300px);
}

@media (max-width: 768px) {
  body._sidebar-open .Main {
    left: 0;
    width: 100%;
  }
}

.Sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 100vh;
  background: #e74c3c;
  box-shadow: inset -5px 0 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.Sidebar .menu-toggle {
  position: absolute;
  top: 50px;
  right: 0;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 4px 0 0 4px;
  background: #fff;
  color: #313439;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
}

.Sidebar .title {
  display: none;
  margin-bottom: 50px;
  color: #fff;
  font-size: 18px;
  line-height: 50px;
  font-weight: 900;
}

.Sidebar .title span {
  font-weight: 400;
  opacity: 0.5;
}

.Sidebar nav {
  display: none;
}

.Sidebar nav ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.Sidebar nav ul li span {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.Sidebar nav ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 300ms ease;
}

.Sidebar nav ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.Sidebar nav ul li ul {
  margin: 0 0 30px 10px;
}

.Sidebar .box-user {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.Sidebar .box-user .user-name {
  display: block;
  color: #fff;
}

.Sidebar .box-user .user-logout {
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .Sidebar {
    width: 100%;
    height: 50px;
    box-shadow: inset 0 -5px 5px 0 rgba(0, 0, 0, 0.1);
  }

  .Sidebar .title {
    position: absolute;
    top: 0;
    left: 20px;
    display: block;
    font-size: 14px;
  }

  .Sidebar .menu-toggle {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    color: #fff;
    line-height: 40px;
  }
}

body._sidebar-open .Sidebar {
  width: 300px;
  padding: 50px 30px;
}

body._sidebar-open .Sidebar .title,
body._sidebar-open .Sidebar nav,
body._sidebar-open .Sidebar .box-user {
  display: block;
}

@media (max-width: 768px) {
  body._sidebar-open .Sidebar {
    width: 100%;
    height: 100vh;
    padding: 20px;
  }

  body._sidebar-open .Sidebar nav {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 140px);
    padding: 40px 20px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: scroll;
  }
}

.Header .Button {
  position: absolute;
  top: 9px;
  right: 0;
}

@media (max-width: 768px) {
  .Header {
    margin-bottom: 40px;
  }

  .Header .title {
    font-size: 36px;
  }

  .Header .Button {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
}

.Dashboard {
  background: #eee;
}

.Dashboard .Sidebar .menu-toggle {
  background: #eee;
}

.Dashboard .col {
  background: #fff;
  margin-bottom: 30px;
  padding: 30px 0;
  border-radius: 10px;
  text-align: center;
}

.Dashboard #chart4,
.Dashboard #chart5,
.Dashboard #chart6 {
  text-align: center;
}

.Dashboard #chart4 table,
.Dashboard #chart5 table,
.Dashboard #chart6 table {
  display: inline-block;
}

@media (max-width: 768px) {
  .Dashboard .Sidebar .menu-toggle {
    background: #e74c3c;
  }
}

.Table .actions {
  list-style: none;
  margin: 0;
  text-align: right;
}

.Table .actions li {
  display: inline-block;
  margin-left: 10px;
}

.Table .actions li a {
  text-decoration: none;
}

.Table .actions li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .Table thead {
    display: none;
  }

  .Table tbody {
    display: block;
  }

  .Table tbody tr {
    display: block;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    background: #efefef;
  }

  .Table tbody tr td {
    display: block;
    padding: 0;
    border: none;
  }

  .Table tbody tr td:first-child {
    font-size: 16px;
    font-weight: 700;
  }

  .Table tbody tr td .actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
    text-align: left;
  }

  .Table tbody tr td .actions li {
    margin-left: 0;
    margin-right: 10px;
  }
}

.Cards img {
  border-radius: 6px 6px 0 0;
}

.Cards ._inactive {
  opacity: 0.5;
  transition: opacity 200ms ease;
}

.Cards ._inactive:hover {
  opacity: 1;
}

.Cards .actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  list-style: none;
  border: 1px solid #cecece;
  border-radius: 0 0 6px 6px;
}

@media (max-width: 768px) {
  .Cards .actions {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.Cards .actions li {
  border-left: 1px solid #cecece;
  text-align: center;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}

.Cards .actions li:first-child {
  border-left: 0;
}

.Cards .actions li a {
  display: block;
  width: 100%;
  padding: 10px;
  color: #cecece;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}

.Cards .actions li a:hover {
  color: #e74c3c;
}

._red {
  color: #e74c3c;
}

._green {
  color: #2ecc71;
}

@media (max-width: 768px) {
  .Form .Row .col {
    margin-bottom: 0;
  }
}