/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html */
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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

:focus {
  outline: 0; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  font-weight: normal;
  text-align: left; }

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

blockquote, q {
  quotes: "" ""; }

a img {
  border: 0; }

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

textarea, select, input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none;
  outline: 0;
  vertical-align: middle; }

input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none; }

select {
  background: #fff url(data:image/png;base64,R0lGODlhDQAEAIAAAAAAAP8A/yH5BAEHAAEALAAAAAANAAQAAAILhA+hG5jMDpxvhgIAOw==);
  background-repeat: no-repeat;
  background-position: 97% center;
  padding: 0 25px 0 8px;
  font-size: 0.875em; }

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
/* OPACITY */
.row {
  width: 100%;
  overflow: hidden;
  float: left; }

.wrap {
  display: block;
  width: 100%;
  max-width: 1024px;
  margin: 0px auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box; }
  .wrap:after {
    content: "";
    display: block;
    height: 0;
    clear: both; }

.full, .d1-2, .d1-3, .d1-4, .d1-6, .d2-3, .d3-4, .d5-6 {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 20px 20px 20px 20px;
  float: left;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0);
  background-clip: padding-box; }

.no-pad {
  padding: 0 !important; }

.no-border {
  border: 0 !important; }

.full {
  width: 100%; }

.d1-2 {
  width: 50%; }

.d1-3 {
  width: 33.3333333333%; }

.d3-3 {
  width: 66.6666666667%; }

.d1-4 {
  width: 25%; }

.d3-4 {
  width: 75%; }

.d1-6 {
  width: 16.6666666667%; }

.d5-6 {
  width: 83.3333333333%; }

.clearfix {
  display: block;
  width: 100%;
  clear: both;
  height: 0;
  padding: 0;
  margin: 0; }

.with-asside {
  padding-right: 210px;
  position: relative; }

.asside {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px; }

.row.grid-test {
  background-color: red; }
  .row.grid-test .wrap {
    background-color: yellow; }
  .row.grid-test .full {
    background-color: blue; }
  .row.grid-test .d1-2 {
    background-color: blue; }
  .row.grid-test .d1-3 {
    background-color: blue; }
  .row.grid-test .d1-4 {
    background-color: blue; }

/*--------------------------------------------------------------------------
*
*	Typography
*
*-------------------------------------------------------------------------*/
body {
  color: #402a62;
  font-family: "proxima-soft", Helvetica, Arial, sans-serif;
  font-size: 62.5%;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500; }

h1,
h2,
h3,
h4 {
  font-family: "proxima-soft", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #000;
  margin: 0em 0 0.2em;
  line-height: 1.25em; }

h1 {
  font-size: 32px; }

h2 {
  font-size: 22px; }

h3 {
  font-size: 18px; }

h4 {
  font-size: 12px; }

p,
li,
td,
th,
dt,
dd {
  line-height: 1.1em;
  font-size: 16px;
  margin: 0em 0 0.2em 0; }
  p:last-of-type,
  li:last-of-type,
  td:last-of-type,
  th:last-of-type,
  dt:last-of-type,
  dd:last-of-type {
    margin: 0 0 0 0; }

a {
  color: #0088cc;
  text-decoration: none; }

a:hover,
a:focus {
  outline: none;
  color: #005580; }

a:hover {
  text-decoration: underline; }

.p9 {
  font-size: 0.9em !important; }

.p8 {
  font-size: 0.8em !important; }

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

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

strong, b {
  font-weight: bold; }

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
.file-dropzone, .file-dropzone * {
  box-sizing: border-box; }

.file-dropzone {
  height: 220px;
  background: #FFF;
  padding: 20px 30px;
  border-radius: 22px; }

.file-dropzone.dz-clickable {
  cursor: pointer; }

.file-dropzone.dz-clickable * {
  cursor: default; }

.file-dropzone.dz-clickable .dz-message, .file-dropzone.dz-clickable .dz-message * {
  cursor: pointer; }

.file-dropzone.dz-started .dz-message {
  display: none; }

.file-dropzone.dz-drag-hover {
  border-style: solid; }

.file-dropzone.dz-drag-hover .dz-message {
  opacity: 0.5; }

.file-dropzone .dz-message {
  text-align: center;
  margin: 2em 0; }

.file-dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit; }

.file-dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0px; }

.file-dropzone .dz-preview:hover {
  z-index: 1000; }

.file-dropzone .dz-preview:hover .dz-details {
  opacity: 1; }

.file-dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd); }

.file-dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1; }

.file-dropzone .dz-preview.dz-image-preview {
  background: white; }

.file-dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear; }

.file-dropzone .dz-preview .dz-remove {
  display: none;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: none; }

.file-dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline; }

.file-dropzone .dz-preview:hover .dz-details {
  opacity: 1; }

.file-dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%; }

.file-dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px; }

.file-dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap; }

.file-dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8); }

.file-dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis; }

.file-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent; }

.file-dropzone .dz-preview .dz-details .dz-filename span, .file-dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px; }

.file-dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px); }

.file-dropzone .dz-preview .dz-image {
  overflow: hidden;
  width: 365px;
  height: 180px;
  position: relative;
  display: block;
  z-index: 10;
  overflow: hidden; }
  .file-dropzone .dz-preview .dz-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; }

.file-dropzone .dz-preview .dz-image img {
  display: block; }

.file-dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }

.file-dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }

.file-dropzone .dz-preview .dz-success-mark, .file-dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px; }

.file-dropzone .dz-preview .dz-success-mark svg, .file-dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px; }

.file-dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.file-dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in; }

.file-dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite; }

.file-dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden; }

.file-dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out; }

.file-dropzone .dz-preview.dz-error .dz-error-message {
  display: block; }

.file-dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto; }

.file-dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white; }

.file-dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626; }

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  display: none; }

.checkbox label {
  position: relative;
  display: inline-block;
  /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
  padding-left: 25px; }

.checkbox label::before,
.checkbox label::after {
  position: absolute;
  content: "";
  /*Needed for the line-height to take effect*/
  display: inline-block; }

/*Outer box of the fake checkbox*/
.checkbox label::before {
  height: 20px;
  width: 20px;
  left: 0px;
  /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
   *to vertically center it.
   */
  top: 2px;
  background: #FFF;
  border-radius: 50%; }

/*Checkmark of the fake checkbox*/
.checkbox label::after {
  height: 4px;
  width: 8px;
  border-left: 2px solid #402a62;
  border-bottom: 2px solid #402a62;
  transform: rotate(-45deg);
  left: 5px;
  top: 8px; }

/*Hide the checkmark by default*/
.checkbox input[type="checkbox"] + label::after,
.checkbox input[type="radio"] + label::after {
  content: none; }

/*Unhide on the checked state*/
.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  content: ""; }

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type="checkbox"]:focus + label::before
.checkbox input[type="radio"]:focus + label::before {
  outline: #3b99fc auto 5px; }

body {
  background-color: #FFF; }

a, a:hover, .trans {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease; }

button:hover {
  cursor: pointer; }

img {
  display: block;
  width: 100%;
  height: auto; }

input, textarea {
  width: 100%;
  border-radius: 22px;
  padding: 9px 12px;
  box-sizing: border-box;
  border: 1px solid #FFF;
  margin-bottom: 10px;
  color: #402a62;
  font-size: 16px;
  font-family: "proxima-soft", Helvetica, Arial, sans-serif; }
  .half-form input, .half-form textarea {
    width: auto; }

.radios {
  border-radius: 0;
  margin-bottom: 5px; }

input {
  height: 38px;
  line-height: 20px; }
  .radios input {
    height: auto;
    line-height: auto; }

label, .label {
  font: 700 15px "proxima-soft", Helvetica, Arial, sans-serif; }

textarea {
  height: 150px; }

.half-form {
  width: 49%;
  display: inline-block; }

.scene {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #39364f;
  background: linear-gradient(0deg, #39364f 0%, #191e32 70%, #0a0f21 100%); }
  .touch .scene {
    overflow: scroll; }

.panorama {
  height: 100vh;
  width: 200vw;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .panorama .city-skyline {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25vh;
    background: transparent url(../images/panorama-buildings.svg) repeat-x center bottom; }
  .panorama img {
    /*
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
    */ }

.stars {
  position: absolute;
  width: 100%;
  height: 100%; }
  .stars .star {
    opacity: 0;
    position: absolute;
    width: 25px;
    height: 25px;
    left: 60%;
    top: 20%;
    transform: scale(1);
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .stars .star.star-donated {
      opacity: 1;
      z-index: 12; }
    .stars .star.star-free {
      width: 15px;
      height: 15px;
      opacity: .6; }
    .stars .star:hover {
      cursor: hand;
      cursor: pointer; }
    .stars .star.twinkle {
      animation: twinkle 2s ease-in-out infinite; }
      .stars .star.twinkle:nth-child(19n + 1) {
        animation-delay: 0.1s;
        animation-duration: 3.4s; }
      .stars .star.twinkle:nth-child(19n + 2) {
        animation-delay: 0.2s;
        animation-duration: 3.8s; }
      .stars .star.twinkle:nth-child(19n + 3) {
        animation-delay: 0.3s;
        animation-duration: 4.2s; }
      .stars .star.twinkle:nth-child(19n + 4) {
        animation-delay: 0.4s;
        animation-duration: 4.6s; }
      .stars .star.twinkle:nth-child(19n + 5) {
        animation-delay: 0.5s;
        animation-duration: 5s; }
      .stars .star.twinkle:nth-child(19n + 6) {
        animation-delay: 0.6s;
        animation-duration: 5.4s; }
      .stars .star.twinkle:nth-child(19n + 7) {
        animation-delay: 0.7s;
        animation-duration: 5.8s; }
      .stars .star.twinkle:nth-child(19n + 8) {
        animation-delay: 0.8s;
        animation-duration: 6.2s; }
      .stars .star.twinkle:nth-child(19n + 9) {
        animation-delay: 0.9s;
        animation-duration: 6.6s; }
      .stars .star.twinkle:nth-child(19n + 10) {
        animation-delay: 1s;
        animation-duration: 7s; }
      .stars .star.twinkle:nth-child(19n + 11) {
        animation-delay: 1.1s;
        animation-duration: 7.4s; }
      .stars .star.twinkle:nth-child(19n + 12) {
        animation-delay: 1.2s;
        animation-duration: 7.8s; }
      .stars .star.twinkle:nth-child(19n + 13) {
        animation-delay: 1.3s;
        animation-duration: 8.2s; }
      .stars .star.twinkle:nth-child(19n + 14) {
        animation-delay: 1.4s;
        animation-duration: 8.6s; }
      .stars .star.twinkle:nth-child(19n + 15) {
        animation-delay: 1.5s;
        animation-duration: 9s; }
      .stars .star.twinkle:nth-child(19n + 16) {
        animation-delay: 1.6s;
        animation-duration: 9.4s; }
      .stars .star.twinkle:nth-child(19n + 17) {
        animation-delay: 1.7s;
        animation-duration: 9.8s; }
      .stars .star.twinkle:nth-child(19n + 18) {
        animation-delay: 1.8s;
        animation-duration: 10.2s; }
      .stars .star.twinkle:nth-child(19n + 19) {
        animation-delay: 1.9s;
        animation-duration: 10.6s; }
      .stars .star.twinkle.star-active {
        transform: scale(2);
        animation: starActive 2s ease-in infinite; }
    .stars .star.star-active img {
      filter: grayscale(100%) brightness(100%) sepia(100%) hue-rotate(-5deg) saturate(500%) contrast(1.2); }

@keyframes twinkle {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.4; }
  100% {
    opacity: 1; } }
@keyframes starActive {
  0% {
    transform: scale(2); }
  50% {
    transform: scale(2.6); }
  100% {
    transform: scale(2); } }
.center-marker {
  position: absolute;
  bottom: 0%;
  left: 50%;
  height: 30%;
  width: 1px;
  background: white; }

.screen-center-marker {
  position: fixed;
  top: 0%;
  left: 50%;
  height: 30%;
  width: 1px;
  background: red; }

.popup {
  background: #f2cc30;
  z-index: 99;
  box-sizing: border-box; }

.star-confirmation-popup {
  position: absolute;
  width: auto;
  padding: 12px 15px;
  border-radius: 12px;
  transform: translate(30px, 30px); }
  .star-confirmation-popup.move-up {
    transform: translate(30px, -110%); }
  .star-confirmation-popup.move-left {
    transform: translate(-110%, 30px); }
  .star-confirmation-popup.move-left.move-up {
    transform: translate(-110%, -110%); }
  .star-confirmation-popup button {
    text-align: center;
    border-radius: 12px;
    padding: 6px 9px;
    font: 700 15px/1em "proxima-soft", Helvetica, Arial, sans-serif;
    color: #FFF;
    border: none;
    display: block;
    width: 250px; }
    .star-confirmation-popup button:hover {
      cursor: pointer; }
    .star-confirmation-popup button.cancel {
      background: #c53e32; }
      .star-confirmation-popup button.cancel:hover {
        color: #c53e32;
        background: #FFF; }
    .star-confirmation-popup button.shine-confirmation {
      background: #59a888;
      margin-bottom: 10px; }
      .star-confirmation-popup button.shine-confirmation img {
        height: 15px;
        width: auto;
        margin-left: 10px;
        height: 12px;
        display: inline-block;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
      .star-confirmation-popup button.shine-confirmation:hover img {
        transform: translateX(100%); }

.donation-popup, .entry-popup, .popup-list {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  max-width: 485px;
  border-radius: 45px;
  padding: 25px 30px; }
  .donation-popup h2, .entry-popup h2, .popup-list h2 {
    font-size: 40px;
    color: #402a62; }
  .donation-popup .scroller, .entry-popup .scroller, .popup-list .scroller {
    height: 100%; }
  .donation-popup.scrollable-form, .entry-popup.scrollable-form, .popup-list.scrollable-form {
    height: 90vh; }

.scrollable-form .scroller {
  overflow-y: scroll; }

.donated-popup {
  width: 280px;
  position: fixed;
  padding: 12px 15px;
  border-radius: 10px;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%); }
  .donated-popup.donated-popup-right {
    left: 25%; }
  .donated-popup h2 {
    font: 500 italic 17px/1em "proxima-soft", Helvetica, Arial, sans-serif;
    color: #402a62; }
  .donated-popup .donated-img {
    width: 70%;
    margin-bottom: 10px; }
  .donated-popup .donation-info {
    margin-top: 10px;
    width: 100%;
    border-top: 2px solid #FFF;
    padding-top: 10px; }
    .donated-popup .donation-info p {
      font: 700 19px/1.1em "proxima-soft", Helvetica, Arial, sans-serif;
      margin-bottom: 15px; }
      .donated-popup .donation-info p.from {
        font-size: 17px; }
  .donated-popup .facebook-share {
    font: 400 16px/1.1em "proxima-soft", Helvetica, Arial, sans-serif;
    color: #402a62;
    display: inline-block;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid white; }
    .donated-popup .facebook-share:hover {
      text-decoration: underline; }

.close-popup {
  z-index: 999;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%) scale(1);
  width: 40px;
  height: 40px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .close-popup img {
    width: 100%; }
  .close-popup:hover {
    transform: translate(30%, -30%) scale(1.1);
    cursor: pointer; }
  .close-popup.smaller {
    width: 30px;
    height: 30px; }

.donation-popup .label-hidden {
  display: none; }
.donation-popup .accordion {
  border-bottom: 2px solid #FFF; }
.donation-popup dt {
  height: 50px;
  border-top: 2px solid #FFF; }
  .donation-popup dt a {
    font: 700 23px/50px "proxima-soft", Helvetica, Arial, sans-serif;
    color: #402a62;
    display: inline-block;
    width: 100%;
    padding-right: 20px;
    position: relative;
    box-sizing: border-box; }
    .donation-popup dt a.enabled:before {
      content: '+';
      position: absolute;
      right: 0; }
    .donation-popup dt a:hover {
      cursor: text;
      text-decoration: none; }
  .donation-popup dt.open a.enabled:before {
    content: '-'; }
.donation-popup dd {
  margin-bottom: 20px; }
.donation-popup .form-navigation {
  overflow: hidden; }
.donation-popup .upload-file-section {
  margin-bottom: 30px; }
.donation-popup .amount-selection {
  margin-bottom: 10px; }
  .donation-popup .amount-selection li {
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 22px;
    padding: 9px 12px;
    font: 700 17px/1em "proxima-soft", Helvetica, Arial, sans-serif;
    background: #FFF;
    color: #757575;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
    box-sizing: border-box;
    margin-right: 5px; }
    .donation-popup .amount-selection li:hover {
      color: #402a62;
      cursor: pointer; }
    .donation-popup .amount-selection li.current-donation {
      color: #FFF;
      background: #402a62; }
      .donation-popup .amount-selection li.current-donation:hover {
        cursor: default;
        color: #FFF;
        background: #402a62; }
.donation-popup .donation-value {
  margin-bottom: 20px; }
  .donation-popup .donation-value .currency {
    font-weight: 700;
    font-size: 38px;
    line-height: 1em;
    vertical-align: middle;
    margin-right: 10px; }
  .donation-popup .donation-value input {
    width: 200px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0; }
  .donation-popup .donation-value p {
    font-weight: 500;
    font-style: italic;
    font-size: 15px; }
.donation-popup .submit-form {
  display: none !important; }
.donation-popup button {
  width: calc(50% - 10px);
  text-align: center;
  border-radius: 22px;
  padding: 9px 12px;
  font: 700 17px/1em "proxima-soft", Helvetica, Arial, sans-serif;
  color: #FFF;
  border: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .donation-popup button.cancel {
    float: left;
    background: #c53e32; }
    .donation-popup button.cancel:hover {
      color: #c53e32;
      background: #FFF; }
  .donation-popup button.next, .donation-popup button.payment, .donation-popup button.go-to-star {
    float: right;
    background: #59a888; }
    .donation-popup button.next img, .donation-popup button.payment img, .donation-popup button.go-to-star img {
      height: 15px;
      width: auto;
      margin-left: 10px;
      height: 12px;
      display: inline-block;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .donation-popup button.next:hover img, .donation-popup button.payment:hover img, .donation-popup button.go-to-star:hover img {
      transform: translateX(100%); }
    .donation-popup button.next:disabled, .donation-popup button.payment:disabled, .donation-popup button.go-to-star:disabled {
      background: rgba(89, 168, 136, 0.7);
      cursor: default; }
      .donation-popup button.next:disabled:hover img, .donation-popup button.payment:disabled:hover img, .donation-popup button.go-to-star:disabled:hover img {
        transform: translateX(0); }
  .donation-popup button.remove-image {
    background: #402a62;
    width: 50%;
    margin: 10px 25%; }
  .donation-popup button:hover {
    cursor: pointer; }
.donation-popup .required {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .donation-popup .required.invalid {
    border: 1px solid #c53e32; }
.donation-popup .form-message {
  display: none;
  margin-bottom: 5px;
  text-align: center;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  color: #FFF; }
  .donation-popup .form-message.form-message-error {
    background: #c53e32; }
.donation-popup .remove-image {
  display: none; }
.donation-popup #payment-form #card-element {
  padding: 9px 12px;
  background: #FFF;
  border-radius: 22px; }
.donation-popup #payment-form .form-navigation {
  margin-top: 30px; }
.donation-popup .thanks {
  border-top: 2px solid #FFF;
  padding-top: 20px;
  margin-bottom: 20px; }

.entry-popup h2 {
  line-height: 1.1em;
  font-size: 32px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFF; }
.entry-popup p {
  margin-bottom: 20px; }
.entry-popup ul {
  margin-bottom: 20px; }
  .entry-popup ul li {
    padding-left: 10px;
    position: relative;
    margin-bottom: 5px; }
    .entry-popup ul li:before {
      content: '-';
      position: absolute;
      left: 0;
      top: 0; }

.popup-list p {
  border-bottom: 2px solid #FFF;
  margin-bottom: 20px;
  padding-bottom: 10px; }
.popup-list li {
  margin-bottom: 10px; }
  .popup-list li:hover {
    cursor: pointer; }

.nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  opacity: 0;
  padding: 20px;
  width: 340px;
  box-sizing: border-box;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .show-panels .nav-panel {
    transform: translateX(0);
    opacity: 1; }
  .nav-panel .shining-logo img {
    width: 214px;
    height: 78px; }
  .nav-panel:before {
    content: '';
    display: block;
    width: 500px;
    height: 500px;
    background: #402a62;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    left: -140px;
    top: -100px; }
  .nav-panel .donate-a-star {
    width: 162px;
    height: 151px; }
  .nav-panel h1 {
    font: 700 30px/1.1em "proxima-soft", Helvetica, Arial, sans-serif;
    color: #f2cc30;
    margin: 20px 0; }
  .nav-panel p {
    font: 300 16px/1.1em "proxima-soft", Helvetica, Arial, sans-serif;
    color: #FFF;
    margin-bottom: 15px; }

.search-form {
  position: relative;
  box-sizing: border-box;
  width: 250px; }
  .search-form .search-value {
    height: 38px;
    position: relative;
    padding-right: 50px; }
  .search-form .search-button {
    position: absolute;
    display: block;
    top: 0;
    background: none;
    right: 0;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: none; }

.site-logo {
  position: fixed;
  bottom: 0;
  right: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 20px;
  /*
      .show-panels & {
          transform: translateY(0);
          opacity: 1;
      }
  */ }
  .site-logo:before {
    content: '';
    display: block;
    width: 430px;
    height: 430px;
    background: #402a62;
    border-radius: 50%;
    position: absolute;
    left: -80px;
    top: -40px;
    z-index: -1; }
  .site-logo img {
    width: 213px;
    height: 61px; }

.nhs-logo {
  position: fixed;
  top: 20px;
  right: 20px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  /*
      .show-panels & {
          opacity: 1;
      }
  */ }
  .nhs-logo img {
    width: 168px;
    height: 84px; }

.footer-info {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 10px;
  font: 400 14px/1em "proxima-soft", Helvetica, Arial, sans-serif;
  color: #FFF; }
  .footer-info a {
    font: 400 14px/1em "proxima-soft", Helvetica, Arial, sans-serif;
    color: #FFF; }
  .footer-info br {
    display: none; }

.move-test {
  position: fixed;
  left: 10%;
  top: 10%;
  color: white; }

@media screen and (max-width: 767px) {
  .hide-on-mobile {
    display: none; }

  .site-logo img {
    width: 100px;
    height: auto; }
  .site-logo:before {
    left: -30px;
    top: -10px;
    width: 230px;
    height: 230px; }

  .nhs-logo img {
    width: 100px;
    height: auto; }

  .footer-info br {
    display: block; }

  .donation-popup {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translate3d(0, 0, 0);
    width: 100%;
    max-width: 100%;
    border-radius: 0; }
    .donation-popup .close-popup {
      transform: translate(-10px, 10px); }

  .entry-popup, .popup-list {
    width: 95vw; }

  .donation-popup h2, .entry-popup h2, .popup-list h2 {
    font-size: 28px; }

  .amount-selection li:last-of-type {
    display: none; }

  .nav-panel {
    padding-top: 70px; }
    .nav-panel:before {
      top: -60px; } }
#stripe-or {
  padding: 20px 0;
  text-align: center;
  font-weight: bold; }

.burger-button {
  display: none;
  width: 24px;
  height: 24px;
  position: fixed;
  top: 20px;
  left: 20px; }

.burger-icon {
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .burger-icon, .burger-icon::before, .burger-icon::after {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #f2cc30;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
  .burger-icon::before, .burger-icon::after {
    position: absolute;
    content: ""; }
  .burger-icon::before {
    top: -8px; }
  .burger-icon::after {
    top: 8px; }

.burger-button.is-active .burger-icon {
  background-color: transparent; }
.burger-button.is-active .burger-icon::before, .burger-button.is-active .burger-icon::after {
  background-color: #f2cc30; }
.burger-button.is-active .burger-icon::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg); }
.burger-button.is-active .burger-icon::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg); }

@media screen and (max-width: 1024px) {
  .burger-button {
    display: block; } }
@media screen and (max-width: 1000px) {
  .donated-popup {
    left: 50%;
    bottom: 10vh;
    right: auto;
    top: auto;
    transform: translate(-50%, 0); }
    .donated-popup.donated-popup-right {
      left: 50%; }

  .star-confirmation-popup {
    position: fixed;
    left: 50% !important;
    bottom: 10vh !important;
    right: auto !important;
    top: auto !important;
    transform: translate(-50%, 0) !important; }

  .stars .star.twinkle.star-active {
    transform: scale(4);
    animation: none; }

  .stars .star.star-active {
    transform: scale(4);
    animatin: none; }

  @keyframes starActiveTwinkleMobile {
    0% {
      transform: scale(4); }
    50% {
      transform: scale(5); }
    100% {
      transform: scale(4); } }
  .nav-panel {
    z-index: 95; }

  .burger-button {
    z-index: 96; }

  .nhs-logo {
    z-index: 97; } }

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